[
  {
    "path": ".env-example",
    "content": "# LOG_DIR can be used to tell the Service where to look for game logs\n# This option can be used in development and at runtime\nLOG_DIR=path/to/logs\n\n# SIGN_BUILD is used as a flag to indicate if release should be digitally signed\n# This is used only for production builds. You will need your own certificate if\n# you wish to publish signed releases.\nSIGN_BUILD=true\nSIGN_CERT_NAME=\"Open Source Developer, Iain Collins\"\nSIGN_TIME_SERVER=\"http://time.certum.pl\""
  },
  {
    "path": ".gitignore",
    "content": "build/\ndist/\nnode_modules/\ntemp/\n.DS_Store\n.env\n.next\n*.log"
  },
  {
    "path": "BUILD.md",
    "content": "# Developer Documentation\n\n_This documentation is intended for developers who want to build from source._\n\nICARUS is a Windows (Win32) application built primarily in JavaScript, using Node.js + WebSockets and Go with a fork of custom [Edge/WebView2 abstraction in C/C++](https://github.com/iaincollins/webview).\n\nThe self-contained installer is around 20 MB and has no dependancies. If you are running an older but supported release of Microsoft Windows, any required Microsoft provided DLLs that are not found will be automatically loaded by the bundled Microsoft installer (e.g. the Microsoft Edge common runtime used to render the user interface).\n\nThere are other (less complicated) ways to build a cross platform app using a technology like WebView (e.g. [Electron](https://www.electronjs.org/), [Photino](https://www.tryphotino.io/)) but the stack used was chosen to meet specific criteria, including the ability to leverage both native Windows features and to re-use existing isomorphic code, in an optimally sized and fully self-contained installer.\n\nIt is possible to build the entire project (or any of the individual components) in a single build step, but due to the nature of Microsoft Windows several pre-requsites must be configured to set up a build environment for the first time. These are documented below.\n\n## Getting Started\n\nThe codebase is split up into three parts:\n\n* `src/app` — \"ICARUS Terminal.exe\", a Win32 application written in Go\n* `src/service` — \"ICARUS Service.exe\", a Win32 application written in Node.js\n* `src/client` — A web based client interface, developed in Next.js/React\n\nThe web client is bundled into the service, and you can use web browser to connect directly to the service instead of (or as well as ) using \"ICARUS Terminal.exe\" to launch a native window to display the UI.\n\nThe service uses sockets to interact with clients on the local network and is able to as many terminals on as many devices as you may wish to access it from.\n\n\"ICARUS Terminal.exe\" is still required for platform specific functionality, such as installing updates, creating always-on-top (pinned) windows and reliable save game detection as these rely on OS calls which are handled by the application.\n\n### ICARUS Terminal.exe\n\n\"ICARUS Terminal.exe\" serves as both a launcher and a shell to render the graphical interface. It creates new terminal windows by spawing itself with the `--terminal` and `--port` flags). All terminal processes exit when the launcher terminates. \n\n\"ICARUS Terminal.exe\" uses [a fork of a webview wrapper for Go/C++](https://github.com/iaincollins/webview) which uses the Microsoft Edge/Chromium engine included in Windows to render the interface. This library has been manually bundled with this project in `resources/dll`, along with a suitable loader from Microsoft. This project does not install it's own webview rendering engine and uses the one built into Windows.\n\nThere can be multiple instances of \"ICARUS Terminal.exe\" running. ICARUS Terminal is designed to allow you to pin multiple windows to a single screen, or run multiple windows across different screens. The first instance will be designated as the \"launcher\" window. The launcher will have a different interface to the terminal windows and is responsible for starting and stopping the background service, for checking for updates and for shutting down terminal windows when the main window (the launcher) is closed.\n\n### ICARUS Service.exe\n\n\"ICARUS Service.exe\" is a self contained service, websocket server and a static webserver. The service interfaces with the game, broadcasts events to terminals (using a two way socket based API) and allows the graphical interface to be accessed remotely from computers, tablets and phones. ICARUS Service is invoked automatically by \"ICARUS Terminal.exe\" and is stopped when \"ICARUS Terminal.exe\" is quit.\n\nThe user interface is written in Next.js/React and is statically exported and the assets bundled inside \"ICARUS Service.exe\", making it an entirely self contained service that can be used without \"ICARUS Terminal.exe\", by connecting to the service via a web browser - an approach which makes the codebase highly portable, as it leaves \"ICARUS Terminal.exe\" to handle interactions with native OS APIs for things like window management and software updates.\n\nAll terminals (and any web clients) connect to the same single instance of service which receives and broadcasts messages to all of them using a websocket interface. There should only ever one instance of \"ICARUS Service.exe\" running at a time. It defaults to runnning on port 3300, although this is configurable at run time using command line flags.\n\n## Building\n\n### Requirements\n\nTo build the entire application you need to be running Microsoft Windows and have the following dependencies installed:\n\n* [Go Lang](https://golang.org/) to build the Win32 app (ICARUS Terminal)\n* [Node.js](https://nodejs.org/en/download/)  to build the socket service (ICARUS Service) and React UI\n* [NSIS](https://nsis.sourceforge.io/) to build the Windows installer (can install with `winget install NSIS.NSIS`)\n\nYou may also need the following dependancies, depending on the build steps you wish to run (e.g. if you are building assets):\n\n* [Python 3](https://www.python.org/downloads/) for building assets and binaries\n* [Visual Studio](https://visualstudio.microsoft.com/downloads/) or MS Build Tools with \"Desktop development with C++\" for working with Windows APIs\n\nCurrently Elite Dangerous is only offically supported on Windows however you can build and run the core cross platform on Windows, Mac and Linux. ICARUS Terminal does not currently support integration with console platforms (XBox and PlayStation) as they use a different implementation of the API. As the console version of Elite Dangerous is now in maintenance mode (as of March 2022) plans to support the console releases have been deprioritized.\n\n### Building on Windows\n\nWith the required build tools and dependencies installed (`npm install`) you can build the application in a single step:\n\n* `npm run build`\n\nThis will output a standalone installer \"ICARUS Setup.exe\" in `dist/` directory.\n\nIntermediate builds can be found in `build/` directory. See `build/bin` for the final binaries, these can be run in place without having to run the installer. If you run \"ICARUS Terminal.exe\" it will start the \"ICARUS Service.exe\" automatically in the background (and shut it down again when the main Terminal window is closed).\n\nYou can also run each build step independently:\n\n* `npm run build:app` builds only the GUI app (ICARUS Terminal.exe)\n* `npm run build:service` builds only the service (ICARUS Service.exe)\n* `npm run build:client` builds only the web interface; required to build the service as is an embedded resource\n* `npm run build:package` builds only the Windows installer (ICARUS Setup.exe)\n* `npm run build:assets` builds assets (icons, fonts, etc) - e.g. used to update the icon font\n* `npm run build:clean` resets the build environment\n\nYou can also generate fast, unoptimized builds to test executables without building an installable package:\n\n* `npm run build:debug` build ICARUS Terminal.exe and ICARUS Service.exe with debug output and no optimization\n* `npm run build:debug:app` build ICARUS Terminal.exe with debug output and no optimization\n* `npm run build:debug:service` build ICARUS Service.exe with debug output and no optimization\n\nA debug build displays debug information on the console and builds very quickly (1-2 seconds). The functionality should be the same, however builds may be slower and binary sizes are significantly larger.\n\nNote:\n\n\"ICARUS Terminal.exe\" depends on \"ICARUS Service.exe\" being in the same directory to run, or it will exit on startup with a message indicating unable to start the ICARUS Terminal Service, so you must build the service at least once before you can launch \"ICARUS Terminal.exe\" directly.\n\n### One-step cross platform build (Win/Mac/Linux)\n\nICARUS Terminal can also be run as a native, standalone application (without an installer) on Windows, Mac and Linux. Elite Dangerous is not offically supported on Linux or Mac and neither is ICARUS Terminal. I strongly recommend running the Windows version of ICARUS Terminal under the same emulation/compatibility layer as you are using for Elite Dangerous, but this option is provided for completeness.\n\nThe only requirement for building the core service is [Node.js](https://nodejs.org/en/download/).\n\nYou can easily build a native standalone binary for Windows, Mac and Linux with:\n\n* `npm install`\n* `npm run build:standalone`\n\nThis will build cross platform binaries for Windows (x86), Mac (x64) and Linux (x64) in the `dist/` directory.\n\nFor usage information run the binary with the `--help` flag.\n\nNotes:\n\n* The standalone binary does not feature auto-update notifications.\n* The standalone binary does not have a native UI, you must connect via a browser.\n* Features that depend on native UI (e.g. always on top, borderless) are not supported.\n* If you wish to build for other architure (e.g. arm64) edit the target value for your platform in `scripts\\build-standalone.js`.\n* On Linux, due to what seems to bug in the complier not bundling resources correctly, the binary needs to be executed from the dist directory (i.e. `dist/icaurs-terminal-service-linux`) and it may not work correctly if it is moved to another location.\n\nAs the game itself is not supported by the developers on Mac or Linux I do not plan to aim for feature parity on these platforms.\n\n## Development mode\n\nYou can run ICARUS Terminal in development mode without building a native binary, all you need installed is Node.js and a web browser to access the client.\n\n* `npm install`\n* `npm run dev`\n\nYou can access the web client at http://localhost:3300\n\nNote: You may also need to create a `.env` file with a `LOG_DIR` entry so it can find your game data, see `.env-example`.\n"
  },
  {
    "path": "CONTRIB.md",
    "content": "# Contributor Guidelines\n\nThis software is in early access. All releases are pre-releases and contain known defects.\n\nCode contributions, pull requests and bug reports are not currently being accepted for this repository. Ideas and feature requests are welcome on the offical forums and/or GitHub Discussions.\n\nYou are free to fork this codebase and use it to make your own app. See [LICENSE](LICENSE) for details."
  },
  {
    "path": "LICENSE",
    "content": "ISC License\n\nCopyright (c) 2021 Iain Collins\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE."
  },
  {
    "path": "README.md",
    "content": "<picture>\n  <source media=\"(prefers-color-scheme: dark)\" srcset=\"https://user-images.githubusercontent.com/595695/192074847-6518c9cd-0fa5-4567-8858-530f7d943bcd.svg\">\n  <img alt=\"ICARUS Terminal\" src=\"https://user-images.githubusercontent.com/595695/192074789-a098e19d-f21c-4148-879a-ea2355893776.svg\" height=\"100\" width=\"auto\"/>\n</picture>\n\n![GitHub Version](https://img.shields.io/github/v/release/iaincollins/icarus??display_name=tag&include_prereleases&sort=semver&color=cf7500&style=for-the-badge)\n![GitHub License](https://img.shields.io/github/license/iaincollins/icarus?color=cf7500&style=for-the-badge)\n![GitHub Downloads](https://img.shields.io/github/downloads/iaincollins/icarus/total?color=cf7500&style=for-the-badge)\n\n_ICARUS Terminal is currently in early access._\n\n## About ICARUS Terminal\n\n_ICARUS Terminal is a free, immersive, context-sensitive companion app and second screen interface for [Elite Dangerous](https://www.elitedangerous.com/)._\n\nYou can run ICARUS Terminal in a native window, on multiple windows/displays, as an overlayed window in top of the game if playing with a VR headset or on an ultra-wide display or connect remotely in a browser from another computer/tablet/phone/other devices (e.g. Chromebook, Android Phone/Tablet, Amazon Fire Tablet); the UI is specifically designed with touch screen devices in mind and to adapt the layout of panels to both landscape and portrait displays, both large and small.\n\n<p align=\"center\">&nbsp;</p>\n\n<p align=\"center\">\n  <a href=\"https://github.com/iaincollins/icarus/releases\">\n    <img alt=\"Download\" src=\"https://github.com/iaincollins/icarus/assets/595695/ee98eb94-f293-4eb5-8230-b7a75f17ea44\" height=\"80\" width=\"auto\"/>\n  </a>\n</p>\n\n## Screenshots\n\n<img alt=\"System Map\" src=\"https://user-images.githubusercontent.com/595695/197432007-13726aea-9413-4fcf-88c6-9abc34f2d26c.png\" height=\"auto\" width=\"98.5%\"/>\n\n<img alt=\"System List\" src=\"https://user-images.githubusercontent.com/595695/215351117-50282d37-f42f-4eb9-975b-e70d29202cdb.png\" height=\"auto\" width=\"49%\"/> <img alt=\"Ship Status\" src=\"https://user-images.githubusercontent.com/595695/215350062-0f7ad9e4-905c-43ae-b3cf-1dc7944ab744.png\" height=\"auto\" width=\"49%\"/>\n<img alt=\"Blueprint\" src=\"https://user-images.githubusercontent.com/595695/192074945-b47edcbb-6aab-444d-827c-6b6255e8f932.png\" height=\"auto\" width=\"49%\"/> <img alt=\"Navigation Route\" src=\"https://user-images.githubusercontent.com/595695/215350464-88e75eb1-77d8-408c-a0ec-12fd6911e866.png\" height=\"auto\" width=\"49%\"/>\n\n## Requirements\n\nThe self-contained installer is around 20 MB and has no dependancies. If you are running an older but supported release of Windows, any missing dependancies will be automatically installed.\n\n* Windows 10 or newer required.\n* No dependancies are required to install the application.\n* No manual configuration or setup is required, it will automatically find your game data.\n* No additional diskspace is required to store game data. Recent game data is loaded in to memory when launched and streamed in real time when the game is active, it is not persisted or cached to disk.\n\n### Notes\n\n* This software is in early access. All releases are pre-releases and contain known defects.\n* The launcher will indicate when a new release is available. Updating is optional.\n* All releases are code signed and verified. If you have a conflict with your anti-virus or firewall software, please contact the vendor responsible for that software.\n* The application will run against the latest version of Elite Dangerous (Odyssey) and older releases (e.g. Horizons), but it is currently explicitly designed for use with the latest versions. Changes to the game API may impact functionality when using ICARUS Terminal with older versions of the game.\n* The application includes a web interface to allow access from remote devices. The web interface is enabled by default while the application is running.\n\nThe web interface relies on advanced browser functionality for rendering and works best on native Google Chrome browsers (e.g. Google Chrome for Windows, Mac, ChromeOS, Android). Other browsers (e.g. Safari, Firefox, Chromium) may use fallback rendering and/or lack required features for full compatbility / optimal user experience.\n\n## Developer Documentation\n \nCode contributions, pull requests and bug reports are not currently being accepted for this repository. See [CONTRIB.md](CONTRIB.md) for more information. For developer documentation see [BUILD.md](BUILD.md).\n\n### Developer Quickstart\n\nIf you are running on Linux and/or looking for quick instructions on how to run from source, if you have [Node.js](https://nodejs.org/en/) this is what you need to do to download and install  ICARUS Terminal:\n\n    git clone git@github.com:iaincollins/icarus.git\n    cd icarus\n    npm install\n    \nNext, run `cp .env-example .env` to create an `.env` file and edit it to change the `LOG_DIR` option to point to the location of your Elite Dangerous log files:\n\n    # LOG_DIR can be used to tell the Service where to look for game logs\n    # This option can be used in development and at runtime\n    LOG_DIR=path/to/logs\n\nWith that done, anytime you want to start ICARUS Terminal, all you need to do is run:\n\n    npm start\n\nThis will run in debug mode which is not quite the same as a production build (it's not as optimised) but should work just fine.\n\n## Legal\n\nICARUS Terminal is free, open-source software released under the ISC License.\n\nICARUS Terminal does not record Personally Identifiable Information (PII). ICARUS Terminal includes integrations with services like [EDSM](https://www.edsm.net), [EDDB](https://eddb.io/) and [INARA](https://inara.cz/). Data such as your current in-game location, cargo, etc. may be sent to them order to render information in the interface. ICARUS Terminal does not expose or send information about you or your in game character (e.g. your name, user name, commander name or ship name) but any requests made to a third party will include your IP address.\n\nElite Dangerous is copyright Frontier Developments plc. This software is not endorsed by nor reflects the views or opinions of Frontier Developments and no employee of Frontier Developments was involved in the making of it.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE.\n\n## Credits\n\n_ICARUS Terminal would not be possible without work from dozens of enthusiasts and hundreds of open source contributors._\n\n* The name ICARUS was suggested by [SpaceNinjaBear](https://www.reddit.com/user/SpaceNinjaBear) on Reddit.\n* Loading animation by [James Panter](http://codepen.io/jpanter/pen/PWWQXK).\n* Includes origional icons, icons inspired by those found in Elite Dangerous and icons based on those from [edassets.org](https://edassets.org).\n* Uses stellar cartography data from the wonderful [EDSM API](https://www.edsm.net).\n* Includes game data collated and provided by [EDCD](https://github.com/EDCD/FDevIDs).\n* The [Jura font](https://fonts.google.com/specimen/Jura#glyphs) is included under the Open Font License.\n* Thank you to [Serge Zaitsev](https://github.com/zserge) for his work on the WebView library.\n\nICARUS Terminal uses imagery from/inspired by Elite Dangerous, which is copyright Frontier Developments plc. This software is not endorsed by nor reflects the views or opinions of Frontier Developments and no employee of Frontier Developments was involved in the making of it.\n\nThank you to all those who have created and supported libraries on which this software depends and to Frontier Developments plc for supporting third party tools.\n\n## Support\n\nPeople have asked if I take donations for the project - I don't donations, but \nI do appreciate the offer.\n\nIf you want to support development of ICARUS Terminal, the best way is to visit \nthe [Ardent Pioneer (V9G-G7Z)](https://inara.cz/elite/station/490914/).\n\nSelling Tritium to the carrier directly supports development as it means I can \nspend more time adding features to ICARUS Terminal and travelling the galaxy to \ntest them out!\n\nYou can use Inara to [find out which system the Ardent Pioneer is currently in](https://inara.cz/elite/station/490914/) and see if it's anywhere near you.\n\nBefore you visit you might want to [check out what commodities are currently \nbeing traded](https://inara.cz/elite/station-market/490914/). You might also \nwant to chat to the bartender to see what they are looking for!\n\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"icarus\",\n  \"version\": \"0.23.0\",\n  \"description\": \"ICARUS Terminal for Elite Dangerous\",\n  \"scripts\": {\n    \"build\": \"npm run build:client && npm run build:app && npm run build:service && npm run build:package\",\n    \"build:client\": \"cd src/client && next build && next export -o ../../build/client\",\n    \"build:app\": \"node scripts/build-app.js\",\n    \"build:service\": \"node scripts/build-service.js\",\n    \"build:package\": \"node scripts/build-package.js\",\n    \"build:standalone\": \"npm run build:client && node scripts/build-standalone.js\",\n    \"build:clean\": \"node scripts/build-clean.js\",\n    \"build:assets\": \"node scripts/build-assets.js && npm run build:data\",\n    \"build:data\": \"node scripts/build-data.js\",\n    \"build:debug\": \"npm run build:client && npm run build:debug:app && npm run build:debug:service\",\n    \"build:debug:app\": \"node scripts/build-app.js --debug\",\n    \"build:debug:service\": \"node scripts/build-service.js --debug\",\n    \"start\": \"npm run dev\",\n    \"clean\": \"npm run build:clean\",\n    \"dev\": \"node src/service/main.js --dev\",\n    \"lint\": \"npm run lint:go && npm run lint:javascript\",\n    \"lint:go\": \"go fmt src/app/main.go\",\n    \"lint:javascript\": \"npx standard --fix\",\n    \"compress-images\": \"npx imagemin src/client/public/images/** --out-dir src/client/public/images/\"\n  },\n  \"keywords\": [],\n  \"author\": \"\",\n  \"license\": \"ISC\",\n  \"devDependencies\": {\n    \"changeexe\": \"^1.0.2\",\n    \"csvtojson\": \"^2.0.10\",\n    \"fs-extra\": \"^10.0.0\",\n    \"generate-icons\": \"^0.1.10\",\n    \"makensis\": \"^1.1.1\",\n    \"nexe\": \"^4.0.0-beta.19\",\n    \"next\": \"^12.1.5\",\n    \"nodemon\": \"^2.0.15\",\n    \"puppeteer\": \"^14.0.0\",\n    \"react\": \"^17.0.2\",\n    \"react-dom\": \"^17.0.2\",\n    \"react-hot-toast\": \"^2.2.0\",\n    \"sendkeys-js\": \"^0.0.4\",\n    \"standard\": \"^16.0.4\",\n    \"svgtofont\": \"^3.12.9\",\n    \"to-ico\": \"^1.0.1\",\n    \"upx\": \"^1.0.6\",\n    \"wikitext2plaintext\": \"^0.1.0\",\n    \"xml2js\": \"^0.4.23\"\n  },\n  \"dependencies\": {\n    \"async-retry\": \"^1.3.3\",\n    \"axios\": \"^0.24.0\",\n    \"connect\": \"^3.7.0\",\n    \"dotenv\": \"^10.0.0\",\n    \"glob\": \"^7.1.7\",\n    \"http-proxy\": \"^1.18.1\",\n    \"nedb-promises\": \"^5.0.2\",\n    \"one-time\": \"^0.0.4\",\n    \"say\": \"^0.16.0\",\n    \"serve-static\": \"^1.14.1\",\n    \"ws\": \"^8.2.3\",\n    \"yargs\": \"^17.2.1\"\n  },\n  \"engines\": {\n    \"npm\": \"9.6.7\",\n    \"node\": \"18.17.1\"\n  }\n}\n"
  },
  {
    "path": "resources/assets/icon-font/icarus-terminal.css",
    "content": "@font-face {\n  font-family: \"icarus-terminal\";\n  src: url('icarus-terminal.eot?t=1764689807536'); /* IE9*/\n  src: url('icarus-terminal.eot?t=1764689807536#iefix') format('embedded-opentype'), /* IE6-IE8 */\n  url(\"icarus-terminal.woff2?t=1764689807536\") format(\"woff2\"),\n  url(\"icarus-terminal.woff?t=1764689807536\") format(\"woff\"),\n  url('icarus-terminal.ttf?t=1764689807536') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/\n  url('icarus-terminal.svg?t=1764689807536#icarus-terminal') format('svg'); /* iOS 4.1- */\n}\n\n[class^=\"icarus-terminal-\"], [class*=\" icarus-terminal-\"] {\n  font-family: 'icarus-terminal' !important;\n  font-size:16px;\n  font-style:normal;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n\n.icarus-terminal-0_copy:before { content: \"\\ea01\"; }\n.icarus-terminal-asteroid-base:before { content: \"\\ea02\"; }\n.icarus-terminal-atmosphere:before { content: \"\\ea03\"; }\n.icarus-terminal-barrel:before { content: \"\\ea04\"; }\n.icarus-terminal-cargo-buy:before { content: \"\\ea05\"; }\n.icarus-terminal-cargo-export:before { content: \"\\ea06\"; }\n.icarus-terminal-cargo-import:before { content: \"\\ea07\"; }\n.icarus-terminal-cargo-sell:before { content: \"\\ea08\"; }\n.icarus-terminal-cargo:before { content: \"\\ea09\"; }\n.icarus-terminal-chevron-down:before { content: \"\\ea0a\"; }\n.icarus-terminal-chevron-left:before { content: \"\\ea0b\"; }\n.icarus-terminal-chevron-right:before { content: \"\\ea0c\"; }\n.icarus-terminal-chevron-up:before { content: \"\\ea0d\"; }\n.icarus-terminal-cogs:before { content: \"\\ea0e\"; }\n.icarus-terminal-color-picker:before { content: \"\\ea0f\"; }\n.icarus-terminal-coriolis-starport:before { content: \"\\ea10\"; }\n.icarus-terminal-credits:before { content: \"\\ea11\"; }\n.icarus-terminal-direction-heading:before { content: \"\\ea12\"; }\n.icarus-terminal-dodec-starport:before { content: \"\\ea13\"; }\n.icarus-terminal-download:before { content: \"\\ea14\"; }\n.icarus-terminal-economy:before { content: \"\\ea15\"; }\n.icarus-terminal-engineer:before { content: \"\\ea16\"; }\n.icarus-terminal-engineering:before { content: \"\\ea17\"; }\n.icarus-terminal-exit:before { content: \"\\ea18\"; }\n.icarus-terminal-fleet-carrier-lg:before { content: \"\\ea19\"; }\n.icarus-terminal-fleet-carrier:before { content: \"\\ea1a\"; }\n.icarus-terminal-fuel:before { content: \"\\ea1b\"; }\n.icarus-terminal-fullscreen-exit:before { content: \"\\ea1c\"; }\n.icarus-terminal-fullscreen-window-exit:before { content: \"\\ea1d\"; }\n.icarus-terminal-fullscreen-window:before { content: \"\\ea1e\"; }\n.icarus-terminal-fullscreen:before { content: \"\\ea1f\"; }\n.icarus-terminal-help:before { content: \"\\ea20\"; }\n.icarus-terminal-home:before { content: \"\\ea21\"; }\n.icarus-terminal-info:before { content: \"\\ea22\"; }\n.icarus-terminal-inventory:before { content: \"\\ea23\"; }\n.icarus-terminal-location-filled:before { content: \"\\ea24\"; }\n.icarus-terminal-location:before { content: \"\\ea25\"; }\n.icarus-terminal-logo:before { content: \"\\ea26\"; }\n.icarus-terminal-materials-encoded:before { content: \"\\ea27\"; }\n.icarus-terminal-materials-grade-1:before { content: \"\\ea28\"; }\n.icarus-terminal-materials-grade-2:before { content: \"\\ea29\"; }\n.icarus-terminal-materials-grade-3:before { content: \"\\ea2a\"; }\n.icarus-terminal-materials-grade-4:before { content: \"\\ea2b\"; }\n.icarus-terminal-materials-grade-5:before { content: \"\\ea2c\"; }\n.icarus-terminal-materials-manufactured:before { content: \"\\ea2d\"; }\n.icarus-terminal-materials-raw:before { content: \"\\ea2e\"; }\n.icarus-terminal-materials-xeno:before { content: \"\\ea2f\"; }\n.icarus-terminal-materials:before { content: \"\\ea30\"; }\n.icarus-terminal-megaship-lg:before { content: \"\\ea31\"; }\n.icarus-terminal-megaship:before { content: \"\\ea32\"; }\n.icarus-terminal-menu:before { content: \"\\ea33\"; }\n.icarus-terminal-notifications-disabled:before { content: \"\\ea34\"; }\n.icarus-terminal-notifications:before { content: \"\\ea35\"; }\n.icarus-terminal-ocellus-starport:before { content: \"\\ea36\"; }\n.icarus-terminal-orbis-starport:before { content: \"\\ea37\"; }\n.icarus-terminal-outpost:before { content: \"\\ea38\"; }\n.icarus-terminal-pin-window:before { content: \"\\ea39\"; }\n.icarus-terminal-planet-ammonia-based-life:before { content: \"\\ea3a\"; }\n.icarus-terminal-planet-ammonia-world:before { content: \"\\ea3b\"; }\n.icarus-terminal-planet-atmosphere-landable:before { content: \"\\ea3c\"; }\n.icarus-terminal-planet-atmosphere:before { content: \"\\ea3d\"; }\n.icarus-terminal-planet-earthlike:before { content: \"\\ea3e\"; }\n.icarus-terminal-planet-empty:before { content: \"\\ea3f\"; }\n.icarus-terminal-planet-gas-giant:before { content: \"\\ea40\"; }\n.icarus-terminal-planet-high-metal-content:before { content: \"\\ea41\"; }\n.icarus-terminal-planet-high-value:before { content: \"\\ea42\"; }\n.icarus-terminal-planet-landable:before { content: \"\\ea43\"; }\n.icarus-terminal-planet-lander:before { content: \"\\ea44\"; }\n.icarus-terminal-planet-life:before { content: \"\\ea45\"; }\n.icarus-terminal-planet-ringed:before { content: \"\\ea46\"; }\n.icarus-terminal-planet-terraformable:before { content: \"\\ea47\"; }\n.icarus-terminal-planet-volcanic:before { content: \"\\ea48\"; }\n.icarus-terminal-planet-water-based-life:before { content: \"\\ea49\"; }\n.icarus-terminal-planet-water-world:before { content: \"\\ea4a\"; }\n.icarus-terminal-planet:before { content: \"\\ea4b\"; }\n.icarus-terminal-planetary-port-large:before { content: \"\\ea4c\"; }\n.icarus-terminal-planetary-port:before { content: \"\\ea4d\"; }\n.icarus-terminal-plant:before { content: \"\\ea4e\"; }\n.icarus-terminal-poi-empty:before { content: \"\\ea4f\"; }\n.icarus-terminal-poi:before { content: \"\\ea50\"; }\n.icarus-terminal-power:before { content: \"\\ea51\"; }\n.icarus-terminal-route:before { content: \"\\ea52\"; }\n.icarus-terminal-scan:before { content: \"\\ea53\"; }\n.icarus-terminal-search:before { content: \"\\ea54\"; }\n.icarus-terminal-settings:before { content: \"\\ea55\"; }\n.icarus-terminal-settlement:before { content: \"\\ea56\"; }\n.icarus-terminal-shield:before { content: \"\\ea57\"; }\n.icarus-terminal-ship:before { content: \"\\ea58\"; }\n.icarus-terminal-signal-even-bars:before { content: \"\\ea59\"; }\n.icarus-terminal-signal:before { content: \"\\ea5a\"; }\n.icarus-terminal-sound:before { content: \"\\ea5b\"; }\n.icarus-terminal-star:before { content: \"\\ea5c\"; }\n.icarus-terminal-sync:before { content: \"\\ea5d\"; }\n.icarus-terminal-system-authority-solid:before { content: \"\\ea5e\"; }\n.icarus-terminal-system-authority:before { content: \"\\ea5f\"; }\n.icarus-terminal-system-bodies:before { content: \"\\ea60\"; }\n.icarus-terminal-system-orbits:before { content: \"\\ea61\"; }\n.icarus-terminal-table-index:before { content: \"\\ea62\"; }\n.icarus-terminal-table-inspector:before { content: \"\\ea63\"; }\n.icarus-terminal-table-rows:before { content: \"\\ea64\"; }\n.icarus-terminal-trending-down-chart:before { content: \"\\ea65\"; }\n.icarus-terminal-trending-down:before { content: \"\\ea66\"; }\n.icarus-terminal-trending-steady-chart:before { content: \"\\ea67\"; }\n.icarus-terminal-trending-steady:before { content: \"\\ea68\"; }\n.icarus-terminal-trending-up-chart:before { content: \"\\ea69\"; }\n.icarus-terminal-trending-up:before { content: \"\\ea6a\"; }\n.icarus-terminal-triangle-up:before { content: \"\\ea6b\"; }\n.icarus-terminal-warning:before { content: \"\\ea6c\"; }\n.icarus-terminal-wrench:before { content: \"\\ea6d\"; }\n"
  },
  {
    "path": "resources/assets/icon-font/icarus-terminal.json",
    "content": "{\n\"0_copy\": [\"M 28.291016,1.6894531 C 14.412347,1.6911941 3.1618977,12.941643 3.1601562,26.820312 V 808.37695 c 0.00174,13.87867 11.2521908,25.12912 25.1308598,25.13086 H 176.53711 v 138.89258 c 6.6e-4,13.87943 11.25143,25.13107 25.13086,25.13281 h 771.60742 c 13.87943,-0.002 25.1302,-11.25338 25.13086,-25.13281 V 190.8457 c -0.002,-13.87867 -11.25219,-25.12912 -25.13086,-25.13086 H 825.0293 V 26.820312 C 825.02756,12.941643 813.77711,1.691194 799.89844,1.6894531 Z M 53.421875,51.951172 H 774.76758 V 164.55078 H 201.66797 c -13.87867,0.002 -25.12912,11.25219 -25.13086,25.13086 v 1.16406 592.40039 H 53.421875 Z M 226.80078,215.97656 h 721.3418 V 947.26953 H 226.80078 Z M 797.53125,363.6582 659.31055,504.20117 528.74414,373.63477 371.60547,530.77344 l 131.875,131.87695 -137.3457,139.65039 h 276.99609 37.37305 119.76757 V 645.16211 363.6582 Z\"],\n\"asteroid-base\": [\"m 777.6,301.333 c 24.801,-0.8 42.667,10.133 61.601,17.066 112,41.333 223.2,84.267 334.934,125.333 38.399,14.133 79.733,13.6 119.733,15.733 56.533,2.934 109.333,19.467 163.199,33.6 7.734,1.867 13.867,6.667 19.467,12.8 63.2,71.733 126.667,143.2 189.867,214.667 27.199,30.667 44,68 64.8,102.667 51.2,85.066 100.267,170.934 150.667,256.267 9.066,15.2 11.467,28.533 5.333,46.667 -30.667,93.866 -59.733,188.533 -89.067,282.933 -8.533,26.934 -35.199,35.2 -53.333,52 -18.667,17.067 -41.6,29.334 -59.466,47.2 -34.4,33.867 -78.667,28.533 -120,33.334 -65.335,7.466 -131.202,10.4 -196.535,18.4 -35.2,4.267 -66.667,23.2 -99.733,36.267 -98.133,38.934 -196.267,77.867 -293.6,118.934 -32,13.333 -58.4,-1.867 -85.867,-8.8 -87.467,-22.4 -174.133,-47.467 -261.066,-71.2 -15.733,-4.267 -26.133,-11.733 -32.533,-28 -50.4,-126.4 -121.6,-241.334 -192.8,-356.533 -35.467,-57.334 -67.467,-116.533 -101.601,-174.4 -9.866,-16.8 -13.066,-35.467 -14.667,-54.133 -8.533,-89.334 -17.6,-178.4 -29.333,-267.2 -1.867,-14.4 0.267,-28.267 7.466,-41.867 59.467,-111.733 118.667,-223.733 177.334,-336 8.8,-17.067 21.066,-26.667 39.732,-29.333 49.334,-7.467 98.4,-15.467 147.734,-23.2 45.066,-7.2 89.866,-14.4 134.933,-21.333 4.801,-1.069 10.668,-1.602 12.801,-1.869 z m 161.334,1362.934 c 12.8,0.8 19.733,-1.333 26.666,-4 89.867,-36 180.268,-70.667 269.601,-108.533 70.399,-29.867 141.333,-52.267 219.2,-53.6 54.666,-1.067 109.333,-9.601 164.267,-14.4 7.466,-0.8 13.866,-3.2 20,-7.733 32,-24.8 64,-49.601 96.267,-74.134 8.267,-6.399 13.333,-14.133 16.533,-24.533 25.6,-82.666 50.934,-165.6 78.4,-247.733 5.6,-16.8 2.666,-28.533 -5.334,-42.399 -43.467,-73.601 -86.4,-147.2 -129.6,-220.801 -21.6,-36.8 -40,-76.267 -66.934,-108.8 -57.333,-68.8 -118.4,-133.6 -177.6,-200.267 -8.267,-9.333 -17.867,-14.933 -30.4,-18.933 -58.4,-18.667 -118.4,-24 -178.934,-29.067 -28.267,-2.399 -57.333,-4 -85.066,-14.666 C 1037.867,449.333 919.2,405.6 800.8,361.6 c -10.133,-3.733 -20.267,-4.8 -31.733,-3.2 -82.666,13.067 -165.6,25.067 -248.267,38.133 -14.667,2.4 -29.866,4 -38.399,20.267 C 428,521.333 372.8,625.601 317.867,729.866 c -3.467,6.4 -6.134,13.067 -5.334,20.801 9.334,85.6 18.134,170.933 28,256.533 1.867,15.467 1.066,31.467 9.867,46.4 30.133,51.199 59.467,102.666 89.066,154.133 C 496.267,1305.866 564,1397.866 607.2,1504 c 8.533,20.8 18.399,41.066 27.2,61.6 5.066,11.733 12.267,19.2 26.133,22.934 66.4,17.333 132.267,36.533 198.134,54.667 28.267,7.466 56.8,14.933 80.267,21.066 z\",\n\"m 229.867,1710.134 c -26.667,-2.4 -52.533,-18.667 -81.333,-25.334 -29.333,-6.934 -38.4,-24 -41.333,-53.866 -4.8,-48.534 5.333,-91.2 29.6,-132.267 9.867,-16.801 17.867,-34.4 20,-54.667 1.867,-17.866 12,-28.8 31.733,-32.8 30.4,-6.4 59.733,-16.8 89.6,-24.8 6.933,-1.867 15.2,-3.733 21.333,-1.334 32.8,13.334 67.2,25.334 93.333,49.334 30.934,28.267 57.601,61.066 86.4,91.733 14.133,15.199 16.8,29.866 5.066,48.8 -14.934,24 -26.934,49.6 -40,74.399 -4.533,8.801 -10.934,15.2 -21.066,17.334 -58.934,14.133 -117.867,28.267 -177.067,42.133 -4,1.067 -8.533,0.801 -16.266,1.335 z M 286.4,1440 c -24.267,6.667 -47.2,12.8 -69.867,19.467 -5.066,1.333 -8.533,5.333 -9.6,10.933 -6.4,27.2 -19.733,51.467 -33.333,75.2 -14.667,25.334 -10.934,51.733 -10.934,78.134 0,3.2 1.333,9.066 3.467,9.6 26.933,8 50.933,28.533 81.867,21.066 44.267,-10.666 88.267,-21.333 132.533,-31.466 17.6,-4 50.4,-46.667 49.334,-64.8 -0.268,-5.601 -3.467,-9.334 -6.934,-13.067 -20,-21.866 -38.134,-45.866 -60.533,-65.066 -21.6,-19.468 -49.067,-30.135 -76,-40.001 z\",\n\"m 1530.667,264.8 c 11.2,35.2 -16,63.2 -32.8,94.4 -5.334,9.866 -16.268,13.6 -27.467,15.2 -25.867,3.467 -51.2,9.067 -75.467,17.867 -20.533,7.467 -39.2,6.667 -57.066,-7.467 -12.533,-9.866 -25.867,-18.667 -39.733,-26.4 -18.934,-10.4 -24.534,-25.6 -20.267,-45.333 5.6,-26.933 12.533,-53.333 17.6,-80.267 3.467,-17.6 15.2,-25.333 30.4,-30.133 22.934,-7.2 45.066,-15.2 64.8,-29.333 23.2,-16.8 46.134,-1.6 69.066,0.8 10.667,1.067 21.333,4.534 31.2,8.534 38.667,15.199 39.467,17.065 39.734,82.132 z m -52.267,-0.267 c -0.801,-32.8 -1.066,-32.8 -32.533,-40 -18.934,-4.267 -36.533,-4.533 -53.334,8.8 -7.733,6.133 -18.4,8 -27.199,12.533 -7.467,3.733 -19.467,3.467 -20.801,13.333 -2.399,18.667 -12.8,35.733 -9.6,55.2 0.267,1.867 1.866,4 3.467,5.333 16.8,12.8 32.8,26.4 56.533,16 11.733,-5.067 24.8,-8 37.333,-10.667 32.267,-6.932 46.934,-25.865 46.134,-60.532 z\",\n\"m 1637.334,1615.2 c 30.666,9.333 67.466,19.467 103.732,31.733 9.601,3.2 15.2,13.066 15.2,24.533 0,8 -1.333,16.533 1.067,23.733 16.8,51.733 -16,86.4 -41.601,123.2 -11.2,16 -27.2,23.733 -47.466,16 -3.201,-1.333 -7.201,-2.4 -10.667,-1.867 -46.4,5.601 -74.4,-23.733 -102.4,-53.333 -5.333,-5.6 -8.8,-11.2 -8.533,-19.2 2.134,-51.733 11.2,-100.533 57.066,-133.6 8.268,-6.132 16.535,-11.465 33.602,-11.199 z m 67.199,101.6 c 4.267,-18.934 -3.199,-30.4 -24.267,-33.333 -10.667,-1.333 -20.8,-5.867 -30.933,-9.067 -8.268,-2.399 -15.467,-1.066 -22.667,3.467 -29.601,19.467 -29.333,76.801 1.866,92.801 15.467,8 36.801,17.6 50.667,4 14.401,-13.868 29.601,-32.001 25.334,-57.868 z\",\n\"m 1027.467,1414.667 c -244.267,-1.867 -419.2,-184.267 -420,-420.533 -0.8,-216.801 182.934,-411.733 419.467,-407.467 224.533,4 412.267,169.866 413.333,425.066 1.067,211.201 -178.934,405.6 -412.8,402.934 z m 358.4,-403.467 c 1.066,-218.934 -166.667,-366.934 -358.934,-370.667 -193.334,-4 -367.467,165.333 -365.601,353.601 1.867,202.666 156,369.333 372,367.732 194.935,-1.599 356.002,-168.8 352.535,-350.666 z\",\n\"m 1605.066,1164.267 c -56.266,5.867 -87.199,-33.333 -82.133,-74.4 3.2,-25.866 18.934,-44.8 45.066,-52.533 21.066,-6.133 42.667,-8 64.533,-7.199 28,1.066 51.734,19.732 58.667,46.399 7.733,29.867 -4.267,61.867 -28.533,76 -18.399,10.666 -38.133,13.067 -57.6,11.733 z m -2.666,-55.734 c 9.6,0 16,0.267 22.666,0 8,-0.533 14.667,-4.533 14.134,-13.066 -0.533,-8.267 -7.2,-12.533 -15.467,-12 -7.2,0.533 -14.399,1.333 -21.333,3.733 -9.066,2.934 -26.4,-3.2 -24.533,13.066 1.866,14.401 17.866,6.134 24.533,8.267 z\",\n\"M 1028.8,1234.4 C 897.333,1242.933 788.267,1132.799 789.867,1005.066 791.733,864 885.333,770.933 1018.933,766.667 c 125.333,-4 240.8,93.866 244.267,230.133 3.467,119.467 -99.467,244.533 -234.4,237.6 z m -2.667,-413.334 c -101.6,-3.467 -181.866,76.267 -183.199,187.733 -1.066,75.467 77.6,172 176.8,174.4 104.533,2.399 189.6,-86.134 189.866,-181.334 -0.267,-107.731 -99.733,-186.132 -183.467,-180.799 z\"],\n\"atmosphere\": [\"M 549.87623,4.2346683 A 544.16885,544.16885 0 0 0 5.706634,548.40426 544.16885,544.16885 0 0 0 246.18243,999.0822 544.16885,544.16885 0 0 1 66.610642,596.06778 544.16885,544.16885 0 0 1 610.78023,51.900444 544.16885,544.16885 0 0 1 915.0926,145.00831 544.16885,544.16885 0 0 0 549.87623,4.2346683 Z\"],\n\"barrel\": [\"m 499.42676,7.0789031 c -92.47187,0 -176.13651,6.4696599 -237.77167,17.2063029 -30.81757,5.368442 -56.02562,11.672859 -75.08524,19.522536 -9.52978,3.924957 -17.58646,8.127827 -24.46107,13.980122 -6.87464,5.852186 -13.49827,14.836759 -13.49827,26.278908 0,11.442033 6.62363,20.424588 13.49827,26.276828 0.6247,0.5318 1.31194,0.98551 1.95638,1.49108 v 106.0173 55.62889 c -0.64444,0.5056 -1.32961,0.95925 -1.95432,1.49107 -6.87462,5.85224 -13.49826,14.83471 -13.49826,26.27683 0,11.44216 6.62364,20.42873 13.49826,26.28098 0.62471,0.53179 1.30988,0.98551 1.95432,1.49107 v 133.6177 c -0.64444,0.50558 -1.33168,0.95926 -1.95638,1.49108 -6.87464,5.85224 -13.49827,14.83472 -13.49827,26.27684 0,11.44215 6.62363,20.42873 13.49827,26.28097 0.6247,0.5318 1.31194,0.98549 1.95638,1.49107 v 100.60104 h -0.002 v 55.62889 c -0.64444,0.5056 -1.32962,0.95925 -1.95432,1.49107 -6.87463,5.85224 -13.49826,14.83471 -13.49826,26.27684 0,11.44215 6.62363,20.42872 13.49826,26.28097 0.6247,0.53179 1.30988,0.98549 1.95432,1.49107 -1.5e-4,-1.2e-4 0.002,1.2e-4 0.002,0 v 161.65446 c -0.64444,0.50559 -1.33168,0.95927 -1.95638,1.49108 -6.87464,5.85223 -13.49827,14.83676 -13.49827,26.2789 0,11.44214 6.62363,20.42666 13.49827,26.27891 6.87461,5.85225 14.93129,10.0532 24.46107,13.97805 19.05962,7.84966 44.26767,14.15626 75.08524,19.5246 61.63516,10.7367 145.2998,17.2042 237.77167,17.20424 92.47189,0 176.13444,-6.46754 237.7696,-17.20424 30.81757,-5.36834 56.02564,-11.67494 75.08525,-19.5246 9.52985,-3.92485 17.58855,-8.1258 24.46313,-13.97805 6.87469,-5.85225 13.49827,-14.83677 13.49827,-26.27891 0,-9.97746 -5.08626,-17.94238 -10.93386,-23.73519 V 725.91356 c 5.8476,-5.7928 10.93179,-13.75976 10.93179,-23.73724 0,-9.97776 -5.08387,-17.94281 -10.93179,-23.73519 V 618.77952 514.14368 c 5.8476,-5.7928 10.93386,-13.75975 10.93386,-23.73724 0,-9.97775 -5.08605,-17.9428 -10.93386,-23.73519 V 324.9881 l 0.002,-0.002 c 5.8476,-5.7928 10.93179,-13.75976 10.93179,-23.73725 0,-9.97775 -5.08387,-17.9428 -10.93179,-23.73518 v -59.66161 h -0.002 V 107.93638 h -0.1365 c 5.90584,-5.80113 11.07036,-13.814213 11.07036,-23.869608 0,-11.442149 -6.62358,-20.426722 -13.49827,-26.278908 C 829.87016,51.935571 821.81146,47.7327 812.28161,43.807742 793.222,35.958065 768.01393,29.653647 737.19636,24.285206 675.5612,13.548563 591.89865,7.0789031 499.42676,7.0789031 Z m 0,38.4453329 c 90.66225,0 172.79638,6.464017 231.17454,16.63345 29.18908,5.084595 52.54297,11.224404 67.04254,17.195957 4.01685,1.654441 7.13139,3.262812 9.62477,4.711054 -2.49359,1.448474 -5.60718,3.05639 -9.62477,4.711054 -14.49957,5.971571 -37.85346,12.111299 -67.04254,17.195969 -58.37816,10.16935 -140.51229,16.63551 -231.17454,16.63551 -90.66224,0 -172.79638,-6.46616 -231.17454,-16.63551 -29.18908,-5.08467 -52.54095,-11.224398 -67.04046,-17.195969 -4.01757,-1.654664 -7.13326,-3.26258 -9.62685,-4.711054 2.49342,-1.448242 5.61004,-3.056613 9.62685,-4.711054 14.4995,-5.971553 37.85138,-12.111362 67.04046,-17.195957 58.37816,-10.169433 140.5123,-16.63345 231.17454,-16.63345 z m 298.56038,84.015154 c -0.0577,29.37517 0.012,49.81753 0,88.31259 0.018,23.14947 0,87.95275 0,87.95275 -0.10705,0.0447 -0.19122,0.0882 -0.2916,0.13235 v 1.52416 c -24.29551,5.13864 -47.08417,12.15972 -67.09424,15.69662 -58.37819,10.16936 -140.51229,16.63345 -231.17454,16.63345 -90.66224,0 -172.79431,-6.46409 -231.17247,-16.63345 -26.74912,-4.65963 -48.24046,-10.20594 -62.86504,-15.69662 v -89.60926 h -0.002 v -86.9518 c 15.92255,4.90461 34.62527,9.17599 56.26792,12.94608 61.63516,10.73671 145.2998,17.20424 237.77167,17.20424 92.47189,0 176.13444,-6.46753 237.7696,-17.20424 23.66361,-4.12215 43.98619,-8.80492 60.79078,-14.30687 z m 0,217.18407 c 0.0307,55.81883 0,148.23892 0,148.23892 -0.10737,0.0447 -0.19122,0.0882 -0.2916,0.13236 v 1.52416 c -24.29553,5.13865 -47.08419,12.15971 -67.09424,15.69661 -58.37816,10.16935 -140.51229,16.63346 -231.17454,16.63346 -90.66224,0 -172.79638,-6.46411 -231.17454,-16.63346 -26.74912,-4.65962 -48.24047,-10.20595 -62.86505,-15.69661 V 348.08425 c 0,0 0.002,0 0.002,0 15.92255,4.9046 34.62527,9.17599 56.26791,12.94609 61.63516,10.73669 145.29773,17.20424 237.7696,17.20424 92.47189,0 176.13443,-6.46755 237.7696,-17.20424 23.66367,-4.12216 43.98627,-8.8049 60.79078,-14.30688 z m 0,189.15766 c 0,0 0.0797,61.8437 0.12408,82.8984 h -0.12616 c 0.018,23.14946 0,87.95274 0,87.95274 -0.10705,0.0447 -0.19121,0.0882 -0.29159,0.13236 v 1.52416 c -24.29551,5.13864 -47.08418,12.15972 -67.09424,15.69662 -58.37814,10.16935 -140.51233,16.63345 -231.17453,16.63345 -90.66225,0 -172.79432,-6.4641 -231.17248,-16.63345 -26.74912,-4.65963 -48.24047,-10.20596 -62.86505,-15.69662 v -89.60926 h -0.90167 l 0.90167,-81.53761 c 15.92255,4.90462 34.62528,9.17599 56.26792,12.94608 61.63516,10.73671 145.2998,17.20424 237.77167,17.20424 92.47189,0 176.13444,-6.46753 237.7696,-17.20424 23.66365,-4.12215 43.98618,-8.80491 60.79078,-14.30687 z m 0.31848,211.6003 c 0.12667,73.59001 0.26443,117.62887 0.2523,167.62703 3.48266,1.48812 6.45407,2.95153 8.71069,4.26228 -2.49359,1.44845 -5.60718,3.05851 -9.62477,4.71313 -14.49957,5.97161 -37.85346,12.11129 -67.04254,17.19596 -58.37816,10.16934 -140.51229,16.63344 -231.17454,16.63344 -90.66224,0 -172.79638,-6.4641 -231.17454,-16.63344 -29.18908,-5.08467 -52.54095,-11.22435 -67.04046,-17.19596 -4.01757,-1.65463 -7.13326,-3.26468 -9.62685,-4.71313 2.49342,-1.44826 5.61004,-3.05464 9.62685,-4.70898 l 1.8447,-166.75017 c 0.24257,0.11511 2.33071,1.10021 2.33071,1.10021 15.92255,4.9046 34.62528,9.17599 56.26792,12.94609 61.63516,10.73669 145.29773,17.20423 237.76961,17.20423 92.47193,0 176.13443,-6.46754 237.76959,-17.20423 23.66366,-4.12217 43.98626,-8.80491 60.79077,-14.30688 z\"],\n\"cargo-buy\": [\"m 225.03011,91.47987 7.15442,-20.026798 -14.31234,-13.053099 -25.73252,2.118376 -39.19816,30.177525 -6.9204,20.666976 10.57491,12.67208 29.33402,-3.6136 z m -7.00606,-14.38456 -6.88534,11.064757 -26.80735,20.108803 -20.81391,3.75824 -3.87687,-5.59604 3.45129,-13.410824 31.95752,-24.005134 17.58669,-0.06268 z M 182.18515,9.0753408 275.82247,-8.3354493 326.40005,40.204027 478.07,288.02729 441.24171,369.66213 342.38923,437.24366 253.66087,446.57475 95.356107,190.31724 61.53325,144.31681 85.973141,77.663998 Z M 187.68692,32.920586 107.89601,90.030844 90.368077,143.6265 116.1701,174.00166 194.80929,158.53725 267.36841,101.85 291.49825,46.516211 263.77388,16.894095 Z m -54.53138,162.257064 134.52247,223.94397 71.86587,-9.07897 86.36085,-60.6526 23.25278,-53.78969 L 312.92559,68.809817 288.5209,116.90372 206.49887,180.90378 Z m 55.17633,-25.35752 9.37517,-7.88674 150.46966,247.47862 -9.65627,7.25989 z m 83.03688,-60.72885 8.01106,-9.457385 152.53397,247.706025 -6.11397,10.14633 z\",\n\"m 290.70585,496.48973 71.03434,54.92263 -90.14664,40.42663 193.75404,20.69274 113.41872,-158.44563 -90.14664,40.42664 6.23422,-89.57403 z\"],\n\"cargo-export\": [\"m 359.2931,485.40537 61.12544,71.48959 -104.58197,46.90022 174.5365,-22.16011 132.63626,-115.59278 -104.58196,46.90023 -12.72754,-93.19381 z\",\n\"m 134.04386,212.9733 8.46387,-23.69229 -16.93191,-15.44219 -30.442323,2.50611 -46.372565,35.70088 -8.187022,24.44962 12.510417,14.99144 34.702997,-4.27499 z m -8.28837,-17.01735 -8.14557,13.08991 -31.713888,23.7893 -24.623446,4.44611 -4.586451,-6.62027 4.082977,-15.8654 37.806672,-28.39877 20.805576,-0.0742 z M 83.357014,115.48634 194.13268,94.888864 l 59.83475,57.423626 179.42994,293.18209 -43.56892,96.57639 -116.94535,79.9509 -104.96822,11.03895 -187.279132,-303.16005 -40.01343,-54.41986 28.913095,-78.85219 z m 6.508754,28.20963 -94.3949509,67.5631 -20.7360571,63.4052 30.5245418,35.93469 93.0324502,-18.29485 85.839528,-67.06265 28.54629,-65.46148 -32.79872,-35.04382 z m -64.512201,191.95482 159.143993,264.93219 85.01942,-10.74068 102.16737,-71.75379 27.5087,-63.63477 -161.1663,-268.29978 -28.87145,56.89647 -97.03444,75.71395 z m 65.275201,-29.99868 11.091102,-9.33027 178.00993,292.77439 -11.42363,8.58866 z m 98.235042,-71.844 9.47729,-11.18836 180.45213,293.04338 -7.23299,12.00341 z\"],\n\"cargo-import\": [\"m 359.2931,485.40537 61.12544,71.48959 -104.58197,46.90022 174.5365,-22.16011 132.63626,-115.59278 -104.58196,46.90023 -12.72754,-93.19381 z\",\n\"m 134.04386,212.9733 8.46387,-23.69229 -16.93191,-15.44219 -30.442323,2.50611 -46.372565,35.70088 -8.187022,24.44962 12.510417,14.99144 34.702997,-4.27499 z m -8.28837,-17.01735 -8.14557,13.08991 -31.713888,23.7893 -24.623446,4.44611 -4.586451,-6.62027 4.082977,-15.8654 37.806672,-28.39877 20.805576,-0.0742 z M 83.357014,115.48634 194.13268,94.888864 l 59.83475,57.423626 179.42994,293.18209 -43.56892,96.57639 -116.94535,79.9509 -104.96822,11.03895 -187.279132,-303.16005 -40.01343,-54.41986 28.913095,-78.85219 z m 6.508754,28.20963 -94.3949509,67.5631 -20.7360571,63.4052 30.5245418,35.93469 93.0324502,-18.29485 85.839528,-67.06265 28.54629,-65.46148 -32.79872,-35.04382 z m -64.512201,191.95482 159.143993,264.93219 85.01942,-10.74068 102.16737,-71.75379 27.5087,-63.63477 -161.1663,-268.29978 -28.87145,56.89647 -97.03444,75.71395 z m 65.275201,-29.99868 11.091102,-9.33027 178.00993,292.77439 -11.42363,8.58866 z m 98.235042,-71.844 9.47729,-11.18836 180.45213,293.04338 -7.23299,12.00341 z\"],\n\"cargo-sell\": [\"m 318.76142,265.9979 7.15442,-20.02679 -14.31234,-13.0531 -25.73252,2.11838 -39.19816,30.17752 -6.9204,20.66697 10.57491,12.67208 29.33402,-3.6136 z m -7.00606,-14.38456 -6.88534,11.06476 -26.80735,20.1088 -20.81391,3.75824 -3.87687,-5.59604 3.45129,-13.41083 31.95752,-24.00512 17.58669,-0.0627 z m -35.8389,-68.01995 93.63732,-17.41079 50.57758,48.53947 151.66995,247.82325 -36.82829,81.63484 -98.85248,67.58153 -88.72836,9.33109 -158.30476,-256.25751 -33.82284,-46.00043 24.43988,-66.65281 z m 5.50177,23.84524 -79.79091,57.11025 -17.52793,53.59565 25.80202,30.37516 78.63919,-15.46441 72.55912,-56.68725 24.12984,-55.33378 -27.72437,-29.62211 z m -54.53138,162.25705 134.52247,223.94397 71.86587,-9.07897 86.36085,-60.6526 23.25278,-53.78969 -136.23192,-226.79054 -24.40469,48.0939 -82.02203,64.00006 z m 55.17633,-25.35752 9.37517,-7.88674 150.46966,247.47862 -9.65627,7.25989 z m 83.03688,-60.72885 8.01106,-9.45739 152.53397,247.70603 -6.11397,10.14633 z\",\n\"m 481.3352,921.49367 71.03432,54.9226 -90.14662,40.42673 193.75403,20.6927 113.41874,-158.44563 -90.14669,40.4266 6.23424,-89.574 z\"],\n\"cargo\": [\"m 201.12743,137.23568 10.86991,-30.42725 -21.74512,-19.831893 -39.09601,3.218483 -59.55477,45.84951 -10.514369,31.39989 16.066742,19.25302 44.567947,-5.49025 z m -10.64448,-21.85484 -10.46108,16.81097 -40.72902,30.55185 -31.62312,5.70997 -5.89024,-8.50218 5.24363,-20.37544 48.5539,-36.47161 26.71984,-0.0952 z M 136.03205,12.036349 278.29758,-14.41634 355.14143,59.330962 649.9679,406.97909 594.01375,531.009 443.82465,633.68732 309.01734,647.86432 4.1104607,287.40186 -47.277434,217.51223 -10.145309,116.24486 Z M 144.39102,48.265054 23.162635,135.03412 -3.4679807,216.46341 35.733677,262.61319 155.21223,239.1177 265.45312,152.99124 302.1142,68.921229 259.99183,23.915573 Z M 61.54009,294.78643 330.31396,606.15405 439.5016,592.36014 570.71186,500.20908 606.04044,418.48504 334.6693,102.79248 297.59063,175.86282 172.97242,273.09975 Z m 83.83083,-38.52637 14.24388,-11.98252 293.00289,347.12446 -14.67101,11.03012 z m 126.16001,-92.26692 12.1714,-14.36886 296.13927,347.46998 -9.28914,15.41561 z\"],\n\"chevron-down\": [\"M 90.390625,267.5625 8.5839844,349.36914 417.61914,758.40625 438.07227,778.85938 499.42773,840.21289 990.27148,349.36914 908.46289,267.5625 499.42578,676.59766 Z\"],\n\"chevron-left\": [\"M 725.75293,90.85055 643.94629,9.043949 234.90918,418.07906 214.45605,438.53219 153.10254,499.88765 643.94629,990.7314 725.75293,908.92281 316.71777,499.8857 Z\"],\n\"chevron-right\": [\"M 273.10254,908.92476 354.90918,990.7314 763.94629,581.69625 784.39942,561.24312 845.75293,499.88766 354.90918,9.043949 273.10254,90.8525 682.1377,499.88961 Z\"],\n\"chevron-up\": [\"M 90.390624,780.21289 8.5839844,698.40625 417.61914,289.36914 438.07227,268.91601 499.42773,207.5625 990.27148,698.40625 908.46289,780.21289 499.42578,371.17773 Z\"],\n\"cogs\": [\"m 353.96054,10.059338 c -29.66408,0 -58.90969,3.90421 -87.11409,11.30553 v 53.649034 a 293.94819,293.94819 0 0 0 -49.8064,20.88091 l -37.93004,-37.93004 c -24.53477,14.5233 -47.38194,32.13344 -67.88738,52.638878 -21.687925,21.68791 -40.087655,46.02175 -55.067315,72.17746 l 36.76532,36.76533 a 293.94819,293.94819 0 0 0 -20.25719,47.65593 H 21.712657 c -7.23475,27.90315 -11.0357,56.81894 -11.0357,86.14055 0,30.34948 4.10563,60.25428 11.84653,89.05981 h 49.240988 a 293.94819,293.94819 0 0 0 20.08771,48.10611 l -34.8657,34.86569 c 14.82828,25.59816 32.95334,49.42352 54.236145,70.7063 20.91067,20.91069 44.26904,38.78535 69.35718,53.47006 l 34.50231,-34.50097 a 293.94819,293.94819 0 0 0 51.76433,21.95208 v 48.31898 c 28.2043,7.4015 57.45013,11.30552 87.11409,11.30552 30.00699,0 59.58186,-4.00493 88.08763,-11.57535 v -49.52437 a 293.94819,293.94819 0 0 0 46.88172,-19.9711 l 35.59246,35.59247 c 26.15571,-14.97967 50.48954,-33.3794 72.17746,-55.06732 20.50542,-20.50542 38.11536,-43.35261 52.63888,-67.88737 l -36.75718,-36.75719 a 293.94819,293.94819 0 0 0 20.59346,-49.03354 h 52.22398 c 7.7409,-28.80553 11.84652,-58.71033 11.84652,-89.05981 0,-29.32161 -3.80096,-58.2374 -11.03569,-86.14055 h -53.59751 a 293.94819,293.94819 0 0 0 -20.57448,-49.10811 l 38.13478,-38.13343 C 635.48779,154.87228 617.61062,131.51444 596.69981,110.60365 575.41691,89.320742 551.58935,71.196952 525.9908,56.368872 l -38.57546,38.57682 A 293.94819,293.94819 0 0 0 442.04817,76.120322 V 21.633338 c -28.50573,-7.57016 -58.08068,-11.574 -88.08763,-11.574 z M 352.9165,170.59289 A 184.22388,184.22388 0 0 1 537.14039,354.81679 184.22388,184.22388 0 0 1 352.9165,539.04069 184.22388,184.22388 0 0 1 168.6926,354.81679 184.22388,184.22388 0 0 1 352.9165,170.59289 Z\",\n\"m 557.53312,669.21709 c -8.42156,17.88263 -14.37072,36.62138 -17.91608,55.72529 l 32.34167,15.23082 a 195.86992,195.86992 0 0 0 -1.55212,35.95321 l -33.63389,12.09743 c 1.78983,18.91361 5.91963,37.68622 12.45964,55.86912 6.91715,19.23143 16.36287,37.23181 27.87783,53.68765 l 32.6011,-11.72594 a 195.86992,195.86992 0 0 0 22.97784,25.74121 l -14.46481,30.71505 c 14.76715,12.28302 31.1196,22.78348 48.79579,31.10784 18.29581,8.61613 37.48913,14.63099 57.0518,18.14231 l 13.9794,-29.68433 a 195.86992,195.86992 0 0 0 34.70304,1.54757 l 11.12006,30.91663 c 19.64125,-1.67172 39.14974,-5.83429 58.02194,-12.62223 18.54224,-6.66926 35.94913,-15.67601 51.92411,-26.63112 l -11.00338,-30.59402 a 195.86992,195.86992 0 0 0 27.92931,-24.97338 l 29.12851,13.71765 c 12.46899,-14.90137 23.12533,-31.42349 31.54688,-49.30605 8.51889,-18.08936 14.50082,-37.05518 18.02979,-56.38878 l -29.85517,-14.05984 a 195.86992,195.86992 0 0 0 1.27026,-33.93182 l 31.5611,-11.35186 c -1.60479,-20.02035 -5.7885,-39.91333 -12.70567,-59.14477 -6.53999,-18.18288 -15.31373,-35.28508 -25.98102,-51.00577 l -32.5939,11.72335 a 195.86992,195.86992 0 0 0 -23.71283,-26.33502 l 14.82625,-31.48259 c -15.16743,-12.84432 -32.0296,-23.80924 -50.32541,-32.42538 -17.67618,-8.32434 -36.1868,-14.24209 -55.06179,-17.80236 l -15.21619,32.31061 a 195.86992,195.86992 0 0 0 -35.44527,-1.53859 L 744.05,538.8839 c -19.29329,1.73001 -38.44956,5.87576 -56.99191,12.54507 -18.8723,6.78797 -36.5626,16.00683 -52.76888,27.22894 l 12.30408,34.20662 a 195.86992,195.86992 0 0 0 -24.22828,22.00456 l -32.84679,-15.46871 c -12.65629,15.03518 -23.46621,31.72739 -31.9851,49.81671 z m 96.47928,46.20448 A 122.75605,122.75605 0 0 1 817.37024,656.66513 122.75605,122.75605 0 0 1 876.12666,820.02297 122.75605,122.75605 0 0 1 712.76883,878.77939 122.75605,122.75605 0 0 1 654.0124,715.42157 Z\"],\n\"color-picker\": [\"M 536.08203 21.912109 L 536.08203 228.42578 A 284.97464 284.97464 0 0 1 672.0332 284.98828 L 816.71875 140.30273 A 481.04968 481.04968 0 0 0 536.08203 21.912109 z M 469.64453 22.203125 A 481.04968 481.04968 0 0 0 189.00977 137.57617 L 331.78711 280.35352 A 284.97464 284.97464 0 0 1 469.64453 227.76758 L 469.64453 22.203125 z M 141.36719 183.89062 A 481.04968 481.04968 0 0 0 23.269531 469.64453 L 218.14648 469.64453 A 284.97464 284.97464 0 0 1 283.08984 325.61328 L 141.36719 183.89062 z M 863.49414 187.48438 L 719.43945 331.53906 A 284.97464 284.97464 0 0 1 779.69727 469.64453 L 979.99023 469.64453 A 481.04968 481.04968 0 0 0 863.49414 187.48438 z M 23.890625 536.08203 A 481.04968 481.04968 0 0 0 141.70117 815.32031 L 274.00781 683.01367 A 284.97464 284.97464 0 0 1 216.07617 536.08203 L 23.890625 536.08203 z M 781.22266 536.08203 A 284.97464 284.97464 0 0 1 728.28125 676.84766 L 864.81445 813.38086 A 481.04968 481.04968 0 0 0 979.51562 536.08203 L 781.22266 536.08203 z M 682.56055 725.08398 A 284.97464 284.97464 0 0 1 536.08203 790.51953 L 536.08203 978.57617 A 481.04968 481.04968 0 0 0 817.83984 860.36328 L 682.56055 725.08398 z M 320.64648 730.33203 L 188.80273 862.17578 A 481.04968 481.04968 0 0 0 469.64453 978.7832 L 469.64453 791.79297 A 284.97464 284.97464 0 0 1 320.64648 730.33203 z \"],\n\"coriolis-starport\": [\"M 484.22684,5.9191489 48.590428,44.590428 9.9191489,499.22847 48.590428,953.86651 503.22847,992.53595 957.86651,953.86651 996.53595,499.22847 957.86651,44.590428 Z M 527.63182,49.324134 902.52241,91.702957 943.30726,465.00141 Z M 469.67129,58.477944 62.190323,465.95892 93.351877,92.879425 Z M 503.22847,86.731731 915.72521,499.22847 503.22847,911.72521 90.731731,499.22847 Z M 364.63164,469.45492 v 59.54523 h 277.1918 v -59.54523 z m 579.08199,63.59421 -36.48721,370.17729 -370.17729,36.48721 z M 63.249886,533.55758 469.79192,940.09775 105.11099,907.93045 Z\"],\n\"credits\": [\"M 960.58008,411.80499 272.27148,743.44298 37.943359,536.03681 13.455078,550.61907 266.21289,774.33655 978.57031,429.51313 Z\",\n\"M 955.16193,477.69587 266.85333,809.33386 32.525209,601.9277 8.0369288,616.50996 260.79474,840.22747 973.15216,495.40402 Z\",\n\"m 566.85575,271.98605 c -3.29137,0.027 -6.65419,0.4299 -10.09079,1.20639 -6.07946,1.37437 -15.29768,5.42352 -27.65251,12.16566 -13.07802,7.14262 -21.98338,12.20163 -26.72593,15.17798 -9.71269,6.08235 -16.34696,12.19136 -19.89092,18.32844 -5.7625,9.77898 -5.44959,19.56618 0.92662,29.35671 3.99629,6.11689 14.08552,18.07316 30.27242,35.89375 7.88599,8.67545 15.66876,16.57883 23.35019,23.70994 16.78619,15.43776 33.99066,21.22349 51.60953,17.3655 4.55815,-0.92776 8.81728,-2.24867 12.77611,-3.97166 3.95885,-1.71145 10.26846,-4.93975 18.93526,-9.67655 19.33611,-10.55403 31.11675,-17.46461 35.3378,-20.75211 11.22522,-8.66105 14.909,-18.13977 11.06826,-28.43738 -1.82959,-5.05659 -7.08391,-12.29333 -15.75938,-21.71504 -0.82978,-0.91333 -2.54946,-2.80249 -5.15988,-5.67223 l -19.13873,10.4433 c 3.1809,3.24141 5.92747,6.13026 8.22672,8.67729 7.05907,7.76498 10.19063,13.52184 9.40405,17.2819 -0.58204,2.6594 -3.29839,5.77751 -8.1504,9.35316 -4.86069,3.57276 -13.10378,8.53702 -24.7383,14.88731 -5.05372,2.76024 -9.84271,5.28193 -14.37493,7.55811 -7.4567,3.6736 -13.71286,5.3827 -18.76085,5.10899 -4.40829,-0.23052 -9.09503,-2.20487 -14.04791,-5.94475 -7.81395,-5.69338 -23.93084,-21.97457 -48.361,-48.86246 -6.87466,-7.56904 -11.15446,-13.33108 -12.83426,-17.29281 -1.52415,-3.65919 -1.81201,-6.85052 -0.86118,-9.56754 0.95368,-2.71413 3.30463,-5.44155 7.06756,-8.17584 6.08518,-4.39392 16.83219,-10.80027 32.23826,-19.20778 11.63452,-6.35028 19.91746,-9.45142 24.84728,-9.31319 5.64439,0.13823 12.75388,4.79269 21.33715,13.97525 0.71165,0.7808 2.26406,2.42348 4.65839,4.92727 l 18.89527,-10.31608 c -1.22451,-1.47806 -2.12884,-2.54074 -2.72528,-3.19766 -5.15744,-5.67607 -9.82362,-10.15284 -14.00432,-13.43746 -8.57678,-6.66434 -17.80014,-9.95744 -27.6743,-9.87641 z\",\n\"m 566.8125,266.65234 c -3.69677,0.0303 -7.44336,0.48397 -11.22266,1.33789 -7.146,1.61549 -16.48541,5.83918 -29.03125,12.68555 l -0.002,0.002 c -13.11094,7.1606 -22.01542,12.20989 -27,15.33789 -10.14171,6.35102 -17.44975,12.8678 -21.66992,20.16797 -6.57905,11.18615 -6.14751,23.87046 1.0664,34.94727 l 0.002,0.004 0.002,0.004 c 4.50385,6.89379 14.54551,18.67954 30.78906,36.5625 h 0.002 v 0.002 c 7.97634,8.77485 15.86298,16.78544 23.66797,24.03125 l 0.01,0.008 0.008,0.008 c 17.62326,16.20758 36.92216,22.89192 56.32618,18.65625 4.8716,-0.99434 9.47502,-2.41724 13.7871,-4.29297 4.30621,-1.86161 10.64826,-5.12109 19.375,-9.89062 19.38053,-10.57827 30.87533,-17.19293 36.03907,-21.21094 l 0.006,-0.004 c 6.13126,-4.73181 10.58361,-9.95912 12.89062,-15.88867 2.30362,-5.92083 2.21264,-12.43348 -0.0781,-18.59766 -2.39063,-6.59323 -7.98091,-13.87089 -16.84375,-23.49609 -0.83873,-0.92314 -2.54058,-2.79224 -5.13868,-5.64844 l -2.82031,-3.10156 -29.01172,15.83203 4.94141,5.03711 c 3.14632,3.20617 5.84844,6.04782 8.07617,8.51563 l 0.006,0.006 0.006,0.008 c 3.35229,3.68752 5.66179,6.81637 6.90625,9.10351 1.22511,2.25159 1.21281,3.47287 1.2207,3.47071 -0.0433,0.15052 -1.68871,2.93487 -6.09179,6.17968 -4.44274,3.26489 -12.59414,8.20416 -24.12891,14.5 h -0.002 c -5.00086,2.73137 -9.72695,5.22038 -14.1875,7.46094 -6.97674,3.43507 -12.49266,4.75623 -16.10157,4.56055 h -0.006 -0.006 c -3.01923,-0.15788 -6.72931,-1.56618 -11.11133,-4.875 l -0.0371,-0.0274 -0.0371,-0.0273 C 560.6891,393.12146 544.22501,376.69982 519.86,349.8837 v -0.002 c -6.70111,-7.37812 -10.72357,-13.09423 -11.86328,-15.77344 -1.18208,-2.84679 -1.15347,-4.56411 -0.74609,-5.73242 0.41556,-1.18056 1.91522,-3.261 5.15625,-5.61914 l 0.002,-0.002 c 5.66407,-4.08961 16.34786,-10.48706 31.66797,-18.84766 11.34107,-6.19011 19.61409,-8.73496 22.14258,-8.66406 h 0.01 0.01 c 2.82462,0.0692 9.37831,3.52105 17.57227,12.28711 0.81065,0.88819 2.31947,2.48216 4.69922,4.9707 l 2.82421,2.95312 28.16016,-15.375 -4.12695,-4.98242 c -1.2463,-1.50436 -2.16765,-2.59102 -2.88477,-3.38086 v -0.002 c -5.29553,-5.82804 -10.14226,-10.49692 -14.6582,-14.04492 l -0.01,-0.008 -0.0117,-0.01 c -9.36744,-7.2787 -19.90314,-11.08903 -30.99023,-10.99805 z m 0.0879,10.66602 c 8.65607,-0.071 16.56212,2.70361 24.34375,8.74609 3.36045,2.64118 7.28975,6.42073 11.55664,10.97461 l -9.38476,5.12305 c -0.51544,-0.54764 -1.52816,-1.60645 -1.76758,-1.86914 l -0.0234,-0.0234 -0.0234,-0.0254 c -8.96981,-9.59609 -16.63269,-15.45337 -25.09375,-15.66406 -7.32885,-0.20221 -15.61811,3.4552 -27.54101,9.96289 -15.49057,8.45362 -26.29996,14.86618 -32.80664,19.56445 l -0.006,0.006 -0.006,0.004 c -4.27276,3.10475 -7.47285,6.4765 -8.96485,10.72265 v 0.004 l -0.002,0.002 c -1.49176,4.26274 -0.88306,8.92565 0.97266,13.38086 l 0.006,0.0156 0.006,0.0156 c 2.2252,5.24805 6.75718,11.04614 13.79687,18.79688 24.47583,26.93815 40.23475,43.06887 49.14258,49.5664 5.50814,4.14927 11.15347,6.67772 16.93359,6.98047 6.4e-4,4e-5 0.001,-3e-5 0.002,0 6.48169,0.34902 13.47108,-1.74588 21.39648,-5.65039 l 0.0195,-0.01 0.0176,-0.01 c 4.59747,-2.30895 9.43871,-4.85793 14.53711,-7.64258 11.73062,-6.40274 20.06222,-11.39083 25.3418,-15.27148 l 0.002,-0.002 0.002,-0.002 c 5.27877,-3.89015 9.06041,-7.31146 10.19727,-12.50586 l 0.006,-0.0234 0.004,-0.0234 c 0.79546,-3.80249 -0.40548,-7.30871 -2.29492,-10.78125 -1.8872,-3.46842 -4.6709,-7.09642 -8.37109,-11.16797 l -0.002,-0.002 c -1.00325,-1.11135 -2.39049,-2.5156 -3.54492,-3.74024 l 9.375,-5.11523 c 0.74195,0.8155 1.96387,2.15863 2.33789,2.57031 l 0.0117,0.0117 0.0137,0.0137 c 8.48052,9.20998 13.39404,16.4025 14.66602,19.91797 l 0.01,0.0234 0.01,0.0254 c 1.53802,4.12367 1.52286,7.48753 0.14258,11.03515 -1.38028,3.54763 -4.38166,7.38835 -9.47266,11.31641 l -0.01,0.006 -0.01,0.008 c -3.2843,2.55793 -15.33889,9.75789 -34.61523,20.2793 h -0.002 c -8.60575,4.70344 -14.88299,7.90176 -18.49414,9.46289 l -0.006,0.002 -0.006,0.002 c -3.58994,1.56245 -7.48797,2.77679 -11.71289,3.63672 l -0.0371,0.008 -0.0391,0.008 c -15.81514,3.46303 -30.90885,-1.42077 -46.83984,-16.06445 l -0.008,-0.008 c -0.004,-0.004 -0.008,-0.006 -0.0117,-0.01 -7.55121,-7.01132 -15.22317,-14.801 -23.01172,-23.36914 l -0.002,-0.002 c -16.12546,-17.75304 -26.25934,-29.8753 -29.75,-35.21679 l -0.002,-0.002 c -4.5e-4,-6.9e-4 -10e-4,-0.003 -0.002,-0.004 -5.52859,-8.49238 -5.72504,-15.36931 -0.79688,-23.73242 l 0.0117,-0.0195 0.0117,-0.0215 c 2.869,-4.96826 8.82641,-10.66503 18.10352,-16.47461 l 0.002,-0.002 0.002,-0.002 c 4.50116,-2.82485 13.40516,-7.89066 26.44727,-15.01367 12.16279,-6.63734 21.25832,-10.51091 26.27148,-11.64453 3.0939,-0.69906 6.07497,-1.0525 8.96094,-1.07617 z\",\n\"m 708.9228,197.30611 c -9.64358,0.0894 -20.72134,3.55004 -33.23751,10.38149 l -71.00991,38.76076 104.05119,114.51264 19.12058,-10.44689 -40.82107,-44.92716 48.62627,-26.53696 c 7.99548,-4.55239 15.12077,-6.74407 21.41345,-6.56249 6.29264,0.46674 12.64937,4.22058 19.05151,11.26812 l 24.55296,27.01298 19.13874,-10.44327 -27.20557,-29.95628 c -12.59108,-13.72629 -26.11145,-17.17462 -40.56671,-10.36332 8.15107,-5.41965 11.67913,-11.44644 10.58137,-18.07043 -0.90761,-6.14573 -5.80104,-14.11415 -14.69836,-23.8989 -5.39082,-5.93249 -10.35494,-10.40171 -14.87276,-13.4011 -7.65839,-4.99033 -15.69942,-7.4358 -24.12418,-7.32919 z m -1.44984,17.85968 c 1.70314,-0.0334 3.26635,0.15925 4.69473,0.57412 4.61577,1.38588 11.52671,7.12871 20.71216,17.24195 6.75077,7.44227 8.78619,13.70447 6.08644,18.78989 -2.35686,4.4083 -8.31045,9.21727 -17.85605,14.42944 l -46.69677,25.49408 -37.97221,-41.79488 51.9947,-28.38289 c 7.58058,-4.13604 13.92759,-6.25206 19.037,-6.35171 z\",\n\"m 708.86523,191.97266 c -10.8794,0.10258 -22.72447,3.93227 -35.73437,11.0332 l -76.96289,42.00976 111.43359,122.63672 28.75196,-15.70703 -40.82032,-44.92578 42.7168,-23.31055 0.041,-0.0234 c 7.38562,-4.20516 13.56354,-5.96541 18.48242,-5.85743 4.43134,0.36323 9.5848,3.11612 15.39648,9.51368 l 27.375,30.11718 28.77149,-15.69921 -31.77344,-34.98633 -0.01,-0.01 c -6.78796,-7.39996 -14.17793,-12.398 -22.19531,-14.44531 -2.55653,-0.65283 -5.16136,-0.87556 -7.7793,-0.9043 1.37706,-3.271 1.90478,-6.7364 1.32422,-10.30078 -1.22806,-8.21371 -6.82138,-16.55062 -16.01758,-26.66406 h 0.002 c -5.59016,-6.15186 -10.81923,-10.90387 -15.8711,-14.25781 l -0.0176,-0.0117 -0.0195,-0.0137 c -8.41841,-5.48558 -17.59772,-8.3115 -27.09375,-8.19336 z m 0.10743,10.66601 h 0.008 0.01 c 7.34378,-0.0929 14.23733,1.9698 21.12696,6.45508 3.9799,2.64549 8.67185,6.82483 13.85547,12.5293 l 0.002,0.002 c 8.58253,9.43856 12.76701,17.02588 13.36719,21.08984 l 0.008,0.0469 0.008,0.0449 c 0.71111,4.29088 -1.04956,7.95466 -8.27344,12.75781 l 5.22657,9.26563 c 6.33369,-2.98443 11.88429,-3.58138 17.38867,-2.17578 5.50437,1.40559 11.1715,4.994 16.97461,11.32031 l 22.6289,24.91601 -9.50586,5.1875 -21.73242,-23.9082 c -6.94979,-7.6504 -14.47144,-12.39878 -22.60351,-13.00195 l -0.1211,-0.008 -0.12109,-0.004 c -7.64553,-0.22062 -15.66526,2.39744 -24.20508,7.25977 l -54.49609,29.73828 40.82422,44.92968 -9.49024,5.18555 -96.66797,-106.39062 65.05664,-35.50977 c 12.0194,-6.5603 22.32676,-9.65254 30.73243,-9.73047 z m -1.60352,7.19531 c -6.49498,0.12668 -13.48033,2.63274 -21.48828,7.00196 l -57.94727,31.63281 45.35352,49.91797 50.37891,-27.50391 c 9.93798,-5.42642 16.64668,-10.31631 20.0039,-16.5957 l 0.004,-0.008 0.004,-0.006 c 2.0353,-3.83381 2.22256,-8.46549 0.86329,-12.65821 -1.35928,-4.19271 -4.01464,-8.14187 -7.71094,-12.21679 l -0.002,-0.002 c -9.40498,-10.35494 -16.02894,-16.6325 -23.12695,-18.76367 l -0.0234,-0.008 -0.0215,-0.006 c -2.00459,-0.58223 -4.11806,-0.82769 -6.28711,-0.78516 z m 0.20703,10.66407 h 0.002 c 1.22715,-0.0241 2.22834,0.11757 3.07618,0.36132 2.14952,0.6576 9.32944,5.85729 18.27734,15.70899 3.0524,3.36578 4.79195,6.26834 5.46289,8.33789 0.67013,2.06704 0.52506,3.11039 -0.13672,4.35937 -1.36187,2.53877 -6.55771,7.26026 -15.70312,12.25391 l -43.01563,23.48438 -30.59179,-33.66993 46.04296,-25.13476 c 7.1532,-3.90286 12.86211,-5.62855 16.58594,-5.70117 z\",\n\"M 726.17383,102.94727 11.820312,490.54688 274.68359,751.84375 989.03711,364.67383 Z M 721.08594,138.03125 942.26758,358.27148 276.57812,718.54688 55.396484,498.66016 Z\",\n\"M 727.35937,94.71875 722.99414,97.087891 0.76757812,488.95898 273.5,760.06836 1000.0859,366.26758 Z m -2.37109,16.45703 253,251.9043 L 275.86719,743.61914 22.873047,492.13477 Z m -2.71484,18.63086 -4.36328,2.36328 L 44.339844,497.06836 275.39258,726.76953 953.32031,359.86914 Z m -2.375,16.44922 211.3164,210.41601 L 277.76367,710.32422 66.453125,500.25195 Z\",\n\"m 422.40811,271.21214 -29.61053,9.90532 c 1.39537,0.27902 177.37334,160.49175 177.37334,160.49175 L 889.37638,285.24101 874.92597,262.52085 576.21216,412.07753 Z\"],\n\"direction-heading\": [\"M 276.20852,237.10146 20.268325,726.796 h 446.055765 65.82684 189.01093 257.0448 l -255.94018,-489.69454 -1.10462,2.11231 v -2.11231 h -444.2844 v 1.28099 z\"],\n\"dodec-starport\": [\"M 486.4043,17.507812 202.69727,119.64062 33.208984,369.0293 42.673828,670.4082 227.47852,908.66602 491.06836,985.25 v 0.39258 l 1.33984,-0.002 24.62696,7.1543 283.70312,-102.13281 169.49024,-249.38477 c -3.15734,-100.46088 -6.31148,-200.92186 -9.4668,-301.38281 L 775.95703,101.63672 Z m 1.64843,52.546876 253.01368,73.511722 -67.77735,95.85351 L 329.0293,244.125 263.1875,151.00781 Z M 228.29102,170.9375 298.52344,270.26367 197.55859,596.08398 91.339844,627.14648 83.693359,383.69531 Z m 540.375,2.87695 142.63086,183.88672 8.17578,260.23438 L 819.90039,588.81836 707.96094,259.66602 Z M 672.43359,279.43555 780.72656,597.85938 511.35352,799.24805 236.58008,605.29102 336.13281,284.03125 Z M 360.83203,468.83984 v 62.88282 H 628.85938 V 468.83984 Z M 808.38477,627.125 900.98828,654.20508 768.51562,849.12109 530.96289,934.64062 530.75586,834.6875 Z M 208.625,634.52344 490.75195,833.66797 490.95898,933.1543 257.0293,865.18555 102.24609,665.63281 Z\"],\n\"download\": [\"M 325.82812,6.5019531 V 292.33789 L 25.636719,294.83594 325.82812,595.02734 366.33008,635.5293 496.125,765.32422 666.42188,595.02734 971.49609,289.95312 968.52734,286.98438 666.42188,289.5 V 6.5019531 Z M 25.996094,858.03516 V 994.80469 H 968.52734 V 858.03516 Z\"],\n\"economy\": [\"M 4.3085938,3.984375 V 918.36914 997.01172 H 82.951172 997.33594 V 918.36914 H 82.951172 V 571.64844 L 295.75781,454.08008 481.42188,776.51758 853.46484,297.69336 953.97656,371.23828 977.5332,49.828125 704.62695,188.78711 796.8125,256.24023 488.25977,655.83203 315.82617,361.98828 82.951172,489.32812 V 3.984375 Z\"],\n\"engineer\": [\"m 499.24609,1.3984375 c -150.94466,0 -274.21249,122.8725225 -274.21289,273.5742225 2.5e-4,90.75618 44.7433,171.37165 113.27735,221.18359 -34.75452,9.40419 -67.71812,21.81569 -97.69727,37.3457 C 161.04323,574.7214 99.630859,643.34488 99.630859,732.99023 V 999.01172 H 905.75977 V 732.99023 c 0,-88.92601 -54.12283,-157.83784 -126.98243,-198.86132 C 745.03095,515.12805 707.0615,501.01483 666.77539,491.19922 731.56472,441.08736 773.45875,362.7812 773.45898,274.97266 773.45858,124.27096 650.19076,1.3984311 499.24609,1.3984375 Z m 0,75.0078125 c 110.51612,-5e-6 199.20479,88.51209 199.20508,198.56641 -2.9e-4,110.05431 -88.68896,198.56641 -199.20508,198.5664 -110.5161,0 -199.20478,-88.51209 -199.20507,-198.5664 2.9e-4,-110.05432 88.68896,-198.56641 199.20507,-198.56641 z m 20.26172,472.41406 c 83.52673,0.70766 165.33749,18.5003 222.46875,50.66797 57.13127,32.16767 88.77539,73.3441 88.77539,133.50195 V 924.00391 H 174.63867 V 732.99023 c 0,-56.35712 35.77807,-99.36918 100.47656,-132.88476 64.6985,-33.51558 155.47705,-52.03847 244.39258,-51.28516 z\"],\n\"engineering\": [\"M 241.56055,73.769531 0,473.96484 271.56641,928.61133 H 754.68555 L 998.95312,527.49609 724.68359,73.769531 Z m 30.00586,54.447269 h 423.11132 l 30.00391,54.44726 173.8125,299.37891 -203.81641,337.67187 H 271.56641 l -208.697269,-345.75 z m 210.53711,208.08984 c -75.76335,0 -137.19727,62.41337 -137.19727,139.38086 0,76.96747 61.43392,139.38086 137.19727,139.38086 75.76332,0 137.20117,-62.41339 137.20117,-139.38086 0,-76.96749 -61.43785,-139.38086 -137.20117,-139.38086 z m -12.88282,2.28906 a 136.39852,138.56638 0 0 0 -2.51562,0.28907 c 0.83933,-0.0965 1.67172,-0.20822 2.51562,-0.28907 z m -27.2832,5.49024 a 136.39852,138.56638 0 0 0 -1.08789,0.38672 c 0.36738,-0.1191 0.71915,-0.27073 1.08789,-0.38672 z m -35.33203,17.17578 a 136.39852,138.56638 0 0 0 -0.37695,0.24023 c 0.12278,-0.0844 0.25388,-0.15627 0.37695,-0.24023 z m -19.39649,16.10156 a 136.39852,138.56638 0 0 0 -1.88671,1.91797 c 0.62369,-0.64612 1.25069,-1.28438 1.88671,-1.91797 z m -17.5039,21.24414 a 136.39852,138.56638 0 0 0 -0.24024,0.38867 c 0.0839,-0.12697 0.15591,-0.262 0.24024,-0.38867 z m 119.42187,2.08008 c 2.12285,0 4.20455,0.16975 6.28907,0.32227 a 87.097468,88.481753 0 0 1 11.38867,1.52343 c 3.52218,0.74214 6.93399,1.7693 10.28515,2.93164 a 87.097468,88.481753 0 0 1 9.86524,4.15039 c 3.43217,1.69852 6.76805,3.56031 9.92773,5.6875 a 87.097468,88.481753 0 0 1 8.99024,7.00782 c 3.04943,2.69432 5.90656,5.59728 8.55859,8.69531 a 87.097468,88.481753 0 0 1 6.90039,9.13672 c 2.09047,3.20527 3.92009,6.58905 5.58985,10.07031 a 87.097468,88.481753 0 0 1 4.09374,10.04492 c 1.14311,3.40316 2.153,6.86666 2.88282,10.44336 a 87.097468,88.481753 0 0 1 1.49609,11.54688 c 0.15075,2.12202 0.31836,4.24121 0.31836,6.40234 0,48.58646 -38.75961,87.96291 -86.58594,87.96289 -2.12399,0 -4.20538,-0.16958 -6.29101,-0.32226 a 87.097468,88.481753 0 0 1 -11.37891,-1.52149 c -3.52988,-0.74353 -6.9485,-1.77391 -10.30664,-2.93945 a 87.097468,88.481753 0 0 1 -9.83789,-4.13867 c -3.43702,-1.70031 -6.77951,-3.56322 -9.94336,-5.69336 a 87.097468,88.481753 0 0 1 -8.98047,-7 c -3.05305,-2.69692 -5.91353,-5.6036 -8.56836,-8.70508 a 87.097468,88.481753 0 0 1 -6.89258,-9.12695 c -2.09697,-3.21441 -3.93167,-6.6096 -5.60546,-10.10157 a 87.097468,88.481753 0 0 1 -4.08985,-10.0332 c -1.14014,-3.39558 -2.14626,-6.85161 -2.875,-10.41992 a 87.097468,88.481753 0 0 1 -1.5,-11.57422 c -0.1501,-2.11741 -0.3164,-4.2304 -0.3164,-6.38672 0,-2.1552 0.16646,-4.26845 0.3164,-6.38477 a 87.097468,88.481753 0 0 1 1.5,-11.58007 c 0.72726,-3.56061 1.73026,-7.00982 2.86719,-10.39844 a 87.097468,88.481753 0 0 1 4.10742,-10.07422 c 1.66986,-3.48126 3.49927,-6.86504 5.58985,-10.07031 a 87.097468,88.481753 0 0 1 6.90039,-9.13672 c 2.65432,-3.10057 5.51404,-6.00694 8.5664,-8.70313 a 87.097468,88.481753 0 0 1 8.98047,-7 c 3.16385,-2.13002 6.50634,-3.99315 9.94336,-5.69335 a 87.097468,88.481753 0 0 1 9.83789,-4.13868 c 3.35681,-1.16501 6.77432,-2.19414 10.30273,-2.9375 a 87.097468,88.481753 0 0 1 11.38282,-1.52148 c 2.08564,-0.15268 4.16701,-0.32422 6.29101,-0.32422 z m -136.16797,33.04102 a 136.39852,138.56638 0 0 0 -0.40039,1.16406 c 0.12022,-0.39451 0.27679,-0.77108 0.40039,-1.16406 z m -5.50781,26.23828 a 136.39852,138.56638 0 0 0 -0.29883,2.68359 c 0.0833,-0.90036 0.1986,-1.78836 0.29883,-2.68359 z m -0.29883,28.75781 a 136.39852,138.56638 0 0 0 0.29883,2.68555 c -0.1003,-0.89581 -0.21552,-1.78461 -0.29883,-2.68555 z m 5.40625,27.75781 a 136.39852,138.56638 0 0 0 0.40235,1.16797 c -0.12404,-0.39432 -0.28172,-0.77211 -0.40235,-1.16797 z m 16.90625,35.89649 a 136.39852,138.56638 0 0 0 0.24024,0.38867 c -0.0843,-0.12667 -0.15632,-0.2617 -0.24024,-0.38867 z m 15.86328,19.72265 A 136.39852,138.56638 0 0 0 387.19727,574 c -0.62979,-0.62751 -1.25146,-1.25863 -1.86915,-1.89844 z m 20.89454,17.76953 a 136.39852,138.56638 0 0 0 0.41406,0.26368 c -0.13518,-0.0922 -0.27923,-0.17103 -0.41406,-0.26368 z m 34.62695,17.03125 a 136.39852,138.56638 0 0 0 1.08789,0.38672 c -0.36874,-0.11599 -0.72051,-0.26762 -1.08789,-0.38672 z m 25.8125,5.58399 a 136.39852,138.56638 0 0 0 2.58789,0.29687 c -0.86815,-0.083 -1.72459,-0.19734 -2.58789,-0.29687 z\"],\n\"exit\": [\"m 138.65464,11.269287 v 489.346823 2.42038 489.34683 h 24.20391 598.42988 24.75936 V 906.43581 761.77726 h -58.25011 v 0.002 H 703.09031 V 906.43581 H 221.10867 V 503.03649 500.61611 97.216804 H 703.09031 V 241.87299 h 24.70737 v 0.002 h 58.25011 V 97.216804 11.269287 H 761.28843 162.85855 Z m 425.3412,234.220103 -164.5937,164.5937 -90.53302,90.53302 h -0.26946 l -1.07546,1.07546 0.13473,0.13473 -0.13473,0.13474 1.07546,1.07545 h 0.26946 l 90.53302,90.53303 164.5937,164.5937 1.60019,-1.60256 -1.32366,-159.18799 h 342.96044 v -94.33618 -2.42038 -94.33617 H 564.27237 l 1.32366,-159.18799 z\"],\n\"fleet-carrier-lg\": [\"m 385.7263,66.755573 -267.40371,463.156457 -24.782793,42.92205 1.92871,1.1148 -0.963486,0.55652 28.861079,41.08379 113.58692,156.2881 35.98462,39.93052 163.23351,1.22436 41.25126,-88.59685 h 42.99184 l 3.56177,-42.05086 H 456.05181 L 416.37733,771.84147 303.98656,771.42859 282.07857,745.82492 170.27253,596.65861 153.70894,572.83408 163.44814,555.96266 415.81,118.86378 H 520.41425 V 66.755573 H 387.65327 v 1.113052 z m 58.29608,88.583257 v 0.2574 l -244.39484,423.30573 -0.003,0.002 -0.21914,0.12696 122.06351,149.72632 0.21913,-0.12663 h 77.06164 L 436.7132,646.2363 h 83.70153 v -32.84672 h -97.94859 l -39.44829,79.00007 h -44.31577 c 0,0 -98.91798,-115.76076 -99.43377,-117.68572 l 224.50204,-386.8466 h 56.6439 v -32.5185 z\",\n\"m 385.7263,66.755573 -267.40371,463.156457 -24.782793,42.92205 1.92871,1.1148 -0.963486,0.55652 28.861079,41.08379 113.58692,156.2881 35.98462,39.93052 163.23351,1.22436 41.25126,-88.59685 h 42.99184 l 3.56177,-42.05086 H 456.05181 L 416.37733,771.84147 303.98656,771.42859 282.07857,745.82492 170.27253,596.65861 153.70894,572.83408 163.44814,555.96266 415.81,118.86378 H 520.41425 V 66.755573 H 387.65327 v 1.113052 z m 58.29608,88.583257 v 0.2574 l -244.39484,423.30573 -0.003,0.002 -0.21914,0.12696 122.06351,149.72632 0.21913,-0.12663 h 77.06164 L 436.7132,646.2363 h 83.70153 v -32.84672 h -97.94859 l -39.44829,79.00007 h -44.31577 c 0,0 -98.91798,-115.76076 -99.43377,-117.68572 l 224.50204,-386.8466 h 56.6439 v -32.5185 z\",\n\"m -1283.9809,950.36845 h 178.0309 v -41.7688 h -178.0309 z m 89.0155,106.13355 c 69.9614,0 126.6758,-56.71438 126.6758,-126.67571 0,-69.96132 -56.7144,-126.67582 -126.6758,-126.67582 -69.9613,0 -126.6759,56.7145 -126.6759,126.67582 0,69.96133 56.7146,126.67571 126.6759,126.67571 m 0,25.3352 c -20.5106,0 -40.4205,-4.0227 -59.1775,-11.9561 -18.1043,-7.6573 -34.3586,-18.6146 -48.3114,-32.5673 -13.9515,-13.9521 -24.9086,-30.2064 -32.5673,-48.31067 -7.932,-18.7563 -11.9548,-38.66633 -11.9548,-59.17684 0,-20.50982 4.0228,-40.41986 11.9562,-59.17749 7.6573,-18.10436 18.6144,-34.35859 32.568,-48.31068 13.9521,-13.95281 30.2056,-24.91003 48.3107,-32.56799 18.7556,-7.93193 38.6655,-11.95483 59.1761,-11.95483 20.5098,0 40.4198,4.0229 59.1774,11.95618 18.1044,7.65875 34.3586,18.61587 48.3115,32.56798 13.9521,13.9521 24.9092,30.20498 32.5673,48.31081 7.9319,18.75616 11.9547,38.6662 11.9547,59.17602 0,20.51051 -4.0228,40.42054 -11.9561,59.1775 -7.6581,18.10431 -18.6151,34.35851 -32.568,48.31061 -13.9521,13.9521 -30.205,24.9094 -48.3107,32.5673 -18.7563,7.9328 -38.6663,11.9555 -59.1761,11.9555 z\"],\n\"fleet-carrier\": [\"M 385.7263,66.755573 C 288.3288,235.44751 190.9402,437.66796 93.539797,606.35858 l 1.92871,1.1148 -0.963486,0.55652 C 154.1958,689.88175 214.30142,746.08383 272.93764,811.80781 l 143.41647,1.22436 61.0683,-88.59685 h 42.99184 l 3.56177,-42.05086 h -69.81876 l -61.27241,89.45701 -88.89829,-0.41288 C 250.24048,705.36557 195.48846,666.14267 153.70894,606.35858 241.19837,453.97286 328.46226,267.96079 415.81,115.51133 H 520.41425 V 66.755573 H 387.65327 v 1.113052 z\",\n\"M 385.7263,66.755573 C 288.3288,235.44751 190.9402,437.66796 93.539797,606.35858 l 1.92871,1.1148 -0.963486,0.55652 C 154.1958,689.88175 214.30142,746.08383 272.93764,811.80781 l 143.41647,1.22436 61.0683,-88.59685 h 42.99184 l 3.56177,-42.05086 h -69.81876 l -61.27241,89.45701 -88.89829,-0.41288 C 246.64201,700.33821 200.61452,673.82604 153.70894,606.35858 241.19837,453.97286 328.46226,267.96079 415.81,115.51133 H 520.41425 V 66.755573 H 387.65327 v 1.113052 z\",\n\"m -1320.2963,956.45077 h 246.6149 V 898.5911 h -246.6149 z m 123.3074,137.50013 c 96.9131,0 166.0884,-69.0427 166.0884,-165.95589 0,-96.91298 -69.1753,-165.95577 -166.0884,-165.95577 -96.9129,0 -166.0885,78.563 -166.0885,175.47598 0,96.91308 69.1756,156.43568 166.0885,156.43568 m 0,44.6154 c -28.4119,0 -55.9919,-5.5725 -81.9748,-16.562 -25.0788,-10.6072 -47.5948,-25.7857 -66.9227,-45.1135 -19.3262,-19.327 -34.5043,-41.8429 -45.1135,-66.9218 -10.9875,-25.98199 -16.5601,-53.56207 -16.5601,-81.97399 0,-28.41095 5.5726,-55.99106 16.562,-81.97482 10.6073,-25.07883 25.7854,-47.59479 45.1145,-66.92172 19.3269,-19.32794 41.842,-34.50629 66.9217,-45.11438 25.981,-10.9876 53.561,-16.56027 81.9729,-16.56027 28.411,0 55.9911,5.57267 81.9747,16.56215 25.0789,10.60917 47.5949,25.78738 66.9229,45.11435 19.3269,19.32696 34.5051,41.84104 45.1136,66.92191 10.98746,25.98172 16.55999,53.56183 16.55999,81.97278 0,28.41192 -5.57253,55.992 -16.56199,81.97499 -10.6085,25.0788 -25.7865,47.5947 -45.1145,66.9217 -19.327,19.3269 -41.8411,34.5054 -66.9217,45.1134 -25.9819,10.9887 -53.562,16.5612 -81.973,16.5612 z\"],\n\"fuel\": [\"m 775.39859,122.29472 c 0,0 -205.30175,258.46797 -210.13332,408.81369 a 199.34701,219.61959 0 0 0 -2.44967,33.38405 199.34701,219.61959 0 0 0 199.34626,219.61851 199.34701,219.61959 0 0 0 199.34626,-219.61851 199.34701,219.61959 0 0 0 -1.69597,-28.20139 C 957.16086,381.80152 775.39859,122.29472 775.39859,122.29472 Z\",\n\"M 180.69531,306.17578 V 459.85742 H 27.728516 V 565.18359 H 180.69531 V 711.66211 H 286.02148 V 565.18359 H 433.21484 V 459.85742 H 286.02148 V 306.17578 Z\"],\n\"fullscreen-exit\": [\"m 643.803,352.17773 c 0,-40.07813 0,-80.15625 0,-120.23438 V 20 L 750.65652,125.08984 851.56081,24.18554 971.79519,144.41992 871.89284,244.32226 979.428,350.08203 v 2.0957 H 764.03738 Z\",\n\"m 355.625,352.17773 c 0,-40.07813 0,-80.15625 0,-120.23438 V 20 L 248.77147,125.08984 147.86718,24.18554 27.6328,144.41992 127.53515,244.32226 20,350.08203 v 2.0957 h 215.39061 z\",\n\"m 355.625,647.50793 c 0,40.07814 0,80.15628 0,120.23442 V 979.6857 L 248.77148,874.59586 147.86719,975.50016 27.63281,855.26578 127.53516,755.36344 20,649.60367 v -2.09574 h 215.39062 z\",\n\"m 643.803,647.50793 c 0,40.07814 0,80.15628 0,120.23442 V 979.6857 L 750.65651,874.59586 851.5608,975.50016 971.79518,855.26578 871.89283,755.36344 979.42798,649.60367 v -2.09574 H 764.03737 Z\"],\n\"fullscreen-window-exit\": [\"M 0,0 V 1000.4895 H 1000.2189 V 0 Z M 50,157.80245 H 950 V 950 H 50 Z\",\n\"M 593.93972,511.02726 V 435.65207 412.13136 237.80245 l 87.8898,86.43912 82.9964,-82.99641 98.8959,98.8959 -82.17228,82.17227 L 870,509.30349 v 1.72377 H 692.83562 Z\",\n\"M 406.06028,596.77519 V 672.15038 695.67109 870 l -87.8898,-86.43912 -82.9964,82.99641 -98.8959,-98.8959 82.17228,-82.17227 L 130,598.49896 v -1.72377 h 177.16438 z\"],\n\"fullscreen-window\": [\"M 0,0 V 1000.4895 H 1000.2189 V 0 Z M 50,157.80245 H 950 V 950 H 50 Z\",\n\"m 850,257.80245 v 75.37519 23.52071 174.32891 l -87.8898,-86.43912 -82.9964,82.99641 -98.8959,-98.8959 82.17228,-82.17227 -88.45046,-86.99016 v -1.72377 H 751.1041 Z\",\n\"M 150,850 V 774.62481 751.1041 576.77519 l 87.8898,86.43912 82.9964,-82.99641 98.8959,98.8959 -82.17228,82.17227 88.45046,86.99016 V 850 H 248.8959 Z\"],\n\"fullscreen\": [\"M 0,0 C 0,40.078127 0,80.156253 0,120.23438 V 332.17773 L 106.85352,227.08789 207.75781,327.99219 327.99219,207.75781 228.08984,107.85547 335.625,2.0957031 V 0 H 120.23438 Z\",\n\"m 999.428,0 c 0,40.078127 0,80.156253 0,120.23438 V 332.17773 L 892.57447,227.08789 791.67018,327.99219 671.4358,207.75781 771.33815,107.85547 663.803,2.0957027 V 0 h 215.39061 z\",\n\"M 0,999.6857 C 0,959.60756 0,919.52942 0,879.45128 V 667.50793 L 106.85352,772.59777 207.75781,671.69347 327.99219,791.92785 228.08984,891.83019 335.625,997.58996 v 2.09574 H 120.23438 Z\",\n\"m 999.42798,999.6857 c 0,-40.07814 0,-80.15628 0,-120.23442 V 667.50793 L 892.57447,772.59777 791.67018,671.69347 671.4358,791.92785 771.33815,891.83019 663.803,997.58996 v 2.09574 h 215.39061 z\"],\n\"help\": [\"m 503.16406,34.638672 c -122.95463,0 -240.90951,48.858732 -327.85156,135.800778 -86.942054,86.94206 -135.80078,204.89694 -135.800781,327.85157 0,122.95463 48.858727,240.9095 135.800781,327.85156 86.94205,86.94205 204.89693,135.80078 327.85156,135.80078 122.95463,0 240.90951,-48.85873 327.85156,-135.80078 C 917.95768,739.20052 966.81641,621.24565 966.81641,498.29102 966.8164,375.33639 917.95768,257.38151 831.01562,170.43945 744.07358,83.497404 626.11869,34.638672 503.16406,34.638672 Z M 508.5293,238.2207 h 0.002 c 41.1601,1e-4 71.50709,3.19359 92.42578,10.74024 30.99533,10.99671 51.83643,32.55122 59.08203,62.11328 l 0.008,0.0273 0.006,0.0274 c 3.39066,14.1791 4.57032,37.99801 4.57032,74.20117 0,39.69673 -1.49996,64.72769 -7.3125,79.77344 v 0.002 c -5.70925,14.83802 -13.90675,26.76504 -24.84766,34.89258 l -0.0547,0.0391 -0.0547,0.041 c -12.19072,8.80442 -37.51843,19.26155 -80.32227,35.18555 -10.30681,4.07864 -15.32124,8.68252 -15.61914,9.21875 l -0.19727,0.35547 -0.22461,0.33594 c 0.24046,-0.36068 -2.22656,7.4896 -2.22656,19.84375 v 68.75 10 h -81.32812 v -85 c 0,-35.026 9.13041,-61.48707 29.78515,-75.46875 l 0.11133,-0.0742 0.11133,-0.0723 c 11.61155,-7.41849 33.79377,-16.04822 69.64062,-28.34765 0.003,-10e-4 0.007,-0.003 0.01,-0.004 17.1713,-6.04773 26.21498,-13.46185 29.4375,-20.24609 l 0.0762,-0.16211 0.084,-0.16016 c 1.44664,-2.78203 3.94921,-15.74118 3.94921,-35.23047 0,-17.467 -0.2935,-31.48955 -0.86328,-41.93554 -0.56851,-10.42277 -1.64495,-17.66679 -2.22461,-19.61524 -4.01004,-12.80881 -10.989,-18.75466 -25.64062,-21.16015 l -0.0586,-0.01 -0.0586,-0.01 c -7.3175,-1.29132 -23.86936,-2.1914 -47.87304,-2.1914 -24.35359,0 -41.05365,1.78561 -47.3125,3.81054 l -0.10157,0.0332 -0.10156,0.0312 c -12.15621,3.64687 -18.36843,11.13264 -21.10352,27.83789 -0.57486,4.06891 -1.06835,15.38976 -1.06835,32.11523 v 21.32813 H 359.46875 V 374.7832 c 0,-27.21124 1.46454,-47.4211 4.97461,-61.7539 l 0.002,-0.002 c 7.11897,-29.04543 25.12872,-50.66029 51.89649,-61.90039 21.12634,-9.0836 51.44091,-12.90613 92.1875,-12.90625 z m -61.16992,457.42188 h 82.26562 10 v 102.8125 h -92.26562 z\"],\n\"home\": [\"M 502.863,16.559214 19.827687,377.07535 V 519.63766 L 75.47307,474.70123 v 461.40224 h 316.09916 v -333.8723 h 222.58154 v 333.8723 H 930.25293 V 474.70123 l 55.64538,44.93643 V 377.07535 Z\"],\n\"info\": [\"M 503.16406,11.729165 C 226.87309,26.533484 20.388159,247.28115 16.602212,498.29102 31.406532,774.58198 252.1542,981.06692 503.16406,984.85287 779.45502,970.04855 985.93997,749.30088 989.72592,498.29102 974.92158,222.00006 754.17394,15.515111 503.16406,11.729165 Z m 0,92.993495 C 738.02019,117.29974 893.51448,284.94837 896.73036,498.29102 884.1533,733.14616 716.50547,888.64145 503.16406,891.85732 268.30809,879.28041 112.81159,711.6335 109.59571,498.29102 122.17263,263.43407 289.82034,107.93856 503.16406,104.72266 Z\"],\n\"inventory\": [\"M 497.31836,6.9003906 113.33594,266.1582 113.08789,715.22852 C 110.7855,714.8367 497.39243,991.43357 497.4082,991.75586 l 384.05664,-276.67383 -0.25,-448.98437 z M 497.00195,70.644531 796.58008,275.70703 497.00391,477.36914 197.42578,275.70508 Z m 334.36914,257.189449 0.2168,351.46485 -305.83203,224.30664 -0.2168,-379.46289 z m -668.20312,24.11914 305.82422,209.08204 -0.0117,21.85156 L 163.1543,373.80078 Z m -0.0371,59.22071 305.82812,209.08594 -0.0117,21.08398 -305.82813,-209.08789 z m -0.0352,58.45312 305.83008,209.08985 -0.0117,19.93554 -305.83008,-209.08789 z m 608.51758,6.35743 -190.69531,129 -1.375,150.38671 190.69336,-129 z m -608.55273,50.95117 305.83398,209.08984 -0.0117,20.85547 -305.83593,-209.0918 z m -0.0352,58.22656 305.83594,209.0918 -0.0137,21.84961 -305.83594,-209.09375 z m -0.0371,59.2207 305.83984,209.09375 -0.0137,21.08399 -305.83984,-209.09571 z\"],\n\"location-filled\": [\"m 506.58376,16.367513 -1.41975,0.884477 h -0.002 l -319.92355,199.34752 1.30787,0.81552 -0.83719,0.52783 319.4548,770.20187 v 2.53455 l 0.5247,-1.26728 0.89312,2.15176 v -4.30352 l 319.45481,-770.20185 -0.83719,-0.52783 1.30786,-0.81554 z m -0.002,34.813237 264.05571,164.53427 -264.05571,164.53191 -1.41782,-0.88449 v 1.76896 L 241.1083,216.59951 505.16401,52.065227 l 1.41782,0.884479 z\"],\n\"location\": [\"m 506.58376,16.367513 -1.41975,0.884477 h -0.002 l -319.92355,199.34752 1.30787,0.81552 -0.83719,0.52783 319.4548,770.20187 v 2.53455 l 0.5247,-1.26728 0.89312,2.15176 v -4.30352 l 319.45481,-770.20185 -0.83719,-0.52783 1.30786,-0.81554 z m -0.002,34.813237 264.05571,164.53427 -264.05571,164.53191 -1.41782,-0.88449 v 1.76896 L 241.1083,216.59951 505.16401,52.065227 l 1.41782,0.884479 z M 766.7911,252.92254 505.68871,882.43774 244.95474,253.80701 l 260.20927,162.13762 1.41782,-0.88447 z\"],\n\"logo\": [\"m 300.23543,247.3766 -4.67638,14.71731 -28.0203,88.18726 -99.88879,33.74683 99.88879,33.74686 32.69668,102.90455 32.69604,-102.90455 99.8883,-33.74686 c 6.25484,0.0512 5.47609,-1.90694 -99.8883,-33.74683 z\",\n\"m 416.8326,158.29649 c -202.11915,3e-5 -366.367702,164.24854 -366.367697,366.3677 2e-6,97.15964 38.605057,190.3599 107.307297,259.06214 68.70223,68.70223 161.90079,107.30553 259.0604,107.30555 h 0.0485 0.0485 c 31.44439,-0.16446 62.6478,-4.45745 92.89188,-12.56156 l -11.43997,-35.48638 c -26.59175,6.99095 -53.98648,10.72408 -81.60256,10.87215 -87.29504,-0.0142 -170.99246,-34.68987 -232.72042,-96.41783 -61.74064,-61.74063 -96.41784,-145.45962 -96.41784,-232.77407 -1e-5,-182.02822 147.1637,-329.19361 329.19191,-329.19364 59.00661,0.002 116.08311,15.91106 165.831,44.99799 l 36.58056,-17.30533 C 556.62281,176.52965 496.44354,158.29919 416.8326,158.29649 Z\",\n\"m 961.23717,108.02504 -406.9707,171.5957 -77.46875,223.21289 -230.4668,77.85938 230.4668,77.86328 75.4375,237.42382 c 2.00371,4.49193 178.57421,-72.58007 178.57421,-72.58007 l 30.97071,-98.05664 -161.6875,68.05859 v -31.92383 l 173.3164,-72.95312 36.35352,-115.09375 -209.66992,88.25586 V 629.76332 L 821.39147,536.61293 858.75865,418.30238 600.09264,527.18129 V 495.25551 L 870.38951,381.48011 906.01256,268.69496 600.09264,397.46644 V 365.54066 L 917.83287,231.79457 Z\"],\n\"materials-encoded\": [\"m 808.63991,66.772298 c -36.9918,0.57877 -72.95392,13.64432 -100.92322,38.096022 -9.74964,8.52346 -18.52751,18.42983 -26.0403,29.67393 -48.08163,71.96217 -25.72439,170.86883 48.77297,220.64436 74.4974,49.77554 174.42929,32.57692 222.51095,-39.38524 48.08169,-71.96224 25.7219,-170.86631 -48.77545,-220.641852 -29.4643,-19.6866 -62.90511,-28.89791 -95.54495,-28.38722 z m 6.96615,53.889932 c 37.56502,0.34501 74.32296,22.36613 92.94415,60.12437 25.90771,52.53326 6.27371,114.37856 -43.17566,138.7654 -49.44937,24.38688 -110.46594,2.31677 -136.37367,-50.21647 -21.85966,-44.32492 -11.29756,-95.2788 22.2399,-124.7684 6.21071,-5.46096 13.2093,-10.18654 20.93577,-13.997 13.90761,-6.85879 28.73016,-10.04291 43.42951,-9.9079 z m -579.49909,23.13089 -49.39517,43.32 418.38927,477.06518 0.15182,-0.13192 185.46271,211.47313 49.39765,-43.32001 -418.38927,-477.06516 -0.15182,0.1319 z m 251.64978,54.39516 -47.80979,41.92876 326.1171,371.85374 47.8098,-41.93126 z m -239.42729,209.97985 -47.80981,41.93125 326.1171,371.85125 47.8098,-41.93126 z m -71.51312,206.41839 c -36.9918,0.57877 -72.95392,13.64432 -100.923235,38.09601 -9.749638,8.52346 -18.527498,18.42984 -26.04028,29.67394 -48.0816378,71.96216 -25.72439,170.86882 48.772966,220.64435 74.497399,49.77554 174.429289,32.57692 222.510949,-39.38523 48.0817,-71.96225 25.72439,-170.86632 -48.77296,-220.64186 -29.4643,-19.6866 -62.90761,-28.89791 -95.54744,-28.38721 z m 6.96614,53.88992 c 37.56502,0.34502 74.32545,22.36613 92.94664,60.12438 25.90771,52.53326 6.27372,114.37607 -43.17566,138.7629 -49.44936,24.38689 -110.46842,2.31678 -136.376151,-50.21647 -21.859661,-44.3249 -11.297577,-95.27631 22.239891,-124.7659 6.21071,-5.46097 13.20928,-10.18655 20.93576,-13.99701 13.90763,-6.85879 28.73017,-10.04291 43.42952,-9.9079 z\"],\n\"materials-grade-1\": [\"m 305.878,483.814 231.265,-111.948 7.283,-134.18 -190.834,84.465 z m 522.448,-75.365 -46.92,-0.004 -142.01,231.551 23.473,38.237 z M 269.201,683.58 244.673,723.578 582.581,723.602 558.027,683.6 Z M 164.598,677.869 188.061,639.607 46.303,408.393 -0.619,408.392 Z M 827.721,316.288 661.083,44.495 637.621,82.756 780.801,316.286 Z M 554.445,42.1 578.973,2.102 247.811,2.078 272.367,42.081 Z M 0,316.231 46.921,316.235 189.656,83.5 166.185,45.262 Z\"],\n\"materials-grade-2\": [\"M 221.21289,0 34.207031,304.96484 H 81.128906 L 243.60547,40 H 641.24023 L 803.9707,305.37695 h 46.91992 L 663.63477,0 Z m 308.93945,162.16797 -197.48632,67.46875 -61.65625,156.875 240.16015,-91.31445 z m 69.92774,163.73047 -240.16016,91.31445 -18.98047,133.0293 197.48243,-67.46875 z M 30.154297,409.92383 221.21289,721.5 H 663.63477 L 854.43945,410.33789 H 807.51758 L 641.24023,681.5 H 243.60547 L 77.076172,409.92383 Z\"],\n\"materials-grade-3\": [\"M 432.275,69.77 322.003,246.948 373.487,407.449 501.726,184.809 Z M 717.944,485.799 619.64,301.711 454.899,266.047 583.593,488.426 Z m -503.126,39.383 208.577,6.908 113.256,-124.837 -256.933,0.263 z M 641.24,40 837.925,360.75 641.24,681.5 H 243.605 L 46.921,360.75 243.605,40 H 641.24 M 663.634,0 H 221.212 L 0,360.75 221.212,721.5 H 663.634 L 884.846,360.75 Z\"],\n\"materials-grade-4\": [\"M 518.452,40 674.205,294.002 518.452,548.005 H 202.676 L 46.921,294.002 202.676,40 H 518.452 M 540.846,0 H 180.282 L 0,294.002 180.282,588.005 H 540.845 L 721.126,294.002 Z m -180.51,212.419 137.221,136.52 97.212,-28.258 -107.608,-114.627 z m 81.811,81.357 -136.521,137.22 28.259,97.212 L 448.512,420.6 Z m -81.357,81.81 -137.219,-136.52 -97.213,28.259 107.608,114.626 z M 278.98,294.23 415.5,157.01 387.241,59.797 272.614,167.405 Z\"],\n\"materials-grade-5\": [\"M 566.08,54 733.58,323.5 566.08,593 h -335 L 63.58,323.5 231.08,54 h 334.5 M 596.098,0 h -30.018 -335 -30.018 L 185.216,25.245 17.717,294.62 0,323.063 17.717,351.537 185.217,621.271 201.063,647 h 30.018 335 30.018 L 611.945,621.255 779.445,351.63 797.162,323.063 779.445,294.526 611.943,25.26 Z\"],\n\"materials-manufactured\": [\"M 413.01758 30.994141 C 361.04576 30.994141 315.25164 58.743072 289.67773 100.14453 C 283.01553 110.33558 277.53936 121.36573 273.61914 133.11328 C 238.69828 216.31676 195.94869 296.06316 155.92383 376.90039 C 131.94943 378.52079 112.16915 394.17767 104.13281 415.49219 C 100.99384 422.46675 99.232424 430.13836 99.232422 438.26758 C 99.232422 438.41648 99.242971 438.56234 99.244141 438.71094 L 19.664062 509.56836 C 28.063538 533.19124 24.360733 594.54912 32.517578 627 L 86.283203 617.20898 L 78.693359 530.29688 L 125.80078 491.01562 C 127.2456 490.14722 128.46776 489.55239 129.77539 488.85352 C 137.35528 493.22727 145.92566 496.20722 155.01367 497.42383 L 166.32031 572.11914 L 113.66406 632.85938 L 162.07422 669.70117 C 162.10192 669.75677 233.25977 585.76172 233.25977 585.76172 L 216.27148 474.21875 C 224.45293 464.30792 229.38672 451.92493 229.38672 438.26758 C 229.38672 437.74213 229.35825 437.22479 229.34375 436.70312 C 247.07062 425.8757 423.63907 318.06393 424.06836 320.74805 L 522.55273 739.28906 C 537.0608 851.94474 633.91741 939.75195 750.35547 939.75195 C 876.7184 939.75195 980.10934 836.36294 980.10938 710 C 961.49192 562.52129 850.29843 478.74041 755.41406 367.82422 C 673.2514 277.27451 600.13112 168.3004 520.67188 79.203125 C 520.64778 79.137065 520.62967 79.083657 520.60547 79.017578 C 520.52597 78.799706 520.47387 78.619936 520.39453 78.402344 L 519.58789 78.011719 C 493.06061 49.157361 455.06179 30.994141 413.01758 30.994141 z M 413.01758 86.980469 C 462.43853 86.980469 501.90235 126.44429 501.90234 175.86523 C 501.90235 225.28618 462.43853 264.75 413.01758 264.75 C 363.59665 264.75 324.13281 225.28618 324.13281 175.86523 C 324.13282 126.44429 363.59665 86.980469 413.01758 86.980469 z M 410.94727 123.50781 A 53.341011 53.341011 0 0 0 357.60742 176.84961 A 53.341011 53.341011 0 0 0 410.94727 230.18945 A 53.341011 53.341011 0 0 0 464.28906 176.84961 A 53.341011 53.341011 0 0 0 410.94727 123.50781 z M 541.79688 241.92773 L 740.47266 480.49805 C 666.00379 483.69286 600.43476 522.7514 560.70312 580.75977 L 493.32031 296.25781 C 513.71841 282.57945 530.46393 263.85783 541.79688 241.92773 z M 293.55273 257.52734 C 302.94672 271.20034 314.62414 283.18523 328.01758 292.95117 L 249.00391 345.88086 L 293.55273 257.52734 z M 750.35547 569.03711 C 838.23019 572.82586 888.42604 631.45075 891.32031 710 C 891.32031 788.37734 828.7328 850.96094 750.35547 850.96094 C 671.97813 850.96094 609.39453 788.37734 609.39453 710 C 609.39453 631.62267 671.97813 569.03711 750.35547 569.03711 z M 746.77344 624.4043 A 88.901688 88.901688 0 0 0 657.87305 713.30469 A 88.901688 88.901688 0 0 0 746.77344 802.20703 A 88.901688 88.901688 0 0 0 835.67578 713.30469 A 88.901688 88.901688 0 0 0 746.77344 624.4043 z \"],\n\"materials-raw\": [\"M 494.0293,14.423828 A 100.94891,100.94891 0 0 0 393.91406,103.71094 C 215.65229,150.99311 83.873047,313.6687 83.873047,506.60156 c -3e-6,110.53334 43.923163,216.5716 122.082033,294.73047 52.60791,52.60791 117.87281,89.61968 188.61133,108.25195 a 100.94891,100.94891 0 0 0 98.1582,78.47461 100.94891,100.94891 0 0 0 97.38477,-74.47461 c 77.14975,-16.95649 148.58539,-55.5307 205.30664,-112.25195 78.15887,-78.15887 122.08008,-184.19713 122.08007,-294.73047 0,-110.53333 -43.9212,-216.5716 -122.08007,-294.73047 C 739.61757,156.07265 669.57751,117.8421 593.86914,100.4668 A 100.94891,100.94891 0 0 0 494.0293,14.423828 Z m 89.74023,146.705082 c 63.16155,15.18986 121.5174,47.47638 168.21485,94.17382 66.65714,66.65714 104.09179,157.0314 104.09179,251.29883 0,94.26743 -37.43466,184.64364 -104.09179,251.30078 -45.88238,45.88239 -103.00291,77.91313 -164.89454,93.42578 a 100.94891,100.94891 0 0 0 -94.36523,-65.16796 100.94891,100.94891 0 0 0 -92.65625,61.23632 C 343.66324,830.74289 291.72919,800.24677 249.38477,757.90234 182.72763,691.2452 145.29297,600.86899 145.29297,506.60156 c 0,-163.77974 110.16475,-301.18215 260.58594,-342.5625 a 100.94891,100.94891 0 0 0 88.15039,52.28125 100.94891,100.94891 0 0 0 89.74023,-55.1914 z M 494.55078,287.38867 A 212.9946,212.9946 0 0 0 281.55469,500.38281 212.9946,212.9946 0 0 0 494.55078,713.37695 212.9946,212.9946 0 0 0 707.54492,500.38281 212.9946,212.9946 0 0 0 494.55078,287.38867 Z\"],\n\"materials-xeno\": [\"m 406.76758,14.111328 -89.98242,151.119142 91.64453,152.32617 181.62304,1.20898 89.98047,-151.11718 C 649.48567,116.8719 618.93817,66.094899 588.39062,15.318359 Z m 25.21484,41.916016 131.64649,0.878906 66.42578,110.4082 -65.22071,109.53516 -131.64257,-0.875 L 366.76562,165.5625 Z M 102.74023,177.32617 12.759766,328.44531 104.4043,480.77539 l 181.625,1.20899 89.97851,-151.11915 c -30.548,-50.77646 -61.0961,-101.55387 -91.64453,-152.33007 z m 612.26172,12.5918 -89.97851,151.11914 91.64258,152.33008 181.62304,1.20898 89.98242,-151.12109 C 957.72043,292.6809 927.17517,241.90283 896.62695,191.12695 Z m -587.04297,29.32617 131.64649,0.87695 66.42578,110.41016 -65.2207,109.53516 L 129.16406,439.18945 62.738281,328.7793 Z m 612.26172,12.5918 131.64649,0.87695 66.42578,110.41016 -65.2207,109.53515 -131.64454,-0.8789 -66.42578,-110.40821 z m -331.8457,119.0332 -89.97852,151.12109 91.64258,152.32618 181.625,1.20898 89.97852,-151.11914 C 651.09155,453.63121 620.54573,402.85322 589.99805,352.07617 Z m -302.54102,156.89453 -89.980464,151.1211 91.644534,152.32812 181.625,1.20899 89.97851,-151.11915 C 348.55634,610.52481 318.00685,559.74899 287.45898,508.97266 Z m 601.16407,13.82813 -89.98243,151.12109 91.64454,152.32617 181.625,1.20899 89.97851,-151.11719 C 949.71617,624.35429 919.16862,573.57733 888.62109,522.80078 Z m -575.94727,28.08984 131.64649,0.87695 66.42578,110.41211 -65.21875,109.53321 -131.64453,-0.875 L 65.833984,659.2168 Z m 601.16211,13.82813 131.64649,0.87695 66.42773,110.4082 -65.22266,109.53711 -131.64257,-0.875 -66.42579,-110.41211 z M 402.9707,684.80664 312.99219,835.92773 404.63672,988.25781 586.25977,989.4668 676.24023,838.3457 C 645.69222,787.56927 615.14412,736.79377 584.5957,686.01758 Z m 25.21875,41.91992 131.64649,0.875 66.42578,110.41211 -65.2207,109.53321 -131.64454,-0.875 -66.42578,-110.41016 z\"],\n\"materials\": [\"M 177.95117,21.324219 66.8125,170.73242 l 71.89453,170.61133 183.03125,21.20117 c 37.04907,-49.8011 74.09409,-99.60522 111.14063,-149.4082 L 360.98438,42.525391 Z m 274.16016,217.873051 -111.13672,149.4082 71.89258,170.61133 183.0332,21.20117 c 37.04409,-49.80546 74.09333,-99.60709 111.14063,-149.41016 L 635.14453,260.39844 Z M 125.4707,373.50977 14.330078,522.91992 86.224609,693.53125 269.25781,714.73242 c 37.04658,-49.80312 74.0925,-99.60673 111.13867,-149.41015 L 308.50391,394.71094 Z m 606.38672,85.69335 -111.14062,149.40821 71.89453,170.61133 183.03515,21.20312 C 912.68969,750.62063 949.73726,700.81874 986.7832,651.01562 L 914.88867,480.4043 Z M 406.36719,590.13477 295.23047,739.54297 367.125,910.1543 550.15625,931.35547 C 587.20312,881.55273 624.25,831.75 661.29688,781.94727 L 589.40234,611.33789 Z\"],\n\"megaship-lg\": [\"m 453.89305,390.22652 h 151.27132 v 35.49059 H 453.89305 Z m 75.63567,-90.18088 c 59.44556,0 107.63538,48.18983 107.63538,107.63537 0,59.44554 -48.18982,107.63537 -107.63538,107.63537 -59.44555,0 -107.63536,-48.18983 -107.63536,-107.63537 0,-59.44554 48.18981,-107.63537 107.63536,-107.63537 m 0,-21.52708 c -17.42763,0 -34.34499,3.41811 -50.28258,10.15905 -15.38313,6.50633 -29.19421,15.81661 -41.04981,27.67217 -11.85443,11.85498 -21.1646,25.66605 -27.67218,41.04917 -6.73972,15.93707 -10.15786,32.85446 -10.15786,50.28206 0,17.42702 3.41814,34.34441 10.15903,50.28262 6.50641,15.38312 15.81658,29.19419 27.67275,41.04917 11.85502,11.85558 25.66553,21.16584 41.04923,27.67275 15.93643,6.73969 32.85379,10.15791 50.28142,10.15791 17.42704,0 34.34442,-3.41822 50.28258,-10.15906 15.38315,-6.50758 29.19422,-15.81775 41.04981,-27.67274 11.85501,-11.85498 21.16519,-25.66491 27.67219,-41.04929 6.73972,-15.93695 10.15787,-32.85434 10.15787,-50.28136 0,-17.4276 -3.41815,-34.34499 -10.15904,-50.28262 -6.50698,-15.38314 -15.81715,-29.19419 -27.67277,-41.04918 -11.85501,-11.85499 -25.66491,-21.16527 -41.0492,-27.67218 -15.93702,-6.74036 -32.8544,-10.15847 -50.28144,-10.15847 z M 238.28446,66.755979 v 2.2275 l -0.96422,-0.556422 -28.86145,49.989163 -85.09272,147.38299 -28.861412,49.98918 0.964219,0.55643 -1.928448,1.11465 24.781601,42.92244 267.40343,463.15527 1.92844,-1.11284 v 1.11284 h 227.90652 57.7211 v -1.11465 l 1.93025,1.11465 24.78162,-42.92425 150.42429,-260.5433 92.19571,-159.68772 24.78162,-42.92244 -1.92844,-1.11465 0.96422,-0.55643 -28.86146,-49.98918 -113.95234,-197.372153 -0.96604,0.558232 v -2.22931 h -49.56326 z m 30.08485,52.107911 h 504.71838 19.48022 l 14.78234,25.60448 99.87686,172.9911 -252.36009,437.09949 -9.74011,16.87029 H 615.56042 415.81031 L 163.4484,334.32976 l -9.7401,-16.87029 14.78415,-25.6063 85.09271,-147.3848 z m 17.48108,42.67233 -86.44479,149.72649 0.21931,0.12687 0.002,0.002 244.39619,423.30493 v 0.25738 h 172.88961 v -0.25738 l 244.39617,-423.30675 0.22113,-0.12686 -86.44299,-149.7265 -0.2193,0.12687 h -488.7981 z m 32.58242,47.78161 h 424.0716 l 30.67753,53.1356 30.67753,53.1356 L 697.8402,499.21739 591.82276,682.84576 H 469.11264 l -212.0367,-367.25673 30.67935,-53.1356 z\"],\n\"megaship\": [\"m 391.45686,373.11251 h 278.36978 v 65.30985 H 391.45686 Z M 530.64177,216.06589 c 109.39183,0 189.16642,79.77461 189.16642,189.16641 0,109.39179 -79.77459,189.1664 -189.16642,189.1664 -109.39182,0 -189.16639,-79.77461 -189.16639,-189.1664 0,-109.3918 79.77457,-189.16641 189.16639,-189.16641 m 0,-48.51858 c -32.07036,0 -63.20172,6.29001 -92.5301,18.6947 -28.30807,11.97296 -53.72324,29.10576 -75.53994,50.92238 -21.81455,21.81556 -38.94714,47.23072 -50.9224,75.53876 -12.40245,29.32743 -18.69251,60.45884 -18.69251,92.52915 0,32.06923 6.29006,63.20065 18.69466,92.53017 11.97311,28.30805 29.1057,53.7232 50.92345,75.53876 21.81563,21.81666 47.22976,38.94942 75.53887,50.92345 29.32625,12.40239 60.45761,18.69261 92.52797,18.69261 32.06927,0 63.20067,-6.29022 92.5301,-18.69473 28.3081,-11.97526 53.72326,-29.10785 75.53994,-50.92343 21.81561,-21.81555 38.94822,-47.22861 50.92241,-75.53898 12.40245,-29.3272 18.69254,-60.45862 18.69254,-92.52785 0,-32.07031 -6.29009,-63.20172 -18.69469,-92.53018 -11.97416,-28.30808 -29.10675,-53.7232 -50.92348,-75.53878 -21.81561,-21.81557 -47.22862,-38.94837 -75.53882,-50.9224 -29.32733,-12.40362 -60.45873,-18.69363 -92.528,-18.69363 z M 238.28446,66.755979 v 2.2275 l -0.96422,-0.556422 C 184.56724,159.79735 144.01884,230.02774 94.504658,315.78839 l 0.964219,0.55643 -1.928448,1.11465 C 190.93586,486.1518 288.33052,654.84457 385.72546,823.53718 l 1.92844,-1.11284 v 1.11284 h 285.62762 v -1.11465 l 1.93025,1.11465 C 784.59859,634.07214 873.35715,480.33559 967.39501,317.45947 l -1.92844,-1.11465 0.96422,-0.55643 C 918.82581,233.33483 871.22151,150.88088 823.61699,68.427057 l -0.96604,0.558232 v -2.22931 z m 30.08485,52.107911 h 524.1986 c 38.21905,66.19892 76.43935,132.39712 114.6592,198.59558 -87.36681,151.32321 -174.73333,302.6466 -262.1002,453.96978 H 415.81031 C 328.4432,620.10586 241.07525,468.78295 153.7083,317.45947 193.00385,249.40111 234.4035,177.68919 268.36931,118.86389 Z\"],\n\"menu\": [\"M 285.2231 -46.400706 L -19.828083 481.9636 L 590.27428 481.9636 L 285.2231 -46.400706 z \"],\n\"notifications-disabled\": [\"m 56.855469,104.07227 -25.462891,25.46289 v 615.07226 l 97.767582,-88.92383 v -72.78515 h 80.02148 l 95.58594,-86.93946 H 129.12891 V 390.81836 h 291.23437 l 95.64453,-86.99414 H 129.12891 V 198.68359 h 502.47461 l 104.01953,-94.61132 z m 920.492191,33.5957 -103.35157,94.00391 v 72.15234 h -79.32812 l -95.64453,86.99414 H 873.99609 V 495.95898 H 583.42773 l -95.58398,86.93946 h 112.62109 c 3.13391,3.84069 6.07532,7.97211 8.81055,12.41211 v 90.03906 l -235.4375,1.24414 -98.92773,89.98047 h 330.11718 l 103.07618,180.2539 44.10156,0.18165 105.17383,-180.43555 h 94.50586 l 25.46289,-25.46289 z\"],\n\"notifications\": [\"m 56.855469,104.07227 -25.462891,25.46289 v 621.57617 l 25.462891,25.46289 H 605.02734 l 103.07618,180.2539 44.10156,0.18165 105.17383,-180.43555 h 94.50586 l 25.46289,-25.46289 V 129.53516 l -25.46289,-25.46289 z m 72.273441,94.61132 H 873.99609 V 303.82422 H 129.12891 Z m 0,192.13477 H 873.99609 V 495.95898 H 129.12891 Z m 0.0312,192.08008 h 471.30468 c 3.13391,3.84069 6.07532,7.97211 8.81055,12.41211 v 90.03906 l -480.11523,2.53516 z\"],\n\"ocellus-starport\": [\"M 497.22461 26.697266 C 375.58497 26.697264 258.97462 76.729974 173.25195 165.375 C 87.529294 254.02002 39.558594 373.96976 39.558594 498.94336 C 39.558591 623.91695 87.529294 743.86864 173.25195 832.51367 C 258.97462 921.1587 375.58497 971.18946 497.22461 971.18945 C 618.86425 971.18945 735.47266 921.1587 821.19531 832.51367 C 906.91798 743.86865 954.89063 623.91695 954.89062 498.94336 C 954.89062 373.96976 906.91798 254.02002 821.19531 165.375 C 735.47266 76.729975 618.86425 26.697266 497.22461 26.697266 z M 497.22461 86.697266 C 602.43264 86.697266 703.38159 129.85511 778.06445 207.08398 C 852.74732 284.31287 894.89063 389.33583 894.89062 498.94336 C 894.89063 608.55089 852.74732 713.57386 778.06445 790.80273 C 703.38159 868.03162 602.43264 911.18945 497.22461 911.18945 C 392.01657 911.18945 291.06763 868.03162 216.38477 790.80273 C 141.70189 713.57386 99.558591 608.55089 99.558594 498.94336 C 99.558594 389.33583 141.70189 284.31287 216.38477 207.08398 C 291.06763 129.85511 392.01657 86.697264 497.22461 86.697266 z M 497.95508 266.73438 C 368.98002 269.27917 267.66193 374.05809 266.73438 497.95508 C 269.27938 626.92691 374.06059 728.24988 497.95508 729.17773 C 626.92715 726.63048 728.24985 621.84959 729.17773 497.95508 C 726.6306 368.98218 621.84938 267.66184 497.95508 266.73438 z M 497.95508 305.27148 C 604.37216 305.27148 690.64063 391.538 690.64062 497.95508 C 690.64062 604.37216 604.37216 690.64063 497.95508 690.64062 C 391.538 690.64062 305.27148 604.37216 305.27148 497.95508 C 305.27148 391.538 391.538 305.27148 497.95508 305.27148 z M 362.55469 466.70898 L 362.55469 530.24219 L 633.35547 530.24219 L 633.35547 466.70898 L 362.55469 466.70898 z \"],\n\"orbis-starport\": [\"M 495.70312,13.738281 C 370.30814,13.738282 250.09962,65.313566 161.73047,156.69531 73.361311,248.07706 23.908201,371.73258 23.908203,500.56445 c 0,128.83188 49.453108,252.48544 137.822267,343.86719 88.36915,91.38175 208.57767,142.95703 333.97265,142.95703 125.39501,0 245.60546,-51.57528 333.97461,-142.95703 C 918.0469,753.04989 967.5,629.39633 967.5,500.56445 967.5,371.73257 918.0469,248.07706 829.67773,156.69531 741.30858,65.313565 621.09813,13.738278 495.70312,13.738281 Z m 17.9629,62.314453 c 101.92688,4.626023 198.8205,48.434946 271.54687,123.640626 76.98853,79.61314 120.4336,187.87968 120.43359,300.87109 0,86.5875 -25.59417,170.34593 -72.16406,240.61524 C 784.57107,702.73461 735.6594,664.28883 686.74805,625.84375 751.99999,530.88172 728.35133,389.57311 636.20898,320.64453 601.24597,293.11203 558.04984,274.1959 513.66602,270.78125 Z m -41.27344,0.291016 v 194.74023 c -115.93333,8.67209 -211.73177,119.57135 -206.10352,235.52149 -3.70885,33.15127 18.32483,70.25436 18.48438,97.05273 L 140.86523,713.13281 C 105.17064,649.08862 85.759766,575.90374 85.759766,500.56445 85.759764,387.57305 129.20484,279.3065 206.19336,199.69336 277.64598,125.80484 372.43004,82.236682 472.39258,76.34375 Z m 22.67969,233.77148 C 604.20332,306.79077 699.24448,412.09377 684.79883,520.32617 676.89889,629.08025 562.77659,712.81289 456.63672,687.66406 349.34019,668.83852 277.48494,547.18332 312.93555,444.11523 c 23.32243,-78.21269 100.42594,-135.19484 182.13672,-134 z M 361.05859,469.90039 v 62.88281 h 268.02735 v -62.88281 z m -50.64062,166.10742 c 65.79707,94.45499 206.15116,122.3612 303.19922,60.63086 24.49162,-14.56939 48.20508,-39.3125 48.20508,-39.3125 0,0 103.46457,82.75013 147.19726,117.125 -7.55756,9.29192 -15.44505,18.33578 -23.80664,26.98242 -76.98853,79.61314 -181.05367,124.10352 -289.50977,124.10352 -108.45608,0 -212.52124,-44.49038 -289.50976,-124.10352 -15.97643,-16.52108 -30.41706,-34.33641 -43.41602,-53.11132 49.21359,-37.4383 98.42705,-74.87616 147.64063,-112.31446 z\"],\n\"outpost\": [\"M 732.83789 35.765625 L 732.83789 92.630859 L 761.83203 92.630859 L 761.83203 35.765625 L 732.83789 35.765625 z M 776.59766 35.765625 L 776.59766 331.53906 L 685.54102 331.53906 C 685.73051 352.53371 685.78306 373.80261 685.85938 395.02344 L 657.46094 395.02344 L 657.46094 309.375 L 538.32422 309.375 L 538.32422 343.65625 L 538.32422 395.02344 L 512.04688 395.02344 L 512.04688 309.34375 L 392.91016 309.34375 L 392.91016 343.625 L 392.91016 395.02344 L 364.83594 395.02344 L 364.83594 309.18164 L 245.69922 309.18164 L 245.69922 343.46289 L 245.69922 395.02344 L 217.48828 395.02344 L 217.48828 309.18164 L 98.351562 309.18164 L 98.351562 343.46289 L 98.351562 518.61133 L 217.48828 518.61133 L 217.48828 435.18555 L 245.69922 435.18555 L 245.69922 518.61133 L 364.83594 518.61133 L 364.83594 435.18555 L 392.91016 435.18555 L 392.91016 518.77344 L 512.04688 518.77344 L 512.04688 435.18555 L 538.32422 435.18555 L 538.32422 518.80469 L 657.46094 518.80469 L 657.46094 435.18555 L 686 435.18555 C 686.09252 524.62997 685.54102 614.31215 685.54102 697.61523 L 799.97852 810.20703 L 865.53125 810.20703 L 865.53125 945.56055 L 905.80078 945.56055 L 905.80078 810.20703 L 905.80078 331.53906 L 816.86914 331.53906 L 816.86914 247.86523 L 832.50977 247.86523 L 832.50977 276.13672 L 861.50391 276.13672 L 861.50391 192.49219 L 832.50977 192.49219 L 832.50977 221.68945 L 816.86914 221.68945 L 816.86914 35.765625 L 776.59766 35.765625 z M 831.63477 35.765625 L 831.63477 92.630859 L 860.62891 92.630859 L 860.62891 35.765625 L 831.63477 35.765625 z M 722.45508 368.45508 L 868.88672 368.45508 L 868.88672 773.29297 L 815.0918 773.29297 L 722.45508 682.14844 L 722.45508 368.45508 z \"],\n\"pin-window\": [\"m 457.77341,10.990912 c -36.02786,-1.755647 -59.70996,5.894969 -67.90039,21.935547 -0.26153,0.780415 -0.49072,1.576714 -0.6875,2.388672 l -41.11523,80.511719 0.70898,0.36329 c -2.9589,55.67713 70.38232,83.08055 93.7297,111.08228 2.96081,3.55106 -69.45213,-45.52486 -66.03903,-41.85055 l -142.48559,305.01631 -0.002,0.004 -0.002,0.004 -2.17578,4.26172 0.5586,0.28516 c -17.44109,43.24358 34.87809,85.24116 107.06986,138.21447 L 204.39779,990.40213 436.29691,684.15487 c 87.81188,29.89791 166.34241,53.58183 191.77533,12.92394 l 0.55859,0.28515 160.6141,-315.88929 c 6.92096,0.51417 -61.02841,-16.47852 -54.95783,-16.60817 26.53102,-0.56661 113.46356,22.55434 121.54295,10.26895 l 0.10352,0.0527 0.27344,-0.53515 c 0.53113,-0.62299 -0.37696,0.48245 -0.37696,0.48245 0.7092,-1.42712 3.17426,-5.31702 3.63672,-6.86722 l 38.09766,-74.5957 -0.42969,-0.21875 c 0.28392,-0.346 0.55867,-0.69692 0.82422,-1.05274 C 920.25216,248.74881 824.58531,155.27596 684.28122,83.623726 600.79381,40.987124 516.11751,13.834517 457.77341,10.990912 Z\"],\n\"planet-ammonia-based-life\": [\"m 503.16406,34.63867 c -122.95459,0 -240.90953,48.85876 -327.85156,135.80078 -86.94203,86.94203 -135.80078,204.89697 -135.80078,327.85157 0,122.95459 48.85875,240.90953 135.80078,327.85156 86.94203,86.94204 204.89697,135.80074 327.85156,135.80074 122.95459,0 240.90955,-48.8587 327.85156,-135.80074 C 917.95765,739.20055 966.81641,621.24561 966.81641,498.29102 966.8164,375.33642 917.95765,257.38148 831.01562,170.43945 744.07362,83.49743 626.11865,34.63867 503.16406,34.63867 Z m 0,69.55664 c 104.53367,0 204.74955,41.51127 278.66602,115.42774 73.91646,73.91646 115.42773,174.1343 115.42773,278.66797 0,104.53367 -41.51126,204.74954 -115.42773,278.66601 -73.91647,73.91647 -174.13235,115.42774 -278.66602,115.42774 -104.53367,0 -204.7515,-41.51127 -278.66797,-115.42774 -73.91646,-73.91647 -115.42773,-174.13234 -115.42773,-278.66601 0,-104.53367 41.51127,-204.75151 115.42773,-278.66797 73.91647,-73.91647 174.1343,-115.42774 278.66797,-115.42774 z\",\n\"m 396.45741,236.18839 c -32.5199,-1.52716 -55.35481,9.03126 -61.78679,28.56901 -11.42597,34.70954 31.2379,87.21074 95.29178,117.26391 19.47281,9.1053 39.49364,15.40384 58.21787,18.31524 l -0.0626,0.0731 c 76.07132,48.14246 133.03304,179.99933 94.72417,276.70555 h 42.30346 c 21.74661,-82.55522 -0.58544,-169.86911 -38.59187,-238.64102 27.56902,3.61706 65.03124,-6.18248 100.99168,-26.41789 62.69626,-35.331 102.63316,-91.51422 89.20142,-125.48831 -13.43109,-33.97422 -75.1441,-32.87448 -137.83984,2.45626 -29.31667,16.55147 -55.04651,38.60072 -71.79893,61.52818 -7.54032,-32.99423 -46.06242,-70.89436 -95.77165,-94.22523 -25.53105,-11.97889 -51.8514,-19.05771 -74.87859,-20.13875 z\",\n\"M 463.56641 488.00781 A 65.063016 65.063016 0 0 0 398.50195 553.07227 A 65.063016 65.063016 0 0 0 405.23242 581.05078 L 403.50195 582.57812 A 58.963361 58.963361 0 0 0 368.48828 570.5957 A 58.963361 58.963361 0 0 0 314.27148 607.25977 L 310.60938 606.99609 A 65.063016 65.063016 0 0 0 246.01172 549.26367 A 65.063016 65.063016 0 0 0 180.94922 614.32617 A 65.063016 65.063016 0 0 0 246.01172 679.39062 A 65.063016 65.063016 0 0 0 305.6543 639.60156 L 310.69727 639.96289 A 58.963361 58.963361 0 0 0 366.94727 688.34961 L 369.40625 694.01758 A 65.063016 65.063016 0 0 0 339.53906 748.26172 A 65.063016 65.063016 0 0 0 404.60352 813.32422 A 65.063016 65.063016 0 0 0 469.66602 748.26172 A 65.063016 65.063016 0 0 0 404.60352 683.19727 A 65.063016 65.063016 0 0 0 400.73633 683.63281 L 398.98438 679.59766 A 58.963361 58.963361 0 0 0 427.45312 629.56055 A 58.963361 58.963361 0 0 0 425.43555 614.58398 L 431.4082 609.3125 A 65.063016 65.063016 0 0 0 463.56641 618.13477 A 65.063016 65.063016 0 0 0 528.62891 553.07227 A 65.063016 65.063016 0 0 0 463.56641 488.00781 z M 367.69727 583.90234 A 46.964489 46.964489 0 0 1 414.66211 630.86523 A 46.964489 46.964489 0 0 1 367.69727 677.83008 A 46.964489 46.964489 0 0 1 320.73242 630.86523 A 46.964489 46.964489 0 0 1 367.69727 583.90234 z \"],\n\"planet-ammonia-world\": [\"m 503.16406,34.63867 c -122.95459,0 -240.90953,48.85876 -327.85156,135.80078 -86.94203,86.94203 -135.80078,204.89697 -135.80078,327.85157 0,122.95459 48.85875,240.90953 135.80078,327.85156 86.94203,86.94204 204.89697,135.80074 327.85156,135.80074 122.95459,0 240.90955,-48.8587 327.85156,-135.80074 C 917.95765,739.20055 966.81641,621.24561 966.81641,498.29102 966.8164,375.33642 917.95765,257.38148 831.01562,170.43945 744.07362,83.49743 626.11865,34.63867 503.16406,34.63867 Z m 0,69.55664 c 104.53367,0 204.74955,41.51127 278.66602,115.42774 73.91646,73.91646 115.42773,174.1343 115.42773,278.66797 0,104.53367 -41.51126,204.74954 -115.42773,278.66601 -73.91647,73.91647 -174.13235,115.42774 -278.66602,115.42774 -104.53367,0 -204.7515,-41.51127 -278.66797,-115.42774 -73.91646,-73.91647 -115.42773,-174.13234 -115.42773,-278.66601 0,-104.53367 41.51127,-204.75151 115.42773,-278.66797 73.91647,-73.91647 174.1343,-115.42774 278.66797,-115.42774 z\",\n\"m 670.81841,247.16703 a 115.34584,115.34584 0 0 0 -115.3484,115.34841 115.34584,115.34584 0 0 0 11.932,49.60121 l -3.06784,2.70771 a 104.53217,104.53217 0 0 0 -62.07338,-21.24282 104.53217,104.53217 0 0 0 -96.11731,64.99927 l -6.4923,-0.46747 A 115.34584,115.34584 0 0 0 285.13034,355.76342 115.34584,115.34584 0 0 0 169.78542,471.10835 115.34584,115.34584 0 0 0 285.13034,586.45673 115.34584,115.34584 0 0 0 390.86666,515.91738 l 8.94034,0.64058 a 104.53217,104.53217 0 0 0 99.72184,85.78156 l 4.35935,10.04837 a 115.34584,115.34584 0 0 0 -52.94953,96.16578 115.34584,115.34584 0 0 0 115.34841,115.34492 115.34584,115.34584 0 0 0 115.34492,-115.34492 115.34584,115.34584 0 0 0 -115.34492,-115.34839 115.34584,115.34584 0 0 0 -6.85588,0.77214 l -3.10591,-7.15364 a 104.53217,104.53217 0 0 0 50.47031,-88.70743 104.53217,104.53217 0 0 0 -3.57682,-26.55095 l 10.58851,-9.34545 A 115.34584,115.34584 0 0 0 670.81841,477.86036 115.34584,115.34584 0 0 0 786.16333,362.51544 115.34584,115.34584 0 0 0 670.81841,247.16703 Z M 500.85846,417.17198 a 83.26018,83.26018 0 0 1 83.2608,83.25736 83.26018,83.26018 0 0 1 -83.2608,83.26081 83.26018,83.26018 0 0 1 -83.26081,-83.26081 83.26018,83.26018 0 0 1 83.26081,-83.25736 z\"],\n\"planet-atmosphere-landable\": [\"M 501.14453,7.9101562 C 369.15398,7.9101562 242.54597,59.907039 149.17969,152.49805 55.813391,245.08908 3.328125,370.72528 3.328125,501.71875 c 0,130.99347 52.485266,256.62774 145.851565,349.21875 12.65334,12.54827 25.96446,24.28176 39.76953,35.31055 L 205.4668,862.3457 C 196.14756,854.45673 179.03074,838.29032 170.30469,829.63672 82.579505,742.64001 33.328125,624.70073 33.328125,501.71875 c 0,-122.98198 49.25138,-240.92126 136.976565,-327.91797 87.72518,-86.996742 206.72827,-135.890624 330.83984,-135.890624 124.11148,0 243.11669,48.893882 330.8418,135.890624 87.72521,86.99671 136.97656,204.93599 136.97656,327.91797 0,12.56191 -0.64392,25.05139 -1.66016,37.48047 l 28.48633,17.20898 c 2.03187,-18.0807 3.17383,-36.32167 3.17383,-54.68945 0,-130.99347 -52.48526,-256.62967 -145.85156,-349.2207 C 759.74512,59.907039 633.135,7.9101562 501.14453,7.9101562 Z M 486.25391,129.48438 c -98.8681,0 -193.70295,39.28107 -263.61329,109.1914 -69.91028,69.91033 -109.19335,164.74723 -109.19335,263.61524 0,82.98491 27.76638,163.06699 77.99804,228.01562 5.52252,7.58709 11.28064,14.98873 17.39258,22.07813 26.54165,30.78616 57.68892,55.37301 91.61523,72.99609 3.6711,2.11087 7.46409,3.98322 11.20118,5.9668 l 0.0371,-0.0879 c 0,0 14.78692,-22.39273 16.32226,-29.19922 C 297.3998,786.60525 261.10164,756.52377 236.77147,728.30272 185.80812,669.18918 156.7246,588.22471 156.7246,503.6621 c 0,-84.56252 29.08352,-165.52914 80.04687,-224.64258 50.96337,-59.11354 119.21308,-91.63672 190.08204,-91.63672 70.86902,0 139.12063,32.52318 190.08398,91.63672 33.20266,38.51246 56.90825,86.37567 69.54492,138.39063 12.89816,3.1e-4 24.80955,-0.0135 38.09766,-0.006 -13.27734,-60.769 -40.49694,-116.98197 -79.70899,-162.46485 -38.96966,-45.20175 -87.80157,-77.20389 -140.91992,-93.0664 83.96782,4.36175 163.60172,39.6193 223.35156,99.36914 52.0298,52.02979 85.49312,119.13623 96.1543,191.05273 12.81014,6.77723 28.63724,17.22733 34.34375,20.74801 C 850.86086,384.88139 812.8469,301.6555 749.86719,238.67578 679.95696,168.76545 585.12201,129.48437 486.25391,129.48438 Z\",\n\"m 741.53353,500.31105 c -87.08761,-0.0767 -163.77527,0.0477 -245.80894,0.0426 L 238.735,655.5727 410.98992,808.3678 364.68882,916.6015 H 238.735 l 3.2e-4,82.8919 c 250.29496,0.025 530.30011,-0.042 759.78751,-0.039 l -3e-4,-82.8956 H 872.56933 L 826.26813,808.3267 998.52253,655.5723 Z M 734.74813,547.658 686.4775,699.6632 H 550.75193 L 502.50999,547.7007 Z m 27.0828,260.6654 46.3011,108.2355 c -39.1342,-0.015 -157.66947,0.019 -157.66947,0.019 l 1.92213,-83.2499 109.44624,-25.0041 z M 586.76687,916.583 c 0,0 -121.28124,0.02 -157.64083,0.019 l 46.30112,-108.2374 c 112.30077,24.0098 112.30077,24.9634 112.30077,24.9634 z\"],\n\"planet-atmosphere\": [\"M 501.14453,7.9101562 C 369.1539,7.9101552 242.54607,59.906946 149.17969,152.49805 55.813304,245.08914 3.3281264,370.72517 3.328125,501.71875 c 0,130.99358 52.485179,256.62765 145.851565,349.21875 93.36638,92.5911 219.97421,144.58984 351.96484,144.58984 131.99063,0 258.60042,-51.99874 351.9668,-144.58984 93.36638,-92.5911 145.85156,-218.22517 145.85156,-349.21875 0,-130.99358 -52.48518,-256.62961 -145.85156,-349.2207 C 759.74495,59.906946 633.13516,7.9101563 501.14453,7.9101562 Z m 0,29.9999998 c 124.11164,0 243.11653,48.893799 330.8418,135.890624 87.72527,86.99683 136.97656,204.93587 136.97656,327.91797 0,122.9821 -49.25129,240.92114 -136.97656,327.91797 -87.72527,86.99683 -206.73016,135.89062 -330.8418,135.89062 -124.11164,0 -243.11457,-48.89379 -330.83984,-135.89062 C 82.579417,742.63989 33.328125,624.70085 33.328125,501.71875 33.328126,378.73665 82.579417,260.79761 170.30469,173.80078 258.02996,86.803955 377.03289,37.910155 501.14453,37.910156 Z m -14.89062,91.574224 c -98.86818,0 -193.70289,39.28103 -263.61329,109.1914 -69.91035,69.91039 -109.19335,164.74705 -109.19335,263.61524 0,82.98494 27.76633,163.06697 77.99804,228.01562 5.52252,7.58716 11.28063,14.98872 17.39258,22.07813 26.54168,30.78624 57.68888,55.37303 91.61523,72.99609 56.06052,32.23468 120.01452,49.7168 185.80079,49.7168 98.86822,0 193.70295,-39.28107 263.61328,-109.19141 69.91043,-69.91038 109.19336,-164.74702 109.19336,-263.61523 0,-98.86819 -39.28293,-193.70485 -109.19336,-263.61524 -69.91033,-69.91037 -164.74506,-109.1914 -263.61328,-109.1914 z m 17.69726,32.38867 c 83.96788,4.36176 163.60166,39.61922 223.35156,99.36914 63.9346,63.93458 99.84766,150.63168 99.84766,241.04883 0,90.41717 -35.91306,177.11424 -99.84766,241.04882 -57.1175,57.11752 -132.4147,91.78534 -212.28906,98.54688 48.82581,-16.84293 93.60887,-47.45649 129.85742,-89.50195 57.27143,-66.43033 88.99414,-155.73952 88.99414,-248.72266 0,-92.98314 -31.72271,-182.29233 -88.99414,-248.72266 -38.96967,-45.20176 -87.80156,-77.20385 -140.91992,-93.0664 z m -77.09765,25.50976 c 70.86909,0 139.12056,32.52318 190.08398,91.63672 50.96342,59.11352 80.04688,140.07989 80.04688,224.64258 0,84.56268 -29.08346,165.52709 -80.04688,224.64062 -50.96342,59.11352 -119.21489,91.63868 -190.08398,91.63868 -70.86907,0 -139.11862,-32.52516 -190.08204,-91.63868 -50.96341,-59.11353 -80.04687,-140.07794 -80.04687,-224.64062 0,-84.56268 29.08346,-165.52906 80.04687,-224.64258 50.96342,-59.11354 119.21297,-91.63672 190.08204,-91.63672 z\"],\n\"planet-earthlike\": [\"M 505.6582,32.673828 C 377.44096,32.67383 254.40876,81.669792 163.54688,169.12305 72.684977,256.5763 21.472655,375.43316 21.472656,499.4082 c 0,123.97504 51.212321,242.83387 142.074224,330.28711 90.86189,87.45325 213.89408,136.44922 342.11132,136.44922 128.21724,0 251.24943,-48.99597 342.11133,-136.44922 90.8619,-87.45324 142.07422,-206.31206 142.07422,-330.28711 0,-123.97504 -51.21232,-242.8319 -142.07422,-330.28515 C 756.90763,81.669792 633.87544,32.673828 505.6582,32.673828 Z m -2.49414,71.523442 c 12.43496,0 24.80237,0.62956 37.07813,1.78906 l -64.58789,54.95312 53.76562,191.07422 93.20117,26.54102 -22.10937,100.2539 97.5918,51.05469 147.53906,-23.56445 -94.13086,175.63086 -63.94531,31.1289 28.88476,68.05469 c 0,0 13.38753,13.08988 28.41602,28.30078 -68.7772,53.43531 -153.67609,82.97071 -241.70313,82.97071 -88.43914,0 -173.7229,-29.81156 -242.66992,-83.72266 11.30138,-24.58436 23.29297,-52.07422 23.29297,-52.07422 L 397.60742,721.09375 384.58984,578.46484 C 355.94321,513.46638 335.56445,452.75195 335.56445,452.75195 L 204.17578,357.96094 c -3.17314,0.13151 -9.777,-56.90222 -12.93555,-56.55469 L 171.1543,286.16992 c 15.23627,-23.84763 33.01496,-46.22004 53.34179,-66.54687 73.91644,-73.91644 174.13434,-115.42578 278.66797,-115.42578 z\"],\n\"planet-empty\": [\"m 503.16406,34.638672 c -122.95463,0 -240.90951,48.858729 -327.85156,135.800778 -86.942054,86.94206 -135.80078,204.89694 -135.800781,327.85157 0,122.95463 48.858727,240.9095 135.800781,327.85156 86.94205,86.94205 204.89693,135.80078 327.85156,135.80078 122.95463,0 240.90951,-48.85873 327.85156,-135.80078 C 917.95768,739.20052 966.81641,621.24565 966.81641,498.29102 966.8164,375.33639 917.95768,257.38151 831.01562,170.43945 744.07357,83.497401 626.11869,34.638672 503.16406,34.638672 Z m 0,69.558598 c 104.53363,0 204.74958,41.51129 278.66602,115.42773 73.91644,73.91644 115.42773,174.13239 115.42773,278.66602 0,104.53363 -41.51129,204.74957 -115.42773,278.66601 -73.91644,73.91644 -174.13239,115.42774 -278.66602,115.42774 -104.53363,0 -204.75153,-41.5113 -278.66797,-115.42774 -73.91644,-73.91644 -115.42773,-174.13238 -115.42773,-278.66601 0,-104.53363 41.51129,-204.75153 115.42773,-278.66797 73.91644,-73.91644 174.13434,-115.42578 278.66797,-115.42578 z\"],\n\"planet-gas-giant\": [\"M 503.16406 34.638672 C 380.20943 34.638672 262.25455 83.497416 175.3125 170.43945 C 88.370446 257.38151 39.51172 375.33639 39.511719 498.29102 C 39.511719 621.24565 88.370446 739.20052 175.3125 826.14258 C 262.25455 913.08463 380.20943 961.94336 503.16406 961.94336 C 626.11869 961.94336 744.07357 913.08463 831.01562 826.14258 C 917.95768 739.20052 966.81641 621.24565 966.81641 498.29102 C 966.8164 375.33639 917.95768 257.38151 831.01562 170.43945 C 744.07358 83.497416 626.11869 34.638672 503.16406 34.638672 z M 261.25 187.33008 L 718.21289 187.33008 L 745.07422 187.33008 C 757.89584 197.30536 770.22079 208.01571 781.83008 219.625 C 789.65559 227.45052 797.03476 235.63055 804.12305 244.01953 L 202.20117 244.01953 C 209.28999 235.62976 216.66992 227.44922 224.49609 219.62305 C 236.10473 208.01441 248.42908 197.30481 261.25 187.33008 z M 124.17578 390.60742 L 882.15039 390.60742 C 891.73788 424.34859 896.89484 459.47008 897.17969 495.14648 L 109.14648 495.14648 C 109.43133 459.47047 114.5885 424.34855 124.17578 390.60742 z M 396.33398 518.90039 C 450.04697 518.90639 500.10909 543.24402 529.36523 583.57422 L 887.80469 583.57422 C 881.01834 614.18187 870.63476 643.81191 856.86719 671.86719 L 554.10938 671.86719 C 552.91966 685.60048 549.43473 727.74304 510.68359 758.92383 C 480.86284 786.9435 439.56254 802.85498 396.33398 802.97852 C 353.10543 802.85498 311.80512 786.9435 281.98438 758.92383 C 251.2509 733.47051 239.74893 685.60057 238.55859 671.86719 L 149.45898 671.86719 C 135.69141 643.81191 125.30783 614.18187 118.52148 583.57422 L 263.34961 583.57422 C 292.59669 543.25651 342.63763 518.92027 396.33398 518.90039 z M 394.30664 564.97461 C 333.5754 564.97501 284.34292 609.05269 284.3418 663.42578 C 284.34171 717.79964 333.57454 761.87851 394.30664 761.87891 C 455.0395 761.87948 504.27353 717.80032 504.27344 663.42578 C 504.27244 609.052 455.03865 564.97404 394.30664 564.97461 z \"],\n\"planet-high-metal-content\": [\"M 493.69922,38.066406 C 370.74464,38.066408 252.79162,86.92513 165.84961,173.86719 78.907597,260.80924 30.048828,378.76412 30.048828,501.71875 c 0,122.95463 48.858769,240.90951 135.800782,327.85156 86.94201,86.94206 204.89503,135.79883 327.84961,135.79883 122.95458,0 240.90955,-48.85677 327.85156,-135.79883 86.94201,-86.94205 135.80078,-204.89693 135.80078,-327.85156 0,-122.95463 -48.85877,-240.90951 -135.80078,-327.85156 C 734.60877,86.92513 616.6538,38.066406 493.69922,38.066406 Z m 0,69.556644 c 104.53357,0 204.75157,41.51129 278.66797,115.42773 73.9164,73.91644 115.42773,174.13433 115.42773,278.66797 0,104.53364 -41.51133,204.74958 -115.42773,278.66602 C 698.45079,854.3012 598.23279,895.8125 493.69922,895.8125 389.16565,895.8125 288.9496,854.3012 215.0332,780.38477 141.1168,706.46833 99.605469,606.25238 99.605469,501.71875 99.605469,397.18512 141.1168,296.96722 215.0332,223.05078 288.9496,149.13434 389.16565,107.62305 493.69922,107.62305 Z\",\n\"M 439.35498,243.33425 363.27211,435.3416 H 624.12767 L 548.0448,243.33425 Z\",\n\"M 254.5823,478.81752 178.49943,670.82487 H 439.35498 L 363.27211,478.81752 Z\",\n\"M 624.12767,478.81752 548.0448,670.82487 H 808.90035 L 732.81748,478.81752 Z\"],\n\"planet-high-value\": [\"m 503.16406,34.638672 c -122.95463,0 -240.90951,48.858732 -327.85156,135.800778 -86.942054,86.94206 -135.80078,204.89694 -135.800781,327.85157 0,122.95463 48.858727,240.9095 135.800781,327.85156 86.94205,86.94205 204.89693,135.80078 327.85156,135.80078 122.95463,0 240.90951,-48.85873 327.85156,-135.80078 C 917.95768,739.20052 966.81641,621.24565 966.81641,498.29102 966.8164,375.33639 917.95768,257.38151 831.01562,170.43945 744.07358,83.497404 626.11869,34.638672 503.16406,34.638672 Z m 0,69.558598 c 104.53363,0 204.74958,41.51129 278.66602,115.42773 73.91644,73.91644 115.42773,174.13239 115.42773,278.66602 0,104.53363 -41.51129,204.74957 -115.42773,278.66601 -73.91644,73.91644 -174.13239,115.42774 -278.66602,115.42774 -104.53363,0 -204.75153,-41.5113 -278.66797,-115.42774 -73.91644,-73.91644 -115.42773,-174.13238 -115.42773,-278.66601 0,-104.53363 41.51129,-204.75153 115.42773,-278.66797 73.91644,-73.91644 174.13434,-115.42578 278.66797,-115.42578 z m -27.32617,91.14062 v 45.32617 c -17.62636,0.27979 -31.89508,0.69825 -42.80664,1.25782 -51.75995,2.79783 -87.71106,14.82825 -107.85547,36.09179 -19.02528,19.58485 -28.53906,52.60086 -28.53906,99.04492 0,34.1336 4.33647,60.71301 13.00976,79.73829 10.07221,22.66246 28.67936,38.4688 55.81836,47.42187 20.98377,6.99459 57.77375,10.63233 110.37305,10.91211 v 168.28906 c -8.95307,-0.27978 -28.9577,-0.83838 -60.01367,-1.67773 -18.18593,-1.11914 -31.8941,-5.59575 -41.12695,-13.42969 -8.95308,-7.83393 -14.26857,-19.72422 -15.94727,-35.67188 -1.11914,-10.35199 -1.81983,-26.30041 -2.09961,-47.84374 v -8.39258 h -65.46875 v 5.875 c 0.27979,20.14441 0.97852,36.37116 2.09766,48.68164 2.51805,24.62095 8.11382,44.20712 16.78711,58.75586 8.67329,14.54874 21.82285,26.15874 39.44921,34.83203 12.59026,6.15524 25.87997,10.21143 39.86915,12.16992 13.98918,1.95848 36.23211,2.79931 66.72851,2.51953 h 19.72461 v 54.97656 h 52.46094 v -54.97656 c 48.12276,-1.6787 78.05963,-3.63868 89.81055,-5.87695 36.65163,-7.55416 62.11189,-24.47965 76.38085,-50.7793 11.19134,-20.42419 16.78711,-48.2629 16.78711,-83.51562 0,-27.41879 -2.939,-50.08214 -8.81445,-67.98829 -9.51264,-29.65705 -28.67839,-49.66168 -57.49609,-60.01367 -24.34117,-8.95307 -63.22932,-13.70801 -116.66797,-14.26757 V 298.99805 c 13.42961,0 23.92045,0.14014 31.47461,0.41992 29.37727,0.83935 49.52204,5.03569 60.43359,12.58984 5.59567,3.91698 9.79201,11.33064 12.58985,22.24219 1.11913,5.03611 1.95801,20.00552 2.51757,44.90625 l 0.41993,9.23242 h 64.21093 c 0.27978,-8.67329 0.41992,-15.80668 0.41992,-21.40234 0,-28.81771 -3.63773,-51.34091 -10.91211,-67.56836 -10.63177,-23.7816 -29.09683,-40.28863 -55.39648,-49.52149 -15.94767,-5.59567 -46.30495,-8.53467 -91.07031,-8.81445 -2.51806,0 -7.41313,-0.13818 -14.6875,-0.41797 v -45.32617 z m 0,103.24023 v 158.21876 c -10.35199,0 -18.18607,-0.14014 -23.50195,-0.41993 -32.17511,-0.83934 -54.55623,-4.61722 -67.14649,-11.33203 -16.50722,-8.95307 -24.76172,-33.0139 -24.76172,-72.18359 0,-25.18052 3.91802,-43.08698 11.75196,-53.71875 8.11372,-11.75091 25.45963,-18.18556 52.03906,-19.30469 12.31047,-0.55957 29.51624,-0.97998 51.61914,-1.25977 z m 52.46094,217.39258 c 31.33576,0.27979 52.878,1.2588 64.6289,2.9375 23.22204,3.07762 38.19145,10.9117 44.90625,23.50196 6.71481,12.03069 10.07227,29.3766 10.07227,52.03906 0,36.37186 -7.55576,60.2945 -22.66406,71.76562 -15.94767,11.75091 -44.48511,17.625 -85.61328,17.625 h -11.33008 z\"],\n\"planet-landable\": [\"M 518.32812 30.400391 C 394.39825 30.400391 275.5223 79.639825 187.89062 167.27148 C 100.25897 254.90316 51.019531 373.7791 51.019531 497.70898 C 51.019534 601.72942 85.824322 702.11122 148.78906 783.52344 C 155.71145 793.03384 162.92859 802.3108 170.58984 811.19727 C 184.81346 827.69553 200.14739 842.6805 216.30273 856.26367 L 296.51367 856.26367 C 263.29251 837.43541 232.51004 812.22115 205.60352 781.01172 C 141.7216 706.91374 105.26758 605.42586 105.26758 499.42773 C 105.26758 393.42962 141.7216 291.93976 205.60352 217.8418 C 269.48543 143.74382 355.03771 102.97656 443.87109 102.97656 C 532.70448 102.97656 618.25676 143.74382 682.13867 217.8418 C 736.62077 281.03672 771.05984 364.17639 780.04297 453.02344 L 828.33789 482.20117 C 824.62098 371.89465 785.39461 266.81188 717.15234 187.65625 C 668.3044 130.9965 607.09484 90.883467 540.51172 71 C 645.76427 76.467391 745.58479 120.66097 820.48047 195.55664 C 900.62156 275.69773 945.63672 384.37237 945.63672 497.70898 C 945.63672 515.6214 944.38557 533.39325 942.17578 550.97852 L 979.34375 573.43359 C 983.43176 548.55107 985.63672 523.25013 985.63672 497.70898 C 985.63672 373.7791 936.39533 254.90316 848.76367 167.27148 C 761.13201 79.639825 642.25803 30.400393 518.32812 30.400391 z M 782.78711 594.88477 L 732.51953 753.17969 L 763.42969 746.11719 C 786.99287 705.73847 804.4669 661.28765 815.38672 614.58008 L 782.78711 594.88477 z M 699.3418 759.32617 C 698.91473 759.90183 698.49061 760.47977 698.06055 761.05273 L 705.61914 759.32617 L 699.3418 759.32617 z \",\n\"m 741.72431,499.97422 c -87.08761,-0.0767 -163.77527,0.0477 -245.80894,0.0426 L 426.10066,542.18417 238.92578,655.23582 411.1807,808.03098 364.8796,916.26464 H 238.92578 l 3.2e-4,82.8919 c 250.29496,0.0246 530.30011,-0.0422 759.78746,-0.0387 l -2e-4,-82.89557 H 872.7601 l -46.30124,-108.23213 172.2545,-152.7544 z m -6.78544,47.347 -48.27059,152.00517 H 550.94271 L 502.70077,547.36387 Z m 27.0828,260.66533 46.30114,108.23549 c -39.13419,-0.0152 -157.66947,0.0185 -157.66947,0.0185 l 1.92213,-83.24984 109.4462,-25.00417 z M 586.95765,916.24619 c 0,0 -121.28124,0.0199 -157.64083,0.0185 l 46.30112,-108.2374 c 112.30077,24.00977 112.30077,24.9634 112.30077,24.9634 z\",\n\"m 741.53369,500.31115 c -87.08761,-0.0767 -163.77527,0.0477 -245.80894,0.0426 l -256.98959,155.219 172.25492,152.79516 -46.3011,108.23366 H 238.73516 l 3.2e-4,82.8919 c 250.29496,0.0246 530.30011,-0.0422 759.78747,-0.0387 l -2.4e-4,-82.89557 H 872.56948 L 826.26824,808.32707 998.52271,655.57267 Z m -6.78544,47.347 -48.27059,152.00517 H 550.75209 L 502.51015,547.7008 Z m 27.0828,260.66533 46.30114,108.23549 c -39.13419,-0.0152 -157.66947,0.0185 -157.66947,0.0185 l 1.92213,-83.24984 109.4462,-25.00417 z M 586.76703,916.58312 c 0,0 -121.28124,0.0199 -157.64083,0.0185 l 46.30112,-108.2374 c 112.30077,24.00977 112.30077,24.9634 112.30077,24.9634 z\"],\n\"planet-lander\": [\"m 645.3087,260.34946 c -103.79866,-0.0913 -195.20179,0.0568 -292.97677,0.0508 L 46.029,445.404 251.33766,627.5188 196.15191,756.52123 H 46.029 l 3.73e-4,98.79804 c 298.323667,0.0287 632.058587,-0.0495 905.581887,-0.0464 L 951.611,756.47042 H 801.48872 L 746.30297,627.47021 951.611,445.404 Z m -8.08744,56.43234 -57.53313,181.17321 H 417.91837 l -57.499,-181.12238 z m 32.27971,310.68399 55.18577,129.00463 c -46.64361,-0.0181 -187.92441,0.0221 -187.92441,0.0221 l 2.29095,-99.22452 130.44769,-29.80218 z m -208.6568,129.03342 c 0,0 -144.55372,0.0238 -187.89029,0.0221 L 328.13965,627.5144 c 133.85,28.61698 133.85,29.7536 133.85,29.7536 z\"],\n\"planet-life\": [\"m 503.16406,34.638672 c -122.95459,0 -240.90953,48.858763 -327.85156,135.800778 -86.942026,86.94203 -135.80078,204.89697 -135.800781,327.85157 0,122.95459 48.858755,240.90953 135.800781,327.85156 86.94203,86.94202 204.89697,135.80078 327.85156,135.80078 122.95459,0 240.90955,-48.85876 327.85156,-135.80078 C 917.95765,739.20055 966.81641,621.24561 966.81641,498.29102 966.8164,375.33642 917.95765,257.38148 831.01562,170.43945 744.07362,83.497435 626.11865,34.638672 503.16406,34.638672 Z m 0,69.556638 c 104.53367,0 204.74955,41.51127 278.66602,115.42774 73.91646,73.91646 115.42773,174.1343 115.42773,278.66797 0,104.53367 -41.51126,204.74954 -115.42773,278.66601 -73.91647,73.91647 -174.13235,115.42774 -278.66602,115.42774 -104.53367,0 -204.7515,-41.51127 -278.66797,-115.42774 -73.91646,-73.91647 -115.42773,-174.13234 -115.42773,-278.66601 0,-104.53367 41.51127,-204.75151 115.42773,-278.66797 73.91647,-73.91647 174.1343,-115.42774 278.66797,-115.42774 z M 294.45703,317.7793 a 155.21191,70.446739 21.45389 0 0 -76.95898,29.80468 155.21191,70.446739 21.45389 0 0 118.6914,122.33594 155.21191,70.446739 21.45389 0 0 72.51367,19.10742 l -0.0781,0.0762 c 94.75119,50.22476 165.70031,187.78479 117.98438,288.67382 h 52.6914 c 27.08677,-86.12596 -0.72919,-177.21641 -48.06836,-248.96289 a 70.965866,156.35568 64.732725 0 0 125.79102,-27.56054 70.965866,156.35568 64.732725 0 0 111.10547,-130.91602 70.965866,156.35568 64.732725 0 0 -171.6875,2.5625 70.965866,156.35568 64.732725 0 0 -89.42969,64.18945 155.21191,70.446739 21.45389 0 0 -119.28906,-98.30078 155.21191,70.446739 21.45389 0 0 -93.26563,-21.00976 z\"],\n\"planet-ringed\": [\"m 413.02681,209.87777 c -76.4226,20.47737 -141.6015,70.48944 -181.16076,139.00806 -39.55925,68.51864 -50.28151,149.97126 -29.80413,226.39386 1.50597,5.62036 3.24932,11.14593 5.07617,16.63633 0,0 -207.16602337,156.92762 -196.339319,193.16061 C 22.027017,815.44765 184.2438,742.21969 254.88552,713.9445 334.42811,682.10662 436.27,630.93962 539.10533,571.56764 641.94065,512.19564 737.12128,449.51646 804.51632,396.6148 c 0,0 203.08108,-150.30857 185.76094,-179.69475 C 979.48417,180.56057 712.87064,299.57667 712.87064,299.57667 691.90124,276.0546 667.21813,255.7308 639.42066,239.6819 570.90203,200.12266 489.44943,189.4004 413.02681,209.87777 Z m 11.58428,43.23312 c 64.97306,-17.40948 134.17508,-8.29859 192.42834,25.33395 44.10843,25.466 79.15356,63.4134 101.14279,108.53906 12.95672,-9.26671 25.0123,-18.22096 36.46228,-26.95237 -5.55927,-10.64718 -11.69334,-20.96176 -18.47061,-30.8315 0,0 129.26412,-50.02297 130.39793,-42.60042 7.4774,4.65701 -61.86225,63.35287 -84.60575,81.28669 -65.26477,51.2295 -159.48373,113.37056 -261.12245,172.05168 -101.63872,58.68115 -202.56436,109.20744 -279.5628,140.11364 -33.8996,16.96205 -108.1024,43.32318 -111.4898,34.71674 -0.71883,-9.501 64.18106,-65.99633 91.55309,-87.72119 l 0.36187,0.8889 c 4.8048,9.93343 10.12619,19.58228 15.97618,28.88756 13.20966,-5.3734 27.2292,-11.41331 41.77163,-17.89984 C 264.189,616.08155 252.54128,590.73878 245.29503,563.69541 227.88556,498.72234 236.996,429.5186 270.62852,371.26535 304.26105,313.0121 359.63804,270.52036 424.61109,253.11089 Z m 358.46636,188.29869 c -12.94346,9.51172 -26.56342,19.21393 -40.77095,29.06873 5.83164,53.27294 -5.31647,107.38674 -32.44656,154.37742 -33.63253,58.25326 -89.00732,100.74626 -153.98038,118.15574 -64.97306,17.40947 -134.17727,8.29731 -192.43052,-25.33522 -8.32977,-4.8092 -16.29644,-10.10958 -23.95443,-15.77242 -15.71095,7.30118 -31.09789,14.27483 -45.80104,20.59673 14.54537,12.7393 30.3876,24.13138 47.37642,33.93988 68.51863,39.55925 149.97124,50.28151 226.39384,29.80414 76.42262,-20.47737 141.6015,-70.48943 181.16076,-139.00807 36.0306,-62.40686 48.05114,-135.53405 34.45286,-205.82693 z\"],\n\"planet-terraformable\": [\"m 507.82812,56.193359 c -3.158,0.02963 -6.3195,0.09244 -9.48632,0.189453 l 1.22461,39.980469 c 2.87416,-0.08804 5.75507,-0.144812 8.64062,-0.171875 h 0.002 c 15.17646,-0.143865 30.3493,0.731433 45.45313,2.273438 L 480.23438,160.93945 534,352.01367 l 93.20117,26.54102 -22.10937,100.2539 97.59179,51.05469 147.53907,-23.56445 -94.13086,175.63086 -63.94532,31.1289 28.88477,68.05469 c 0,0 25.38569,24.81575 45.85352,46.36133 -1.03565,0.82168 -1.99942,1.73146 -3.04297,2.54297 l 24.55664,31.57617 c 33.05595,-25.70568 62.46913,-56.0261 87.1582,-89.84961 l -32.30859,-23.58398 c -14.89633,20.40764 -31.85918,39.27258 -50.26172,56.59961 l -41.55664,-37.29102 -22.90821,-41.23828 60.70899,-24.05469 105.38476,-226.80273 -185.56835,22.9082 -65.29102,-34.36328 22.9082,-103.09375 -106.52929,-34.36328 -42.38086,-163.80274 71.51562,-59.08008 c 7.93316,1.5211 15.83342,3.21261 23.66016,5.20118 L 622.7793,70.011719 C 585.26061,60.479192 546.5358,55.826617 507.83008,56.193359 Z m -51.19921,3.400391 c -39.2071,4.854857 -77.73633,14.902247 -114.32227,29.802734 -2.1878,0.890882 -4.37366,1.801719 -6.55859,2.732422 l 15.67383,36.798824 c 1.97768,-0.84242 3.97002,-1.6689 5.97265,-2.48437 v -0.002 c 33.31503,-13.56834 68.45125,-22.73016 104.14844,-27.150394 z m 206.16992,22.582031 -13.37695,37.697269 c 1.07219,0.38046 2.15413,0.77023 3.24414,1.16797 34.73675,12.67465 67.77196,30.09308 97.84765,51.5996 l 23.26563,-32.5371 C 740.74515,116.48144 704.52457,97.384041 666.37695,83.464844 c -1.18016,-0.430633 -2.37287,-0.861382 -3.57812,-1.289063 z M 298.05664,110.28125 C 263.44307,128.97333 231.32603,152.21648 202.75,179.25 c -1.83598,1.73683 -3.66528,3.4961 -5.48633,5.2793 L 225.25,213.10742 c 1.64149,-1.60737 3.30574,-3.2053 4.99023,-4.79883 26.0197,-24.61518 55.30893,-45.81113 86.82422,-62.83007 z m 508.58984,55.70508 -26.17187,30.25 c 1.65166,1.42908 3.29514,2.87687 4.93359,4.34179 26.79227,23.95295 50.43529,51.46642 70.06836,81.5625 l 33.5,-21.85546 c -21.56443,-33.05673 -47.48638,-63.22509 -76.90625,-89.52735 h -0.002 c -1.78955,-1.60002 -3.59612,-3.19177 -5.42188,-4.77148 z m -637.89453,49.15039 c -26.03298,30.67731 -47.89802,64.83932 -64.85937,101.32031 v 0.002 c -0.68687,1.47757 -1.3742,2.97122 -2.05664,4.48438 l 36.46289,16.44531 c 0.60688,-1.3456 1.23014,-2.70019 1.86523,-4.0664 v -0.002 c 4.4024,-9.46869 9.26656,-18.71368 14.38282,-27.82031 l 20.70898,10.65039 6.87305,63.00195 130.58398,91.63868 50.40039,119.1289 10.31055,107.67383 -105.38477,32.07422 -37.06054,75.21289 c -7.13515,-6.71532 -14.08228,-13.6275 -20.71485,-20.83594 l -29.43555,27.08399 c 26.43559,28.73082 56.60709,53.98243 89.55274,74.9375 2.38312,1.5161 4.78333,3.01275 7.20312,4.48828 l 20.82618,-34.15235 c -2.19498,-1.33844 -4.38133,-2.70079 -6.5586,-4.08593 h -0.002 v -0.002 c -12.29817,-7.82218 -24.05531,-16.4653 -35.45313,-25.55859 12.41521,-25.38276 31.97071,-70.16797 31.97071,-70.16797 L 402.1875,721.09375 389.16992,578.46484 C 360.52329,513.46638 340.14453,452.75195 340.14453,452.75195 L 208.75586,357.96094 c -3.17314,0.13151 -9.777,-56.90222 -12.93555,-56.55469 l -26.52343,-20.12109 c 9.18953,-13.99752 19.12579,-27.50634 29.95507,-40.26758 z m 741.4336,81.20312 -35.3711,18.67774 c 0.83888,1.58868 1.6711,3.19525 2.5,4.81836 16.51567,32.3437 28.7146,66.92234 36.14649,102.46875 l 39.15429,-8.1875 C 944.45282,375.07672 931.07528,337.16455 912.9375,301.64453 v -0.002 c -0.89994,-1.76221 -1.8159,-3.53003 -2.75195,-5.30274 z M 86.402344,359.81836 c -12.716229,36.92691 -20.589283,75.48759 -23.361328,114.44531 -0.200139,2.80766 -0.374081,5.61982 -0.521485,8.43555 l 39.945309,2.08984 c 0.13404,-2.56039 0.29391,-5.12139 0.47657,-7.68359 v -0.002 c 2.52396,-35.47129 9.70237,-70.6376 21.28125,-104.26172 z m 872.867186,95.60547 -39.74219,4.52734 c 4.31462,37.8832 3.30466,76.40144 -2.99218,114.00391 l 39.45117,6.60547 c 6.91624,-41.30132 8.0217,-83.53174 3.2832,-125.13672 z M 61.900391,506.29688 c -0.0067,38.33199 4.910113,76.63425 14.601562,113.72265 0.893296,3.41971 1.827267,6.836 2.804688,10.24414 l 38.449219,-11.02734 c -0.8871,-3.09321 -1.73666,-6.20399 -2.55274,-9.32813 -8.82424,-33.76966 -13.30879,-68.70043 -13.30273,-103.60547 z m 846.609379,104.90624 -0.29883,1.13086 -0.32813,1.2129 c -9.75641,36.03191 -24.47959,70.74746 -43.60351,102.80468 l 34.35351,20.49219 C 919.63686,701.63488 935.77931,663.57151 946.49414,624 l 0.002,-0.0117 0.35352,-1.3125 0.31641,-1.1875 z m -778.5586,44.16602 -37.265623,14.53125 c 14.628363,37.51431 34.305883,73.02303 58.367183,105.31055 l 0.002,0.002 c 0.95217,1.27741 1.91995,2.56431 2.9082,3.85938 l 31.79883,-24.26563 c -0.87473,-1.14629 -1.75165,-2.31329 -2.63477,-3.49805 l -0.002,-0.002 c -21.90681,-29.39685 -39.85427,-61.77961 -53.17383,-95.9375 z m 602.73047,196.64258 c -1.55892,0.99641 -3.1388,1.98615 -4.73437,2.97461 -30.82657,19.09486 -64.22812,34.084 -98.98633,44.41797 l 11.39844,38.33984 c 38.17246,-11.34906 74.79692,-27.78073 108.65234,-48.75195 h 0.002 v -0.002 c 1.73253,-1.07329 3.46918,-2.16335 5.20899,-3.27539 z m -400.83008,22.7168 -17.57812,35.93164 c 36.37653,17.79764 75.13591,30.64137 114.94336,38.08593 1.35126,0.25292 2.70411,0.49959 4.05859,0.74024 l 6.99805,-39.38477 c -1.23286,-0.21904 -2.46553,-0.44329 -3.69727,-0.67383 h -0.002 -0.002 c -36.24638,-6.77826 -71.5975,-18.4933 -104.72071,-34.69921 z m 260.07813,33.83984 c -1.05485,0.21061 -2.1294,0.41855 -3.22266,0.62695 -36.37267,6.9299 -73.72071,8.89375 -110.62305,5.82422 l -3.3164,39.86328 c 40.52608,3.37095 81.47699,1.21728 121.42773,-6.39453 h 0.002 c 1.17064,-0.22316 2.35922,-0.45272 3.56445,-0.69336 z\"],\n\"planet-volcanic\": [\"m 431.84375,128.875 v 93.92969 h 93.92969 V 128.875 Z m 93.92969,93.92969 v 93.92773 h 93.92968 v -93.92773 z m 0,93.92773 h -93.92969 v 93.92969 h 93.92969 z M 371.68164,491.3125 188.32812,955.57812 h 95.83204 L 428.3125,577.74805 h 154.86523 l 144.15235,377.83007 h 95.83008 L 639.80859,491.3125 Z\"],\n\"planet-water-based-life\": [\"m 503.16406,34.638672 c -122.95459,0 -240.90953,48.858763 -327.85156,135.800778 -86.942026,86.94203 -135.80078,204.89697 -135.800781,327.85157 0,122.95459 48.858755,240.90953 135.800781,327.85156 86.94203,86.94202 204.89697,135.80078 327.85156,135.80078 122.95459,0 240.90955,-48.85876 327.85156,-135.80078 C 917.95765,739.20055 966.81641,621.24561 966.81641,498.29102 966.8164,375.33642 917.95765,257.38148 831.01562,170.43945 744.07362,83.497435 626.11865,34.638672 503.16406,34.638672 Z m 0,69.556638 c 104.53367,0 204.74955,41.51127 278.66602,115.42774 73.91646,73.91646 115.42773,174.1343 115.42773,278.66797 0,104.53367 -41.51126,204.74954 -115.42773,278.66601 -73.91647,73.91647 -174.13235,115.42774 -278.66602,115.42774 -104.53367,0 -204.7515,-41.51127 -278.66797,-115.42774 -73.91646,-73.91647 -115.42773,-174.13234 -115.42773,-278.66601 0,-104.53367 41.51127,-204.75151 115.42773,-278.66797 73.91647,-73.91647 174.1343,-115.42774 278.66797,-115.42774 z\",\n\"m 396.45741,236.18839 c -32.5199,-1.52716 -55.35481,9.03126 -61.78679,28.56901 -11.42597,34.70954 31.2379,87.21074 95.29178,117.26391 19.47281,9.1053 39.49364,15.40384 58.21787,18.31524 l -0.0626,0.0731 c 76.07132,48.14246 133.03304,179.99933 94.72417,276.70555 h 42.30346 c 21.74661,-82.55522 -0.58544,-169.86911 -38.59187,-238.64102 27.56902,3.61706 65.03124,-6.18248 100.99168,-26.41789 62.69626,-35.331 102.63316,-91.51422 89.20142,-125.48831 -13.43109,-33.97422 -75.1441,-32.87448 -137.83984,2.45626 -29.31667,16.55147 -55.04651,38.60072 -71.79893,61.52818 -7.54032,-32.99423 -46.06242,-70.89436 -95.77165,-94.22523 -25.53105,-11.97889 -51.8514,-19.05771 -74.87859,-20.13875 z\",\n\"m 385.05969,447.68476 c 0,0 -103.39208,130.16723 -105.82536,205.88292 a 100.39326,110.60275 0 0 0 -1.23364,16.8126 100.39326,110.60275 0 0 0 100.39292,110.60214 100.39326,110.60275 0 0 0 100.39292,-110.60214 100.39326,110.60275 0 0 0 -0.85416,-14.2026 C 476.59712,578.37515 385.05969,447.68476 385.05969,447.68476 Z\"],\n\"planet-water-world\": [\"m 503.16406,34.638672 c -122.95459,0 -240.90953,48.85876 -327.85156,135.800778 -86.942026,86.94203 -135.80078,204.89697 -135.800781,327.85157 0,122.95459 48.858755,240.90953 135.800781,327.85156 86.94203,86.94202 204.89697,135.80078 327.85156,135.80078 122.95459,0 240.90955,-48.85876 327.85156,-135.80078 C 917.95765,739.20055 966.81641,621.24561 966.81641,498.29102 966.8164,375.33642 917.95765,257.38148 831.01562,170.43945 744.07361,83.497432 626.11865,34.638672 503.16406,34.638672 Z m 0,69.556638 c 104.53367,0 204.74955,41.51127 278.66602,115.42774 73.91646,73.91646 115.42773,174.1343 115.42773,278.66797 0,104.53367 -41.51126,204.74954 -115.42773,278.66601 -73.91647,73.91647 -174.13235,115.42774 -278.66602,115.42774 -104.53367,0 -204.7515,-41.51127 -278.66797,-115.42774 -73.91646,-73.91647 -115.42773,-174.13234 -115.42773,-278.66601 0,-104.53367 41.51127,-204.75151 115.42773,-278.66797 73.91647,-73.91647 174.1343,-115.42774 278.66797,-115.42774 z\",\n\"m 508.92773,229.7793 c 0,0 -174.0045,219.06587 -178.09961,346.49218 a 168.95761,186.13974 0 0 0 -2.07617,28.29493 168.95761,186.13974 0 0 0 168.95703,186.13867 168.95761,186.13974 0 0 0 168.95704,-186.13867 168.95761,186.13974 0 0 0 -1.4375,-23.90235 C 662.98137,449.7257 508.92773,229.7793 508.92773,229.7793 Z\"],\n\"planet\": [\"m 518.32812,30.400391 c -123.93,0 -242.80574,49.239342 -330.4375,136.871089 -87.63174,87.63176 -136.871089,206.50749 -136.871089,330.4375 3e-6,104.02054 34.804726,204.40216 97.769529,285.81446 6.92239,9.51041 14.13952,18.78736 21.80078,27.67383 33.26965,38.59015 72.3136,69.41167 114.83985,91.50195 70.27115,40.40579 150.43618,62.31836 232.89843,62.31836 123.93003,0 242.8038,-49.23934 330.43555,-136.8711 87.63175,-87.63175 136.87305,-206.50748 136.87305,-330.4375 0,-123.93001 -49.2413,-242.80574 -136.87305,-330.4375 C 761.13192,79.639733 642.25815,30.400393 518.32812,30.400391 Z M 540.51172,71 c 105.25266,5.467396 205.073,49.66089 279.96875,124.55664 80.14117,80.14117 125.15625,188.81561 125.15625,302.15234 0,113.33674 -45.01508,222.01118 -125.15625,302.15235 -71.59607,71.59607 -165.98206,115.05182 -266.10352,123.52734 61.2025,-21.11236 117.33829,-59.48796 162.77539,-112.1914 71.789,-83.26956 111.55274,-195.21637 111.55274,-311.76954 0,-116.55316 -39.76374,-228.50192 -111.55274,-311.77148 C 668.30435,130.99644 607.09491,90.883487 540.51172,71 Z m -96.64063,31.97656 c 88.83348,0 174.3856,40.76719 238.26758,114.86524 63.88198,74.09804 100.33789,175.5877 100.33789,281.58593 0,105.99823 -36.45591,207.48594 -100.33789,281.58399 -63.88198,74.09804 -149.4341,114.86719 -238.26758,114.86719 -88.83347,0 -174.38559,-40.76915 -238.26757,-114.86719 -63.88198,-74.09805 -100.33594,-175.58576 -100.33594,-281.58399 0,-105.99822 36.45396,-207.48789 100.33594,-281.58593 63.88198,-74.09805 149.4341,-114.86524 238.26757,-114.86524 z\"],\n\"planetary-port-large\": [\"m 483.11523,239.83594 a 12,12 0 0 0 -8.91211,2.21875 12,12 0 0 0 -2.51562,16.7832 c 0,0 17.59085,23.25977 49.25781,23.25977 31.25936,0 46.44336,-22.95313 46.44336,-22.95313 a 12,12 0 0 0 -4.20898,-16.44141 12,12 0 0 0 -16.44141,4.21094 c 0,0 -5.03425,11.1836 -25.79297,11.1836 -20.35111,0 -29.95898,-13.52735 -29.95898,-13.52735 a 12,12 0 0 0 -7.8711,-4.73437 z m 75.21875,-72.00586 a 12,12 0 0 0 -7.99023,4.52734 c 0,0 -10.54537,13.77539 -30.89648,13.77539 -20.35111,0 -29.96094,-13.52734 -29.96094,-13.52734 a 12,12 0 0 0 -16.78321,-2.51563 12,12 0 0 0 -2.51562,16.78321 c 0,0 17.59281,23.25976 49.25977,23.25976 31.66695,0 49.82031,-23.01172 49.82031,-23.01172 a 12,12 0 0 0 -2.08008,-16.84375 12,12 0 0 0 -8.85352,-2.44726 z m 19.47071,-493.96875 a 6,6 0 0 0 -6.18555,5.80859 l -2.43359,77.37305 a 6,6 0 0 0 5.80859,6.18555 6,6 0 0 0 6.18555,-5.8086 l 2.43359,-77.37109 a 6,6 0 0 0 -5.80859,-6.1875 z m 31.56836,496.16015 a 12,12 0 0 0 -8.62891,3.14454 c 0,0 -14.3636,12.32031 -30.89648,12.32031 a 12,12 0 0 0 -12,12 12,12 0 0 0 12,12 c 27.72333,0 47.11718,-18.63086 47.11718,-18.63086 a 12,12 0 0 0 0.73438,-16.95508 12,12 0 0 0 -8.32617,-3.87891 z m -179.32422,50.24219 a 12,12 0 0 0 -6.85938,6.10547 12,12 0 0 0 5.57422,16.0293 c 12.55384,6.07467 25.23155,6.80665 34.77539,6.16211 4.77192,-0.32228 8.78192,-1.00369 11.81446,-1.70313 1.51626,-0.34972 2.7576,-0.69028 3.92968,-1.08398 0.58605,-0.19685 1.10477,-0.36931 1.99414,-0.78516 0.44469,-0.20793 0.93472,-0.39347 2.0586,-1.19336 0.56194,-0.39994 1.31632,-0.87829 2.49804,-2.37305 1.18173,-1.49475 3.54857,-5.20446 2.23047,-10.41406 a 12,12 0 0 0 -14.57812,-8.68945 12,12 0 0 0 -7.02735,5.23828 c 0.18802,-0.27665 0.39029,-0.81951 0.54688,-1.01758 1.16388,-1.47218 1.88968,-1.92505 2.41211,-2.29687 1.04485,-0.74364 1.41205,-0.86261 1.69336,-0.99414 0.56261,-0.26307 0.58874,-0.24458 0.52929,-0.22461 -0.11888,0.0399 -0.77971,0.23969 -1.67968,0.44726 -1.79995,0.41515 -4.67404,0.91728 -8.03907,1.14453 -6.73005,0.45452 -15.34023,-0.25654 -22.70507,-3.82031 a 12,12 0 0 0 -9.16797,-0.53125 z m 36,8.05664 a 12,12 0 0 0 -1.25196,8.57422 c -1.00446,-3.97002 0.13805,-6.68019 1.25196,-8.57422 z m -41.98633,-65.8164 a 12,12 0 0 0 -6.78516,6.18945 12,12 0 0 0 5.76758,15.96094 c 12.70972,5.9609 25.61655,6.48047 35.33203,5.76172 4.85775,-0.35938 8.94404,-1.05693 11.95703,-1.71875 1.5065,-0.33092 2.72514,-0.64647 3.75391,-0.95313 0.51439,-0.15333 0.94293,-0.28471 1.58203,-0.52734 0.31955,-0.12132 0.61672,-0.20715 1.50195,-0.67188 0.44262,-0.23236 0.95603,-0.36148 2.45118,-1.69531 0.74757,-0.66692 1.98426,-1.52595 3.18164,-4.5625 0.59869,-1.51828 0.68768,-6.30157 0.6875,-6.30274 -1.9e-4,-0.001 -3.17877,-6.39943 -3.17969,-6.40039 a 12,12 0 0 0 -16.91992,-0.39648 c 0.0737,-0.0635 0.18774,-0.18707 0.2539,-0.24609 1.47931,-1.3197 1.96511,-1.43243 2.36914,-1.64454 0.80807,-0.42421 0.98279,-0.45913 1.13672,-0.51757 0.30787,-0.11689 0.2305,-0.08 0.0801,-0.0352 -0.30083,0.0897 -1.05127,0.29303 -2.04687,0.51172 -1.99122,0.43739 -5.03762,0.96449 -8.58008,1.22656 -7.08493,0.52415 -16.04666,-0.12237 -23.36914,-3.55664 a 12,12 0 0 0 -9.17383,-0.42187 z m 39.26172,4.75195 a 12,12 0 0 0 -3.36524,7.64258 c 0.10016,-1.29415 0.24508,-2.71804 0.51954,-3.41407 1.05907,-2.68582 2.09689,-3.58215 2.8457,-4.22851 z m -3.45703,8.92773 a 12,12 0 0 0 3.10156,7.99024 c 9.2e-4,9.5e-4 -3.17597,-6.3957 -3.17578,-6.39453 6e-5,3.6e-4 0.0449,-0.91848 0.0742,-1.59571 z M 428.2832,20.869141 a 12,12 0 0 0 -12.04297,11.957031 l -0.83984,232.615238 a 12,12 0 0 0 11.95703,12.04492 12,12 0 0 0 12.04297,-11.95703 L 440.24023,32.914062 A 12,12 0 0 0 428.2832,20.869141 Z m 47.37305,-51.478516 a 12,12 0 0 0 -11.94141,12.058594 l 1.6875,345.714841 a 12,12 0 0 0 12.0586,11.94141 12,12 0 0 0 11.9414,-12.0586 l -1.6875,-345.714839 a 12,12 0 0 0 -12.05859,-11.941406 z m 88.5293,0.002 a 12,12 0 0 0 -12.25391,11.740235 l -7.40234,345.7148 a 12,12 0 0 0 11.74023,12.2539 12,12 0 0 0 12.25391,-11.74023 l 7.40234,-345.714846 a 12,12 0 0 0 -11.74023,-12.253906 z m 54.28906,-221.427735 a 12,12 0 0 0 -12.25781,11.73633 c -3.83527,176.14259 -7.72184,352.60119 -10.92969,525.00586 a 12,12 0 0 0 11.77539,12.22266 12,12 0 0 0 12.2207,-11.77539 c 3.20681,-172.34877 7.09239,-348.785076 10.92774,-524.93164 a 12,12 0 0 0 -11.73633,-12.25782 z m -88.56836,-0.002 A 12,12 0 0 0 518,-239.94531 l 1.55078,199.970701 a 12,12 0 0 0 12.09375,11.90625 12,12 0 0 0 11.90625,-12.09375 L 542,-240.13086 a 12,12 0 0 0 -12.09375,-11.90625 z m -102.41797,505.625 a 12.0012,12.0012 0 0 0 -12.08594,11.71875 c -9.2e-4,0.0623 0.0198,0.11761 0.0195,0.17969 h -0.0215 c 0,0.60095 0.15911,1.14604 0.2168,1.72851 0.5164,5.43128 3.3118,10.12104 6.53906,13.22071 3.60793,3.46529 7.76556,5.73334 12.3457,7.57617 2.27448,0.91514 4.67202,1.71362 7.17383,2.40234 1.13409,0.31221 2.36244,0.51943 3.53906,0.78516 6.37723,1.45047 13.32141,2.26423 20.74805,2.32812 0.33198,0.003 0.64289,0.039 0.97656,0.0391 0.007,0 0.0142,0 0.0215,0 a 12.0012,12.0012 0 0 0 0.0215,-23.99805 c -0.007,-1e-5 -0.0141,10e-6 -0.0215,0 -3e-5,0 3e-5,-0.002 0,-0.002 -0.23493,0 -0.44984,-0.0273 -0.6836,-0.0293 -6.62074,-0.0705 -12.76961,-0.93101 -17.61718,-2.16602 -1.93562,-0.49908 -3.70574,-1.04201 -5.1543,-1.63086 -2.59331,-1.05419 -4.25448,-2.23594 -4.68164,-2.64648 -0.0471,-0.0453 0.0429,0.0951 0.0273,0.084 -0.0108,-0.01 -0.0609,-0.0417 -0.0703,-0.0508 -0.3655,-0.35105 0.40196,0.65509 0.53516,2.16211 a 12.0012,12.0012 0 0 0 -11.82813,-11.70117 z m 179.78516,19.5 a 12.0012,12.0012 0 0 0 -11.97657,11.81836 c 0.0205,-1.72937 0.99746,-2.77801 0.57813,-2.37695 -0.003,0.003 -0.0167,0.011 -0.0195,0.0137 -0.0141,0.013 0.0314,-0.052 0.0117,-0.0332 -0.44129,0.42117 -2.13042,1.61347 -4.74219,2.67187 -1.29132,0.5233 -2.79948,1.02026 -4.47266,1.47461 -0.004,9.5e-4 -0.006,0.001 -0.01,0.002 -5.09128,1.36944 -11.77152,2.33649 -18.94922,2.35547 a 12.0012,12.0012 0 0 0 0.0312,24 c 0.0107,0 0.0206,-0.002 0.0312,-0.002 v 0.002 c 0.2427,-6.4e-4 0.46909,-0.0272 0.71094,-0.0293 8.84917,-0.0573 17.14006,-1.09497 24.48828,-3.13476 0.17125,-0.0473 0.31999,-0.11768 0.49023,-0.16602 2.3303,-0.66158 4.58622,-1.40006 6.71485,-2.25976 4.56826,-1.84501 8.71084,-4.11356 12.30468,-7.55078 2.60947,-2.49575 4.99427,-5.99298 6.1211,-10.09571 0.0343,-0.12498 0.10287,-0.23128 0.13476,-0.35742 3.1e-4,-0.001 -3.1e-4,-0.003 0,-0.004 0.23835,-0.94353 0.28598,-1.96172 0.37305,-2.96485 0.0449,-0.5143 0.19141,-0.9906 0.19141,-1.51953 h -0.004 c 0,-0.009 0.004,-0.0165 0.004,-0.0254 a 12.0012,12.0012 0 0 0 -12.01172,-11.81836 z m -141.8711,42.01758 v 12 c 0,6.20888 3.21825,11.47266 6.79493,14.91015 3.57667,3.4375 7.70753,5.72207 12.27343,7.57813 9.13181,3.71213 20.25141,5.59375 32.49414,5.59375 12.24274,0 23.36038,-1.88162 32.49219,-5.59375 4.56591,-1.85606 8.69872,-4.14063 12.27539,-7.57813 3.57667,-3.43749 6.79297,-8.70127 6.79297,-14.91015 v -12 h -24 v 10.01562 c -0.71552,0.54334 -2.0009,1.38277 -4.10547,2.23828 -5.18661,2.10839 -13.84864,3.82813 -23.45508,3.82813 -9.60643,0 -18.26846,-1.71974 -23.45507,-3.82813 -2.10457,-0.85551 -3.3919,-1.69494 -4.10743,-2.23828 V 315.10547 Z M 607.47656,49.089844 a 12,12 0 0 0 -7.27734,5.605468 c -3.4417,5.985625 -10.03453,11.046875 -29.66406,11.046875 a 12,12 0 0 0 -12,12 12,12 0 0 0 12,12 c 24.62668,0 42.23357,-8.758405 50.4707,-23.083984 a 12,12 0 0 0 -4.42188,-16.384766 12,12 0 0 0 -9.10742,-1.183593 z M 519.82227,-52.751953 c -13.80773,0 -26.40318,2.654637 -36.57227,7.759766 -10.16909,5.105128 -19.53516,13.809113 -19.53516,26.382812 0,12.573699 9.36607,21.2757305 19.53516,26.3808594 10.16909,5.1051286 22.76454,7.7617186 36.57227,7.7617186 13.80772,0 26.40317,-2.65659 36.57226,-7.7617186 10.16909,-5.1051289 19.5332,-13.8071604 19.5332,-26.3808594 0,-12.573699 -9.36411,-21.277684 -19.5332,-26.382812 -10.16909,-5.105129 -22.76454,-7.759766 -36.57226,-7.759766 z m 0,24 c 10.55195,0 20.00819,2.299983 25.80273,5.208984 5.79454,2.909001 6.30273,5.278144 6.30273,4.933594 0,-0.34455 -0.50819,2.024593 -6.30273,4.933594 -5.79454,2.909001 -15.25078,5.2089838 -25.80273,5.2089841 -10.55196,-3e-7 -20.01015,-2.2999831 -25.80469,-5.2089841 -5.79454,-2.909001 -6.30274,-5.278144 -6.30274,-4.933594 0,0.34455 0.5082,-2.024593 6.30274,-4.933594 5.79454,-2.909001 15.25273,-5.208984 25.80469,-5.208984 z m -47.47461,20.6933592 c -14.30659,7e-7 -27.44902,3.6672957 -37.77149,10.4375001 -10.32247,6.7702043 -18.33594,17.5578167 -18.33594,30.4902347 0,12.932417 8.01347,23.720029 18.33594,30.490234 10.32247,6.770205 23.4649,10.439453 37.77149,10.439453 h 12 v -24 h -12 c -10.05309,0 -18.96627,-2.807944 -24.60743,-6.507812 -5.64115,-3.699869 -7.5,-7.377501 -7.5,-10.421875 0,-3.044375 1.85885,-6.720054 7.5,-10.419922 5.64116,-3.699869 14.55434,-6.507812 24.60743,-6.507813 h 12 V -8.0585938 Z M 574.10742,-274.18164 c -13.80772,0 -26.40318,2.65659 -36.57226,7.76172 -10.16909,5.10512 -19.53515,13.80716 -19.53516,26.38086 0,12.5737 9.36607,21.27768 19.53516,26.38281 10.16909,5.10513 22.76454,7.76172 36.57226,7.76172 13.80772,0 26.40318,-2.65659 36.57227,-7.76172 10.16908,-5.10513 19.53516,-13.80911 19.53515,-26.38281 0,-12.5737 -9.36607,-21.27574 -19.53515,-26.38086 -10.16909,-5.10513 -22.76455,-7.76172 -36.57227,-7.76172 z m 0,24 c 10.55196,0 20.01015,2.30194 25.80469,5.21094 5.79454,2.909 6.30273,5.27619 6.30273,4.93164 0,-0.34455 -0.50819,2.02459 -6.30273,4.93359 -5.79454,2.909 -15.25273,5.21094 -25.80469,5.21094 -10.55196,0 -20.01014,-2.30194 -25.80469,-5.21094 -5.79454,-2.909 -6.30273,-5.27814 -6.30273,-4.93359 0,0.34455 0.50819,-2.02264 6.30273,-4.93164 5.79455,-2.909 15.25274,-5.21094 25.80469,-5.21094 z m -368.4375,567.14453 c -36.30581,7.37839 -63.3359,17.92482 -96.80469,14.38867 l -11.933589,-1.26172 -2.521485,23.86719 11.933594,1.26172 c 35.00072,3.698 62.96496,-5.12513 92.40234,-12.02148 0.70501,3.18735 1.73207,7.05808 2.60743,9.96093 -30.57318,17.29425 -69.77116,30.07526 -91.87305,31.27539 l -11.982423,0.65039 1.300781,23.96485 11.982422,-0.65039 c 31.50328,-1.71064 76.25108,-17.58709 111.29102,-39.52149 a 12.0012,12.0012 0 0 0 4.9121,-14.26758 c -4.01658,-11.0577 -4.5533,-13.27773 -7.10156,-27.9414 a 12.0012,12.0012 0 0 0 -14.21289,-9.70508 z m 22.81836,63.65234 a 12.0012,12.0012 0 0 0 -9.43164,0.72657 c -32.22881,16.8708 -72.86686,36.72366 -101.67383,40.45507 l -11.90039,1.54102 3.08203,23.80078 11.90235,-1.54101 c 32.12394,-4.16107 67.80727,-21.35761 98.24023,-37.09571 1.05567,2.5417 2.5704,5.79243 3.4707,7.94336 -25.04359,21.67084 -66.15033,42.69269 -89.41992,52.1875 l -11.10937,4.53321 9.0664,22.22265 11.11133,-4.53515 c 27.3404,-11.15585 74.39669,-34.33461 103.26367,-62.67969 a 12.0012,12.0012 0 0 0 2.36914,-13.83985 c -4.07016,-8.31351 -4.83301,-11.97954 -11.9414,-27.38671 a 12.0012,12.0012 0 0 0 -7.0293,-6.33204 z m 28.4707,57.08204 a 12.0012,12.0012 0 0 0 -8.60351,2.86523 c -28.00991,24.02312 -59.57823,51.88636 -86.59766,65.89258 l -10.65234,5.52148 11.04492,21.3086 10.6543,-5.52344 c 28.37424,-14.70853 56.83639,-39.35833 82.46875,-61.48828 5.73896,5.82932 11.59748,11.02517 18.34961,16.36914 -15.4624,26.48027 -39.4509,47.10285 -60.77149,64.52734 l -9.29297,7.59375 15.1875,18.58399 9.29297,-7.59375 c 23.80605,-19.45577 54.06679,-44.6064 71.84961,-81.13086 a 12.0012,12.0012 0 0 0 -3.71289,-14.94336 c -13.30331,-9.71616 -20.874,-16.62026 -31.06641,-28.01172 a 12.0012,12.0012 0 0 0 -8.15039,-3.9707 z m 558.09961,-69.375 a 12.0012,12.0012 0 0 0 -7.81445,4.09375 c -6.05522,7.01996 -9.19767,12.00083 -11.86914,15.96289 -2.67147,3.96206 -4.97347,7.20039 -11.08789,13.39257 a 12.0012,12.0012 0 0 0 -0.28125,16.56836 c 25.39684,27.53453 55.8383,45.34641 84.96875,61.79688 l 10.44726,5.90039 11.80274,-20.89649 -10.44922,-5.90234 c -25.67022,-14.49641 -50.53781,-29.2627 -71.48242,-49.42383 2.43828,-2.98975 4.38991,-5.65571 5.98242,-8.01758 1.22803,-1.82129 2.32185,-3.45702 3.50586,-5.1621 24.40276,17.24502 43.89206,26.51776 73.91797,37.75195 l 11.23828,4.20508 8.41016,-22.47852 -11.23829,-4.20508 C 867.81243,399.45015 851.62236,391.86206 823.5625,370.67773 a 12.0012,12.0012 0 0 0 -8.50391,-2.35546 z m -46.88867,61.97656 a 12.0012,12.0012 0 0 0 -8.46875,2.79492 c -14.86067,12.50671 -17.60978,16.92727 -30.68555,25.57812 a 12.0012,12.0012 0 0 0 -4.04882,15.49805 c 16.66678,32.39236 41.30107,59.46654 66.79297,83.81836 l 8.67773,8.28906 16.57812,-17.35547 -8.67773,-8.2871 c -22.00431,-21.02022 -42.40037,-43.46053 -57.01562,-68.42579 5.53552,-4.2814 10.46515,-8.76224 15.61328,-13.43554 21.65501,21.89354 45.96851,41.18989 75.48632,59.56836 l 10.1875,6.34179 12.6836,-20.37304 -10.18555,-6.3418 c -31.83413,-19.82066 -56.77937,-40.00503 -78.87695,-63.84961 a 12.0012,12.0012 0 0 0 -8.06055,-3.82031 z m -69.0293,52.80273 a 12.0012,12.0012 0 0 0 -8.65625,0.58594 c -17.4304,8.15159 -24.61479,11.46437 -39.62304,17.86914 a 12.0012,12.0012 0 0 0 -7.19141,12.57422 c 5.13046,39.69209 23.71562,74.01314 39.44141,100.79101 l 6.07812,10.34766 20.69532,-12.15234 -6.07813,-10.34766 c -13.99936,-23.8381 -28.95428,-52.26956 -34.8125,-82.95508 6.84021,-2.9875 14.28246,-6.34062 21.71875,-9.78906 14.97185,25.74399 30.14862,51.30143 56.4707,77.77148 l 8.46094,8.50977 17.01953,-16.92383 -8.46289,-8.50976 c -27.09502,-27.24734 -41.13128,-53.03157 -58.27148,-82.36914 a 12.0012,12.0012 0 0 0 -6.78907,-5.40235 z m -92.55273,32.47071 c -19.1741,2.62267 -36.03914,5.59182 -52.37891,8.66796 a 12.0012,12.0012 0 0 0 -9.77343,12.1836 c 1.16328,35.67518 4.26913,69.91448 11.75586,100.99219 l 2.81054,11.66601 23.33203,-5.62109 -2.81054,-11.66602 c -6.20112,-25.74109 -9.21175,-54.92724 -10.59961,-85.81055 9.89812,-1.79765 20.22132,-3.50892 31.04883,-5.125 9.74984,29.99381 20.15512,60.33654 34.97265,90.46875 l 5.29688,10.76954 21.53515,-10.5918 -5.29492,-10.76758 c -15.47501,-31.46922 -26.1965,-63.92063 -36.84765,-96.95898 a 12.0012,12.0012 0 0 0 -13.04688,-8.20703 z m 6.4375,-413.1875 a 12,12 0 0 0 -13.9043,9.72656 12,12 0 0 0 9.72852,13.90625 c 136.91009,24.19727 233.82727,116.69148 239.25,205.5625 1.2094,19.82031 -3.06065,42.60463 -10.97266,64.04687 a 12,12 0 0 0 7.10352,15.41407 12,12 0 0 0 15.41211,-7.10547 c 8.82882,-23.92689 13.89218,-49.5601 12.41211,-73.81641 C 865.66533,225.40651 758.26048,128.05338 613.02539,102.38477 Z m -188.64648,7.72265 C 288.2791,144.37287 186.63999,234.69196 172.72461,332.38867 a 12,12 0 0 0 10.1875,13.57227 12,12 0 0 0 13.57226,-10.1875 C 208.33013,252.60715 301.18686,165.87176 430.23828,133.38086 a 12,12 0 0 0 8.70703,-14.56641 12,12 0 0 0 -14.5664,-8.70703 z M 183.17969,365.32227 a 12,12 0 0 0 -10.17774,13.58007 c 1.19429,8.34146 2.94295,16.66599 5.23242,24.92969 a 12,12 0 0 0 14.76758,8.35938 12,12 0 0 0 8.36133,-14.76758 c -2.0213,-7.29577 -3.55726,-14.61439 -4.60351,-21.92188 a 12,12 0 0 0 -13.58008,-10.17968 z m 641.88867,64.48046 a 12,12 0 0 0 -7.46094,5.35743 c -6.71474,10.82244 -13.61467,20.06721 -22.44922,30.51367 a 12,12 0 0 0 1.41407,16.91211 12,12 0 0 0 16.9121,-1.41407 c 9.37462,-11.08507 17.13568,-21.45969 24.51758,-33.35742 a 12,12 0 0 0 -3.87109,-16.52343 12,12 0 0 0 -9.0625,-1.48829 z m -614.68359,1.70899 a 12,12 0 0 0 -9.13672,0.92383 12,12 0 0 0 -4.88477,16.25195 c 6.01742,11.18835 13.07938,22.10692 21.1582,32.64453 a 12,12 0 0 0 16.82422,2.22266 12,12 0 0 0 2.22266,-16.82422 C 229.2507,457.18568 222.89197,447.34574 217.5,437.32031 a 12,12 0 0 0 -7.11523,-5.80859 z M 766.2793,500.2832 a 12,12 0 0 0 -8.75782,2.76953 c -11.57025,9.72446 -24.06378,18.87798 -37.36523,27.28907 a 12,12 0 0 0 -3.72852,16.55468 12,12 0 0 0 16.55664,3.73047 c 14.21047,-8.98589 27.57409,-18.77397 39.98047,-29.20117 a 12,12 0 0 0 1.46485,-16.9082 12,12 0 0 0 -8.15039,-4.23438 z m -501.56641,2.15625 a 12,12 0 0 0 -8.16602,4.20313 12,12 0 0 0 1.4004,16.91211 c 63.49685,53.77935 160.05089,89.32054 284.87304,85.51562 6.33061,-0.19298 12.6154,-0.54557 18.84961,-1.05273 a 12,12 0 0 0 10.98828,-12.9336 12,12 0 0 0 -12.93359,-10.98828 c -5.83265,0.4745 -11.71218,0.80579 -17.63477,0.98633 -119.9032,3.65498 -210.31107,-30.44721 -268.63086,-79.8418 a 12,12 0 0 0 -8.74609,-2.80078 z m 412.28906,55.14063 a 12,12 0 0 0 -9.18359,0.0449 c -13.38845,5.62405 -27.29915,10.5071 -41.65234,14.53711 a 12,12 0 0 0 -8.3086,14.79687 12,12 0 0 0 14.79688,8.31055 c 15.32535,-4.30296 30.17124,-9.51576 44.45898,-15.51758 a 12,12 0 0 0 6.41602,-15.71093 12,12 0 0 0 -6.52735,-6.46094 z M 424.12171,133.25194 c -103.33381,33.18388 -176.50548,110.0623 -171.70082,189.5282 5.95097,98.42509 112.25086,185.40105 286.13018,180.05198 71.59742,-2.20257 134.92089,-28.88743 180.00372,-67.18716 45.08284,-38.29972 72.50645,-88.65259 69.4825,-138.66685 -4.56604,-75.51976 -75.93907,-144.67724 -174.05881,-170.28027 a 12,12 0 0 0 -14.64163,8.58092 12,12 0 0 0 8.58093,14.64164 c 90.56539,23.63182 152.48037,87.59339 156.16326,148.50614 2.42839,40.16411 -20.25988,84.26216 -61.06471,118.92753 -40.80481,34.66539 -99.14662,59.45847 -165.20336,61.49059 C 372.10705,483.94229 281.33089,403.26331 276.37714,321.3317 272.54893,258.01567 335.34456,186.96834 431.45947,156.10269 a 12,12 0 0 0 7.75547,-15.09518 12,12 0 0 0 -15.09323,-7.75557 z m 6.70671,78.75637 a 12,12 0 0 0 -9.12222,1.06616 c -36.92894,20.6084 -62.10354,52.58714 -59.91232,88.8285 1.86906,30.91299 23.39371,56.56326 53.69564,73.14075 30.30191,16.57749 70.08979,25.02849 113.12413,22.42655 43.03433,-2.60193 81.51418,-15.78514 109.59804,-35.89273 28.08388,-20.10761 46.3613,-48.16439 44.49226,-79.07738 -2.17449,-35.96465 -30.61671,-64.52773 -69.28523,-80.59434 a 12,12 0 0 0 -15.6845,6.47792 12,12 0 0 0 6.47597,15.68464 c 33.31422,13.84192 53.08774,35.90196 54.5375,59.88022 1.24613,20.61023 -10.89424,41.20805 -34.50679,58.11425 -23.61253,16.9062 -58.10877,29.09516 -97.07569,31.45117 -38.96692,2.35601 -74.68043,-5.58793 -100.15788,-19.52607 -25.47744,-13.93813 -40.01106,-32.92319 -41.2572,-53.53342 -1.46093,-24.16275 15.80092,-48.64789 47.65236,-66.42275 a 12,12 0 0 0 4.63051,-16.3268 12,12 0 0 0 -7.20458,-5.69667 z\"],\n\"planetary-port\": [\"M 160.48925,77.792879 V 695.73316 H 36.511025 V 870.1252 H 2.6695246 v 74.58186 H 996.94115 V 870.1252 H 962.77782 V 547.22162 H 628.8771 V 77.792879 H 215.15767 Z m 54.66842,54.668401 H 574.20868 V 547.22162 H 435.23393 V 695.73316 H 215.15767 V 370.84767 h 274.44284 v -55.9712 H 215.15767 V 253.51434 H 489.60051 V 197.54535 H 215.15767 Z m 276.45805,474.84855 h 414.7781 v 68.62624 H 611.12407 v 55.97118 H 906.39382 V 789.199 870.1252 H 491.61572 Z M 92.706377,746.471 H 435.23393 V 869.20415 H 92.706377 Z\"],\n\"plant\": [\"m 209.28347,219.28281 c -57.8574,-2.27562 -98.48395,13.45823 -109.927345,42.57267 -20.3284,51.72319 55.576605,129.95893 169.537465,174.74329 34.64478,13.56845 70.26466,22.95433 103.57771,27.29282 l -0.11156,0.10884 c 135.34154,71.74049 236.68446,268.22969 168.52757,412.33845 h 75.2638 c 38.69044,-123.02136 -1.04157,-253.13393 -68.66031,-355.6158 49.04917,5.39004 115.69972,-9.21295 179.67848,-39.36716 111.54538,-52.64921 182.59884,-136.37179 158.70181,-186.99898 -23.8958,-50.62732 -133.6919,-48.98858 -245.2365,3.66025 -52.15844,24.66452 -97.9355,57.52166 -127.74036,91.68749 C 499.47896,340.53765 430.94272,284.05999 342.50307,249.29295 297.07965,231.44249 250.25217,220.89377 209.2835,219.28284 Z\"],\n\"poi-empty\": [\"M 56.127804,68.437961 V 388.34462 H 113.79397 V 128.68106 H 368.53119 V 68.437961 Z m 564.808846,0 V 128.68106 H 873.0793 v 259.66356 h 58.19179 V 68.437961 Z M 56.127804,640.75009 V 943.58125 H 368.53119 V 887.9664 H 113.79397 V 640.75009 Z m 816.951496,0 V 887.9664 H 620.93665 v 55.61485 H 931.27109 V 640.75009 Z\"],\n\"poi\": [\"M 56.127804,68.437961 V 388.34462 H 113.79397 V 128.68106 H 368.53119 V 68.437961 Z m 564.808846,0 V 128.68106 H 873.0793 v 259.66356 h 58.19179 V 68.437961 Z M 56.127804,640.75009 V 943.58125 H 368.53119 V 887.9664 H 113.79397 V 640.75009 Z m 816.951496,0 V 887.9664 H 620.93665 v 55.61485 H 931.27109 V 640.75009 Z\",\n\"m 242.32812,257.51172 v 30 472.16015 H 744.48828 V 257.51172 Z m 60,60 H 684.48828 V 699.67187 H 302.32812 Z\"],\n\"power\": [\"m 1703.541,-199.82617 -145.164,70.57226 -161.002,11.46485 -52.7441,152.548826 -105.7403,121.951174 70.5723,145.16406 11.4648,161.00195 152.5489,52.74414 121.9531,105.74024 145.1641,-70.57227 161,-11.46484 52.748,-152.55274 105.7363,-121.94921 -70.5722,-145.16407 -11.4649,-160.999997 -152.5488,-52.746094 z m -12.5117,95.03515 93.7246,81.265629 117.2402,40.535157 8.8106,123.736324 54.2383,111.56446 -81.2657,93.72656 -2.5234,7.29883 -38.0117,109.9414 -123.7363,8.81055 -111.5645,54.23633 -93.7266,-81.26367 -117.2402,-40.53711 -8.8105,-123.73633 -54.2364,-111.56445 81.2637,-93.724613 40.5371,-117.240234 123.7363,-8.810547 z\"],\n\"route\": [\"m 862.98602,220.5041 a 136.44227,136.44227 0 0 0 -136.44297,136.44296 136.44227,136.44227 0 0 0 11.45936,54.34709 L 602.91264,510.8725 a 97.011715,97.011715 0 0 0 -33.46669,-6.21736 97.011715,97.011715 0 0 0 -54.47088,16.91477 L 384.71534,429.61973 a 97.011715,97.011715 0 0 0 3.85038,-26.98466 97.011715,97.011715 0 0 0 -97.01073,-97.01074 97.011715,97.011715 0 0 0 -97.01288,97.01074 97.011715,97.011715 0 0 0 29.37302,69.20649 L 103.40088,685.5866 A 82.616429,82.616429 0 0 0 83.762656,683.03177 82.616429,82.616429 0 0 0 1.1460234,765.64627 82.616429,82.616429 0 0 0 83.762656,848.26291 82.616429,82.616429 0 0 0 166.3793,765.64627 82.616429,82.616429 0 0 0 149.50508,715.96061 L 272.64886,497.552 a 97.011715,97.011715 0 0 0 18.90613,2.09593 97.011715,97.011715 0 0 0 63.39675,-23.61878 l 125.13302,88.33031 a 97.011715,97.011715 0 0 0 -7.64953,37.3064 97.011715,97.011715 0 0 0 97.01072,97.01288 97.011715,97.011715 0 0 0 97.01286,-97.01288 97.011715,97.011715 0 0 0 -18.00969,-55.93292 l 121.3808,-89.47432 a 136.44227,136.44227 0 0 0 93.1561,37.12925 A 136.44227,136.44227 0 0 0 999.42687,356.94706 136.44227,136.44227 0 0 0 862.98602,220.5041 Z\"],\n\"scan\": [\"m 503.16406,34.638672 c -122.95463,0 -240.90951,48.858732 -327.85156,135.800778 -86.942054,86.94206 -135.80078,204.89694 -135.800781,327.85157 0,122.95463 48.858727,240.9095 135.800781,327.85156 86.94205,86.94205 204.89693,135.80078 327.85156,135.80078 122.95463,0 240.90951,-48.85873 327.85156,-135.80078 C 917.95768,739.20052 966.81641,621.24565 966.81641,498.29102 966.8164,375.33639 917.95768,257.38151 831.01562,170.43945 744.07358,83.497404 626.11869,34.638672 503.16406,34.638672 Z m 0,69.558598 c 4.21694,0 8.41379,0.17799 12.61524,0.3125 l -25.21485,136.15429 c -50.22167,2.84239 -98.4041,19.76959 -139.21679,48.48438 a 65.292099,65.292099 0 0 0 -42.06836,-15.37891 65.292099,65.292099 0 0 0 -65.29297,65.29102 65.292099,65.292099 0 0 0 22.09961,48.9082 c -18.65376,37.07781 -28.70703,78.29873 -28.70703,120.57617 0,71.16264 28.27806,139.43236 78.59765,189.75196 26.12845,26.12844 57.12064,46.24951 90.82032,59.61914 a 65.292099,65.292099 0 0 0 63.99414,53.08007 65.292099,65.292099 0 0 0 57.73632,-35.13867 c 62.80974,-5.35767 122.03606,-32.64543 166.95118,-77.56054 31.27001,-31.27001 54.01203,-69.47798 66.76171,-110.99805 l 120.40235,16.90234 c -18.06614,64.72837 -52.44631,124.38967 -100.8125,172.75586 -73.91644,73.91644 -174.13239,115.42774 -278.66602,115.42774 -104.53363,0 -204.75153,-41.5113 -278.66797,-115.42774 -73.91644,-73.91644 -115.42773,-174.13238 -115.42773,-278.66601 0,-104.53363 41.51129,-204.75153 115.42773,-278.66797 73.91644,-73.91644 174.13434,-115.42578 278.66797,-115.42578 z m -20.17773,177.39648 -26.7461,144.42383 a 99.656357,99.656357 0 0 0 -53.0332,87.79687 99.656357,99.656357 0 0 0 99.65625,99.65625 99.656357,99.656357 0 0 0 86.39063,-50.45508 l 132.47851,18.59766 c -11.13326,32.9115 -29.68511,63.18121 -54.7207,88.2168 -35.78894,35.78894 -82.24308,58.38793 -131.88867,64.83984 a 65.292099,65.292099 0 0 0 -64.33203,-54.25781 65.292099,65.292099 0 0 0 -58.32618,36.21484 c -25.08908,-11.24466 -48.20363,-26.97707 -68.02343,-46.79687 -42.78073,-42.78073 -66.80469,-100.78407 -66.80469,-161.28516 0,-36.75883 8.91689,-72.57203 25.47266,-104.63281 a 65.292099,65.292099 0 0 0 6.16992,0.44141 65.292099,65.292099 0 0 0 65.29101,-65.29297 65.292099,65.292099 0 0 0 -1.91992,-15.69532 c 32.42052,-23.29933 70.44735,-37.77721 110.33594,-41.77148 z\"],\n\"search\": [\"m 655.41602,6.1816406 c -187.61175,0 -342.71094,148.0001394 -342.71094,331.6542994 0,67.26536 20.86973,129.70278 56.45898,181.88281 L 81.263672,807.62109 81.796875,808.1543 3.4902344,886.46094 114.54297,997.51367 441.49023,670.56445 l -0.5332,-0.53125 44.53125,-44.53125 c 50.25894,27.94627 108.31328,43.99024 169.92774,43.99024 187.61173,0 342.71093,-148.00208 342.71093,-331.65625 0,-183.65416 -155.0992,-331.6542933 -342.71093,-331.6542994 z M 656.2168,130.57617 c 118.20294,0 213.14453,94.94161 213.14453,213.14453 0,118.20296 -94.94159,213.14062 -213.14453,213.14063 -118.20296,0 -213.14063,-94.93767 -213.14063,-213.14063 0,-118.20292 94.93768,-213.14453 213.14063,-213.14453 z\"],\n\"settings\": [\"M 996.1458,85.155272 H 851.37151 V 4.5947252 h -54.5832 -41.36408 -54.5832 V 85.155272 H 4.686525 v 15.999998 60.26367 14.26563 H 700.84103 v 82.59375 h 95.94728 54.5832 V 175.68457 H 996.1458 v -14.26563 -60.26367 z m 0,379.732418 H 334.32061 v -80.29297 h -54.5832 -41.36407 -54.5832 v 80.29297 H 4.686525 v 16.26758 60.26367 14 H 183.79014 v 82.85938 h 95.94727 54.5832 V 555.41894 H 996.1458 v -14 -60.26367 z m 0,362.26758 H 630.90384 v -82.56055 h -54.58321 -41.36407 -54.58321 v 82.56055 H 4.686525 v 14 60.26367 16.26563 H 480.37335 v 80.59373 h 54.58321 95.94728 V 917.68457 H 996.1458 v -16.26563 -60.26367 z\"],\n\"settlement\": [\"M 806.05021,150.18863 V 530.32185 H 718.1769 V 305.66712 H 643.82749 V 530.32185 H 566.21546 V 399.70907 H 46.403698 V 771.93744 H 5.2447177 v 72.45205 H 995.75729 V 771.93744 H 954.98276 V 530.32185 H 880.39963 V 150.18863 Z M 114.33678,472.10294 H 498.2871 v 299.8345 H 114.33678 Z M 566.21546,591.45407 H 887.28085 V 771.93744 H 566.21546 Z\"],\n\"shield\": [\"m 503.14298,19.742706 c 0,0 -273.05503,163.832224 -414.325534,166.213864 l 2.493383,197.49685 c 0,0 30.166641,187.61198 115.905641,319.59129 102.41047,161.97461 277.88533,276.15426 297.55086,278.93578 -0.006,0.0581 0.002,0.34477 -0.004,0.39594 0.12033,0.008 0.92419,-0.17945 1.14111,-0.19695 0.21679,0.0176 1.02081,0.20514 1.1411,0.19695 -0.006,-0.0514 0.002,-0.33797 -0.004,-0.39594 0,0 141.87659,-81.38706 270.48508,-258.35931 C 891.84518,543.64941 920.49589,383.45342 920.49589,383.45342 l 2.49135,-171.31026 C 787.25812,197.55608 503.14298,19.742707 503.14298,19.742706 Z m -3.68119,117.091424 c 0,1e-5 215.22248,134.69702 318.04003,145.74703 3.51859,147.19285 -50.70375,291.11256 -110.18793,387.45672 -97.42344,134.05991 -204.89781,195.71006 -204.89781,195.71006 0.005,0.0439 -0.002,0.26152 0.002,0.3005 -0.0911,0.006 -0.69872,-0.13491 -0.86294,-0.14822 -0.16433,0.0133 -0.7738,0.15446 -0.86497,0.14822 0.005,-0.0388 -0.002,-0.25652 0.002,-0.3005 C 485.79521,863.64089 352.871,777.14706 275.29307,654.44815 201.90736,535.10724 187.94142,398.51256 185.60244,262.74578 292.6176,260.94165 499.46179,136.83413 499.46179,136.83413 Z\",\n\"M 640.35233,467.85489 A 142.97715,142.97715 0 0 1 497.37518,610.83204 142.97715,142.97715 0 0 1 354.39803,467.85489 142.97715,142.97715 0 0 1 497.37518,324.87774 142.97715,142.97715 0 0 1 640.35233,467.85489 Z\"],\n\"ship\": [\"M 314.20117,206.81645 6.1621094,450.59961 8.5644531,456.30469 H 6.1621094 v 275.53515 2 70.53516 C 332.33855,804.43078 697.1519,804.27107 995.80859,804.2773 V 731.74219 456.20508 h -2.40234 l 2.40234,-5.70313 -308.03906,-243.7832 c -122.75855,-0.0796 -259.71397,0.10517 -373.56836,0.0977 z m 364.51953,73.58199 6.26368,4.95703 -114.89258,204.39062 0.46093,0.27539 h -0.46093 l -0.58594,241.72071 c -44.96545,-0.12467 -94.15028,0.1114 -137.04297,0.0976 l -0.58398,-241.7207 h -0.46094 l 0.46094,-0.27539 -114.89258,-204.39063 6.26367,-4.95703 c 127.35346,0.10376 228.26609,-0.0976 355.4707,-0.0976 z m 36.11133,28.58008 205.27735,162.45703 V 731.74219 H 604.24023 l 0.55079,-227 z m -427.69336,0.0976 110.04102,195.76367 0.55078,227 H 81.859375 V 471.5332 Z\"],\n\"signal-even-bars\": [\"M 801.95675,361.81793 V 1000.1147 H 998.3222 V 361.81793 Z M 536.09118,195.40049 v 804.71421 h 196.3677 V 195.40049 Z M 270.22786,456.74298 V 1000.1147 H 466.59329 V 456.74298 Z M 4.3622791,243.92548 V 1000.1147 H 200.72997 V 243.92548 Z\"],\n\"signal\": [\"M 801.95675,1.8179325 V 1000.1147 H 998.3222 V 1.8179325 Z M 536.09118,235.40049 v 764.71421 h 196.3677 V 235.40049 Z M 270.22786,436.74298 V 1000.1147 H 466.59329 V 436.74298 Z M 4.3622791,663.92548 V 1000.1147 H 200.72997 V 663.92548 Z\"],\n\"sound\": [\"M 549.77141,139.1917 278.33913,325.74979 H 87.258283 v 323.9721 H 273.23756 l 271.83222,186.83304 c 0.78171,0.62914 1.56547,1.16751 2.35082,1.6148 l 2.35284,1.61696 v -0.78339 c 1.19394,0.63488 2.39087,1.05913 3.58917,1.27219 33.01195,-10e-4 59.77332,-156.81765 59.77332,-350.2604 0,-193.44275 -26.76137,-350.25937 -59.77332,-350.2604 -1.19897,0.21282 -2.39658,0.63707 -3.5912,1.27219 z\",\n\"m 884.2248,141.58073 -18.70639,12.14222 c 30.30788,29.18223 52.43495,174.73869 52.44321,344.98222 -7.8e-4,155.24444 -18.4678,291.96307 -45.37282,335.91657 l 6.65857,4.3224 c 0.82757,0.62918 1.6573,1.16762 2.48871,1.61502 l 2.49193,1.61652 v -0.78395 c 1.26402,0.63514 2.53121,1.05972 3.79985,1.27317 16.78621,9e-5 32.88491,-36.90218 44.75456,-102.58872 11.86965,-65.68654 18.53795,-154.77667 18.53796,-247.67153 -10e-6,-92.89487 -6.66831,-181.98499 -18.53796,-247.67153 -11.86965,-65.68655 -27.96835,-102.58882 -44.75456,-102.58873 -1.2697,0.21259 -2.53796,0.63667 -3.80306,1.27165 z\",\n\"m 677.03529,308.80952 -13.09809,6.73651 c 21.22134,16.19031 36.71456,96.94505 36.72034,191.3962 -5.7e-4,86.12965 -12.93101,161.98117 -31.76971,186.36659 l 4.66228,2.39807 c 0.57946,0.34906 1.16043,0.64779 1.74258,0.89601 l 1.74484,0.89685 v -0.43494 c 0.88506,0.35236 1.77232,0.58793 2.6606,0.70635 11.75359,6e-5 23.02578,-20.47333 31.33683,-56.91624 8.31103,-36.44291 12.98013,-85.87013 12.98014,-137.40822 -10e-6,-51.53808 -4.66911,-100.96531 -12.98014,-137.40822 -8.31105,-36.4429 -19.58324,-56.91629 -31.33683,-56.91624 -0.88902,0.11794 -1.77703,0.35322 -2.66284,0.70552 z\",\n\"m 779.82685,245.64937 -16.38115,9.1818 c 26.54052,22.06723 45.91713,132.13522 45.92436,260.87126 -7.1e-4,117.39391 -16.17219,220.77883 -39.73283,254.01592 l 5.83088,3.26855 c 0.7247,0.47576 1.45129,0.88293 2.17937,1.22125 l 2.18217,1.22239 v -0.59281 c 1.10691,0.48027 2.21657,0.80134 3.3275,0.96275 14.69965,8e-5 28.79722,-27.90497 39.19145,-77.57632 10.39421,-49.67133 16.23362,-117.04018 16.23363,-187.28612 -10e-6,-70.24593 -5.83942,-137.61478 -16.23363,-187.28612 -10.39423,-49.67134 -24.4918,-77.57639 -39.19145,-77.57631 -1.11186,0.16075 -2.22247,0.48143 -3.3303,0.9616 z\"],\n\"star\": [\"m 500.05078,5.9707031 -17.52344,53.2207029 -105,318.902344 L 3.2148438,500.12891 377.52734,622.16406 500.05078,994.28711 622.57227,622.16406 996.88281,500.12891 622.57227,378.09375 Z m 2.09766,185.9941369 77.39844,235.07422 235.94531,76.92578 -235.94531,76.92383 -77.39844,235.07422 -77.40039,-235.07422 -235.94532,-76.92383 235.94532,-76.92578 z\"],\n\"sync\": [\"M 493.29688,24.519531 C 221.76227,21.247545 -0.62071438,269.27704 19.353516,525.74609 28.99458,649.53732 86.72871,771.18447 163.00195,838.7207 l -35.49414,67.63672 199.00391,-4.48828 27.95117,-0.63086 89.57422,-2.01758 -64.08984,-98.54687 -108.51954,-166.8711 -36.37304,68.88086 c -40.45261,-56.92929 -64.25977,-126.6006 -64.25977,-202.13867 0,-193.29308 155.34571,-348.63868 348.63867,-348.63867 5.40762,0 10.78145,0.14011 16.12696,0.38086 l -23.38867,-31.24023 -26.50391,-35.400396 20.90625,-24.152343 6.52344,-7.539063 22.53515,-26.035156 c 0.6113,-3.196023 -13.51501,-2.288945 -15.91211,-2.291016 -8.85499,-0.636698 -17.66464,-1.003827 -26.42382,-1.109375 z m 375.13085,72.267578 -199.0039,4.488281 -27.95117,0.63281 -89.57422,2.01563 64.08984,98.54687 108.51953,166.87305 36.37305,-68.88281 c 40.45261,56.92928 64.25976,126.6006 64.25976,202.13867 0,193.29309 -155.34571,348.63868 -348.63867,348.63867 -5.40762,0 -10.77949,-0.14011 -16.125,-0.38086 l 23.38672,31.24219 26.50391,35.39844 -20.90625,24.15429 -6.52344,7.53907 -22.53516,26.03515 c -0.6113,3.19602 13.51501,2.287 15.91211,2.28906 C 759.57457,997.88995 997.20061,742.14265 976.58203,477.40039 966.94097,353.60916 909.20683,231.96201 832.93359,164.42578 Z\"],\n\"system-authority-solid\": [\"M 503.24805,48.818359 C 384.8681,48.66613 267.37427,56.917164 178.89258,74.027344 V 355.76758 h -74.19336 l 2.39844,150.8418 c 0,0 29.01795,143.29191 111.49218,244.09374 98.51088,123.71134 267.304,210.91854 286.22071,213.04297 -0.006,0.0444 0.002,0.26366 -0.004,0.30274 0.11575,0.006 0.889,-0.13701 1.09766,-0.15039 0.20854,0.0134 0.98194,0.15665 1.09765,0.15039 -0.006,-0.0392 0.002,-0.25846 -0.004,-0.30274 0,0 136.4742,-62.16008 260.18554,-197.32617 C 877.14904,628.96288 904.70879,506.60938 904.70879,506.60938 l 2.39649,-130.8418 H 832.91602 V 74.027344 C 740.89361,57.52608 621.628,48.970588 503.24805,48.818359 Z M 256.58594,139.74805 c 252.00458,-43.52806 249.71436,-41.23711 508.59179,0 V 309.0957 c -249.71363,-43.52806 -272.62386,-43.52806 -508.59179,0 z m 244.55078,177.625 c 135.72963,6.7e-4 245.75984,108.17445 245.75976,241.61328 8e-5,133.43883 -110.03013,241.61261 -245.75976,241.61328 C 365.40633,800.6 255.37492,692.42591 255.375,558.98633 255.37492,425.54675 365.40633,317.37266 501.13672,317.37305 Z\"],\n\"system-authority\": [\"M 503.24805,48.818359 C 384.8681,48.66613 267.37427,56.917164 178.89258,74.027344 V 395.76758 h -74.19336 l 2.39844,110.8418 c 8.08347,373.69776 371.73411,454.21918 397.71289,457.13671 -0.006,0.0444 0.002,0.26366 -0.004,0.30274 0.11575,0.006 0.889,-0.13701 1.09766,-0.15039 0.20854,0.0134 0.98194,0.15665 1.09765,0.15039 -0.006,-0.0392 0.002,-0.25846 -0.004,-0.30274 25.98392,-2.91875 389.62752,-83.44191 397.71093,-457.13671 l 2.39649,-110.8418 H 832.91602 V 74.027344 C 740.89361,57.52608 621.628,48.970588 503.24805,48.818359 Z M 508.50977,81 c 106.99844,-0.445391 213.12824,8.535021 293.00976,28.27734 l 0.70313,321.74024 h 73.48828 L 873.3125,503.6582 C 851.71334,656.39644 830.64216,829.44798 506.20508,932.61328 157.57903,812.61536 161.3899,639.91657 138.49414,503.6582 l -2.39648,-72.64062 74.1914,-2.14453 V 109.27734 C 293.64454,91.316583 401.51132,81.445391 508.50977,81 Z m -2.46485,45.69141 c -86.74895,-0.13327 -172.75296,6.21712 -253.8789,19.22265 v 31.94922 8.91797 31.94922 c 169.57306,-35.16501 349.24527,-38.69365 511.93554,-0.36524 v -31.94921 -8.42774 -31.94922 c -83.894,-12.65904 -171.32035,-19.21441 -258.05664,-19.34765 z m 0,113.11914 c -86.74895,-0.13327 -172.75296,6.21908 -253.8789,19.22461 v 31.94922 8.91601 31.95117 c 169.57306,-35.16501 349.24527,-38.69364 511.93554,-0.36523 v -31.95117 -8.42578 -31.94922 c -83.894,-12.65904 -171.32035,-19.21637 -258.05664,-19.34961 z m 1.58594,159.47851 A 204.22923,199.14529 0 0 0 303.40039,598.43359 204.22923,199.14529 0 0 0 507.63086,797.57812 204.22923,199.14529 0 0 0 711.85938,598.43359 204.22923,199.14529 0 0 0 507.63086,399.28906 Z\"],\n\"system-bodies\": [\"M 262.1543,46.794922 C 123.04241,41.648542 6.0983486,150.25038 0.953125,289.36328 -3.9670304,427.02482 102.53692,543.13994 240.10938,550.10156 v 59.75391 C 148.25876,617.89655 76.601205,692.79202 72.615234,784.91797 68.863756,886.30548 148.00471,971.53697 249.38086,975.28711 350.7558,979.0364 435.97625,899.88631 439.72656,798.5 443.26329,701.56945 370.84075,618.59167 274.33203,609 V 549.72266 C 396.27963,539.23305 493.06551,442.65064 503.8125,320.72461 h 53.48242 c 7.98171,31.63455 35.81665,54.2561 68.41797,55.60351 34.7111,1.23445 65.57279,-21.93114 74.07617,-55.60351 h 42.13282 c 7.94738,59.36135 55.94713,105.1849 115.4746,110.55078 v 45.22266 c -3.966,1.14934 -7.74734,2.65042 -11.37304,4.42187 a 80.183273,76.17411 0 0 0 -52.20899,71.18164 80.183273,76.17411 0 0 0 63.58203,74.32617 v 50.98243 a 56.128292,53.264603 0 0 0 -40.38086,51.12109 56.128292,53.264603 0 0 0 56.12696,53.26563 56.128292,53.264603 0 0 0 56.1289,-53.26563 56.128292,53.264603 0 0 0 -36.36523,-49.70898 v -52.8711 a 80.183273,76.17411 0 0 0 61.27539,-73.84961 80.183273,76.17411 0 0 0 -27.87695,-57.70312 c -9.0712,-8.78826 -20.42872,-15.31086 -33.39844,-18.29883 v -46.69727 c 58.06212,-11.53122 100.66416,-61.34597 103.05273,-120.5 2.61584,-70.71203 -52.58082,-130.15587 -123.28515,-132.77148 -65.29206,-1.87907 -121.54289,45.67118 -130.56641,110.37109 h -42.30273 c -7.29494,-32.44523 -35.41858,-55.98535 -68.64453,-57.45703 -35.13304,-0.87386 -65.99521,23.17783 -73.72657,57.45703 h -54.0332 C 497.12276,156.21329 392.4796,52.237712 262.1543,46.794922 Z\"],\n\"system-orbits\": [\"m 502.86328,19.673828 c -126.01503,0 -246.89001,50.067744 -335.99609,139.173832 C 77.761105,247.95374 27.691405,368.83068 27.691406,494.8457 c 0,47.96265 7.297022,95.16473 21.195313,140.16992 a 76.140038,76.100662 0 0 0 -36.535157,64.86915 76.140038,76.100662 0 0 0 76.140626,76.10156 76.140038,76.100662 0 0 0 27.576172,-5.36524 c 15.17742,21.28884 32.06977,41.49165 50.79883,60.22071 89.10608,89.10608 209.98106,139.17578 335.99609,139.17578 126.01503,0 246.89197,-50.0697 335.99805,-139.17578 89.10608,-89.10608 139.17383,-209.98107 139.17383,-335.9961 0,-41.13078 -5.42855,-81.68498 -15.71289,-120.79492 a 76.140038,76.100662 0 0 0 26.76171,-57.90039 76.140038,76.100662 0 0 0 -76.14062,-76.09961 76.140038,76.100662 0 0 0 -8.76563,0.625 C 885.58853,211.32122 863.81692,183.80325 838.86133,158.84766 749.75525,69.741572 628.87831,19.673828 502.86328,19.673828 Z m 0,42.957031 c 114.63835,0 224.55955,45.532201 305.6211,126.593751 21.04386,21.04386 39.63491,44.06672 55.71484,68.57812 a 76.140038,76.100662 0 0 0 -27.39453,58.34766 76.140038,76.100662 0 0 0 76.13867,76.10156 76.140038,76.100662 0 0 0 9.58008,-0.6289 c 8.24249,33.50844 12.55469,68.13856 12.55468,103.22265 0,114.63835 -45.53219,224.55955 -126.59374,305.6211 -81.06156,81.06155 -190.98275,126.59179 -305.6211,126.59179 -114.63834,0 -224.55954,-45.53024 -305.62109,-126.59179 -17.43549,-17.43549 -33.11763,-36.27509 -47.16602,-56.14063 a 76.140038,76.100662 0 0 0 14.55664,-44.4414 76.140038,76.100662 0 0 0 -74.214841,-76.05274 C 77.475342,582.44917 70.650391,539.00902 70.650391,494.8457 70.65039,380.20736 116.18064,270.28616 197.24219,189.22461 278.30374,108.16306 388.22493,62.630859 502.86328,62.630859 Z m -7.44531,92.083981 c -74.0926,0 -142.69774,23.772 -198.75195,63.98243 a 76.140038,76.100662 0 0 0 -33.44532,-7.86719 76.140038,76.100662 0 0 0 -76.14062,76.10156 76.140038,76.100662 0 0 0 11.59765,40.24414 c -28.63999,49.97482 -45.10742,107.77763 -45.10742,169.38867 0,188.49303 153.35463,341.84766 341.84766,341.84766 112.94564,10e-6 213.22975,-55.09598 275.50976,-139.78516 a 76.140038,76.100662 0 0 0 8.5586,0.61328 76.140038,76.100662 0 0 0 76.14062,-76.10156 76.140038,76.100662 0 0 0 -25.54687,-56.78125 c 4.69504,-22.54075 7.18554,-45.87974 7.18554,-69.79297 10e-6,-188.49304 -153.35461,-341.84961 -341.84765,-341.84961 z m 0,51.37891 c 160.72671,-1e-5 290.47071,129.74399 290.4707,290.4707 0,17.27949 -1.58643,34.17076 -4.46289,50.61133 a 76.140038,76.100662 0 0 0 -1.93945,-0.13867 76.140038,76.100662 0 0 0 -76.13867,76.10156 76.140038,76.100662 0 0 0 21.04687,52.28711 c -53.11021,67.95852 -135.80596,111.60938 -228.97656,111.60938 -160.72671,0 -290.4707,-129.744 -290.4707,-290.47071 -1e-5,-49.79172 12.47444,-96.5953 34.4414,-137.5039 a 76.140038,76.100662 0 0 0 23.83203,3.9707 76.140038,76.100662 0 0 0 76.14063,-76.09961 76.140038,76.100662 0 0 0 -6.70899,-31.15039 c 46.39551,-31.37739 102.39333,-49.6875 162.76563,-49.6875 z m 1.4375,114.34766 A 179.26691,179.17419 0 0 0 317.58789,499.61719 179.26691,179.17419 0 0 0 496.85547,678.79102 179.26691,179.17419 0 0 0 676.12109,499.61719 179.26691,179.17419 0 0 0 496.85547,320.44141 Z\"],\n\"table-index\": [\"m 0,0 v 100 100 100 100 100 100 100 100 100 100 h 100 100 100 600 100 V 900 100 0 H 100 Z M 80,180 H 220 V 320 H 80 Z m 200,0 H 920 V 320 H 280 Z M 80,380 H 220 V 520 H 80 Z m 200,0 H 920 V 520 H 280 Z M 80,580 H 220 V 720 H 80 Z m 200,0 H 920 V 720 H 280 Z M 80,780 H 220 V 920 H 80 Z m 200,0 H 920 V 920 H 280 Z\"],\n\"table-inspector\": [\"m 0,0 v 100 100 100 100 100 100 100 100 100 100 h 100 420.61914 100 H 900 1000 V 900 100 0 H 100 Z M 80,180 H 540.61914 V 320 H 80 Z m 540.61914,0 H 920 V 920 H 620.61914 Z M 80,380 H 540.61914 V 520 H 80 Z m 0,200 H 540.61914 V 720 H 80 Z m 0,200 H 540.61914 V 920 H 80 Z\"],\n\"table-rows\": [\"m 0,0 v 100 100 100 100 100 100 100 100 100 100 h 100 800 100 V 900 100 0 H 100 Z M 80,180 H 920 V 320 H 80 Z m 0,200 H 920 V 520 H 80 Z m 0,200 H 920 V 720 H 80 Z m 0,200 H 920 V 920 H 80 Z\"],\n\"trending-down-chart\": [\"M 1001.5093,808.25503 719.39441,654.08852 825.74578,592.21972 628.44005,327.89128 516.94029,532.98727 203.71168,129.72187 V 3.106442 L 500.21326,385.42455 624.03524,156.03011 895.47887,551.96358 1001.8414,490.74384 Z\",\n\"M 100,0 H 0 v 1000 h 1000 l 0.1445,-100 H 100 Z\"],\n\"trending-down\": [\"M 985.49144,993.09993 642.09448,805.44481 771.54788,730.13665 531.3827,408.38984 395.66256,658.03752 14.393294,167.17335 V 13.054083 L 375.30202,478.4207 526.02105,199.19636 856.42865,681.13594 985.89563,606.61782 Z\"],\n\"trending-steady-chart\": [\"M 998.854,442.2427 724.28436,275.00728 723.8801,398.04467 563.50829,437.0957 399.27469,372.77151 214.06405,386.83092 v 93.70864 l 175.54361,-18.27686 154.92614,68.6177 179.35001,-52.31704 0.16342,122.72253 z\",\n\"M 100,0 H 0 v 1000 h 1000 l 0.1445,-100 H 100 Z\"],\n\"trending-steady\": [\"M 1010.492,523.00501 684.82313,324.64595 684.34363,463.46479 506.68127,489.78348 256.99415,433.48813 2.42602,450.16409 v 125.38173 l 243.102,-21.67831 255.25298,61.38792 183.56703,-42.05359 0.19383,138.44538 z\"],\n\"trending-up-chart\": [\"M 1001.5093,3.106442 719.39441,157.27295 825.74578,219.14175 628.44005,483.47019 516.94029,278.3742 203.71168,681.6396 V 808.25503 L 500.21326,425.93692 624.03524,655.33136 895.47887,259.39789 1001.8414,320.61763 Z\",\n\"M 100,0 H 0 v 1000 h 1000 l 0.1445,-100 H 100 Z\"],\n\"trending-up\": [\"M 985.49144,13.054083 642.09448,200.7092 771.54788,276.01736 531.3827,597.76417 395.66256,348.11649 14.393294,838.98066 V 993.09993 L 375.30202,527.73331 526.02105,806.95765 856.42865,325.01807 985.89563,399.53619 Z\"],\n\"triangle-up\": [\"M 285.2231 -46.400706 L -19.828083 481.9636 L 590.27428 481.9636 L 285.2231 -46.400706 z \"],\n\"warning\": [\"M 534.78467,61.015174 C 399.0487,295.25304 108.49991,760.14259 108.49991,760.14259 c 284.19047,0 568.38101,0 852.5715,0 z m 0,195.503846 245.17293,402.09527 -489.51374,-1.36416 z\"],\n\"wrench\": [\"m 656.37727,19.874573 a 134.32581,132.22431 9.731433e-5 0 0 -131.96876,-36.621447 134.32581,132.22431 9.731433e-5 0 0 -94.98332,161.943314 134.32581,132.22431 9.731433e-5 0 0 3.57645,10.54518 L 216.7395,368.62037 A 134.32581,132.22431 9.7319837e-5 0 0 115.45457,355.49895 134.32581,132.22431 9.7319837e-5 0 0 21.184496,446.52627 L 150.40941,412.44225 c 18.75068,17.75119 37.50312,35.50166 56.25372,53.25418 -7.22173,24.60364 -14.44333,49.20838 -21.66537,73.81006 L 53.018626,574.31707 a 134.32581,132.22431 9.7319837e-5 0 0 131.968764,36.61943 134.32581,132.22431 9.7319837e-5 0 0 94.9833,-161.94128 134.32581,132.22431 9.7319837e-5 0 0 -0.51493,-1.51652 l 221.0896,-217.63067 a 134.32581,132.22431 9.731433e-5 0 0 93.39491,8.84368 134.32581,132.22431 9.731433e-5 0 0 94.27009,-91.02733 L 558.98544,181.7484 c -18.75067,-17.75118 -37.50208,-35.50269 -56.25267,-53.2552 7.22172,-24.60364 14.44331,-49.206341 21.66535,-73.808013 z\"]\n}"
  },
  {
    "path": "resources/assets/icon-font/icarus-terminal.less",
    "content": "@font-face {font-family: \"icarus-terminal\";\n  src: url('icarus-terminal.eot?t=1764689807536'); /* IE9*/\n  src: url('icarus-terminal.eot?t=1764689807536#iefix') format('embedded-opentype'), /* IE6-IE8 */\n  url(\"icarus-terminal.woff2?t=1764689807536\") format(\"woff2\"),\n  url(\"icarus-terminal.woff?t=1764689807536\") format(\"woff\"),\n  url('icarus-terminal.ttf?t=1764689807536') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/\n  url('icarus-terminal.svg?t=1764689807536#icarus-terminal') format('svg'); /* iOS 4.1- */\n}\n\n[class^=\"icarus-terminal-\"], [class*=\" icarus-terminal-\"] {\n  font-family: 'icarus-terminal' !important;\n  font-size: 16px;\n  font-style:normal;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n.icarus-terminal-0_copy:before { content: \"\\ea01\"; }\n.icarus-terminal-asteroid-base:before { content: \"\\ea02\"; }\n.icarus-terminal-atmosphere:before { content: \"\\ea03\"; }\n.icarus-terminal-barrel:before { content: \"\\ea04\"; }\n.icarus-terminal-cargo-buy:before { content: \"\\ea05\"; }\n.icarus-terminal-cargo-export:before { content: \"\\ea06\"; }\n.icarus-terminal-cargo-import:before { content: \"\\ea07\"; }\n.icarus-terminal-cargo-sell:before { content: \"\\ea08\"; }\n.icarus-terminal-cargo:before { content: \"\\ea09\"; }\n.icarus-terminal-chevron-down:before { content: \"\\ea0a\"; }\n.icarus-terminal-chevron-left:before { content: \"\\ea0b\"; }\n.icarus-terminal-chevron-right:before { content: \"\\ea0c\"; }\n.icarus-terminal-chevron-up:before { content: \"\\ea0d\"; }\n.icarus-terminal-cogs:before { content: \"\\ea0e\"; }\n.icarus-terminal-color-picker:before { content: \"\\ea0f\"; }\n.icarus-terminal-coriolis-starport:before { content: \"\\ea10\"; }\n.icarus-terminal-credits:before { content: \"\\ea11\"; }\n.icarus-terminal-direction-heading:before { content: \"\\ea12\"; }\n.icarus-terminal-dodec-starport:before { content: \"\\ea13\"; }\n.icarus-terminal-download:before { content: \"\\ea14\"; }\n.icarus-terminal-economy:before { content: \"\\ea15\"; }\n.icarus-terminal-engineer:before { content: \"\\ea16\"; }\n.icarus-terminal-engineering:before { content: \"\\ea17\"; }\n.icarus-terminal-exit:before { content: \"\\ea18\"; }\n.icarus-terminal-fleet-carrier-lg:before { content: \"\\ea19\"; }\n.icarus-terminal-fleet-carrier:before { content: \"\\ea1a\"; }\n.icarus-terminal-fuel:before { content: \"\\ea1b\"; }\n.icarus-terminal-fullscreen-exit:before { content: \"\\ea1c\"; }\n.icarus-terminal-fullscreen-window-exit:before { content: \"\\ea1d\"; }\n.icarus-terminal-fullscreen-window:before { content: \"\\ea1e\"; }\n.icarus-terminal-fullscreen:before { content: \"\\ea1f\"; }\n.icarus-terminal-help:before { content: \"\\ea20\"; }\n.icarus-terminal-home:before { content: \"\\ea21\"; }\n.icarus-terminal-info:before { content: \"\\ea22\"; }\n.icarus-terminal-inventory:before { content: \"\\ea23\"; }\n.icarus-terminal-location-filled:before { content: \"\\ea24\"; }\n.icarus-terminal-location:before { content: \"\\ea25\"; }\n.icarus-terminal-logo:before { content: \"\\ea26\"; }\n.icarus-terminal-materials-encoded:before { content: \"\\ea27\"; }\n.icarus-terminal-materials-grade-1:before { content: \"\\ea28\"; }\n.icarus-terminal-materials-grade-2:before { content: \"\\ea29\"; }\n.icarus-terminal-materials-grade-3:before { content: \"\\ea2a\"; }\n.icarus-terminal-materials-grade-4:before { content: \"\\ea2b\"; }\n.icarus-terminal-materials-grade-5:before { content: \"\\ea2c\"; }\n.icarus-terminal-materials-manufactured:before { content: \"\\ea2d\"; }\n.icarus-terminal-materials-raw:before { content: \"\\ea2e\"; }\n.icarus-terminal-materials-xeno:before { content: \"\\ea2f\"; }\n.icarus-terminal-materials:before { content: \"\\ea30\"; }\n.icarus-terminal-megaship-lg:before { content: \"\\ea31\"; }\n.icarus-terminal-megaship:before { content: \"\\ea32\"; }\n.icarus-terminal-menu:before { content: \"\\ea33\"; }\n.icarus-terminal-notifications-disabled:before { content: \"\\ea34\"; }\n.icarus-terminal-notifications:before { content: \"\\ea35\"; }\n.icarus-terminal-ocellus-starport:before { content: \"\\ea36\"; }\n.icarus-terminal-orbis-starport:before { content: \"\\ea37\"; }\n.icarus-terminal-outpost:before { content: \"\\ea38\"; }\n.icarus-terminal-pin-window:before { content: \"\\ea39\"; }\n.icarus-terminal-planet-ammonia-based-life:before { content: \"\\ea3a\"; }\n.icarus-terminal-planet-ammonia-world:before { content: \"\\ea3b\"; }\n.icarus-terminal-planet-atmosphere-landable:before { content: \"\\ea3c\"; }\n.icarus-terminal-planet-atmosphere:before { content: \"\\ea3d\"; }\n.icarus-terminal-planet-earthlike:before { content: \"\\ea3e\"; }\n.icarus-terminal-planet-empty:before { content: \"\\ea3f\"; }\n.icarus-terminal-planet-gas-giant:before { content: \"\\ea40\"; }\n.icarus-terminal-planet-high-metal-content:before { content: \"\\ea41\"; }\n.icarus-terminal-planet-high-value:before { content: \"\\ea42\"; }\n.icarus-terminal-planet-landable:before { content: \"\\ea43\"; }\n.icarus-terminal-planet-lander:before { content: \"\\ea44\"; }\n.icarus-terminal-planet-life:before { content: \"\\ea45\"; }\n.icarus-terminal-planet-ringed:before { content: \"\\ea46\"; }\n.icarus-terminal-planet-terraformable:before { content: \"\\ea47\"; }\n.icarus-terminal-planet-volcanic:before { content: \"\\ea48\"; }\n.icarus-terminal-planet-water-based-life:before { content: \"\\ea49\"; }\n.icarus-terminal-planet-water-world:before { content: \"\\ea4a\"; }\n.icarus-terminal-planet:before { content: \"\\ea4b\"; }\n.icarus-terminal-planetary-port-large:before { content: \"\\ea4c\"; }\n.icarus-terminal-planetary-port:before { content: \"\\ea4d\"; }\n.icarus-terminal-plant:before { content: \"\\ea4e\"; }\n.icarus-terminal-poi-empty:before { content: \"\\ea4f\"; }\n.icarus-terminal-poi:before { content: \"\\ea50\"; }\n.icarus-terminal-power:before { content: \"\\ea51\"; }\n.icarus-terminal-route:before { content: \"\\ea52\"; }\n.icarus-terminal-scan:before { content: \"\\ea53\"; }\n.icarus-terminal-search:before { content: \"\\ea54\"; }\n.icarus-terminal-settings:before { content: \"\\ea55\"; }\n.icarus-terminal-settlement:before { content: \"\\ea56\"; }\n.icarus-terminal-shield:before { content: \"\\ea57\"; }\n.icarus-terminal-ship:before { content: \"\\ea58\"; }\n.icarus-terminal-signal-even-bars:before { content: \"\\ea59\"; }\n.icarus-terminal-signal:before { content: \"\\ea5a\"; }\n.icarus-terminal-sound:before { content: \"\\ea5b\"; }\n.icarus-terminal-star:before { content: \"\\ea5c\"; }\n.icarus-terminal-sync:before { content: \"\\ea5d\"; }\n.icarus-terminal-system-authority-solid:before { content: \"\\ea5e\"; }\n.icarus-terminal-system-authority:before { content: \"\\ea5f\"; }\n.icarus-terminal-system-bodies:before { content: \"\\ea60\"; }\n.icarus-terminal-system-orbits:before { content: \"\\ea61\"; }\n.icarus-terminal-table-index:before { content: \"\\ea62\"; }\n.icarus-terminal-table-inspector:before { content: \"\\ea63\"; }\n.icarus-terminal-table-rows:before { content: \"\\ea64\"; }\n.icarus-terminal-trending-down-chart:before { content: \"\\ea65\"; }\n.icarus-terminal-trending-down:before { content: \"\\ea66\"; }\n.icarus-terminal-trending-steady-chart:before { content: \"\\ea67\"; }\n.icarus-terminal-trending-steady:before { content: \"\\ea68\"; }\n.icarus-terminal-trending-up-chart:before { content: \"\\ea69\"; }\n.icarus-terminal-trending-up:before { content: \"\\ea6a\"; }\n.icarus-terminal-triangle-up:before { content: \"\\ea6b\"; }\n.icarus-terminal-warning:before { content: \"\\ea6c\"; }\n.icarus-terminal-wrench:before { content: \"\\ea6d\"; }\n"
  },
  {
    "path": "resources/assets/icon-font/icarus-terminal.module.less",
    "content": "@font-face {font-family: \"icarus-terminal\";\n  src: url('icarus-terminal.eot?t=1764689807536'); /* IE9*/\n  src: url('icarus-terminal.eot?t=1764689807536#iefix') format('embedded-opentype'), /* IE6-IE8 */\n  url(\"icarus-terminal.woff2?t=1764689807536\") format(\"woff2\"),\n  url(\"icarus-terminal.woff?t=1764689807536\") format(\"woff\"),\n  url('icarus-terminal.ttf?t=1764689807536') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/\n  url('icarus-terminal.svg?t=1764689807536#icarus-terminal') format('svg'); /* iOS 4.1- */\n}\n\n[class^=\"icarus-terminal-\"], [class*=\" icarus-terminal-\"] {\n  font-family: 'icarus-terminal' !important;\n  font-size:16px;\n  font-style:normal;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n:global {\n.icarus-terminal-0_copy:before { content: \"\\ea01\"; }\n.icarus-terminal-asteroid-base:before { content: \"\\ea02\"; }\n.icarus-terminal-atmosphere:before { content: \"\\ea03\"; }\n.icarus-terminal-barrel:before { content: \"\\ea04\"; }\n.icarus-terminal-cargo-buy:before { content: \"\\ea05\"; }\n.icarus-terminal-cargo-export:before { content: \"\\ea06\"; }\n.icarus-terminal-cargo-import:before { content: \"\\ea07\"; }\n.icarus-terminal-cargo-sell:before { content: \"\\ea08\"; }\n.icarus-terminal-cargo:before { content: \"\\ea09\"; }\n.icarus-terminal-chevron-down:before { content: \"\\ea0a\"; }\n.icarus-terminal-chevron-left:before { content: \"\\ea0b\"; }\n.icarus-terminal-chevron-right:before { content: \"\\ea0c\"; }\n.icarus-terminal-chevron-up:before { content: \"\\ea0d\"; }\n.icarus-terminal-cogs:before { content: \"\\ea0e\"; }\n.icarus-terminal-color-picker:before { content: \"\\ea0f\"; }\n.icarus-terminal-coriolis-starport:before { content: \"\\ea10\"; }\n.icarus-terminal-credits:before { content: \"\\ea11\"; }\n.icarus-terminal-direction-heading:before { content: \"\\ea12\"; }\n.icarus-terminal-dodec-starport:before { content: \"\\ea13\"; }\n.icarus-terminal-download:before { content: \"\\ea14\"; }\n.icarus-terminal-economy:before { content: \"\\ea15\"; }\n.icarus-terminal-engineer:before { content: \"\\ea16\"; }\n.icarus-terminal-engineering:before { content: \"\\ea17\"; }\n.icarus-terminal-exit:before { content: \"\\ea18\"; }\n.icarus-terminal-fleet-carrier-lg:before { content: \"\\ea19\"; }\n.icarus-terminal-fleet-carrier:before { content: \"\\ea1a\"; }\n.icarus-terminal-fuel:before { content: \"\\ea1b\"; }\n.icarus-terminal-fullscreen-exit:before { content: \"\\ea1c\"; }\n.icarus-terminal-fullscreen-window-exit:before { content: \"\\ea1d\"; }\n.icarus-terminal-fullscreen-window:before { content: \"\\ea1e\"; }\n.icarus-terminal-fullscreen:before { content: \"\\ea1f\"; }\n.icarus-terminal-help:before { content: \"\\ea20\"; }\n.icarus-terminal-home:before { content: \"\\ea21\"; }\n.icarus-terminal-info:before { content: \"\\ea22\"; }\n.icarus-terminal-inventory:before { content: \"\\ea23\"; }\n.icarus-terminal-location-filled:before { content: \"\\ea24\"; }\n.icarus-terminal-location:before { content: \"\\ea25\"; }\n.icarus-terminal-logo:before { content: \"\\ea26\"; }\n.icarus-terminal-materials-encoded:before { content: \"\\ea27\"; }\n.icarus-terminal-materials-grade-1:before { content: \"\\ea28\"; }\n.icarus-terminal-materials-grade-2:before { content: \"\\ea29\"; }\n.icarus-terminal-materials-grade-3:before { content: \"\\ea2a\"; }\n.icarus-terminal-materials-grade-4:before { content: \"\\ea2b\"; }\n.icarus-terminal-materials-grade-5:before { content: \"\\ea2c\"; }\n.icarus-terminal-materials-manufactured:before { content: \"\\ea2d\"; }\n.icarus-terminal-materials-raw:before { content: \"\\ea2e\"; }\n.icarus-terminal-materials-xeno:before { content: \"\\ea2f\"; }\n.icarus-terminal-materials:before { content: \"\\ea30\"; }\n.icarus-terminal-megaship-lg:before { content: \"\\ea31\"; }\n.icarus-terminal-megaship:before { content: \"\\ea32\"; }\n.icarus-terminal-menu:before { content: \"\\ea33\"; }\n.icarus-terminal-notifications-disabled:before { content: \"\\ea34\"; }\n.icarus-terminal-notifications:before { content: \"\\ea35\"; }\n.icarus-terminal-ocellus-starport:before { content: \"\\ea36\"; }\n.icarus-terminal-orbis-starport:before { content: \"\\ea37\"; }\n.icarus-terminal-outpost:before { content: \"\\ea38\"; }\n.icarus-terminal-pin-window:before { content: \"\\ea39\"; }\n.icarus-terminal-planet-ammonia-based-life:before { content: \"\\ea3a\"; }\n.icarus-terminal-planet-ammonia-world:before { content: \"\\ea3b\"; }\n.icarus-terminal-planet-atmosphere-landable:before { content: \"\\ea3c\"; }\n.icarus-terminal-planet-atmosphere:before { content: \"\\ea3d\"; }\n.icarus-terminal-planet-earthlike:before { content: \"\\ea3e\"; }\n.icarus-terminal-planet-empty:before { content: \"\\ea3f\"; }\n.icarus-terminal-planet-gas-giant:before { content: \"\\ea40\"; }\n.icarus-terminal-planet-high-metal-content:before { content: \"\\ea41\"; }\n.icarus-terminal-planet-high-value:before { content: \"\\ea42\"; }\n.icarus-terminal-planet-landable:before { content: \"\\ea43\"; }\n.icarus-terminal-planet-lander:before { content: \"\\ea44\"; }\n.icarus-terminal-planet-life:before { content: \"\\ea45\"; }\n.icarus-terminal-planet-ringed:before { content: \"\\ea46\"; }\n.icarus-terminal-planet-terraformable:before { content: \"\\ea47\"; }\n.icarus-terminal-planet-volcanic:before { content: \"\\ea48\"; }\n.icarus-terminal-planet-water-based-life:before { content: \"\\ea49\"; }\n.icarus-terminal-planet-water-world:before { content: \"\\ea4a\"; }\n.icarus-terminal-planet:before { content: \"\\ea4b\"; }\n.icarus-terminal-planetary-port-large:before { content: \"\\ea4c\"; }\n.icarus-terminal-planetary-port:before { content: \"\\ea4d\"; }\n.icarus-terminal-plant:before { content: \"\\ea4e\"; }\n.icarus-terminal-poi-empty:before { content: \"\\ea4f\"; }\n.icarus-terminal-poi:before { content: \"\\ea50\"; }\n.icarus-terminal-power:before { content: \"\\ea51\"; }\n.icarus-terminal-route:before { content: \"\\ea52\"; }\n.icarus-terminal-scan:before { content: \"\\ea53\"; }\n.icarus-terminal-search:before { content: \"\\ea54\"; }\n.icarus-terminal-settings:before { content: \"\\ea55\"; }\n.icarus-terminal-settlement:before { content: \"\\ea56\"; }\n.icarus-terminal-shield:before { content: \"\\ea57\"; }\n.icarus-terminal-ship:before { content: \"\\ea58\"; }\n.icarus-terminal-signal-even-bars:before { content: \"\\ea59\"; }\n.icarus-terminal-signal:before { content: \"\\ea5a\"; }\n.icarus-terminal-sound:before { content: \"\\ea5b\"; }\n.icarus-terminal-star:before { content: \"\\ea5c\"; }\n.icarus-terminal-sync:before { content: \"\\ea5d\"; }\n.icarus-terminal-system-authority-solid:before { content: \"\\ea5e\"; }\n.icarus-terminal-system-authority:before { content: \"\\ea5f\"; }\n.icarus-terminal-system-bodies:before { content: \"\\ea60\"; }\n.icarus-terminal-system-orbits:before { content: \"\\ea61\"; }\n.icarus-terminal-table-index:before { content: \"\\ea62\"; }\n.icarus-terminal-table-inspector:before { content: \"\\ea63\"; }\n.icarus-terminal-table-rows:before { content: \"\\ea64\"; }\n.icarus-terminal-trending-down-chart:before { content: \"\\ea65\"; }\n.icarus-terminal-trending-down:before { content: \"\\ea66\"; }\n.icarus-terminal-trending-steady-chart:before { content: \"\\ea67\"; }\n.icarus-terminal-trending-steady:before { content: \"\\ea68\"; }\n.icarus-terminal-trending-up-chart:before { content: \"\\ea69\"; }\n.icarus-terminal-trending-up:before { content: \"\\ea6a\"; }\n.icarus-terminal-triangle-up:before { content: \"\\ea6b\"; }\n.icarus-terminal-warning:before { content: \"\\ea6c\"; }\n.icarus-terminal-wrench:before { content: \"\\ea6d\"; }\n\n}"
  },
  {
    "path": "resources/assets/icon-font/icarus-terminal.scss",
    "content": "@font-face {font-family: \"icarus-terminal\";\n  src: url('icarus-terminal.eot?t=1764689807536'); /* IE9*/\n  src: url('icarus-terminal.eot?t=1764689807536#iefix') format('embedded-opentype'), /* IE6-IE8 */\n  url(\"icarus-terminal.woff2?t=1764689807536\") format(\"woff2\"),\n  url(\"icarus-terminal.woff?t=1764689807536\") format(\"woff\"),\n  url('icarus-terminal.ttf?t=1764689807536') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/\n  url('icarus-terminal.svg?t=1764689807536#icarus-terminal') format('svg'); /* iOS 4.1- */\n}\n\n[class^=\"icarus-terminal-\"], [class*=\" icarus-terminal-\"] {\n  font-family: 'icarus-terminal' !important;\n  font-size: 16px;\n  font-style:normal;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n.icarus-terminal-0_copy:before { content: \"\\ea01\"; }\n.icarus-terminal-asteroid-base:before { content: \"\\ea02\"; }\n.icarus-terminal-atmosphere:before { content: \"\\ea03\"; }\n.icarus-terminal-barrel:before { content: \"\\ea04\"; }\n.icarus-terminal-cargo-buy:before { content: \"\\ea05\"; }\n.icarus-terminal-cargo-export:before { content: \"\\ea06\"; }\n.icarus-terminal-cargo-import:before { content: \"\\ea07\"; }\n.icarus-terminal-cargo-sell:before { content: \"\\ea08\"; }\n.icarus-terminal-cargo:before { content: \"\\ea09\"; }\n.icarus-terminal-chevron-down:before { content: \"\\ea0a\"; }\n.icarus-terminal-chevron-left:before { content: \"\\ea0b\"; }\n.icarus-terminal-chevron-right:before { content: \"\\ea0c\"; }\n.icarus-terminal-chevron-up:before { content: \"\\ea0d\"; }\n.icarus-terminal-cogs:before { content: \"\\ea0e\"; }\n.icarus-terminal-color-picker:before { content: \"\\ea0f\"; }\n.icarus-terminal-coriolis-starport:before { content: \"\\ea10\"; }\n.icarus-terminal-credits:before { content: \"\\ea11\"; }\n.icarus-terminal-direction-heading:before { content: \"\\ea12\"; }\n.icarus-terminal-dodec-starport:before { content: \"\\ea13\"; }\n.icarus-terminal-download:before { content: \"\\ea14\"; }\n.icarus-terminal-economy:before { content: \"\\ea15\"; }\n.icarus-terminal-engineer:before { content: \"\\ea16\"; }\n.icarus-terminal-engineering:before { content: \"\\ea17\"; }\n.icarus-terminal-exit:before { content: \"\\ea18\"; }\n.icarus-terminal-fleet-carrier-lg:before { content: \"\\ea19\"; }\n.icarus-terminal-fleet-carrier:before { content: \"\\ea1a\"; }\n.icarus-terminal-fuel:before { content: \"\\ea1b\"; }\n.icarus-terminal-fullscreen-exit:before { content: \"\\ea1c\"; }\n.icarus-terminal-fullscreen-window-exit:before { content: \"\\ea1d\"; }\n.icarus-terminal-fullscreen-window:before { content: \"\\ea1e\"; }\n.icarus-terminal-fullscreen:before { content: \"\\ea1f\"; }\n.icarus-terminal-help:before { content: \"\\ea20\"; }\n.icarus-terminal-home:before { content: \"\\ea21\"; }\n.icarus-terminal-info:before { content: \"\\ea22\"; }\n.icarus-terminal-inventory:before { content: \"\\ea23\"; }\n.icarus-terminal-location-filled:before { content: \"\\ea24\"; }\n.icarus-terminal-location:before { content: \"\\ea25\"; }\n.icarus-terminal-logo:before { content: \"\\ea26\"; }\n.icarus-terminal-materials-encoded:before { content: \"\\ea27\"; }\n.icarus-terminal-materials-grade-1:before { content: \"\\ea28\"; }\n.icarus-terminal-materials-grade-2:before { content: \"\\ea29\"; }\n.icarus-terminal-materials-grade-3:before { content: \"\\ea2a\"; }\n.icarus-terminal-materials-grade-4:before { content: \"\\ea2b\"; }\n.icarus-terminal-materials-grade-5:before { content: \"\\ea2c\"; }\n.icarus-terminal-materials-manufactured:before { content: \"\\ea2d\"; }\n.icarus-terminal-materials-raw:before { content: \"\\ea2e\"; }\n.icarus-terminal-materials-xeno:before { content: \"\\ea2f\"; }\n.icarus-terminal-materials:before { content: \"\\ea30\"; }\n.icarus-terminal-megaship-lg:before { content: \"\\ea31\"; }\n.icarus-terminal-megaship:before { content: \"\\ea32\"; }\n.icarus-terminal-menu:before { content: \"\\ea33\"; }\n.icarus-terminal-notifications-disabled:before { content: \"\\ea34\"; }\n.icarus-terminal-notifications:before { content: \"\\ea35\"; }\n.icarus-terminal-ocellus-starport:before { content: \"\\ea36\"; }\n.icarus-terminal-orbis-starport:before { content: \"\\ea37\"; }\n.icarus-terminal-outpost:before { content: \"\\ea38\"; }\n.icarus-terminal-pin-window:before { content: \"\\ea39\"; }\n.icarus-terminal-planet-ammonia-based-life:before { content: \"\\ea3a\"; }\n.icarus-terminal-planet-ammonia-world:before { content: \"\\ea3b\"; }\n.icarus-terminal-planet-atmosphere-landable:before { content: \"\\ea3c\"; }\n.icarus-terminal-planet-atmosphere:before { content: \"\\ea3d\"; }\n.icarus-terminal-planet-earthlike:before { content: \"\\ea3e\"; }\n.icarus-terminal-planet-empty:before { content: \"\\ea3f\"; }\n.icarus-terminal-planet-gas-giant:before { content: \"\\ea40\"; }\n.icarus-terminal-planet-high-metal-content:before { content: \"\\ea41\"; }\n.icarus-terminal-planet-high-value:before { content: \"\\ea42\"; }\n.icarus-terminal-planet-landable:before { content: \"\\ea43\"; }\n.icarus-terminal-planet-lander:before { content: \"\\ea44\"; }\n.icarus-terminal-planet-life:before { content: \"\\ea45\"; }\n.icarus-terminal-planet-ringed:before { content: \"\\ea46\"; }\n.icarus-terminal-planet-terraformable:before { content: \"\\ea47\"; }\n.icarus-terminal-planet-volcanic:before { content: \"\\ea48\"; }\n.icarus-terminal-planet-water-based-life:before { content: \"\\ea49\"; }\n.icarus-terminal-planet-water-world:before { content: \"\\ea4a\"; }\n.icarus-terminal-planet:before { content: \"\\ea4b\"; }\n.icarus-terminal-planetary-port-large:before { content: \"\\ea4c\"; }\n.icarus-terminal-planetary-port:before { content: \"\\ea4d\"; }\n.icarus-terminal-plant:before { content: \"\\ea4e\"; }\n.icarus-terminal-poi-empty:before { content: \"\\ea4f\"; }\n.icarus-terminal-poi:before { content: \"\\ea50\"; }\n.icarus-terminal-power:before { content: \"\\ea51\"; }\n.icarus-terminal-route:before { content: \"\\ea52\"; }\n.icarus-terminal-scan:before { content: \"\\ea53\"; }\n.icarus-terminal-search:before { content: \"\\ea54\"; }\n.icarus-terminal-settings:before { content: \"\\ea55\"; }\n.icarus-terminal-settlement:before { content: \"\\ea56\"; }\n.icarus-terminal-shield:before { content: \"\\ea57\"; }\n.icarus-terminal-ship:before { content: \"\\ea58\"; }\n.icarus-terminal-signal-even-bars:before { content: \"\\ea59\"; }\n.icarus-terminal-signal:before { content: \"\\ea5a\"; }\n.icarus-terminal-sound:before { content: \"\\ea5b\"; }\n.icarus-terminal-star:before { content: \"\\ea5c\"; }\n.icarus-terminal-sync:before { content: \"\\ea5d\"; }\n.icarus-terminal-system-authority-solid:before { content: \"\\ea5e\"; }\n.icarus-terminal-system-authority:before { content: \"\\ea5f\"; }\n.icarus-terminal-system-bodies:before { content: \"\\ea60\"; }\n.icarus-terminal-system-orbits:before { content: \"\\ea61\"; }\n.icarus-terminal-table-index:before { content: \"\\ea62\"; }\n.icarus-terminal-table-inspector:before { content: \"\\ea63\"; }\n.icarus-terminal-table-rows:before { content: \"\\ea64\"; }\n.icarus-terminal-trending-down-chart:before { content: \"\\ea65\"; }\n.icarus-terminal-trending-down:before { content: \"\\ea66\"; }\n.icarus-terminal-trending-steady-chart:before { content: \"\\ea67\"; }\n.icarus-terminal-trending-steady:before { content: \"\\ea68\"; }\n.icarus-terminal-trending-up-chart:before { content: \"\\ea69\"; }\n.icarus-terminal-trending-up:before { content: \"\\ea6a\"; }\n.icarus-terminal-triangle-up:before { content: \"\\ea6b\"; }\n.icarus-terminal-warning:before { content: \"\\ea6c\"; }\n.icarus-terminal-wrench:before { content: \"\\ea6d\"; }\n\n$icarus-terminal-0_copy: \"\\ea01\";\n$icarus-terminal-asteroid-base: \"\\ea02\";\n$icarus-terminal-atmosphere: \"\\ea03\";\n$icarus-terminal-barrel: \"\\ea04\";\n$icarus-terminal-cargo-buy: \"\\ea05\";\n$icarus-terminal-cargo-export: \"\\ea06\";\n$icarus-terminal-cargo-import: \"\\ea07\";\n$icarus-terminal-cargo-sell: \"\\ea08\";\n$icarus-terminal-cargo: \"\\ea09\";\n$icarus-terminal-chevron-down: \"\\ea0a\";\n$icarus-terminal-chevron-left: \"\\ea0b\";\n$icarus-terminal-chevron-right: \"\\ea0c\";\n$icarus-terminal-chevron-up: \"\\ea0d\";\n$icarus-terminal-cogs: \"\\ea0e\";\n$icarus-terminal-color-picker: \"\\ea0f\";\n$icarus-terminal-coriolis-starport: \"\\ea10\";\n$icarus-terminal-credits: \"\\ea11\";\n$icarus-terminal-direction-heading: \"\\ea12\";\n$icarus-terminal-dodec-starport: \"\\ea13\";\n$icarus-terminal-download: \"\\ea14\";\n$icarus-terminal-economy: \"\\ea15\";\n$icarus-terminal-engineer: \"\\ea16\";\n$icarus-terminal-engineering: \"\\ea17\";\n$icarus-terminal-exit: \"\\ea18\";\n$icarus-terminal-fleet-carrier-lg: \"\\ea19\";\n$icarus-terminal-fleet-carrier: \"\\ea1a\";\n$icarus-terminal-fuel: \"\\ea1b\";\n$icarus-terminal-fullscreen-exit: \"\\ea1c\";\n$icarus-terminal-fullscreen-window-exit: \"\\ea1d\";\n$icarus-terminal-fullscreen-window: \"\\ea1e\";\n$icarus-terminal-fullscreen: \"\\ea1f\";\n$icarus-terminal-help: \"\\ea20\";\n$icarus-terminal-home: \"\\ea21\";\n$icarus-terminal-info: \"\\ea22\";\n$icarus-terminal-inventory: \"\\ea23\";\n$icarus-terminal-location-filled: \"\\ea24\";\n$icarus-terminal-location: \"\\ea25\";\n$icarus-terminal-logo: \"\\ea26\";\n$icarus-terminal-materials-encoded: \"\\ea27\";\n$icarus-terminal-materials-grade-1: \"\\ea28\";\n$icarus-terminal-materials-grade-2: \"\\ea29\";\n$icarus-terminal-materials-grade-3: \"\\ea2a\";\n$icarus-terminal-materials-grade-4: \"\\ea2b\";\n$icarus-terminal-materials-grade-5: \"\\ea2c\";\n$icarus-terminal-materials-manufactured: \"\\ea2d\";\n$icarus-terminal-materials-raw: \"\\ea2e\";\n$icarus-terminal-materials-xeno: \"\\ea2f\";\n$icarus-terminal-materials: \"\\ea30\";\n$icarus-terminal-megaship-lg: \"\\ea31\";\n$icarus-terminal-megaship: \"\\ea32\";\n$icarus-terminal-menu: \"\\ea33\";\n$icarus-terminal-notifications-disabled: \"\\ea34\";\n$icarus-terminal-notifications: \"\\ea35\";\n$icarus-terminal-ocellus-starport: \"\\ea36\";\n$icarus-terminal-orbis-starport: \"\\ea37\";\n$icarus-terminal-outpost: \"\\ea38\";\n$icarus-terminal-pin-window: \"\\ea39\";\n$icarus-terminal-planet-ammonia-based-life: \"\\ea3a\";\n$icarus-terminal-planet-ammonia-world: \"\\ea3b\";\n$icarus-terminal-planet-atmosphere-landable: \"\\ea3c\";\n$icarus-terminal-planet-atmosphere: \"\\ea3d\";\n$icarus-terminal-planet-earthlike: \"\\ea3e\";\n$icarus-terminal-planet-empty: \"\\ea3f\";\n$icarus-terminal-planet-gas-giant: \"\\ea40\";\n$icarus-terminal-planet-high-metal-content: \"\\ea41\";\n$icarus-terminal-planet-high-value: \"\\ea42\";\n$icarus-terminal-planet-landable: \"\\ea43\";\n$icarus-terminal-planet-lander: \"\\ea44\";\n$icarus-terminal-planet-life: \"\\ea45\";\n$icarus-terminal-planet-ringed: \"\\ea46\";\n$icarus-terminal-planet-terraformable: \"\\ea47\";\n$icarus-terminal-planet-volcanic: \"\\ea48\";\n$icarus-terminal-planet-water-based-life: \"\\ea49\";\n$icarus-terminal-planet-water-world: \"\\ea4a\";\n$icarus-terminal-planet: \"\\ea4b\";\n$icarus-terminal-planetary-port-large: \"\\ea4c\";\n$icarus-terminal-planetary-port: \"\\ea4d\";\n$icarus-terminal-plant: \"\\ea4e\";\n$icarus-terminal-poi-empty: \"\\ea4f\";\n$icarus-terminal-poi: \"\\ea50\";\n$icarus-terminal-power: \"\\ea51\";\n$icarus-terminal-route: \"\\ea52\";\n$icarus-terminal-scan: \"\\ea53\";\n$icarus-terminal-search: \"\\ea54\";\n$icarus-terminal-settings: \"\\ea55\";\n$icarus-terminal-settlement: \"\\ea56\";\n$icarus-terminal-shield: \"\\ea57\";\n$icarus-terminal-ship: \"\\ea58\";\n$icarus-terminal-signal-even-bars: \"\\ea59\";\n$icarus-terminal-signal: \"\\ea5a\";\n$icarus-terminal-sound: \"\\ea5b\";\n$icarus-terminal-star: \"\\ea5c\";\n$icarus-terminal-sync: \"\\ea5d\";\n$icarus-terminal-system-authority-solid: \"\\ea5e\";\n$icarus-terminal-system-authority: \"\\ea5f\";\n$icarus-terminal-system-bodies: \"\\ea60\";\n$icarus-terminal-system-orbits: \"\\ea61\";\n$icarus-terminal-table-index: \"\\ea62\";\n$icarus-terminal-table-inspector: \"\\ea63\";\n$icarus-terminal-table-rows: \"\\ea64\";\n$icarus-terminal-trending-down-chart: \"\\ea65\";\n$icarus-terminal-trending-down: \"\\ea66\";\n$icarus-terminal-trending-steady-chart: \"\\ea67\";\n$icarus-terminal-trending-steady: \"\\ea68\";\n$icarus-terminal-trending-up-chart: \"\\ea69\";\n$icarus-terminal-trending-up: \"\\ea6a\";\n$icarus-terminal-triangle-up: \"\\ea6b\";\n$icarus-terminal-warning: \"\\ea6c\";\n$icarus-terminal-wrench: \"\\ea6d\";\n\n"
  },
  {
    "path": "resources/assets/icon-font/icarus-terminal.styl",
    "content": "@font-face {font-family: \"icarus-terminal\";\n  src: url('icarus-terminal.eot?t=1764689807536'); /* IE9*/\n  src: url('icarus-terminal.eot?t=1764689807536#iefix') format('embedded-opentype'), /* IE6-IE8 */\n  url(\"icarus-terminal.woff2?t=1764689807536\") format(\"woff2\"),\n  url(\"icarus-terminal.woff?t=1764689807536\") format(\"woff\"),\n  url('icarus-terminal.ttf?t=1764689807536') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/\n  url('icarus-terminal.svg?t=1764689807536#icarus-terminal') format('svg'); /* iOS 4.1- */\n}\n\n[class^=\"icarus-terminal-\"], [class*=\" icarus-terminal-\"] {\n  font-family: 'icarus-terminal' !important;\n  font-size: 16px;\n  font-style:normal;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n.icarus-terminal-0_copy:before { content: \"\\ea01\"; }\n.icarus-terminal-asteroid-base:before { content: \"\\ea02\"; }\n.icarus-terminal-atmosphere:before { content: \"\\ea03\"; }\n.icarus-terminal-barrel:before { content: \"\\ea04\"; }\n.icarus-terminal-cargo-buy:before { content: \"\\ea05\"; }\n.icarus-terminal-cargo-export:before { content: \"\\ea06\"; }\n.icarus-terminal-cargo-import:before { content: \"\\ea07\"; }\n.icarus-terminal-cargo-sell:before { content: \"\\ea08\"; }\n.icarus-terminal-cargo:before { content: \"\\ea09\"; }\n.icarus-terminal-chevron-down:before { content: \"\\ea0a\"; }\n.icarus-terminal-chevron-left:before { content: \"\\ea0b\"; }\n.icarus-terminal-chevron-right:before { content: \"\\ea0c\"; }\n.icarus-terminal-chevron-up:before { content: \"\\ea0d\"; }\n.icarus-terminal-cogs:before { content: \"\\ea0e\"; }\n.icarus-terminal-color-picker:before { content: \"\\ea0f\"; }\n.icarus-terminal-coriolis-starport:before { content: \"\\ea10\"; }\n.icarus-terminal-credits:before { content: \"\\ea11\"; }\n.icarus-terminal-direction-heading:before { content: \"\\ea12\"; }\n.icarus-terminal-dodec-starport:before { content: \"\\ea13\"; }\n.icarus-terminal-download:before { content: \"\\ea14\"; }\n.icarus-terminal-economy:before { content: \"\\ea15\"; }\n.icarus-terminal-engineer:before { content: \"\\ea16\"; }\n.icarus-terminal-engineering:before { content: \"\\ea17\"; }\n.icarus-terminal-exit:before { content: \"\\ea18\"; }\n.icarus-terminal-fleet-carrier-lg:before { content: \"\\ea19\"; }\n.icarus-terminal-fleet-carrier:before { content: \"\\ea1a\"; }\n.icarus-terminal-fuel:before { content: \"\\ea1b\"; }\n.icarus-terminal-fullscreen-exit:before { content: \"\\ea1c\"; }\n.icarus-terminal-fullscreen-window-exit:before { content: \"\\ea1d\"; }\n.icarus-terminal-fullscreen-window:before { content: \"\\ea1e\"; }\n.icarus-terminal-fullscreen:before { content: \"\\ea1f\"; }\n.icarus-terminal-help:before { content: \"\\ea20\"; }\n.icarus-terminal-home:before { content: \"\\ea21\"; }\n.icarus-terminal-info:before { content: \"\\ea22\"; }\n.icarus-terminal-inventory:before { content: \"\\ea23\"; }\n.icarus-terminal-location-filled:before { content: \"\\ea24\"; }\n.icarus-terminal-location:before { content: \"\\ea25\"; }\n.icarus-terminal-logo:before { content: \"\\ea26\"; }\n.icarus-terminal-materials-encoded:before { content: \"\\ea27\"; }\n.icarus-terminal-materials-grade-1:before { content: \"\\ea28\"; }\n.icarus-terminal-materials-grade-2:before { content: \"\\ea29\"; }\n.icarus-terminal-materials-grade-3:before { content: \"\\ea2a\"; }\n.icarus-terminal-materials-grade-4:before { content: \"\\ea2b\"; }\n.icarus-terminal-materials-grade-5:before { content: \"\\ea2c\"; }\n.icarus-terminal-materials-manufactured:before { content: \"\\ea2d\"; }\n.icarus-terminal-materials-raw:before { content: \"\\ea2e\"; }\n.icarus-terminal-materials-xeno:before { content: \"\\ea2f\"; }\n.icarus-terminal-materials:before { content: \"\\ea30\"; }\n.icarus-terminal-megaship-lg:before { content: \"\\ea31\"; }\n.icarus-terminal-megaship:before { content: \"\\ea32\"; }\n.icarus-terminal-menu:before { content: \"\\ea33\"; }\n.icarus-terminal-notifications-disabled:before { content: \"\\ea34\"; }\n.icarus-terminal-notifications:before { content: \"\\ea35\"; }\n.icarus-terminal-ocellus-starport:before { content: \"\\ea36\"; }\n.icarus-terminal-orbis-starport:before { content: \"\\ea37\"; }\n.icarus-terminal-outpost:before { content: \"\\ea38\"; }\n.icarus-terminal-pin-window:before { content: \"\\ea39\"; }\n.icarus-terminal-planet-ammonia-based-life:before { content: \"\\ea3a\"; }\n.icarus-terminal-planet-ammonia-world:before { content: \"\\ea3b\"; }\n.icarus-terminal-planet-atmosphere-landable:before { content: \"\\ea3c\"; }\n.icarus-terminal-planet-atmosphere:before { content: \"\\ea3d\"; }\n.icarus-terminal-planet-earthlike:before { content: \"\\ea3e\"; }\n.icarus-terminal-planet-empty:before { content: \"\\ea3f\"; }\n.icarus-terminal-planet-gas-giant:before { content: \"\\ea40\"; }\n.icarus-terminal-planet-high-metal-content:before { content: \"\\ea41\"; }\n.icarus-terminal-planet-high-value:before { content: \"\\ea42\"; }\n.icarus-terminal-planet-landable:before { content: \"\\ea43\"; }\n.icarus-terminal-planet-lander:before { content: \"\\ea44\"; }\n.icarus-terminal-planet-life:before { content: \"\\ea45\"; }\n.icarus-terminal-planet-ringed:before { content: \"\\ea46\"; }\n.icarus-terminal-planet-terraformable:before { content: \"\\ea47\"; }\n.icarus-terminal-planet-volcanic:before { content: \"\\ea48\"; }\n.icarus-terminal-planet-water-based-life:before { content: \"\\ea49\"; }\n.icarus-terminal-planet-water-world:before { content: \"\\ea4a\"; }\n.icarus-terminal-planet:before { content: \"\\ea4b\"; }\n.icarus-terminal-planetary-port-large:before { content: \"\\ea4c\"; }\n.icarus-terminal-planetary-port:before { content: \"\\ea4d\"; }\n.icarus-terminal-plant:before { content: \"\\ea4e\"; }\n.icarus-terminal-poi-empty:before { content: \"\\ea4f\"; }\n.icarus-terminal-poi:before { content: \"\\ea50\"; }\n.icarus-terminal-power:before { content: \"\\ea51\"; }\n.icarus-terminal-route:before { content: \"\\ea52\"; }\n.icarus-terminal-scan:before { content: \"\\ea53\"; }\n.icarus-terminal-search:before { content: \"\\ea54\"; }\n.icarus-terminal-settings:before { content: \"\\ea55\"; }\n.icarus-terminal-settlement:before { content: \"\\ea56\"; }\n.icarus-terminal-shield:before { content: \"\\ea57\"; }\n.icarus-terminal-ship:before { content: \"\\ea58\"; }\n.icarus-terminal-signal-even-bars:before { content: \"\\ea59\"; }\n.icarus-terminal-signal:before { content: \"\\ea5a\"; }\n.icarus-terminal-sound:before { content: \"\\ea5b\"; }\n.icarus-terminal-star:before { content: \"\\ea5c\"; }\n.icarus-terminal-sync:before { content: \"\\ea5d\"; }\n.icarus-terminal-system-authority-solid:before { content: \"\\ea5e\"; }\n.icarus-terminal-system-authority:before { content: \"\\ea5f\"; }\n.icarus-terminal-system-bodies:before { content: \"\\ea60\"; }\n.icarus-terminal-system-orbits:before { content: \"\\ea61\"; }\n.icarus-terminal-table-index:before { content: \"\\ea62\"; }\n.icarus-terminal-table-inspector:before { content: \"\\ea63\"; }\n.icarus-terminal-table-rows:before { content: \"\\ea64\"; }\n.icarus-terminal-trending-down-chart:before { content: \"\\ea65\"; }\n.icarus-terminal-trending-down:before { content: \"\\ea66\"; }\n.icarus-terminal-trending-steady-chart:before { content: \"\\ea67\"; }\n.icarus-terminal-trending-steady:before { content: \"\\ea68\"; }\n.icarus-terminal-trending-up-chart:before { content: \"\\ea69\"; }\n.icarus-terminal-trending-up:before { content: \"\\ea6a\"; }\n.icarus-terminal-triangle-up:before { content: \"\\ea6b\"; }\n.icarus-terminal-warning:before { content: \"\\ea6c\"; }\n.icarus-terminal-wrench:before { content: \"\\ea6d\"; }\n"
  },
  {
    "path": "resources/assets/icon-font/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"UTF-8\">\n  <title>ICARUS Terminal Font</title>\n  <meta name=\"viewport\" content=\"width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no\">\n  \n  \n  \n  <link rel=\"stylesheet\" href=\"icarus-terminal.css\" />\n  \n  <style>\n    *{margin: 0;padding: 0;list-style: none;}\n    body { color: #696969; font: 12px/1.5 tahoma, arial, \\5b8b\\4f53, sans-serif; }\n    a { color: #333; text-decoration: underline; }\n    a:hover { color: rgb(9, 73, 209); }\n    .header { color: #333; text-align: center; padding: 80px 0 60px 0; min-height: 153px; font-size: 14px; }\n    .header .logo svg { height: 120px; width: 120px; }\n    .header h1 { font-size: 42px; padding: 26px 0 10px 0; }\n    .header sup {font-size: 14px; margin: 8px 0 0 8px; position: absolute; color: #7b7b7b; }\n    .info {\n      color: #999;\n      font-weight: normal;\n      max-width: 346px;\n      margin: 0 auto;\n      padding: 20px 0;\n      font-size: 14px;\n    }\n\n    .icons { max-width: 1190px; margin: 0 auto; }\n    .icons ul { text-align: center; }\n    .icons ul li {\n      vertical-align: top;\n      width: 120px;\n      display: inline-block;\n      text-align: center;\n      background-color: rgba(0,0,0,.02);\n      border-radius: 3px;\n      padding: 29px 0 10px 0;\n      margin-right: 10px;\n      margin-top: 10px;\n      transition: all 0.6s ease;\n    }\n    .icons ul li:hover { background-color: rgba(0,0,0,.06); }\n    .icons ul li:hover span { color: #3c75e4; opacity: 1; }\n    .icons ul li .unicode { color: #8c8c8c; opacity: 0.3; }\n    .icons ul li h4 {\n      font-weight: normal;\n      padding: 10px 0 5px 0;\n      display: block;\n      color: #8c8c8c;\n      font-size: 14px;\n      line-height: 12px;\n      opacity: 0.8;\n    }\n    .icons ul li:hover h4 { opacity: 1; }\n    .icons ul li svg { width: 24px; height: 24px; }\n    .icons ul li:hover { color: #3c75e4; }\n    .footer { text-align: center; padding: 10px 0 90px 0; }\n    .footer a { text-align: center; padding: 10px 0 90px 0; color: #696969;}\n    .footer a:hover { color: #0949d1; }\n    .links { text-align: center; padding: 50px 0 0 0; font-size: 14px; }\n    \n    .icons ul li.class-icon { font-size: 21px; line-height: 21px; padding-bottom: 20px; }\n    .icons ul li.class-icon p{ font-size: 12px; }\n    .icons ul li.class-icon [class^=\"icarus-terminal-\"]{ font-size: 26px; }\n    \n    \n    \n  </style>\n  \n</head>\n\n<body>\n  \n  <div class=\"header\">\n    \n    <h1>ICARUS Terminal Font<sup>0.22.0</sup></h1>\n    <div class=\"info\">\n      \n    </div>\n    <p>\n      \n    </p>\n  </div>\n  <div class=\"icons\">\n    <ul>\n      <li class=\"class-icon\"><i class=\"icarus-terminal-0_copy\"></i><p class=\"name\">0_copy</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-asteroid-base\"></i><p class=\"name\">asteroid-base</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-atmosphere\"></i><p class=\"name\">atmosphere</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-barrel\"></i><p class=\"name\">barrel</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-cargo-buy\"></i><p class=\"name\">cargo-buy</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-cargo-export\"></i><p class=\"name\">cargo-export</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-cargo-import\"></i><p class=\"name\">cargo-import</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-cargo-sell\"></i><p class=\"name\">cargo-sell</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-cargo\"></i><p class=\"name\">cargo</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-chevron-down\"></i><p class=\"name\">chevron-down</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-chevron-left\"></i><p class=\"name\">chevron-left</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-chevron-right\"></i><p class=\"name\">chevron-right</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-chevron-up\"></i><p class=\"name\">chevron-up</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-cogs\"></i><p class=\"name\">cogs</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-color-picker\"></i><p class=\"name\">color-picker</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-coriolis-starport\"></i><p class=\"name\">coriolis-starport</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-credits\"></i><p class=\"name\">credits</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-direction-heading\"></i><p class=\"name\">direction-heading</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-dodec-starport\"></i><p class=\"name\">dodec-starport</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-download\"></i><p class=\"name\">download</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-economy\"></i><p class=\"name\">economy</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-engineer\"></i><p class=\"name\">engineer</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-engineering\"></i><p class=\"name\">engineering</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-exit\"></i><p class=\"name\">exit</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-fleet-carrier-lg\"></i><p class=\"name\">fleet-carrier-lg</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-fleet-carrier\"></i><p class=\"name\">fleet-carrier</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-fuel\"></i><p class=\"name\">fuel</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-fullscreen-exit\"></i><p class=\"name\">fullscreen-exit</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-fullscreen-window-exit\"></i><p class=\"name\">fullscreen-window-exit</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-fullscreen-window\"></i><p class=\"name\">fullscreen-window</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-fullscreen\"></i><p class=\"name\">fullscreen</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-help\"></i><p class=\"name\">help</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-home\"></i><p class=\"name\">home</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-info\"></i><p class=\"name\">info</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-inventory\"></i><p class=\"name\">inventory</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-location-filled\"></i><p class=\"name\">location-filled</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-location\"></i><p class=\"name\">location</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-logo\"></i><p class=\"name\">logo</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-materials-encoded\"></i><p class=\"name\">materials-encoded</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-materials-grade-1\"></i><p class=\"name\">materials-grade-1</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-materials-grade-2\"></i><p class=\"name\">materials-grade-2</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-materials-grade-3\"></i><p class=\"name\">materials-grade-3</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-materials-grade-4\"></i><p class=\"name\">materials-grade-4</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-materials-grade-5\"></i><p class=\"name\">materials-grade-5</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-materials-manufactured\"></i><p class=\"name\">materials-manufactured</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-materials-raw\"></i><p class=\"name\">materials-raw</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-materials-xeno\"></i><p class=\"name\">materials-xeno</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-materials\"></i><p class=\"name\">materials</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-megaship-lg\"></i><p class=\"name\">megaship-lg</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-megaship\"></i><p class=\"name\">megaship</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-menu\"></i><p class=\"name\">menu</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-notifications-disabled\"></i><p class=\"name\">notifications-disabled</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-notifications\"></i><p class=\"name\">notifications</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-ocellus-starport\"></i><p class=\"name\">ocellus-starport</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-orbis-starport\"></i><p class=\"name\">orbis-starport</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-outpost\"></i><p class=\"name\">outpost</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-pin-window\"></i><p class=\"name\">pin-window</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-planet-ammonia-based-life\"></i><p class=\"name\">planet-ammonia-based-life</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-planet-ammonia-world\"></i><p class=\"name\">planet-ammonia-world</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-planet-atmosphere-landable\"></i><p class=\"name\">planet-atmosphere-landable</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-planet-atmosphere\"></i><p class=\"name\">planet-atmosphere</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-planet-earthlike\"></i><p class=\"name\">planet-earthlike</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-planet-empty\"></i><p class=\"name\">planet-empty</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-planet-gas-giant\"></i><p class=\"name\">planet-gas-giant</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-planet-high-metal-content\"></i><p class=\"name\">planet-high-metal-content</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-planet-high-value\"></i><p class=\"name\">planet-high-value</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-planet-landable\"></i><p class=\"name\">planet-landable</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-planet-lander\"></i><p class=\"name\">planet-lander</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-planet-life\"></i><p class=\"name\">planet-life</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-planet-ringed\"></i><p class=\"name\">planet-ringed</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-planet-terraformable\"></i><p class=\"name\">planet-terraformable</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-planet-volcanic\"></i><p class=\"name\">planet-volcanic</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-planet-water-based-life\"></i><p class=\"name\">planet-water-based-life</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-planet-water-world\"></i><p class=\"name\">planet-water-world</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-planet\"></i><p class=\"name\">planet</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-planetary-port-large\"></i><p class=\"name\">planetary-port-large</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-planetary-port\"></i><p class=\"name\">planetary-port</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-plant\"></i><p class=\"name\">plant</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-poi-empty\"></i><p class=\"name\">poi-empty</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-poi\"></i><p class=\"name\">poi</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-power\"></i><p class=\"name\">power</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-route\"></i><p class=\"name\">route</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-scan\"></i><p class=\"name\">scan</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-search\"></i><p class=\"name\">search</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-settings\"></i><p class=\"name\">settings</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-settlement\"></i><p class=\"name\">settlement</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-shield\"></i><p class=\"name\">shield</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-ship\"></i><p class=\"name\">ship</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-signal-even-bars\"></i><p class=\"name\">signal-even-bars</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-signal\"></i><p class=\"name\">signal</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-sound\"></i><p class=\"name\">sound</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-star\"></i><p class=\"name\">star</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-sync\"></i><p class=\"name\">sync</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-system-authority-solid\"></i><p class=\"name\">system-authority-solid</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-system-authority\"></i><p class=\"name\">system-authority</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-system-bodies\"></i><p class=\"name\">system-bodies</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-system-orbits\"></i><p class=\"name\">system-orbits</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-table-index\"></i><p class=\"name\">table-index</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-table-inspector\"></i><p class=\"name\">table-inspector</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-table-rows\"></i><p class=\"name\">table-rows</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-trending-down-chart\"></i><p class=\"name\">trending-down-chart</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-trending-down\"></i><p class=\"name\">trending-down</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-trending-steady-chart\"></i><p class=\"name\">trending-steady-chart</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-trending-steady\"></i><p class=\"name\">trending-steady</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-trending-up-chart\"></i><p class=\"name\">trending-up-chart</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-trending-up\"></i><p class=\"name\">trending-up</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-triangle-up\"></i><p class=\"name\">triangle-up</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-warning\"></i><p class=\"name\">warning</p></li><li class=\"class-icon\"><i class=\"icarus-terminal-wrench\"></i><p class=\"name\">wrench</p></li>\n    </ul>\n  </div>\n  <p class=\"links\">\n    \n  </p>\n  <div class=\"footer\">\n    \n    <div><a target=\"_blank\" href=\"https://github.com/jaywcjlove/svgtofont\">Created By svgtofont</a></div>\n  </div>\n</body>\n\n</html>"
  },
  {
    "path": "resources/assets/icon-font/symbol.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"UTF-8\">\n  <title>ICARUS Terminal Font</title>\n  <meta name=\"viewport\" content=\"width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no\">\n  \n  \n  \n  <style>\n    *{margin: 0;padding: 0;list-style: none;}\n    body { color: #696969; font: 12px/1.5 tahoma, arial, \\5b8b\\4f53, sans-serif; }\n    a { color: #333; text-decoration: underline; }\n    a:hover { color: rgb(9, 73, 209); }\n    .header { color: #333; text-align: center; padding: 80px 0 60px 0; min-height: 153px; font-size: 14px; }\n    .header .logo svg { height: 120px; width: 120px; }\n    .header h1 { font-size: 42px; padding: 26px 0 10px 0; }\n    .header sup {font-size: 14px; margin: 8px 0 0 8px; position: absolute; color: #7b7b7b; }\n    .info {\n      color: #999;\n      font-weight: normal;\n      max-width: 346px;\n      margin: 0 auto;\n      padding: 20px 0;\n      font-size: 14px;\n    }\n\n    .icons { max-width: 1190px; margin: 0 auto; }\n    .icons ul { text-align: center; }\n    .icons ul li {\n      vertical-align: top;\n      width: 120px;\n      display: inline-block;\n      text-align: center;\n      background-color: rgba(0,0,0,.02);\n      border-radius: 3px;\n      padding: 29px 0 10px 0;\n      margin-right: 10px;\n      margin-top: 10px;\n      transition: all 0.6s ease;\n    }\n    .icons ul li:hover { background-color: rgba(0,0,0,.06); }\n    .icons ul li:hover span { color: #3c75e4; opacity: 1; }\n    .icons ul li .unicode { color: #8c8c8c; opacity: 0.3; }\n    .icons ul li h4 {\n      font-weight: normal;\n      padding: 10px 0 5px 0;\n      display: block;\n      color: #8c8c8c;\n      font-size: 14px;\n      line-height: 12px;\n      opacity: 0.8;\n    }\n    .icons ul li:hover h4 { opacity: 1; }\n    .icons ul li svg { width: 24px; height: 24px; }\n    .icons ul li:hover { color: #3c75e4; }\n    .footer { text-align: center; padding: 10px 0 90px 0; }\n    .footer a { text-align: center; padding: 10px 0 90px 0; color: #696969;}\n    .footer a:hover { color: #0949d1; }\n    .links { text-align: center; padding: 50px 0 0 0; font-size: 14px; }\n    \n    \n    \n    .icons ul li.symbol {padding: 28px 10px 16px 10px; width: 100px;}\n    .icons ul li.symbol svg {width: 34px; height: 34px;}\n    .icons ul li.symbol h4 {font-size: 12px;}\n    \n  </style>\n  \n</head>\n\n<body>\n  \n  <div class=\"header\">\n    \n    <h1>ICARUS Terminal Font<sup>0.22.0</sup></h1>\n    <div class=\"info\">\n      \n    </div>\n    <p>\n      \n    </p>\n  </div>\n  <div class=\"icons\">\n    <ul>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-0_copy\"></use>\n          </svg>\n          <h4>icarus-terminal-0_copy</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-asteroid-base\"></use>\n          </svg>\n          <h4>icarus-terminal-asteroid-base</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-atmosphere\"></use>\n          </svg>\n          <h4>icarus-terminal-atmosphere</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-barrel\"></use>\n          </svg>\n          <h4>icarus-terminal-barrel</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-cargo-buy\"></use>\n          </svg>\n          <h4>icarus-terminal-cargo-buy</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-cargo-export\"></use>\n          </svg>\n          <h4>icarus-terminal-cargo-export</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-cargo-import\"></use>\n          </svg>\n          <h4>icarus-terminal-cargo-import</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-cargo-sell\"></use>\n          </svg>\n          <h4>icarus-terminal-cargo-sell</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-cargo\"></use>\n          </svg>\n          <h4>icarus-terminal-cargo</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-chevron-down\"></use>\n          </svg>\n          <h4>icarus-terminal-chevron-down</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-chevron-left\"></use>\n          </svg>\n          <h4>icarus-terminal-chevron-left</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-chevron-right\"></use>\n          </svg>\n          <h4>icarus-terminal-chevron-right</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-chevron-up\"></use>\n          </svg>\n          <h4>icarus-terminal-chevron-up</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-cogs\"></use>\n          </svg>\n          <h4>icarus-terminal-cogs</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-color-picker\"></use>\n          </svg>\n          <h4>icarus-terminal-color-picker</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-coriolis-starport\"></use>\n          </svg>\n          <h4>icarus-terminal-coriolis-starport</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-credits\"></use>\n          </svg>\n          <h4>icarus-terminal-credits</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-direction-heading\"></use>\n          </svg>\n          <h4>icarus-terminal-direction-heading</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-dodec-starport\"></use>\n          </svg>\n          <h4>icarus-terminal-dodec-starport</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-download\"></use>\n          </svg>\n          <h4>icarus-terminal-download</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-economy\"></use>\n          </svg>\n          <h4>icarus-terminal-economy</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-engineer\"></use>\n          </svg>\n          <h4>icarus-terminal-engineer</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-engineering\"></use>\n          </svg>\n          <h4>icarus-terminal-engineering</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-exit\"></use>\n          </svg>\n          <h4>icarus-terminal-exit</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-fleet-carrier-lg\"></use>\n          </svg>\n          <h4>icarus-terminal-fleet-carrier-lg</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-fleet-carrier\"></use>\n          </svg>\n          <h4>icarus-terminal-fleet-carrier</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-fuel\"></use>\n          </svg>\n          <h4>icarus-terminal-fuel</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-fullscreen-exit\"></use>\n          </svg>\n          <h4>icarus-terminal-fullscreen-exit</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-fullscreen-window-exit\"></use>\n          </svg>\n          <h4>icarus-terminal-fullscreen-window-exit</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-fullscreen-window\"></use>\n          </svg>\n          <h4>icarus-terminal-fullscreen-window</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-fullscreen\"></use>\n          </svg>\n          <h4>icarus-terminal-fullscreen</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-help\"></use>\n          </svg>\n          <h4>icarus-terminal-help</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-home\"></use>\n          </svg>\n          <h4>icarus-terminal-home</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-info\"></use>\n          </svg>\n          <h4>icarus-terminal-info</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-inventory\"></use>\n          </svg>\n          <h4>icarus-terminal-inventory</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-location-filled\"></use>\n          </svg>\n          <h4>icarus-terminal-location-filled</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-location\"></use>\n          </svg>\n          <h4>icarus-terminal-location</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-logo\"></use>\n          </svg>\n          <h4>icarus-terminal-logo</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-materials-encoded\"></use>\n          </svg>\n          <h4>icarus-terminal-materials-encoded</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-materials-grade-1\"></use>\n          </svg>\n          <h4>icarus-terminal-materials-grade-1</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-materials-grade-2\"></use>\n          </svg>\n          <h4>icarus-terminal-materials-grade-2</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-materials-grade-3\"></use>\n          </svg>\n          <h4>icarus-terminal-materials-grade-3</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-materials-grade-4\"></use>\n          </svg>\n          <h4>icarus-terminal-materials-grade-4</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-materials-grade-5\"></use>\n          </svg>\n          <h4>icarus-terminal-materials-grade-5</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-materials-manufactured\"></use>\n          </svg>\n          <h4>icarus-terminal-materials-manufactured</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-materials-raw\"></use>\n          </svg>\n          <h4>icarus-terminal-materials-raw</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-materials-xeno\"></use>\n          </svg>\n          <h4>icarus-terminal-materials-xeno</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-materials\"></use>\n          </svg>\n          <h4>icarus-terminal-materials</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-megaship-lg\"></use>\n          </svg>\n          <h4>icarus-terminal-megaship-lg</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-megaship\"></use>\n          </svg>\n          <h4>icarus-terminal-megaship</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-menu\"></use>\n          </svg>\n          <h4>icarus-terminal-menu</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-notifications-disabled\"></use>\n          </svg>\n          <h4>icarus-terminal-notifications-disabled</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-notifications\"></use>\n          </svg>\n          <h4>icarus-terminal-notifications</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-ocellus-starport\"></use>\n          </svg>\n          <h4>icarus-terminal-ocellus-starport</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-orbis-starport\"></use>\n          </svg>\n          <h4>icarus-terminal-orbis-starport</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-outpost\"></use>\n          </svg>\n          <h4>icarus-terminal-outpost</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-pin-window\"></use>\n          </svg>\n          <h4>icarus-terminal-pin-window</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-planet-ammonia-based-life\"></use>\n          </svg>\n          <h4>icarus-terminal-planet-ammonia-based-life</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-planet-ammonia-world\"></use>\n          </svg>\n          <h4>icarus-terminal-planet-ammonia-world</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-planet-atmosphere-landable\"></use>\n          </svg>\n          <h4>icarus-terminal-planet-atmosphere-landable</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-planet-atmosphere\"></use>\n          </svg>\n          <h4>icarus-terminal-planet-atmosphere</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-planet-earthlike\"></use>\n          </svg>\n          <h4>icarus-terminal-planet-earthlike</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-planet-empty\"></use>\n          </svg>\n          <h4>icarus-terminal-planet-empty</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-planet-gas-giant\"></use>\n          </svg>\n          <h4>icarus-terminal-planet-gas-giant</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-planet-high-metal-content\"></use>\n          </svg>\n          <h4>icarus-terminal-planet-high-metal-content</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-planet-high-value\"></use>\n          </svg>\n          <h4>icarus-terminal-planet-high-value</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-planet-landable\"></use>\n          </svg>\n          <h4>icarus-terminal-planet-landable</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-planet-lander\"></use>\n          </svg>\n          <h4>icarus-terminal-planet-lander</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-planet-life\"></use>\n          </svg>\n          <h4>icarus-terminal-planet-life</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-planet-ringed\"></use>\n          </svg>\n          <h4>icarus-terminal-planet-ringed</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-planet-terraformable\"></use>\n          </svg>\n          <h4>icarus-terminal-planet-terraformable</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-planet-volcanic\"></use>\n          </svg>\n          <h4>icarus-terminal-planet-volcanic</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-planet-water-based-life\"></use>\n          </svg>\n          <h4>icarus-terminal-planet-water-based-life</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-planet-water-world\"></use>\n          </svg>\n          <h4>icarus-terminal-planet-water-world</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-planet\"></use>\n          </svg>\n          <h4>icarus-terminal-planet</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-planetary-port-large\"></use>\n          </svg>\n          <h4>icarus-terminal-planetary-port-large</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-planetary-port\"></use>\n          </svg>\n          <h4>icarus-terminal-planetary-port</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-plant\"></use>\n          </svg>\n          <h4>icarus-terminal-plant</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-poi-empty\"></use>\n          </svg>\n          <h4>icarus-terminal-poi-empty</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-poi\"></use>\n          </svg>\n          <h4>icarus-terminal-poi</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-power\"></use>\n          </svg>\n          <h4>icarus-terminal-power</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-route\"></use>\n          </svg>\n          <h4>icarus-terminal-route</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-scan\"></use>\n          </svg>\n          <h4>icarus-terminal-scan</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-search\"></use>\n          </svg>\n          <h4>icarus-terminal-search</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-settings\"></use>\n          </svg>\n          <h4>icarus-terminal-settings</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-settlement\"></use>\n          </svg>\n          <h4>icarus-terminal-settlement</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-shield\"></use>\n          </svg>\n          <h4>icarus-terminal-shield</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-ship\"></use>\n          </svg>\n          <h4>icarus-terminal-ship</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-signal-even-bars\"></use>\n          </svg>\n          <h4>icarus-terminal-signal-even-bars</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-signal\"></use>\n          </svg>\n          <h4>icarus-terminal-signal</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-sound\"></use>\n          </svg>\n          <h4>icarus-terminal-sound</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-star\"></use>\n          </svg>\n          <h4>icarus-terminal-star</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-sync\"></use>\n          </svg>\n          <h4>icarus-terminal-sync</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-system-authority-solid\"></use>\n          </svg>\n          <h4>icarus-terminal-system-authority-solid</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-system-authority\"></use>\n          </svg>\n          <h4>icarus-terminal-system-authority</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-system-bodies\"></use>\n          </svg>\n          <h4>icarus-terminal-system-bodies</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-system-orbits\"></use>\n          </svg>\n          <h4>icarus-terminal-system-orbits</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-table-index\"></use>\n          </svg>\n          <h4>icarus-terminal-table-index</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-table-inspector\"></use>\n          </svg>\n          <h4>icarus-terminal-table-inspector</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-table-rows\"></use>\n          </svg>\n          <h4>icarus-terminal-table-rows</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-trending-down-chart\"></use>\n          </svg>\n          <h4>icarus-terminal-trending-down-chart</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-trending-down\"></use>\n          </svg>\n          <h4>icarus-terminal-trending-down</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-trending-steady-chart\"></use>\n          </svg>\n          <h4>icarus-terminal-trending-steady-chart</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-trending-steady\"></use>\n          </svg>\n          <h4>icarus-terminal-trending-steady</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-trending-up-chart\"></use>\n          </svg>\n          <h4>icarus-terminal-trending-up-chart</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-trending-up\"></use>\n          </svg>\n          <h4>icarus-terminal-trending-up</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-triangle-up\"></use>\n          </svg>\n          <h4>icarus-terminal-triangle-up</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-warning\"></use>\n          </svg>\n          <h4>icarus-terminal-warning</h4>\n        </li>\n      \n        <li class=\"symbol\">\n          <svg class=\"icon\" aria-hidden=\"true\">\n            <use xlink:href=\"icarus-terminal.symbol.svg#icarus-terminal-wrench\"></use>\n          </svg>\n          <h4>icarus-terminal-wrench</h4>\n        </li>\n      \n    </ul>\n  </div>\n  <p class=\"links\">\n    \n  </p>\n  <div class=\"footer\">\n    \n    <div><a target=\"_blank\" href=\"https://github.com/jaywcjlove/svgtofont\">Created By svgtofont</a></div>\n  </div>\n</body>\n\n</html>"
  },
  {
    "path": "resources/assets/icon-font/unicode.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"UTF-8\">\n  <title>ICARUS Terminal Font</title>\n  <meta name=\"viewport\" content=\"width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no\">\n  \n  \n  \n  <style>\n    *{margin: 0;padding: 0;list-style: none;}\n    body { color: #696969; font: 12px/1.5 tahoma, arial, \\5b8b\\4f53, sans-serif; }\n    a { color: #333; text-decoration: underline; }\n    a:hover { color: rgb(9, 73, 209); }\n    .header { color: #333; text-align: center; padding: 80px 0 60px 0; min-height: 153px; font-size: 14px; }\n    .header .logo svg { height: 120px; width: 120px; }\n    .header h1 { font-size: 42px; padding: 26px 0 10px 0; }\n    .header sup {font-size: 14px; margin: 8px 0 0 8px; position: absolute; color: #7b7b7b; }\n    .info {\n      color: #999;\n      font-weight: normal;\n      max-width: 346px;\n      margin: 0 auto;\n      padding: 20px 0;\n      font-size: 14px;\n    }\n\n    .icons { max-width: 1190px; margin: 0 auto; }\n    .icons ul { text-align: center; }\n    .icons ul li {\n      vertical-align: top;\n      width: 120px;\n      display: inline-block;\n      text-align: center;\n      background-color: rgba(0,0,0,.02);\n      border-radius: 3px;\n      padding: 29px 0 10px 0;\n      margin-right: 10px;\n      margin-top: 10px;\n      transition: all 0.6s ease;\n    }\n    .icons ul li:hover { background-color: rgba(0,0,0,.06); }\n    .icons ul li:hover span { color: #3c75e4; opacity: 1; }\n    .icons ul li .unicode { color: #8c8c8c; opacity: 0.3; }\n    .icons ul li h4 {\n      font-weight: normal;\n      padding: 10px 0 5px 0;\n      display: block;\n      color: #8c8c8c;\n      font-size: 14px;\n      line-height: 12px;\n      opacity: 0.8;\n    }\n    .icons ul li:hover h4 { opacity: 1; }\n    .icons ul li svg { width: 24px; height: 24px; }\n    .icons ul li:hover { color: #3c75e4; }\n    .footer { text-align: center; padding: 10px 0 90px 0; }\n    .footer a { text-align: center; padding: 10px 0 90px 0; color: #696969;}\n    .footer a:hover { color: #0949d1; }\n    .links { text-align: center; padding: 50px 0 0 0; font-size: 14px; }\n    \n    \n    .icons ul .unicode-icon span { display: block; }\n    .icons ul .unicode-icon h4 { font-size: 12px; }\n    @font-face {\n      font-family: \"icarus-terminal\";\n      src: url(\"icarus-terminal.eot\");\n      /* IE9*/\n      src: url(\"icarus-terminal.eot#iefix\") format(\"embedded-opentype\"),\n      /* IE6-IE8 */\n      url(\"icarus-terminal.woff2?1764689807568\") format(\"woff2\"),\n      url(\"icarus-terminal.woff?1764689807568\") format(\"woff\"),\n      /* chrome, firefox */\n      url(\"icarus-terminal.ttf?1764689807568\") format(\"truetype\"),\n      /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/\n      url(\"icarus-terminal.svg#icarus-terminal?1764689807568\") format(\"svg\");\n      /* iOS 4.1- */\n    }\n    .iconfont {\n      font-family: \"icarus-terminal\" !important;\n      font-size: 26px;\n      font-style: normal;\n      -webkit-font-smoothing: antialiased;\n      -webkit-text-stroke-width: 0.2px;\n      -moz-osx-font-smoothing: grayscale;\n    }\n    \n    \n  </style>\n  \n</head>\n\n<body>\n  \n  <div class=\"header\">\n    \n    <h1>ICARUS Terminal Font<sup>0.22.0</sup></h1>\n    <div class=\"info\">\n      \n    </div>\n    <p>\n      \n    </p>\n  </div>\n  <div class=\"icons\">\n    <ul>\n      <li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>0_copy</h4><span class=\"unicode\">&amp;#59905;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>asteroid-base</h4><span class=\"unicode\">&amp;#59906;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>atmosphere</h4><span class=\"unicode\">&amp;#59907;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>barrel</h4><span class=\"unicode\">&amp;#59908;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>cargo-buy</h4><span class=\"unicode\">&amp;#59909;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>cargo-export</h4><span class=\"unicode\">&amp;#59910;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>cargo-import</h4><span class=\"unicode\">&amp;#59911;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>cargo-sell</h4><span class=\"unicode\">&amp;#59912;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>cargo</h4><span class=\"unicode\">&amp;#59913;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>chevron-down</h4><span class=\"unicode\">&amp;#59914;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>chevron-left</h4><span class=\"unicode\">&amp;#59915;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>chevron-right</h4><span class=\"unicode\">&amp;#59916;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>chevron-up</h4><span class=\"unicode\">&amp;#59917;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>cogs</h4><span class=\"unicode\">&amp;#59918;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>color-picker</h4><span class=\"unicode\">&amp;#59919;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>coriolis-starport</h4><span class=\"unicode\">&amp;#59920;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>credits</h4><span class=\"unicode\">&amp;#59921;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>direction-heading</h4><span class=\"unicode\">&amp;#59922;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>dodec-starport</h4><span class=\"unicode\">&amp;#59923;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>download</h4><span class=\"unicode\">&amp;#59924;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>economy</h4><span class=\"unicode\">&amp;#59925;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>engineer</h4><span class=\"unicode\">&amp;#59926;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>engineering</h4><span class=\"unicode\">&amp;#59927;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>exit</h4><span class=\"unicode\">&amp;#59928;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>fleet-carrier-lg</h4><span class=\"unicode\">&amp;#59929;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>fleet-carrier</h4><span class=\"unicode\">&amp;#59930;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>fuel</h4><span class=\"unicode\">&amp;#59931;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>fullscreen-exit</h4><span class=\"unicode\">&amp;#59932;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>fullscreen-window-exit</h4><span class=\"unicode\">&amp;#59933;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>fullscreen-window</h4><span class=\"unicode\">&amp;#59934;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>fullscreen</h4><span class=\"unicode\">&amp;#59935;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>help</h4><span class=\"unicode\">&amp;#59936;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>home</h4><span class=\"unicode\">&amp;#59937;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>info</h4><span class=\"unicode\">&amp;#59938;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>inventory</h4><span class=\"unicode\">&amp;#59939;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>location-filled</h4><span class=\"unicode\">&amp;#59940;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>location</h4><span class=\"unicode\">&amp;#59941;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>logo</h4><span class=\"unicode\">&amp;#59942;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>materials-encoded</h4><span class=\"unicode\">&amp;#59943;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>materials-grade-1</h4><span class=\"unicode\">&amp;#59944;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>materials-grade-2</h4><span class=\"unicode\">&amp;#59945;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>materials-grade-3</h4><span class=\"unicode\">&amp;#59946;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>materials-grade-4</h4><span class=\"unicode\">&amp;#59947;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>materials-grade-5</h4><span class=\"unicode\">&amp;#59948;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>materials-manufactured</h4><span class=\"unicode\">&amp;#59949;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>materials-raw</h4><span class=\"unicode\">&amp;#59950;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>materials-xeno</h4><span class=\"unicode\">&amp;#59951;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>materials</h4><span class=\"unicode\">&amp;#59952;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>megaship-lg</h4><span class=\"unicode\">&amp;#59953;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>megaship</h4><span class=\"unicode\">&amp;#59954;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>menu</h4><span class=\"unicode\">&amp;#59955;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>notifications-disabled</h4><span class=\"unicode\">&amp;#59956;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>notifications</h4><span class=\"unicode\">&amp;#59957;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>ocellus-starport</h4><span class=\"unicode\">&amp;#59958;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>orbis-starport</h4><span class=\"unicode\">&amp;#59959;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>outpost</h4><span class=\"unicode\">&amp;#59960;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>pin-window</h4><span class=\"unicode\">&amp;#59961;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>planet-ammonia-based-life</h4><span class=\"unicode\">&amp;#59962;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>planet-ammonia-world</h4><span class=\"unicode\">&amp;#59963;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>planet-atmosphere-landable</h4><span class=\"unicode\">&amp;#59964;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>planet-atmosphere</h4><span class=\"unicode\">&amp;#59965;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>planet-earthlike</h4><span class=\"unicode\">&amp;#59966;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>planet-empty</h4><span class=\"unicode\">&amp;#59967;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>planet-gas-giant</h4><span class=\"unicode\">&amp;#59968;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>planet-high-metal-content</h4><span class=\"unicode\">&amp;#59969;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>planet-high-value</h4><span class=\"unicode\">&amp;#59970;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>planet-landable</h4><span class=\"unicode\">&amp;#59971;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>planet-lander</h4><span class=\"unicode\">&amp;#59972;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>planet-life</h4><span class=\"unicode\">&amp;#59973;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>planet-ringed</h4><span class=\"unicode\">&amp;#59974;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>planet-terraformable</h4><span class=\"unicode\">&amp;#59975;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>planet-volcanic</h4><span class=\"unicode\">&amp;#59976;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>planet-water-based-life</h4><span class=\"unicode\">&amp;#59977;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>planet-water-world</h4><span class=\"unicode\">&amp;#59978;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>planet</h4><span class=\"unicode\">&amp;#59979;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>planetary-port-large</h4><span class=\"unicode\">&amp;#59980;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>planetary-port</h4><span class=\"unicode\">&amp;#59981;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>plant</h4><span class=\"unicode\">&amp;#59982;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>poi-empty</h4><span class=\"unicode\">&amp;#59983;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>poi</h4><span class=\"unicode\">&amp;#59984;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>power</h4><span class=\"unicode\">&amp;#59985;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>route</h4><span class=\"unicode\">&amp;#59986;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>scan</h4><span class=\"unicode\">&amp;#59987;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>search</h4><span class=\"unicode\">&amp;#59988;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>settings</h4><span class=\"unicode\">&amp;#59989;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>settlement</h4><span class=\"unicode\">&amp;#59990;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>shield</h4><span class=\"unicode\">&amp;#59991;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>ship</h4><span class=\"unicode\">&amp;#59992;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>signal-even-bars</h4><span class=\"unicode\">&amp;#59993;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>signal</h4><span class=\"unicode\">&amp;#59994;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>sound</h4><span class=\"unicode\">&amp;#59995;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>star</h4><span class=\"unicode\">&amp;#59996;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>sync</h4><span class=\"unicode\">&amp;#59997;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>system-authority-solid</h4><span class=\"unicode\">&amp;#59998;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>system-authority</h4><span class=\"unicode\">&amp;#59999;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>system-bodies</h4><span class=\"unicode\">&amp;#60000;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>system-orbits</h4><span class=\"unicode\">&amp;#60001;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>table-index</h4><span class=\"unicode\">&amp;#60002;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>table-inspector</h4><span class=\"unicode\">&amp;#60003;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>table-rows</h4><span class=\"unicode\">&amp;#60004;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>trending-down-chart</h4><span class=\"unicode\">&amp;#60005;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>trending-down</h4><span class=\"unicode\">&amp;#60006;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>trending-steady-chart</h4><span class=\"unicode\">&amp;#60007;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>trending-steady</h4><span class=\"unicode\">&amp;#60008;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>trending-up-chart</h4><span class=\"unicode\">&amp;#60009;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>trending-up</h4><span class=\"unicode\">&amp;#60010;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>triangle-up</h4><span class=\"unicode\">&amp;#60011;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>warning</h4><span class=\"unicode\">&amp;#60012;</span></li><li class=\"unicode-icon\"><span class=\"iconfont\"></span><h4>wrench</h4><span class=\"unicode\">&amp;#60013;</span></li>\n    </ul>\n  </div>\n  <p class=\"links\">\n    \n  </p>\n  <div class=\"footer\">\n    \n    <div><a target=\"_blank\" href=\"https://github.com/jaywcjlove/svgtofont\">Created By svgtofont</a></div>\n  </div>\n</body>\n\n</html>"
  },
  {
    "path": "resources/assets/icon-manifest.json",
    "content": "\n{\n  \"icons\": [\n    {\n      \"src\": \"/icons/icon-16x16.png\",\n      \"sizes\": \"16x16\",\n      \"type\": \"image/png\",\n      \"purpose\": \"any\"\n    },\n    {\n      \"src\": \"/icons/icon-24x24.png\",\n      \"sizes\": \"24x24\",\n      \"type\": \"image/png\",\n      \"purpose\": \"any\"\n    },\n    {\n      \"src\": \"/icons/icon-32x32.png\",\n      \"sizes\": \"32x32\",\n      \"type\": \"image/png\",\n      \"purpose\": \"any\"\n    },\n    {\n      \"src\": \"/icons/icon-48x48.png\",\n      \"sizes\": \"48x48\",\n      \"type\": \"image/png\",\n      \"purpose\": \"any\"\n    },\n    {\n      \"src\": \"/icons/icon-64x64.png\",\n      \"sizes\": \"64x64\",\n      \"type\": \"image/png\",\n      \"purpose\": \"any\"\n    },\n    {\n      \"src\": \"/icons/icon-128x128.png\",\n      \"sizes\": \"128x128\",\n      \"type\": \"image/png\",\n      \"purpose\": \"any\"\n    },\n    {\n      \"src\": \"/icons/icon-180x180.png\",\n      \"sizes\": \"180x180\",\n      \"type\": \"image/png\",\n      \"purpose\": \"any\"\n    },\n    {\n      \"src\": \"/icons/icon-192x192.png\",\n      \"sizes\": \"192x192\",\n      \"type\": \"image/png\",\n      \"purpose\": \"any\"\n    },\n    {\n      \"src\": \"/icons/icon-256x256.png\",\n      \"sizes\": \"256x256\",\n      \"type\": \"image/png\",\n      \"purpose\": \"any\"\n    },\n    {\n      \"src\": \"/icons/icon-512x512.png\",\n      \"sizes\": \"512x512\",\n      \"type\": \"image/png\",\n      \"purpose\": \"any\"\n    }\n  ]\n}"
  },
  {
    "path": "resources/data/ardent/commodities.json",
    "content": "{\n  \"advancedcatalysers\": {\n    \"id\": \"128049231\",\n    \"symbol\": \"AdvancedCatalysers\",\n    \"category\": \"Technology\",\n    \"name\": \"Advanced Catalysers\",\n    \"description\": \"Engineered catalysing agents, used by refineries to improve the efficiency of a large number of chemical reactions.\"\n  },\n  \"advancedmedicines\": {\n    \"id\": \"128682046\",\n    \"symbol\": \"AdvancedMedicines\",\n    \"category\": \"Medicines\",\n    \"name\": \"Advanced Medicines\",\n    \"description\": \"These medicines are specially tailored to counteract the most virulent of diseases, whilst causing minimum damage to the host.\"\n  },\n  \"advert1\": {\n    \"id\": \"128671119\",\n    \"symbol\": \"Advert1\",\n    \"market_id\": \"3227172352\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Ultra-Compact Processor Prototypes\",\n    \"limit\": 1,\n    \"rare\": true,\n    \"description\": \"These new processor prototypes have already demonstrated their versatility and capability. The combination of organic and nano fabrication makes them difficult to manufacture.\"\n  },\n  \"aerialedenapple\": {\n    \"id\": \"128667055\",\n    \"symbol\": \"AerialEdenApple\",\n    \"market_id\": \"128083448\",\n    \"category\": \"Foods\",\n    \"name\": \"Eden Apples of Aerial\",\n    \"limit\": 15,\n    \"rare\": true,\n    \"description\": \"A native plant that bears fruit resembling an apple with a silver lustre. Originally inedible, but through genetic modification the neurotoxins have been stripped away leaving what is now seen as a delicacy.\"\n  },\n  \"aganipperush\": {\n    \"id\": \"128667068\",\n    \"symbol\": \"AganippeRush\",\n    \"market_id\": \"128012800\",\n    \"category\": \"Medicines\",\n    \"name\": \"Aganippe Rush\",\n    \"limit\": 10,\n    \"rare\": true,\n    \"description\": \"A neurological stimulant only available in Aganippe. Often used to temporarily increase the user's memory retention and awareness, it is a favourite among students and scholars. Recent reports have revealed that excessive use and abuse of the compound has been linked with psychotic episodes and hallucinations.\"\n  },\n  \"agriculturalmedicines\": {\n    \"id\": \"128049208\",\n    \"symbol\": \"AgriculturalMedicines\",\n    \"category\": \"Medicines\",\n    \"name\": \"Agri-Medicines\",\n    \"description\": \"A range of engineered substances created to prevent or treat common diseases and ailments among livestock and fisheries. These are produced on High Tech worlds and consumed in Agricultural worlds.\"\n  },\n  \"agronomictreatment\": {\n    \"id\": \"128924334\",\n    \"symbol\": \"AgronomicTreatment\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Agronomic Treatment\",\n    \"description\": \"This material has been specifically engineered to revive plants affected by contaminants.\"\n  },\n  \"airelics\": {\n    \"id\": \"128668548\",\n    \"symbol\": \"AiRelics\",\n    \"category\": \"Salvage\",\n    \"name\": \"AI Relics\",\n    \"description\": \"A collection of highly illegal AI remnants. These items are of extreme interest to various shady organisations and remote cults. Their almost mythical status has led to a huge amount of counterfeiting, further inflating the value of items with a clear and proven history. It is uncertain whether any of these pieces actually retain the AI personality that was originally present within.\"\n  },\n  \"alacarakmoskinart\": {\n    \"id\": \"128667036\",\n    \"symbol\": \"AlacarakmoSkinArt\",\n    \"market_id\": \"3231373824\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Alacarakmo Skin Art\",\n    \"limit\": 24,\n    \"rare\": true,\n    \"description\": \"Micro thin sheets that are absorbed into the skin. A mixture of bio engineering and microelectronics allow the user to program art on their skin that reacts to their surroundings and mood. The Body Decor company of Alacarakmo has specialised in this for hundreds of years.\"\n  },\n  \"albinoquechuamammoth\": {\n    \"id\": \"128667020\",\n    \"symbol\": \"AlbinoQuechuaMammoth\",\n    \"market_id\": \"3222822912\",\n    \"category\": \"Foods\",\n    \"name\": \"Albino Quechua Mammoth Meat\",\n    \"limit\": 10,\n    \"rare\": true,\n    \"description\": \"Specially adapted to the cold climate, these enormous animals, originally created from modified genetic material from ancient Earth, are now flourishing on Quechua. The albino form has been encouraged to dominance due to the tenderness of their flesh.\"\n  },\n  \"alexandrite\": {\n    \"id\": \"128924331\",\n    \"symbol\": \"Alexandrite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Alexandrite\",\n    \"description\": \"Alexandrite is a form of chrysoberyl characterised by the fact that it exhibits different colours when viewed from different angles and under different light conditions.\"\n  },\n  \"algae\": {\n    \"id\": \"128049177\",\n    \"symbol\": \"Algae\",\n    \"category\": \"Foods\",\n    \"name\": \"Algae\",\n    \"description\": \"Algae are a range of biological organisms grown in water. Considered edible and often locally produced to sustain life in many poorer outposts. Usually commercially processed to provide more appetising food stuffs as a constituent of food cartridges for 'chefs' (cheap 3D food printers).\"\n  },\n  \"alieneggs\": {\n    \"id\": \"128667717\",\n    \"symbol\": \"AlienEggs\",\n    \"market_id\": \"128164088\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Leathery Eggs\",\n    \"limit\": 1,\n    \"rare\": true,\n    \"description\": \"Advertised as genuine fossilised xeno ovum, scientists were quickly able to show that the eggs traded are actually the product of a team of highly talented prop designers. For some collectors, owning one of these eggs is their top priority, with all other priorities rescinded.\"\n  },\n  \"altairianskin\": {\n    \"id\": \"128667700\",\n    \"symbol\": \"AltairianSkin\",\n    \"market_id\": \"128151032\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Altairian Skin\",\n    \"limit\": 42,\n    \"rare\": true,\n    \"description\": \"A small colony of brightly coloured micro-organisms form a mesmerising, ever changing fashion statement. Capable of self-sustaining, the colony will feed on dirt and skin flakes, keeping the wearer clean and healthy. When mature, the micro-organisms lose their bright colors and excrete a heady natural perfume.\"\n  },\n  \"aluminium\": {\n    \"id\": \"128049176\",\n    \"symbol\": \"Aluminium\",\n    \"category\": \"Metals\",\n    \"name\": \"Aluminium\",\n    \"description\": \"Aluminium, Al, atomic number 13. Melting point 933K. A silvery-white ductile metal that is regularly used by many industries in alloys for its lightness and strength.\"\n  },\n  \"alyabodilysoap\": {\n    \"id\": \"128667718\",\n    \"symbol\": \"AlyaBodilySoap\",\n    \"market_id\": \"3221638400\",\n    \"category\": \"Medicines\",\n    \"name\": \"Alya Body Soap\",\n    \"limit\": 16,\n    \"rare\": true,\n    \"description\": \"Guaranteed to give a cleaner you. The deep cleansing action works both inside and out, with this fully digestible soap! Rumoured to be made from Human fat.\"\n  },\n  \"ancientcasket\": {\n    \"id\": \"128732185\",\n    \"symbol\": \"AncientCasket\",\n    \"category\": \"Salvage\",\n    \"name\": \"Guardian Casket\",\n    \"description\": \"A stone casket created several million years ago by the Guardians, an extinct nonhuman civilisation.\"\n  },\n  \"ancientkey\": {\n    \"id\": \"128888499\",\n    \"symbol\": \"AncientKey\",\n    \"category\": \"Salvage\",\n    \"name\": \"Ancient Key\",\n    \"description\": \"A crystalline artefact recovered from a Guardian beacon.\"\n  },\n  \"ancientorb\": {\n    \"id\": \"128732184\",\n    \"symbol\": \"AncientOrb\",\n    \"category\": \"Salvage\",\n    \"name\": \"Guardian Orb\",\n    \"description\": \"A mechanical device created several million years ago by the Guardians, an extinct nonhuman civilisation.\"\n  },\n  \"ancientrelic\": {\n    \"id\": \"128732183\",\n    \"symbol\": \"AncientRelic\",\n    \"category\": \"Salvage\",\n    \"name\": \"Guardian Relic\",\n    \"description\": \"An artefact created several million years ago by the Guardians, an extinct nonhuman civilisation.\"\n  },\n  \"ancienttablet\": {\n    \"id\": \"128732186\",\n    \"symbol\": \"AncientTablet\",\n    \"category\": \"Salvage\",\n    \"name\": \"Guardian Tablet\",\n    \"description\": \"A tablet, engraved with runes, created several million years ago by the Guardians.\"\n  },\n  \"ancienttotem\": {\n    \"id\": \"128732188\",\n    \"symbol\": \"AncientTotem\",\n    \"category\": \"Salvage\",\n    \"name\": \"Guardian Totem\",\n    \"description\": \"A statue created several million years ago by the Guardians, an extinct nonhuman civilisation.\"\n  },\n  \"ancienturn\": {\n    \"id\": \"128732187\",\n    \"symbol\": \"AncientUrn\",\n    \"category\": \"Salvage\",\n    \"name\": \"Guardian Urn\",\n    \"description\": \"A sealed container created several million years ago by the Guardians, an extinct nonhuman civilisation.\"\n  },\n  \"anduligafireworks\": {\n    \"id\": \"128667673\",\n    \"symbol\": \"AnduligaFireWorks\",\n    \"market_id\": \"3230243584\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Anduliga Fire Works\",\n    \"limit\": 16,\n    \"rare\": true,\n    \"description\": \"For earth shattering displays that will blow your mind. Perfect for atmospheric use, or deployed from orbit! Official suppliers to the Imperial Family.\"\n  },\n  \"animaleffigies\": {\n    \"id\": \"128727921\",\n    \"symbol\": \"AnimalEffigies\",\n    \"market_id\": \"3228463360\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Crom Silver Fesh\",\n    \"limit\": 17,\n    \"rare\": true,\n    \"description\": \"A variant of the synthetic psychoactive drug based on a closely guarded secret recipe. While active, it causes the user to lock their teeth together and rapidly exhale, a reaction that led to its street name, Fesh. This variant was created from a stolen recipe for Wolf 1301 Fesh and is the closest Fesh variant in terms of quality to the original. Banned in most jurisdictions.\"\n  },\n  \"animalmeat\": {\n    \"id\": \"128049182\",\n    \"symbol\": \"Animalmeat\",\n    \"category\": \"Foods\",\n    \"name\": \"Animal Meat\",\n    \"description\": \"Flesh - and other elements - harvested from a vast selection of once-living creatures. In many places a luxury item with some ceremonial importance. Illegal in some jurisdictions.\"\n  },\n  \"animalmonitors\": {\n    \"id\": \"128049229\",\n    \"symbol\": \"AnimalMonitors\",\n    \"category\": \"Technology\",\n    \"name\": \"Animal Monitors\",\n    \"description\": \"A bio-electronic suite of sensor systems and analysis software, easily adapted to monitor a wide variety of organic species.\"\n  },\n  \"antimattercontainmentunit\": {\n    \"id\": \"128682053\",\n    \"symbol\": \"AntimatterContainmentUnit\",\n    \"category\": \"Salvage\",\n    \"name\": \"Antimatter Containment Unit\",\n    \"description\": \"This containment unit safely stores antimatter protecting it from gamma radiation and interaction with standard matter.\"\n  },\n  \"antiquejewellery\": {\n    \"id\": \"128672159\",\n    \"symbol\": \"AntiqueJewellery\",\n    \"category\": \"Salvage\",\n    \"name\": \"Antique Jewellery\",\n    \"description\": \"A treasure trove of exquisite antique jewellery. These often contain very rare, and very valuable, pieces.\"\n  },\n  \"antiquities\": {\n    \"id\": \"128668551\",\n    \"symbol\": \"Antiquities\",\n    \"category\": \"Salvage\",\n    \"name\": \"Antiquities\",\n    \"description\": \"A collection of priceless artefacts. Such objects are often invested with great cultural and historical value. Removal of antiquities from their original sites is generally considered a crime. The legal extraction of antiquities can only occur when the relevant permit has been granted by the local authorities.\"\n  },\n  \"anynacoffee\": {\n    \"id\": \"128667041\",\n    \"symbol\": \"AnyNaCoffee\",\n    \"market_id\": \"3229880064\",\n    \"category\": \"Foods\",\n    \"name\": \"Any Na Coffee\",\n    \"limit\": 11,\n    \"rare\": true,\n    \"description\": \"Once sneered at as a cheap substitute, this product has gained cult status from its overly thick texture and bitter flavour from the roots and herbs that it is made of. It is an acquired taste that now appeals to the Bohemian set.\"\n  },\n  \"apavietii\": {\n    \"id\": \"128958679\",\n    \"symbol\": \"ApaVietii\",\n    \"market_id\": \"128958681\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Apa Vietii\",\n    \"limit\": 11,\n    \"rare\": true,\n    \"description\": \"A unique alcoholic spirit distilled by the crew of The Golconda, an ancient generation ship.\"\n  },\n  \"aquaponicsystems\": {\n    \"id\": \"128049230\",\n    \"symbol\": \"AquaponicSystems\",\n    \"category\": \"Technology\",\n    \"name\": \"Aquaponic Systems\",\n    \"description\": \"An automated system to monitor and sustain nutritional and chemical balance levels of a confined marine ecosystem using targeted chemical and microbial filtration, and the spares and consumables required.\"\n  },\n  \"aroucaconventualsweets\": {\n    \"id\": \"128667705\",\n    \"symbol\": \"AroucaConventualSweets\",\n    \"market_id\": \"128098040\",\n    \"category\": \"Foods\",\n    \"name\": \"Arouca Conventual Sweets\",\n    \"limit\": 18,\n    \"rare\": true,\n    \"description\": \"The monastic orders of Arouca live a secluded and peaceful life producing, among other things, a limited range of Conventual sweets. Each come with a personalised blessing.\"\n  },\n  \"articulationmotors\": {\n    \"id\": \"128673859\",\n    \"symbol\": \"ArticulationMotors\",\n    \"category\": \"Machinery\",\n    \"name\": \"Articulation Motors\",\n    \"description\": \"Articulation motors are used to move components with devices.\"\n  },\n  \"assaultplans\": {\n    \"id\": \"128672129\",\n    \"symbol\": \"AssaultPlans\",\n    \"category\": \"Salvage\",\n    \"name\": \"Assault Plans\",\n    \"description\": \"Encrypted resources and documentation for secret attack plans. Possession of such documents is illegal as its possession implicates those transporting the information. There is a limited black market demand for these items.\"\n  },\n  \"atmosphericextractors\": {\n    \"id\": \"128064028\",\n    \"symbol\": \"AtmosphericExtractors\",\n    \"category\": \"Machinery\",\n    \"name\": \"Atmospheric Processors\",\n    \"description\": \"Components and consumables for atmospheric processors. These are large installations, usually with a high power output reactor at its core, used to process and stabilise breathable planetary atmospheres, especially on terraformed worlds.\"\n  },\n  \"autofabricators\": {\n    \"id\": \"128049228\",\n    \"symbol\": \"AutoFabricators\",\n    \"category\": \"Technology\",\n    \"name\": \"Auto-Fabricators\",\n    \"description\": \"High speed, low cost fabricators that can build almost any design out of basic resources.\"\n  },\n  \"azcancriformula42\": {\n    \"id\": \"128667080\",\n    \"symbol\": \"AZCancriFormula42\",\n    \"market_id\": \"3228400128\",\n    \"category\": \"Technology\",\n    \"name\": \"Az Cancri Formula 42\",\n    \"limit\": 9,\n    \"rare\": true,\n    \"description\": \"Formula 42 achieves incredible results, transforming even the most arid of desert worlds into fertile utopias. Beyond its name, all aspects of this product are kept under the highest secrecy. However, people don't ask questions when it delivers time and again.\"\n  },\n  \"bakedgreebles\": {\n    \"id\": \"128667669\",\n    \"symbol\": \"BakedGreebles\",\n    \"market_id\": \"3229378560\",\n    \"category\": \"Foods\",\n    \"name\": \"Baked Greebles\",\n    \"limit\": 17,\n    \"rare\": true,\n    \"description\": \"These tough, limpet like creatures were originally thought to be inedible. However, pioneering colonists discovered that a combination of high pressure and chemical treatment in an ammonia-based solution could render these iron rich creatures into a digestible and delicious food source. They are now considered a delicacy around their galaxy.\"\n  },\n  \"baltahsinevacuumkrill\": {\n    \"id\": \"128667025\",\n    \"symbol\": \"BaltahSineVacuumKrill\",\n    \"market_id\": \"128088056\",\n    \"category\": \"Foods\",\n    \"name\": \"Baltah'sine Vacuum Krill\",\n    \"limit\": 18,\n    \"rare\": true,\n    \"description\": \"Vacuum Krill are astonishing creatures. One of the few species to live in the hard vacuum of space, they are native to the ice rings around Baltah'sine 4b. Their eggs grow in vast numbers in tiny water pockets within the rocks - kept liquid by secretions from the mother when the eggs are first laid. When mature, they eventually burrow their way out, propelling themselves between rocks with tiny excretions of fluid, in search of a mate.\"\n  },\n  \"bankiamphibiousleather\": {\n    \"id\": \"128667674\",\n    \"symbol\": \"BankiAmphibiousLeather\",\n    \"market_id\": \"3228346112\",\n    \"category\": \"Textiles\",\n    \"name\": \"Banki Amphibious Leather\",\n    \"limit\": 18,\n    \"rare\": true,\n    \"description\": \"The native amphibian like creatures of Banki have a particularly colorful and lustrous skins, with a number of useful properties when wet. Highly valued on oceanic worlds.\"\n  },\n  \"basicmedicines\": {\n    \"id\": \"128049210\",\n    \"symbol\": \"BasicMedicines\",\n    \"category\": \"Medicines\",\n    \"name\": \"Basic Medicines\",\n    \"description\": \"A wide range of pharmaceuticals used in the healthcare sphere. Includes treatments for preventative, convalescent and palliative care.\"\n  },\n  \"basicnarcotics\": {\n    \"id\": \"128049212\",\n    \"symbol\": \"BasicNarcotics\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Narcotics\",\n    \"description\": \"Synthetically created substances tailored to create mood enhancement in a human. Widely outlawed due to their addictive nature, and the resultant longer term effects on human consumers.\"\n  },\n  \"bastsnakegin\": {\n    \"id\": \"128667065\",\n    \"symbol\": \"BastSnakeGin\",\n    \"market_id\": \"128086776\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Bast Snake Gin\",\n    \"limit\": 15,\n    \"rare\": true,\n    \"description\": \"Traditional cure-all and cocktail ingredient. The venom of the snake entombed in the bottle adds to the intoxicating effect of the drink.\"\n  },\n  \"battleweapons\": {\n    \"id\": \"128049234\",\n    \"symbol\": \"BattleWeapons\",\n    \"category\": \"Weapons\",\n    \"name\": \"Battle Weapons\",\n    \"description\": \"Military-grade human-portable heavy weapons. The trade and movement of military-grade weaponry is highly regulated; most commonly it is confined to nation states and private organisations with considerable political influence.\"\n  },\n  \"bauxite\": {\n    \"id\": \"128049165\",\n    \"symbol\": \"Bauxite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Bauxite\",\n    \"description\": \"Bauxite is the main source of aluminium, and is in fact a mix of ores that occur naturally together sometimes with small amounts of rutile and haematite. A key source of aluminum for refineries.\"\n  },\n  \"beer\": {\n    \"id\": \"128049214\",\n    \"symbol\": \"Beer\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Beer\",\n    \"description\": \"Traded under a variety of brands. A very mild narcotic. Occasionally illegal due to its association with antisocial behaviour, but also widely consumed in many cultures.\"\n  },\n  \"belalansrayleather\": {\n    \"id\": \"128667061\",\n    \"symbol\": \"BelalansRayLeather\",\n    \"market_id\": \"3223537152\",\n    \"category\": \"Textiles\",\n    \"name\": \"Belalans Ray Leather\",\n    \"limit\": 11,\n    \"rare\": true,\n    \"description\": \"Due to the particular chemical conditions of the water on Belalans, the rays have a particularly soft skin.\"\n  },\n  \"benitoite\": {\n    \"id\": \"128924329\",\n    \"symbol\": \"Benitoite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Benitoite\",\n    \"description\": \"Benitoite is a blue barium titanium silicate mineral that appears fluorescent under shortwave ultraviolet light.\"\n  },\n  \"bertrandite\": {\n    \"id\": \"128049156\",\n    \"symbol\": \"Bertrandite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Bertrandite\",\n    \"description\": \"Bertrandite: chemical formula Be4Si2O7(OH)2. Beryllium Ore. A pale yellow orthorhombic mineral, widely refined into Beryllium.\"\n  },\n  \"beryllium\": {\n    \"id\": \"128049168\",\n    \"symbol\": \"Beryllium\",\n    \"category\": \"Metals\",\n    \"name\": \"Beryllium\",\n    \"description\": \"Beryllium, Be, atomic number 4. Melting point 1560K. A white-grey alkaline earth metal. Widely used in the spacecraft industry right from its early pre-interstellar history because of its high thermal stability and low density. It is also a very useful component of many alloys, both industrially and for specialist high tech components.\"\n  },\n  \"bioreducinglichen\": {\n    \"id\": \"128049672\",\n    \"symbol\": \"BioReducingLichen\",\n    \"category\": \"Technology\",\n    \"name\": \"Bioreducing Lichen\",\n    \"description\": \"Genetically engineered lichen used to prepare an asteroid field or broken surface rocks for industrial extraction. Once deployed the lichen will spread over the field and concentrate specific minerals, changing colour in the process, allowing for efficient extraction.\"\n  },\n  \"biowaste\": {\n    \"id\": \"128049244\",\n    \"symbol\": \"Biowaste\",\n    \"category\": \"Waste\",\n    \"name\": \"Biowaste\",\n    \"description\": \"Sterilised, then used as a basic form of fertiliser on many agricultural worlds.\"\n  },\n  \"bismuth\": {\n    \"id\": \"128672300\",\n    \"symbol\": \"Bismuth\",\n    \"category\": \"Metals\",\n    \"name\": \"Bismuth\",\n    \"description\": \"Bismuth, Bi, atomic number 83. Melting point 545K. It is a pentavalent post-transition often used for medicines and specialist alloys. It is sometimes used in pharmaceuticals.\"\n  },\n  \"bluemilk\": {\n    \"id\": \"128667716\",\n    \"symbol\": \"BlueMilk\",\n    \"market_id\": \"128639992\",\n    \"category\": \"Foods\",\n    \"name\": \"Azure Milk\",\n    \"limit\": 7,\n    \"rare\": true,\n    \"description\": \"Harvested from native mammals found in Leesti, this highly nourishing and rehydrating drink is favoured in arid and desert worlds.\"\n  },\n  \"bootlegliquor\": {\n    \"id\": \"128672306\",\n    \"symbol\": \"BootlegLiquor\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Bootleg Liquor\",\n    \"description\": \"Unregulated alcoholic substances which are typically made through home or small scale production methods, with varying levels of toxicity.\"\n  },\n  \"borasetanipathogenetics\": {\n    \"id\": \"128667032\",\n    \"symbol\": \"BorasetaniPathogenetics\",\n    \"market_id\": \"3229638400\",\n    \"category\": \"Weapons\",\n    \"name\": \"Borasetani Pathogenetics\",\n    \"limit\": 6,\n    \"rare\": true,\n    \"description\": \"These tiny crawling creatures have been called a lab in a bag. They exude tailored biological agents that adapt and mutate to overcome the defenses of their enemies. When deployed in large numbers they resemble a viscious yellow goo that slowly crawls over their victim devouring them completely. When there are no further nutrients to absorb the insects bocome dormant and can be recovered by specialy trained teams to be used again.\"\n  },\n  \"bromellite\": {\n    \"id\": \"128673846\",\n    \"symbol\": \"Bromellite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Bromellite\",\n    \"description\": \"Bromellite, BeO, is a white oxide mineral with a wide range of uses, such as ceramic based electronics, and enhancing material properties of mechanical strength and thermal conductivity.\"\n  },\n  \"buckyballbeermats\": {\n    \"id\": \"128748428\",\n    \"symbol\": \"BuckyballBeerMats\",\n    \"market_id\": \"128745551\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Buckyball Beer Mats\",\n    \"limit\": 25,\n    \"rare\": true,\n    \"description\": \"Double-sided drinks mats originally commissioned in 3302. One side bears the Buckyball Racing Club logo with the slogan \\\"Win it or bin it\\\" while the other reads \\\"Celebrating 10000 rescues\\\" and depicts the mascot of the Fuel Rats.\"\n  },\n  \"buildingfabricators\": {\n    \"id\": \"128672309\",\n    \"symbol\": \"BuildingFabricators\",\n    \"category\": \"Machinery\",\n    \"name\": \"Building Fabricators\",\n    \"description\": \"These are combined resources and manufacturing devices that are used to build surface structures.\"\n  },\n  \"burnhambiledistillate\": {\n    \"id\": \"128667681\",\n    \"symbol\": \"BurnhamBileDistillate\",\n    \"market_id\": \"3230224384\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Burnham Bile Distillate\",\n    \"limit\": 16,\n    \"rare\": true,\n    \"description\": \"The use of 'donated' human bodily fluids in the distillation process for this potent liquor causes a strong variation in flavours from vintage to vintage, and widespread outcry about the ethics of the production. The producers of the drink report that each slave used agrees to the extraction progress, but this has not stopped some having a bitter taste left in their mouths.\"\n  },\n  \"cd75catcoffee\": {\n    \"id\": \"128667042\",\n    \"symbol\": \"CD75CatCoffee\",\n    \"market_id\": \"3228566016\",\n    \"category\": \"Foods\",\n    \"name\": \"CD-75 Kitten Brand Coffee\",\n    \"limit\": 12,\n    \"rare\": true,\n    \"description\": \"The coffee beans are mellowed in the digestive tract of the indigenous giant cats making for a distinctive and unique aftertaste, many have tried to emulate this chemically and physically however the result to date have been inferior if not disastrous.\"\n  },\n  \"centaurimegagin\": {\n    \"id\": \"128667672\",\n    \"symbol\": \"CentauriMegaGin\",\n    \"market_id\": \"3228728832\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Centauri Mega Gin\",\n    \"limit\": 7,\n    \"rare\": true,\n    \"description\": \"This chemical distillate is almost pure Alcohol, but with subtle, prized flavors. Often used as an ingredient in more dangerous cocktails. The exact details of the distillation process are a closely guarded secret.\"\n  },\n  \"ceramiccomposites\": {\n    \"id\": \"128672302\",\n    \"symbol\": \"CeramicComposites\",\n    \"category\": \"Industrial Materials\",\n    \"name\": \"Ceramic Composites\",\n    \"description\": \"A wide range of engineered materials supporting a broad range of technological and industrial applications.\"\n  },\n  \"ceremonialheiketea\": {\n    \"id\": \"128667078\",\n    \"symbol\": \"CeremonialHeikeTea\",\n    \"market_id\": \"3227417856\",\n    \"category\": \"Foods\",\n    \"name\": \"Ceremonial Heike Tea\",\n    \"limit\": 8,\n    \"rare\": true,\n    \"description\": \"Super fine green tea. Powdered for use in tea ceremonies, this tea is often used to seal treaties and business deals. It is traditionally ground on granite mills by specially selected millers, chosen for their moral purity.\"\n  },\n  \"cetiaepyornisegg\": {\n    \"id\": \"128667670\",\n    \"symbol\": \"CetiAepyornisEgg\",\n    \"market_id\": \"3222560256\",\n    \"category\": \"Foods\",\n    \"name\": \"Aepyornis Egg\",\n    \"limit\": 5,\n    \"rare\": true,\n    \"description\": \"Originally referred to as Elephant birds, these behemoths were brought out of extinction using preserved genetic material found on ancient Earth. With some careful genetic modification (before the process of gene modification was outlawed), they were adapted to thrive in a dense, oxygen-rich Cetian atmosphere. They lay prized eggs with a circumference of over a meter.\"\n  },\n  \"cetirabbits\": {\n    \"id\": \"128667026\",\n    \"symbol\": \"CetiRabbits\",\n    \"market_id\": \"3222560000\",\n    \"category\": \"Foods\",\n    \"name\": \"Ceti Rabbits\",\n    \"limit\": 12,\n    \"rare\": true,\n    \"description\": \"For years 47 Ceti suffered from rodents, introduced from Earth, decimating crops. However, they have turned this to their advantage and now farm them in great numbers as the local environment makes the meat curiously sweet.\"\n  },\n  \"chameleoncloth\": {\n    \"id\": \"128667710\",\n    \"symbol\": \"ChameleonCloth\",\n    \"market_id\": \"3223418880\",\n    \"category\": \"Textiles\",\n    \"name\": \"Chameleon Cloth\",\n    \"limit\": 7,\n    \"rare\": true,\n    \"description\": \"Woven from living plants, the fabric created retains the native Flora's sympathetic camouflage. When worn the user will blend in with whatever their current environment is. Although considered for military applications, the low availability of the fabric, and the slow speed of the camouflage effect led to it being deemed inferior to technological camouflages.\"\n  },\n  \"chateaudeaegaeon\": {\n    \"id\": \"128667084\",\n    \"symbol\": \"ChateauDeAegaeon\",\n    \"market_id\": \"3228416768\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Chateau De Aegaeon\",\n    \"limit\": 14,\n    \"rare\": true,\n    \"description\": \"Wines from Aegaeon are some of the most valued and prized possessions in the galaxy. In great demand in wealthy systems, these wines are purchased for large sums, but rarely actually drunk.\"\n  },\n  \"chemicalwaste\": {\n    \"id\": \"128049246\",\n    \"symbol\": \"ChemicalWaste\",\n    \"category\": \"Waste\",\n    \"name\": \"Chemical Waste\",\n    \"description\": \"Chemicals that have become contaminated beyond use. Usually produced as a byproduct of industrial processes.\"\n  },\n  \"cherbonesbloodcrystals\": {\n    \"id\": \"128667675\",\n    \"symbol\": \"CherbonesBloodCrystals\",\n    \"market_id\": \"3229594624\",\n    \"category\": \"Metals\",\n    \"name\": \"Cherbones Blood Crystals\",\n    \"limit\": 48,\n    \"rare\": true,\n    \"description\": \"The unique magnetic flows found in the deepest caves of Cherbones have formed amazing crystals that are coveted for their beauty. These fragile structures are manually extracted at great personal risk. The local inhabitants train all their lives to learn the method for extracting the crystals. Many are lost on their first attempt.\"\n  },\n  \"chieridanimarinepaste\": {\n    \"id\": \"128667049\",\n    \"symbol\": \"ChiEridaniMarinePaste\",\n    \"market_id\": \"128128760\",\n    \"category\": \"Foods\",\n    \"name\": \"Chi Eridani Marine Paste\",\n    \"limit\": 18,\n    \"rare\": true,\n    \"description\": \"A unique mix of zooplankton and phytoplankton from the rich and varied oceans of Chi Eridani. Due to the automated trawling process, it may include any number of other marine creatures that happened to wander into the processor.\"\n  },\n  \"classifiedexperimentalequipment\": {\n    \"id\": \"129002574\",\n    \"symbol\": \"ClassifiedExperimentalEquipment\",\n    \"market_id\": \"128986325\",\n    \"category\": \"Technology\",\n    \"name\": \"Classified Experimental Equipment\",\n    \"rare\": true,\n    \"description\": \"Secretive technology required by Salvation for mass anti-Xeno initiatives.\"\n  },\n  \"clothing\": {\n    \"id\": \"128049241\",\n    \"symbol\": \"Clothing\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Clothing\",\n    \"description\": \"Even in the 34th century, fashion is continually changing, driving purchases of new clothing for those with some credits to spare.\"\n  },\n  \"cmmcomposite\": {\n    \"id\": \"128673856\",\n    \"symbol\": \"CMMComposite\",\n    \"category\": \"Industrial Materials\",\n    \"name\": \"CMM Composite\",\n    \"description\": \"CMM Composites are layered carbon and metals layered to take advantage of the properties for each of the different components. These result in flexible, lightweight and strong structures.\"\n  },\n  \"cobalt\": {\n    \"id\": \"128049162\",\n    \"symbol\": \"Cobalt\",\n    \"category\": \"Metals\",\n    \"name\": \"Cobalt\",\n    \"description\": \"Cobalt, Co, atomic number 27. Melting point 1768K. Traditionally used as a blue colouring, but now mainly used for creating high temperature alloys. Also has biotech applications.\"\n  },\n  \"coffee\": {\n    \"id\": \"128049189\",\n    \"symbol\": \"Coffee\",\n    \"category\": \"Foods\",\n    \"name\": \"Coffee\",\n    \"description\": \"A good source of caffeine to fuel to the creative economics. Many attempts have been made to supplant it but all inevitably fail. Some claim the archaic ritual of grinding beans is a key part of the experience.\"\n  },\n  \"coltan\": {\n    \"id\": \"128049159\",\n    \"symbol\": \"Coltan\",\n    \"category\": \"Minerals\",\n    \"name\": \"Coltan\",\n    \"description\": \"Coltan is a mixture of columbite and tantalite, both valuable Tantalum ores. Useful in capacitors throughout history for many high tech and electronic devices.\"\n  },\n  \"combatstabilisers\": {\n    \"id\": \"128049670\",\n    \"symbol\": \"CombatStabilisers\",\n    \"category\": \"Medicines\",\n    \"name\": \"Combat Stabilisers\",\n    \"description\": \"Biological agents used to sustain and heal injured humans in combat. Combat Stabilizers allow recipients to continue to function despite unimaginable amounts of pain. Some cultures consider they encourage glorification of combat, and so are illegal.\"\n  },\n  \"comercialsamples\": {\n    \"id\": \"128672127\",\n    \"symbol\": \"ComercialSamples\",\n    \"category\": \"Salvage\",\n    \"name\": \"Commercial Samples\",\n    \"description\": \"An assortment of materials, often marketing related, and are of little value on the open market.\"\n  },\n  \"computercomponents\": {\n    \"id\": \"128049225\",\n    \"symbol\": \"ComputerComponents\",\n    \"category\": \"Technology\",\n    \"name\": \"Computer Components\",\n    \"description\": \"Industrially mass-produced computer components and electronic devices, regulators, storage, distribution boards, spares. Wherever there are computers there are computers that have gone wrong and need a spare part.\"\n  },\n  \"conductivefabrics\": {\n    \"id\": \"128682044\",\n    \"symbol\": \"ConductiveFabrics\",\n    \"category\": \"Textiles\",\n    \"name\": \"Conductive Fabrics\",\n    \"description\": \"These Fabrics allow for current to be passed through them in order to build Cloth-set circuitry for wearable technology.\"\n  },\n  \"consumertechnology\": {\n    \"id\": \"128049240\",\n    \"symbol\": \"ConsumerTechnology\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Consumer Technology\",\n    \"description\": \"Ever evolving and changing, get on board for the next generation of personal consumer devices. Be the envy of your friends as you show off the latest thing, then get ready to upgrade.\"\n  },\n  \"coolinghoses\": {\n    \"id\": \"128673857\",\n    \"symbol\": \"CoolingHoses\",\n    \"category\": \"Industrial Materials\",\n    \"name\": \"Micro-weave Cooling Hoses\",\n    \"description\": \"High specification cooling hoses used as conduits for fluid or gas based thermal management systems.\"\n  },\n  \"copper\": {\n    \"id\": \"128049175\",\n    \"symbol\": \"Copper\",\n    \"category\": \"Metals\",\n    \"name\": \"Copper\",\n    \"description\": \"Copper, Cu, atomic number 29. Melting point 1358K. A highly ductile lustrous red-orange metal, with good thermal and electrical conductivity. Used broadly by industry as a cheap conductor and in many alloys. It is also used in biotech and aquaculture especially in many extraterrestrial and hemocyanal species.\"\n  },\n  \"coquimspongiformvictuals\": {\n    \"id\": \"128667054\",\n    \"symbol\": \"CoquimSpongiformVictuals\",\n    \"market_id\": \"3223832576\",\n    \"category\": \"Foods\",\n    \"name\": \"Coquim Spongiform Victuals\",\n    \"limit\": 20,\n    \"rare\": true,\n    \"description\": \"Spongiform Victuals have been a staple food of the Imperial military for years. Many have tried to create copies of the nutritious formula, but it seems only to thrive in the vast damp caves of Coquim. The ingredients are a tightly held secret, and some suggest that it contains addictive substances.\"\n  },\n  \"cropharvesters\": {\n    \"id\": \"128049222\",\n    \"symbol\": \"CropHarvesters\",\n    \"category\": \"Machinery\",\n    \"name\": \"Crop Harvesters\",\n    \"description\": \"Agricultural machinery together with spare parts and consumables used for harvesting and packing specific ground-based crops.\"\n  },\n  \"cryolite\": {\n    \"id\": \"128672294\",\n    \"symbol\": \"Cryolite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Cryolite\",\n    \"description\": \"Used in a range of applications, including: Insecticides, pesticides, fireworks and as a solvent for Aluminium oxide.\"\n  },\n  \"crystallinespheres\": {\n    \"id\": \"128672432\",\n    \"symbol\": \"CrystallineSpheres\",\n    \"market_id\": \"128059402\",\n    \"category\": \"Salvage\",\n    \"name\": \"Crystalline Spheres\",\n    \"limit\": 12,\n    \"rare\": true,\n    \"description\": \"Transparent spheres crafted from the finest crystal and containing a clear liquid full of snow that swirls when shaken.\"\n  },\n  \"damagedescapepod\": {\n    \"id\": \"128672811\",\n    \"symbol\": \"DamagedEscapePod\",\n    \"category\": \"Salvage\",\n    \"name\": \"Damaged Escape Pod\",\n    \"description\": \"This escape pod's systems have been damaged and will fail by the end time provided in the briefing. After this time the system will no longer be able to sustain the life of its occupant.\"\n  },\n  \"damnacarapaces\": {\n    \"id\": \"128667062\",\n    \"symbol\": \"DamnaCarapaces\",\n    \"market_id\": \"3227751936\",\n    \"category\": \"Textiles\",\n    \"name\": \"Damna Carapaces\",\n    \"limit\": 23,\n    \"rare\": true,\n    \"description\": \"The hard colourful exoskeletons of large insect like creatures. Used as decoration and in the production of exotic materials and clothing.\"\n  },\n  \"datacore\": {\n    \"id\": \"128682049\",\n    \"symbol\": \"DataCore\",\n    \"category\": \"Salvage\",\n    \"name\": \"Data Core\",\n    \"description\": \"A large core filled with digital data.\"\n  },\n  \"deltaphoenicispalms\": {\n    \"id\": \"128667073\",\n    \"symbol\": \"DeltaPhoenicisPalms\",\n    \"market_id\": \"128045312\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Delta Phoenicis Palms\",\n    \"limit\": 17,\n    \"rare\": true,\n    \"description\": \"A truly organic pest eradication tool, these sterile plants can only be grown from cuttings. Their pollen is lethal to most insectoid life forms. Historically it used their body as a host to germinate. Note may cause hallucinations if workers are over-exposed.\"\n  },\n  \"deuringastruffles\": {\n    \"id\": \"128667058\",\n    \"symbol\": \"DeuringasTruffles\",\n    \"market_id\": \"3229713408\",\n    \"category\": \"Foods\",\n    \"name\": \"Deuringas Truffles\",\n    \"limit\": 7,\n    \"rare\": true,\n    \"description\": \"More of a lichen than the fungus that they resemble. They have a similar musty flavor to ancient Earth truffles, but the process of metabolising Deuringas's surface - which is why Deuringas truffles must be shaved in preparation for eating.\"\n  },\n  \"diagnosticsensor\": {\n    \"id\": \"128673875\",\n    \"symbol\": \"DiagnosticSensor\",\n    \"category\": \"Technology\",\n    \"name\": \"Hardware Diagnostic Sensor\",\n    \"description\": \"Diagnostic sensors that provide hardware monitoring and telemetry for a variety of systems. These can be found at Kanwar Gateway in the Xiripa system.\"\n  },\n  \"diplomaticbag\": {\n    \"id\": \"128672131\",\n    \"symbol\": \"DiplomaticBag\",\n    \"category\": \"Salvage\",\n    \"name\": \"Diplomatic Bag\",\n    \"description\": \"Used to carry political correspondence and other confidential items. Can only be sold on the black market. These packages are often contained within booby-trapped containers.\"\n  },\n  \"disomacorn\": {\n    \"id\": \"128667714\",\n    \"symbol\": \"DisoMaCorn\",\n    \"market_id\": \"128161016\",\n    \"category\": \"Foods\",\n    \"name\": \"Diso Ma Corn\",\n    \"limit\": 15,\n    \"rare\": true,\n    \"description\": \"This ancient corn-like crop is harvested manually to preserve the dust-like coating on the seeds. This dust is traditionally snorted from the corn as a chef's treat.\"\n  },\n  \"domesticappliances\": {\n    \"id\": \"128049238\",\n    \"symbol\": \"DomesticAppliances\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Domestic Appliances\",\n    \"description\": \"For every household task, there are any number of domestic appliances fighting for the consumers' attention and credits.\"\n  },\n  \"drones\": {\n    \"id\": \"128066403\",\n    \"symbol\": \"Drones\",\n    \"category\": \"NonMarketable\",\n    \"name\": \"Limpets\"\n  },\n  \"duradrives\": {\n    \"id\": \"128922524\",\n    \"symbol\": \"Duradrives\",\n    \"market_id\": \"3223453184\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Duradrives\",\n    \"limit\": 22,\n    \"rare\": true,\n    \"description\": \"These robust personal computing devices, manufactured by technology company Herculean Machines, are used throughout the galaxy.\"\n  },\n  \"earthrelics\": {\n    \"id\": \"128672161\",\n    \"symbol\": \"EarthRelics\",\n    \"category\": \"Salvage\",\n    \"name\": \"Earth Relics\",\n    \"description\": \"Historical artefacts originating from the ancient periods of Earth. These items vary considerably in nature and hold great value to collectors.\"\n  },\n  \"eleuthermals\": {\n    \"id\": \"128667037\",\n    \"symbol\": \"EleuThermals\",\n    \"market_id\": \"3230624768\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Eleu Thermals\",\n    \"limit\": 13,\n    \"rare\": true,\n    \"description\": \"In an age of manufactured goods, many prefer the expensive tradition of making things by hand. Eleu hand-knitted thermals, made from their own wool are the survival underwear of choice for cold climates.\"\n  },\n  \"emergencypowercells\": {\n    \"id\": \"128673861\",\n    \"symbol\": \"EmergencyPowerCells\",\n    \"category\": \"Machinery\",\n    \"name\": \"Emergency Power Cells\",\n    \"description\": \"Emergency power cells used to provide power when the primary power source is unavailable. They can also be used to temporarily increase power output.\"\n  },\n  \"encripteddatastorage\": {\n    \"id\": \"128672124\",\n    \"symbol\": \"EncriptedDataStorage\",\n    \"category\": \"Salvage\",\n    \"name\": \"Encrypted Data Storage\",\n    \"description\": \"It is sometimes safer to transport sensitive data physically and also quicker if immense quantities need transferring. They usually have little intrinsic value except to the organisation attempting to secure these items.\"\n  },\n  \"encryptedcorrespondence\": {\n    \"id\": \"128672130\",\n    \"symbol\": \"EncryptedCorrespondence\",\n    \"category\": \"Salvage\",\n    \"name\": \"Encrypted Correspondence\",\n    \"description\": \"Heavily encrypted data that is of little interest, although some hackers use it for training or practise, or simply enjoy the challenge of breaking the encryption. There is a limited black market for these items.\"\n  },\n  \"eraninpearlwhisky\": {\n    \"id\": \"128666746\",\n    \"symbol\": \"EraninPearlWhisky\",\n    \"market_id\": \"128001536\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Eranin Pearl Whisky\",\n    \"limit\": 16,\n    \"rare\": true,\n    \"description\": \"Created to celebrate 30 years of Eranin independence in Alliance, this specially created whiskey was created in limited supply and is expected to increase in value over time.\"\n  },\n  \"eshuumbrellas\": {\n    \"id\": \"128667038\",\n    \"symbol\": \"EshuUmbrellas\",\n    \"market_id\": \"3222295552\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Eshu Umbrellas\",\n    \"limit\": 9,\n    \"rare\": true,\n    \"description\": \"An anachronistic homage to a more civilized age becomes as symbol of wealth and tradition. Suppliers to the Empire and beyond.\"\n  },\n  \"esusekucaviar\": {\n    \"id\": \"128667050\",\n    \"symbol\": \"EsusekuCaviar\",\n    \"market_id\": \"3226919680\",\n    \"category\": \"Foods\",\n    \"name\": \"Esuseku Caviar\",\n    \"limit\": 10,\n    \"rare\": true,\n    \"description\": \"After being discovered in an ancient gene bank, the last of the cryogenically stored Sturgeon eggs were purchased for an undisclosed, but reliable enormous sum. After the long search for an appropriate environment, they were introduced to the waters of Esuseku, and to their owner's relief, hatched and established a breeding colony. The ancient fish continues to thrive in the waters of Esuseku making it the primary producer of caviar in known space.\"\n  },\n  \"ethgrezeteabuds\": {\n    \"id\": \"128667077\",\n    \"symbol\": \"EthgrezeTeaBuds\",\n    \"market_id\": \"3229524992\",\n    \"category\": \"Foods\",\n    \"name\": \"Ethgreze Tea Buds\",\n    \"limit\": 7,\n    \"rare\": true,\n    \"description\": \"These tea buds have to be hand plucked from the dangerous Ethgreze Carnivorous Camellia Sinensis plants. Only those with sharp reflexes make it through their first season without losing fingers or entire hands to the deadly fast plants. Due to the danger in collecting it, this tea is famously expensive.\"\n  },\n  \"evacuationshelter\": {\n    \"id\": \"128672314\",\n    \"symbol\": \"EvacuationShelter\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Evacuation Shelter\",\n    \"description\": \"A lightweight robust unit that can be deployed to provide shelter, basic food and air for up to a month in the event of structural failure or meteor impacts on habited builds. They are also used by survey teams on long expeditions.\"\n  },\n  \"exhaustmanifold\": {\n    \"id\": \"128673866\",\n    \"symbol\": \"ExhaustManifold\",\n    \"category\": \"Machinery\",\n    \"name\": \"Exhaust Manifold\",\n    \"description\": \"These customised manifolds are used to combine plasmas and gases from multiple sources into a single element. These can be found at Somerville Station in the Kharpulo system.\"\n  },\n  \"explosives\": {\n    \"id\": \"128049204\",\n    \"symbol\": \"Explosives\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Explosives\",\n    \"description\": \"Chemical explosives are used extensively in extraction to gain access to valuable mineral deposits.\"\n  },\n  \"fish\": {\n    \"id\": \"128049183\",\n    \"symbol\": \"Fish\",\n    \"category\": \"Foods\",\n    \"name\": \"Fish\",\n    \"description\": \"Flesh from once-living aquatic organisms sold as food stuff. Illegal in some jurisdictions.\"\n  },\n  \"foodcartridges\": {\n    \"id\": \"128049184\",\n    \"symbol\": \"FoodCartridges\",\n    \"category\": \"Foods\",\n    \"name\": \"Food Cartridges\",\n    \"description\": \"Cartridges for 'chefs' (cheap 3D food printers). These dehydrated components are reconstituted into a variety of shapes using a 3D printing technique. Components are mixed with water and flavourings as they are printed, according to the desired food item template for colour, texture and taste. \\\"Burgers\\\" and \\\"Hotdogs\\\" are common standard template choices in most chefs.\"\n  },\n  \"fossilremnants\": {\n    \"id\": \"128682055\",\n    \"symbol\": \"FossilRemnants\",\n    \"category\": \"Salvage\",\n    \"name\": \"Fossil Remnants\",\n    \"description\": \"Fossilised fragments from an unidentified life form. Inquisitive minds will revel at the chance to analyse and possess one of our galaxy's ancestral occupants.\"\n  },\n  \"fruitandvegetables\": {\n    \"id\": \"128049178\",\n    \"symbol\": \"FruitAndVegetables\",\n    \"category\": \"Foods\",\n    \"name\": \"Fruit and Vegetables\",\n    \"description\": \"A diverse selection of plant-based produce, usually grown in bulk on outdoor worlds, used by the luxury food industry and for direct consumption by the population.\"\n  },\n  \"fujintea\": {\n    \"id\": \"128667709\",\n    \"symbol\": \"FujinTea\",\n    \"market_id\": \"128134392\",\n    \"category\": \"Foods\",\n    \"name\": \"Fujin Tea\",\n    \"limit\": 23,\n    \"rare\": true,\n    \"description\": \"A range of infusions from indigenous plants and herbs that produce highly effective medicines rivalling or exceeding the best synthetics. Ill-informed combinations have been known to be instantly fatal.\"\n  },\n  \"galactictravelguide\": {\n    \"id\": \"128682050\",\n    \"symbol\": \"GalacticTravelGuide\",\n    \"market_id\": \"128673074\",\n    \"category\": \"Salvage\",\n    \"name\": \"Galactic Travel Guide\",\n    \"rare\": true,\n    \"description\": \"A where's where and a what's what of the Milky Way. This guide highlights the galaxy's top destinations and hot spots.\"\n  },\n  \"gallite\": {\n    \"id\": \"128049158\",\n    \"symbol\": \"Gallite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Gallite\",\n    \"description\": \"Gallite: chemical formula CuGaS2. Gallium Ore. Named for its high Gallium content and is widely extracted at refineries.\"\n  },\n  \"gallium\": {\n    \"id\": \"128049170\",\n    \"symbol\": \"Gallium\",\n    \"category\": \"Metals\",\n    \"name\": \"Gallium\",\n    \"description\": \"Gallium, Ga, atomic number 31. Melting point 303K. It is a soft silvery metal at human room temperature, but melts in the human hand. It is used as a key component in semiconductors and in lasers.\"\n  },\n  \"geawendancedust\": {\n    \"id\": \"128667677\",\n    \"symbol\": \"GeawenDanceDust\",\n    \"market_id\": \"3230954752\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Geawen Dance Dust\",\n    \"limit\": 23,\n    \"rare\": true,\n    \"description\": \"There may be no sound in space, but Geawen Dance Dust will bring the music inside your cockpit, and inside your head. You literally won't be able to stop dancing.\"\n  },\n  \"genebank\": {\n    \"id\": \"128672162\",\n    \"symbol\": \"GeneBank\",\n    \"category\": \"Salvage\",\n    \"name\": \"Gene Bank\",\n    \"description\": \"Collection of DNA and other biological samples containing valuable information for the scientific community. These banks can sometimes contain samples from extinct species which vastly increases their demand.\"\n  },\n  \"geologicalequipment\": {\n    \"id\": \"128672307\",\n    \"symbol\": \"GeologicalEquipment\",\n    \"category\": \"Machinery\",\n    \"name\": \"Geological Equipment\",\n    \"description\": \"Allows basic monitoring and integration of the world's geology, for both scientific, civic and commercial purposes.\"\n  },\n  \"geologicalsamples\": {\n    \"id\": \"128672315\",\n    \"symbol\": \"GeologicalSamples\",\n    \"category\": \"Salvage\",\n    \"name\": \"Geological Samples\",\n    \"description\": \"Geological samples used for scientific and commercial purposes.\"\n  },\n  \"gerasiangueuzebeer\": {\n    \"id\": \"128667678\",\n    \"symbol\": \"GerasianGueuzeBeer\",\n    \"market_id\": \"3228047360\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Gerasian Gueuze Beer\",\n    \"limit\": 40,\n    \"rare\": true,\n    \"description\": \"Geras 3 A supports life in the form of large algae like plankton, whose bioluminescent digestive system excretes a complex protein that can be used in the brewing process. The resulting beer is famous for it's strength, heady aroma, and luminescent color.\"\n  },\n  \"giantirukamasnails\": {\n    \"id\": \"128667024\",\n    \"symbol\": \"GiantIrukamaSnails\",\n    \"market_id\": \"3225345792\",\n    \"category\": \"Foods\",\n    \"name\": \"Giant Irukama Snails\",\n    \"limit\": 16,\n    \"rare\": true,\n    \"description\": \"Despite appearances, the species discovered on Irukama are not strictly snails. These indigenous creatures almost destroyed Irukama's native habitat over their sole predator was culled, due to the threat it posed to human settlers. Now actively managed, the surplus stock is sold on as a delicacy. The meat from a single snail can easily fill several standard-size cargo canisters.\"\n  },\n  \"giantverrix\": {\n    \"id\": \"128667703\",\n    \"symbol\": \"GiantVerrix\",\n    \"market_id\": \"128121336\",\n    \"category\": \"Machinery\",\n    \"name\": \"Giant Verrix\",\n    \"limit\": 6,\n    \"rare\": true,\n    \"description\": \"This hardy beast of burden now found throughout human space, especially on the emerging worlds of the outer rim, but naturally bred Verrix are very rare and highly prized.\"\n  },\n  \"gilyasignatureweapons\": {\n    \"id\": \"128667072\",\n    \"symbol\": \"GilyaSignatureWeapons\",\n    \"market_id\": \"3226857216\",\n    \"category\": \"Weapons\",\n    \"name\": \"Gilya Signature Weapons\",\n    \"limit\": 9,\n    \"rare\": true,\n    \"description\": \"Leave your own personal mark with these highly customisable weapons, a speciality of the Gilya system. Leave no doubt about who put your victim to rest when using a Gilya Signature weapon. Illegal but highly prized in many jurisdictions. Being disarmed of your signature weapon is considered the greatest of humiliations.\"\n  },\n  \"gold\": {\n    \"id\": \"128049154\",\n    \"symbol\": \"Gold\",\n    \"category\": \"Metals\",\n    \"name\": \"Gold\",\n    \"description\": \"Gold, Au, atomic number 79. Melting point 1337K. A valuable precious metal, and because it is the most resistive metal to corrosion, is widely used in jewelry and luxury goods and for contact pads in electronics.\"\n  },\n  \"gomanyauponcoffee\": {\n    \"id\": \"128667043\",\n    \"symbol\": \"GomanYauponCoffee\",\n    \"market_id\": \"3224449792\",\n    \"category\": \"Foods\",\n    \"name\": \"Goman Yaupon Coffee\",\n    \"limit\": 9,\n    \"rare\": true,\n    \"description\": \"This once traditional coffee substitute leapt to fame when the Emperor Hengist Duval gave it his seal of approval.\"\n  },\n  \"goslarite\": {\n    \"id\": \"128672295\",\n    \"symbol\": \"Goslarite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Goslarite\",\n    \"description\": \"This zinc sulphate mineral is used in medicines and antiseptic treatments.\"\n  },\n  \"grain\": {\n    \"id\": \"128049180\",\n    \"symbol\": \"Grain\",\n    \"category\": \"Foods\",\n    \"name\": \"Grain\",\n    \"description\": \"Inexpensive and intensively grown in various forms on many outdoor worlds. Mainly consumed as bread but also forms a key constituent of many industrially produced foods.\"\n  },\n  \"grandidierite\": {\n    \"id\": \"128924330\",\n    \"symbol\": \"Grandidierite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Grandidierite\",\n    \"description\": \"Grandidierite is bluish-green nesosilicate mineral distinguished by the fact that it exhibits different colours when viewed from different angles.\"\n  },\n  \"hafnium178\": {\n    \"id\": \"128668549\",\n    \"symbol\": \"Hafnium178\",\n    \"category\": \"Metals\",\n    \"name\": \"Hafnium 178\",\n    \"description\": \"Hafnium 178m2, Hf, atomic number 72. This nuclear isomer has the potential to unleash enormous quantities of gamma radiation, making it an excellent ingredient for use in devastating weapons of mass destruction. As a result Hafnium 178 is a highly controlled substance that is universally illegal to own without special dispensation.\"\n  },\n  \"haidneblackbrew\": {\n    \"id\": \"128667679\",\n    \"symbol\": \"HaidneBlackBrew\",\n    \"market_id\": \"3226557696\",\n    \"category\": \"Foods\",\n    \"name\": \"Haiden Black Brew\",\n    \"limit\": 21,\n    \"rare\": true,\n    \"description\": \"Brewed over a low heat for days, this tea is comprised of fine mineral shavings, rather than traditional leaves. This mineral based tea is high in salts and nutritious metals. Over consumption of this has been known to temporarily cause the drinker's skin to take a metallic hue.\"\n  },\n  \"harmasilversearum\": {\n    \"id\": \"128793113\",\n    \"symbol\": \"HarmaSilverSeaRum\",\n    \"market_id\": \"3221575424\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Harma Silver Sea Rum\",\n    \"limit\": 60,\n    \"rare\": true,\n    \"description\": \"Based on a secret 24th Century recipe taken from the log of one Captain Smolenski, Harma Silver Sea Rum has been developed by blending a range of rare alcohols to create a beverage any corsair would be proud of. The Harma Silver Cartel, who manufacture and distribute the potent brew, enjoy the controversy their product has gleaned after it became a favourite among pirate gangs across the galaxy.\"\n  },\n  \"havasupaidreamcatcher\": {\n    \"id\": \"128667680\",\n    \"symbol\": \"HavasupaiDreamCatcher\",\n    \"market_id\": \"3221438976\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Havasupai Dream Catcher\",\n    \"limit\": 4,\n    \"rare\": true,\n    \"description\": \"Re-live your dreams! This device can record, consolidate and replay the neural activity of dreams, allowing you to re-experience them whenever you desire, or even share your dreams with friends!\"\n  },\n  \"hazardousenvironmentsuits\": {\n    \"id\": \"128049226\",\n    \"symbol\": \"HazardousEnvironmentSuits\",\n    \"category\": \"Technology\",\n    \"name\": \"H.E. Suits\",\n    \"description\": \"Suitable for human use in hostile environments including vacuum, together with spare parts. Fitted with atmospheric scrubbing and life support, vital signs monitoring, automatic medical systems and a multi channel communications interface.\"\n  },\n  \"heatsinkinterlink\": {\n    \"id\": \"128673868\",\n    \"symbol\": \"HeatsinkInterlink\",\n    \"category\": \"Machinery\",\n    \"name\": \"Heatsink Interlink\",\n    \"description\": \"These specially made heatsink interlinks provide the mechanism for the emissive cooling plates within a heatsink. These can be found at Gresley Enterprise in the LHS 3980 system.\"\n  },\n  \"heliostaticfurnaces\": {\n    \"id\": \"128049220\",\n    \"symbol\": \"HeliostaticFurnaces\",\n    \"category\": \"Machinery\",\n    \"name\": \"Microbial Furnaces\",\n    \"description\": \"Bio-engineered microbes that separate specific elements from powdered ore. Produced on high tech worlds, their name is historic having replaced thermal furnaces for the refining or many ores.\"\n  },\n  \"helvetitjpearls\": {\n    \"id\": \"128667052\",\n    \"symbol\": \"HelvetitjPearls\",\n    \"market_id\": \"3231094528\",\n    \"category\": \"Metals\",\n    \"name\": \"Helvetitj Pearls\",\n    \"limit\": 6,\n    \"rare\": true,\n    \"description\": \"Oysters have been one of the more successful adaptors with their rapid genetic modification. Due to the chemicals in the waters the oysters of Helvetitj produce a range of vividly coloured but natural pearls which are in high demand for decorative purposes, but are valued as a food source as well.\"\n  },\n  \"hip10175bushmeat\": {\n    \"id\": \"128667019\",\n    \"symbol\": \"HIP10175BushMeat\",\n    \"market_id\": \"3223234816\",\n    \"category\": \"Foods\",\n    \"name\": \"HIP 10175 Bush Meat\",\n    \"limit\": 13,\n    \"rare\": true,\n    \"description\": \"A wide range of strong-tasting exotic meats native to HIP 10175, famed for its hunting and natural environment. One commonality between all the available species is a strange spicing flavor. This is believed to be due to the rich local ecosystem. Restricted trade has brought high prices.\"\n  },\n  \"hip118311swarm\": {\n    \"id\": \"128667033\",\n    \"symbol\": \"HIP118311Swarm\",\n    \"market_id\": \"3223177472\",\n    \"category\": \"Weapons\",\n    \"name\": \"HIP 118311 Swarm\",\n    \"limit\": 1,\n    \"rare\": true,\n    \"description\": \"Swarm is the codename of the weaponised form of the tiny but lethally poisonous biting insects native to HIP 118311. Manipulated by a control fluid, the weapons can be targeted onto enemy positions using a remote electromagnetic beam, then unleashed to wreak chaos and death on enemy ranks. The weapon’s trademark buzzing quickly made it a favourite with crime syndicates, favoured for intimidation and enforcement purposes. Banned in most jurusdictions.\"\n  },\n  \"hip41181squid\": {\n    \"id\": \"128667053\",\n    \"symbol\": \"HIP41181Squid\",\n    \"market_id\": \"3227995392\",\n    \"category\": \"Foods\",\n    \"name\": \"HIP Proto-Squid\",\n    \"limit\": 14,\n    \"rare\": true,\n    \"description\": \"Though there is no genetic link between the huge creatures of HIP 41181 and the now extinct squid once found on ancient Earth, the evolutionary similarities are remarkable. Perhaps they share some ancient space faring ancestor. There was much protest at the use of these animals as food. Claims of sentience still remain high on the agenda of those trying to stamp out the trade.\"\n  },\n  \"hiporganophosphates\": {\n    \"id\": \"128667682\",\n    \"symbol\": \"HIPOrganophosphates\",\n    \"market_id\": \"3227036160\",\n    \"category\": \"Chemicals\",\n    \"name\": \"HIP Organophosphates\",\n    \"limit\": 17,\n    \"rare\": true,\n    \"description\": \"The high phosphorous content of this powerful pesticide is highly effective, but can cause a number of highly dangerous side effects. This has led to some governments classifying it as a chemical weapon, and many independent agricultural worlds making taking legal action against the producer after cattle and workers have been left maimed.\"\n  },\n  \"hnshockmount\": {\n    \"id\": \"128673860\",\n    \"symbol\": \"HNShockMount\",\n    \"category\": \"Machinery\",\n    \"name\": \"HN Shock Mount\",\n    \"description\": \"HN shock mounts absorb vibration and impacts to stabilise the mounted device.\"\n  },\n  \"holvaduellingblades\": {\n    \"id\": \"128667070\",\n    \"symbol\": \"HolvaDuellingBlades\",\n    \"market_id\": \"3222713088\",\n    \"category\": \"Weapons\",\n    \"name\": \"Holva Duelling Blades\",\n    \"limit\": 7,\n    \"rare\": true,\n    \"description\": \"The finest blades money can buy. Putting art into death, forged from the purest alloys and available in a range of traditional and modern styles. Ceremonial and combat blades are available.\"\n  },\n  \"honestypills\": {\n    \"id\": \"128667686\",\n    \"symbol\": \"HonestyPills\",\n    \"market_id\": \"3229561344\",\n    \"category\": \"Medicines\",\n    \"name\": \"Honesty Pills\",\n    \"limit\": 13,\n    \"rare\": true,\n    \"description\": \"Originally created to be used in a religious ceremony, wherein an apostate is purified through forced confession, then repentance for their sins. The sect was soon infiltrated by corporate agents, and the psychoactive compound identified. The only secrets that has not been revealed by this drug are the ingredients for creating it, and the fate of the religious sect that discovered it.\"\n  },\n  \"hostage\": {\n    \"id\": \"128672135\",\n    \"symbol\": \"Hostage\",\n    \"category\": \"Salvage\",\n    \"name\": \"Hostages\",\n    \"description\": \"Sometimes criminal gangs hide their hostages in cargo pods fitted with rudimentary life support.\"\n  },\n  \"hr7221wheat\": {\n    \"id\": \"128667059\",\n    \"symbol\": \"HR7221Wheat\",\n    \"market_id\": \"3226170880\",\n    \"category\": \"Foods\",\n    \"name\": \"HR 7221 Wheat\",\n    \"limit\": 16,\n    \"rare\": true,\n    \"description\": \"This blood-red, grain-like plant - sometimes known as 'Mars Grass' - has proven itself to be terribly invasive and highly aggressive to all other plant types. For this reason, its growth is now restricted to HR 7221. Its restriction has proved a blessing as its unique colouring and flavour are in demand in exotic cookery.\"\n  },\n  \"hydrogenfuel\": {\n    \"id\": \"128049202\",\n    \"symbol\": \"HydrogenFuel\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Hydrogen Fuel\",\n    \"description\": \"Hydrogen fuel is used in high power systems, from ships' drives to weapons to powering the energy needs of stations and surface cities. Using high pressure and temperature, hydrogen is fused into helium in a simple reactor.\"\n  },\n  \"hydrogenperoxide\": {\n    \"id\": \"128673850\",\n    \"symbol\": \"HydrogenPeroxide\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Hydrogen Peroxide\",\n    \"description\": \"Hydrogen Peroxide, H2O2, is the simplest peroxide and has a number of uses as a reacting agent in chemical processes.\"\n  },\n  \"imperialslaves\": {\n    \"id\": \"128667728\",\n    \"symbol\": \"ImperialSlaves\",\n    \"category\": \"Slavery\",\n    \"name\": \"Imperial Slaves\",\n    \"description\": \"Slavery is an important part of Imperial Society, providing labour for the Empire and a safety net for its citizens. Many Imperials will choose to sell themselves into a fixed period of slavery than face the embarrassment and dishonour of living with a debt.\"\n  },\n  \"indibourbon\": {\n    \"id\": \"128667704\",\n    \"symbol\": \"IndiBourbon\",\n    \"market_id\": \"128118520\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Indi Bourbon\",\n    \"limit\": 8,\n    \"rare\": true,\n    \"description\": \"Originally used as a medicine to revive those who have suffocated in dust storms, the restorative effects of this potent drink are almost as famous as the hangovers.\"\n  },\n  \"indite\": {\n    \"id\": \"128049157\",\n    \"symbol\": \"Indite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Indite\",\n    \"description\": \"Indite: chemical formula Fein2S4. Indium Ore. A rare, black, crystalline mineral. Often found in what were once hydrothermal deposits or asteroids that have been heated in their past. it is widely refined into Indium.\"\n  },\n  \"indium\": {\n    \"id\": \"128049169\",\n    \"symbol\": \"Indium\",\n    \"category\": \"Metals\",\n    \"name\": \"Indium\",\n    \"description\": \"Indium, In, atomic number 49. Melting point 429K. Used industrially and high tech for a wide range of alloys, including superconductors, sensors and holo projectors.\"\n  },\n  \"insulatingmembrane\": {\n    \"id\": \"128673855\",\n    \"symbol\": \"InsulatingMembrane\",\n    \"category\": \"Industrial Materials\",\n    \"name\": \"Insulating Membrane\",\n    \"description\": \"Insulating membranes are used to control heat flow between devices and are typically used for cooling.\"\n  },\n  \"iondistributor\": {\n    \"id\": \"128673874\",\n    \"symbol\": \"IonDistributor\",\n    \"category\": \"Machinery\",\n    \"name\": \"Ion Distributor\",\n    \"description\": \"Ion distributors are used to control the flows of ions within a device. These can be found at Stevens Orbital in the HIP 18327 system.\"\n  },\n  \"jadeite\": {\n    \"id\": \"128672776\",\n    \"symbol\": \"Jadeite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Jadeite\",\n    \"description\": \"Jadeite; NaAlSi2O6, is a substance of the purest green and used in a variety of crafts and art. It has historical roots with the ancient Mesoamerican cultures.\"\n  },\n  \"jaquesquinentianstill\": {\n    \"id\": \"128668017\",\n    \"symbol\": \"JaquesQuinentianStill\",\n    \"market_id\": \"128667761\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Jaques Quinentian Still\",\n    \"limit\": 26,\n    \"rare\": true,\n    \"description\": \"A pocket sized one shot distillery, hand crafted by the legendary Cyborg bartender Jaques. This device is capable of turning almost any combination of liquids into 10ml of highly concentrated alcohol in just 3 minutes.\"\n  },\n  \"jaradharrepuzzlebox\": {\n    \"id\": \"128667683\",\n    \"symbol\": \"JaradharrePuzzlebox\",\n    \"market_id\": \"3230754816\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Jaradharre Puzzle Box\",\n    \"limit\": 4,\n    \"rare\": true,\n    \"description\": \"This entertainment device uses concentrated radiation bursts to detect the desires of the player and automatically and instantly creates a game with every feature they could desire. Each unit is unique, and will self customise to represent its owner. Use of another person's puzzle box is considered a great social faux pas.\"\n  },\n  \"jarouarice\": {\n    \"id\": \"128667060\",\n    \"symbol\": \"JarouaRice\",\n    \"market_id\": \"3224698112\",\n    \"category\": \"Foods\",\n    \"name\": \"Jaroua Rice\",\n    \"limit\": 18,\n    \"rare\": true,\n    \"description\": \"Grown in the paddy fields of Jaroua, bioengineered filter fish are used to remove any pests or parasites attached to the plant. It is hand-planted and hand-picked by specially engineered robots.\"\n  },\n  \"jotunmookah\": {\n    \"id\": \"128667702\",\n    \"symbol\": \"JotunMookah\",\n    \"market_id\": \"128078840\",\n    \"category\": \"Textiles\",\n    \"name\": \"Jotun Mookah\",\n    \"limit\": 10,\n    \"rare\": true,\n    \"description\": \"A small soft-furred quadruped that stains its multi-colored fur sludge brown when it dies - an action that this highly nervous creature is predisposed to do at the drop of a hat. Professional comforters must work day and night to keep this creature from self induced heart attack. The meat is extremely bitter, but they have found a niche as an expensive accessory.\"\n  },\n  \"kachiriginleaches\": {\n    \"id\": \"128667027\",\n    \"symbol\": \"KachiriginLeaches\",\n    \"market_id\": \"3221595648\",\n    \"category\": \"Medicines\",\n    \"name\": \"Kachirigin Filter Leeches\",\n    \"limit\": 10,\n    \"rare\": true,\n    \"description\": \"Leeches were used medically for millennia on ancient Earth but were largely superseded by technology. Hundreds of years later, a chance discovery on Kachirigin revealed some very valuable properties of the native creatures. Kachirigin leeches can painlessly filter impurities from the user's blood, so can be used as a cure-all for hangovers and the worst effects of certain addictions. They are prized by the wealthy and hedonistic, and have an almost cult-like following.\"\n  },\n  \"kamitracigars\": {\n    \"id\": \"128667081\",\n    \"symbol\": \"KamitraCigars\",\n    \"market_id\": \"3225450752\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Kamitra Cigars\",\n    \"limit\": 23,\n    \"rare\": true,\n    \"description\": \"Providing the biggest cigars in the Galaxy, hand rolled and ready to smoke right out of the box. Specially treated to allow safe smoking even in the cockpit without overloading your life support module. The best way to end your days.\"\n  },\n  \"kamorinhistoricweapons\": {\n    \"id\": \"128667071\",\n    \"symbol\": \"KamorinHistoricWeapons\",\n    \"market_id\": \"3221669632\",\n    \"category\": \"Weapons\",\n    \"name\": \"Kamorin Historic Weapons\",\n    \"limit\": 10,\n    \"rare\": true,\n    \"description\": \"Kamorin Historic Weapons are happy to provide the re-enactor and enthusiast with fully-functional replicas of weapons from a number of important historical eras. Our expert team of craftsmen use traditional materials and methods, with a modern eye of quality. Exploring and researching the annals of history, our artisans continue to bring you the best of weapons from throughout the ages.\"\n  },\n  \"karetiicouture\": {\n    \"id\": \"128667039\",\n    \"symbol\": \"KaretiiCouture\",\n    \"market_id\": \"3227333120\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Karetii Couture\",\n    \"limit\": 5,\n    \"rare\": true,\n    \"description\": \"With the vagaries of fashion Karetii Couture is always ahead of the curve, and so are the prices. Many people question the value and the practicalities of these items and yet they still maintain a vice like grip on the public's imagination and credits.\"\n  },\n  \"karsukilocusts\": {\n    \"id\": \"128667023\",\n    \"symbol\": \"KarsukiLocusts\",\n    \"market_id\": \"3225028096\",\n    \"category\": \"Foods\",\n    \"name\": \"Karsuki Locusts\",\n    \"limit\": 18,\n    \"rare\": true,\n    \"description\": \"Prized for their uniquely sweet flavor caused by the native fungal parasites that infest them.\"\n  },\n  \"kinagoinstruments\": {\n    \"id\": \"128667045\",\n    \"symbol\": \"KinagoInstruments\",\n    \"market_id\": \"3227394304\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Kinago Violins\",\n    \"limit\": 3,\n    \"rare\": true,\n    \"description\": \"Kinago is famed for its Luthiers producing the finest Violins and other stringed instruments. They are highly prized by both musicians and collectors throughout the galaxy.\"\n  },\n  \"konggaale\": {\n    \"id\": \"128667034\",\n    \"symbol\": \"KonggaAle\",\n    \"market_id\": \"3226978048\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Kongga Ale\",\n    \"limit\": 16,\n    \"rare\": true,\n    \"description\": \"The hops of Kongga provide a deep, satisfying flavour to the locally brewed ale, but seem to wither and spoil rapidly when removed from their native climate. Due to this Kongga Ale is renowned for its authentic flavour and traditional production methods. Served at room temperature with a decorative umbrella.\"\n  },\n  \"korrokungpellets\": {\n    \"id\": \"128667684\",\n    \"symbol\": \"KorroKungPellets\",\n    \"market_id\": \"3228726272\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Korro Kung Pellets\",\n    \"limit\": 20,\n    \"rare\": true,\n    \"description\": \"This exotic fertiliser is made from the crushed bodies of the native life forms siphoned from the nearby gas giants vast ammonia oceans in unsustainable quantities. It is reported to have invigorated even the most barren and arid of soils, but has also proved to be lethal to some crops.\"\n  },\n  \"landmines\": {\n    \"id\": \"128672312\",\n    \"symbol\": \"Landmines\",\n    \"category\": \"Weapons\",\n    \"name\": \"Landmines\",\n    \"description\": \"A cheap and effective way of creating area denial. These explosive devices are banned in most jurisdictions and are effective against personnel and land vehicles.\"\n  },\n  \"lanthanum\": {\n    \"id\": \"128672298\",\n    \"symbol\": \"Lanthanum\",\n    \"category\": \"Metals\",\n    \"name\": \"Lanthanum\",\n    \"description\": \"Lanthanum, La, atomic number 57. Melting point 1193K. is a soft metallic element used as an additive in glass. It's properties make it ideal for optical communications systems, other lighting applications and as a catalyst for various refining processes.\"\n  },\n  \"largeexplorationdatacash\": {\n    \"id\": \"128672136\",\n    \"symbol\": \"LargeExplorationDataCash\",\n    \"category\": \"Salvage\",\n    \"name\": \"Large Survey Data Cache\",\n    \"description\": \"Occasionally survey ships go missing during their journeys into the black. On even rarer occasions their cache of survey data can be retrieved and these are highly sought after by institutions and private interests.\"\n  },\n  \"lavianbrandy\": {\n    \"id\": \"128666747\",\n    \"symbol\": \"LavianBrandy\",\n    \"market_id\": \"128106744\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Lavian Brandy\",\n    \"limit\": 24,\n    \"rare\": true,\n    \"description\": \"A highly valued liquor from the old world of Lave. Using ancient breeds of grains grown in it's tropical climate, under a permit from the government, the distillate is kept in old earth oak barrels and held in an orbital maturing facility for decades to achieve maximum richness.\"\n  },\n  \"leather\": {\n    \"id\": \"128049190\",\n    \"symbol\": \"Leather\",\n    \"category\": \"Textiles\",\n    \"name\": \"Leather\",\n    \"description\": \"Assorted tanned animal hides. Used in industry to produce clothing and high value furnishings.\"\n  },\n  \"leestianeviljuice\": {\n    \"id\": \"128667715\",\n    \"symbol\": \"LeestianEvilJuice\",\n    \"market_id\": \"128639992\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Leestian Evil Juice\",\n    \"limit\": 14,\n    \"rare\": true,\n    \"description\": \"Leestian evil juice acquired its name from local security forces, claiming that those intoxicated with this powerful liquor seem to be possessed with a pure evil.\"\n  },\n  \"lepidolite\": {\n    \"id\": \"128049161\",\n    \"symbol\": \"Lepidolite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Lepidolite\",\n    \"description\": \"Lepidolite: chemical formula K(Li,Al,Rb)3(Al,Si)4O10(F,OH)2. A purplish pink phyllosilicate mineral. Source of Lithium once refined.\"\n  },\n  \"lftvoidextractcoffee\": {\n    \"id\": \"128667685\",\n    \"symbol\": \"LFTVoidExtractCoffee\",\n    \"market_id\": \"3229028864\",\n    \"category\": \"Foods\",\n    \"name\": \"Void Extract Coffee\",\n    \"limit\": 18,\n    \"rare\": true,\n    \"description\": \"Brewed using particularly robust beans, the flavour and caffeine is extracted from the beans using custom technology. Harnessing the power of the vacuum of space to enrich comet water, the method creates a beverage noted for its potency.\"\n  },\n  \"liquidoxygen\": {\n    \"id\": \"128673851\",\n    \"symbol\": \"LiquidOxygen\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Liquid oxygen\",\n    \"description\": \"Oxygen that has been cooled to the point of condensation. Useful in cryogenics or to oxidise other substances.\"\n  },\n  \"liquor\": {\n    \"id\": \"128049216\",\n    \"symbol\": \"Liquor\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Liquor\",\n    \"description\": \"A range of luxury drinks made from distilled, fermented grains and fruits, usually containing a high percentage of alcohol. The narcotic effect means it is illegal in some jurisdictions.\"\n  },\n  \"lithium\": {\n    \"id\": \"128049173\",\n    \"symbol\": \"Lithium\",\n    \"category\": \"Metals\",\n    \"name\": \"Lithium\",\n    \"description\": \"Lithium, Li, atomic number 3. Melting point 453K. A silvery white alkali metal used by industry in ceramic production, and in electronic devices for energy storage. Before the advent of direct brain treatments it was used to treat human mental disorders in early history.\"\n  },\n  \"lithiumhydroxide\": {\n    \"id\": \"128673853\",\n    \"symbol\": \"LithiumHydroxide\",\n    \"category\": \"Minerals\",\n    \"name\": \"Lithium Hydroxide\",\n    \"description\": \"Lithium Hydroxide, LiOH, is a hygroscopic material often used for scrubbing CO₂ from life support systems. It is also used within certain ceramics and as a heat transfer medium.\"\n  },\n  \"livehecateseaworms\": {\n    \"id\": \"128667051\",\n    \"symbol\": \"LiveHecateSeaWorms\",\n    \"market_id\": \"128042496\",\n    \"category\": \"Foods\",\n    \"name\": \"Live Hecate Sea Worms\",\n    \"limit\": 13,\n    \"rare\": true,\n    \"description\": \"Harvested from hydrothermal vents and prized for the sulphurous salty flavour. They are best eaten live to ensure freshness.\"\n  },\n  \"lowtemperaturediamond\": {\n    \"id\": \"128673848\",\n    \"symbol\": \"LowTemperatureDiamond\",\n    \"category\": \"Minerals\",\n    \"name\": \"Low Temperature Diamonds\",\n    \"description\": \"Low Temperature Diamonds, C, are formed under intense pressure (as with regular diamonds), but without a heat component.\"\n  },\n  \"ltthypersweet\": {\n    \"id\": \"128667688\",\n    \"symbol\": \"LTTHyperSweet\",\n    \"market_id\": \"3224166400\",\n    \"category\": \"Foods\",\n    \"name\": \"LTT Hyper Sweet\",\n    \"limit\": 19,\n    \"rare\": true,\n    \"description\": \"Created by combining the DNA of the universe's sweetest crops, to create the sweetest substance of them all. It turns out it's highly addictive.\"\n  },\n  \"lyraeweed\": {\n    \"id\": \"128667028\",\n    \"symbol\": \"LyraeWeed\",\n    \"market_id\": \"3226417152\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Lyrae Weed\",\n    \"limit\": 10,\n    \"rare\": true,\n    \"description\": \"This infamous drug grown exclusively on 16 Lyrae 5 is still the narcotic of choice for overpaid celebrities and the super-rich. It has almost become more of a status symbol than a recreational drug.\"\n  },\n  \"m3_tissuesample_membrane\": {\n    \"id\": \"128922782\",\n    \"symbol\": \"M3_TissueSample_Membrane\",\n    \"category\": \"Salvage\",\n    \"name\": \"Mollusc Membrane\",\n    \"description\": \"A sample of membrane from a from a space-based mollusc.\"\n  },\n  \"m3_tissuesample_mycelium\": {\n    \"id\": \"128922783\",\n    \"symbol\": \"M3_TissueSample_Mycelium\",\n    \"category\": \"Salvage\",\n    \"name\": \"Mollusc Mycelium\",\n    \"description\": \"A sample of the mycelium of a space-based mollusc.\"\n  },\n  \"m3_tissuesample_spores\": {\n    \"id\": \"128922784\",\n    \"symbol\": \"M3_TissueSample_Spores\",\n    \"category\": \"Salvage\",\n    \"name\": \"Mollusc Spores\",\n    \"description\": \"A sample of spores from a from a space-based mollusc.\"\n  },\n  \"m_tissuesample_fluid\": {\n    \"id\": \"128922517\",\n    \"symbol\": \"M_TissueSample_Fluid\",\n    \"category\": \"Salvage\",\n    \"name\": \"Mollusc Fluid\",\n    \"description\": \"A fluid sample from a space-based mollusc.\"\n  },\n  \"m_tissuesample_nerves\": {\n    \"id\": \"128922519\",\n    \"symbol\": \"M_TissueSample_Nerves\",\n    \"category\": \"Salvage\",\n    \"name\": \"Mollusc Brain Tissue\",\n    \"description\": \"A sample of brain tissue from a space-based mollusc.\"\n  },\n  \"m_tissuesample_soft\": {\n    \"id\": \"128922518\",\n    \"symbol\": \"M_TissueSample_Soft\",\n    \"category\": \"Salvage\",\n    \"name\": \"Mollusc Soft Tissue\",\n    \"description\": \"A sample of soft tissue from a space-based mollusc.\"\n  },\n  \"magneticemittercoil\": {\n    \"id\": \"128673869\",\n    \"symbol\": \"MagneticEmitterCoil\",\n    \"category\": \"Machinery\",\n    \"name\": \"Magnetic Emitter Coil\",\n    \"description\": \"These custom made magnetic emitter coils are used to focus and guide wireless forms of energy transfer. These can be found at Steiner Platform in the Aasgaa system\"\n  },\n  \"marinesupplies\": {\n    \"id\": \"128049223\",\n    \"symbol\": \"MarineSupplies\",\n    \"category\": \"Machinery\",\n    \"name\": \"Marine Equipment\",\n    \"description\": \"A wide range of industrial scale equipment for marine agriculture. Submersibles, feedstock dispersing equipment, fishing equipment, nets and underwater confinements.\"\n  },\n  \"masterchefs\": {\n    \"id\": \"128672316\",\n    \"symbol\": \"MasterChefs\",\n    \"market_id\": \"128123640\",\n    \"category\": \"Slavery\",\n    \"name\": \"Master Chefs\",\n    \"limit\": 26,\n    \"rare\": true,\n    \"description\": \"Master Chefs are selected based on genetic markers that tend to favour an aptitude for the gourmet. Little is known about them except that they are kidnapped as children and then trained under mysterious conditions to bring out their genetic cooking potential. The use of Master Chefs is illegal in most Federal and Alliance systems, but is regarded as a sign of high status in many Imperial systems. Many anti-slavery protest groups have tried to free Master Chefs from their life of culinary bondage, yet due to their training, most return of their own free will to serve. Theirs is a life of servitude - they know nothing but to cook.\"\n  },\n  \"mechucoshightea\": {\n    \"id\": \"128667689\",\n    \"symbol\": \"MechucosHighTea\",\n    \"market_id\": \"3228398848\",\n    \"category\": \"Foods\",\n    \"name\": \"Mechucos High Tea\",\n    \"limit\": 12,\n    \"rare\": true,\n    \"description\": \"Mechucos high tea is so named for the dizzying highs caused by its consumption. Most users recommend restricting consumption to specific times of the day, and only with a side plate of restorative sandwiches and cakes.\"\n  },\n  \"medbstarlube\": {\n    \"id\": \"128667690\",\n    \"symbol\": \"MedbStarlube\",\n    \"market_id\": \"3228762368\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Medb Starlube\",\n    \"limit\": 18,\n    \"rare\": true,\n    \"description\": \"The universal lubricator used in construction, machinery and agriculture. It also has a number of domestic applications. It's slogan is: the lube that keeps the galaxy spinning!\"\n  },\n  \"medicaldiagnosticequipment\": {\n    \"id\": \"128682047\",\n    \"symbol\": \"MedicalDiagnosticEquipment\",\n    \"category\": \"Technology\",\n    \"name\": \"Medical Diagnostic Equipment\",\n    \"description\": \"Equipment which allows for rapid diagnosis of a large number of ailments and diseases. This equipment also screens for and identifies prohibited substances.\"\n  },\n  \"metaalloys\": {\n    \"id\": \"128672701\",\n    \"symbol\": \"MetaAlloys\",\n    \"category\": \"Industrial Materials\",\n    \"name\": \"Meta-Alloys\",\n    \"description\": \"Meta-alloys have a complex lattice structure with large internal voids. They are cellular in nature, and formed organically. They are incredibly strong - much stronger than foamed aluminium for example. Many elements form the structure so technically they are alloys, but the composition is different in different parts of the cell walls for strength. They are good thermal insulators, and have a high melting point, but if they are melted they lose all their special properties and become a conventional alloy. They are easily machined, but as yet cannot be manufactured, only found in space. They are associated with recently discovered alien entities nicknamed 'Large Barnacles' by interstellar explorers. These appear to be common in certain parts of space, although no-one is certain why. This material has been heralded as the next step in materials technology. It is ultra-light and stronger and more versatile than most commercially available alloys.\"\n  },\n  \"methaneclathrate\": {\n    \"id\": \"128673854\",\n    \"symbol\": \"MethaneClathrate\",\n    \"category\": \"Minerals\",\n    \"name\": \"Methane Clathrate\",\n    \"description\": \"Methane Clathrate, CH4·5.75H2O or 4CH4·23H2O, is a chemical where methane is bound within a crystal lattice of water.\"\n  },\n  \"methanolmonohydratecrystals\": {\n    \"id\": \"128673852\",\n    \"symbol\": \"MethanolMonohydrateCrystals\",\n    \"category\": \"Minerals\",\n    \"name\": \"Methanol Monohydrate Crystals\",\n    \"description\": \"Methanol Monohydrate, CH6O2, are crystals with unusual thermoelastic properties which are useful for mechanical and optical materials.\"\n  },\n  \"microcontrollers\": {\n    \"id\": \"128673873\",\n    \"symbol\": \"MicroControllers\",\n    \"category\": \"Technology\",\n    \"name\": \"Micro Controllers\",\n    \"description\": \"Micro controllers are small units to provide actuation and process control for lightweight devices.\"\n  },\n  \"militarygradefabrics\": {\n    \"id\": \"128682045\",\n    \"symbol\": \"MilitaryGradeFabrics\",\n    \"category\": \"Textiles\",\n    \"name\": \"Military Grade Fabrics\",\n    \"description\": \"Made fom high-grade fabrics which are highly durable as well as adaptive to different temperatures and weather conditions, this clothing is essential for military personnel.\"\n  },\n  \"militaryintelligence\": {\n    \"id\": \"128668552\",\n    \"symbol\": \"MilitaryIntelligence\",\n    \"category\": \"Salvage\",\n    \"name\": \"Military Intelligence\",\n    \"description\": \"Highly confidential documents detailing military movements and military strategy. Possession of such documents is highly illegal, due to their sensitive nature. For the same reason they fetch an exceedingly large sum from the right buyer.\"\n  },\n  \"mineralextractors\": {\n    \"id\": \"128049221\",\n    \"symbol\": \"MineralExtractors\",\n    \"category\": \"Machinery\",\n    \"name\": \"Mineral Extractors\",\n    \"description\": \"Industrially produced 'grey goo' micro devices that are injected into minerals to separate specific constituents from mixed ores along grain boundaries. Extraction sites that utilise mineral extractors in their processes are significantly more efficient.\"\n  },\n  \"mineraloil\": {\n    \"id\": \"128049203\",\n    \"symbol\": \"MineralOil\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Mineral Oil\",\n    \"description\": \"This is an organic oil that is a useful raw material for producing a wide range of synthetic materials from plastics to ceramics. It is derived from the decay of organic materials, and can often be found beneath the ground on outdoor worlds. Surprisingly, mineral oil was burnt for energy on ancient Earth.\"\n  },\n  \"modularterminals\": {\n    \"id\": \"128673870\",\n    \"symbol\": \"ModularTerminals\",\n    \"category\": \"Machinery\",\n    \"name\": \"Modular Terminals\",\n    \"description\": \"Used by factions as a reward for mission contracts. Modular terminals are ubiquitous items that provide a hardware display of data in a visual and audio format. While they can be sold at markets for a minimal price, these are more often used by engineers for their upgrades.\"\n  },\n  \"moissanite\": {\n    \"id\": \"128672296\",\n    \"symbol\": \"Moissanite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Moissanite\",\n    \"description\": \"This crystalline silicon carbide mineral has applications in electronics manufacture, and thermal energy absorption. It is also used in jewellery and other crafted items.\"\n  },\n  \"mokojingbeastfeast\": {\n    \"id\": \"128667691\",\n    \"symbol\": \"MokojingBeastFeast\",\n    \"market_id\": \"3229612800\",\n    \"category\": \"Foods\",\n    \"name\": \"Mokojing Beast Feast\",\n    \"limit\": 7,\n    \"rare\": true,\n    \"description\": \"Marketed as \\\"the galaxy's most dangerous cereal\\\", with a tagline imploring the consumer to \\\"eat it before it eats you\\\", Beast Feast claims to contain trace elements of over two hundred and twenty three confirmed man-eater species, allowing consumers to \\\"eat their way to the top of the food chain\\\".\"\n  },\n  \"momusbogspaniel\": {\n    \"id\": \"128667713\",\n    \"symbol\": \"MomusBogSpaniel\",\n    \"market_id\": \"128075256\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Momus Bog Spaniel\",\n    \"limit\": 7,\n    \"rare\": true,\n    \"description\": \"Famed for its inability to hunt through water, it makes such lifelike duck calls that some interesting cross breeds are now being researched.\"\n  },\n  \"monazite\": {\n    \"id\": \"128924327\",\n    \"symbol\": \"Monazite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Monazite\",\n    \"description\": \"Monazite is a reddish-brown phosphate mineral containing thorium and sometimes uranium, making it radioactive.\"\n  },\n  \"motronaexperiencejelly\": {\n    \"id\": \"128667676\",\n    \"symbol\": \"MotronaExperienceJelly\",\n    \"market_id\": \"3229750528\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Motrona Experience Jelly\",\n    \"limit\": 11,\n    \"rare\": true,\n    \"description\": \"A programmable narcotic created in small batches and pre-programmed to provide whatever experience the client wishes to hallucinate. Usually this drug is created only on a bespoke order from an unknown client, but some worlds are willing to sell Pre-programmed samples on the general market.\"\n  },\n  \"mukusubiichitinos\": {\n    \"id\": \"128667692\",\n    \"symbol\": \"MukusubiiChitinOs\",\n    \"market_id\": \"3221719296\",\n    \"category\": \"Foods\",\n    \"name\": \"Mukusubii Chitin-os\",\n    \"limit\": 15,\n    \"rare\": true,\n    \"description\": \"The chitinous native insects of nearby worlds are processed using industrial mining equipment, then re-constituted into convenient circles. Marketed as a food for those who like a little crunch.\"\n  },\n  \"mulachigiantfungus\": {\n    \"id\": \"128667693\",\n    \"symbol\": \"MulachiGiantFungus\",\n    \"market_id\": \"3228892672\",\n    \"category\": \"Foods\",\n    \"name\": \"Mulachi Giant Fungus\",\n    \"limit\": 22,\n    \"rare\": true,\n    \"description\": \"The fungal life forms found in Mulachi can grow to occupy entire continents! Specifically trained teams are sent to the planet's surface to industrially harvest large portions of the fungal structures, but workers must be wary of the deadly fungal spores.\"\n  },\n  \"musgravite\": {\n    \"id\": \"128924328\",\n    \"symbol\": \"Musgravite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Musgravite\",\n    \"description\": \"Musgravite is an oxide mineral first discovered on Earth in the Musgrave mountain range in Australia, hence its name.\"\n  },\n  \"mutomimager\": {\n    \"id\": \"128672310\",\n    \"symbol\": \"MuTomImager\",\n    \"category\": \"Technology\",\n    \"name\": \"Muon Imager\",\n    \"description\": \"Muon topographical instruments providing deep surface scans of planets and moons.\"\n  },\n  \"mysteriousidol\": {\n    \"id\": \"128682051\",\n    \"symbol\": \"MysteriousIdol\",\n    \"category\": \"Salvage\",\n    \"name\": \"Mysterious Idol\",\n    \"description\": \"This appears to be an idol crafted to worship some sort of deity or higher form of life.\"\n  },\n  \"nanobreakers\": {\n    \"id\": \"128673871\",\n    \"symbol\": \"Nanobreakers\",\n    \"category\": \"Technology\",\n    \"name\": \"Nanobreakers\",\n    \"description\": \"Used by factions as a reward for mission contracts. Nanobreakers are tiny machines used for disassembling certain, specialised materials. While they can be sold at markets for a minimal price, these are more often used by engineers for their upgrades.\"\n  },\n  \"nanomedicines\": {\n    \"id\": \"128913661\",\n    \"symbol\": \"Nanomedicines\",\n    \"market_id\": \"3226651904\",\n    \"category\": \"Medicines\",\n    \"name\": \"Nanomedicines\",\n    \"limit\": 40,\n    \"rare\": true,\n    \"description\": \"These sophisticated pharmaceuticals use nanoscale materials to target disease far more efficiently than conventional medicine. The product of an ambitious R&D programme, they are developed by the technologically advanced community Utopia and exclusively distributed by Vandermeer Corporation in the Kuma system.\"\n  },\n  \"naturalfabrics\": {\n    \"id\": \"128049191\",\n    \"symbol\": \"NaturalFabrics\",\n    \"category\": \"Textiles\",\n    \"name\": \"Natural Fabrics\",\n    \"description\": \"A range of high value fabrics derived from natural organic materials generally produced on outdoor worlds. These are used in industrial locations to make clothing and other items.\"\n  },\n  \"neofabricinsulation\": {\n    \"id\": \"128673858\",\n    \"symbol\": \"NeofabricInsulation\",\n    \"category\": \"Industrial Materials\",\n    \"name\": \"Neofabric Insulation\",\n    \"description\": \"Neofabric insulation is a material using complementary fibre structures to retain, or protect from, heat build up.\"\n  },\n  \"neritusberries\": {\n    \"id\": \"128667056\",\n    \"symbol\": \"NeritusBerries\",\n    \"market_id\": \"3228206080\",\n    \"category\": \"Foods\",\n    \"name\": \"Neritus Berries\",\n    \"limit\": 13,\n    \"rare\": true,\n    \"description\": \"This native plant form produces clear red fruit with a unique flavor. The plant is carnivorous and the berries contain blood plasma from its victims which is said to be an aid to slimming.\"\n  },\n  \"nerveagents\": {\n    \"id\": \"128672304\",\n    \"symbol\": \"NerveAgents\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Nerve Agents\",\n    \"description\": \"Used in medical research but because of the potential to be weaponised is a controlled substance in many jurisdictions.\"\n  },\n  \"ngadandarifireopals\": {\n    \"id\": \"128667694\",\n    \"symbol\": \"NgadandariFireOpals\",\n    \"market_id\": \"3226127872\",\n    \"category\": \"Metals\",\n    \"name\": \"Ngadandari Fire Opals\",\n    \"limit\": 6,\n    \"rare\": true,\n    \"description\": \"A particularly rich seam of high grade opals famed for their mesmerising fire-like reflections. Imperial citizens view them as a status symbol, representing the fire of the birth of the empire. Their high market value has lead to the planet being systematically strip-mined by Imperial slaves.\"\n  },\n  \"ngunamodernantiques\": {\n    \"id\": \"128667046\",\n    \"symbol\": \"NgunaModernAntiques\",\n    \"market_id\": \"3221538304\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Nguna Modern Antiques\",\n    \"limit\": 4,\n    \"rare\": true,\n    \"description\": \"Local craftsmen are specialists in bringing the past into your life crafted from authentically accurate materials, a mark of distinction.\"\n  },\n  \"njangarisaddles\": {\n    \"id\": \"128667040\",\n    \"symbol\": \"NjangariSaddles\",\n    \"market_id\": \"3222416896\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Njangari Saddles\",\n    \"limit\": 13,\n    \"rare\": true,\n    \"description\": \"The Saddlers of Njangari are renowned for their leather work, and their motto: No job too big or too invertebrate. Whether simple domestic supplies or custom saddles and tack for some of the more exotic species in the galaxy, they are the very best.\"\n  },\n  \"noneuclidianexotanks\": {\n    \"id\": \"128667687\",\n    \"symbol\": \"NonEuclidianExotanks\",\n    \"market_id\": \"3224135424\",\n    \"category\": \"Machinery\",\n    \"name\": \"Non Euclidian Exotanks\",\n    \"limit\": 16,\n    \"rare\": true,\n    \"description\": \"Produced under licence, and with the approval of a number of environmental groups, these tanks can be used to create a truly alien habitat capable of sustaining life forms from a variety on non earth like environments. They are available in a number of mind bending shapes.\"\n  },\n  \"nonlethalweapons\": {\n    \"id\": \"128049236\",\n    \"symbol\": \"NonLethalWeapons\",\n    \"category\": \"Weapons\",\n    \"name\": \"Non-Lethal Weapons\",\n    \"description\": \"Non-Lethal Weapons are hand-held weapons used by law enforcement and for personal protection. They temporarily stun or incapacitate a human target, and are legal in most jurisdictions.\"\n  },\n  \"occupiedcryopod\": {\n    \"id\": \"128672125\",\n    \"symbol\": \"OccupiedCryoPod\",\n    \"category\": \"Salvage\",\n    \"name\": \"Occupied Escape Pod\",\n    \"description\": \"Escape pods are typically made from composite materials designed to withstand extremes of temperature and pressure, and can protect a single occupant in the event of ship destruction.\"\n  },\n  \"ochoengchillies\": {\n    \"id\": \"128667057\",\n    \"symbol\": \"OchoengChillies\",\n    \"market_id\": \"3226719232\",\n    \"category\": \"Foods\",\n    \"name\": \"Ochoeng Chillies\",\n    \"limit\": 14,\n    \"rare\": true,\n    \"description\": \"Due to the relaxation of various genetic modification laws, Ochoeng prides itself on having produced the galaxy's hottest chilli pepper. There have been numerous calls to reclassify the substances as toxic, however the produce remains legal in most systems.\"\n  },\n  \"onionhead\": {\n    \"id\": \"128667029\",\n    \"symbol\": \"OnionHead\",\n    \"market_id\": \"128129272\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Onionhead\",\n    \"limit\": 12,\n    \"rare\": true,\n    \"description\": \"The Onionhead flower is native to HIP 55118, and its seeds contain the well-known psychedelic narcotic. Illegal in most jurisdictions.\"\n  },\n  \"onionheada\": {\n    \"id\": \"128672812\",\n    \"symbol\": \"OnionHeadA\",\n    \"market_id\": \"3226977024\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Onionhead Alpha Strain\",\n    \"limit\": 10,\n    \"rare\": true,\n    \"description\": \"A new and improved strain of the famous Onionhead narcotic.\"\n  },\n  \"onionheadb\": {\n    \"id\": \"128673069\",\n    \"symbol\": \"OnionHeadB\",\n    \"market_id\": \"3223027200\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Onionhead Beta Strain\",\n    \"limit\": 10,\n    \"rare\": true,\n    \"description\": \"An adapted strain of the Onionhead narcotic favourable to local conditions.\"\n  },\n  \"onionheadc\": {\n    \"id\": \"128983059\",\n    \"symbol\": \"OnionHeadC\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Onionhead Gamma Strain\",\n    \"description\": \"A new strain of Onionhead tailored to grow in local conditions.\"\n  },\n  \"opal\": {\n    \"id\": \"128924332\",\n    \"symbol\": \"Opal\",\n    \"category\": \"Minerals\",\n    \"name\": \"Void Opals\",\n    \"description\": \"Void opals are a mineraloid prized by various cultures. Their lack of reflectivity means that they seem almost to absorb light, hence their name.\"\n  },\n  \"ophiuchiexinoartefacts\": {\n    \"id\": \"128667668\",\n    \"symbol\": \"OphiuchiExinoArtefacts\",\n    \"market_id\": \"3228939264\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Ophiuch Exino Artefacts\",\n    \"limit\": 7,\n    \"rare\": true,\n    \"description\": \"These strange sculptures are believed by some to have been created by a now extinct ancient sentient race. Others have theorised that the sculptures are a natural formation caused by local weather patterns. Most economists agree that there are massive profits made from the gullible and wealthy collectors.\"\n  },\n  \"orrerianviciousbrew\": {\n    \"id\": \"128667711\",\n    \"symbol\": \"OrrerianViciousBrew\",\n    \"market_id\": \"128166392\",\n    \"category\": \"Foods\",\n    \"name\": \"Orrerian Vicious Brew\",\n    \"limit\": 32,\n    \"rare\": true,\n    \"description\": \"This drink is so high in caffeine and Natural sugars that it is often classed as a Narcotic. The addictive properties and resulting sleep deprivation are famed.\"\n  },\n  \"osmium\": {\n    \"id\": \"128671118\",\n    \"symbol\": \"Osmium\",\n    \"category\": \"Metals\",\n    \"name\": \"Osmium\",\n    \"description\": \"Osmium, Os, atomic number 76, melting point 3306K. A very hard bluish-white metal. Provides extreme durability even at high temperatures, and is a valuable constituent in specialist alloys.\"\n  },\n  \"p_particulatesample\": {\n    \"id\": \"128922523\",\n    \"symbol\": \"P_ParticulateSample\",\n    \"category\": \"Salvage\",\n    \"name\": \"Anomaly Particles\",\n    \"description\": \"A collection of particles from a space-based anomaly.\"\n  },\n  \"painite\": {\n    \"id\": \"128668550\",\n    \"symbol\": \"Painite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Painite\",\n    \"description\": \"Painite is an incredibly rare borate mineral that typically takes the form of a red gemstone. Highly sought after by socialities throughout occupied space, it is renowned for being one of the most valuable types of gemstones in the galaxy.\"\n  },\n  \"palladium\": {\n    \"id\": \"128049153\",\n    \"symbol\": \"Palladium\",\n    \"category\": \"Metals\",\n    \"name\": \"Palladium\",\n    \"description\": \"Palladium, PD, 46. Often used in electronics and for purifying noxious gasses.\"\n  },\n  \"pantaaprayersticks\": {\n    \"id\": \"128667708\",\n    \"symbol\": \"PantaaPrayerSticks\",\n    \"market_id\": \"3228824064\",\n    \"category\": \"Medicines\",\n    \"name\": \"Pantaa Prayer Sticks\",\n    \"limit\": 36,\n    \"rare\": true,\n    \"description\": \"These sacred items are said to bring wealth and prosperity to all who inhale their smoke, as can be seen by how prosperous George Pantazis has become.\"\n  },\n  \"pavoniseargrubs\": {\n    \"id\": \"128667701\",\n    \"symbol\": \"PavonisEarGrubs\",\n    \"market_id\": \"128117240\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Pavonis Ear Grubs\",\n    \"limit\": 30,\n    \"rare\": true,\n    \"description\": \"Native to the harsh desert climate, these unpleasant creatures will burrow into any soft surface, including flesh, to avoid the sun. Their resemblance of a walking human ear lead to their name. Some slavers use these grubs as a restrainer for their captives, attaching a dormant extra ear to the forehead of their slave that can be remotely triggered.\"\n  },\n  \"performanceenhancers\": {\n    \"id\": \"128049209\",\n    \"symbol\": \"PerformanceEnhancers\",\n    \"category\": \"Medicines\",\n    \"name\": \"Performance Enhancers\",\n    \"description\": \"A broad category of engineered substances that enhance human physical or mental or emotional capabilities. Produced on high tech worlds, and widely consumed. There are some risks from excessive consumption and they are illegal in some jurisdictions.\"\n  },\n  \"personaleffects\": {\n    \"id\": \"128672126\",\n    \"symbol\": \"PersonalEffects\",\n    \"category\": \"Salvage\",\n    \"name\": \"Personal Effects\",\n    \"description\": \"Personal items are often transported and sometimes lost while travelling within and between star systems. They usually have little value except to their owners.\"\n  },\n  \"personalgifts\": {\n    \"id\": \"128672431\",\n    \"symbol\": \"PersonalGifts\",\n    \"market_id\": \"3223105792\",\n    \"category\": \"Salvage\",\n    \"name\": \"Personal Gifts\",\n    \"limit\": 20,\n    \"rare\": true,\n    \"description\": \"Colourfully wrapped presents for those naughty and nice, although the nice ones do appear to be bigger.\"\n  },\n  \"personalweapons\": {\n    \"id\": \"128049233\",\n    \"symbol\": \"PersonalWeapons\",\n    \"category\": \"Weapons\",\n    \"name\": \"Personal Weapons\",\n    \"description\": \"Personal firearms, designed for both self defence and offence, but intended to kill a human attacker. Illegal or highly controlled in many jurisdictions.\"\n  },\n  \"pesticides\": {\n    \"id\": \"128049205\",\n    \"symbol\": \"Pesticides\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Pesticides\",\n    \"description\": \"Pesticides are targeted engineered substances, created to disrupt a particular part of the biological processes within a given organic pest. Used on agricultural worlds to reduce pest damage to crops or livestock.\"\n  },\n  \"platinum\": {\n    \"id\": \"128049152\",\n    \"symbol\": \"Platinum\",\n    \"category\": \"Metals\",\n    \"name\": \"Platinum\",\n    \"description\": \"Platinum, Pt. atomic number 78. Melting point 2,041K. A grey-white precious metal used as a catalyst within many industrial processes, in addition to its value in electronics and luxury goods because of its resistance to corrosion.\"\n  },\n  \"platinumaloy\": {\n    \"id\": \"128793114\",\n    \"symbol\": \"PlatinumAloy\",\n    \"market_id\": \"3223779840\",\n    \"category\": \"Metals\",\n    \"name\": \"Platinum Alloy\",\n    \"limit\": 13,\n    \"rare\": true,\n    \"description\": \"An ultra-strong metal alloy used in the manufacture of robotics, heavy machinery and weaponry. Due to the dangerous nature of mining and processing the alloy and fusing it with Platinum, most systems refused to produce it and the technique was almost lost. Now the factions of the Nahuatl system are the only people with the knowledge to create the metal.\"\n  },\n  \"politicalprisoner\": {\n    \"id\": \"128672134\",\n    \"symbol\": \"PoliticalPrisoner\",\n    \"category\": \"Salvage\",\n    \"name\": \"Political Prisoners\",\n    \"description\": \"Political prisoners are sometimes transported in cargo pods to help disguise their movement.\"\n  },\n  \"polymers\": {\n    \"id\": \"128049197\",\n    \"symbol\": \"Polymers\",\n    \"category\": \"Industrial Materials\",\n    \"name\": \"Polymers\",\n    \"description\": \"Polymers are materials made of long chains of molecules. They are synthesised from mineral oil in refineries, and then used by industry to manufacture a very wide range of goods.\"\n  },\n  \"powerconverter\": {\n    \"id\": \"128673862\",\n    \"symbol\": \"PowerConverter\",\n    \"category\": \"Machinery\",\n    \"name\": \"Power Converter\",\n    \"description\": \"Power converter used to modify and regulate the energy coming from multiple sources so that it is tuned to the optimal operational requirements of all attached devices. These can be found at Shukor Dock in the Perun system.\"\n  },\n  \"powergenerators\": {\n    \"id\": \"128049217\",\n    \"symbol\": \"PowerGenerators\",\n    \"category\": \"Machinery\",\n    \"name\": \"Power Generators\",\n    \"description\": \"Industrially produced components for Power Generators, used throughout human space. Though the Sirius Corporation have a near monopoly on manufacture of most new larger units, many other companies produce the vast amount of consumables, spares and ancillary parts for them.\"\n  },\n  \"powergridassembly\": {\n    \"id\": \"128673863\",\n    \"symbol\": \"PowerGridAssembly\",\n    \"category\": \"Machinery\",\n    \"name\": \"Energy Grid Assembly\",\n    \"description\": \"A specialised energy grid assembly for controlling power flow. These can be found at Pailes Enterprise in the 40 Ceti system.\"\n  },\n  \"powertransferconduits\": {\n    \"id\": \"128673864\",\n    \"symbol\": \"PowerTransferConduits\",\n    \"category\": \"Machinery\",\n    \"name\": \"Power Transfer Bus\",\n    \"description\": \"High energy power transfer units used to deliver power where it is needed. These can be found at Haignere Orbital in the Wuthawchu system.\"\n  },\n  \"praseodymium\": {\n    \"id\": \"128673845\",\n    \"symbol\": \"Praseodymium\",\n    \"category\": \"Metals\",\n    \"name\": \"Praseodymium\",\n    \"description\": \"Praseodymium, Pr, atomic number 59. Melting point 1208K. This is a soft and malleable metal. It is a rare mineral used for a variety of purposes including: a component in enhanced magnets, an alloy component for metals and laser optics.\"\n  },\n  \"preciousgems\": {\n    \"id\": \"128672160\",\n    \"symbol\": \"PreciousGems\",\n    \"category\": \"Salvage\",\n    \"name\": \"Precious Gems\",\n    \"description\": \"These materials have inherent value. They are very useful in maintaining stability in otherwise volatile economies. Alongside the wealth factor, precious gems and metals play a significant role in the generation of extravagant status symbols.\"\n  },\n  \"progenitorcells\": {\n    \"id\": \"128049669\",\n    \"symbol\": \"ProgenitorCells\",\n    \"category\": \"Medicines\",\n    \"name\": \"Progenitor Cells\",\n    \"description\": \"Targeted engineered cells to restore damage in older human cells. These can greatly extend the life of humans that take them. Some cultures believe it is immoral, especially as they tend to be used by the richest people, and so they are illegal in some jurisdictions.\"\n  },\n  \"prohibitedresearchmaterials\": {\n    \"id\": \"128682052\",\n    \"symbol\": \"ProhibitedResearchMaterials\",\n    \"category\": \"Salvage\",\n    \"name\": \"Prohibited Research Materials\",\n    \"description\": \"Contains theoretical and experimental research, along with samples, the subject and contents of which are strictly prohibited by most authorities; their very existence is a crime, however their contents are highly valuable.\"\n  },\n  \"pyrophyllite\": {\n    \"id\": \"128672297\",\n    \"symbol\": \"Pyrophyllite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Pyrophyllite\",\n    \"description\": \"This phyllosilicate mineral is used in high pressure experiments. On some worlds it's also a material for intricate arts and crafts.\"\n  },\n  \"radiationbaffle\": {\n    \"id\": \"128673865\",\n    \"symbol\": \"RadiationBaffle\",\n    \"category\": \"Machinery\",\n    \"name\": \"Radiation Baffle\",\n    \"description\": \"Radiation baffles are used to restrict and direct radiation emissions. These can be found at Sopwith Arsenal in the Taevaisa system.\"\n  },\n  \"rajukrustoves\": {\n    \"id\": \"128667047\",\n    \"symbol\": \"RajukruStoves\",\n    \"market_id\": \"3227512320\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Rajukru Multi-Stoves\",\n    \"limit\": 17,\n    \"rare\": true,\n    \"description\": \"Multipurpose stoves that can be operated using almost any fuel. Used on many frontier worlds where other technology cannot be relied on or just does not work. Galactic heritage approved. The famed rustic designs are in use on camp fires throughout the galaxy.\"\n  },\n  \"rapabaosnakeskins\": {\n    \"id\": \"128667063\",\n    \"symbol\": \"RapaBaoSnakeSkins\",\n    \"market_id\": \"3222875648\",\n    \"category\": \"Textiles\",\n    \"name\": \"Rapa Bao Snake Skins\",\n    \"limit\": 11,\n    \"rare\": true,\n    \"description\": \"Rapa Bao Snake skins are farmed throughout the Galaxy for their size and strength. The snakes are free-range and many workers have lost their lives whilst tending to this vital crop.\"\n  },\n  \"reactivearmour\": {\n    \"id\": \"128049235\",\n    \"symbol\": \"ReactiveArmour\",\n    \"category\": \"Weapons\",\n    \"name\": \"Reactive Armour\",\n    \"description\": \"Capable of actively dissipating large amounts of kinetic, electrical and thermal energy, reactive armour greatly increases the chance of survival of the wearer from sustained weapons fire.\"\n  },\n  \"reinforcedmountingplate\": {\n    \"id\": \"128673867\",\n    \"symbol\": \"ReinforcedMountingPlate\",\n    \"category\": \"Machinery\",\n    \"name\": \"Reinforced Mounting Plate\",\n    \"description\": \"These custom made reinforced mounting plates are used to strengthen the supports for a mounted device. These can be found at Grassmann Station in the Findalibila system.\"\n  },\n  \"resonatingseparators\": {\n    \"id\": \"128049671\",\n    \"symbol\": \"ResonatingSeparators\",\n    \"category\": \"Technology\",\n    \"name\": \"Resonating Separators\",\n    \"description\": \"Self-calibrating tuned oscillators that resonate at a range of specific frequencies, used at refineries for bulk processing of ores.\"\n  },\n  \"rhodplumsite\": {\n    \"id\": \"128924325\",\n    \"symbol\": \"Rhodplumsite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Rhodplumsite\",\n    \"description\": \"Rhodplumsite is a rhodium-lead sulphide mineral distinguished by the fact that it exhibits different colours when viewed from different angles, appearing white, creamy pink or grayish blue.\"\n  },\n  \"robotics\": {\n    \"id\": \"128049227\",\n    \"symbol\": \"Robotics\",\n    \"category\": \"Technology\",\n    \"name\": \"Robotics\",\n    \"description\": \"Robotics are used to perform simple automated tasks or to act as avatars for remotely located humans in hazardous environments. They are also used for repetitive and highly accurate production line tasks.\"\n  },\n  \"rockforthfertiliser\": {\n    \"id\": \"128924333\",\n    \"symbol\": \"RockforthFertiliser\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Rockforth Fertiliser\",\n    \"description\": \"A synthetic material designed to provide growing plants with essential nutrients.\"\n  },\n  \"rusanioldsmokey\": {\n    \"id\": \"128667082\",\n    \"symbol\": \"RusaniOldSmokey\",\n    \"market_id\": \"3229255680\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Rusani Old Smokey\",\n    \"limit\": 10,\n    \"rare\": true,\n    \"description\": \"Guaranteed genuine non-synthetic tobacco. Fully certified as organic. The only harm done is to yourself.\"\n  },\n  \"rutile\": {\n    \"id\": \"128049163\",\n    \"symbol\": \"Rutile\",\n    \"category\": \"Minerals\",\n    \"name\": \"Rutile\",\n    \"description\": \"Rutile: Titanium Oxide, TiO2. Titanium Ore. A wine-red crystalline mineral used in creating ceramics in high refraction options, and of course refined to produce titanium.\"\n  },\n  \"s6_tissuesample_cells\": {\n    \"id\": \"128922786\",\n    \"symbol\": \"S6_TissueSample_Cells\",\n    \"category\": \"Salvage\",\n    \"name\": \"Pod Outer Tissue\",\n    \"description\": \"A sample of tissue from the outer layers of a space-based seed pod.\"\n  },\n  \"s6_tissuesample_coenosarc\": {\n    \"id\": \"128922787\",\n    \"symbol\": \"S6_TissueSample_Coenosarc\",\n    \"category\": \"Salvage\",\n    \"name\": \"Pod Shell Tissue\",\n    \"description\": \"A sample of tissue from the shell of a space-based seed pod.\"\n  },\n  \"s6_tissuesample_mesoglea\": {\n    \"id\": \"128922785\",\n    \"symbol\": \"S6_TissueSample_Mesoglea\",\n    \"category\": \"Salvage\",\n    \"name\": \"Pod Mesoglea\",\n    \"description\": \"A sample of jelly-like tissue from a space-based seed pod.\"\n  },\n  \"s9_tissuesample_shell\": {\n    \"id\": \"128922781\",\n    \"symbol\": \"S9_TissueSample_Shell\",\n    \"category\": \"Salvage\",\n    \"name\": \"Pod Tissue\",\n    \"description\": \"A sample of tissue from a space-based seed pod.\"\n  },\n  \"s_tissuesample_cells\": {\n    \"id\": \"128922520\",\n    \"symbol\": \"S_TissueSample_Cells\",\n    \"category\": \"Salvage\",\n    \"name\": \"Pod Core Tissue\",\n    \"description\": \"A sample of tissue from the core of a space-based seed pod.\"\n  },\n  \"s_tissuesample_core\": {\n    \"id\": \"128922522\",\n    \"symbol\": \"S_TissueSample_Core\",\n    \"category\": \"Salvage\",\n    \"name\": \"Pod Surface Tissue\",\n    \"description\": \"A sample of tissue from the surface of a space-based seed pod.\"\n  },\n  \"s_tissuesample_surface\": {\n    \"id\": \"128922521\",\n    \"symbol\": \"S_TissueSample_Surface\",\n    \"category\": \"Salvage\",\n    \"name\": \"Pod Dead Tissue\",\n    \"description\": \"A sample of dead tissue from a space-based seed pod.\"\n  },\n  \"samarium\": {\n    \"id\": \"128673847\",\n    \"symbol\": \"Samarium\",\n    \"category\": \"Metals\",\n    \"name\": \"Samarium\",\n    \"description\": \"Samarium, Sm, atomic number 62. Melting point 1345K. This element has remarkable magnetisation properties, far exceeding that of iron. It is also commonly used as a catalyst and chemical reagent.\"\n  },\n  \"sanumameat\": {\n    \"id\": \"128667076\",\n    \"symbol\": \"SanumaMEAT\",\n    \"market_id\": \"3230331136\",\n    \"category\": \"Foods\",\n    \"name\": \"Sanuma Decorative Meat\",\n    \"limit\": 7,\n    \"rare\": true,\n    \"description\": \"One of the most inventive of synthetic meat specialists, growing the meat into fabulous sculptures of flesh \\\"grown on the bone\\\".\"\n  },\n  \"sap8corecontainer\": {\n    \"id\": \"128671443\",\n    \"symbol\": \"SAP8CoreContainer\",\n    \"category\": \"Salvage\",\n    \"name\": \"SAP 8 Core Container\",\n    \"description\": \"This container holds a crystalline shard of unknown origin. Scans indicate that the foot long shard is suspended inside a modified, self-sustaining, fusion-core containment field. Any breach of the field will result in the containers destruction.\"\n  },\n  \"saxonwine\": {\n    \"id\": \"128667671\",\n    \"symbol\": \"SaxonWine\",\n    \"market_id\": \"3227986432\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Saxon Wine\",\n    \"limit\": 13,\n    \"rare\": true,\n    \"description\": \"A near perfect replication of the famed 2093 vintage wines produced on ancient Earth. That year's wine was universally declared the best ever produced, and has yet to be topped. Scientists on Hill Orbital station were able to replicate the famous wine, and now guard the secrets of their formular with great care.\"\n  },\n  \"scientificresearch\": {\n    \"id\": \"128672132\",\n    \"symbol\": \"ScientificResearch\",\n    \"category\": \"Salvage\",\n    \"name\": \"Scientific Research\",\n    \"description\": \"A collection of data and equipment, the results of a series of scientific experiments and observations.\"\n  },\n  \"scientificsamples\": {\n    \"id\": \"128672133\",\n    \"symbol\": \"ScientificSamples\",\n    \"category\": \"Salvage\",\n    \"name\": \"Scientific Samples\",\n    \"description\": \"Most scientific sample analysis is done on site, although certain types of projects require further or separate analysis. These finds can sometimes lead to breakthroughs and are also highly sought after by private collectors.\"\n  },\n  \"scrap\": {\n    \"id\": \"128049248\",\n    \"symbol\": \"Scrap\",\n    \"category\": \"Waste\",\n    \"name\": \"Scrap\",\n    \"description\": \"Assorted unwanted refuse with a high metal content.\"\n  },\n  \"semiconductors\": {\n    \"id\": \"128049199\",\n    \"symbol\": \"Semiconductors\",\n    \"category\": \"Industrial Materials\",\n    \"name\": \"Semiconductors\",\n    \"description\": \"Extremely pure semiconducting crystalline materials are used extensively in the electronics industry.\"\n  },\n  \"serendibite\": {\n    \"id\": \"128924326\",\n    \"symbol\": \"Serendibite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Serendibite\",\n    \"description\": \"Serendibite is a pale yellow, blue-green or greyish blue silicate mineral that takes its name from Serendib, the old Arabic name for Sri Lanka.\"\n  },\n  \"shanscharisorchid\": {\n    \"id\": \"128732551\",\n    \"symbol\": \"ShansCharisOrchid\",\n    \"market_id\": \"128107768\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Shan's Charis Orchid\",\n    \"limit\": 7,\n    \"rare\": true,\n    \"description\": \"Named after its discoverer's late baby daughter, this rare and delicate member of the Orchidaceae family is famed for its short but spectacular flowering and for its exquisite aroma which lingers long in the memory after the flower itself has faded.\"\n  },\n  \"silver\": {\n    \"id\": \"128049155\",\n    \"symbol\": \"Silver\",\n    \"category\": \"Metals\",\n    \"name\": \"Silver\",\n    \"description\": \"Silver, Ag, atomic number 47. Melting point 1234K. A precious metal valued in jewelry. It also has many useful industrial properties being the best electrical and thermal conductor of any metal, and also the most reflective, and so is widely used in high tech applications, either in its pure form or alloyed with other metals.\"\n  },\n  \"skimercomponents\": {\n    \"id\": \"128672313\",\n    \"symbol\": \"SkimerComponents\",\n    \"category\": \"Machinery\",\n    \"name\": \"Skimmer Components\",\n    \"description\": \"These maintenance and repair packs are used to keep skimmers operational.\"\n  },\n  \"slaves\": {\n    \"id\": \"128049243\",\n    \"symbol\": \"Slaves\",\n    \"category\": \"Slavery\",\n    \"name\": \"Slaves\",\n    \"description\": \"Bonded men and women. Almost universally illegal and shunned by most civilized nations. Great efforts have been made to stamp out this trade in misery, however a few markets remain open.\"\n  },\n  \"smallexplorationdatacash\": {\n    \"id\": \"128672137\",\n    \"symbol\": \"SmallExplorationDataCash\",\n    \"category\": \"Salvage\",\n    \"name\": \"Small Survey Data Cache\",\n    \"description\": \"Finding the data cache from a survey mission is a rare, but often lucrative, find for explorers. These caches are constantly in demand from academic institutions and commercial interests.\"\n  },\n  \"soontillrelics\": {\n    \"id\": \"128668018\",\n    \"symbol\": \"SoontillRelics\",\n    \"market_id\": \"3225348096\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Soontill Relics\",\n    \"limit\": 5,\n    \"rare\": true,\n    \"description\": \"A slab of unidentified material covered in pictographs of an unknown origin. This relic is part of a cache of similar artefacts that were uncovered by explorers researching lost alien civilizations in the Soontil system. Sold by Garry's Reclamations, Cheranovsky City, Ngurii.\"\n  },\n  \"sothiscrystallinegold\": {\n    \"id\": \"128672122\",\n    \"symbol\": \"SothisCrystallineGold\",\n    \"market_id\": \"128668557\",\n    \"category\": \"Metals\",\n    \"name\": \"Sothis Crystalline Gold\",\n    \"limit\": 20,\n    \"rare\": true,\n    \"description\": \"When gold is exposed to the rare gas coming from thermal vents on the sea beds of the twin Earth like planets in Sothis A5 and Sothis A6, it forms into a previously unseen crystalline structure unlike other crystalline gold. Scientists and engineers are only just beginning to discover the technological applications for this rare form of gold.\"\n  },\n  \"spacepioneerrelics\": {\n    \"id\": \"128682054\",\n    \"symbol\": \"SpacePioneerRelics\",\n    \"category\": \"Salvage\",\n    \"name\": \"Space Pioneer Relics\",\n    \"description\": \"Items from mankind's first attempts at space exploration and research.\"\n  },\n  \"structuralregulators\": {\n    \"id\": \"128672311\",\n    \"symbol\": \"StructuralRegulators\",\n    \"category\": \"Technology\",\n    \"name\": \"Structural Regulators\",\n    \"description\": \"These monitor structural stability of buildings under a broad range of gravities. They will generate alerts if dangerous stresses or damage is detected.\"\n  },\n  \"superconductors\": {\n    \"id\": \"128049200\",\n    \"symbol\": \"Superconductors\",\n    \"category\": \"Industrial Materials\",\n    \"name\": \"Superconductors\",\n    \"description\": \"Complex highly pure alloys have zero resistance to electricity below a certain temperature. Such superconducting alloys are used in High Tech and Industrial economies to create a wide range of devices.\"\n  },\n  \"surfacestabilisers\": {\n    \"id\": \"128672305\",\n    \"symbol\": \"SurfaceStabilisers\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Surface Stabilisers\",\n    \"description\": \"Unique polymer that is injected into the surrounding rock providing a stable environment for construction.\"\n  },\n  \"survivalequipment\": {\n    \"id\": \"128682048\",\n    \"symbol\": \"SurvivalEquipment\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Survival Equipment\",\n    \"description\": \"A selection of absolute essentials needed to survive in extreme conditions.\"\n  },\n  \"syntheticfabrics\": {\n    \"id\": \"128049193\",\n    \"symbol\": \"SyntheticFabrics\",\n    \"category\": \"Textiles\",\n    \"name\": \"Synthetic Fabrics\",\n    \"description\": \"Textile material created from artificial fibres. Used by industry for clothing and lightweight construction materials.\"\n  },\n  \"syntheticmeat\": {\n    \"id\": \"128049185\",\n    \"symbol\": \"SyntheticMeat\",\n    \"category\": \"Foods\",\n    \"name\": \"Synthetic Meat\",\n    \"description\": \"Meat that is synthesised in an industrial scale. The process relies on DNA from species from old Earth. The DNA is adjusted so muscle tissue is grown in huge quantities without the rest of the animal.\"\n  },\n  \"syntheticreagents\": {\n    \"id\": \"128672303\",\n    \"symbol\": \"SyntheticReagents\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Synthetic Reagents\",\n    \"description\": \"A selection of inorganic molecules used in the creation and manipulation of a wide range of organic compounds\"\n  },\n  \"taaffeite\": {\n    \"id\": \"128672775\",\n    \"symbol\": \"Taaffeite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Taaffeite\",\n    \"description\": \"Taaffeite; chemical formula BeMgAl4O8, is a rare gemstone with a purple hue, used in jewellery and other crafts.\"\n  },\n  \"tacticaldata\": {\n    \"id\": \"128672128\",\n    \"symbol\": \"TacticalData\",\n    \"category\": \"Salvage\",\n    \"name\": \"Tactical Data\",\n    \"description\": \"Encrypted documents detailing logistics, armament control points and infrastructure. Possession of such documents is illegal, due to their sensitive nature. There is a limited black market demand for these items as their military grade encryption makes them almost impossible to crack.\"\n  },\n  \"tanmarktranquiltea\": {\n    \"id\": \"128667079\",\n    \"symbol\": \"TanmarkTranquilTea\",\n    \"market_id\": \"128057866\",\n    \"category\": \"Foods\",\n    \"name\": \"Tanmark Tranquil Tea\",\n    \"limit\": 12,\n    \"rare\": true,\n    \"description\": \"An infusion of native herbs renowned for its sedative effects.\"\n  },\n  \"tantalum\": {\n    \"id\": \"128049171\",\n    \"symbol\": \"Tantalum\",\n    \"category\": \"Metals\",\n    \"name\": \"Tantalum\",\n    \"description\": \"Tantalum, Ta, atomic number 73. Melting point 3290K. Used to make capacitors and high melting point alloys used in reactors and by the military for specialist alloys used in weapons for armour penetration.\"\n  },\n  \"tarachtorspice\": {\n    \"id\": \"128667030\",\n    \"symbol\": \"TarachTorSpice\",\n    \"market_id\": \"128041984\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Tarach Spice\",\n    \"limit\": 12,\n    \"rare\": true,\n    \"description\": \"Made from crushed beetles, this mild euphoric drug has a number of side effects including turning the whites of addicts' eyes a subtle shade of green. Widely illegal, but favoured in many anarchic systems where the green eyes are seen as a badge of an extreme lifestyle.\"\n  },\n  \"taurichimes\": {\n    \"id\": \"128667706\",\n    \"symbol\": \"TauriChimes\",\n    \"market_id\": \"128134648\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Tauri Chimes\",\n    \"limit\": 26,\n    \"rare\": true,\n    \"description\": \"These hand crafted wind chimes are specially tuned to stimulate a variety of spiritual and physical responses. They are known for helping people find inner peace, or direction, and are guaranteed to keep your chakras aligned.\"\n  },\n  \"tea\": {\n    \"id\": \"128049188\",\n    \"symbol\": \"Tea\",\n    \"category\": \"Foods\",\n    \"name\": \"Tea\",\n    \"description\": \"Used ceremonially as well as for its stimulant effects. Tea remains a beverage with historic roots and there is great rivalry between those that drink tea and those that drink coffee.\"\n  },\n  \"telemetrysuite\": {\n    \"id\": \"128673872\",\n    \"symbol\": \"TelemetrySuite\",\n    \"category\": \"Technology\",\n    \"name\": \"Telemetry Suite\",\n    \"description\": \"Telemetry suites provide access to information flows relating to specific components within a system.\"\n  },\n  \"terrainenrichmentsystems\": {\n    \"id\": \"128049232\",\n    \"symbol\": \"TerrainEnrichmentSystems\",\n    \"category\": \"Technology\",\n    \"name\": \"Land Enrichment Systems\",\n    \"description\": \"A soup of carefully designed archaebacteria, lichens, and micro-fauna and their dispersal equipment. Used in terraforming or enriching agricultural land.\"\n  },\n  \"terramaterbloodbores\": {\n    \"id\": \"128667069\",\n    \"symbol\": \"TerraMaterBloodBores\",\n    \"market_id\": \"128051466\",\n    \"category\": \"Medicines\",\n    \"name\": \"Terra Mater Blood Bores\",\n    \"limit\": 5,\n    \"rare\": true,\n    \"description\": \"A potent physical stimulant produced using extracts of a native Terra Mater carnivorous plant. When added to the user's circulatory system, it allows a human to exert themselves far beyond their normal capabilities. The side effects are often permanent with increased likelihood of haemorrhaging and weight loss.\"\n  },\n  \"thallium\": {\n    \"id\": \"128672299\",\n    \"symbol\": \"Thallium\",\n    \"category\": \"Metals\",\n    \"name\": \"Thallium\",\n    \"description\": \"Thallium, Tl, atomic number 81. Melting point 577K. is a post-transition metal. It has a number of technological uses including medical imaging, infra-red optics and high temperature super conductivity.\"\n  },\n  \"thargoidheart\": {\n    \"id\": \"128793127\",\n    \"symbol\": \"ThargoidHeart\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Heart\",\n    \"description\": \"A processing node recovered from a Thargoid ship. These objects are integral to the flight and operational systems of Thargoid vessels.\"\n  },\n  \"thargoidscouttissuesample\": {\n    \"id\": \"128824468\",\n    \"symbol\": \"ThargoidScoutTissueSample\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Scout Tissue Sample\",\n    \"description\": \"A sample of bio-mechanical tissue taken from a Thargoid Scout-class vessel. Tissue samples appear to be much sought after for research purposes, despite the fact that they appear to be highly corrosive.\"\n  },\n  \"thargoidgeneratortissuesample\": {\n    \"id\": \"thargoidgeneratortissuesample\",\n    \"symbol\": \"ThargoidGeneratorTissueSample\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Caustic Tissue Sample\",\n    \"description\": \"A sample of bio-mechanical tissue taken from a caustic generator.\"\n  },\n  \"thargoidtissuesampletype1\": {\n    \"id\": \"128793128\",\n    \"symbol\": \"ThargoidTissueSampleType1\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Cyclops Tissue Sample\",\n    \"description\": \"A sample of bio-mechanical tissue taken from a Thargoid Interceptor-class vessel. This sample has been taken from a variant known as a Cyclops and contains both biological and mechanical elements. Tissue samples appear to be highly sought after for research purposes despite the fact that they appear to be highly corrosive.\"\n  },\n  \"thargoidtissuesampletype2\": {\n    \"id\": \"128793129\",\n    \"symbol\": \"ThargoidTissueSampleType2\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Basilisk Tissue Sample\",\n    \"description\": \"A sample of bio-mechanical tissue taken from a Thargoid Interceptor-class vessel. This sample has come from a variant known as a Basilisk and appears older and more developed than samples taken from the Cyclops variant with denser biological matter and more intricate technological elements. Tissue samples appear to be highly sought after for research purposes despite the fact that they appear to be highly corrosive.\"\n  },\n  \"thargoidtissuesampletype3\": {\n    \"id\": \"128793130\",\n    \"symbol\": \"ThargoidTissueSampleType3\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Medusa Tissue Sample\",\n    \"description\": \"A sample of bio-mechanical tissue taken from a Thargoid Interceptor-class vessel. This sample has come from a variant known as a Medusa and appears older and more developed than samples taken from both the Cyclops and Basilisk variants with denser biological matter and more intricate technological elements. Tissue samples appear to be highly sought after for research purposes despite the fact that they appear to be highly corrosive.\"\n  },\n  \"thargoidtissuesampletype4\": {\n    \"id\": \"128902652\",\n    \"symbol\": \"ThargoidTissueSampleType4\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Hydra Tissue Sample\",\n    \"description\": \"A sample of bio-mechanical tissue from a Thargoid Interceptor-class vessel. This sample is from the Hydra variant, and is therefore more developed than samples from other kinds of Interceptor, with denser biological matter and more intricate technological elements. Such samples are highly sought after by scientists despite being highly corrosive.\"\n  },\n  \"thehuttonmug\": {\n    \"id\": \"128672121\",\n    \"symbol\": \"TheHuttonMug\",\n    \"market_id\": \"3228728832\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"The Hutton Mug\",\n    \"limit\": 30,\n    \"rare\": true,\n    \"description\": \"Delivered over vast distances by those in search of a profit, the Hutton Mug, is only sold to Commanders who make the painfully long journey to Hutton Orbital. Made from the salvaged frame shift drive plates of ships that ran out of fuel before reaching the station, this is purely a vanity item commemorating the epic journey. Its value lies in its rarity and latent frame shift energies keeping your drink that little bit warmer for the journey.\"\n  },\n  \"thermalcoolingunits\": {\n    \"id\": \"128672308\",\n    \"symbol\": \"ThermalCoolingUnits\",\n    \"category\": \"Machinery\",\n    \"name\": \"Thermal Cooling Units\",\n    \"description\": \"These draw excess heat from surrounding material to enable habitation in even the most extreme environments.\"\n  },\n  \"thorium\": {\n    \"id\": \"128672301\",\n    \"symbol\": \"Thorium\",\n    \"category\": \"Metals\",\n    \"name\": \"Thorium\",\n    \"description\": \"Thorium, Th, atomic number 90. Melting point 2023K. A radioactive actinide metal. It was once used in ancient fission reactions. It is still used by some medical technology and as a component in advanced ceramics.\"\n  },\n  \"thrutiscream\": {\n    \"id\": \"128667066\",\n    \"symbol\": \"ThrutisCream\",\n    \"market_id\": \"3226522368\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Thrutis Cream\",\n    \"limit\": 11,\n    \"rare\": true,\n    \"description\": \"A curious mix of fermented Thrutis Giant Rat milk and raw turtle egg yolks produces a potent mix similar to Ancient Advocaat. Each bottle is provided with a ceremonial tasting spoon, to ease the pouring of this viscous, but delicious drink.\"\n  },\n  \"tiegfriessynthsilk\": {\n    \"id\": \"128667695\",\n    \"symbol\": \"TiegfriesSynthSilk\",\n    \"market_id\": \"3227726848\",\n    \"category\": \"Textiles\",\n    \"name\": \"Tiegfries Synth Silk\",\n    \"limit\": 30,\n    \"rare\": true,\n    \"description\": \"Spun from atoms, using a number of interconnected particle colliders, this silk is almost indistinguishable from the real thing.\"\n  },\n  \"timecapsule\": {\n    \"id\": \"128672163\",\n    \"symbol\": \"TimeCapsule\",\n    \"category\": \"Salvage\",\n    \"name\": \"Time Capsule\",\n    \"description\": \"These canisters are of historical interest and highly collectable although sometimes the contents have turned to dust with age.\"\n  },\n  \"tiolcewaste2pasteunits\": {\n    \"id\": \"128667048\",\n    \"symbol\": \"TiolceWaste2PasteUnits\",\n    \"market_id\": \"3224141312\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Tiolce Waste2Paste Units\",\n    \"limit\": 13,\n    \"rare\": true,\n    \"description\": \"The original and best, turning all your waste into a nutritious and wholesome paste.\"\n  },\n  \"titanium\": {\n    \"id\": \"128049174\",\n    \"symbol\": \"Titanium\",\n    \"category\": \"Metals\",\n    \"name\": \"Titanium\",\n    \"description\": \"Titanium, Ti, atomic 22. Melting point 1941K. A lustrous, silver-grey, low density, high strength metal that is used in a great many industrial applications, including high spec spacecraft hulls.\"\n  },\n  \"tobacco\": {\n    \"id\": \"128049213\",\n    \"symbol\": \"Tobacco\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Tobacco\",\n    \"description\": \"A naturally occurring plant whose leaves, when dried and shredded, are a source of nicotine, a mild and expensive organic narcotic. Usually chewed or smoked, and used in ancient rituals. Illegal in many jurisdictions.\"\n  },\n  \"toxandjivirocide\": {\n    \"id\": \"128667074\",\n    \"symbol\": \"ToxandjiVirocide\",\n    \"market_id\": \"3230258688\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Toxandji Virocide\",\n    \"limit\": 14,\n    \"rare\": true,\n    \"description\": \"Engineered to order, Toxandji Virocide can be created to target whatever pest or parasite is effecting your crops. This highly intelligent virus can be programmed to self terminate at the end of a season, or to hibernate in preparation for the next cycle.\"\n  },\n  \"toxicwaste\": {\n    \"id\": \"128049245\",\n    \"symbol\": \"ToxicWaste\",\n    \"category\": \"Waste\",\n    \"name\": \"Toxic Waste\",\n    \"description\": \"Toxic waste is illegal in most parts of the galaxy. Hazardous toxic waste that is unsafe for human contact. Highly volatile, likely to leak and may explode when damaged.\"\n  },\n  \"transgeniconionhead\": {\n    \"id\": \"128667760\",\n    \"symbol\": \"TransgenicOnionHead\",\n    \"market_id\": \"128057866\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Lucan Onionhead\",\n    \"limit\": 12,\n    \"rare\": true,\n    \"description\": \"A genetically altered strain of the Onionhead flower, chemically changed to circumvent federal laws. This strain has been designed to survive in harsher climates, but its seeds contain the same well-known psychedelic narcotic. Federal lawmakers are working fast to legislate against this new breed.\"\n  },\n  \"trinketsoffortune\": {\n    \"id\": \"128671444\",\n    \"symbol\": \"TrinketsOfFortune\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Trinkets of Hidden Fortune\",\n    \"description\": \"This container appears to hold an assorted collection of low-value trinkets, knick-knacks and statuettes. Such trinkets are generally used by superstitious pilots to try and win favour with the lady Fortuna. However, these particular knick-knacks have a much more valuable prize hidden within.\"\n  },\n  \"tritium\": {\n    \"id\": \"128961249\",\n    \"symbol\": \"Tritium\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Tritium\",\n    \"description\": \"Tritium is a beta-emitting radioactive isotope of hydrogen. It is an important ingredient for boosting nuclear fusion reactions.\"\n  },\n  \"unknownartifact\": {\n    \"id\": \"128668547\",\n    \"symbol\": \"UnknownArtifact\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Sensor\",\n    \"description\": \"These strange objects are of Thargoid origin. They have the ability to repair themselves by extracting non-organic material from their immediate environment, and this self-repair mechanism can severely damage starships and other machinery. They can also scan nearby vessels and celestial bodies, and transmit information about the scanned object in an encrypted form.\"\n  },\n  \"unknownartifact2\": {\n    \"id\": \"128673876\",\n    \"symbol\": \"UnknownArtifact2\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Probe\",\n    \"description\": \"These Thargoid objects are capable of emitting an electro-magnetic pulse that can temporarily incapacitate a starship.\"\n  },\n  \"unknownartifact3\": {\n    \"id\": \"128740752\",\n    \"symbol\": \"UnknownArtifact3\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Link\",\n    \"description\": \"A piece of Thargoid technology typically found at Thargoid surface sites.\"\n  },\n  \"unknownbiologicalmatter\": {\n    \"id\": \"128737288\",\n    \"symbol\": \"UnknownBiologicalMatter\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Biological Matter\",\n    \"description\": \"A bio-mechanical canister containing Thargoid biological matter. This material plays a part in the construction of Thargoid structures, technology and ships.\"\n  },\n  \"unknownresin\": {\n    \"id\": \"128737287\",\n    \"symbol\": \"UnknownResin\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Resin\",\n    \"description\": \"A bio-mechanical canister containing Thargoid resin. This substance can be used to lubricate the internal systems of Thargoid technology when wet, and to protect and reinforce structures when dry. When converted into a gas it is highly corrosive.\"\n  },\n  \"unknowntechnologysamples\": {\n    \"id\": \"128737289\",\n    \"symbol\": \"UnknownTechnologySamples\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Technology Samples\",\n    \"description\": \"A bio-mechanical canister containing Thargoid technological samples. This material plays a part in the construction of Thargoid structures and ships.\"\n  },\n  \"unstabledatacore\": {\n    \"id\": \"128672810\",\n    \"symbol\": \"UnstableDataCore\",\n    \"category\": \"Salvage\",\n    \"name\": \"Unstable Data Core\",\n    \"description\": \"These ubiquitous devices provide extensive data storage, but are extremely volatile when damaged. They must be returned by the end date for information retrieval or their contents become unusable.\"\n  },\n  \"uraninite\": {\n    \"id\": \"128049160\",\n    \"symbol\": \"Uraninite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Uraninite\",\n    \"description\": \"Uraninite: chemical formula UO2. A radioactive ore, radioactive principally because of the small amount of the isotope U235 present. Refined into Uranium at some refineries. Uranium was used for power early in human history, using refined U235 in fission reactors, but now is mainly used for biotech applications. Illegal in some jurisdictions.\"\n  },\n  \"uranium\": {\n    \"id\": \"128049172\",\n    \"symbol\": \"Uranium\",\n    \"category\": \"Metals\",\n    \"name\": \"Uranium\",\n    \"description\": \"Uranium, U, atomic number 92. Melting point 1405K. Uranium is a silvery grey metal, usually found as a mix of isotopes, mostly U238, and typically less than 1% of the radioactive U235. As a whole it is only weakly radioactive. it is chemically toxic but useful element in industry, mainly because of its density. In early human history it was used as a power source in fission reactors. Standard canisters offer sufficient protection from the low level of radiation.\"\n  },\n  \"usscargoancientartefact\": {\n    \"id\": \"128666756\",\n    \"symbol\": \"USSCargoAncientArtefact\",\n    \"category\": \"Salvage\",\n    \"name\": \"Ancient Artefact\",\n    \"description\": \"Highly prized by collectors, the movement of recovered artefacts is strictly controlled by a number of authorities around the galaxy. Fortunately a lucrative black market offers savvy explorers with means to find reliable buyers for any ancient treasures.\"\n  },\n  \"usscargoblackbox\": {\n    \"id\": \"128666752\",\n    \"symbol\": \"USSCargoBlackBox\",\n    \"category\": \"Salvage\",\n    \"name\": \"Black Box\",\n    \"description\": \"The flight computer from a destroyed ship. Recovered flight computers can offer details on the movements and intentions of ships before meeting their demise. Taking a black box from the scene of an accident is frowned on by authorities, but can offer lucrative profits on the black market.\"\n  },\n  \"usscargoexperimentalchemicals\": {\n    \"id\": \"128666758\",\n    \"symbol\": \"USSCargoExperimentalChemicals\",\n    \"category\": \"Salvage\",\n    \"name\": \"Experimental Chemicals\",\n    \"description\": \"Often dangerous and corrosive in nature, experimental chemicals are often created for research and scientific purposes. In the wrong hands they can be turned into dangerous weapons, so trade is strictly controlled. A thriving black market trade has proved difficult to control for authorities.\"\n  },\n  \"usscargomilitaryplans\": {\n    \"id\": \"128666755\",\n    \"symbol\": \"USSCargoMilitaryPlans\",\n    \"category\": \"Salvage\",\n    \"name\": \"Military Plans\",\n    \"description\": \"Highly confidential documents detailing military movements and military strategy. Possession of such documents is highly illegal, due to their sensitive nature. For the same reason they fetch a large sum to the right seller on the black market.\"\n  },\n  \"usscargoprototypetech\": {\n    \"id\": \"128666760\",\n    \"symbol\": \"USSCargoPrototypeTech\",\n    \"category\": \"Salvage\",\n    \"name\": \"Prototype Tech\",\n    \"description\": \"The latest developments in experimental technology are jealously guarded by the galaxy's various corporations, and unsanctioned possession of prototype tech is severely punished. However, pilots have discovered there is a prospering black market for stolen tech.\"\n  },\n  \"usscargorareartwork\": {\n    \"id\": \"128666757\",\n    \"symbol\": \"USSCargoRareArtwork\",\n    \"category\": \"Salvage\",\n    \"name\": \"Rare Artwork\",\n    \"description\": \"Prized and treasured works of art. The galaxy is rife with reproductions and forgeries, and trade in the genuine articles is highly controlled, with pieces transported between owners in secure convoys. Occasionally pieces find their way onto the black market, selling for under-the-counter prices.\"\n  },\n  \"usscargorebeltransmissions\": {\n    \"id\": \"128666759\",\n    \"symbol\": \"USSCargoRebelTransmissions\",\n    \"category\": \"Salvage\",\n    \"name\": \"Rebel Transmissions\",\n    \"description\": \"Transcripts of communications between dissident groups. These documents are highly valued by a number of factions for the intelligence they contain. It is considered highly suspicious to be carrying them, but black market trade in data will always flow.\"\n  },\n  \"usscargotechnicalblueprints\": {\n    \"id\": \"128666761\",\n    \"symbol\": \"USSCargoTechnicalBlueprints\",\n    \"category\": \"Salvage\",\n    \"name\": \"Technical Blueprints\",\n    \"description\": \"Blueprints of a patented new machinery and systems that are highly prized on the black market. Copyright theft is frowned upon by the authorities and those carrying illegally acquired blueprints can face extreme application of the law.\"\n  },\n  \"usscargotradedata\": {\n    \"id\": \"128666754\",\n    \"symbol\": \"USSCargoTradeData\",\n    \"category\": \"Salvage\",\n    \"name\": \"Trade Data\",\n    \"description\": \"The trade manifest data for a ship that met its end nearby. The information contained within can be extremely useful to unscrupulous individuals and fetches a good price on the black market. However, illegal salvage is punishable by law.\"\n  },\n  \"uszaiantreegrub\": {\n    \"id\": \"128667712\",\n    \"symbol\": \"UszaianTreeGrub\",\n    \"market_id\": \"128164856\",\n    \"category\": \"Foods\",\n    \"name\": \"Uszaian Tree Grub\",\n    \"limit\": 14,\n    \"rare\": true,\n    \"description\": \"This grub was introduced to the system from Lave, in an attempt to create a wildlife reserve for endangered species. Unfortunately the grubs mutated and evolved in their new environment, and the project failed. The evolved grubs were found to have a delicious flavor and surprising texture, and have since become a delicacy.\"\n  },\n  \"utgaroarmillenialeggs\": {\n    \"id\": \"128667021\",\n    \"symbol\": \"UtgaroarMillenialEggs\",\n    \"market_id\": \"128037120\",\n    \"category\": \"Foods\",\n    \"name\": \"Utgaroar Millennial Eggs\",\n    \"limit\": 15,\n    \"rare\": true,\n    \"description\": \"These eggs have been buried deep in the highly alkaline Utgaroarian soil around the many active geysers, where they are slowly cooked by the natural heat of the planet and take on a distinctive purple color and their prized bittersweet taste.\"\n  },\n  \"uzumokulowgwings\": {\n    \"id\": \"128667696\",\n    \"symbol\": \"UzumokuLowGWings\",\n    \"market_id\": \"3226474496\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Uzumoku Low-G Wings\",\n    \"limit\": 8,\n    \"rare\": true,\n    \"description\": \"Have you ever wanted to fly? Uzumoku Low-G Wings provide you with enough lift and thrust to soar like a bird, and are practical and stylish from their discreet shoulder mounted unit! Sadly they can only function in suitable low G environments.\"\n  },\n  \"vanayequirhinofur\": {\n    \"id\": \"128667064\",\n    \"symbol\": \"VanayequiRhinoFur\",\n    \"market_id\": \"3227289856\",\n    \"category\": \"Textiles\",\n    \"name\": \"Vanayequi Ceratomorpha Fur\",\n    \"limit\": 10,\n    \"rare\": true,\n    \"description\": \"Genetically regressive rhinoceroses were originally introduced to Vanayequi to provide a reliable source of leather for nearby industries. The genetic modification was successful in reducing the animal's aggressive tendencies, but had unintended side effects. As the ceratomorphs returned to a more primitive state, they began growing soft, lush fur. This fur is now prized around the galaxy for its resilience and warmth.\"\n  },\n  \"vegaslimweed\": {\n    \"id\": \"128667699\",\n    \"symbol\": \"VegaSlimWeed\",\n    \"market_id\": \"128149240\",\n    \"category\": \"Medicines\",\n    \"name\": \"Vega Slimweed\",\n    \"limit\": 28,\n    \"rare\": true,\n    \"description\": \"Initially thought to be a plant, settlers of the system would swallow it whole for its slimming and appetite reducing qualities. The revelation that the plant is actually a parasitic life form has not reduced its popularity. Those infested have reported a difficulty in removing the parasite once it has established, but the benefits include an immunity to certain biological poisons. The parasite must be purged before it begins to pupate.\"\n  },\n  \"vherculisbodyrub\": {\n    \"id\": \"128667697\",\n    \"symbol\": \"VHerculisBodyRub\",\n    \"market_id\": \"3228959232\",\n    \"category\": \"Medicines\",\n    \"name\": \"V Herculis Body Rub\",\n    \"limit\": 10,\n    \"rare\": true,\n    \"description\": \"Available in a variety of textures, this scrub can exfoliate just about anything!\"\n  },\n  \"vidavantianlace\": {\n    \"id\": \"128667719\",\n    \"symbol\": \"VidavantianLace\",\n    \"market_id\": \"3231082240\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Vidavantian Lace\",\n    \"limit\": 5,\n    \"rare\": true,\n    \"description\": \"Specially engineered vines weave fine lace into intricate natural patterns. These highly fragile plants work slow and die if taken from their native environment.\"\n  },\n  \"volkhabbeedrones\": {\n    \"id\": \"128667044\",\n    \"symbol\": \"VolkhabBeeDrones\",\n    \"market_id\": \"3227831808\",\n    \"category\": \"Machinery\",\n    \"name\": \"Volkhab Bee Drones\",\n    \"limit\": 6,\n    \"rare\": true,\n    \"description\": \"Guaranteed pollination every time! These miniature drones are supplied in the thousands to ensure your crops are fertilised whatever the conditions. Unlike natural bees, they can be used in conjunction with pesticides and can be supplied pre-coated with your choice of growth agents!\"\n  },\n  \"water\": {\n    \"id\": \"128049166\",\n    \"symbol\": \"Water\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Water\",\n    \"description\": \"H2O. A chemical compound that is vital to human life and useful in a number of industrial processes.\"\n  },\n  \"waterpurifiers\": {\n    \"id\": \"128049218\",\n    \"symbol\": \"WaterPurifiers\",\n    \"category\": \"Machinery\",\n    \"name\": \"Water Purifiers\",\n    \"description\": \"Water purifiers and components and consumables for them. All space installations are reliant on recycled water, so water purification is vital for survival. Some units are set up to medicate the purified water to maintain the correct mood of inhabitants.\"\n  },\n  \"watersofshintara\": {\n    \"id\": \"128667085\",\n    \"symbol\": \"WatersOfShintara\",\n    \"market_id\": \"128666762\",\n    \"category\": \"Medicines\",\n    \"name\": \"Waters of Shintara\",\n    \"limit\": 12,\n    \"rare\": true,\n    \"description\": \"The medical qualities of the mineral waters of Shintara are decried by many in the scientific community as nonsense. This has not stopped widespread rumours that water from the planet can cure almost any ailment, and even reverse the ageing process. The company that controls the source of this water are happy to allow the rumours to continue, and people all over the galaxy are willing to pay a small fortune for the real thing.\"\n  },\n  \"wheemetewheatcakes\": {\n    \"id\": \"128667698\",\n    \"symbol\": \"WheemeteWheatCakes\",\n    \"market_id\": \"3225032704\",\n    \"category\": \"Foods\",\n    \"name\": \"Wheemete Wheat Cakes\",\n    \"limit\": 19,\n    \"rare\": true,\n    \"description\": \"These cakes were originally used as packing material for expensive machinery, but when plant owners realised they were edible, they soon became the workers staple diet. The wheat cakes produced today are made using the traditional recipe.\"\n  },\n  \"wine\": {\n    \"id\": \"128049215\",\n    \"symbol\": \"Wine\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Wine\",\n    \"description\": \"A luxury drink made from fermented fruits, containing alcohol, a mild narcotic, and is grown organically. Occasionally illegal because of the alcohol content.\"\n  },\n  \"witchhaulkobebeef\": {\n    \"id\": \"128667022\",\n    \"symbol\": \"WitchhaulKobeBeef\",\n    \"market_id\": \"3223358720\",\n    \"category\": \"Foods\",\n    \"name\": \"Witchhaul Kobe Beef\",\n    \"limit\": 18,\n    \"rare\": true,\n    \"description\": \"A traditional breed from the Tajima strain of wagyu cattle in Kobe in Japan on ancient Earth, they remain most pampered cattle in human space. Taken from Kobe before the Earth's serious environmental decline, the cattle are fed a secret mix of rare grains and brushed daily. Now unique to Witchhaul, this is one of the most priced meats there is.\"\n  },\n  \"wolf1301fesh\": {\n    \"id\": \"128667031\",\n    \"symbol\": \"Wolf1301Fesh\",\n    \"market_id\": \"128084984\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Wolf Fesh\",\n    \"limit\": 13,\n    \"rare\": true,\n    \"description\": \"A synthetic psychoactive drug based on a closely guarded secret recipe. While active, it causes the user to lock their teeth together and rapidly exhale, a reaction that led to its street name, Fesh. There are many poor imitations but Wolf 1301 Fesh is the original and remains the most expensive due to its consistent quality. Banned in most jurisdictions.\"\n  },\n  \"wreckagecomponents\": {\n    \"id\": \"128672123\",\n    \"symbol\": \"WreckageComponents\",\n    \"category\": \"Salvage\",\n    \"name\": \"Wreckage Components\",\n    \"description\": \"Accidents in space often leave a lot of debris, some of that wreckage should be useful in determining the cause of the accident. They should be handed in to whichever organisation has called for their collection, however they also generate some demand as morbid momentos or simply as scrap.\"\n  },\n  \"wulpahyperboresystems\": {\n    \"id\": \"128667067\",\n    \"symbol\": \"WulpaHyperboreSystems\",\n    \"market_id\": \"3221388032\",\n    \"category\": \"Machinery\",\n    \"name\": \"Wulpa Hyperbore Systems\",\n    \"limit\": 10,\n    \"rare\": true,\n    \"description\": \"Wulpa Engineering Systems are constantly working to improve and enhance on existing models, with the Wulpa Hyperbore System representing the latest in automated mineral extraction services.\"\n  },\n  \"wuthielokufroth\": {\n    \"id\": \"128667035\",\n    \"symbol\": \"WuthieloKuFroth\",\n    \"market_id\": \"3222155776\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Wuthielo Ku Froth\",\n    \"limit\": 17,\n    \"rare\": true,\n    \"description\": \"Not strictly a beer, this light alcoholic beverage is made from fermented frog spawn which is then filtered through rush mats.\"\n  },\n  \"xihecompanions\": {\n    \"id\": \"128667075\",\n    \"symbol\": \"XiheCompanions\",\n    \"market_id\": \"3224133120\",\n    \"category\": \"Technology\",\n    \"name\": \"Xihe Biomorphic Companions\",\n    \"limit\": 10,\n    \"rare\": true,\n    \"description\": \"We make the most realistic and exclusive animal companions using the latest technology and robotics, better than nature and guaranteed to last. Rigorous testing ensures that all our animals conform to the appropriate legislation on artificial intelligence.\"\n  },\n  \"yasokondileaf\": {\n    \"id\": \"128667083\",\n    \"symbol\": \"YasoKondiLeaf\",\n    \"market_id\": \"3223088640\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Yaso Kondi Leaf\",\n    \"limit\": 5,\n    \"rare\": true,\n    \"description\": \"A native plant that exhibits similar properties to tobacco, but without the harmful effects. Discovered through observing its effects on the local fauna.\"\n  },\n  \"zeesszeantglue\": {\n    \"id\": \"128667707\",\n    \"symbol\": \"ZeesszeAntGlue\",\n    \"market_id\": \"128125432\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Zeessze Ant Grub Glue\",\n    \"limit\": 27,\n    \"rare\": true,\n    \"description\": \"Stick anything to everything with this natural glue, made from the cocoons of indigenous insects. It is non-toxic and can be easily removed using a resin secreted by the queen ant.\"\n  }\n}"
  },
  {
    "path": "resources/data/ardent/commodity-categories.json",
    "content": "{\n  \"Chemicals\": {\n    \"description\": \"Chemicals are a class of natural and synthetic compounds with industrial, agricultural, and scientific applications.\",\n    \"producedBy\": [ \"Refinery\", \"Agricultural\", \"High Tech\" ],\n    \"whereToFind\": \"Chemicals can be sourced from refinery, agricultural and high tech systems.\"\n  },\n  \"Consumer Items\": {\n    \"description\": \"Consumer Items are goods created for human comfort and basic survival.\",\n    \"producedBy\": [ \"Industrial\", \"High Tech\" ],\n    \"whereToFind\": \"Consumer Items can be found for sale in industrial and high tech systems.\"\n  },\n  \"Foods\": {\n    \"description\": \"Foods are organic products harvested from flora and fauna for human consumption.\",\n    \"producedBy\": [ \"Agricultural\", \"Industrial\", \"High Tech\" ],\n    \"whereToFind\": \"Food is produced primarily by agricultural systems, but some specific items are produced in industrial and high tech systems.\"\n  },\n  \"Industrial Materials\": {\n    \"description\": \"Industrial Materials are refined products used in the manufacture of machinery, ships, and structures.\",\n    \"producedBy\": [ \"Refinery\" ],\n    \"whereToFind\": \"Industrial Materials are produced in refinery systems.\"\n  },\n  \"Legal Drugs\": {\n    \"description\": \"Drugs are substances that alter the mind and body, and can be legally traded at most markets.\",\n    \"producedBy\": [ \"Agricultural\", \"Industrial\" ],\n    \"whereToFind\": \"Drugs can be found for sale in a wide range of agricultural and industrial systems. Not all drugs are legal in all locations.\"\n  },\n  \"Machinery\": {\n    \"description\": \"Machinery is used wide variety of important functions, from producing clean water to providing power to regulating heat output.\",\n    \"producedBy\": [ \"Industrial\" ],\n    \"whereToFind\": \"Machinery can be purchased from industrial systems.\"\n  },\n  \"Medicines\": {\n    \"description\": \"Medicines are substances and compounds used to treat illnesses and improve health.\",\n    \"producedBy\": [ \"Industrial\", \"High Tech\" ],\n    \"whereToFind\": \"Most medicines can be found in high tech systems, basic medicines are produced in industrial systems.\"\n  },\n  \"Metals\": {\n    \"description\": \"Metals are malleable and ductile substances that are important to the manufacture of everything from electronics to ship hulls.\",\n    \"producedBy\": [ \"Extration\", \"Refinery\" ],\n    \"whereToFind\": \"Metals can be purchased in extration and refinery systems, or mined from suitable asteroids belts or planetary rings.\"\n  },\n  \"Minerals\": {\n    \"description\": \"Minerals are chemical compounds that are mined from naturally-occurring deposits and can be refined into other substances.\",\n    \"producedBy\": [  \"Refinery\", \"Extration\" ],\n    \"whereToFind\": \"Some minerals can be purchased in extration and refinery systems, some can only be mined from suitable asteroids.\"\n  },\n  \"Salvage\": {\n    \"description\": \"Salvage includes items that can be turned into Search and Rescue contacts in stations, as well as illegal goods and stolen cargo.\",\n    \"whereToFind\": \"Salvage items can be obtained from wreckage, abandoned structures, or be of alien origin.\"\n  },\n  \"Slavery\": {\n    \"description\": \"Slavery is illegal in most inhabited systems.\",\n    \"whereToFind\": \"Imperial Slavery, a regulated form of indentured servitude, is legal in Empire controlled systems.\"\n  },\n  \"Technology\": {\n    \"description\": \"Technology commodities include tools, components and equipment, often with highly-specialised applications.\",\n    \"producedBy\": [ \"High Tech\", \"Industrial\" ],\n    \"whereToFind\": \"Technology goods can be purchased primarily from high tech systems, some components can be sourced from industrial systems.\"\n  },\n  \"Textiles\": {\n    \"description\": \"Textiles are materials made of interlacing fibres and are are primarily used in the manufacture of clothing and furnishings.\",\n    \"producedBy\": [ \"Agricultural\", \"Industrial\" ],\n    \"whereToFind\": \"Natural materials can be sourced from agricultural systems, while sythentic materials are produced in industrial systems.\"\n  },\n  \"Waste\": {\n    \"description\": \"Waste is generated through the production and consumption of materials and commodities.\",\n    \"whereToFind\": \"Waste is commonly produced by a wide range of systems.\"\n  },\n  \"Weapons\": {\n    \"description\": \"Weapons are tools designed and utilised for combat and defensive purposes, they are strictly regulated in most systems.\",\n    \"producedBy\": [ \"High Tech\" ],\n    \"whereToFind\": \"Weapons can be found for sale in high tech systems, but they can be illegal to trade.\"\n  }\n}"
  },
  {
    "path": "resources/data/edcd/coriolis/modifications/blueprints.json",
    "content": "{\n  \"AFM_Shielded\": {\n    \"fdname\": \"AFM_Shielded\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Worn Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0,\n            0.6\n          ],\n          \"power\": [\n            0.2,\n            0.2\n          ]\n        },\n        \"uuid\": \"c879e8d2-290a-471e-833c-eaea947a20c1\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0.6,\n            1.2\n          ],\n          \"power\": [\n            0.4,\n            0.4\n          ]\n        },\n        \"uuid\": \"90981fc0-8c0e-4b86-a656-9ef1a9a7fa00\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"High Density Composites\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            1.2,\n            1.8\n          ],\n          \"power\": [\n            0.6,\n            0.6\n          ]\n        },\n        \"uuid\": \"30976550-2ff1-46e2-9687-ae3faa4f4701\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Proprietary Composites\": 1,\n          \"Shielding Sensors\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            1.8,\n            2.4\n          ],\n          \"power\": [\n            0.8,\n            0.8\n          ]\n        },\n        \"uuid\": \"82195e56-cfe5-4996-a821-a820dcd9405d\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Core Dynamics Composites\": 1,\n          \"Compound Shielding\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            2.4,\n            3.0\n          ],\n          \"power\": [\n            1.0,\n            1.0\n          ]\n        },\n        \"uuid\": \"191479fe-5459-11eb-a2cb-6805caa43529\"\n      }\n    },\n    \"id\": 3,\n    \"modulename\": [\n      \"Auto field maintenance unit\",\n      \"AFMU\"\n    ],\n    \"name\": \"Shielded\"\n  },\n  \"Armour_Advanced\": {\n    \"fdname\": \"Armour_Advanced\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            0,\n            0.03\n          ],\n          \"hullboost\": [\n            -0.01,\n            -0.01\n          ],\n          \"kinres\": [\n            0,\n            0.03\n          ],\n          \"mass\": [\n            0,\n            -0.15\n          ],\n          \"thermres\": [\n            0,\n            0.03\n          ]\n        },\n        \"uuid\": \"fb33c5c9-24e4-48b5-8227-cc7b855572cd\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            0.03,\n            0.06\n          ],\n          \"hullboost\": [\n            -0.02,\n            -0.02\n          ],\n          \"kinres\": [\n            0.03,\n            0.06\n          ],\n          \"mass\": [\n            -0.15,\n            -0.25\n          ],\n          \"thermres\": [\n            0.03,\n            0.06\n          ]\n        },\n        \"uuid\": \"a9417081-356c-43d7-bf30-9cc1de0c62a1\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"High Density Composites\": 1,\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            0.06,\n            0.09\n          ],\n          \"hullboost\": [\n            -0.03,\n            -0.03\n          ],\n          \"kinres\": [\n            0.06,\n            0.09\n          ],\n          \"mass\": [\n            -0.25,\n            -0.35\n          ],\n          \"thermres\": [\n            0.06,\n            0.09\n          ]\n        },\n        \"uuid\": \"b93f110f-c467-4340-8496-9ea99332ef55\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Germanium\": 1,\n          \"Proprietary Composites\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            0.09,\n            0.12\n          ],\n          \"hullboost\": [\n            -0.04,\n            -0.04\n          ],\n          \"kinres\": [\n            0.09,\n            0.12\n          ],\n          \"mass\": [\n            -0.35,\n            -0.45\n          ],\n          \"thermres\": [\n            0.09,\n            0.12\n          ]\n        },\n        \"uuid\": \"4b9c30c9-0acf-4b56-bce9-3fc65be95382\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Military Grade Alloys\": 1,\n          \"Tin\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            0.12,\n            0.15\n          ],\n          \"hullboost\": [\n            -0.05,\n            -0.05\n          ],\n          \"kinres\": [\n            0.12,\n            0.15\n          ],\n          \"mass\": [\n            -0.45,\n            -0.55\n          ],\n          \"thermres\": [\n            0.12,\n            0.15\n          ]\n        },\n        \"uuid\": \"b97b8100-b8bb-4ef3-84bf-65f9b49eaa30\"\n      }\n    },\n    \"id\": 6,\n    \"modulename\": [\n      \"Bulkheads\",\n      \"Armour\"\n    ],\n    \"name\": \"Lightweight\"\n  },\n  \"Armour_Explosive\": {\n    \"fdname\": \"Armour_Explosive\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            0,\n            0.12\n          ],\n          \"kinres\": [\n            -0.04,\n            -0.04\n          ],\n          \"thermres\": [\n            -0.04,\n            -0.04\n          ]\n        },\n        \"uuid\": \"c74fe800-a8c1-4ae9-95a1-47a8a9d1f10d\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Zinc\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            0.12,\n            0.19\n          ],\n          \"kinres\": [\n            -0.06,\n            -0.06\n          ],\n          \"thermres\": [\n            -0.06,\n            -0.06\n          ]\n        },\n        \"uuid\": \"78f76eb3-ac9e-47bd-be6f-a26b4fdf9c57\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Salvaged Alloys\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            0.19,\n            0.26\n          ],\n          \"kinres\": [\n            -0.08,\n            -0.08\n          ],\n          \"thermres\": [\n            -0.08,\n            -0.08\n          ]\n        },\n        \"uuid\": \"83ea4fd2-2eee-4cfb-baa6-d6c314f58b8d\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Galvanising Alloys\": 1,\n          \"Mercury\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            0.26,\n            0.33\n          ],\n          \"kinres\": [\n            -0.1,\n            -0.1\n          ],\n          \"thermres\": [\n            -0.1,\n            -0.1\n          ]\n        },\n        \"uuid\": \"9656e75a-a8ac-454f-941a-9fe4b4f6a330\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Molybdenum\": 1,\n          \"Phase Alloys\": 1,\n          \"Ruthenium\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            0.33,\n            0.40\n          ],\n          \"kinres\": [\n            -0.12,\n            -0.12\n          ],\n          \"thermres\": [\n            -0.12,\n            -0.12\n          ]\n        },\n        \"uuid\": \"37e0788b-6f7d-43c8-89ca-decaff5f3653\"\n      }\n    },\n    \"id\": 5,\n    \"modulename\": [\n      \"Bulkheads\",\n      \"Armour\"\n    ],\n    \"name\": \"Blast resistant\"\n  },\n  \"Armour_HeavyDuty\": {\n    \"fdname\": \"Armour_HeavyDuty\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Carbon\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            0,\n            0.01\n          ],\n          \"hullboost\": [\n            0,\n            0.12\n          ],\n          \"kinres\": [\n            0,\n            0.01\n          ],\n          \"mass\": [\n            0.1,\n            0.1\n          ],\n          \"thermres\": [\n            0,\n            0.01\n          ]\n        },\n        \"uuid\": \"f9d519ab-b6f6-4d81-a93b-8f4fb45edd55\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            0.01,\n            0.02\n          ],\n          \"hullboost\": [\n            0.12,\n            0.17\n          ],\n          \"kinres\": [\n            0.01,\n            0.02\n          ],\n          \"mass\": [\n            0.15,\n            0.15\n          ],\n          \"thermres\": [\n            0.01,\n            0.02\n          ]\n        },\n        \"uuid\": \"ab58e035-3128-4eec-8974-cbbff022d31e\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"High Density Composites\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            0.02,\n            0.03\n          ],\n          \"hullboost\": [\n            0.17,\n            0.22\n          ],\n          \"kinres\": [\n            0.02,\n            0.03\n          ],\n          \"mass\": [\n            0.2,\n            0.2\n          ],\n          \"thermres\": [\n            0.02,\n            0.03\n          ]\n        },\n        \"uuid\": \"20afd6a5-5a72-4825-813d-b660fe796cb3\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Proprietary Composites\": 1,\n          \"Shielding Sensors\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            0.03,\n            0.04\n          ],\n          \"hullboost\": [\n            0.22,\n            0.27\n          ],\n          \"kinres\": [\n            0.03,\n            0.04\n          ],\n          \"mass\": [\n            0.25,\n            0.25\n          ],\n          \"thermres\": [\n            0.03,\n            0.04\n          ]\n        },\n        \"uuid\": \"e08d3ec0-79e1-4d9f-ae16-6bd0a7e5b5c4\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Compound Shielding\": 1,\n          \"Core Dynamics Composites\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            0.04,\n            0.05\n          ],\n          \"hullboost\": [\n            0.27,\n            0.32\n          ],\n          \"kinres\": [\n            0.04,\n            0.05\n          ],\n          \"mass\": [\n            0.3,\n            0.3\n          ],\n          \"thermres\": [\n            0.04,\n            0.05\n          ]\n        },\n        \"uuid\": \"58b95d8a-1066-4e22-957f-0beb3927a2dd\"\n      }\n    },\n    \"id\": 7,\n    \"modulename\": [\n      \"Bulkheads\",\n      \"Armour\"\n    ],\n    \"name\": \"Heavy duty\"\n  },\n  \"Armour_Kinetic\": {\n    \"fdname\": \"Armour_Kinetic\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            -0.04,\n            -0.04\n          ],\n          \"kinres\": [\n            0,\n            0.12\n          ],\n          \"thermres\": [\n            -0.04,\n            -0.04\n          ]\n        },\n        \"uuid\": \"285736a7-9677-4875-b425-0704d2c05ee6\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Nickel\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            -0.06,\n            -0.06\n          ],\n          \"kinres\": [\n            0.12,\n            0.19\n          ],\n          \"thermres\": [\n            -0.06,\n            -0.06\n          ]\n        },\n        \"uuid\": \"816adb1f-c089-49b6-b52d-a8ca189a4ef5\"\n      },\n      \"3\": {\n        \"components\": {\n          \"High Density Composites\": 1,\n          \"Salvaged Alloys\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            -0.08,\n            -0.08\n          ],\n          \"kinres\": [\n            0.19,\n            0.26\n          ],\n          \"thermres\": [\n            -0.08,\n            -0.08\n          ]\n        },\n        \"uuid\": \"54c5cc67-3112-4c77-87f9-c5d6a5f0ae3c\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Galvanising Alloys\": 1,\n          \"Proprietary Composites\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            -0.1,\n            -0.1\n          ],\n          \"kinres\": [\n            0.26,\n            0.33\n          ],\n          \"thermres\": [\n            -0.1,\n            -0.1\n          ]\n        },\n        \"uuid\": \"80cdd75d-a574-4092-b45d-77187e52edf5\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Core Dynamics Composites\": 1,\n          \"Molybdenum\": 1,\n          \"Phase Alloys\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            -0.12,\n            -0.12\n          ],\n          \"kinres\": [\n            0.33,\n            0.40\n          ],\n          \"thermres\": [\n            -0.12,\n            -0.12\n          ]\n        },\n        \"uuid\": \"f56d18cc-3eca-4bec-8238-4a0105947e4e\"\n      }\n    },\n    \"id\": 4,\n    \"modulename\": [\n      \"Bulkheads\",\n      \"Armour\"\n    ],\n    \"name\": \"Kinetic resistant\"\n  },\n  \"Armour_Thermic\": {\n    \"fdname\": \"Armour_Thermic\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Heat Conduction Wiring\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            -0.04,\n            -0.04\n          ],\n          \"kinres\": [\n            -0.04,\n            -0.04\n          ],\n          \"thermres\": [\n            0,\n            0.12\n          ]\n        },\n        \"uuid\": \"73c3a3c1-da09-4792-a1e9-d0161da6c0f2\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Heat Dispersion Plate\": 1,\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            -0.06,\n            -0.06\n          ],\n          \"kinres\": [\n            -0.06,\n            -0.06\n          ],\n          \"thermres\": [\n            0.12,\n            0.19\n          ]\n        },\n        \"uuid\": \"f3096b56-d6d2-4aa5-a77c-98ce2adc79dc\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Heat Exchangers\": 1,\n          \"Salvaged Alloys\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            -0.08,\n            -0.08\n          ],\n          \"kinres\": [\n            -0.08,\n            -0.08\n          ],\n          \"thermres\": [\n            0.19,\n            0.26\n          ]\n        },\n        \"uuid\": \"1aa48c57-d187-4e82-aa88-8b4a7a4bc856\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Galvanising Alloys\": 1,\n          \"Heat Vanes\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            -0.1,\n            -0.1\n          ],\n          \"kinres\": [\n            -0.1,\n            -0.1\n          ],\n          \"thermres\": [\n            0.26,\n            0.33\n          ]\n        },\n        \"uuid\": \"afc78426-8570-4ad4-923a-794821c2506f\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Molybdenum\": 1,\n          \"Phase Alloys\": 1,\n          \"Proto Heat Radiators\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            -0.12,\n            -0.12\n          ],\n          \"kinres\": [\n            -0.12,\n            -0.12\n          ],\n          \"thermres\": [\n            0.33,\n            0.4\n          ]\n        },\n        \"uuid\": \"12abc854-37c9-4f20-874d-dca8755e76fc\"\n      }\n    },\n    \"id\": 8,\n    \"modulename\": [\n      \"Bulkheads\",\n      \"Armour\"\n    ],\n    \"name\": \"Thermal resistant\"\n  },\n  \"Misc_LightWeight\": {\n    \"fdname\": \"Misc_LightWeight\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Phosphorus\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.1,\n            -0.1\n          ],\n          \"mass\": [\n            0,\n            -0.45\n          ]\n        },\n        \"uuid\": \"5ebd5d76-7bb8-4958-9cc3-f5e2176f2b5e\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Manganese\": 1,\n          \"Salvaged Alloys\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.2,\n            -0.2\n          ],\n          \"mass\": [\n            -0.45,\n            -0.55\n          ]\n        },\n        \"uuid\": \"c49d42a8-cd8f-4576-9c60-85725f635185\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Manganese\": 1,\n          \"Salvaged Alloys\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.3,\n            -0.3\n          ],\n          \"mass\": [\n            -0.55,\n            -0.65\n          ]\n        },\n        \"uuid\": \"bc048a95-b5aa-4f6c-a696-6c40b87a1606\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Phase Alloys\": 1,\n          \"Proto Light Alloys\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.4,\n            -0.4\n          ],\n          \"mass\": [\n            -0.65,\n            -0.75\n          ]\n        },\n        \"uuid\": \"4f9467f7-0c5f-4ab3-856b-aaad019bd79d\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Proto Light Alloys\": 1,\n          \"Proto Radiolic Alloys\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.5,\n            -0.5\n          ],\n          \"mass\": [\n            -0.75,\n            -0.85\n          ]\n        },\n        \"uuid\": \"15d2a67d-71b5-405a-ba21-4f94583064a3\"\n      }\n    },\n    \"id\": 9,\n    \"modulename\": [\n      \"Chaff launcher\",\n      \"Electronic counter measures\",\n      \"ECM\",\n      \"Wake scanner\",\n      \"Frame shift wake scanner\",\n      \"Heat sink launcher\",\n      \"Kill warrant scanner\",\n      \"KWS\",\n      \"Cargo scanner\",\n      \"Manifest scanner\",\n      \"Point defence\"\n    ],\n    \"name\": \"Lightweight\"\n  },\n  \"Misc_Reinforced\": {\n    \"fdname\": \"Misc_Reinforced\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0,\n            0.6\n          ],\n          \"mass\": [\n            0.3,\n            0.3\n          ]\n        },\n        \"uuid\": \"9b714883-e0e7-46b5-a2bb-5367f2cc9b3f\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Nickel\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0.6,\n            1.2\n          ],\n          \"mass\": [\n            0.6,\n            0.6\n          ]\n        },\n        \"uuid\": \"9de3e096-fbfa-4694-a2e4-919494d39ee1\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Nickel\": 1,\n          \"Shield Emitters\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            1.2,\n            1.8\n          ],\n          \"mass\": [\n            0.9,\n            0.9\n          ]\n        },\n        \"uuid\": \"4a5d7441-2543-4405-8587-9b969fffd3f2\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Molybdenum\": 1,\n          \"Tungsten\": 1,\n          \"Zinc\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            1.8,\n            2.4\n          ],\n          \"mass\": [\n            1.2,\n            1.2\n          ]\n        },\n        \"uuid\": \"f4b41ce9-d3a8-4362-9821-0d45f2b975bc\"\n      },\n      \"5\": {\n        \"components\": {\n          \"High Density Composites\": 1,\n          \"Molybdenum\": 1,\n          \"Technetium\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            2.4,\n            3\n          ],\n          \"mass\": [\n            1.5,\n            1.5\n          ]\n        },\n        \"uuid\": \"d5d06450-a1cf-4dd2-b8f0-12d0142ad773\"\n      }\n    },\n    \"id\": 10,\n    \"modulename\": [\n      \"Chaff launcher\",\n      \"Electronic counter measures\",\n      \"ECM\",\n      \"Wake scanner\",\n      \"Frame shift wake scanner\",\n      \"Heat sink launcher\",\n      \"Kill warrant scanner\",\n      \"KWS\",\n      \"Cargo scanner\",\n      \"Manifest scanner\",\n      \"Point defence\"\n    ],\n    \"name\": \"Reinforced\"\n  },\n  \"Misc_Shielded\": {\n    \"fdname\": \"Misc_Shielded\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Worn Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0,\n            0.6\n          ],\n          \"power\": [\n            0.2,\n            0.2\n          ]\n        },\n        \"uuid\": \"f3684224-dfb1-4b30-81df-827246ccce14\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0.6,\n            1.2\n          ],\n          \"power\": [\n            0.4,\n            0.4\n          ]\n        },\n        \"uuid\": \"0fec52b1-3a81-4260-8168-7af698e9ebf3\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"High Density Composites\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            1.2,\n            1.8\n          ],\n          \"power\": [\n            0.6,\n            0.6\n          ]\n        },\n        \"uuid\": \"6ca69c4f-07b6-43e4-97c9-e9134cb1eaf4\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Proprietary Composites\": 1,\n          \"Shielding Sensors\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            1.8,\n            2.4\n          ],\n          \"power\": [\n            0.8,\n            0.8\n          ]\n        },\n        \"uuid\": \"e6ebc222-ec93-4f0f-ac8a-e690ab50656d\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Compound Shielding\": 1,\n          \"Core Dynamics Composites\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            2.4,\n            3\n          ],\n          \"power\": [\n            1,\n            1\n          ]\n        },\n        \"uuid\": \"b307db6f-a54c-49e9-be82-5a4458661fe1\"\n      }\n    },\n    \"id\": 11,\n    \"modulename\": [\n      \"Chaff launcher\",\n      \"Electronic counter measures\",\n      \"ECM\",\n      \"Wake scanner\",\n      \"Frame shift wake scanner\",\n      \"Heat sink launcher\",\n      \"Kill warrant scanner\",\n      \"KWS\",\n      \"Cargo scanner\",\n      \"Manifest scanner\",\n      \"Point defence\"\n    ],\n    \"name\": \"Shielded\"\n  },\n  \"Misc_ChaffCapacity\": {\n    \"fdname\": \"Misc_ChaffCapacity\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Mechanical Scrap\": 1,\n          \"Niobium\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"ammo\": [\n            0,\n            0.5\n          ],\n          \"mass\": [\n            1,\n            1\n          ],\n          \"reload\": [\n            0.1,\n            0.1\n          ]\n        },\n        \"uuid\": \"cc81fa92-d36d-4619-98f9-4202d475b2d8\"\n      }\n    },\n    \"id\": 12,\n    \"modulename\": [\n      \"Chaff launcher\"\n    ],\n    \"name\": \"Ammo capacity\"\n  },\n  \"CollectionLimpet_LightWeight\": {\n    \"fdname\": \"CollectionLimpet_LightWeight\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Phosphorus\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.1,\n            -0.1\n          ],\n          \"mass\": [\n            0,\n            -0.45\n          ]\n        },\n        \"uuid\": \"40d015c8-e3c3-4e6c-8703-0e5dc0c0ca7a\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Manganese\": 1,\n          \"Salvaged Alloys\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.2,\n            -0.2\n          ],\n          \"mass\": [\n            -0.45,\n            -0.55\n          ]\n        },\n        \"uuid\": \"4f4f23cf-fb43-4542-8d60-c96cf884c3c9\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Manganese\": 1,\n          \"Salvaged Alloys\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.3,\n            -0.3\n          ],\n          \"mass\": [\n            -0.55,\n            -0.65\n          ]\n        },\n        \"uuid\": \"9c4ebeff-12e1-4f0e-a972-bb8d4d7e4f08\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Phase Alloys\": 1,\n          \"Proto Light Alloys\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.4,\n            -0.4\n          ],\n          \"mass\": [\n            -0.65,\n            -0.75\n          ]\n        },\n        \"uuid\": \"befa7711-25fa-49d2-97fb-3f8a4cc8b91e\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Proto Light Alloys\": 1,\n          \"Proto Radiolic Alloys\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.5,\n            -0.5\n          ],\n          \"mass\": [\n            -0.75,\n            -0.85\n          ]\n        },\n        \"uuid\": \"d5c4d258-6597-4557-bc1b-b4afc7b59784\"\n      }\n    },\n    \"id\": 16,\n    \"modulename\": [\n      \"Collector limpet controller\"\n    ],\n    \"name\": \"Lightweight\"\n  },\n  \"CollectionLimpet_Reinforced\": {\n    \"fdname\": \"CollectionLimpet_Reinforced\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0,\n            0.6\n          ],\n          \"mass\": [\n            0.3,\n            0.3\n          ]\n        },\n        \"uuid\": \"d0451acd-f57f-46a5-ac1a-c2a2f1919283\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Nickel\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0.6,\n            1.2\n          ],\n          \"mass\": [\n            0.6,\n            0.6\n          ]\n        },\n        \"uuid\": \"ccbf3b26-6ded-4e86-b2dd-330280ca552f\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Nickel\": 1,\n          \"Shield Emitters\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            1.2,\n            1.8\n          ],\n          \"mass\": [\n            0.9,\n            0.9\n          ]\n        },\n        \"uuid\": \"a841e48c-d34b-4dd2-b540-14910224398a\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Molybdenum\": 1,\n          \"Tungsten\": 1,\n          \"Zinc\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            1.8,\n            2.4\n          ],\n          \"mass\": [\n            1.2,\n            1.2\n          ]\n        },\n        \"uuid\": \"de78dde7-c159-4d37-91e2-b6562dd754e4\"\n      },\n      \"5\": {\n        \"components\": {\n          \"High Density Composites\": 1,\n          \"Molybdenum\": 1,\n          \"Technetium\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            2.4,\n            3\n          ],\n          \"mass\": [\n            1.5,\n            1.5\n          ]\n        },\n        \"uuid\": \"2a175094-0490-41f1-ad85-1d199e69f768\"\n      }\n    },\n    \"id\": 17,\n    \"modulename\": [\n      \"Collector limpet controller\"\n    ],\n    \"name\": \"Reinforced\"\n  },\n  \"CollectionLimpet_Shielded\": {\n    \"fdname\": \"CollectionLimpet_Shielded\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Worn Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0,\n            0.6\n          ],\n          \"power\": [\n            0.2,\n            0.2\n          ]\n        },\n        \"uuid\": \"6e384cd7-1ab5-4a03-849f-d1a6d5711012\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0.6,\n            1.2\n          ],\n          \"power\": [\n            0.4,\n            0.4\n          ]\n        },\n        \"uuid\": \"be06b5e7-44c0-4bb4-b084-ca5578cd5b26\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"High Density Composites\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            1.2,\n            1.8\n          ],\n          \"power\": [\n            0.6,\n            0.6\n          ]\n        },\n        \"uuid\": \"d18a63f6-c96e-4e73-b4a1-70deeb27af9c\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Proprietary Composites\": 1,\n          \"Shielding Sensors\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            1.8,\n            2.4\n          ],\n          \"power\": [\n            0.8,\n            0.8\n          ]\n        },\n        \"uuid\": \"99d03d5e-1fd6-49b1-a99d-71571c35dca5\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Compound Shielding\": 1,\n          \"Core Dynamics Composites\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            2.4,\n            3\n          ],\n          \"power\": [\n            1,\n            1\n          ]\n        },\n        \"uuid\": \"bedb2a94-2d59-4ed1-9e51-58ae2cfb4189\"\n      }\n    },\n    \"id\": 18,\n    \"modulename\": [\n      \"Collector limpet controller\"\n    ],\n    \"name\": \"Shielded\"\n  },\n  \"Engine_Dirty\": {\n    \"fdname\": \"Engine_Dirty\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Specialised Legacy Firmware\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.03,\n            -0.03\n          ],\n          \"optmass\": [\n            -0.025,\n            -0.025\n          ],\n          \"optmul\": [\n            0,\n            0.12\n          ],\n          \"power\": [\n            0.04,\n            0.04\n          ],\n          \"thermload\": [\n            0.2,\n            0.2\n          ]\n        },\n        \"uuid\": \"bbdea125-dd2b-4031-8698-56c922df3b76\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Mechanical Equipment\": 1,\n          \"Specialised Legacy Firmware\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.06,\n            -0.06\n          ],\n          \"optmass\": [\n            -0.05,\n            -0.05\n          ],\n          \"optmul\": [\n            0.12,\n            0.19\n          ],\n          \"power\": [\n            0.06,\n            0.06\n          ],\n          \"thermload\": [\n            0.3,\n            0.3\n          ]\n        },\n        \"uuid\": \"d3ccba04-e0f5-40c3-a6f8-a038d5e5b4bf\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Chromium\": 1,\n          \"Mechanical Components\": 1,\n          \"Specialised Legacy Firmware\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.09,\n            -0.09\n          ],\n          \"optmass\": [\n            -0.075,\n            -0.075\n          ],\n          \"optmul\": [\n            0.19,\n            0.26\n          ],\n          \"power\": [\n            0.08,\n            0.08\n          ],\n          \"thermload\": [\n            0.4,\n            0.4\n          ]\n        },\n        \"uuid\": \"60091d1f-38a9-4d62-bbc0-6332e03c7f3d\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Configurable Components\": 1,\n          \"Modified Consumer Firmware\": 1,\n          \"Selenium\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.12,\n            -0.12\n          ],\n          \"optmass\": [\n            -0.1,\n            -0.1\n          ],\n          \"optmul\": [\n            0.26,\n            0.33\n          ],\n          \"power\": [\n            0.1,\n            0.1\n          ],\n          \"thermload\": [\n            0.5,\n            0.5\n          ]\n        },\n        \"uuid\": \"7355e32e-b850-4428-8279-66f234f59c6a\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Cadmium\": 1,\n          \"Cracked Industrial Firmware\": 1,\n          \"Pharmaceutical Isolators\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.15,\n            -0.15\n          ],\n          \"optmass\": [\n            -0.125,\n            -0.125\n          ],\n          \"optmul\": [\n            0.33,\n            0.4\n          ],\n          \"power\": [\n            0.12,\n            0.12\n          ],\n          \"thermload\": [\n            0.6,\n            0.6\n          ]\n        },\n        \"uuid\": \"92514d80-4513-489e-b85f-1b7010b3ae0f\"\n      }\n    },\n    \"id\": 22,\n    \"modulename\": [\n      \"Thrusters\",\n      \"Engines\"\n    ],\n    \"name\": \"Dirty\"\n  },\n  \"Engine_Reinforced\": {\n    \"fdname\": \"Engine_Reinforced\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Carbon\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0,\n            0.3\n          ],\n          \"mass\": [\n            0.05,\n            0.05\n          ],\n          \"thermload\": [\n            -0.1,\n            -0.1\n          ]\n        },\n        \"uuid\": \"21503395-f165-4340-91c7-07d062895eae\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Heat Conduction Wiring\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0.3,\n            0.5\n          ],\n          \"mass\": [\n            0.1,\n            0.1\n          ],\n          \"thermload\": [\n            -0.1,\n            -0.2\n          ]\n        },\n        \"uuid\": \"452e2359-5804-4de1-94bf-d16c9d512cc4\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Heat Conduction Wiring\": 1,\n          \"Shielding Sensors\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0.5,\n            0.7\n          ],\n          \"mass\": [\n            0.15,\n            0.15\n          ],\n          \"thermload\": [\n            -0.2,\n            -0.3\n          ]\n        },\n        \"uuid\": \"ae1a71bb-e025-4268-aa7f-fd4063945beb\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Compound Shielding\": 1,\n          \"Heat Dispersion Plate\": 1,\n          \"High Density Composites\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0.7,\n            0.9\n          ],\n          \"mass\": [\n            0.2,\n            0.2\n          ],\n          \"thermload\": [\n            -0.3,\n            -0.4\n          ]\n        },\n        \"uuid\": \"4bc0b925-dd64-41da-a653-f15acf108f23\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Heat Exchangers\": 1,\n          \"Imperial Shielding\": 1,\n          \"Proprietary Composites\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0.9,\n            1.1\n          ],\n          \"mass\": [\n            0.25,\n            0.25\n          ],\n          \"thermload\": [\n            -0.4,\n            -0.5\n          ]\n        },\n        \"uuid\": \"88aef454-76f6-48a3-a66c-958e50c92e7c\"\n      }\n    },\n    \"id\": 23,\n    \"modulename\": [\n      \"Thrusters\",\n      \"Engines\"\n    ],\n    \"name\": \"Reinforced\"\n  },\n  \"Engine_Tuned\": {\n    \"fdname\": \"Engine_Tuned\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Sulphur\": 1\n        },\n        \"features\": {\n          \"optmass\": [\n            -0.02,\n            -0.02\n          ],\n          \"optmul\": [\n            0,\n            0.08\n          ],\n          \"thermload\": [\n            0,\n            -0.2\n          ]\n        },\n        \"uuid\": \"5b32dae1-7c4a-4760-8c48-0d9a9fa2758d\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Specialised Legacy Firmware\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.04,\n            -0.04\n          ],\n          \"optmass\": [\n            -0.04,\n            -0.04\n          ],\n          \"optmul\": [\n            0.08,\n            0.13\n          ],\n          \"power\": [\n            0.04,\n            0.04\n          ],\n          \"thermload\": [\n            -0.2,\n            -0.3\n          ]\n        },\n        \"uuid\": \"5382eecb-c840-4613-99c1-9bcbdb8d7760\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Specialised Legacy Firmware\": 1,\n          \"Unexpected Emission Data\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.08,\n            -0.08\n          ],\n          \"optmass\": [\n            -0.06,\n            -0.06\n          ],\n          \"optmul\": [\n            0.13,\n            0.18\n          ],\n          \"power\": [\n            0.08,\n            0.08\n          ],\n          \"thermload\": [\n            -0.3,\n            -0.4\n          ]\n        },\n        \"uuid\": \"0c58a5c8-0bf9-4a2c-baf0-b14228f236df\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Decoded Emission Data\": 1,\n          \"Modified Consumer Firmware\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.12,\n            -0.12\n          ],\n          \"optmass\": [\n            -0.08,\n            -0.08\n          ],\n          \"optmul\": [\n            0.18,\n            0.23\n          ],\n          \"power\": [\n            0.12,\n            0.12\n          ],\n          \"thermload\": [\n            -0.4,\n            -0.5\n          ]\n        },\n        \"uuid\": \"afb2b22e-ab30-4195-8bfe-ae81ea6067f3\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Abnormal Compact Emissions Data\": 1,\n          \"Conductive Ceramics\": 1,\n          \"Tin\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.16,\n            -0.16\n          ],\n          \"optmass\": [\n            -0.1,\n            -0.1\n          ],\n          \"optmul\": [\n            0.23,\n            0.28\n          ],\n          \"power\": [\n            0.16,\n            0.16\n          ],\n          \"thermload\": [\n            -0.5,\n            -0.6\n          ]\n        },\n        \"uuid\": \"74e6e223-c709-4c91-88d5-c55f9dfdf722\"\n      }\n    },\n    \"id\": 24,\n    \"modulename\": [\n      \"Thrusters\",\n      \"Engines\"\n    ],\n    \"name\": \"Clean\"\n  },\n  \"FSD_FastBoot\": {\n    \"fdname\": \"FSD_FastBoot\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Grid Resistors\": 1\n        },\n        \"features\": {\n          \"boot\": [\n            0,\n            -0.2\n          ],\n          \"integrity\": [\n            -0.03,\n            -0.03\n          ],\n          \"optmass\": [\n            0,\n            0.03\n          ],\n          \"thermload\": [\n            0.04,\n            0.04\n          ]\n        },\n        \"uuid\": \"23f08173-4d05-49d2-b126-d9e5ea5ee8b5\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Chromium\": 1,\n          \"Grid Resistors\": 1\n        },\n        \"features\": {\n          \"boot\": [\n            -0.2,\n            -0.35\n          ],\n          \"integrity\": [\n            -0.06,\n            -0.06\n          ],\n          \"optmass\": [\n            0.03,\n            0.06\n          ],\n          \"thermload\": [\n            0.08,\n            0.08\n          ]\n        },\n        \"uuid\": \"56875992-02ae-4364-934c-88dbfda0cc57\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Grid Resistors\": 1,\n          \"Heat Dispersion Plate\": 1,\n          \"Selenium\": 1\n        },\n        \"features\": {\n          \"boot\": [\n            -0.35,\n            -0.5\n          ],\n          \"integrity\": [\n            -0.09,\n            -0.09\n          ],\n          \"optmass\": [\n            0.06,\n            0.09\n          ],\n          \"thermload\": [\n            0.12,\n            0.12\n          ]\n        },\n        \"uuid\": \"80c84723-9c37-434b-890e-8723504e5e48\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Cadmium\": 1,\n          \"Heat Exchangers\": 1,\n          \"Hybrid Capacitors\": 1\n        },\n        \"features\": {\n          \"boot\": [\n            -0.5,\n            -0.65\n          ],\n          \"integrity\": [\n            -0.12,\n            -0.12\n          ],\n          \"optmass\": [\n            0.09,\n            0.12\n          ],\n          \"thermload\": [\n            0.16,\n            0.16\n          ]\n        },\n        \"uuid\": \"3747180c-d798-4bc4-bb42-daecf44729cc\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Electrochemical Arrays\": 1,\n          \"Heat Vanes\": 1,\n          \"Tellurium\": 1\n        },\n        \"features\": {\n          \"boot\": [\n            -0.65,\n            -0.8\n          ],\n          \"integrity\": [\n            -0.15,\n            -0.15\n          ],\n          \"optmass\": [\n            0.12,\n            0.15\n          ],\n          \"thermload\": [\n            0.2,\n            0.2\n          ]\n        },\n        \"uuid\": \"1f542f8e-9c17-418d-af88-6f219596465e\"\n      }\n    },\n    \"id\": 25,\n    \"modulename\": [\n      \"Frame shift drive\",\n      \"FSD\"\n    ],\n    \"name\": \"Faster boot sequence\"\n  },\n  \"FSD_LongRange\": {\n    \"fdname\": \"FSD_LongRange\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Atypical Disrupted Wake Echoes\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.03,\n            -0.03\n          ],\n          \"mass\": [\n            0.1,\n            0.1\n          ],\n          \"optmass\": [\n            0,\n            0.15\n          ],\n          \"power\": [\n            0.03,\n            0.03\n          ]\n        },\n        \"uuid\": \"bb67b1a2-7a5b-47bc-8ed8-e949b5e3fb16\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Atypical Disrupted Wake Echoes\": 1,\n          \"Chemical Processors\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.06,\n            -0.06\n          ],\n          \"mass\": [\n            0.15,\n            0.15\n          ],\n          \"optmass\": [\n            0.15,\n            0.25\n          ],\n          \"power\": [\n            0.06,\n            0.06\n          ]\n        },\n        \"uuid\": \"74045351-f348-45f5-8798-487211f19520\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Chemical Processors\": 1,\n          \"Phosphorus\": 1,\n          \"Strange Wake Solutions\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.09,\n            -0.09\n          ],\n          \"mass\": [\n            0.2,\n            0.2\n          ],\n          \"optmass\": [\n            0.25,\n            0.35\n          ],\n          \"power\": [\n            0.09,\n            0.09\n          ]\n        },\n        \"uuid\": \"cf196bb9-55a1-457f-893b-84ff2afd4db9\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Chemical Distillery\": 1,\n          \"Eccentric Hyperspace Trajectories\": 1,\n          \"Manganese\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.12,\n            -0.12\n          ],\n          \"mass\": [\n            0.25,\n            0.25\n          ],\n          \"optmass\": [\n            0.35,\n            0.45\n          ],\n          \"power\": [\n            0.12,\n            0.12\n          ]\n        },\n        \"uuid\": \"ecf49fec-32fd-4930-949d-a341bf0fd00c\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Arsenic\": 1,\n          \"Chemical Manipulators\": 1,\n          \"Datamined Wake Exceptions\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.15,\n            -0.15\n          ],\n          \"mass\": [\n            0.3,\n            0.3\n          ],\n          \"optmass\": [\n            0.45,\n            0.55\n          ],\n          \"power\": [\n            0.15,\n            0.15\n          ]\n        },\n        \"uuid\": \"dddd4fd3-bc9a-4c5b-8606-853c63d0f554\"\n      }\n    },\n    \"id\": 26,\n    \"modulename\": [\n      \"Frame shift drive\",\n      \"FSD\"\n    ],\n    \"name\": \"Increased range\"\n  },\n  \"FSD_Shielded\": {\n    \"fdname\": \"FSD_Shielded\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0,\n            0.25\n          ],\n          \"mass\": [\n            0.04,\n            0.04\n          ],\n          \"optmass\": [\n            0,\n            0.03\n          ],\n          \"thermload\": [\n            0,\n            -0.1\n          ]\n        },\n        \"uuid\": \"0bf46ac9-dfcd-49c3-bcef-db93ba04ed97\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0.25,\n            0.5\n          ],\n          \"mass\": [\n            0.08,\n            0.08\n          ],\n          \"optmass\": [\n            0.03,\n            0.06\n          ],\n          \"thermload\": [\n            -0.1,\n            -0.15\n          ]\n        },\n        \"uuid\": \"2858e680-b675-4ee9-9c24-04e8dd2bfe85\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Shielding Sensors\": 1,\n          \"Zinc\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0.5,\n            0.75\n          ],\n          \"mass\": [\n            0.12,\n            0.12\n          ],\n          \"optmass\": [\n            0.06,\n            0.09\n          ],\n          \"thermload\": [\n            -0.15,\n            -0.2\n          ]\n        },\n        \"uuid\": \"f836e994-c19f-4ed0-926d-fbcc75f136c0\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Compound Shielding\": 1,\n          \"High Density Composites\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0.75,\n            1\n          ],\n          \"mass\": [\n            0.16,\n            0.16\n          ],\n          \"optmass\": [\n            0.09,\n            0.12\n          ],\n          \"thermload\": [\n            -0.2,\n            -0.25\n          ]\n        },\n        \"uuid\": \"fe30a1a0-3644-4411-af1f-59bae0a565b9\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Imperial Shielding\": 1,\n          \"Proprietary Composites\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            1,\n            1.25\n          ],\n          \"mass\": [\n            0.2,\n            0.2\n          ],\n          \"optmass\": [\n            0.12,\n            0.15\n          ],\n          \"thermload\": [\n            -0.25,\n            -0.3\n          ]\n        },\n        \"uuid\": \"eba5e423-bba4-40c1-aafb-e954881f9f2c\"\n      }\n    },\n    \"id\": 27,\n    \"modulename\": [\n      \"Frame shift drive\",\n      \"FSD\"\n    ],\n    \"name\": \"Shielded\"\n  },\n  \"FSDinterdictor_Expanded\": {\n    \"fdname\": \"FSDinterdictor_Expanded\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Mechanical Scrap\": 1\n        },\n        \"features\": {\n          \"facinglimit\": [\n            0,\n            0.4\n          ],\n          \"power\": [\n            0.1,\n            0.1\n          ],\n          \"ranget\": [\n            -0.1,\n            0.1\n          ]\n        },\n        \"uuid\": \"da98fe81-8ac1-4c4a-ba1b-76b894dc9de8\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Mechanical Equipment\": 1,\n          \"Unusual Encrypted Files\": 1\n        },\n        \"features\": {\n          \"facinglimit\": [\n            0.4,\n            0.6\n          ],\n          \"power\": [\n            0.2,\n            0.2\n          ],\n          \"ranget\": [\n            -0.15,\n            -0.15\n          ]\n        },\n        \"uuid\": \"88bcd4df-3ae3-4e6b-80d8-27bf8815e4d2\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Grid Resistors\": 1,\n          \"Mechanical Components\": 1,\n          \"Tagged Encryption Codes\": 1\n        },\n        \"features\": {\n          \"facinglimit\": [\n            0.6,\n            0.8\n          ],\n          \"power\": [\n            0.3,\n            0.3\n          ],\n          \"ranget\": [\n            -0.2,\n            -0.2\n          ]\n        },\n        \"uuid\": \"1036b38e-676f-4b42-8518-abed6f627fb7\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Divergent Scan Data\": 1,\n          \"Mechanical Equipment\": 1,\n          \"Strange Wake Solutions\": 1\n        },\n        \"features\": {\n          \"facinglimit\": [\n            0.8,\n            1\n          ],\n          \"power\": [\n            0.4,\n            0.4\n          ],\n          \"ranget\": [\n            -0.25,\n            -0.25\n          ]\n        },\n        \"uuid\": \"6c9f4098-99fa-4777-bd21-367937d1391f\"\n      }\n    },\n    \"id\": 28,\n    \"modulename\": [\n      \"Frame shift drive interdictor\",\n      \"FSDI\"\n    ],\n    \"name\": \"Expanded capture arc\"\n  },\n  \"FSDinterdictor_LongRange\": {\n    \"fdname\": \"FSDinterdictor_LongRange\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Unusual Encrypted Files\": 1\n        },\n        \"features\": {\n          \"facinglimit\": [\n            -0.1,\n            -0.1\n          ],\n          \"mass\": [\n            0.1,\n            0.1\n          ],\n          \"power\": [\n            0.1,\n            0.1\n          ],\n          \"ranget\": [\n            0,\n            0.2\n          ]\n        },\n        \"uuid\": \"ecec8b3e-891f-4b79-8c07-7836e62424f8\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Atypical Disrupted Wake Echoes\": 1,\n          \"Tagged Encryption Codes\": 1\n        },\n        \"features\": {\n          \"facinglimit\": [\n            -0.15,\n            -0.15\n          ],\n          \"mass\": [\n            0.15,\n            0.15\n          ],\n          \"power\": [\n            0.2,\n            0.2\n          ],\n          \"ranget\": [\n            0.2,\n            0.3\n          ]\n        },\n        \"uuid\": \"08d02c88-e63f-4d29-86b9-eea6a20b17a1\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Anomalous Bulk Scan Data\": 1,\n          \"Anomalous FSD Telemetry\": 1,\n          \"Open Symmetric Keys\": 1\n        },\n        \"features\": {\n          \"facinglimit\": [\n            -0.2,\n            -0.2\n          ],\n          \"mass\": [\n            0.2,\n            0.2\n          ],\n          \"power\": [\n            0.3,\n            0.3\n          ],\n          \"ranget\": [\n            0.3,\n            0.4\n          ]\n        },\n        \"uuid\": \"a2d4bed7-4326-4776-a17b-6ee746f4c9be\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Unidentified Scan Archives\": 1,\n          \"Strange Wake Solutions\": 1,\n          \"Atypical Encryption Archives\": 1\n        },\n        \"features\": {\n          \"facinglimit\": [\n            -0.25,\n            -0.25\n          ],\n          \"mass\": [\n            0.25,\n            0.25\n          ],\n          \"power\": [\n            0.4,\n            0.4\n          ],\n          \"ranget\": [\n            0.4,\n            0.5\n          ]\n        },\n        \"uuid\": \"aaabe016-883e-4ec6-a0f0-dd519b4f0ca5\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Classified Scan Databanks\": 1,\n          \"Eccentric Hyperspace Trajectories\": 1,\n          \"Adaptive Encryptors Capture\": 1\n        },\n        \"features\": {\n          \"facinglimit\": [\n            -0.30,\n            -0.30\n          ],\n          \"mass\": [\n            0.30,\n            0.30\n          ],\n          \"power\": [\n            0.5,\n            0.5\n          ],\n          \"ranget\": [\n            0.5,\n            0.6\n          ]\n        },\n        \"uuid\": \"d62e9816-5457-11eb-a2cb-6805caa43529\"\n      }\n    },\n    \"id\": 29,\n    \"modulename\": [\n      \"Frame shift drive interdictor\",\n      \"FSDI\"\n    ],\n    \"name\": \"Long range\"\n  },\n  \"FuelScoop_Shielded\": {\n    \"fdname\": \"FuelScoop_Shielded\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Worn Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0,\n            0.6\n          ],\n          \"power\": [\n            0.2,\n            0.2\n          ]\n        },\n        \"uuid\": \"7b71b0d6-e035-4526-91cf-b16a15d32594\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0.6,\n            1.2\n          ],\n          \"power\": [\n            0.4,\n            0.4\n          ]\n        },\n        \"uuid\": \"1c367826-7b57-4beb-9d99-c9a598d29cf9\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"High Density Composites\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            1.2,\n            1.8\n          ],\n          \"power\": [\n            0.6,\n            0.6\n          ]\n        },\n        \"uuid\": \"b61946ff-9e65-447b-9757-4c37789fc350\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Proprietary Composites\": 1,\n          \"Shielding Sensors\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            1.8,\n            2.4\n          ],\n          \"power\": [\n            0.8,\n            0.8\n          ]\n        },\n        \"uuid\": \"457e3d79-cdc8-44e6-b98c-c360821b0131\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Core Dynamics Composites\": 1,\n          \"Compound Shielding\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            2.4,\n            3.0\n          ],\n          \"power\": [\n            1.0,\n            1.0\n          ]\n        },\n        \"uuid\": \"91baeeeb-5459-11eb-a2cb-6805caa43529\"\n      }\n    },\n    \"id\": 30,\n    \"modulename\": [\n      \"Fuel scoop\"\n    ],\n    \"name\": \"Shielded\"\n  },\n  \"FuelTransferLimpet_LightWeight\": {\n    \"fdname\": \"FuelTransferLimpet_LightWeight\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Phosphorus\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.1,\n            -0.1\n          ],\n          \"mass\": [\n            0,\n            -0.45\n          ]\n        },\n        \"uuid\": \"b4abda7b-ac4c-4ddf-ac76-f3d9640e217b\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Manganese\": 1,\n          \"Salvaged Alloys\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.2,\n            -0.2\n          ],\n          \"mass\": [\n            -0.45,\n            -0.55\n          ]\n        },\n        \"uuid\": \"7bae1015-d4b9-4c33-8286-79c93386cf33\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Manganese\": 1,\n          \"Salvaged Alloys\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.3,\n            -0.3\n          ],\n          \"mass\": [\n            -0.55,\n            -0.65\n          ]\n        },\n        \"uuid\": \"b69e0eb2-67c4-402a-8b4d-69d64c899fdc\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Phase Alloys\": 1,\n          \"Proto Light Alloys\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.4,\n            -0.4\n          ],\n          \"mass\": [\n            -0.65,\n            -0.75\n          ]\n        },\n        \"uuid\": \"36d13200-4c1d-4d49-9936-af8562a6fbce\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Proto Light Alloys\": 1,\n          \"Proto Radiolic Alloys\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.5,\n            -0.5\n          ],\n          \"mass\": [\n            -0.75,\n            -0.85\n          ]\n        },\n        \"uuid\": \"e7ac0755-b319-4e35-b736-8235b68a1b09\"\n      }\n    },\n    \"id\": 31,\n    \"modulename\": [\n      \"Fuel transfer limpet controller\"\n    ],\n    \"name\": \"Lightweight\"\n  },\n  \"FuelTransferLimpet_Reinforced\": {\n    \"fdname\": \"FuelTransferLimpet_Reinforced\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0,\n            0.6\n          ],\n          \"mass\": [\n            0.3,\n            0.3\n          ]\n        },\n        \"uuid\": \"9d3c40c1-a35c-42a7-8756-68dba821bde1\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Nickel\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0.6,\n            1.2\n          ],\n          \"mass\": [\n            0.6,\n            0.6\n          ]\n        },\n        \"uuid\": \"c09e8d1b-e78e-43b8-bc8c-8ebf7bd84dc5\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Nickel\": 1,\n          \"Shield Emitters\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            1.2,\n            1.8\n          ],\n          \"mass\": [\n            0.9,\n            0.9\n          ]\n        },\n        \"uuid\": \"51e5c01d-191c-446c-8ae1-d91e68da1013\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Molybdenum\": 1,\n          \"Tungsten\": 1,\n          \"Zinc\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            1.8,\n            2.4\n          ],\n          \"mass\": [\n            1.2,\n            1.2\n          ]\n        },\n        \"uuid\": \"1a2e3498-d593-4420-ad66-01281648f8c7\"\n      },\n      \"5\": {\n        \"components\": {\n          \"High Density Composites\": 1,\n          \"Molybdenum\": 1,\n          \"Technetium\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            2.4,\n            3\n          ],\n          \"mass\": [\n            1.5,\n            1.5\n          ]\n        },\n        \"uuid\": \"9faf5a34-a93d-4bcb-873f-0d044b5bc1ba\"\n      }\n    },\n    \"id\": 32,\n    \"modulename\": [\n      \"Fuel transfer limpet controller\"\n    ],\n    \"name\": \"Reinforced\"\n  },\n  \"FuelTransferLimpet_Shielded\": {\n    \"fdname\": \"FuelTransferLimpet_Shielded\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Worn Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0,\n            0.6\n          ],\n          \"power\": [\n            0.2,\n            0.2\n          ]\n        },\n        \"uuid\": \"736aca61-1fd6-4e95-931c-9354434b52ce\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0.6,\n            1.2\n          ],\n          \"power\": [\n            0.4,\n            0.4\n          ]\n        },\n        \"uuid\": \"60b7eeba-eaeb-4799-a7ab-c989afc9e74a\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"High Density Composites\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            1.2,\n            1.8\n          ],\n          \"power\": [\n            0.6,\n            0.6\n          ]\n        },\n        \"uuid\": \"31f3e418-9020-4b01-94ec-cf9d62529f12\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Proprietary Composites\": 1,\n          \"Shielding Sensors\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            1.8,\n            2.4\n          ],\n          \"power\": [\n            0.8,\n            0.8\n          ]\n        },\n        \"uuid\": \"65e897c7-0bb2-426f-bed2-3162767a80d2\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Compound Shielding\": 1,\n          \"Core Dynamics Composites\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            2.4,\n            3\n          ],\n          \"power\": [\n            1,\n            1\n          ]\n        },\n        \"uuid\": \"800144e0-f708-4f40-b78a-6d1354712489\"\n      }\n    },\n    \"id\": 33,\n    \"modulename\": [\n      \"Fuel transfer limpet controller\"\n    ],\n    \"name\": \"Shielded\"\n  },\n  \"HatchBreakerLimpet_LightWeight\": {\n    \"fdname\": \"HatchBreakerLimpet_LightWeight\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Phosphorus\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.1,\n            -0.1\n          ],\n          \"mass\": [\n            0,\n            -0.45\n          ]\n        },\n        \"uuid\": \"3434789e-7555-4bca-a901-09ddbae0d323\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Manganese\": 1,\n          \"Salvaged Alloys\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.2,\n            -0.2\n          ],\n          \"mass\": [\n            -0.45,\n            -0.55\n          ]\n        },\n        \"uuid\": \"c62a09da-8157-474e-8b8f-04b43792a372\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Manganese\": 1,\n          \"Salvaged Alloys\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.3,\n            -0.3\n          ],\n          \"mass\": [\n            -0.55,\n            -0.65\n          ]\n        },\n        \"uuid\": \"ad0166b8-9313-4c7a-a95c-5e4b0e53fc40\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Phase Alloys\": 1,\n          \"Proto Light Alloys\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.4,\n            -0.4\n          ],\n          \"mass\": [\n            -0.65,\n            -0.75\n          ]\n        },\n        \"uuid\": \"cf482f0a-de37-4fec-8bcd-f087203e0f2d\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Proto Light Alloys\": 1,\n          \"Proto Radiolic Alloys\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.5,\n            -0.5\n          ],\n          \"mass\": [\n            -0.75,\n            -0.85\n          ]\n        },\n        \"uuid\": \"80d2445b-47ef-4738-8729-152f45c732f9\"\n      }\n    },\n    \"id\": 34,\n    \"modulename\": [\n      \"Hatch breaker limpet controller\"\n    ],\n    \"name\": \"Lightweight\"\n  },\n  \"HatchBreakerLimpet_Reinforced\": {\n    \"fdname\": \"HatchBreakerLimpet_Reinforced\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0,\n            0.6\n          ],\n          \"mass\": [\n            0.3,\n            0.3\n          ]\n        },\n        \"uuid\": \"f75e88b4-7a5c-40da-9652-a7e91aa174e2\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Nickel\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0.6,\n            1.2\n          ],\n          \"mass\": [\n            0.6,\n            0.6\n          ]\n        },\n        \"uuid\": \"d794c46b-13e7-4136-b435-bdb96c87c657\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Nickel\": 1,\n          \"Shield Emitters\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            1.2,\n            1.8\n          ],\n          \"mass\": [\n            0.9,\n            0.9\n          ]\n        },\n        \"uuid\": \"07acc4c6-724e-4c6b-be15-c9c49d4d95a6\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Molybdenum\": 1,\n          \"Tungsten\": 1,\n          \"Zinc\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            1.8,\n            2.4\n          ],\n          \"mass\": [\n            1.2,\n            1.2\n          ]\n        },\n        \"uuid\": \"fe76b519-7695-4618-b71f-4e27f53f9eb4\"\n      },\n      \"5\": {\n        \"components\": {\n          \"High Density Composites\": 1,\n          \"Molybdenum\": 1,\n          \"Technetium\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            2.4,\n            3\n          ],\n          \"mass\": [\n            1.5,\n            1.5\n          ]\n        },\n        \"uuid\": \"eb38c498-6805-4ac5-8806-c81cc32123af\"\n      }\n    },\n    \"id\": 35,\n    \"modulename\": [\n      \"Hatch breaker limpet controller\"\n    ],\n    \"name\": \"Reinforced\"\n  },\n  \"HatchBreakerLimpet_Shielded\": {\n    \"fdname\": \"HatchBreakerLimpet_Shielded\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Worn Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0,\n            0.6\n          ],\n          \"power\": [\n            0.2,\n            0.2\n          ]\n        },\n        \"uuid\": \"952d56cc-0c1c-4a62-a8c4-a4c668181654\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0.6,\n            1.2\n          ],\n          \"power\": [\n            0.4,\n            0.4\n          ]\n        },\n        \"uuid\": \"accfd35c-3172-455a-94b6-27be6409970a\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"High Density Composites\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            1.2,\n            1.8\n          ],\n          \"power\": [\n            0.6,\n            0.6\n          ]\n        },\n        \"uuid\": \"0db2b6bd-df3f-48be-ac6b-a334b79757a1\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Proprietary Composites\": 1,\n          \"Shielding Sensors\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            1.8,\n            2.4\n          ],\n          \"power\": [\n            0.8,\n            0.8\n          ]\n        },\n        \"uuid\": \"a747942f-d354-4f0d-ad59-323e52823924\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Compound Shielding\": 1,\n          \"Core Dynamics Composites\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            2.4,\n            3\n          ],\n          \"power\": [\n            1,\n            1\n          ]\n        },\n        \"uuid\": \"acf4833c-1fe8-4aef-a396-33ca652793e2\"\n      }\n    },\n    \"id\": 36,\n    \"modulename\": [\n      \"Hatch breaker limpet controller\"\n    ],\n    \"name\": \"Shielded\"\n  },\n  \"Misc_HeatSinkCapacity\": {\n    \"fdname\": \"Misc_HeatSinkCapacity\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Mechanical Scrap\": 1,\n          \"Niobium\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"ammo\": [\n            0.5,\n            0.5\n          ],\n          \"mass\": [\n            1,\n            1\n          ],\n          \"reload\": [\n            0.5,\n            0.5\n          ]\n        },\n        \"uuid\": \"93c43a5d-106c-4481-b50b-c46311607209\"\n      }\n    },\n    \"id\": 37,\n    \"modulename\": [\n      \"Heat sink launcher\"\n    ],\n    \"name\": \"Ammo capacity\"\n  },\n  \"HullReinforcement_Advanced\": {\n    \"fdname\": \"HullReinforcement_Advanced\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"hullboost\": [\n            0,\n            0.08\n          ],\n          \"hullreinforcement\": [\n            -0.04,\n            -0.04\n          ],\n          \"mass\": [\n            0,\n            -0.08\n          ]\n        },\n        \"uuid\": \"8405c035-bf65-47d1-bdbe-5253b5c0a98b\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"hullboost\": [\n            0.08,\n            0.12\n          ],\n          \"hullreinforcement\": [\n            -0.08,\n            -0.08\n          ],\n          \"mass\": [\n            -0.08,\n            -0.12\n          ]\n        },\n        \"uuid\": \"a8dad054-0392-460a-934e-27d40f65e1fc\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"High Density Composites\": 1,\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"hullboost\": [\n            0.12,\n            0.16\n          ],\n          \"hullreinforcement\": [\n            -0.12,\n            -0.12\n          ],\n          \"mass\": [\n            -0.12,\n            -0.16\n          ]\n        },\n        \"uuid\": \"ee887ba1-c66f-4002-97cb-5169201324af\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Germanium\": 1,\n          \"Proprietary Composites\": 1\n        },\n        \"features\": {\n          \"hullboost\": [\n            0.16,\n            0.2\n          ],\n          \"hullreinforcement\": [\n            -0.16,\n            -0.16\n          ],\n          \"mass\": [\n            -0.16,\n            -0.2\n          ]\n        },\n        \"uuid\": \"8912615d-e711-4e5d-a08f-739cbf372963\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Military Grade Alloys\": 1,\n          \"Tin\": 1\n        },\n        \"features\": {\n          \"hullboost\": [\n            0.2,\n            0.24\n          ],\n          \"hullreinforcement\": [\n            -0.2,\n            -0.2\n          ],\n          \"mass\": [\n            -0.2,\n            -0.24\n          ]\n        },\n        \"uuid\": \"371f79dc-6387-40eb-9d98-be915ae4413d\"\n      }\n    },\n    \"id\": 41,\n    \"modulename\": [\n      \"Hull reinforcement\",\n      \"Hull reinforcement package\",\n      \"HRP\"\n    ],\n    \"name\": \"Lightweight\"\n  },\n  \"HullReinforcement_Explosive\": {\n    \"fdname\": \"HullReinforcement_Explosive\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            0,\n            0.12\n          ],\n          \"hullreinforcement\": [\n            0,\n            0.03\n          ],\n          \"kinres\": [\n            -0.02,\n            -0.02\n          ],\n          \"thermres\": [\n            -0.02,\n            -0.02\n          ]\n        },\n        \"uuid\": \"ed72014b-4033-413c-8a71-5eac18e085ce\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Zinc\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            0.12,\n            0.19\n          ],\n          \"hullreinforcement\": [\n            0.03,\n            0.06\n          ],\n          \"kinres\": [\n            -0.04,\n            -0.04\n          ],\n          \"thermres\": [\n            -0.04,\n            -0.04\n          ]\n        },\n        \"uuid\": \"7be2929b-0c89-4059-90d9-4631d90c053b\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Salvaged Alloys\": 1,\n          \"Vanadium\": 1,\n          \"Zirconium\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            0.19,\n            0.26\n          ],\n          \"hullreinforcement\": [\n            0.06,\n            0.09\n          ],\n          \"kinres\": [\n            -0.06,\n            -0.06\n          ],\n          \"thermres\": [\n            -0.06,\n            -0.06\n          ]\n        },\n        \"uuid\": \"11742116-77d3-40ea-bd1f-71e0558a0ad1\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Galvanising Alloys\": 1,\n          \"Mercury\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            0.26,\n            0.33\n          ],\n          \"hullreinforcement\": [\n            0.09,\n            0.12\n          ],\n          \"kinres\": [\n            -0.08,\n            -0.08\n          ],\n          \"thermres\": [\n            -0.08,\n            -0.08\n          ]\n        },\n        \"uuid\": \"1f59b0aa-46ab-4eb5-bf07-fe4d8f968c1d\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Molybdenum\": 1,\n          \"Phase Alloys\": 1,\n          \"Ruthenium\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            0.33,\n            0.40\n          ],\n          \"hullreinforcement\": [\n            0.12,\n            0.15\n          ],\n          \"kinres\": [\n            -0.1,\n            -0.1\n          ],\n          \"thermres\": [\n            -0.1,\n            -0.1\n          ]\n        },\n        \"uuid\": \"2251a73a-39da-4a50-b099-014c07378857\"\n      }\n    },\n    \"id\": 43,\n    \"modulename\": [\n      \"Hull reinforcement\",\n      \"Hull reinforcement package\",\n      \"HRP\"\n    ],\n    \"name\": \"Blast resistant\"\n  },\n  \"HullReinforcement_HeavyDuty\": {\n    \"fdname\": \"HullReinforcement_HeavyDuty\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Carbon\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            0,\n            0.03\n          ],\n          \"hullreinforcement\": [\n            0,\n            0.24\n          ],\n          \"kinres\": [\n            0,\n            0.03\n          ],\n          \"mass\": [\n            0.08,\n            0.08\n          ],\n          \"thermres\": [\n            0,\n            0.03\n          ]\n        },\n        \"uuid\": \"e174a927-ab55-4691-be3e-832f6d68d679\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            0.03,\n            0.06\n          ],\n          \"hullreinforcement\": [\n            0.24,\n            0.36\n          ],\n          \"kinres\": [\n            0.03,\n            0.06\n          ],\n          \"mass\": [\n            0.16,\n            0.16\n          ],\n          \"thermres\": [\n            0.03,\n            0.06\n          ]\n        },\n        \"uuid\": \"2cd3f87c-5ea3-4bd5-ab6d-70458f29de7e\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"High Density Composites\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            0.06,\n            0.09\n          ],\n          \"hullreinforcement\": [\n            0.36,\n            0.48\n          ],\n          \"kinres\": [\n            0.06,\n            0.09\n          ],\n          \"mass\": [\n            0.24,\n            0.24\n          ],\n          \"thermres\": [\n            0.06,\n            0.09\n          ]\n        },\n        \"uuid\": \"251e8773-d06a-4b0e-9e30-a5114a45a5c1\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Proprietary Composites\": 1,\n          \"Shielding Sensors\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            0.09,\n            0.12\n          ],\n          \"hullreinforcement\": [\n            0.48,\n            0.6\n          ],\n          \"kinres\": [\n            0.09,\n            0.12\n          ],\n          \"mass\": [\n            0.32,\n            0.32\n          ],\n          \"thermres\": [\n            0.09,\n            0.12\n          ]\n        },\n        \"uuid\": \"d6b14f0e-9a32-4838-b41f-986f4a5abd6d\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Compound Shielding\": 1,\n          \"Core Dynamics Composites\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            0.12,\n            0.15\n          ],\n          \"hullreinforcement\": [\n            0.6,\n            0.72\n          ],\n          \"kinres\": [\n            0.12,\n            0.15\n          ],\n          \"mass\": [\n            0.4,\n            0.4\n          ],\n          \"thermres\": [\n            0.12,\n            0.15\n          ]\n        },\n        \"uuid\": \"137a648d-394b-48ac-a4de-bfa145fa9cf0\"\n      }\n    },\n    \"id\": 42,\n    \"modulename\": [\n      \"Hull reinforcement\",\n      \"Hull reinforcement package\",\n      \"HRP\"\n    ],\n    \"name\": \"Heavy duty\"\n  },\n  \"HullReinforcement_Kinetic\": {\n    \"fdname\": \"HullReinforcement_Kinetic\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            -0.02,\n            -0.02\n          ],\n          \"hullreinforcement\": [\n            0,\n            0.03\n          ],\n          \"kinres\": [\n            0,\n            0.12\n          ],\n          \"thermres\": [\n            -0.02,\n            -0.02\n          ]\n        },\n        \"uuid\": \"9d5338ab-031c-40e5-bd13-d3eb057540ab\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Nickel\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            -0.04,\n            -0.04\n          ],\n          \"hullreinforcement\": [\n            0.03,\n            0.06\n          ],\n          \"kinres\": [\n            0.12,\n            0.19\n          ],\n          \"thermres\": [\n            -0.04,\n            -0.04\n          ]\n        },\n        \"uuid\": \"238db8e4-99e2-4e70-b4e3-f918294110c7\"\n      },\n      \"3\": {\n        \"components\": {\n          \"High Density Composites\": 1,\n          \"Salvaged Alloys\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            -0.06,\n            -0.06\n          ],\n          \"hullreinforcement\": [\n            0.06,\n            0.09\n          ],\n          \"kinres\": [\n            0.19,\n            0.26\n          ],\n          \"thermres\": [\n            -0.06,\n            -0.06\n          ]\n        },\n        \"uuid\": \"cb65ddfa-2fd9-4db5-9558-0770866ea8ee\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Galvanising Alloys\": 1,\n          \"Proprietary Composites\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            -0.08,\n            -0.08\n          ],\n          \"hullreinforcement\": [\n            0.09,\n            0.12\n          ],\n          \"kinres\": [\n            0.26,\n            0.33\n          ],\n          \"thermres\": [\n            -0.08,\n            -0.08\n          ]\n        },\n        \"uuid\": \"944cb78e-4da0-43a0-acc8-95c7d67eaf92\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Core Dynamics Composites\": 1,\n          \"Molybdenum\": 1,\n          \"Phase Alloys\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            -0.1,\n            -0.1\n          ],\n          \"hullreinforcement\": [\n            0.12,\n            0.15\n          ],\n          \"kinres\": [\n            0.33,\n            0.4\n          ],\n          \"thermres\": [\n            -0.1,\n            -0.1\n          ]\n        },\n        \"uuid\": \"bd68edc4-6ed5-4704-9682-28b51a18591f\"\n      }\n    },\n    \"id\": 44,\n    \"modulename\": [\n      \"Hull reinforcement\",\n      \"Hull reinforcement package\",\n      \"HRP\"\n    ],\n    \"name\": \"Kinetic resistant\"\n  },\n  \"HullReinforcement_Thermic\": {\n    \"fdname\": \"HullReinforcement_Thermic\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Heat Conduction Wiring\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            -0.02,\n            -0.02\n          ],\n          \"hullreinforcement\": [\n            0,\n            0.03\n          ],\n          \"kinres\": [\n            -0.02,\n            -0.02\n          ],\n          \"thermres\": [\n            0,\n            0.12\n          ]\n        },\n        \"uuid\": \"cc3d62d5-9769-480d-9e37-620c61a276ab\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Heat Dispersion Plate\": 1,\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            -0.04,\n            -0.04\n          ],\n          \"hullreinforcement\": [\n            0.03,\n            0.06\n          ],\n          \"kinres\": [\n            -0.04,\n            -0.04\n          ],\n          \"thermres\": [\n            0.12,\n            0.19\n          ]\n        },\n        \"uuid\": \"e4aa2331-7dc5-479c-9959-d90f0e473da9\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Heat Exchangers\": 1,\n          \"Salvaged Alloys\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            -0.06,\n            -0.06\n          ],\n          \"hullreinforcement\": [\n            0.06,\n            0.09\n          ],\n          \"kinres\": [\n            -0.06,\n            -0.06\n          ],\n          \"thermres\": [\n            0.19,\n            0.26\n          ]\n        },\n        \"uuid\": \"29f49ae9-e241-4791-a9e3-bfdccd6cdfbb\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Galvanising Alloys\": 1,\n          \"Heat Vanes\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            -0.08,\n            -0.08\n          ],\n          \"hullreinforcement\": [\n            0.09,\n            0.12\n          ],\n          \"kinres\": [\n            -0.08,\n            -0.08\n          ],\n          \"thermres\": [\n            0.26,\n            0.33\n          ]\n        },\n        \"uuid\": \"19e30f32-a789-4acf-8f69-f97677ace963\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Molybdenum\": 1,\n          \"Phase Alloys\": 1,\n          \"Proto Heat Radiators\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            -0.1,\n            -0.1\n          ],\n          \"hullreinforcement\": [\n            0.12,\n            0.15\n          ],\n          \"kinres\": [\n            -0.1,\n            -0.1\n          ],\n          \"thermres\": [\n            0.33,\n            0.4\n          ]\n        },\n        \"uuid\": \"e6151657-1317-4aec-9e49-2d7e7a093d74\"\n      }\n    },\n    \"id\": 45,\n    \"modulename\": [\n      \"Hull reinforcement\",\n      \"Hull reinforcement package\",\n      \"HRP\"\n    ],\n    \"name\": \"Thermal resistant\"\n  },\n  \"LifeSupport_LightWeight\": {\n    \"fdname\": \"LifeSupport_LightWeight\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Phosphorus\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.1,\n            -0.1\n          ],\n          \"mass\": [\n            0,\n            -0.45\n          ]\n        },\n        \"uuid\": \"e1e1bd93-3a3f-4454-bfe3-0e2b6840b43a\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Manganese\": 1,\n          \"Salvaged Alloys\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.2,\n            -0.2\n          ],\n          \"mass\": [\n            -0.45,\n            -0.55\n          ]\n        },\n        \"uuid\": \"aaf29592-df21-4b4c-aeac-20252e75b8aa\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Manganese\": 1,\n          \"Salvaged Alloys\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.3,\n            -0.3\n          ],\n          \"mass\": [\n            -0.55,\n            -0.65\n          ]\n        },\n        \"uuid\": \"8876b27a-2c31-49f0-8a47-c11acd801c2b\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Phase Alloys\": 1,\n          \"Proto Light Alloys\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.4,\n            -0.4\n          ],\n          \"mass\": [\n            -0.65,\n            -0.75\n          ]\n        },\n        \"uuid\": \"b7672f07-e10e-4371-989c-dd49e28c4b79\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Proto Radiolic Alloys\": 1,\n          \"Proto Light Alloys\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.5,\n            -0.5\n          ],\n          \"mass\": [\n            -0.75,\n            -0.85\n          ]\n        },\n        \"uuid\": \"ec9b7ac2-7a99-4f96-8bf1-061df58dba79\"\n      }\n    },\n    \"id\": 49,\n    \"modulename\": [\n      \"Life support\"\n    ],\n    \"name\": \"Lightweight\"\n  },\n  \"LifeSupport_Reinforced\": {\n    \"fdname\": \"LifeSupport_Reinforced\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0,\n            0.6\n          ],\n          \"mass\": [\n            0.3,\n            0.3\n          ]\n        },\n        \"uuid\": \"b40b11a1-5f0f-440f-b77d-9abf9833d546\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Nickel\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0.6,\n            1.2\n          ],\n          \"mass\": [\n            0.6,\n            0.6\n          ]\n        },\n        \"uuid\": \"847b937b-ffa2-4418-9a48-0993a675d43f\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Nickel\": 1,\n          \"Shield Emitters\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            1.2,\n            1.8\n          ],\n          \"mass\": [\n            0.9,\n            0.9\n          ]\n        },\n        \"uuid\": \"8303d5f6-da56-41d0-8af3-4620efcc561e\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Molybdenum\": 1,\n          \"Tungsten\": 1,\n          \"Zinc\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            1.8,\n            2.4\n          ],\n          \"mass\": [\n            1.2,\n            1.2\n          ]\n        },\n        \"uuid\": \"6c37ca40-0ae6-48e0-a145-c3eea2bf7cce\"\n      },\n      \"5\": {\n        \"components\": {\n          \"High Density Composites\": 1,\n          \"Molybdenum\": 1,\n          \"Technetium\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            2.4,\n            3\n          ],\n          \"mass\": [\n            1.5,\n            1.5\n          ]\n        },\n        \"uuid\": \"d0ff95ad-123a-4fd0-ae88-c46209068e3a\"\n      }\n    },\n    \"id\": 50,\n    \"modulename\": [\n      \"Life support\"\n    ],\n    \"name\": \"Reinforced\"\n  },\n  \"LifeSupport_Shielded\": {\n    \"fdname\": \"LifeSupport_Shielded\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Worn Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0,\n            0.6\n          ],\n          \"power\": [\n            0.2,\n            0.2\n          ]\n        },\n        \"uuid\": \"fcd12382-bbb3-431b-95c5-ae9539a02a54\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0.6,\n            1.2\n          ],\n          \"power\": [\n            0.4,\n            0.4\n          ]\n        },\n        \"uuid\": \"9a62eb66-8231-4fa9-9047-284798892e93\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"High Density Composites\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            1.2,\n            1.8\n          ],\n          \"power\": [\n            0.6,\n            0.6\n          ]\n        },\n        \"uuid\": \"c46b6c89-0a24-4586-865d-76ff5ae35209\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Proprietary Composites\": 1,\n          \"Shielding Sensors\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            1.8,\n            2.4\n          ],\n          \"power\": [\n            0.8,\n            0.8\n          ]\n        },\n        \"uuid\": \"89f25da8-029a-4f3e-828d-393b36f0d7b3\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Tungsten\": 1,\n          \"Compound Shielding\": 1,\n          \"Core Dynamics Composites\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            2.4,\n            3.0\n          ],\n          \"power\": [\n            1.12,\n            1.12\n          ]\n        },\n        \"uuid\": \"89f25da8-029a-4f3e-828d-393b36f0d7b3\"\n      }\n    },\n    \"id\": 51,\n    \"modulename\": [\n      \"Life support\"\n    ],\n    \"name\": \"Shielded\"\n  },\n  \"Misc_PointDefenseCapacity\": {\n    \"fdname\": \"Misc_PointDefenseCapacity\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Mechanical Scrap\": 1,\n          \"Niobium\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"ammo\": [\n            0,\n            0.5\n          ],\n          \"mass\": [\n            1,\n            1\n          ],\n          \"reload\": [\n            0.1,\n            0.1\n          ]\n        },\n        \"uuid\": \"84b2fe9b-5c82-4b3c-8181-7c15aeb9ecf9\"\n      }\n    },\n    \"id\": 55,\n    \"modulename\": [\n      \"Point defence\"\n    ],\n    \"name\": \"Ammo capacity\"\n  },\n  \"PowerDistributor_HighCapacity\": {\n    \"fdname\": \"PowerDistributor_HighCapacity\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Sulphur\": 1\n        },\n        \"features\": {\n          \"engcap\": [\n            0,\n            0.1\n          ],\n          \"engrate\": [\n            -0.02,\n            -0.02\n          ],\n          \"integrity\": [\n            0,\n            0.1\n          ],\n          \"syscap\": [\n            0,\n            0.1\n          ],\n          \"sysrate\": [\n            -0.02,\n            -0.02\n          ],\n          \"wepcap\": [\n            0,\n            0.1\n          ],\n          \"weprate\": [\n            -0.02,\n            -0.02\n          ]\n        },\n        \"uuid\": \"e1ae5651-f688-46e2-a94a-9c3bc6e8665b\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Chromium\": 1,\n          \"Specialised Legacy Firmware\": 1\n        },\n        \"features\": {\n          \"engcap\": [\n            0.1,\n            0.18\n          ],\n          \"engrate\": [\n            -0.06,\n            -0.06\n          ],\n          \"integrity\": [\n            0.1,\n            0.18\n          ],\n          \"syscap\": [\n            0.08,\n            0.1\n          ],\n          \"sysrate\": [\n            -0.06,\n            -0.06\n          ],\n          \"wepcap\": [\n            0.1,\n            0.18\n          ],\n          \"weprate\": [\n            -0.06,\n            -0.06\n          ]\n        },\n        \"uuid\": \"d5ea6b7b-31eb-44f4-b1f3-8126dd6ea7b5\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Chromium\": 1,\n          \"High Density Composites\": 1,\n          \"Specialised Legacy Firmware\": 1\n        },\n        \"features\": {\n          \"engcap\": [\n            0.18,\n            0.26\n          ],\n          \"engrate\": [\n            -0.1,\n            -0.1\n          ],\n          \"integrity\": [\n            0.15,\n            0.2\n          ],\n          \"syscap\": [\n            0.18,\n            0.26\n          ],\n          \"sysrate\": [\n            -0.1,\n            -0.1\n          ],\n          \"wepcap\": [\n            0.18,\n            0.26\n          ],\n          \"weprate\": [\n            -0.1,\n            -0.1\n          ]\n        },\n        \"uuid\": \"b959a87e-a231-46e7-a6a7-65fe6c0464bc\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Modified Consumer Firmware\": 1,\n          \"Proprietary Composites\": 1,\n          \"Selenium\": 1\n        },\n        \"features\": {\n          \"engcap\": [\n            0.26,\n            0.34\n          ],\n          \"engrate\": [\n            -0.14,\n            -0.14\n          ],\n          \"integrity\": [\n            0.2,\n            0.25\n          ],\n          \"syscap\": [\n            0.26,\n            0.34\n          ],\n          \"sysrate\": [\n            -0.14,\n            -0.14\n          ],\n          \"wepcap\": [\n            0.26,\n            0.34\n          ],\n          \"weprate\": [\n            -0.14,\n            -0.14\n          ]\n        },\n        \"uuid\": \"5f468c03-ed6d-474f-9e82-601b11d728c8\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Cracked Industrial Firmware\": 1,\n          \"Military Supercapacitors\": 1,\n          \"Proprietary Composites\": 1\n        },\n        \"features\": {\n          \"engcap\": [\n            0.34,\n            0.42\n          ],\n          \"engrate\": [\n            -0.18,\n            -0.18\n          ],\n          \"integrity\": [\n            0.25,\n            0.3\n          ],\n          \"syscap\": [\n            0.34,\n            0.42\n          ],\n          \"sysrate\": [\n            -0.18,\n            -0.18\n          ],\n          \"wepcap\": [\n            0.34,\n            0.42\n          ],\n          \"weprate\": [\n            -0.18,\n            -0.18\n          ]\n        },\n        \"uuid\": \"50b4cbc5-9445-43e3-a9a8-b1320fc0b27e\"\n      }\n    },\n    \"id\": 56,\n    \"modulename\": [\n      \"Power distributor\",\n      \"Distributor\"\n    ],\n    \"name\": \"High charge capacity\"\n  },\n  \"PowerDistributor_HighFrequency\": {\n    \"fdname\": \"PowerDistributor_HighFrequency\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Specialised Legacy Firmware\": 1\n        },\n        \"features\": {\n          \"engcap\": [\n            -0.01,\n            -0.01\n          ],\n          \"engrate\": [\n            0,\n            0.09\n          ],\n          \"syscap\": [\n            -0.01,\n            -0.01\n          ],\n          \"sysrate\": [\n            0,\n            0.09\n          ],\n          \"wepcap\": [\n            -0.01,\n            -0.01\n          ],\n          \"weprate\": [\n            0,\n            0.09\n          ]\n        },\n        \"uuid\": \"e8ce47e1-c5d7-46bf-b31e-48dcfe9ab1a5\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Chemical Processors\": 1,\n          \"Specialised Legacy Firmware\": 1\n        },\n        \"features\": {\n          \"engcap\": [\n            -0.02,\n            -0.02\n          ],\n          \"engrate\": [\n            0.09,\n            0.18\n          ],\n          \"syscap\": [\n            -0.02,\n            -0.02\n          ],\n          \"sysrate\": [\n            0.09,\n            0.18\n          ],\n          \"wepcap\": [\n            -0.02,\n            -0.02\n          ],\n          \"weprate\": [\n            0.09,\n            0.18\n          ]\n        },\n        \"uuid\": \"528b87b2-157d-471e-9958-831a9962c595\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Chemical Distillery\": 1,\n          \"Grid Resistors\": 1,\n          \"Modified Consumer Firmware\": 1\n        },\n        \"features\": {\n          \"engcap\": [\n            -0.03,\n            -0.03\n          ],\n          \"engrate\": [\n            0.18,\n            0.27\n          ],\n          \"syscap\": [\n            -0.03,\n            -0.03\n          ],\n          \"sysrate\": [\n            0.18,\n            0.27\n          ],\n          \"wepcap\": [\n            -0.03,\n            -0.03\n          ],\n          \"weprate\": [\n            0.18,\n            0.27\n          ]\n        },\n        \"uuid\": \"713b5e19-b7a5-447f-b450-248e771dcd72\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Chemical Manipulators\": 1,\n          \"Cracked Industrial Firmware\": 1,\n          \"Hybrid Capacitors\": 1\n        },\n        \"features\": {\n          \"engcap\": [\n            -0.04,\n            -0.04\n          ],\n          \"engrate\": [\n            0.27,\n            0.36\n          ],\n          \"syscap\": [\n            -0.04,\n            -0.04\n          ],\n          \"sysrate\": [\n            0.27,\n            0.36\n          ],\n          \"wepcap\": [\n            -0.04,\n            -0.04\n          ],\n          \"weprate\": [\n            0.27,\n            0.36\n          ]\n        },\n        \"uuid\": \"1bfd4836-c69d-4adf-94dd-e7c41da96416\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Chemical Manipulators\": 1,\n          \"Cracked Industrial Firmware\": 1,\n          \"Exquisite Focus Crystals\": 1\n        },\n        \"features\": {\n          \"engcap\": [\n            -0.05,\n            -0.05\n          ],\n          \"engrate\": [\n            0.36,\n            0.45\n          ],\n          \"syscap\": [\n            -0.05,\n            -0.05\n          ],\n          \"sysrate\": [\n            0.36,\n            0.45\n          ],\n          \"wepcap\": [\n            -0.05,\n            -0.05\n          ],\n          \"weprate\": [\n            0.36,\n            0.45\n          ]\n        },\n        \"uuid\": \"5adf6ae2-0e1b-4b3e-9513-9b981213cdfd\"\n      }\n    },\n    \"id\": 57,\n    \"modulename\": [\n      \"Power distributor\",\n      \"Distributor\"\n    ],\n    \"name\": \"Charge enhanced\"\n  },\n  \"PowerDistributor_PriorityEngines\": {\n    \"fdname\": \"PowerDistributor_PriorityEngines\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Sulphur\": 1\n        },\n        \"features\": {\n          \"engcap\": [\n            0,\n            0.2\n          ],\n          \"engrate\": [\n            0,\n            0.16\n          ],\n          \"syscap\": [\n            -0.03,\n            -0.03\n          ],\n          \"sysrate\": [\n            -0.03,\n            -0.03\n          ],\n          \"wepcap\": [\n            -0.03,\n            -0.03\n          ],\n          \"weprate\": [\n            -0.01,\n            -0.01\n          ]\n        },\n        \"uuid\": \"69f1b8a3-c868-452f-bdbd-cfc95e117ab5\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Sulphur\": 1\n        },\n        \"features\": {\n          \"engcap\": [\n            0.2,\n            0.3\n          ],\n          \"engrate\": [\n            0.16,\n            0.23\n          ],\n          \"syscap\": [\n            -0.06,\n            -0.06\n          ],\n          \"sysrate\": [\n            -0.06,\n            -0.06\n          ],\n          \"wepcap\": [\n            -0.06,\n            -0.06\n          ],\n          \"weprate\": [\n            -0.02,\n            -0.02\n          ]\n        },\n        \"uuid\": \"5e91d652-7346-4a22-82c9-79853fdcdf91\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Anomalous Bulk Scan Data\": 1,\n          \"Chromium\": 1,\n          \"Electrochemical Arrays\": 1\n        },\n        \"features\": {\n          \"engcap\": [\n            0.3,\n            0.4\n          ],\n          \"engrate\": [\n            0.23,\n            0.3\n          ],\n          \"syscap\": [\n            -0.09,\n            -0.09\n          ],\n          \"sysrate\": [\n            -0.09,\n            -0.09\n          ],\n          \"wepcap\": [\n            -0.09,\n            -0.09\n          ],\n          \"weprate\": [\n            -0.03,\n            -0.03\n          ]\n        },\n        \"uuid\": \"4185370a-c4e9-4f58-9b67-a7f46bb2d3c2\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Unidentified Scan Archives\": 1,\n          \"Selenium\": 1,\n          \"Polymer Capacitors\": 1\n        },\n        \"features\": {\n          \"engcap\": [\n            0.4,\n            0.5\n          ],\n          \"engrate\": [\n            0.3,\n            0.37\n          ],\n          \"syscap\": [\n            -0.12,\n            -0.12\n          ],\n          \"sysrate\": [\n            -0.12,\n            -0.12\n          ],\n          \"wepcap\": [\n            -0.12,\n            -0.12\n          ],\n          \"weprate\": [\n            -0.04,\n            -0.04\n          ]\n        },\n        \"uuid\": \"6a6a497e-8261-4763-8a15-c78222a00443\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Classified Scan Databanks\": 1,\n          \"Cadmium\": 1,\n          \"Military Supercapacitors\": 1\n        },\n        \"features\": {\n          \"engcap\": [\n            0.5,\n            0.6\n          ],\n          \"engrate\": [\n            0.37,\n            0.44\n          ],\n          \"syscap\": [\n            -0.15,\n            -0.15\n          ],\n          \"sysrate\": [\n            -0.15,\n            -0.15\n          ],\n          \"wepcap\": [\n            -0.15,\n            -0.15\n          ],\n          \"weprate\": [\n            -0.05,\n            -0.05\n          ]\n        },\n        \"uuid\": \"ac618c54-ecfc-489a-98cb-e3f5789ad69f\"\n      }\n    },\n    \"id\": 58,\n    \"modulename\": [\n      \"Power distributor\",\n      \"Distributor\"\n    ],\n    \"name\": \"Engine focused\"\n  },\n  \"PowerDistributor_PrioritySystems\": {\n    \"fdname\": \"PowerDistributor_PrioritySystems\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Sulphur\": 1\n        },\n        \"features\": {\n          \"engcap\": [\n            -0.03,\n            -0.03\n          ],\n          \"engrate\": [\n            -0.01,\n            -0.01\n          ],\n          \"syscap\": [\n            0,\n            0.2\n          ],\n          \"sysrate\": [\n            0,\n            0.16\n          ],\n          \"wepcap\": [\n            -0.03,\n            -0.03\n          ],\n          \"weprate\": [\n            -0.03,\n            -0.03\n          ]\n        },\n        \"uuid\": \"8138ba35-155d-4b82-86ef-ad4600ab5e03\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Sulphur\": 1\n        },\n        \"features\": {\n          \"engcap\": [\n            -0.06,\n            -0.06\n          ],\n          \"engrate\": [\n            -0.02,\n            -0.02\n          ],\n          \"syscap\": [\n            0.2,\n            0.3\n          ],\n          \"sysrate\": [\n            0.16,\n            0.23\n          ],\n          \"wepcap\": [\n            -0.06,\n            -0.06\n          ],\n          \"weprate\": [\n            -0.06,\n            -0.06\n          ]\n        },\n        \"uuid\": \"91c79b1b-b494-4dd9-98c4-10d58aa5509f\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Anomalous Bulk Scan Data\": 1,\n          \"Chromium\": 1,\n          \"Electrochemical Arrays\": 1\n        },\n        \"features\": {\n          \"engcap\": [\n            -0.09,\n            -0.09\n          ],\n          \"engrate\": [\n            -0.03,\n            -0.03\n          ],\n          \"syscap\": [\n            0.3,\n            0.4\n          ],\n          \"sysrate\": [\n            0.23,\n            0.3\n          ],\n          \"wepcap\": [\n            -0.09,\n            -0.09\n          ],\n          \"weprate\": [\n            -0.09,\n            -0.09\n          ]\n        },\n        \"uuid\": \"13ab16c7-2456-4387-b536-b28fd2f57d2e\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Unidentified Scan Archives\": 1,\n          \"Selenium\": 1,\n          \"Polymer Capacitors\": 1\n        },\n        \"features\": {\n          \"engcap\": [\n            -0.12,\n            -0.12\n          ],\n          \"engrate\": [\n            -0.04,\n            -0.04\n          ],\n          \"syscap\": [\n            0.4,\n            0.5\n          ],\n          \"sysrate\": [\n            0.3,\n            0.37\n          ],\n          \"wepcap\": [\n            -0.12,\n            -0.12\n          ],\n          \"weprate\": [\n            -0.12,\n            -0.12\n          ]\n        },\n        \"uuid\": \"544e6d6b-be89-478d-9b1b-62fae7599d30\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Classified Scan Databanks\": 1,\n          \"Cadmium\": 1,\n          \"Military Supercapacitors\": 1\n        },\n        \"features\": {\n          \"engcap\": [\n            -0.15,\n            -0.15\n          ],\n          \"engrate\": [\n            -0.05,\n            -0.05\n          ],\n          \"syscap\": [\n            0.5,\n            0.6\n          ],\n          \"sysrate\": [\n            0.37,\n            0.44\n          ],\n          \"wepcap\": [\n            -0.15,\n            -0.15\n          ],\n          \"weprate\": [\n            -0.15,\n            -0.15\n          ]\n        },\n        \"uuid\": \"892dcc86-a720-4fda-96cd-cb0245305764\"\n      }\n    },\n    \"id\": 59,\n    \"modulename\": [\n      \"Power distributor\",\n      \"Distributor\"\n    ],\n    \"name\": \"System focused\"\n  },\n  \"PowerDistributor_PriorityWeapons\": {\n    \"fdname\": \"PowerDistributor_PriorityWeapons\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Sulphur\": 1\n        },\n        \"features\": {\n          \"engcap\": [\n            -0.03,\n            -0.03\n          ],\n          \"engrate\": [\n            -0.03,\n            -0.03\n          ],\n          \"syscap\": [\n            -0.03,\n            -0.03\n          ],\n          \"sysrate\": [\n            -0.01,\n            -0.01\n          ],\n          \"wepcap\": [\n            0,\n            0.2\n          ],\n          \"weprate\": [\n            0,\n            0.16\n          ]\n        },\n        \"uuid\": \"dd023cf4-0b4d-4d18-957f-4b1eecb71c0a\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Sulphur\": 1\n        },\n        \"features\": {\n          \"engcap\": [\n            -0.06,\n            -0.06\n          ],\n          \"engrate\": [\n            -0.06,\n            -0.06\n          ],\n          \"syscap\": [\n            -0.06,\n            -0.06\n          ],\n          \"sysrate\": [\n            -0.02,\n            -0.02\n          ],\n          \"wepcap\": [\n            0.2,\n            0.3\n          ],\n          \"weprate\": [\n            0.16,\n            0.23\n          ]\n        },\n        \"uuid\": \"cac790f3-9852-4673-a219-0f5e4dc6a0ad\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Anomalous Bulk Scan Data\": 1,\n          \"Hybrid Capacitors\": 1,\n          \"Selenium\": 1\n        },\n        \"features\": {\n          \"engcap\": [\n            -0.09,\n            -0.09\n          ],\n          \"engrate\": [\n            -0.09,\n            -0.09\n          ],\n          \"syscap\": [\n            -0.09,\n            -0.09\n          ],\n          \"sysrate\": [\n            -0.03,\n            -0.03\n          ],\n          \"wepcap\": [\n            0.3,\n            0.4\n          ],\n          \"weprate\": [\n            0.23,\n            0.3\n          ]\n        },\n        \"uuid\": \"cc5507e8-613b-4d43-a7fe-a874be963125\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Unidentified Scan Archives\": 1,\n          \"Electrochemical Arrays\": 1,\n          \"Cadmium\": 1\n        },\n        \"features\": {\n          \"engcap\": [\n            -0.12,\n            -0.12\n          ],\n          \"engrate\": [\n            -0.12,\n            -0.12\n          ],\n          \"syscap\": [\n            -0.12,\n            -0.12\n          ],\n          \"sysrate\": [\n            -0.04,\n            -0.04\n          ],\n          \"wepcap\": [\n            0.4,\n            0.5\n          ],\n          \"weprate\": [\n            0.3,\n            0.37\n          ]\n        },\n        \"uuid\": \"34c9c5e5-8a42-4509-a22a-7313528263f2\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Classified Scan Databanks\": 1,\n          \"Polymer Capacitors\": 1,\n          \"Tellurium\": 1\n        },\n        \"features\": {\n          \"engcap\": [\n            -0.15,\n            -0.15\n          ],\n          \"engrate\": [\n            -0.15,\n            -0.15\n          ],\n          \"syscap\": [\n            -0.15,\n            -0.15\n          ],\n          \"sysrate\": [\n            -0.05,\n            -0.05\n          ],\n          \"wepcap\": [\n            0.5,\n            0.6\n          ],\n          \"weprate\": [\n            0.37,\n            0.44\n          ]\n        },\n        \"uuid\": \"23d55bbf-af1c-46ac-b77b-214e70628fe2\"\n      }\n    },\n    \"id\": 60,\n    \"modulename\": [\n      \"Power distributor\",\n      \"Distributor\"\n    ],\n    \"name\": \"Weapon focused\"\n  },\n  \"PowerDistributor_Shielded\": {\n    \"fdname\": \"PowerDistributor_Shielded\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Worn Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0,\n            0.4\n          ],\n          \"mass\": [\n            0.03,\n            0.03\n          ],\n          \"power\": [\n            0,\n            -0.1\n          ]\n        },\n        \"uuid\": \"05883145-2407-46a1-9eea-5a56ac549cfd\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0.4,\n            0.8\n          ],\n          \"mass\": [\n            0.06,\n            0.06\n          ],\n          \"power\": [\n            -0.1,\n            -0.15\n          ]\n        },\n        \"uuid\": \"5822ff0c-fa6c-4072-95be-e2534f37be00\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"High Density Composites\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0.8,\n            1.2\n          ],\n          \"mass\": [\n            0.09,\n            0.09\n          ],\n          \"power\": [\n            -0.15,\n            -0.2\n          ]\n        },\n        \"uuid\": \"d5040eac-fa75-4613-828d-ea71aefd9051\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Proprietary Composites\": 1,\n          \"Shielding Sensors\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            1.2,\n            1.6\n          ],\n          \"mass\": [\n            0.12,\n            0.12\n          ],\n          \"power\": [\n            -0.2,\n            -0.25\n          ]\n        },\n        \"uuid\": \"32c94fd6-71c3-461b-80ed-bfe1543f9651\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Compound Shielding\": 1,\n          \"Core Dynamics Composites\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            1.6,\n            2\n          ],\n          \"mass\": [\n            0.15,\n            0.15\n          ],\n          \"power\": [\n            -0.25,\n            -0.3\n          ]\n        },\n        \"uuid\": \"1b073867-c10f-474b-88d7-5fb6c602b838\"\n      }\n    },\n    \"id\": 61,\n    \"modulename\": [\n      \"Power distributor\",\n      \"Distributor\"\n    ],\n    \"name\": \"Shielded\"\n  },\n  \"PowerPlant_Armoured\": {\n    \"fdname\": \"PowerPlant_Armoured\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Worn Shield Emitters\": 1\n        },\n        \"features\": {\n          \"eff\": [\n            0,\n            -0.04\n          ],\n          \"integrity\": [\n            0,\n            0.4\n          ],\n          \"pgen\": [\n            0,\n            0.04\n          ],\n          \"mass\": [\n            0.04,\n            0.04\n          ]\n        },\n        \"uuid\": \"14be2e0d-417b-4cde-834f-b7e8ca14bb85\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"eff\": [\n            -0.04,\n            -0.06\n          ],\n          \"integrity\": [\n            0.3,\n            0.6\n          ],\n          \"pgen\": [\n            0,\n            0.06\n          ],\n          \"mass\": [\n            0.08,\n            0.08\n          ]\n        },\n        \"uuid\": \"14ade730-2a1d-4f48-a619-46be865819ec\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"High Density Composites\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"eff\": [\n            -0.06,\n            -0.08\n          ],\n          \"integrity\": [\n            0.6,\n            0.8\n          ],\n          \"pgen\": [\n            0.06,\n            0.08\n          ],\n          \"mass\": [\n            0.12,\n            0.12\n          ]\n        },\n        \"uuid\": \"aa9a05c9-f142-40db-b0bf-8f6ca29efba8\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Proprietary Composites\": 1,\n          \"Shielding Sensors\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"eff\": [\n            -0.08,\n            -0.1\n          ],\n          \"integrity\": [\n            0.5,\n            1\n          ],\n          \"pgen\": [\n            0.08,\n            0.1\n          ],\n          \"mass\": [\n            0.16,\n            0.16\n          ]\n        },\n        \"uuid\": \"bfb0ccc8-389e-4df0-9acd-4df91680c5a3\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Compound Shielding\": 1,\n          \"Core Dynamics Composites\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"eff\": [\n            -0.1,\n            -0.12\n          ],\n          \"integrity\": [\n            1,\n            1.2\n          ],\n          \"pgen\": [\n            0.1,\n            0.12\n          ],\n          \"mass\": [\n            0.2,\n            0.2\n          ]\n        },\n        \"uuid\": \"5156badb-c1eb-49f4-923d-b9e6f862799f\"\n      }\n    },\n    \"id\": 62,\n    \"modulename\": [\n      \"Power plant\"\n    ],\n    \"name\": \"Armoured\"\n  },\n  \"PowerPlant_Boosted\": {\n    \"fdname\": \"PowerPlant_Boosted\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Sulphur\": 1\n        },\n        \"features\": {\n          \"eff\": [\n            0.05,\n            0.05\n          ],\n          \"integrity\": [\n            -0.05,\n            -0.05\n          ],\n          \"pgen\": [\n            0,\n            0.12\n          ]\n        },\n        \"uuid\": \"06282764-2821-4604-ad2c-d9b148d562d0\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Heat Conduction Wiring\": 1\n        },\n        \"features\": {\n          \"eff\": [\n            0.1,\n            0.1\n          ],\n          \"integrity\": [\n            -0.1,\n            -0.1\n          ],\n          \"pgen\": [\n            0.12,\n            0.19\n          ]\n        },\n        \"uuid\": \"feb49620-2df8-4ec6-9a58-13f986aed81f\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Heat Conduction Wiring\": 1,\n          \"Selenium\": 1\n        },\n        \"features\": {\n          \"eff\": [\n            0.15,\n            0.15\n          ],\n          \"integrity\": [\n            -0.15,\n            -0.15\n          ],\n          \"pgen\": [\n            0.19,\n            0.26\n          ]\n        },\n        \"uuid\": \"9325c166-998d-4ea6-8dab-0aafcec76705\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Cadmium\": 1,\n          \"Conductive Ceramics\": 1,\n          \"Heat Dispersion Plate\": 1\n        },\n        \"features\": {\n          \"eff\": [\n            0.2,\n            0.2\n          ],\n          \"integrity\": [\n            -0.2,\n            -0.2\n          ],\n          \"pgen\": [\n            0.26,\n            0.33\n          ]\n        },\n        \"uuid\": \"6dd84c8d-1d21-4bf5-a747-f582ffe49a99\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Chemical Manipulators\": 1,\n          \"Conductive Ceramics\": 1,\n          \"Tellurium\": 1\n        },\n        \"features\": {\n          \"eff\": [\n            0.25,\n            0.25\n          ],\n          \"integrity\": [\n            -0.25,\n            -0.25\n          ],\n          \"pgen\": [\n            0.33,\n            0.4\n          ]\n        },\n        \"uuid\": \"f8cee63e-9cdf-43e5-9584-a945d4c57aee\"\n      }\n    },\n    \"id\": 63,\n    \"modulename\": [\n      \"Power plant\"\n    ],\n    \"name\": \"Overcharged\"\n  },\n  \"PowerPlant_Stealth\": {\n    \"fdname\": \"PowerPlant_Stealth\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"eff\": [\n            0,\n            -0.25\n          ],\n          \"mass\": [\n            0.04,\n            0.04\n          ],\n          \"pgen\": [\n            -0.03,\n            -0.03\n          ]\n        },\n        \"uuid\": \"92571059-8e76-4473-b3ee-1b50803c75ef\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Iron\": 1,\n          \"Irregular Emission Data\": 1\n        },\n        \"features\": {\n          \"eff\": [\n            -0.25,\n            -0.35\n          ],\n          \"mass\": [\n            0.08,\n            0.08\n          ],\n          \"pgen\": [\n            -0.06,\n            -0.06\n          ]\n        },\n        \"uuid\": \"5a20a4d0-2d5d-4380-b14d-6099928cd0a7\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Heat Exchangers\": 1,\n          \"Iron\": 1,\n          \"Irregular Emission Data\": 1\n        },\n        \"features\": {\n          \"eff\": [\n            -0.35,\n            -0.45\n          ],\n          \"mass\": [\n            0.12,\n            0.12\n          ],\n          \"pgen\": [\n            -0.09,\n            -0.09\n          ]\n        },\n        \"uuid\": \"a0283399-56cd-4013-8293-872ad44a1ffd\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Heat Vanes\": 1,\n          \"Germanium\": 1,\n          \"Unexpected Emission Data\": 1\n        },\n        \"features\": {\n          \"eff\": [\n            -0.45,\n            -0.55\n          ],\n          \"mass\": [\n            0.16,\n            0.16\n          ],\n          \"pgen\": [\n            -0.12,\n            -0.12\n          ]\n        },\n        \"uuid\": \"e87a55a5-ddf0-42fe-b919-9a3ef13a7bba\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Proto Heat Radiators\": 1,\n          \"Niobium\": 1,\n          \"Decoded Emission Data\": 1\n        },\n        \"features\": {\n          \"eff\": [\n            -0.55,\n            -0.65\n          ],\n          \"mass\": [\n            0.2,\n            0.2\n          ],\n          \"pgen\": [\n            -0.15,\n            -0.15\n          ]\n        },\n        \"uuid\": \"83a93700-084e-4c4b-aed5-30dc99d1da0c\"\n      }\n    },\n    \"id\": 64,\n    \"modulename\": [\n      \"Power plant\"\n    ],\n    \"name\": \"Low emissions\"\n  },\n  \"ProspectingLimpet_LightWeight\": {\n    \"fdname\": \"ProspectingLimpet_LightWeight\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Phosphorus\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.1,\n            -0.1\n          ],\n          \"mass\": [\n            0,\n            -0.45\n          ]\n        },\n        \"uuid\": \"bb27a6b6-5c10-41e8-a6b3-3abc8a4ed23e\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Manganese\": 1,\n          \"Salvaged Alloys\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.2,\n            -0.2\n          ],\n          \"mass\": [\n            -0.45,\n            -0.55\n          ]\n        },\n        \"uuid\": \"95af3c55-ec45-4f5d-848d-1639307fee41\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Manganese\": 1,\n          \"Salvaged Alloys\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.3,\n            -0.3\n          ],\n          \"mass\": [\n            -0.55,\n            -0.65\n          ]\n        },\n        \"uuid\": \"a3b84b26-d67e-4d8c-9653-f23181cce9f8\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Phase Alloys\": 1,\n          \"Proto Light Alloys\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.4,\n            -0.4\n          ],\n          \"mass\": [\n            -0.65,\n            -0.75\n          ]\n        },\n        \"uuid\": \"363a9543-4072-4211-8c89-8e9477fa72eb\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Proto Light Alloys\": 1,\n          \"Proto Radiolic Alloys\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.5,\n            -0.5\n          ],\n          \"mass\": [\n            -0.75,\n            -0.85\n          ]\n        },\n        \"uuid\": \"4de10a2c-e440-4b2e-95fb-e1121bff19a4\"\n      }\n    },\n    \"id\": 65,\n    \"modulename\": [\n      \"Prospector limpet controller\"\n    ],\n    \"name\": \"Lightweight\"\n  },\n  \"ProspectingLimpet_Reinforced\": {\n    \"fdname\": \"ProspectingLimpet_Reinforced\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0,\n            0.6\n          ],\n          \"mass\": [\n            0.3,\n            0.3\n          ]\n        },\n        \"uuid\": \"650fdb39-a2fa-4757-bac0-fcad6c7104f9\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Nickel\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0.6,\n            1.2\n          ],\n          \"mass\": [\n            0.6,\n            0.6\n          ]\n        },\n        \"uuid\": \"ee33e0d9-d8b2-4ac5-9370-7dac2f252570\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Nickel\": 1,\n          \"Shield Emitters\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            1.2,\n            1.8\n          ],\n          \"mass\": [\n            0.9,\n            0.9\n          ]\n        },\n        \"uuid\": \"5c8c244e-2f93-4422-8fcb-ad4012020a8a\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Molybdenum\": 1,\n          \"Tungsten\": 1,\n          \"Zinc\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            1.8,\n            2.4\n          ],\n          \"mass\": [\n            1.2,\n            1.2\n          ]\n        },\n        \"uuid\": \"31532d5f-6e3c-45a6-95b2-13fb0218aa7a\"\n      },\n      \"5\": {\n        \"components\": {\n          \"High Density Composites\": 1,\n          \"Molybdenum\": 1,\n          \"Technetium\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            2.4,\n            3\n          ],\n          \"mass\": [\n            1.5,\n            1.5\n          ]\n        },\n        \"uuid\": \"d98c0250-252f-4d48-9c98-e43b8c50b978\"\n      }\n    },\n    \"id\": 66,\n    \"modulename\": [\n      \"Prospector limpet controller\"\n    ],\n    \"name\": \"Reinforced\"\n  },\n  \"ProspectingLimpet_Shielded\": {\n    \"fdname\": \"ProspectingLimpet_Shielded\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Worn Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0,\n            0.6\n          ],\n          \"power\": [\n            0.2,\n            0.2\n          ]\n        },\n        \"uuid\": \"573d6e16-dc01-4093-a14d-420621279673\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0.6,\n            1.2\n          ],\n          \"power\": [\n            0.4,\n            0.4\n          ]\n        },\n        \"uuid\": \"197d4759-f451-4b30-8051-08c5fde05421\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"High Density Composites\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            1.2,\n            1.8\n          ],\n          \"power\": [\n            0.6,\n            0.6\n          ]\n        },\n        \"uuid\": \"633cafa0-a2c3-436c-867f-aba0205e55b8\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Proprietary Composites\": 1,\n          \"Shielding Sensors\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            1.8,\n            2.4\n          ],\n          \"power\": [\n            0.8,\n            0.8\n          ]\n        },\n        \"uuid\": \"6a396efb-3aa1-4022-b66d-dd299ff7e4d8\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Compound Shielding\": 1,\n          \"Core Dynamics Composites\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            2.4,\n            3\n          ],\n          \"power\": [\n            1,\n            1\n          ]\n        },\n        \"uuid\": \"85a8d27b-8f97-46fb-91b3-3f56553e1eef\"\n      }\n    },\n    \"id\": 67,\n    \"modulename\": [\n      \"Prospector limpet controller\"\n    ],\n    \"name\": \"Shielded\"\n  },\n  \"Refineries_Shielded\": {\n    \"fdname\": \"Refineries_Shielded\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Worn Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0,\n            0.6\n          ],\n          \"power\": [\n            0.2,\n            0.2\n          ]\n        },\n        \"uuid\": \"58578acb-b652-4a30-8ffe-e4e488325221\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0.6,\n            1.2\n          ],\n          \"power\": [\n            0.4,\n            0.4\n          ]\n        },\n        \"uuid\": \"e33c7809-d6cd-4549-8596-9400baabc3cd\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"High Density Composites\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            1.2,\n            1.8\n          ],\n          \"power\": [\n            0.6,\n            0.6\n          ]\n        },\n        \"uuid\": \"cffa4897-fa7a-44dd-8fe1-1b3702e82f9e\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Proprietary Composites\": 1,\n          \"Shielding Sensors\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            1.8,\n            2.4\n          ],\n          \"power\": [\n            0.8,\n            0.8\n          ]\n        },\n        \"uuid\": \"48d62ffb-b0ff-47bf-9e4a-a8a4cfbd22bc\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Core Dynamics Composites\": 1,\n          \"Compound Shielding\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            2.4,\n            3.0\n          ],\n          \"power\": [\n            1.0,\n            1.0\n          ]\n        },\n        \"uuid\": \"be6ba667-5458-11eb-a2cb-6805caa43529\"\n      }\n    },\n    \"id\": 92,\n    \"modulename\": [\n      \"Refinery\"\n    ],\n    \"name\": \"Shielded\"\n  },\n  \"Sensor_FastScan\": {\n    \"fdname\": \"Sensor_FastScan\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Phosphorus\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.1,\n            -0.1\n          ],\n          \"range\": [\n            -0.05,\n            -0.05\n          ],\n          \"scantime\": [\n            0,\n            -0.2\n          ]\n        },\n        \"uuid\": \"8e2046eb-06bf-44e4-8fad-981f24d68340\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Flawed Focus Crystals\": 1,\n          \"Phosphorus\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.2,\n            -0.2\n          ],\n          \"range\": [\n            -0.1,\n            -0.1\n          ],\n          \"scantime\": [\n            -0.2,\n            -0.35\n          ]\n        },\n        \"uuid\": \"953bcfbf-a46d-45e2-90c7-f727e641edc3\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Flawed Focus Crystals\": 1,\n          \"Open Symmetric Keys\": 1,\n          \"Phosphorus\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.3,\n            -0.3\n          ],\n          \"range\": [\n            -0.15,\n            -0.15\n          ],\n          \"scantime\": [\n            -0.35,\n            -0.5\n          ]\n        },\n        \"uuid\": \"bed8bdc6-ef45-450e-aa7f-802cea642b2d\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Atypical Encryption Archives\": 1,\n          \"Focus Crystals\": 1,\n          \"Manganese\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.4,\n            -0.4\n          ],\n          \"range\": [\n            -0.2,\n            -0.2\n          ],\n          \"scantime\": [\n            -0.5,\n            -0.65\n          ]\n        },\n        \"uuid\": \"610ba60e-d0e3-42c2-9269-c67bafb25546\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Adaptive Encryptors Capture\": 1,\n          \"Arsenic\": 1,\n          \"Refined Focus Crystals\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.5,\n            -0.5\n          ],\n          \"range\": [\n            -0.25,\n            -0.25\n          ],\n          \"scantime\": [\n            -0.8,\n            -0.8\n          ]\n        },\n        \"uuid\": \"64b8d29d-de5c-4b50-bd77-ae7cb3c78ed6\"\n      }\n    },\n    \"id\": 102,\n    \"modulename\": [\n      \"Wake scanner\",\n      \"Frame shift wake scanner\",\n      \"Kill warrant scanner\",\n      \"KWS\",\n      \"Cargo scanner\",\n      \"Manifest scanner\"\n    ],\n    \"name\": \"Fast scan\"\n  },\n  \"Scanner_LongRange\": {\n    \"fdname\": \"Scanner_LongRange\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"power\": [\n            0.1,\n            0.1\n          ],\n          \"angle\": [\n            -0.1,\n            -0.1\n          ],\n          \"range\": [\n            0,\n            0.24\n          ]\n        },\n        \"uuid\": \"1b566f8d-56ef-4b11-bb06-1fd9c603ab1c\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Hybrid Capacitors\": 1,\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"power\": [\n            0.2,\n            0.2\n          ],\n          \"angle\": [\n            -0.15,\n            -0.15\n          ],\n          \"range\": [\n            0.24,\n            0.48\n          ]\n        },\n        \"uuid\": \"9371ee9f-12a1-4859-9b97-e3c3c87ee0a0\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Hybrid Capacitors\": 1,\n          \"Iron\": 1,\n          \"Unexpected Emission Data\": 1\n        },\n        \"features\": {\n          \"power\": [\n            0.3,\n            0.3\n          ],\n          \"angle\": [\n            -0.2,\n            -0.2\n          ],\n          \"range\": [\n            0.48,\n            0.72\n          ]\n        },\n        \"uuid\": \"317bbfd2-7b05-4f7a-b6ca-55e0a7d3f147\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Decoded Emission Data\": 1,\n          \"Electrochemical Arrays\": 1,\n          \"Germanium\": 1\n        },\n        \"features\": {\n          \"power\": [\n            0.4,\n            0.4\n          ],\n          \"angle\": [\n            -0.25,\n            -0.25\n          ],\n          \"range\": [\n            0.72,\n            0.96\n          ]\n        },\n        \"uuid\": \"5e3ac270-69ef-4301-9e86-8c9cbc5ada89\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Abnormal Compact Emissions Data\": 1,\n          \"Niobium\": 1,\n          \"Polymer Capacitors\": 1\n        },\n        \"features\": {\n          \"power\": [\n            0.5,\n            0.5\n          ],\n          \"angle\": [\n            -0.3,\n            -0.3\n          ],\n          \"range\": [\n            0.96,\n            1.2\n          ]\n        },\n        \"uuid\": \"993b050e-b308-4010-8ba6-58e08483793d\"\n      }\n    },\n    \"id\": 104,\n    \"modulename\": [\n      \"Wake scanner\",\n      \"Frame shift wake scanner\",\n      \"Kill warrant scanner\",\n      \"KWS\",\n      \"Cargo scanner\",\n      \"Manifest scanner\"\n    ],\n    \"name\": \"Long range\"\n  },\n  \"Scanner_WideAngle\": {\n    \"fdname\": \"Scanner_WideAngle\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Mechanical Scrap\": 1\n        },\n        \"features\": {\n          \"mass\": [\n            0.2,\n            0.2\n          ],\n          \"angle\": [\n            0,\n            0.4\n          ],\n          \"scantime\": [\n            0.1,\n            0.1\n          ]\n        },\n        \"uuid\": \"c034e952-985f-4b04-9d9e-bec4ddc50171\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Germanium\": 1,\n          \"Mechanical Scrap\": 1\n        },\n        \"features\": {\n          \"mass\": [\n            0.4,\n            0.4\n          ],\n          \"angle\": [\n            0.4,\n            0.8\n          ],\n          \"scantime\": [\n            0.2,\n            0.2\n          ]\n        },\n        \"uuid\": \"c2dee450-a617-4740-9af9-57cf2ea7de4f\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Classified Scan Databanks\": 1,\n          \"Germanium\": 1,\n          \"Mechanical Scrap\": 1\n        },\n        \"features\": {\n          \"mass\": [\n            0.6,\n            0.6\n          ],\n          \"angle\": [\n            0.8,\n            1.2\n          ],\n          \"scantime\": [\n            0.3,\n            0.3\n          ]\n        },\n        \"uuid\": \"181cd2e3-ef3c-4939-b5b9-f6b21090d920\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Divergent Scan Data\": 1,\n          \"Mechanical Equipment\": 1,\n          \"Niobium\": 1\n        },\n        \"features\": {\n          \"mass\": [\n            0.8,\n            0.8\n          ],\n          \"angle\": [\n            1.2,\n            1.6\n          ],\n          \"scantime\": [\n            0.4,\n            0.4\n          ]\n        },\n        \"uuid\": \"a93247e8-cbce-4026-9640-6137934614c9\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Classified Scan Fragment\": 1,\n          \"Mechanical Components\": 1,\n          \"Tin\": 1\n        },\n        \"features\": {\n          \"mass\": [\n            1,\n            1\n          ],\n          \"angle\": [\n            1.6,\n            2\n          ],\n          \"scantime\": [\n            0.5,\n            0.5\n          ]\n        },\n        \"uuid\": \"9f6b1226-d7b9-4bcd-b60d-9e8227be79f2\"\n      }\n    },\n    \"id\": 105,\n    \"modulename\": [\n      \"Wake scanner\",\n      \"Frame shift wake scanner\",\n      \"Kill warrant scanner\",\n      \"KWS\",\n      \"Cargo scanner\",\n      \"Manifest scanner\"\n    ],\n    \"name\": \"Wide angle\"\n  },\n  \"Sensor_LightWeight\": {\n    \"fdname\": \"Sensor_LightWeight\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Phosphorus\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.1,\n            -0.1\n          ],\n          \"mass\": [\n            0,\n            -0.2\n          ],\n          \"angle\": [\n            -0.05,\n            -0.05\n          ]\n        },\n        \"uuid\": \"239cd942-3298-4be0-b032-143961c801a1\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Manganese\": 1,\n          \"Salvaged Alloys\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.2,\n            -0.2\n          ],\n          \"mass\": [\n            -0.2,\n            -0.35\n          ],\n          \"angle\": [\n            -0.1,\n            -0.1\n          ]\n        },\n        \"uuid\": \"8dd41f78-c4f0-4107-a1fe-d1eee78bbd23\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Manganese\": 1,\n          \"Salvaged Alloys\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.3,\n            -0.3\n          ],\n          \"mass\": [\n            -0.35,\n            -0.5\n          ],\n          \"angle\": [\n            -0.15,\n            -0.15\n          ]\n        },\n        \"uuid\": \"d51697d0-c837-4c0d-a6af-f192ace27e9a\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Phase Alloys\": 1,\n          \"Proto Light Alloys\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.4,\n            -0.4\n          ],\n          \"mass\": [\n            -0.5,\n            -0.65\n          ],\n          \"angle\": [\n            -0.2,\n            -0.2\n          ]\n        },\n        \"uuid\": \"01ccf913-c1cb-47a6-9515-1d2ee3e3b2ae\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Proto Light Alloys\": 1,\n          \"Proto Radiolic Alloys\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.5,\n            -0.5\n          ],\n          \"mass\": [\n            -0.65,\n            -0.8\n          ],\n          \"angle\": [\n            -0.25,\n            -0.25\n          ]\n        },\n        \"uuid\": \"93c0ae86-d3ac-40c5-9ef3-b65c14d53cf6\"\n      }\n    },\n    \"id\": 96,\n    \"modulename\": [\n      \"Sensors\"\n    ],\n    \"name\": \"Lightweight\"\n  },\n  \"Sensor_LongRange\": {\n    \"fdname\": \"Sensor_LongRange\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"mass\": [\n            0.2,\n            0.2\n          ],\n          \"angle\": [\n            -0.1,\n            -0.1\n          ],\n          \"range\": [\n            0,\n            0.15\n          ]\n        },\n        \"uuid\": \"92c755ae-690b-442c-bacd-606575987f22\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Hybrid Capacitors\": 1,\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"mass\": [\n            0.4,\n            0.4\n          ],\n          \"angle\": [\n            -0.15,\n            -0.15\n          ],\n          \"range\": [\n            0.15,\n            0.3\n          ]\n        },\n        \"uuid\": \"40167259-2960-4072-a135-cba93c87709d\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Hybrid Capacitors\": 1,\n          \"Iron\": 1,\n          \"Unexpected Emission Data\": 1\n        },\n        \"features\": {\n          \"mass\": [\n            0.6,\n            0.6\n          ],\n          \"angle\": [\n            -0.2,\n            -0.2\n          ],\n          \"range\": [\n            0.3,\n            0.45\n          ]\n        },\n        \"uuid\": \"6d422ca1-ebdd-4c87-b2b2-056e36c0cbfb\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Decoded Emission Data\": 1,\n          \"Electrochemical Arrays\": 1,\n          \"Germanium\": 1\n        },\n        \"features\": {\n          \"mass\": [\n            0.8,\n            0.8\n          ],\n          \"angle\": [\n            -0.25,\n            -0.25\n          ],\n          \"range\": [\n            0.45,\n            0.6\n          ]\n        },\n        \"uuid\": \"6b09d91f-919f-4a3a-9900-850b026ab01c\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Abnormal Compact Emissions Data\": 1,\n          \"Niobium\": 1,\n          \"Polymer Capacitors\": 1\n        },\n        \"features\": {\n          \"mass\": [\n            1,\n            1\n          ],\n          \"angle\": [\n            -0.3,\n            -0.3\n          ],\n          \"range\": [\n            0.6,\n            0.75\n          ]\n        },\n        \"uuid\": \"c055cafb-3e8a-4415-8e9b-cfa8be809b75\"\n      }\n    },\n    \"id\": 97,\n    \"modulename\": [\n      \"Sensors\"\n    ],\n    \"name\": \"Long range\"\n  },\n  \"Sensor_WideAngle\": {\n    \"fdname\": \"Sensor_WideAngle\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Mechanical Scrap\": 1\n        },\n        \"features\": {\n          \"power\": [\n            0.1,\n            0.1\n          ],\n          \"angle\": [\n            0,\n            0.4\n          ],\n          \"range\": [\n            -0.04,\n            -0.04\n          ]\n        },\n        \"uuid\": \"996dc047-9f07-47a6-8b05-3283ce666fa7\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Germanium\": 1,\n          \"Mechanical Scrap\": 1\n        },\n        \"features\": {\n          \"power\": [\n            0.2,\n            0.2\n          ],\n          \"angle\": [\n            0.4,\n            0.8\n          ],\n          \"range\": [\n            -0.08,\n            -0.08\n          ]\n        },\n        \"uuid\": \"0855a023-3a25-44c1-84fa-c6e4e8ac3384\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Classified Scan Databanks\": 1,\n          \"Germanium\": 1,\n          \"Mechanical Scrap\": 1\n        },\n        \"features\": {\n          \"power\": [\n            0.3,\n            0.3\n          ],\n          \"angle\": [\n            0.8,\n            1.2\n          ],\n          \"range\": [\n            -0.12,\n            -0.12\n          ]\n        },\n        \"uuid\": \"06908f4d-30e8-448f-9652-5051a79713f3\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Divergent Scan Data\": 1,\n          \"Mechanical Equipment\": 1,\n          \"Niobium\": 1\n        },\n        \"features\": {\n          \"power\": [\n            0.4,\n            0.4\n          ],\n          \"angle\": [\n            1.2,\n            1.6\n          ],\n          \"range\": [\n            -0.16,\n            -0.16\n          ]\n        },\n        \"uuid\": \"af874bae-07c3-457a-b525-baeb771b3d72\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Classified Scan Fragment\": 1,\n          \"Mechanical Components\": 1,\n          \"Tin\": 1\n        },\n        \"features\": {\n          \"power\": [\n            0.5,\n            0.5\n          ],\n          \"angle\": [\n            1.6,\n            2\n          ],\n          \"range\": [\n            -0.2,\n            -0.2\n          ]\n        },\n        \"uuid\": \"1368129e-942e-452e-8228-8a3622dc72a1\"\n      }\n    },\n    \"id\": 98,\n    \"modulename\": [\n      \"Sensors\"\n    ],\n    \"name\": \"Wide angle\"\n  },\n  \"Sensor_Expanded\": {\n    \"fdname\": \"Sensor_Expanded\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Mechanical Scrap\": 1\n        },\n        \"features\": {\n          \"mass\": [\n            0.2,\n            0.2\n          ],\n          \"proberadius\": [\n            0,\n            0.1\n          ]\n        },\n        \"uuid\": \"d2f404d2-a8b9-4dfb-ae3c-43f0208123cb\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Mechanical Scrap\": 1,\n          \"Germanium\": 1\n        },\n        \"features\": {\n          \"mass\": [\n            0.4,\n            0.4\n          ],\n          \"proberadius\": [\n            0.1,\n            0.2\n          ]\n        },\n        \"uuid\": \"2a077c82-5671-4c22-b3cb-caff4979c644\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Mechanical Scrap\": 1,\n          \"Germanium\": 1,\n          \"Phase Alloys\": 1\n        },\n        \"features\": {\n          \"mass\": [\n            0.6,\n            0.6\n          ],\n          \"proberadius\": [\n            0.2,\n            0.3\n          ]\n        },\n        \"uuid\": \"081990f9-99d3-435a-9428-ad26471576de\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Mechanical Equipment\": 1,\n          \"Niobium\": 1,\n          \"Proto Light Alloys\": 1\n        },\n        \"features\": {\n          \"mass\": [\n            0.8,\n            0.8\n          ],\n          \"proberadius\": [\n            0.3,\n            0.4\n          ]\n        },\n        \"uuid\": \"aa10c84d-1409-48d5-ac02-d0a100d27555\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Mechanical Components\": 1,\n          \"Tin\": 1,\n          \"Proto Radiolic Alloys\": 1\n        },\n        \"features\": {\n          \"mass\": [\n            1,\n            1\n          ],\n          \"proberadius\": [\n            0.4,\n            0.5\n          ]\n        },\n        \"uuid\": \"ea7dfe28-95d0-4939-bcf2-282dbed7d80f\\n\"\n      }\n    },\n    \"id\": 93,\n    \"modulename\": [\n      \"Detailed surface scanner\",\n      \"DSS\"\n    ],\n    \"name\": \"Expanded Probe Scanning Radius\"\n  },\n  \"ShieldBooster_Explosive\": {\n    \"fdname\": \"ShieldBooster_Explosive\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            0,\n            0.07\n          ],\n          \"kinres\": [\n            -0.01,\n            -0.01\n          ],\n          \"thermres\": [\n            -0.01,\n            -0.01\n          ]\n        },\n        \"uuid\": \"b6dd19e6-60e4-4307-a34f-c7e0e6182d44\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            0.07,\n            0.12\n          ],\n          \"kinres\": [\n            -0.0175,\n            -0.0175\n          ],\n          \"thermres\": [\n            -0.0175,\n            -0.0175\n          ]\n        },\n        \"uuid\": \"3dd5f8fb-8399-4c4c-96d7-87c3840cfdeb\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Focus Crystals\": 1,\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            0.12,\n            0.17\n          ],\n          \"kinres\": [\n            -0.025,\n            -0.025\n          ],\n          \"thermres\": [\n            -0.025,\n            -0.025\n          ]\n        },\n        \"uuid\": \"640409d8-6cb5-4624-b2b6-f435c9d8453b\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Germanium\": 1,\n          \"Refined Focus Crystals\": 1,\n          \"Untypical Shield Scans\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            0.17,\n            0.22\n          ],\n          \"kinres\": [\n            -0.0325,\n            -0.0325\n          ],\n          \"thermres\": [\n            -0.0325,\n            -0.0325\n          ]\n        },\n        \"uuid\": \"8a311709-54f6-4a5f-a1cc-94c109d947df\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Aberrant Shield Pattern Analysis\": 1,\n          \"Exquisite Focus Crystals\": 1,\n          \"Niobium\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            0.22,\n            0.27\n          ],\n          \"kinres\": [\n            -0.04,\n            -0.04\n          ],\n          \"thermres\": [\n            -0.04,\n            -0.04\n          ]\n        },\n        \"uuid\": \"4f120562-e421-4ed8-b0ed-0be8e27548bb\"\n      }\n    },\n    \"id\": 68,\n    \"modulename\": [\n      \"Shield booster\"\n    ],\n    \"name\": \"Blast resistant\"\n  },\n  \"ShieldBooster_HeavyDuty\": {\n    \"fdname\": \"ShieldBooster_HeavyDuty\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Grid Resistors\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0,\n            0.03\n          ],\n          \"mass\": [\n            1,\n            1\n          ],\n          \"power\": [\n            0.05,\n            0.05\n          ],\n          \"shieldboost\": [\n            0.03,\n            0.10\n          ]\n        },\n        \"uuid\": \"350e7873-893a-49d2-9057-c00e060178eb\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Distorted Shield Cycle Recordings\": 1,\n          \"Hybrid Capacitors\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0.03,\n            0.06\n          ],\n          \"mass\": [\n            1.5,\n            1.5\n          ],\n          \"power\": [\n            0.1,\n            0.1\n          ],\n          \"shieldboost\": [\n            0.1,\n            0.17\n          ]\n        },\n        \"uuid\": \"636ccc8d-cc59-4366-9934-8b235becc2d7\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Distorted Shield Cycle Recordings\": 1,\n          \"Hybrid Capacitors\": 1,\n          \"Niobium\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0.06,\n            0.09\n          ],\n          \"mass\": [\n            2,\n            2\n          ],\n          \"power\": [\n            0.15,\n            0.15\n          ],\n          \"shieldboost\": [\n            0.17,\n            0.24\n          ]\n        },\n        \"uuid\": \"82a66c08-1205-4c1a-ab02-1889e8ebcdd8\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Electrochemical Arrays\": 1,\n          \"Inconsistent Shield Soak Analysis\": 1,\n          \"Tin\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0.09,\n            0.12\n          ],\n          \"mass\": [\n            2.5,\n            2.5\n          ],\n          \"power\": [\n            0.2,\n            0.2\n          ],\n          \"shieldboost\": [\n            0.24,\n            0.31\n          ]\n        },\n        \"uuid\": \"c635934c-8d9d-4d1c-89e4-3a000a972bf2\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Antimony\": 1,\n          \"Polymer Capacitors\": 1,\n          \"Untypical Shield Scans\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0.12,\n            0.15\n          ],\n          \"mass\": [\n            3,\n            3\n          ],\n          \"power\": [\n            0.25,\n            0.25\n          ],\n          \"shieldboost\": [\n            0.31,\n            0.38\n          ]\n        },\n        \"uuid\": \"933e238e-56e0-44d6-b114-49eaab02f033\"\n      }\n    },\n    \"id\": 69,\n    \"modulename\": [\n      \"Shield booster\"\n    ],\n    \"name\": \"Heavy duty\"\n  },\n  \"ShieldBooster_Kinetic\": {\n    \"fdname\": \"ShieldBooster_Kinetic\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            -0.01,\n            -0.01\n          ],\n          \"kinres\": [\n            0,\n            0.07\n          ],\n          \"thermres\": [\n            -0.01,\n            -0.01\n          ]\n        },\n        \"uuid\": \"8252b4bb-3195-4f46-88e8-b79ed5b5ad43\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Germanium\": 1,\n          \"Grid Resistors\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            -0.0175,\n            -0.0175\n          ],\n          \"kinres\": [\n            0.07,\n            0.12\n          ],\n          \"thermres\": [\n            -0.0175,\n            -0.0175\n          ]\n        },\n        \"uuid\": \"5f099a0e-0c37-447b-b552-f2e3d8dc1d19\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Focus Crystals\": 1,\n          \"Hybrid Capacitors\": 1,\n          \"Salvaged Alloys\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            -0.025,\n            -0.025\n          ],\n          \"kinres\": [\n            0.12,\n            0.17\n          ],\n          \"thermres\": [\n            -0.025,\n            -0.025\n          ]\n        },\n        \"uuid\": \"ab7f39b5-0b0e-45b2-a016-0916026e9633\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Galvanising Alloys\": 1,\n          \"Refined Focus Crystals\": 1,\n          \"Untypical Shield Scans\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            -0.0325,\n            -0.0325\n          ],\n          \"kinres\": [\n            0.17,\n            0.22\n          ],\n          \"thermres\": [\n            -0.0325,\n            -0.0325\n          ]\n        },\n        \"uuid\": \"59ddbb49-f4fc-466d-84b6-06f0529915a9\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Aberrant Shield Pattern Analysis\": 1,\n          \"Exquisite Focus Crystals\": 1,\n          \"Phase Alloys\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            -0.04,\n            -0.04\n          ],\n          \"kinres\": [\n            0.22,\n            0.27\n          ],\n          \"thermres\": [\n            -0.04,\n            -0.04\n          ]\n        },\n        \"uuid\": \"a224e524-7308-46a1-9a6b-a37a82bdc50b\"\n      }\n    },\n    \"id\": 70,\n    \"modulename\": [\n      \"Shield booster\"\n    ],\n    \"name\": \"Kinetic resistant\"\n  },\n  \"ShieldBooster_Resistive\": {\n    \"fdname\": \"ShieldBooster_Resistive\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Phosphorus\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            0.05,\n            0.05\n          ],\n          \"integrity\": [\n            -0.04,\n            -0.04\n          ],\n          \"kinres\": [\n            0.05,\n            0.05\n          ],\n          \"power\": [\n            0.05,\n            0.05\n          ],\n          \"thermres\": [\n            0.05,\n            0.05\n          ]\n        },\n        \"uuid\": \"54f9f0c6-b4e9-4861-86ab-730d800bea54\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Phosphorus\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            0.08,\n            0.08\n          ],\n          \"integrity\": [\n            -0.06,\n            -0.06\n          ],\n          \"kinres\": [\n            0.08,\n            0.08\n          ],\n          \"power\": [\n            0.1,\n            0.1\n          ],\n          \"thermres\": [\n            0.08,\n            0.08\n          ]\n        },\n        \"uuid\": \"f082652b-7778-4bce-a1f1-f2491b27eb1a\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Focus Crystals\": 1,\n          \"Phosphorus\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            0.11,\n            0.11\n          ],\n          \"integrity\": [\n            -0.08,\n            -0.08\n          ],\n          \"kinres\": [\n            0.11,\n            0.11\n          ],\n          \"power\": [\n            0.15,\n            0.15\n          ],\n          \"thermres\": [\n            0.11,\n            0.11\n          ]\n        },\n        \"uuid\": \"cfb01505-ea2b-4a33-aa6b-cbabeb60db7c\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Manganese\": 1,\n          \"Refined Focus Crystals\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            0.14,\n            0.14\n          ],\n          \"integrity\": [\n            -0.1,\n            -0.1\n          ],\n          \"kinres\": [\n            0.14,\n            0.14\n          ],\n          \"power\": [\n            0.2,\n            0.2\n          ],\n          \"thermres\": [\n            0.14,\n            0.14\n          ]\n        },\n        \"uuid\": \"1d11b8c8-9c16-4bdb-ba33-e52e79fa5999\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Imperial Shielding\": 1,\n          \"Refined Focus Crystals\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            0.17,\n            0.17\n          ],\n          \"integrity\": [\n            -0.12,\n            -0.12\n          ],\n          \"kinres\": [\n            0.17,\n            0.17\n          ],\n          \"power\": [\n            0.25,\n            0.25\n          ],\n          \"thermres\": [\n            0.17,\n            0.17\n          ]\n        },\n        \"uuid\": \"00a2aefc-0698-4c16-a1f1-6a84907e42bc\"\n      }\n    },\n    \"id\": 71,\n    \"modulename\": [\n      \"Shield booster\"\n    ],\n    \"name\": \"Resistance augmented\"\n  },\n  \"ShieldBooster_Thermic\": {\n    \"fdname\": \"ShieldBooster_Thermic\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            -0.01,\n            -0.01\n          ],\n          \"kinres\": [\n            -0.01,\n            -0.01\n          ],\n          \"thermres\": [\n            0,\n            0.07\n          ]\n        },\n        \"uuid\": \"9316e798-33cd-4ed2-8289-94eb82e41574\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Germanium\": 1,\n          \"Heat Conduction Wiring\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            -0.0175,\n            -0.0175\n          ],\n          \"kinres\": [\n            -0.0175,\n            -0.0175\n          ],\n          \"thermres\": [\n            0.07,\n            0.12\n          ]\n        },\n        \"uuid\": \"62eaf453-a4dd-42e6-b404-dfb7569afec6\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Focus Crystals\": 1,\n          \"Heat Conduction Wiring\": 1,\n          \"Heat Dispersion Plate\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            -0.025,\n            -0.025\n          ],\n          \"kinres\": [\n            -0.025,\n            -0.025\n          ],\n          \"thermres\": [\n            0.12,\n            0.17\n          ]\n        },\n        \"uuid\": \"90cddf76-5636-46ae-8c41-b28c6831549b\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Heat Dispersion Plate\": 1,\n          \"Refined Focus Crystals\": 1,\n          \"Untypical Shield Scans\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            -0.0325,\n            -0.0325\n          ],\n          \"kinres\": [\n            -0.0325,\n            -0.0325\n          ],\n          \"thermres\": [\n            0.17,\n            0.22\n          ]\n        },\n        \"uuid\": \"3a922d38-e010-4874-97c9-7459dda8c184\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Aberrant Shield Pattern Analysis\": 1,\n          \"Exquisite Focus Crystals\": 1,\n          \"Heat Exchangers\": 1\n        },\n        \"features\": {\n          \"explres\": [\n            -0.04,\n            -0.04\n          ],\n          \"kinres\": [\n            -0.04,\n            -0.04\n          ],\n          \"thermres\": [\n            0.22,\n            0.27\n          ]\n        },\n        \"uuid\": \"562f0d31-cefe-4631-939e-53168a9df2ab\"\n      }\n    },\n    \"id\": 72,\n    \"modulename\": [\n      \"Shield booster\"\n    ],\n    \"name\": \"Thermal resistant\"\n  },\n  \"ShieldCellBank_Rapid\": {\n    \"fdname\": \"ShieldCellBank_Rapid\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Sulphur\": 1\n        },\n        \"features\": {\n          \"boot\": [\n            0.1,\n            0.1\n          ],\n          \"duration\": [\n            -0.06,\n            -0.06\n          ],\n          \"shieldreinforcement\": [\n            0,\n            0.05\n          ],\n          \"spinup\": [\n            0,\n            -0.1\n          ]\n        },\n        \"uuid\": \"8f315143-e256-41c2-8833-f35d12e47dce\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Chromium\": 1,\n          \"Grid Resistors\": 1\n        },\n        \"features\": {\n          \"boot\": [\n            0.15,\n            0.15\n          ],\n          \"duration\": [\n            -0.12,\n            -0.12\n          ],\n          \"shieldreinforcement\": [\n            0.05,\n            0.1\n          ],\n          \"spinup\": [\n            -0.1,\n            -0.2\n          ]\n        },\n        \"uuid\": \"f983d8e1-9a38-425c-a5bb-3881c5e0f14d\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Hybrid Capacitors\": 1,\n          \"Precipitated Alloys\": 1,\n          \"Sulphur\": 1\n        },\n        \"features\": {\n          \"boot\": [\n            0.2,\n            0.2\n          ],\n          \"duration\": [\n            -0.18,\n            -0.18\n          ],\n          \"shieldreinforcement\": [\n            0.1,\n            0.15\n          ],\n          \"spinup\": [\n            -0.2,\n            -0.3\n          ]\n        },\n        \"uuid\": \"f1cc436c-d2f0-4b79-a832-5fafd62ab5d8\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Hybrid Capacitors\": 1,\n          \"Precipitated Alloys\": 1,\n          \"Sulphur\": 1\n        },\n        \"features\": {\n          \"boot\": [\n            0.25,\n            0.25\n          ],\n          \"duration\": [\n            -0.24,\n            -0.24\n          ],\n          \"shieldreinforcement\": [\n            0.15,\n            0.2\n          ],\n          \"spinup\": [\n            -0.3,\n            -0.4\n          ]\n        },\n        \"uuid\": \"3f4ce660-9aea-4fe3-abe8-00b9408b4a66\"\n      }\n    },\n    \"id\": 73,\n    \"modulename\": [\n      \"Shield cell bank\",\n      \"SCB\"\n    ],\n    \"name\": \"Rapid charge\"\n  },\n  \"ShieldCellBank_Specialised\": {\n    \"fdname\": \"ShieldCellBank_Specialised\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Specialised Legacy Firmware\": 1\n        },\n        \"features\": {\n          \"boot\": [\n            0,\n            -0.08\n          ],\n          \"integrity\": [\n            -0.05,\n            -0.05\n          ],\n          \"power\": [\n            0.1,\n            0.1\n          ],\n          \"shieldreinforcement\": [\n            0,\n            0.04\n          ],\n          \"thermload\": [\n            0,\n            -0.06\n          ]\n        },\n        \"uuid\": \"3aa962e3-48f8-4305-829a-717dbead2830\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Specialised Legacy Firmware\": 1\n        },\n        \"features\": {\n          \"boot\": [\n            -0.08,\n            -0.16\n          ],\n          \"integrity\": [\n            -0.1,\n            -0.1\n          ],\n          \"power\": [\n            0.15,\n            0.15\n          ],\n          \"shieldreinforcement\": [\n            0.04,\n            0.06\n          ],\n          \"thermload\": [\n            -0.06,\n            -0.12\n          ]\n        },\n        \"uuid\": \"53d40533-967f-4792-b938-421f7a938540\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Cracked Industrial Firmware\": 1,\n          \"Exceptional Scrambled Emission Data\": 1\n        },\n        \"features\": {\n          \"boot\": [\n            -0.16,\n            -0.24\n          ],\n          \"integrity\": [\n            -0.15,\n            -0.15\n          ],\n          \"power\": [\n            0.2,\n            0.2\n          ],\n          \"shieldreinforcement\": [\n            0.06,\n            0.08\n          ],\n          \"thermload\": [\n            -0.12,\n            -0.18\n          ]\n        },\n        \"uuid\": \"0648b687-cf76-4953-a531-7eca944ec325\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Cracked Industrial Firmware\": 1,\n          \"Yttrium\": 1\n        },\n        \"features\": {\n          \"boot\": [\n            -0.24,\n            -0.32\n          ],\n          \"integrity\": [\n            -0.2,\n            -0.2\n          ],\n          \"power\": [\n            0.25,\n            0.25\n          ],\n          \"shieldreinforcement\": [\n            0.08,\n            0.1\n          ],\n          \"thermload\": [\n            -0.18,\n            -0.24\n          ]\n        },\n        \"uuid\": \"4766533c-3dff-4871-8c5f-3a1338c88cd2\"\n      }\n    },\n    \"id\": 74,\n    \"modulename\": [\n      \"Shield cell bank\",\n      \"SCB\"\n    ],\n    \"name\": \"Specialised\"\n  },\n  \"ShieldGenerator_Kinetic\": {\n    \"fdname\": \"ShieldGenerator_Kinetic\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Distorted Shield Cycle Recordings\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0,\n            0.2\n          ],\n          \"kinres\": [\n            0,\n            0.1\n          ],\n          \"thermres\": [\n            -0.03,\n            -0.03\n          ]\n        },\n        \"uuid\": \"df87f0c1-bd60-4e18-8a03-76063d635235\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Distorted Shield Cycle Recordings\": 1,\n          \"Modified Consumer Firmware\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0.2,\n            0.25\n          ],\n          \"kinres\": [\n            0.1,\n            0.2\n          ],\n          \"thermres\": [\n            -0.06,\n            -0.06\n          ]\n        },\n        \"uuid\": \"b67f86a0-866c-4233-9cd3-f5ea87a572eb\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Distorted Shield Cycle Recordings\": 1,\n          \"Modified Consumer Firmware\": 1,\n          \"Selenium\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0.25,\n            0.3\n          ],\n          \"kinres\": [\n            0.2,\n            0.3\n          ],\n          \"thermres\": [\n            -0.09,\n            -0.09\n          ]\n        },\n        \"uuid\": \"93979fd6-d135-4221-9a60-c9354e02619f\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Focus Crystals\": 1,\n          \"Inconsistent Shield Soak Analysis\": 1,\n          \"Mercury\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0.3,\n            0.35\n          ],\n          \"kinres\": [\n            0.3,\n            0.4\n          ],\n          \"thermres\": [\n            -0.12,\n            -0.12\n          ]\n        },\n        \"uuid\": \"0e14c801-fd35-4bca-b97b-24da20d8c716\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Refined Focus Crystals\": 1,\n          \"Ruthenium\": 1,\n          \"Untypical Shield Scans\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0.35,\n            0.4\n          ],\n          \"kinres\": [\n            0.4,\n            0.5\n          ],\n          \"thermres\": [\n            -0.15,\n            -0.15\n          ]\n        },\n        \"uuid\": \"dfdb4767-78e1-4e5f-ae1a-aeb6ae2748c9\"\n      }\n    },\n    \"id\": 75,\n    \"modulename\": [\n      \"Shield generator\",\n      \"Shields\"\n    ],\n    \"name\": \"Kinetic resistant\"\n  },\n  \"ShieldGenerator_Optimised\": {\n    \"fdname\": \"ShieldGenerator_Optimised\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Distorted Shield Cycle Recordings\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.05,\n            -0.05\n          ],\n          \"mass\": [\n            0,\n            -0.18\n          ],\n          \"optmass\": [\n            -0.02,\n            -0.02\n          ],\n          \"optmul\": [\n            0,\n            0.03\n          ],\n          \"power\": [\n            0,\n            -0.2\n          ]\n        },\n        \"uuid\": \"598e0c47-ecd2-4cfa-93d1-08bbda4cd765\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Distorted Shield Cycle Recordings\": 1,\n          \"Germanium\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.1,\n            -0.1\n          ],\n          \"mass\": [\n            -0.18,\n            -0.26\n          ],\n          \"optmass\": [\n            -0.03,\n            -0.03\n          ],\n          \"optmul\": [\n            0.03,\n            0.06\n          ],\n          \"power\": [\n            -0.2,\n            -0.25\n          ]\n        },\n        \"uuid\": \"605d6333-c544-425e-96c6-a76b6b839e2c\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Distorted Shield Cycle Recordings\": 1,\n          \"Germanium\": 1,\n          \"Precipitated Alloys\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.15,\n            -0.15\n          ],\n          \"mass\": [\n            -0.26,\n            -0.34\n          ],\n          \"optmass\": [\n            -0.04,\n            -0.04\n          ],\n          \"optmul\": [\n            0.06,\n            0.09\n          ],\n          \"power\": [\n            -0.25,\n            -0.3\n          ]\n        },\n        \"uuid\": \"db5f0467-5bdc-433e-986d-031bbd48067b\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Inconsistent Shield Soak Analysis\": 1,\n          \"Niobium\": 1,\n          \"Thermic Alloys\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.2,\n            -0.2\n          ],\n          \"mass\": [\n            -0.34,\n            -0.42\n          ],\n          \"optmass\": [\n            -0.05,\n            -0.05\n          ],\n          \"optmul\": [\n            0.09,\n            0.12\n          ],\n          \"power\": [\n            -0.3,\n            -0.35\n          ]\n        },\n        \"uuid\": \"88987ab7-b759-4cda-acbb-726bd0ad17c7\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Military Grade Alloys\": 1,\n          \"Tin\": 1,\n          \"Untypical Shield Scans\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.25,\n            -0.25\n          ],\n          \"mass\": [\n            -0.42,\n            -0.5\n          ],\n          \"optmass\": [\n            -0.06,\n            -0.06\n          ],\n          \"optmul\": [\n            0.12,\n            0.15\n          ],\n          \"power\": [\n            -0.35,\n            -0.4\n          ]\n        },\n        \"uuid\": \"cf878a5a-542b-46e8-8b56-4d179eac3f46\"\n      }\n    },\n    \"id\": 76,\n    \"modulename\": [\n      \"Shield generator\",\n      \"Shields\"\n    ],\n    \"name\": \"Enhanced low power\"\n  },\n  \"ShieldGenerator_Reinforced\": {\n    \"fdname\": \"ShieldGenerator_Reinforced\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Phosphorus\": 1\n        },\n        \"features\": {\n          \"brokenregen\": [\n            -0.1,\n            -0.1\n          ],\n          \"distdraw\": [\n            0.04,\n            0.04\n          ],\n          \"explres\": [\n            0,\n            0.045\n          ],\n          \"kinres\": [\n            0,\n            0.045\n          ],\n          \"optmul\": [\n            0,\n            0.14\n          ],\n          \"thermres\": [\n            0,\n            0.045\n          ]\n        },\n        \"uuid\": \"47ad77c0-e49b-44e5-9824-4074b63db369\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Phosphorus\": 1\n        },\n        \"features\": {\n          \"brokenregen\": [\n            -0.1,\n            -0.1\n          ],\n          \"distdraw\": [\n            0.06,\n            0.06\n          ],\n          \"explres\": [\n            0.045,\n            0.075\n          ],\n          \"kinres\": [\n            0.045,\n            0.075\n          ],\n          \"optmul\": [\n            0.14,\n            0.2\n          ],\n          \"thermres\": [\n            0.045,\n            0.075\n          ]\n        },\n        \"uuid\": \"823f8f82-745d-4051-8f35-4e38a561932e\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Mechanical Components\": 1,\n          \"Phosphorus\": 1\n        },\n        \"features\": {\n          \"brokenregen\": [\n            -0.1,\n            -0.1\n          ],\n          \"distdraw\": [\n            0.08,\n            0.08\n          ],\n          \"explres\": [\n            0.075,\n            0.105\n          ],\n          \"kinres\": [\n            0.075,\n            0.105\n          ],\n          \"optmul\": [\n            0.2,\n            0.26\n          ],\n          \"thermres\": [\n            0.075,\n            0.105\n          ]\n        },\n        \"uuid\": \"a1a29713-f2e5-4e15-a913-e01dc065f99f\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Configurable Components\": 1,\n          \"Manganese\": 1\n        },\n        \"features\": {\n          \"brokenregen\": [\n            -0.1,\n            -0.1\n          ],\n          \"distdraw\": [\n            0.1,\n            0.1\n          ],\n          \"explres\": [\n            0.105,\n            0.135\n          ],\n          \"kinres\": [\n            0.105,\n            0.135\n          ],\n          \"optmul\": [\n            0.26,\n            0.32\n          ],\n          \"thermres\": [\n            0.105,\n            0.135\n          ]\n        },\n        \"uuid\": \"87ac1315-7904-48f6-a5fe-f044be546490\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Arsenic\": 1,\n          \"Conductive Polymers\": 1,\n          \"Improvised Components\": 1\n        },\n        \"features\": {\n          \"brokenregen\": [\n            -0.1,\n            -0.1\n          ],\n          \"distdraw\": [\n            0.12,\n            0.12\n          ],\n          \"explres\": [\n            0.135,\n            0.165\n          ],\n          \"kinres\": [\n            0.135,\n            0.165\n          ],\n          \"optmul\": [\n            0.32,\n            0.38\n          ],\n          \"thermres\": [\n            0.135,\n            0.165\n          ]\n        },\n        \"uuid\": \"1d9af376-c7c9-4b1a-9bc9-e77b4025e328\"\n      }\n    },\n    \"id\": 77,\n    \"modulename\": [\n      \"Shield generator\",\n      \"Shields\"\n    ],\n    \"name\": \"Reinforced\"\n  },\n  \"ShieldGenerator_Thermic\": {\n    \"fdname\": \"ShieldGenerator_Thermic\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Distorted Shield Cycle Recordings\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0,\n            0.2\n          ],\n          \"kinres\": [\n            -0.04,\n            -0.04\n          ],\n          \"thermres\": [\n            0,\n            0.1\n          ]\n        },\n        \"uuid\": \"ef5a3026-0777-4715-a1f4-5c65eff85b12\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Distorted Shield Cycle Recordings\": 1,\n          \"Germanium\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0.2,\n            0.25\n          ],\n          \"kinres\": [\n            -0.08,\n            -0.08\n          ],\n          \"thermres\": [\n            0.1,\n            0.2\n          ]\n        },\n        \"uuid\": \"54e6e07a-3281-41aa-afa0-bbf292131c0f\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Distorted Shield Cycle Recordings\": 1,\n          \"Germanium\": 1,\n          \"Selenium\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0.25,\n            0.3\n          ],\n          \"kinres\": [\n            -0.12,\n            -0.12\n          ],\n          \"thermres\": [\n            0.2,\n            0.3\n          ]\n        },\n        \"uuid\": \"307935bf-60d3-4887-b449-24d712518154\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Focus Crystals\": 1,\n          \"Inconsistent Shield Soak Analysis\": 1,\n          \"Mercury\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0.3,\n            0.35\n          ],\n          \"kinres\": [\n            -0.16,\n            -0.16\n          ],\n          \"thermres\": [\n            0.3,\n            0.4\n          ]\n        },\n        \"uuid\": \"ef6a4d70-9996-4db8-ae22-7c61c3dcaf74\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Refined Focus Crystals\": 1,\n          \"Ruthenium\": 1,\n          \"Untypical Shield Scans\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0.35,\n            0.4\n          ],\n          \"kinres\": [\n            -0.20,\n            -0.20\n          ],\n          \"thermres\": [\n            0.4,\n            0.5\n          ]\n        },\n        \"uuid\": \"f14e779f-d09a-47e4-8f4e-89c85b730f6b\"\n      }\n    },\n    \"id\": 78,\n    \"modulename\": [\n      \"Shield generator\",\n      \"Shields\"\n    ],\n    \"name\": \"Thermal resistant\"\n  },\n  \"Weapon_DoubleShot\": {\n    \"fdname\": \"Weapon_DoubleShot\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Carbon\": 1\n        },\n        \"features\": {\n          \"burst\": [\n            2,\n            2\n          ],\n          \"burstrof\": [\n            0,\n            6\n          ],\n          \"clip\": [\n            0.34,\n            0.34\n          ],\n          \"range\": [\n            -0.02,\n            -0.02\n          ]\n        },\n        \"uuid\": \"0dad25c2-bbf3-4020-9af5-25f902ec7732\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Mechanical Equipment\": 1\n        },\n        \"features\": {\n          \"burst\": [\n            2,\n            2\n          ],\n          \"burstrof\": [\n            6,\n            8\n          ],\n          \"clip\": [\n            0.34,\n            0.34\n          ],\n          \"range\": [\n            -0.04,\n            -0.04\n          ]\n        },\n        \"uuid\": \"5cdaf06c-5ecd-40f0-bb8b-54ce8847b4e6\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Cracked Industrial Firmware\": 1,\n          \"Mechanical Equipment\": 1\n        },\n        \"features\": {\n          \"burst\": [\n            2,\n            2\n          ],\n          \"burstrof\": [\n            8,\n            10\n          ],\n          \"clip\": [\n            0.34,\n            0.34\n          ],\n          \"range\": [\n            -0.06,\n            -0.06\n          ]\n        },\n        \"uuid\": \"fca184ef-5346-4f9a-8964-1e158763ab03\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Mechanical Components\": 1,\n          \"Security Firmware Patch\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"burst\": [\n            2,\n            2\n          ],\n          \"burstrof\": [\n            10,\n            12\n          ],\n          \"clip\": [\n            0.34,\n            0.34\n          ],\n          \"range\": [\n            -0.08,\n            -0.08\n          ]\n        },\n        \"uuid\": \"93cc424a-f547-409e-8487-2f73c27d4e47\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Configurable Components\": 1,\n          \"High Density Composites\": 1,\n          \"Modified Embedded Firmware\": 1\n        },\n        \"features\": {\n          \"burst\": [\n            2,\n            2\n          ],\n          \"burstrof\": [\n            12,\n            14\n          ],\n          \"clip\": [\n            1,\n            1\n          ],\n          \"range\": [\n            -0.1,\n            -0.1\n          ]\n        },\n        \"uuid\": \"0d790580-fc41-4378-b8e9-4feceaebb618\"\n      }\n    },\n    \"id\": 82,\n    \"modulename\": [\n      \"Weapon\"\n    ],\n    \"name\": \"Double shot\"\n  },\n  \"Weapon_Efficient\": {\n    \"fdname\": \"Weapon_Efficient\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Sulphur\": 1\n        },\n        \"features\": {\n          \"damage\": [\n            0,\n            0.08\n          ],\n          \"thermload\": [\n            0,\n            -0.38\n          ]\n        },\n        \"uuid\": \"3fbcc9dc-169a-4cd3-b945-cedc55882cd3\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Heat Dispersion Plate\": 1,\n          \"Sulphur\": 1\n        },\n        \"features\": {\n          \"damage\": [\n            0.08,\n            0.12\n          ],\n          \"distdraw\": [\n            0,\n            -0.15\n          ],\n          \"power\": [\n            0,\n            -0.12\n          ],\n          \"thermload\": [\n            -0.38,\n            -0.43\n          ]\n        },\n        \"uuid\": \"a35a0c80-784d-4125-b858-fdee45750269\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Chromium\": 1,\n          \"Exceptional Scrambled Emission Data\": 1,\n          \"Heat Exchangers\": 1\n        },\n        \"features\": {\n          \"damage\": [\n            0.12,\n            0.16\n          ],\n          \"distdraw\": [\n            -0.15,\n            -0.25\n          ],\n          \"power\": [\n            -0.12,\n            -0.24\n          ],\n          \"thermload\": [\n            -0.43,\n            -0.48\n          ]\n        },\n        \"uuid\": \"a429328b-11f4-402d-9909-2c6190505966\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Heat Vanes\": 1,\n          \"Irregular Emission Data\": 1,\n          \"Selenium\": 1\n        },\n        \"features\": {\n          \"damage\": [\n            0.16,\n            0.2\n          ],\n          \"distdraw\": [\n            -0.25,\n            -0.35\n          ],\n          \"power\": [\n            -0.24,\n            -0.36\n          ],\n          \"thermload\": [\n            -0.48,\n            -0.52\n          ]\n        },\n        \"uuid\": \"8c364495-468c-4ab1-9baf-079917a6cf9a\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Cadmium\": 1,\n          \"Proto Heat Radiators\": 1,\n          \"Unexpected Emission Data\": 1\n        },\n        \"features\": {\n          \"damage\": [\n            0.2,\n            0.24\n          ],\n          \"distdraw\": [\n            -0.35,\n            -0.45\n          ],\n          \"power\": [\n            -0.36,\n            -0.48\n          ],\n          \"thermload\": [\n            -0.52,\n            -0.6\n          ]\n        },\n        \"uuid\": \"5ac92753-1c19-4ae8-8b12-c6f130bda4a5\"\n      }\n    },\n    \"id\": 83,\n    \"modulename\": [\n      \"Weapon\"\n    ],\n    \"name\": \"Efficient\"\n  },\n  \"Weapon_Focused\": {\n    \"fdname\": \"Weapon_Focused\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"falloff\": [\n            0,\n            0.36\n          ],\n          \"piercing\": [\n            0,\n            0.4\n          ],\n          \"range\": [\n            0,\n            0.36\n          ],\n          \"shotspeed\": [\n            0,\n            0.36\n          ],\n          \"thermload\": [\n            0.01,\n            0.01\n          ]\n        },\n        \"uuid\": \"fc3e4f2e-04fb-4509-a31f-1121940e1bc6\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"falloff\": [\n            0.36,\n            0.52\n          ],\n          \"piercing\": [\n            0.4,\n            0.6\n          ],\n          \"range\": [\n            0.36,\n            0.52\n          ],\n          \"shotspeed\": [\n            0.36,\n            0.52\n          ],\n          \"thermload\": [\n            0.02,\n            0.02\n          ]\n        },\n        \"uuid\": \"437e00b1-a6fd-4d84-9242-075c3ce8adcb\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Chromium\": 1,\n          \"Conductive Ceramics\": 1,\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"falloff\": [\n            0.52,\n            0.68\n          ],\n          \"piercing\": [\n            0.6,\n            0.8\n          ],\n          \"range\": [\n            0.52,\n            0.68\n          ],\n          \"shotspeed\": [\n            0.52,\n            0.68\n          ],\n          \"thermload\": [\n            0.03,\n            0.03\n          ]\n        },\n        \"uuid\": \"bfbadc34-e11a-4cc4-80cc-83dde5731e6f\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Focus Crystals\": 1,\n          \"Germanium\": 1,\n          \"Polymer Capacitors\": 1\n        },\n        \"features\": {\n          \"falloff\": [\n            0.68,\n            0.84\n          ],\n          \"piercing\": [\n            0.8,\n            1\n          ],\n          \"range\": [\n            0.68,\n            0.84\n          ],\n          \"shotspeed\": [\n            0.68,\n            0.84\n          ],\n          \"thermload\": [\n            0.04,\n            0.04\n          ]\n        },\n        \"uuid\": \"7c41f9fc-90ec-435e-9d92-6024c32ac40d\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Military Supercapacitors\": 1,\n          \"Niobium\": 1,\n          \"Refined Focus Crystals\": 1\n        },\n        \"features\": {\n          \"falloff\": [\n            0.84,\n            1\n          ],\n          \"piercing\": [\n            1,\n            1.2\n          ],\n          \"range\": [\n            0.84,\n            1\n          ],\n          \"shotspeed\": [\n            0.84,\n            1\n          ],\n          \"thermload\": [\n            0.05,\n            0.05\n          ]\n        },\n        \"uuid\": \"d9306721-43a4-45cd-b225-ac9174da4d13\"\n      }\n    },\n    \"id\": 84,\n    \"modulename\": [\n      \"Weapon\"\n    ],\n    \"name\": \"Focused\"\n  },\n  \"Weapon_HighCapacity\": {\n    \"fdname\": \"Weapon_HighCapacity\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Mechanical Scrap\": 1\n        },\n        \"features\": {\n          \"ammo\": [\n            0,\n            0.36\n          ],\n          \"clip\": [\n            0,\n            0.36\n          ],\n          \"mass\": [\n            0.2,\n            0.2\n          ],\n          \"power\": [\n            0.04,\n            0.04\n          ],\n          \"rof\": [\n            0,\n            -0.02\n          ]\n        },\n        \"uuid\": \"f622da45-ef05-4a9f-bdcb-879b5933b869\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Mechanical Scrap\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"ammo\": [\n            0.36,\n            0.52\n          ],\n          \"clip\": [\n            0.36,\n            0.52\n          ],\n          \"mass\": [\n            0.3,\n            0.3\n          ],\n          \"power\": [\n            0.08,\n            0.08\n          ],\n          \"rof\": [\n            -0.02,\n            -0.04\n          ]\n        },\n        \"uuid\": \"c2cf2614-1a13-4b8d-81eb-d4eaf76257d0\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Mechanical Scrap\": 1,\n          \"Niobium\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"ammo\": [\n            0.52,\n            0.68\n          ],\n          \"clip\": [\n            0.52,\n            0.68\n          ],\n          \"mass\": [\n            0.4,\n            0.4\n          ],\n          \"power\": [\n            0.12,\n            0.12\n          ],\n          \"rof\": [\n            -0.04,\n            -0.06\n          ]\n        },\n        \"uuid\": \"e37a6dba-669e-4ce6-bb3d-e831bdd656c0\"\n      },\n      \"4\": {\n        \"components\": {\n          \"High Density Composites\": 1,\n          \"Mechanical Equipment\": 1,\n          \"Tin\": 1\n        },\n        \"features\": {\n          \"ammo\": [\n            0.68,\n            0.84\n          ],\n          \"clip\": [\n            0.68,\n            0.84\n          ],\n          \"mass\": [\n            0.5,\n            0.5\n          ],\n          \"power\": [\n            0.16,\n            0.16\n          ],\n          \"rof\": [\n            -0.06,\n            -0.08\n          ]\n        },\n        \"uuid\": \"8800433a-2061-4776-9821-5dc04772b963\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Mechanical Components\": 1,\n          \"Military Supercapacitors\": 1,\n          \"Proprietary Composites\": 1\n        },\n        \"features\": {\n          \"ammo\": [\n            0.84,\n            1\n          ],\n          \"clip\": [\n            0.84,\n            1\n          ],\n          \"mass\": [\n            0.6,\n            0.6\n          ],\n          \"power\": [\n            0.2,\n            0.2\n          ],\n          \"rof\": [\n            -0.08,\n            -0.1\n          ]\n        },\n        \"uuid\": \"4b3f4f18-a517-4354-a02d-de46b3cd4efc\"\n      }\n    },\n    \"id\": 85,\n    \"modulename\": [\n      \"Weapon\"\n    ],\n    \"name\": \"High capacity\"\n  },\n  \"Weapon_LightWeight\": {\n    \"fdname\": \"Weapon_LightWeight\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Phosphorus\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            -0.2,\n            -0.2\n          ],\n          \"mass\": [\n            0,\n            -0.3\n          ]\n        },\n        \"uuid\": \"d5a539c5-120a-450f-bb68-e10abbeca8a9\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Manganese\": 1,\n          \"Salvaged Alloys\": 1\n        },\n        \"features\": {\n          \"distdraw\": [\n            0,\n            -0.2\n          ],\n          \"integrity\": [\n            -0.3,\n            -0.3\n          ],\n          \"mass\": [\n            -0.3,\n            -0.45\n          ],\n          \"power\": [\n            0,\n            -0.1\n          ]\n        },\n        \"uuid\": \"b6a80556-c22a-466e-931c-239c208c9890\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Manganese\": 1,\n          \"Salvaged Alloys\": 1\n        },\n        \"features\": {\n          \"distdraw\": [\n            -0.2,\n            -0.25\n          ],\n          \"integrity\": [\n            -0.4,\n            -0.4\n          ],\n          \"mass\": [\n            -0.45,\n            -0.6\n          ],\n          \"power\": [\n            -0.1,\n            -0.2\n          ]\n        },\n        \"uuid\": \"cbec8003-80e4-455a-84fe-257d2018386e\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Phase Alloys\": 1,\n          \"Proto Light Alloys\": 1\n        },\n        \"features\": {\n          \"distdraw\": [\n            -0.25,\n            -0.3\n          ],\n          \"integrity\": [\n            -0.5,\n            -0.5\n          ],\n          \"mass\": [\n            -0.6,\n            -0.75\n          ],\n          \"power\": [\n            -0.2,\n            -0.3\n          ]\n        },\n        \"uuid\": \"3a57effa-ccac-448d-8d1c-3e0966042e24\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Proto Light Alloys\": 1,\n          \"Proto Radiolic Alloys\": 1\n        },\n        \"features\": {\n          \"distdraw\": [\n            -0.3,\n            -0.35\n          ],\n          \"integrity\": [\n            -0.6,\n            -0.6\n          ],\n          \"mass\": [\n            -0.75,\n            -0.9\n          ],\n          \"power\": [\n            -0.3,\n            -0.4\n          ]\n        },\n        \"uuid\": \"89f5d8e2-4f4c-4ef0-9e74-9f0691244b22\"\n      }\n    },\n    \"id\": 86,\n    \"modulename\": [\n      \"Weapon\"\n    ],\n    \"name\": \"Lightweight\"\n  },\n  \"Weapon_LongRange\": {\n    \"fdname\": \"Weapon_LongRange\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Sulphur\": 1\n        },\n        \"features\": {\n          \"fallofffromrange\": [\n            0.2,\n            0.2\n          ],\n          \"mass\": [\n            0.1,\n            0.1\n          ],\n          \"power\": [\n            0.03,\n            0.03\n          ],\n          \"range\": [\n            0,\n            0.2\n          ],\n          \"shotspeed\": [\n            0,\n            0.2\n          ]\n        },\n        \"uuid\": \"356d1457-e52f-4302-8af5-745e103b85e8\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Modified Consumer Firmware\": 1,\n          \"Sulphur\": 1\n        },\n        \"features\": {\n          \"fallofffromrange\": [\n            0.2,\n            0.4\n          ],\n          \"mass\": [\n            0.15,\n            0.15\n          ],\n          \"power\": [\n            0.06,\n            0.06\n          ],\n          \"range\": [\n            0.2,\n            0.4\n          ],\n          \"shotspeed\": [\n            0.2,\n            0.4\n          ]\n        },\n        \"uuid\": \"965e7108-73d5-4f26-95ab-2d261716a80c\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Focus Crystals\": 1,\n          \"Modified Consumer Firmware\": 1,\n          \"Sulphur\": 1\n        },\n        \"features\": {\n          \"fallofffromrange\": [\n            0.4,\n            0.6\n          ],\n          \"mass\": [\n            0.2,\n            0.2\n          ],\n          \"power\": [\n            0.09,\n            0.09\n          ],\n          \"range\": [\n            0.4,\n            0.6\n          ],\n          \"shotspeed\": [\n            0.4,\n            0.6\n          ]\n        },\n        \"uuid\": \"9d56f79f-9077-4391-8719-67e96c9613dd\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Conductive Polymers\": 1,\n          \"Focus Crystals\": 1,\n          \"Modified Consumer Firmware\": 1\n        },\n        \"features\": {\n          \"fallofffromrange\": [\n            0.6,\n            0.8\n          ],\n          \"mass\": [\n            0.25,\n            0.25\n          ],\n          \"power\": [\n            0.12,\n            0.12\n          ],\n          \"range\": [\n            0.6,\n            0.8\n          ],\n          \"shotspeed\": [\n            0.6,\n            0.8\n          ]\n        },\n        \"uuid\": \"fbd49a72-d117-4e01-8485-d69b2267c803\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Biotech Conductors\": 1,\n          \"Cracked Industrial Firmware\": 1,\n          \"Thermic Alloys\": 1\n        },\n        \"features\": {\n          \"fallofffromrange\": [\n            0.8,\n            1\n          ],\n          \"mass\": [\n            0.3,\n            0.3\n          ],\n          \"power\": [\n            0.15,\n            0.15\n          ],\n          \"range\": [\n            0.8,\n            1\n          ],\n          \"shotspeed\": [\n            0.8,\n            1\n          ]\n        },\n        \"uuid\": \"0d08a432-cfcd-40a7-8000-74a0dee56812\"\n      }\n    },\n    \"id\": 87,\n    \"modulename\": [\n      \"Weapon\"\n    ],\n    \"name\": \"Long range\"\n  },\n  \"MC_Overcharged\": {\n    \"fdname\": \"MC_Overcharged\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"clip\": [\n            -0.03,\n            -0.03\n          ],\n          \"damage\": [\n            0,\n            0.3\n          ],\n          \"distdraw\": [\n            0.15,\n            0.15\n          ],\n          \"thermload\": [\n            0.03,\n            0.03\n          ]\n        },\n        \"uuid\": \"e917ebe3-d5f1-4016-b8a9-2c759e16a7d4\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"clip\": [\n            -0.06,\n            -0.06\n          ],\n          \"damage\": [\n            0.3,\n            0.4\n          ],\n          \"distdraw\": [\n            0.2,\n            0.2\n          ],\n          \"thermload\": [\n            0.06,\n            0.06\n          ]\n        },\n        \"uuid\": \"f5921fc1-fb10-4d2f-8e0a-cd8d8e9e3a84\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Electrochemical Arrays\": 1,\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"clip\": [\n            -0.09,\n            -0.09\n          ],\n          \"damage\": [\n            0.4,\n            0.5\n          ],\n          \"distdraw\": [\n            0.25,\n            0.25\n          ],\n          \"thermload\": [\n            0.09,\n            0.09\n          ]\n        },\n        \"uuid\": \"4389883f-c2b3-4487-9b1a-b668a761057a\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Polymer Capacitors\": 1,\n          \"Zinc\": 1\n        },\n        \"features\": {\n          \"clip\": [\n            -0.12,\n            -0.12\n          ],\n          \"damage\": [\n            0.5,\n            0.6\n          ],\n          \"distdraw\": [\n            0.3,\n            0.3\n          ],\n          \"thermload\": [\n            0.12,\n            0.12\n          ]\n        },\n        \"uuid\": \"25ec26dd-63b8-4e83-9a6e-86e5b80c4771\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Conductive Polymers\": 1,\n          \"Modified Embedded Firmware\": 1,\n          \"Zirconium\": 1\n        },\n        \"features\": {\n          \"clip\": [\n            -0.15,\n            -0.15\n          ],\n          \"damage\": [\n            0.6,\n            0.7\n          ],\n          \"distdraw\": [\n            0.35,\n            0.35\n          ],\n          \"thermload\": [\n            0.15,\n            0.15\n          ]\n        },\n        \"uuid\": \"4dcf6bdc-bcff-448a-92a0-7612de548db7\"\n      }\n    },\n    \"id\": 88,\n    \"modulename\": [\n      \"Weapon\"\n    ],\n    \"name\": \"Overcharged\"\n  },\n  \"Weapon_Overcharged\": {\n    \"fdname\": \"Weapon_Overcharged\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"damage\": [\n            0,\n            0.3\n          ],\n          \"distdraw\": [\n            0.15,\n            0.15\n          ],\n          \"thermload\": [\n            0.03,\n            0.03\n          ]\n        },\n        \"uuid\": \"e917ebe3-d5f1-4016-b8a9-2c759e16a7d4\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"damage\": [\n            0.3,\n            0.4\n          ],\n          \"distdraw\": [\n            0.2,\n            0.2\n          ],\n          \"thermload\": [\n            0.06,\n            0.06\n          ]\n        },\n        \"uuid\": \"f5921fc1-fb10-4d2f-8e0a-cd8d8e9e3a84\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Electrochemical Arrays\": 1,\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"damage\": [\n            0.4,\n            0.5\n          ],\n          \"distdraw\": [\n            0.25,\n            0.25\n          ],\n          \"thermload\": [\n            0.09,\n            0.09\n          ]\n        },\n        \"uuid\": \"4389883f-c2b3-4487-9b1a-b668a761057a\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Polymer Capacitors\": 1,\n          \"Zinc\": 1\n        },\n        \"features\": {\n          \"damage\": [\n            0.5,\n            0.6\n          ],\n          \"distdraw\": [\n            0.3,\n            0.3\n          ],\n          \"thermload\": [\n            0.12,\n            0.12\n          ]\n        },\n        \"uuid\": \"25ec26dd-63b8-4e83-9a6e-86e5b80c4771\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Conductive Polymers\": 1,\n          \"Modified Embedded Firmware\": 1,\n          \"Zirconium\": 1\n        },\n        \"features\": {\n          \"damage\": [\n            0.6,\n            0.7\n          ],\n          \"distdraw\": [\n            0.35,\n            0.35\n          ],\n          \"thermload\": [\n            0.15,\n            0.15\n          ]\n        },\n        \"uuid\": \"4dcf6bdc-bcff-448a-92a0-7612de548db7\"\n      }\n    },\n    \"id\": 103,\n    \"modulename\": [\n      \"Weapon\"\n    ],\n    \"name\": \"Overcharged\"\n  },\n  \"Weapon_RapidFire\": {\n    \"fdname\": \"Weapon_RapidFire\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Mechanical Scrap\": 1\n        },\n        \"features\": {\n          \"damage\": [\n            -0.01,\n            -0.01\n          ],\n          \"jitter\": [\n            0.5,\n            0.5\n          ],\n          \"reload\": [\n            0,\n            -0.25\n          ],\n          \"rof\": [\n            0,\n            -0.08\n          ]\n        },\n        \"uuid\": \"a7ca2bf6-14be-41ed-8bfb-c7348fda7713\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Heat Dispersion Plate\": 1,\n          \"Mechanical Scrap\": 1\n        },\n        \"features\": {\n          \"damage\": [\n            -0.02,\n            -0.02\n          ],\n          \"distdraw\": [\n            0,\n            -0.05\n          ],\n          \"jitter\": [\n            0.5,\n            0.5\n          ],\n          \"reload\": [\n            -0.25,\n            -0.35\n          ],\n          \"rof\": [\n            -0.08,\n            -0.17\n          ]\n        },\n        \"uuid\": \"0008257b-ea33-48ea-a18e-56cc6cf98a77\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Mechanical Equipment\": 1,\n          \"Precipitated Alloys\": 1,\n          \"Specialised Legacy Firmware\": 1\n        },\n        \"features\": {\n          \"damage\": [\n            -0.03,\n            -0.03\n          ],\n          \"distdraw\": [\n            -0.05,\n            -0.15\n          ],\n          \"jitter\": [\n            0.5,\n            0.5\n          ],\n          \"reload\": [\n            -0.35,\n            -0.45\n          ],\n          \"rof\": [\n            -0.17,\n            -0.26\n          ]\n        },\n        \"uuid\": \"f3338d38-f944-4841-b350-09755e1b615d\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Mechanical Components\": 1,\n          \"Modified Consumer Firmware\": 1,\n          \"Thermic Alloys\": 1\n        },\n        \"features\": {\n          \"damage\": [\n            -0.04,\n            -0.04\n          ],\n          \"distdraw\": [\n            -0.15,\n            -0.25\n          ],\n          \"jitter\": [\n            0.5,\n            0.5\n          ],\n          \"reload\": [\n            -0.45,\n            -0.55\n          ],\n          \"rof\": [\n            -0.26,\n            -0.35\n          ]\n        },\n        \"uuid\": \"d2bdb568-725a-44bf-9328-ba72d2988acd\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Configurable Components\": 1,\n          \"Precipitated Alloys\": 1,\n          \"Technetium\": 1\n        },\n        \"features\": {\n          \"damage\": [\n            -0.05,\n            -0.05\n          ],\n          \"distdraw\": [\n            -0.25,\n            -0.35\n          ],\n          \"jitter\": [\n            0.5,\n            0.5\n          ],\n          \"reload\": [\n            -0.55,\n            -0.65\n          ],\n          \"rof\": [\n            -0.35,\n            -0.44\n          ]\n        },\n        \"uuid\": \"b1792824-0e96-42a3-9d3a-0b41d5ef83e0\"\n      }\n    },\n    \"id\": 89,\n    \"modulename\": [\n      \"Weapon\"\n    ],\n    \"name\": \"Rapid fire\"\n  },\n  \"Weapon_ShortRange\": {\n    \"fdname\": \"Weapon_ShortRange\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"damage\": [\n            0.15,\n            0.27\n          ],\n          \"range\": [\n            -0.1,\n            -0.1\n          ]\n        },\n        \"uuid\": \"81dca970-1fbf-4017-af46-0c6285c3a728\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Modified Consumer Firmware\": 1,\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"damage\": [\n            0.27,\n            0.39\n          ],\n          \"range\": [\n            -0.2,\n            -0.2\n          ],\n          \"thermload\": [\n            0.1,\n            0.1\n          ]\n        },\n        \"uuid\": \"cf07de84-b794-43fd-a8b6-57ee781e9247\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Electrochemical Arrays\": 1,\n          \"Modified Consumer Firmware\": 1,\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"damage\": [\n            0.39,\n            0.51\n          ],\n          \"range\": [\n            -0.3,\n            -0.3\n          ],\n          \"thermload\": [\n            0.2,\n            0.2\n          ]\n        },\n        \"uuid\": \"7cd60cfe-e406-4005-a912-a306a69067e0\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Conductive Polymers\": 1,\n          \"Electrochemical Arrays\": 1,\n          \"Modified Consumer Firmware\": 1\n        },\n        \"features\": {\n          \"damage\": [\n            0.51,\n            0.63\n          ],\n          \"range\": [\n            -0.4,\n            -0.4\n          ],\n          \"thermload\": [\n            0.3,\n            0.3\n          ]\n        },\n        \"uuid\": \"adae0f67-fd08-47d5-8870-f926cc63353f\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Biotech Conductors\": 1,\n          \"Configurable Components\": 1,\n          \"Cracked Industrial Firmware\": 1\n        },\n        \"features\": {\n          \"damage\": [\n            0.63,\n            0.75\n          ],\n          \"range\": [\n            -0.5,\n            -0.5\n          ],\n          \"thermload\": [\n            0.4,\n            0.4\n          ]\n        },\n        \"uuid\": \"ccf0cfd9-6da2-4975-95fa-ea7f0ccda991\"\n      }\n    },\n    \"id\": 90,\n    \"modulename\": [\n      \"Weapon\"\n    ],\n    \"name\": \"Short range\"\n  },\n  \"Weapon_Sturdy\": {\n    \"fdname\": \"Weapon_Sturdy\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            0,\n            1\n          ],\n          \"mass\": [\n            0.2,\n            0.2\n          ],\n          \"piercing\": [\n            0,\n            0.2\n          ],\n          \"thermload\": [\n            0,\n            -0.1\n          ]\n        },\n        \"uuid\": \"3ac55eb7-0a45-440b-8c59-6ead43c7ef49\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Nickel\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            1.5,\n            1.5\n          ],\n          \"mass\": [\n            0.4,\n            0.4\n          ],\n          \"piercing\": [\n            0.2,\n            0.3\n          ],\n          \"thermload\": [\n            -0.1,\n            -0.15\n          ]\n        },\n        \"uuid\": \"53c131ab-cd66-4919-b49b-c1435362c8ff\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Nickel\": 1,\n          \"Shield Emitters\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            2,\n            2\n          ],\n          \"mass\": [\n            0.6,\n            0.6\n          ],\n          \"piercing\": [\n            0.3,\n            0.4\n          ],\n          \"thermload\": [\n            -0.15,\n            -0.2\n          ]\n        },\n        \"uuid\": \"2d1873d4-6d38-4d39-b4c5-ea199be2bd6a\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Molybdenum\": 1,\n          \"Tungsten\": 1,\n          \"Zinc\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            2.5,\n            2.5\n          ],\n          \"mass\": [\n            0.8,\n            0.8\n          ],\n          \"piercing\": [\n            0.4,\n            0.5\n          ],\n          \"thermload\": [\n            -0.2,\n            -0.25\n          ]\n        },\n        \"uuid\": \"4ceeab9c-7a85-4553-9fa4-81ebc6e88d4f\"\n      },\n      \"5\": {\n        \"components\": {\n          \"High Density Composites\": 1,\n          \"Molybdenum\": 1,\n          \"Technetium\": 1\n        },\n        \"features\": {\n          \"integrity\": [\n            3,\n            3\n          ],\n          \"mass\": [\n            1,\n            1\n          ],\n          \"piercing\": [\n            0.5,\n            0.6\n          ],\n          \"thermload\": [\n            -0.25,\n            -0.3\n          ]\n        },\n        \"uuid\": \"53ab027e-1c5f-404b-82e3-0bc4c55c71af\"\n      }\n    },\n    \"id\": 91,\n    \"modulename\": [\n      \"Weapon\"\n    ],\n    \"name\": \"Sturdy\"\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modifications/modifications.json",
    "content": "{\n    \"ammo\": {\"id\": 0, \"name\": \"ammo\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": true},\n    \"boot\": {\"id\": 1, \"name\": \"boot\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": false},\n    \"brokenregen\": {\"id\": 2, \"name\": \"brokenregen\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": true},\n    \"burst\": {\"id\": 3, \"name\": \"burst\", \"type\": \"numeric\", \"method\": \"overwrite\", \"higherbetter\": true},\n    \"burstrof\": {\"id\": 41, \"name\": \"burstrof\", \"type\": \"numeric\", \"method\": \"overwrite\", \"higherbetter\": true},\n    \"causres\": {\"id\": 51, \"name\": \"explres\", \"type\": \"percentage\", \"method\": \"additive\", \"higherbetter\": true},\n    \"clip\": {\"id\": 4, \"name\": \"clip\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": true},\n    \"damage\": {\"id\": 5, \"name\": \"damage\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": true},\n    \"damagedist\": {\"id\": 40, \"name\": \"damage\", \"type\": \"object\", \"hidden\": true, \"method\": \"overwrite\", \"higherbetter\": true},\n    \"distdraw\": {\"id\": 6, \"name\": \"distdraw\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": false},\n    \"duration\": {\"id\": 7, \"name\": \"duration\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": true},\n    \"eff\": {\"id\": 8, \"name\": \"eff\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": false},\n    \"engcap\": {\"id\": 9, \"name\": \"engcap\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": true},\n    \"engrate\": {\"id\": 10, \"name\": \"engrate\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": true},\n    \"explres\": {\"id\": 11, \"name\": \"explres\", \"type\": \"percentage\", \"method\": \"additive\", \"higherbetter\": true},\n    \"facinglimit\": {\"id\": 12, \"name\": \"facinglimit\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": true},\n    \"falloff\": {\"id\": 45, \"name\": \"falloff\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": true},\n    \"fallofffromrange\": {\"id\": 42, \"name\": \"fallofffromrange\", \"type\": \"numeric\", \"aggregated\": true, \"method\": \"overwrite\", \"higherbetter\": true},\n    \"hullboost\": {\"id\": 13, \"name\": \"hullboost\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": true},\n    \"hullreinforcement\": {\"id\": 14, \"name\": \"hullreinforcement\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": true},\n    \"integrity\": {\"id\": 15, \"name\": \"integrity\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": true},\n    \"jitter\": {\"id\": 16, \"name\": \"jitter\", \"type\": \"numeric\", \"method\": \"additive\", \"higherbetter\": false},\n    \"kinres\": {\"id\": 17, \"name\": \"kinres\", \"type\": \"percentage\", \"method\": \"additive\", \"higherbetter\": true},\n    \"mass\": {\"id\": 18, \"name\": \"mass\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": false},\n    \"maxfuel\": {\"id\": 19, \"name\": \"maxfuel\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": true},\n    \"optmass\": {\"id\": 20, \"name\": \"optmass\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": true},\n    \"optmul\": {\"id\": 21, \"name\": \"optmul\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": true},\n    \"pgen\": {\"id\": 22, \"name\": \"pgen\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": true},\n    \"piercing\": {\"id\": 23, \"name\": \"piercing\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": true},\n    \"power\": {\"id\": 24, \"name\": \"power\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": false},\n    \"protection\": {\"id\": 44, \"name\": \"protection\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": true},\n    \"range\": {\"id\": 25, \"name\": \"range\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": true},\n    \"ranget\": {\"id\": 26, \"name\": \"ranget\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": true},\n    \"regen\": {\"id\": 27, \"name\": \"regen\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": true},\n    \"reload\": {\"id\": 28, \"name\": \"reload\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": false},\n    \"rof\": {\"id\": 29, \"name\": \"rof\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": false},\n    \"angle\": {\"id\": 46, \"name\": \"angle\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": true},\n    \"scanrate\": {\"id\": 49, \"name\": \"scanrate\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": true},\n    \"scantime\": {\"id\": 48, \"name\": \"scantime\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": false},\n    \"shield\": {\"id\": 30, \"name\": \"shield\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": true},\n    \"shieldboost\": {\"id\": 31, \"name\": \"shieldboost\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": true},\n    \"shotspeed\": {\"id\": 43, \"name\": \"shotspeed\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": true},\n    \"spinup\": {\"id\": 32, \"name\": \"spinup\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": false},\n    \"syscap\": {\"id\": 33, \"name\": \"syscap\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": true},\n    \"sysrate\": {\"id\": 34, \"name\": \"sysrate\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": true},\n    \"thermload\": {\"id\": 35, \"name\": \"thermload\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": false},\n    \"thermres\": {\"id\": 36, \"name\": \"thermres\", \"type\": \"percentage\", \"method\": \"additive\", \"higherbetter\": true},\n    \"wepcap\": {\"id\": 37, \"name\": \"wepcap\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": true},\n    \"weprate\": {\"id\": 38, \"name\": \"weprate\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": true},\n    \"shieldreinforcement\": {\"id\": 39, \"name\": \"shieldreinforcement\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": true},\n    \"jumpboost\": {\"id\": 47, \"name\": \"jumpboost\", \"type\": \"numeric\", \"method\": \"additive\", \"higherbetter\": true},\n    \"shieldaddition\": {\"id\": 50, \"name\": \"shieldaddition\", \"type\": \"numeric\", \"method\": \"additive\", \"higherbetter\": true},\n    \"chargetime\": {\"id\": 52, \"name\": \"chargetime\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": false},\n    \"proberadius\": {\"id\": 53, \"name\": \"proberadius\", \"type\": \"percentage\", \"method\": \"multiplicative\", \"higherbetter\": true},\n    \"scanrange\": {\"id\": 54, \"name\": \"scanrange\", \"type\": \"numeric\", \"method\": \"additive\", \"higherbetter\": true},\n    \"maxangle\": {\"id\": 55, \"name\": \"maxangle\", \"type\": \"numeric\", \"method\": \"additive\", \"higherbetter\": true}\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modifications/modifierActions.json",
    "content": "{\n  \"OutfittingFieldType_BootTime\": {\n    \"boot\": 1\n  },\n  \"OutfittingFieldType_ExplosiveResistance\": {\n    \"explres\": 1\n  },\n  \"OutfittingFieldType_DefenceModifierHealthAddition\": {\n    \"hullreinforcement\": 1\n  },\n  \"OutfittingFieldType_DefenceModifierHealthMultiplier\": {\n    \"hullboost\": 1\n  },\n  \"OutfittingFieldType_KineticResistance\": {\n    \"kinres\": 1\n  },\n  \"OutfittingFieldType_DefenceModifierShieldMultiplier\": {\n    \"shieldboost\": 1\n  },\n  \"OutfittingFieldType_ThermicResistance\": {\n    \"thermres\": 1\n  },\n  \"OutfittingFieldType_EngineHeatRate\": {\n    \"thermload\": 1\n  },\n  \"OutfittingFieldType_EngineOptimalMass\": {\n    \"optmass\": 1\n  },\n  \"OutfittingFieldType_EngineOptPerformance\": {\n    \"optmul\": 1\n  },\n  \"OutfittingFieldType_FSDHeatRate\": {\n    \"thermload\": 1\n  },\n  \"OutfittingFieldType_FSDMaxFuelPerJump\": {\n    \"maxfuel\": 1\n  },\n  \"OutfittingFieldType_FSDOptimalMass\": {\n    \"optmass\": 1\n  },\n  \"OutfittingFieldType_FSDInterdictorFacingLimit\": {\n    \"facinglimit\": 1\n  },\n  \"OutfittingFieldType_FSDInterdictorRange\": {\n    \"ranget\": 1\n  },\n  \"OutfittingFieldType_Integrity\": {\n    \"integrity\": 1\n  },\n  \"OutfittingFieldType_Mass\": {\n    \"mass\": 1\n  },\n  \"OutfittingFieldType_SensorTargetScanAngle\": {\n    \"angle\": 1\n  },\n  \"OutfittingFieldType_DSS_RateMult\": {\n    \"scanrate\": 1\n  },\n  \"OutfittingFieldType_ScannerTimeToScan\": {\n    \"scantime\": 1\n  },\n  \"OutfittingFieldType_ScannerRange\": {\n    \"range\": 1\n  },\n  \"OutfittingFieldType_MaxAngle\": {\n    \"angle\": 1\n  },\n  \"OutfittingFieldType_Range\": {\n    \"range\": 1\n  },\n  \"OutfittingFieldType_PowerDraw\": {\n    \"power\": 1\n  },\n  \"OutfittingFieldType_EnginesCapacity\": {\n    \"engcap\": 1\n  },\n  \"OutfittingFieldType_EnginesRecharge\": {\n    \"engrate\": 1\n  },\n  \"OutfittingFieldType_SystemsCapacity\": {\n    \"syscap\": 1\n  },\n  \"OutfittingFieldType_SystemsRecharge\": {\n    \"sysrate\": 1\n  },\n  \"OutfittingFieldType_WeaponsCapacity\": {\n    \"wepcap\": 1\n  },\n  \"OutfittingFieldType_WeaponsRecharge\": {\n    \"weprate\": 1\n  },\n  \"OutfittingFieldType_HeatEfficiency\": {\n    \"eff\": 1\n  },\n  \"OutfittingFieldType_PowerCapacity\": {\n    \"pgen\": 1\n  },\n  \"OutfittingFieldType_BrokenRegenRate\": {\n    \"brokenregen\": 1\n  },\n  \"OutfittingFieldType_EnergyPerRegen\": {\n    \"distdraw\": 1\n  },\n  \"OutfittingFieldType_ShieldGenOptimalMass\": {\n    \"optmass\": 1\n  },\n  \"OutfittingFieldType_ShieldGenStrength\": {\n    \"optmul\": 1\n  },\n  \"OutfittingFieldType_RegenRate\": {\n    \"regen\": 1\n  },\n  \"OutfittingFieldType_ShieldBankHeat\": {\n    \"thermload\": 1\n  },\n  \"OutfittingFieldType_ShieldBankDuration\": {\n    \"duration\": 1\n  },\n  \"OutfittingFieldType_ShieldBankReinforcement\": {\n    \"shieldreinforcement\": 1\n  },\n  \"OutfittingFieldType_ShieldBankSpinUp\": {\n    \"spinup\": 1\n  },\n  \"OutfittingFieldType_ShotSpeed\": {\n    \"shotspeed\": 1\n  },\n  \"OutfittingFieldType_ThermalLoad\": {\n    \"thermload\": 1\n  },\n  \"OutfittingFieldType_DistributorDraw\": {\n    \"distdraw\": 1\n  },\n  \"OutfittingFieldType_AmmoMaximum\": {\n    \"ammo\": 1\n  },\n  \"OutfittingFieldType_RateOfFire\": {\n    \"rof\": 1\n  },\n  \"OutfittingFieldType_weapon_burst_rof\": {\n    \"burstrof\": 1\n  },\n  \"OutfittingFieldType_weapon_burst_size\": {\n    \"burst\": 1\n  },\n  \"OutfittingFieldType_AmmoClipSize\": {\n    \"clip\": 1\n  },\n  \"OutfittingFieldType_weapon_clip_size_override\": {\n    \"clip\": 1\n  },\n  \"OutfittingFieldType_Damage\": {\n    \"damage\": 1\n  },\n  \"OutfittingFieldType_DamageFalloffRange\": {\n    \"fallofffromrange\": 1\n  },\n  \"OutfittingFieldType_ArmourPenetration\": {\n    \"piercing\": 1\n  },\n  \"OutfittingFieldType_Jitter\": {\n    \"jitter\": 1\n  },\n  \"OutfittingFieldType_MaximumRange\": {\n    \"range\": 1\n  },\n  \"OutfittingFieldType_ReloadTime\": {\n    \"reload\": 1\n  },\n  \"special_auto_loader\": {},\n  \"special_choke_canister\": {},\n  \"special_feedback_cascade_cooled\": {\n    \"damage\": -0.2,\n    \"thermload\": -0.4\n  },\n  \"special_super_penetrator_cooled\": {\n    \"reload\": 0.5,\n    \"thermload\": -0.4\n  },\n  \"special_concordant_sequence\": {\n    \"thermload\": 0.5\n  },\n  \"special_corrosive_shell\": {\n    \"ammo\": -0.2\n  },\n  \"special_plasma_slug_cooled\": {\n    \"damage\": -0.1,\n    \"thermload\": -0.4\n  },\n  \"special_plasma_slug_pa\": {\n    \"damage\": -0.1\n  },\n  \"special_dispersal_field\": {\n  },\n  \"special_distortion_field\": {},\n  \"special_drag_munitions\": {},\n  \"special_emissive_munitions\": {\n    \"thermload\": 1\n  },\n  \"special_feedback_cascade\": {\n    \"breachdmg\": -0.2,\n    \"damage\": -0.2\n  },\n  \"special_force_shell\": {\n    \"shotspeed\": -0.1666666666666667\n  },\n  \"special_fsd_interrupt\": {\n    \"damage\": -0.3,\n    \"rof\": 0.5\n  },\n  \"special_high_yield_shell\": {\n    \"rof\": 0.1111111111111111,\n    \"damage\": -0.35,\n    \"damagedist\": {\n      \"K\": 0.5,\n      \"E\": 0.5\n    }\n  },\n  \"special_incendiary_rounds\": {\n    \"rof\": 0.05263157894736842,\n    \"thermload\": 2,\n    \"damagedist\": {\n      \"T\": 0.9,\n      \"K\": 0.1\n    }\n  },\n  \"special_inertial_impact\": {\n    \"damage\": 0.5,\n    \"jitter\": 3,\n    \"damagedist\": {\n      \"K\": 0.5,\n      \"T\": 0.5\n    }\n  },\n  \"special_overload_munitions\": {\n    \"damagedist\": {\n      \"E\": 0.5,\n      \"T\": 0.5\n    }\n  },\n  \"special_phasing_sequence\": {\n    \"damage\": -0.1\n  },\n  \"special_plasma_slug\": {\n    \"damage\": -0.2\n  },\n  \"special_radiant_canister\": {\n    \"ammo\": -0.25\n  },\n  \"special_regeneration_sequence\": {\n    \"damage\": -0.1\n  },\n  \"special_reverberating_cascade\": {},\n  \"special_scramble_spectrum\": {\n    \"rof\": 0.1111111111111111\n  },\n  \"special_screening_shell\": {\n    \"reload\": -0.5\n  },\n  \"special_shiftlock_canister\": {\n    \"damage\": -0.2\n  },\n  \"special_super_penetrator\": {\n    \"reload\": 0.5\n  },\n  \"special_thermal_cascade\": {},\n  \"special_thermal_conduit\": {},\n  \"special_thermal_vent\": {},\n  \"special_thermalshock\": {\n    \"damage\": -0.1\n  },\n  \"special_penetrator_munitions\": {\n  },\n  \"special_deep_cut_payload\": {\n  },\n  \"special_mass_lock\": {\n  },\n  \"special_shield_regenerative\": {\n    \"brokenregen\": 0.15,\n    \"regen\": 0.15,\n    \"thermres\": -1.5,\n    \"kinres\": -1.5,\n    \"explres\": -1.5\n  },\n  \"special_shield_resistive\": {\n    \"thermres\": 3,\n    \"kinres\": 3,\n    \"explres\": 3,\n    \"power\": 0.1,\n    \"distdraw\": 0.25\n  },\n  \"special_shield_health\": {\n    \"power\": 0.1,\n    \"optmul\": 0.06,\n    \"distdraw\": 0.25\n  },\n  \"special_shield_efficient\": {\n    \"power\": -0.2,\n    \"distdraw\": -0.2,\n    \"thermres\": -1,\n    \"optmul\": -0.02,\n    \"kinres\": -1,\n    \"explres\": -1\n  },\n  \"special_shield_thermic\": {\n    \"optmul\": -0.03,\n    \"thermres\": 8\n  },\n  \"special_shield_kinetic\": {\n    \"optmul\": -0.03,\n    \"kinres\": 8\n  },\n  \"special_shield_toughened\": {\n    \"integrity\": 0.15\n  },\n  \"special_shield_lightweight\": {\n    \"mass\": -0.1\n  },\n  \"special_engine_cooled\": {\n    \"mass\": 0.05,\n    \"thermload\": -0.1\n  },\n  \"special_engine_haulage\": {\n    \"optmass\": 0.1\n  },\n  \"special_engine_overloaded\": {\n    \"optmul\": 0.04,\n    \"thermload\": 0.1\n  },\n  \"special_engine_toughened\": {\n    \"integrity\": 0.15\n  },\n  \"special_engine_lightweight\": {\n    \"mass\": -0.1\n  },\n  \"special_fsd_fuelcapacity\": {\n    \"power\": 0.05,\n    \"maxfuel\": 0.1\n  },\n  \"special_fsd_heavy\": {\n    \"integrity\": -0.08,\n    \"optmass\": 0.04\n  },\n  \"special_fsd_toughened\": {\n    \"integrity\": 0.15\n  },\n  \"special_fsd_lightweight\": {\n    \"mass\": -0.1\n  },\n  \"special_fsd_cooled\": {\n    \"thermload\": -0.1\n  },\n  \"special_lock_breaker\": {},\n  \"special_powerplant_highcharge\": {\n    \"mass\": 0.1,\n    \"pgen\": 0.05\n  },\n  \"special_powerplant_cooled\": {\n    \"eff\": -0.1\n  },\n  \"special_powerplant_toughened\": {\n    \"integrity\": 0.15\n  },\n  \"special_powerplant_lightweight\": {\n    \"mass\": -0.1\n  },\n  \"special_powerdistributor_capacity\": {\n    \"wepcap\": 0.08,\n    \"syscap\": 0.08,\n    \"engcap\": 0.08,\n    \"weprate\": -0.02,\n    \"sysrate\": -0.02,\n    \"engrate\": -0.02\n  },\n  \"special_powerdistributor_fast\": {\n    \"wepcap\": -0.04,\n    \"syscap\": -0.04,\n    \"engcap\": -0.04,\n    \"weprate\": 0.04,\n    \"sysrate\": 0.04,\n    \"engrate\": 0.04\n  },\n  \"special_powerdistributor_efficient\": {\n    \"power\": -0.1\n  },\n  \"special_powerdistributor_toughened\": {\n    \"integrity\": 0.15\n  },\n  \"special_powerdistributor_lightweight\": {\n    \"mass\": -0.1\n  },\n  \"special_shieldcell_gradual\": {\n    \"duration\": 0.1,\n    \"shieldreinforcement\": -0.05\n  },\n  \"special_shieldcell_oversized\": {\n    \"spinup\": 0.2,\n    \"shieldreinforcement\": 0.05\n  },\n  \"special_shieldcell_efficient\": {\n    \"power\": -0.1\n  },\n  \"special_shieldcell_toughened\": {\n    \"integrity\": 0.15\n  },\n  \"special_shieldcell_lightweight\": {\n    \"mass\": -0.1\n  },\n  \"special_weapon_damage\": {\n    \"power\": 0.05,\n    \"damage\": 0.03\n  },\n  \"special_weapon_rateoffire\": {\n    \"power\": 0.05,\n    \"rof\": -0.02912621359223300970873786407767\n  },\n  \"special_weapon_efficient\": {\n    \"power\": -0.1\n  },\n  \"special_weapon_toughened\": {\n    \"integrity\": 0.15\n  },\n  \"special_weapon_lightweight\": {\n    \"mass\": -0.1\n  },\n  \"special_armour_thermic\": {\n    \"hullboost\": -0.03,\n    \"thermres\": 8\n  },\n  \"special_armour_kinetic\": {\n    \"hullboost\": -0.03,\n    \"kinres\": 8\n  },\n  \"special_armour_explosive\": {\n    \"hullboost\": -0.03,\n    \"explres\": 8\n  },\n  \"special_armour_chunky\": {\n    \"hullboost\": 0.08,\n    \"thermres\": -3,\n    \"explres\": -3,\n    \"kinres\": -3\n  },\n  \"special_hullreinforcement_thermic\": {\n    \"hullreinforcement\": -0.05,\n    \"thermres\": 2\n  },\n  \"special_hullreinforcement_kinetic\": {\n    \"hullreinforcement\": -0.05,\n    \"kinres\": 2\n  },\n  \"special_hullreinforcement_explosive\": {\n    \"hullreinforcement\": -0.05,\n    \"explres\": 2\n  },\n  \"special_hullreinforcement_chunky\": {\n    \"hullreinforcement\": 0.1,\n    \"explres\": -2,\n    \"thermres\": -2,\n    \"kinres\": -2\n  },\n  \"special_shieldbooster_thermic\": {\n    \"shieldboost\": -0.01,\n    \"thermres\": 2\n  },\n  \"special_shieldbooster_kinetic\": {\n    \"shieldboost\": -0.01,\n    \"kinres\": 2\n  },\n  \"special_shieldbooster_explosive\": {\n    \"shieldboost\": -0.01,\n    \"explres\": 2\n  },\n  \"special_shieldbooster_efficient\": {\n    \"power\": -0.1\n  },\n  \"special_shieldbooster_toughened\": {\n    \"integrity\": 0.15\n  },\n  \"special_shieldbooster_chunky\": {\n    \"shieldboost\": 0.05,\n    \"thermres\": -2,\n    \"kinres\": -2,\n    \"explres\": -2\n  },\n  \"trade_cell_heat_cell_units\": {\n    \"shieldreinforcement\": -1,\n    \"thermload\": -1\n  },\n  \"trade_defence_health_add_defence_global_mult\": {\n    \"explres\": 0.4,\n    \"hullreinforcement\": 1,\n    \"kinres\": 0.4,\n    \"thermres\": 0.4\n  },\n  \"trade_distributor_engine_charge_system_charge\": {\n    \"engcap\": 1,\n    \"syscap\": -1\n  },\n  \"trade_distributor_global_charge_mass\": {\n    \"engcap\": 0.75,\n    \"mass\": 1,\n    \"syscap\": 0.75,\n    \"wepcap\": 0.75\n  },\n  \"trade_engine_curve_mult_engine_heat\": {\n    \"optmul\": 0.4,\n    \"thermload\": 1\n  },\n  \"trade_fsd_fuel_per_jump_fsd_heat\": {\n    \"maxfuel\": 0.5,\n    \"thermload\": 1\n  },\n  \"trade_interdictor_range_facing_limit\": {},\n  \"trade_mass_defence_health_add\": {\n    \"hullreinforcement\": -0.75,\n    \"mass\": -1\n  },\n  \"trade_mass_health\": {\n    \"integrity\": 1,\n    \"mass\": 0.4\n  },\n  \"trade_passive_power_booster_global_mult\": {\n    \"explres\": 0.4,\n    \"kinres\": 0.4,\n    \"power\": -1,\n    \"thermres\": 0.4\n  },\n  \"trade_passive_power_boot_time\": {\n    \"boot\": 1,\n    \"power\": -0.5\n  },\n  \"trade_passive_power_cell_spin_up\": {},\n  \"trade_passive_power_distributor_global_rate\": {\n    \"engrate\": -1,\n    \"power\": -1,\n    \"sysrate\": -1,\n    \"weprate\": -1\n  },\n  \"trade_passive_power_engine_curve\": {\n    \"optmass\": -0.66,\n    \"power\": -1\n  },\n  \"trade_passive_power_shield_global_mult\": {\n    \"explres\": 0.5,\n    \"kinres\": 0.5,\n    \"power\": -1,\n    \"thermres\": 0.5\n  },\n  \"trade_passive_power_weapon_active\": {\n    \"distdraw\": -0.6,\n    \"power\": 1\n  },\n  \"trade_shield_curve_shield_curve_mult\": {\n    \"optmass\": -1,\n    \"optmul\": -0.8\n  },\n  \"trade_shield_global_mult_shield_broken_regen\": {\n    \"brokenregen\": -1,\n    \"explres\": -0.5,\n    \"kinres\": -0.5,\n    \"thermres\": -0.5\n  },\n  \"trade_shield_kinetic_shield_thermic\": {\n    \"kinres\": 1,\n    \"thermres\": -1\n  },\n  \"trade_weapon_active_passive_power\": {\n    \"distdraw\": -0.67,\n    \"power\": 1\n  },\n  \"trade_weapon_damage_weapon_active_power\": {\n    \"damage\": 0.5,\n    \"distdraw\": 1\n  },\n  \"trade_weapon_hardness_weapon_heat\": {\n    \"piercing\": 0.4,\n    \"thermload\": 1\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modifications/modules.json",
    "content": "{\n  \"am\": {\n    \"blueprints\": {\n      \"AFM_Shielded\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Lori Jameson\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"integrity\",\n      \"power\"\n    ]\n  },\n  \"bh\": {\n    \"blueprints\": {\n      \"Armour_Advanced\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Liz Ryder\",\n              \"Selene Jean\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          }\n        }\n      },\n      \"Armour_Explosive\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Liz Ryder\",\n              \"Selene Jean\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          }\n        }\n      },\n      \"Armour_HeavyDuty\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Liz Ryder\",\n              \"Selene Jean\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          }\n        }\n      },\n      \"Armour_Kinetic\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Liz Ryder\",\n              \"Selene Jean\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          }\n        }\n      },\n      \"Armour_Thermic\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Liz Ryder\",\n              \"Selene Jean\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"causres\",\n      \"explres\",\n      \"hullboost\",\n      \"kinres\",\n      \"mass\",\n      \"thermres\"\n    ],\n    \"specials\": [\n      \"special_armour_kinetic\",\n      \"special_armour_explosive\",\n      \"special_armour_chunky\",\n      \"special_armour_thermic\"\n    ]\n  },\n  \"bl\": {\n    \"blueprints\": {\n      \"Weapon_Efficient\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Broo Tarquin\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Broo Tarquin\"\n            ]\n          }\n        }\n      },\n      \"Weapon_LightWeight\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Broo Tarquin\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Broo Tarquin\"\n            ]\n          }\n        }\n      },\n      \"Weapon_LongRange\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Broo Tarquin\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Broo Tarquin\"\n            ]\n          }\n        }\n      },\n      \"Weapon_Overcharged\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Broo Tarquin\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Broo Tarquin\"\n            ]\n          }\n        }\n      },\n      \"Weapon_ShortRange\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Broo Tarquin\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Broo Tarquin\"\n            ]\n          }\n        }\n      },\n      \"Weapon_Sturdy\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Broo Tarquin\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Broo Tarquin\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"damage\",\n      \"damagedist\",\n      \"distdraw\",\n      \"fallofffromrange\",\n      \"integrity\",\n      \"jitter\",\n      \"mass\",\n      \"piercing\",\n      \"power\",\n      \"range\",\n      \"thermload\"\n    ],\n    \"specials\": [\n      \"special_concordant_sequence\",\n      \"special_regeneration_sequence\",\n      \"special_thermal_conduit\",\n      \"special_thermalshock\",\n      \"special_thermal_vent\",\n      \"special_weapon_damage\",\n      \"special_weapon_efficient\",\n      \"special_weapon_rateoffire\",\n      \"special_weapon_toughened\",\n      \"special_weapon_lightweight\"\n    ]\n  },\n  \"bsg\": {\n    \"blueprints\": {\n      \"ShieldGenerator_Kinetic\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Elvira Martuuk\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Elvira Martuuk\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Elvira Martuuk\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Lei Cheung\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Lei Cheung\"\n            ]\n          }\n        }\n      },\n      \"ShieldGenerator_Optimised\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Elvira Martuuk\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Elvira Martuuk\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Elvira Martuuk\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Lei Cheung\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Lei Cheung\"\n            ]\n          }\n        }\n      },\n      \"ShieldGenerator_Reinforced\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Elvira Martuuk\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Elvira Martuuk\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Elvira Martuuk\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Lei Cheung\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Lei Cheung\"\n            ]\n          }\n        }\n      },\n      \"ShieldGenerator_Thermic\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Elvira Martuuk\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Elvira Martuuk\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Elvira Martuuk\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Lei Cheung\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Lei Cheung\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"brokenregen\",\n      \"distdraw\",\n      \"explres\",\n      \"integrity\",\n      \"kinres\",\n      \"mass\",\n      \"optmass\",\n      \"optmul\",\n      \"power\",\n      \"regen\",\n      \"thermres\"\n    ],\n    \"specials\": [\n      \"special_shield_regenerative\",\n      \"special_shield_resistive\",\n      \"special_shield_health\",\n      \"special_shield_efficient\",\n      \"special_shield_thermic\",\n      \"special_shield_kinetic\",\n      \"special_shield_toughened\",\n      \"special_shield_lightweight\"\n    ]\n  },\n  \"c\": {\n    \"blueprints\": {\n      \"Weapon_Efficient\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"The Sarge\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"The Sarge\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"The Sarge\"\n            ]\n          }\n        }\n      },\n      \"Weapon_HighCapacity\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"The Sarge\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"The Sarge\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"The Sarge\"\n            ]\n          }\n        }\n      },\n      \"Weapon_LightWeight\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"The Sarge\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"The Sarge\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"The Sarge\"\n            ]\n          }\n        }\n      },\n      \"Weapon_LongRange\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"The Sarge\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"The Sarge\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"The Sarge\"\n            ]\n          }\n        }\n      },\n      \"Weapon_Overcharged\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"The Sarge\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"The Sarge\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"The Sarge\"\n            ]\n          }\n        }\n      },\n      \"Weapon_ShortRange\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"The Sarge\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"The Sarge\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"The Sarge\"\n            ]\n          }\n        }\n      },\n      \"Weapon_Sturdy\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"The Sarge\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"The Sarge\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"The Sarge\"\n            ]\n          }\n        }\n      },\n      \"Weapon_RapidFire\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tod \\\"The Blaster\\\" McQuinn\",\n              \"Marsha Hicks\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tod \\\"The Blaster\\\" McQuinn\",\n              \"Marsha Hicks\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"The Sarge\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"The Sarge\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"The Sarge\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"ammo\",\n      \"clip\",\n      \"damage\",\n      \"damagedist\",\n      \"distdraw\",\n      \"fallofffromrange\",\n      \"integrity\",\n      \"jitter\",\n      \"mass\",\n      \"piercing\",\n      \"power\",\n      \"range\",\n      \"reload\",\n      \"rof\",\n      \"shotspeed\",\n      \"thermload\"\n    ],\n    \"specials\": [\n      \"special_auto_loader\",\n      \"special_dispersal_field\",\n      \"special_smart_rounds\",\n      \"special_force_shell\",\n      \"special_high_yield_shell\",\n      \"special_thermal_cascade\",\n      \"special_weapon_damage\",\n      \"special_weapon_efficient\",\n      \"special_weapon_rateoffire\",\n      \"special_weapon_toughened\",\n      \"special_weapon_lightweight\"\n    ]\n  },\n  \"cc\": {\n    \"blueprints\": {\n      \"CollectionLimpet_LightWeight\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          }\n        }\n      },\n      \"CollectionLimpet_Reinforced\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          }\n        }\n      },\n      \"CollectionLimpet_Shielded\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"integrity\",\n      \"mass\",\n      \"power\"\n    ]\n  },\n  \"ch\": {\n    \"blueprints\": {\n      \"Misc_ChaffCapacity\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          }\n        }\n      },\n      \"Misc_LightWeight\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          }\n        }\n      },\n      \"Misc_Reinforced\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          }\n        }\n      },\n      \"Misc_Shielded\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"ammo\",\n      \"integrity\",\n      \"mass\",\n      \"power\",\n      \"reload\"\n    ]\n  },\n  \"cr\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  },\n  \"rpl\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  },\n  \"cs\": {\n    \"blueprints\": {\n      \"Sensor_FastScan\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Tiana Fortune\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Tiana Fortune\"\n            ]\n          }\n        }\n      },\n      \"Misc_LightWeight\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Tiana Fortune\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Tiana Fortune\"\n            ]\n          }\n        }\n      },\n      \"Scanner_LongRange\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Tiana Fortune\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Tiana Fortune\"\n            ]\n          }\n        }\n      },\n      \"Misc_Reinforced\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Tiana Fortune\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Tiana Fortune\"\n            ]\n          }\n        }\n      },\n      \"Misc_Shielded\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Tiana Fortune\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Tiana Fortune\"\n            ]\n          }\n        }\n      },\n      \"Scanner_WideAngle\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Tiana Fortune\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Tiana Fortune\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"integrity\",\n      \"mass\",\n      \"power\",\n      \"angle\",\n      \"range\",\n      \"scantime\"\n    ]\n  },\n  \"dc\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  },\n  \"ec\": {\n    \"blueprints\": {\n      \"Misc_LightWeight\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Ram Tah\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Ram Tah\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Ram Tah\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Ram Tah\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Ram Tah\"\n            ]\n          }\n        }\n      },\n      \"Misc_Reinforced\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Ram Tah\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Ram Tah\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Ram Tah\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Ram Tah\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Ram Tah\"\n            ]\n          }\n        }\n      },\n      \"Misc_Shielded\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Ram Tah\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Ram Tah\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Ram Tah\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Ram Tah\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Ram Tah\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"integrity\",\n      \"mass\",\n      \"power\"\n    ]\n  },\n  \"fc\": {\n    \"blueprints\": {\n      \"Weapon_DoubleShot\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Zacariah Nemo\"\n            ]\n          }\n        }\n      },\n      \"Weapon_Efficient\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Zacariah Nemo\"\n            ]\n          }\n        }\n      },\n      \"Weapon_HighCapacity\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Zacariah Nemo\"\n            ]\n          }\n        }\n      },\n      \"Weapon_LightWeight\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Zacariah Nemo\"\n            ]\n          }\n        }\n      },\n      \"Weapon_Overcharged\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Zacariah Nemo\"\n            ]\n          }\n        }\n      },\n      \"Weapon_RapidFire\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Zacariah Nemo\"\n            ]\n          }\n        }\n      },\n      \"Weapon_Sturdy\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Zacariah Nemo\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"ammo\",\n      \"burst\",\n      \"burstrof\",\n      \"clip\",\n      \"damage\",\n      \"damagedist\",\n      \"fallofffromrange\",\n      \"distdraw\",\n      \"integrity\",\n      \"jitter\",\n      \"mass\",\n      \"piercing\",\n      \"power\",\n      \"range\",\n      \"reload\",\n      \"rof\",\n      \"shotspeed\",\n      \"thermload\"\n    ],\n    \"specials\": [\n      \"special_corrosive_shell\",\n      \"special_blinding_shell\",\n      \"special_incendiary_rounds\",\n      \"special_drag_munitions\",\n      \"special_screening_shell\",\n      \"special_weapon_damage\",\n      \"special_weapon_efficient\",\n      \"special_weapon_rateoffire\",\n      \"special_weapon_toughened\",\n      \"special_weapon_lightweight\"\n    ]\n  },\n  \"rfl\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  },\n  \"fh\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  },\n  \"fi\": {\n    \"blueprints\": {\n      \"FSDinterdictor_Expanded\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Colonel Bris Dekker\",\n              \"Felicity Farseer\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Colonel Bris Dekker\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Colonel Bris Dekker\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Colonel Bris Dekker\"\n            ]\n          }\n        }\n      },\n      \"FSDinterdictor_LongRange\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Colonel Bris Dekker\",\n              \"Felicity Farseer\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Colonel Bris Dekker\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Colonel Bris Dekker\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Colonel Bris Dekker\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"boot\",\n      \"facinglimit\",\n      \"integrity\",\n      \"mass\",\n      \"power\",\n      \"ranget\"\n    ]\n  },\n  \"fs\": {\n    \"blueprints\": {\n      \"FuelScoop_Shielded\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Lori Jameson\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"integrity\",\n      \"power\"\n    ]\n  },\n  \"fsd\": {\n    \"blueprints\": {\n      \"FSD_FastBoot\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Colonel Bris Dekker\",\n              \"Elvira Martuuk\",\n              \"Felicity Farseer\",\n              \"Professor Palin\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Colonel Bris Dekker\",\n              \"Elvira Martuuk\",\n              \"Felicity Farseer\",\n              \"Professor Palin\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Colonel Bris Dekker\",\n              \"Elvira Martuuk\",\n              \"Felicity Farseer\",\n              \"Professor Palin\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Elvira Martuuk\",\n              \"Felicity Farseer\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Elvira Martuuk\",\n              \"Felicity Farseer\"\n            ]\n          }\n        }\n      },\n      \"FSD_LongRange\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Colonel Bris Dekker\",\n              \"Elvira Martuuk\",\n              \"Felicity Farseer\",\n              \"Professor Palin\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Colonel Bris Dekker\",\n              \"Elvira Martuuk\",\n              \"Felicity Farseer\",\n              \"Professor Palin\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Colonel Bris Dekker\",\n              \"Elvira Martuuk\",\n              \"Felicity Farseer\",\n              \"Professor Palin\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Elvira Martuuk\",\n              \"Felicity Farseer\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Elvira Martuuk\",\n              \"Felicity Farseer\"\n            ]\n          }\n        }\n      },\n      \"FSD_Shielded\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Colonel Bris Dekker\",\n              \"Elvira Martuuk\",\n              \"Felicity Farseer\",\n              \"Professor Palin\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Colonel Bris Dekker\",\n              \"Elvira Martuuk\",\n              \"Felicity Farseer\",\n              \"Professor Palin\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Colonel Bris Dekker\",\n              \"Elvira Martuuk\",\n              \"Felicity Farseer\",\n              \"Professor Palin\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Elvira Martuuk\",\n              \"Felicity Farseer\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Elvira Martuuk\",\n              \"Felicity Farseer\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"boot\",\n      \"integrity\",\n      \"mass\",\n      \"maxfuel\",\n      \"optmass\",\n      \"power\",\n      \"thermload\"\n    ],\n    \"specials\": [\n      \"special_fsd_fuelcapacity\",\n      \"special_fsd_heavy\",\n      \"special_fsd_toughened\",\n      \"special_fsd_lightweight\",\n      \"special_fsd_cooled\"\n    ]\n  },\n  \"ft\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  },\n  \"fx\": {\n    \"blueprints\": {\n      \"FuelTransferLimpet_LightWeight\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          }\n        }\n      },\n      \"FuelTransferLimpet_Reinforced\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          }\n        }\n      },\n      \"FuelTransferLimpet_Shielded\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"integrity\",\n      \"mass\",\n      \"power\"\n    ]\n  },\n  \"hb\": {\n    \"blueprints\": {\n      \"HatchBreakerLimpet_LightWeight\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          }\n        }\n      },\n      \"HatchBreakerLimpet_Reinforced\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          }\n        }\n      },\n      \"HatchBreakerLimpet_Shielded\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"integrity\",\n      \"mass\",\n      \"power\"\n    ]\n  },\n  \"hr\": {\n    \"blueprints\": {\n      \"HullReinforcement_Advanced\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Liz Ryder\",\n              \"Selene Jean\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          }\n        }\n      },\n      \"HullReinforcement_Explosive\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Liz Ryder\",\n              \"Selene Jean\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          }\n        }\n      },\n      \"HullReinforcement_HeavyDuty\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Liz Ryder\",\n              \"Selene Jean\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          }\n        }\n      },\n      \"HullReinforcement_Kinetic\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Liz Ryder\",\n              \"Selene Jean\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          }\n        }\n      },\n      \"HullReinforcement_Thermic\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Liz Ryder\",\n              \"Selene Jean\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Selene Jean\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"hullreinforcement\",\n      \"causres\",\n      \"explres\",\n      \"kinres\",\n      \"mass\",\n      \"thermres\"\n    ],\n    \"specials\": [\n      \"special_hullreinforcement_thermic\",\n      \"special_hullreinforcement_kinetic\",\n      \"special_hullreinforcement_explosive\",\n      \"special_hullreinforcement_chunky\"\n    ]\n  },\n  \"hs\": {\n    \"blueprints\": {\n      \"Misc_HeatSinkCapacity\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          }\n        }\n      },\n      \"Misc_LightWeight\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          }\n        }\n      },\n      \"Misc_Reinforced\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          }\n        }\n      },\n      \"Misc_Shielded\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"ammo\",\n      \"integrity\",\n      \"mass\",\n      \"power\",\n      \"reload\"\n    ]\n  },\n  \"kw\": {\n    \"blueprints\": {\n      \"Sensor_FastScan\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Tiana Fortune\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Tiana Fortune\"\n            ]\n          }\n        }\n      },\n      \"Misc_LightWeight\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Tiana Fortune\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Tiana Fortune\"\n            ]\n          }\n        }\n      },\n      \"Scanner_LongRange\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Tiana Fortune\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Tiana Fortune\"\n            ]\n          }\n        }\n      },\n      \"Misc_Reinforced\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Tiana Fortune\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Tiana Fortune\"\n            ]\n          }\n        }\n      },\n      \"Misc_Shielded\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Tiana Fortune\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Tiana Fortune\"\n            ]\n          }\n        }\n      },\n      \"Scanner_WideAngle\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Tiana Fortune\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Tiana Fortune\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"integrity\",\n      \"mass\",\n      \"power\",\n      \"angle\",\n      \"range\",\n      \"scantime\"\n    ]\n  },\n  \"ls\": {\n    \"blueprints\": {\n      \"LifeSupport_LightWeight\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Lori Jameson\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Etienne Dorn\"\n            ]\n          }\n        }\n      },\n      \"LifeSupport_Reinforced\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Lori Jameson\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Etienne Dorn\"\n            ]\n          }\n        }\n      },\n      \"LifeSupport_Shielded\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Lori Jameson\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Etienne Dorn\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"boot\",\n      \"integrity\",\n      \"mass\",\n      \"power\"\n    ]\n  },\n  \"mc\": {\n    \"blueprints\": {\n      \"Weapon_Efficient\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          }\n        }\n      },\n      \"Weapon_HighCapacity\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          }\n        }\n      },\n      \"Weapon_LightWeight\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          }\n        }\n      },\n      \"Weapon_LongRange\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          }\n        }\n      },\n      \"MC_Overcharged\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          }\n        }\n      },\n      \"Weapon_RapidFire\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          }\n        }\n      },\n      \"Weapon_ShortRange\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          }\n        }\n      },\n      \"Weapon_Sturdy\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"ammo\",\n      \"clip\",\n      \"damage\",\n      \"damagedist\",\n      \"fallofffromrange\",\n      \"distdraw\",\n      \"integrity\",\n      \"jitter\",\n      \"mass\",\n      \"piercing\",\n      \"power\",\n      \"range\",\n      \"reload\",\n      \"rof\",\n      \"shotspeed\",\n      \"thermload\"\n    ],\n    \"specials\": [\n      \"special_auto_loader\",\n      \"special_corrosive_shell\",\n      \"special_emissive_munitions\",\n      \"special_incendiary_rounds\",\n      \"special_smart_rounds\",\n      \"special_thermalshock\",\n      \"special_weapon_damage\",\n      \"special_weapon_efficient\",\n      \"special_weapon_rateoffire\",\n      \"special_weapon_toughened\",\n      \"special_weapon_lightweight\"\n    ]\n  },\n  \"axmc\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  },\n  \"ml\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  },\n  \"mr\": {\n    \"blueprints\": {\n      \"Weapon_HighCapacity\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Juri Ishmaak\",\n              \"Liz Ryder\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Juri Ishmaak\",\n              \"Liz Ryder\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Juri Ishmaak\",\n              \"Liz Ryder\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Liz Ryder\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Liz Ryder\"\n            ]\n          }\n        }\n      },\n      \"Weapon_LightWeight\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Juri Ishmaak\",\n              \"Liz Ryder\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Juri Ishmaak\",\n              \"Liz Ryder\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Juri Ishmaak\",\n              \"Liz Ryder\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Liz Ryder\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Liz Ryder\"\n            ]\n          }\n        }\n      },\n      \"Weapon_RapidFire\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Juri Ishmaak\",\n              \"Liz Ryder\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Juri Ishmaak\",\n              \"Liz Ryder\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Juri Ishmaak\",\n              \"Liz Ryder\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Liz Ryder\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Liz Ryder\"\n            ]\n          }\n        }\n      },\n      \"Weapon_Sturdy\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Juri Ishmaak\",\n              \"Liz Ryder\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Juri Ishmaak\",\n              \"Liz Ryder\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Juri Ishmaak\",\n              \"Liz Ryder\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Liz Ryder\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Liz Ryder\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"ammo\",\n      \"clip\",\n      \"damage\",\n      \"damagedist\",\n      \"fallofffromrange\",\n      \"distdraw\",\n      \"integrity\",\n      \"jitter\",\n      \"mass\",\n      \"piercing\",\n      \"power\",\n      \"reload\",\n      \"rof\",\n      \"thermload\"\n    ],\n    \"specials_S\": [\n      \"special_drag_munitions\",\n      \"special_emissive_munitions\",\n      \"special_overload_munitions\",\n      \"special_thermal_cascade\",\n      \"special_weapon_damage\",\n      \"special_weapon_efficient\",\n      \"special_weapon_rateoffire\",\n      \"special_weapon_toughened\",\n      \"special_weapon_lightweight\"\n    ],\n    \"specials_D\": [\n      \"special_emissive_munitions\",\n      \"special_fsd_interrupt\",\n      \"special_overload_munitions\",\n      \"special_penetrator_payload\",\n      \"special_thermal_cascade\",\n      \"special_weapon_damage\",\n      \"special_weapon_efficient\",\n      \"special_weapon_rateoffire\",\n      \"special_weapon_toughened\",\n      \"special_weapon_lightweight\",\n      \"special_penetrator_munitions\"\n    ]\n  },\n  \"axmr\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  },\n  \"mrp\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  },\n  \"nl\": {\n    \"blueprints\": {\n      \"Weapon_HighCapacity\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Juri Ishmaak\",\n              \"Liz Ryder\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Juri Ishmaak\",\n              \"Liz Ryder\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Juri Ishmaak\",\n              \"Liz Ryder\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Juri Ishmaak\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Juri Ishmaak\"\n            ]\n          }\n        }\n      },\n      \"Weapon_LightWeight\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Juri Ishmaak\",\n              \"Liz Ryder\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Juri Ishmaak\",\n              \"Liz Ryder\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Juri Ishmaak\",\n              \"Liz Ryder\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Juri Ishmaak\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Juri Ishmaak\"\n            ]\n          }\n        }\n      },\n      \"Weapon_RapidFire\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Juri Ishmaak\",\n              \"Liz Ryder\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Juri Ishmaak\",\n              \"Liz Ryder\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Juri Ishmaak\",\n              \"Liz Ryder\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Juri Ishmaak\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Juri Ishmaak\"\n            ]\n          }\n        }\n      },\n      \"Weapon_Sturdy\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Juri Ishmaak\",\n              \"Liz Ryder\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Juri Ishmaak\",\n              \"Liz Ryder\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Juri Ishmaak\",\n              \"Liz Ryder\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Juri Ishmaak\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Juri Ishmaak\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"ammo\",\n      \"boot\",\n      \"clip\",\n      \"damage\",\n      \"damagedist\",\n      \"fallofffromrange\",\n      \"integrity\",\n      \"jitter\",\n      \"mass\",\n      \"piercing\",\n      \"power\",\n      \"reload\",\n      \"rof\",\n      \"thermload\"\n    ],\n    \"specials\": [\n      \"special_ion_disruptor\",\n      \"special_overload_munitions\",\n      \"special_radiant_canister\",\n      \"special_reverberating_cascade\",\n      \"special_shiftlock_canister\",\n      \"special_emissive_munitions\",\n      \"special_weapon_damage\",\n      \"special_weapon_efficient\",\n      \"special_weapon_rateoffire\",\n      \"special_weapon_toughened\",\n      \"special_weapon_lightweight\"\n    ]\n  },\n  \"gpc\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  },\n  \"gpl\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  },\n  \"gsrp\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  },\n  \"gfsb\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  },\n  \"ghrp\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  },\n  \"gmrp\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  },\n  \"tbsc\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  },\n  \"gsc\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  },\n  \"gpp\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  },\n  \"ggc\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  },\n  \"pa\": {\n    \"blueprints\": {\n      \"Weapon_Efficient\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Bill Turner\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Bill Turner\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Bill Turner\"\n            ]\n          }\n        }\n      },\n      \"Weapon_Focused\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Bill Turner\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Bill Turner\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Bill Turner\"\n            ]\n          }\n        }\n      },\n      \"Weapon_LightWeight\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Bill Turner\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Bill Turner\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Bill Turner\"\n            ]\n          }\n        }\n      },\n      \"Weapon_LongRange\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Bill Turner\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Bill Turner\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Bill Turner\"\n            ]\n          }\n        }\n      },\n      \"Weapon_Overcharged\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Bill Turner\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Bill Turner\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Bill Turner\"\n            ]\n          }\n        }\n      },\n      \"Weapon_RapidFire\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Bill Turner\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Bill Turner\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Bill Turner\"\n            ]\n          }\n        }\n      },\n      \"Weapon_ShortRange\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Bill Turner\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Bill Turner\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Bill Turner\"\n            ]\n          }\n        }\n      },\n      \"Weapon_Sturdy\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Zacariah Nemo\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Bill Turner\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Bill Turner\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Bill Turner\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"ammo\",\n      \"clip\",\n      \"damage\",\n      \"damagedist\",\n      \"fallofffromrange\",\n      \"distdraw\",\n      \"integrity\",\n      \"jitter\",\n      \"mass\",\n      \"piercing\",\n      \"power\",\n      \"range\",\n      \"reload\",\n      \"shotspeed\",\n      \"rof\",\n      \"thermload\"\n    ],\n    \"specials\": [\n      \"special_blinding_shell\",\n      \"special_dispersal_field\",\n      \"special_phasing_sequence\",\n      \"special_plasma_slug\",\n      \"special_plasma_slug_pa\",\n      \"special_lock_breaker\",\n      \"special_thermal_conduit\",\n      \"special_weapon_damage\",\n      \"special_weapon_efficient\",\n      \"special_weapon_rateoffire\",\n      \"special_weapon_toughened\",\n      \"special_weapon_lightweight\"\n    ]\n  },\n  \"pas\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  },\n  \"pc\": {\n    \"blueprints\": {\n      \"ProspectingLimpet_LightWeight\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          }\n        }\n      },\n      \"ProspectingLimpet_Reinforced\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          }\n        }\n      },\n      \"ProspectingLimpet_Shielded\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Ram Tah\",\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tiana Fortune\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"integrity\",\n      \"mass\",\n      \"power\"\n    ]\n  },\n  \"pce\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  },\n  \"pci\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  },\n  \"pcm\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  },\n  \"pcq\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  },\n  \"pd\": {\n    \"blueprints\": {\n      \"PowerDistributor_HighFrequency\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Hera Tani\",\n              \"Marco Qwent\",\n              \"The Dweller\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Hera Tani\",\n              \"Marco Qwent\",\n              \"The Dweller\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Hera Tani\",\n              \"Marco Qwent\",\n              \"The Dweller\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"The Dweller\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"The Dweller\"\n            ]\n          }\n        }\n      },\n      \"PowerDistributor_PriorityEngines\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Hera Tani\",\n              \"Marco Qwent\",\n              \"The Dweller\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Hera Tani\",\n              \"Marco Qwent\",\n              \"The Dweller\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Hera Tani\",\n              \"Marco Qwent\",\n              \"The Dweller\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"The Dweller\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"The Dweller\"\n            ]\n          }\n        }\n      },\n      \"PowerDistributor_HighCapacity\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Hera Tani\",\n              \"Marco Qwent\",\n              \"The Dweller\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Hera Tani\",\n              \"Marco Qwent\",\n              \"The Dweller\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Hera Tani\",\n              \"Marco Qwent\",\n              \"The Dweller\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"The Dweller\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"The Dweller\"\n            ]\n          }\n        }\n      },\n      \"PowerDistributor_Shielded\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Hera Tani\",\n              \"Marco Qwent\",\n              \"The Dweller\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Hera Tani\",\n              \"Marco Qwent\",\n              \"The Dweller\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Hera Tani\",\n              \"Marco Qwent\",\n              \"The Dweller\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"The Dweller\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"The Dweller\"\n            ]\n          }\n        }\n      },\n      \"PowerDistributor_PrioritySystems\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Hera Tani\",\n              \"Marco Qwent\",\n              \"The Dweller\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Hera Tani\",\n              \"Marco Qwent\",\n              \"The Dweller\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Hera Tani\",\n              \"Marco Qwent\",\n              \"The Dweller\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"The Dweller\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"The Dweller\"\n            ]\n          }\n        }\n      },\n      \"PowerDistributor_PriorityWeapons\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Hera Tani\",\n              \"Marco Qwent\",\n              \"The Dweller\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Hera Tani\",\n              \"Marco Qwent\",\n              \"The Dweller\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Hera Tani\",\n              \"Marco Qwent\",\n              \"The Dweller\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"The Dweller\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"The Dweller\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"boot\",\n      \"engcap\",\n      \"engrate\",\n      \"integrity\",\n      \"mass\",\n      \"power\",\n      \"syscap\",\n      \"sysrate\",\n      \"wepcap\",\n      \"weprate\"\n    ],\n    \"specials\": [\n      \"special_powerdistributor_capacity\",\n      \"special_powerdistributor_fast\",\n      \"special_powerdistributor_efficient\",\n      \"special_powerdistributor_toughened\",\n      \"special_powerdistributor_lightweight\"\n    ]\n  },\n  \"pl\": {\n    \"blueprints\": {\n      \"Weapon_Efficient\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Broo Tarquin\"\n            ]\n          }\n        }\n      },\n      \"Weapon_Focused\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Broo Tarquin\"\n            ]\n          }\n        }\n      },\n      \"Weapon_LightWeight\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Broo Tarquin\"\n            ]\n          }\n        }\n      },\n      \"Weapon_LongRange\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Broo Tarquin\"\n            ]\n          }\n        }\n      },\n      \"Weapon_Overcharged\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Broo Tarquin\"\n            ]\n          }\n        }\n      },\n      \"Weapon_RapidFire\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Broo Tarquin\"\n            ]\n          }\n        }\n      },\n      \"Weapon_ShortRange\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Broo Tarquin\"\n            ]\n          }\n        }\n      },\n      \"Weapon_Sturdy\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Broo Tarquin\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"damage\",\n      \"damagedist\",\n      \"fallofffromrange\",\n      \"distdraw\",\n      \"integrity\",\n      \"jitter\",\n      \"mass\",\n      \"piercing\",\n      \"power\",\n      \"range\",\n      \"rof\",\n      \"thermload\"\n    ],\n    \"specials\": [\n      \"special_concordant_sequence\",\n      \"special_emissive_munitions\",\n      \"special_phasing_sequence\",\n      \"special_scramble_spectrum\",\n      \"special_thermalshock\",\n      \"special_weapon_damage\",\n      \"special_weapon_efficient\",\n      \"special_weapon_rateoffire\",\n      \"special_weapon_toughened\",\n      \"special_weapon_lightweight\"\n    ]\n  },\n  \"po\": {\n    \"blueprints\": {\n      \"Misc_PointDefenseCapacity\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          }\n        }\n      },\n      \"Misc_LightWeight\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          }\n        }\n      },\n      \"Misc_Reinforced\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          }\n        }\n      },\n      \"Misc_Shielded\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Petra Olmanova\",\n              \"Ram Tah\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"ammo\",\n      \"integrity\",\n      \"mass\",\n      \"power\",\n      \"reload\"\n    ]\n  },\n  \"pp\": {\n    \"blueprints\": {\n      \"PowerPlant_Armoured\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Felicity Farseer\",\n              \"Hera Tani\",\n              \"Marco Qwent\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Hera Tani\",\n              \"Marco Qwent\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Hera Tani\",\n              \"Marco Qwent\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Hera Tani\",\n              \"Marco Qwent\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Hera Tani\"\n            ]\n          }\n        }\n      },\n      \"PowerPlant_Stealth\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Felicity Farseer\",\n              \"Hera Tani\",\n              \"Marco Qwent\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Hera Tani\",\n              \"Marco Qwent\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Hera Tani\",\n              \"Marco Qwent\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Hera Tani\",\n              \"Marco Qwent\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Hera Tani\"\n            ]\n          }\n        }\n      },\n      \"PowerPlant_Boosted\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Felicity Farseer\",\n              \"Hera Tani\",\n              \"Marco Qwent\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Hera Tani\",\n              \"Marco Qwent\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Hera Tani\",\n              \"Marco Qwent\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Hera Tani\",\n              \"Marco Qwent\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Hera Tani\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"eff\",\n      \"integrity\",\n      \"mass\",\n      \"pgen\"\n    ],\n    \"specials\": [\n      \"special_powerplant_highcharge\",\n      \"special_powerplant_cooled\",\n      \"special_powerplant_toughened\",\n      \"special_powerplant_lightweight\"\n    ]\n  },\n  \"psg\": {\n    \"blueprints\": {\n      \"ShieldGenerator_Kinetic\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Elvira Martuuk\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Elvira Martuuk\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Elvira Martuuk\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Lei Cheung\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Lei Cheung\"\n            ]\n          }\n        }\n      },\n      \"ShieldGenerator_Optimised\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Elvira Martuuk\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Elvira Martuuk\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Elvira Martuuk\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Lei Cheung\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Lei Cheung\"\n            ]\n          }\n        }\n      },\n      \"ShieldGenerator_Reinforced\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Elvira Martuuk\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Elvira Martuuk\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Elvira Martuuk\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Lei Cheung\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Lei Cheung\"\n            ]\n          }\n        }\n      },\n      \"ShieldGenerator_Thermic\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Elvira Martuuk\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Elvira Martuuk\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Elvira Martuuk\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Lei Cheung\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Lei Cheung\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"brokenregen\",\n      \"distdraw\",\n      \"explres\",\n      \"integrity\",\n      \"kinres\",\n      \"mass\",\n      \"optmass\",\n      \"optmul\",\n      \"power\",\n      \"regen\",\n      \"thermres\"\n    ],\n    \"specials\": [\n      \"special_shield_regenerative\",\n      \"special_shield_resistive\",\n      \"special_shield_health\",\n      \"special_shield_efficient\",\n      \"special_shield_thermic\",\n      \"special_shield_kinetic\",\n      \"special_shield_toughened\",\n      \"special_shield_lightweight\"\n    ]\n  },\n  \"pv\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  },\n  \"rf\": {\n    \"blueprints\": {\n      \"Refineries_Shielded\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Lori Jameson\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"integrity\",\n      \"power\"\n    ]\n  },\n  \"rg\": {\n    \"blueprints\": {\n      \"Weapon_HighCapacity\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          }\n        }\n      },\n      \"Weapon_LightWeight\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          }\n        }\n      },\n      \"Weapon_LongRange\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          }\n        }\n      },\n      \"Weapon_ShortRange\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          }\n        }\n      },\n      \"Weapon_Sturdy\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"The Sarge\",\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Tod 'The Blaster' McQuinn\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"ammo\",\n      \"clip\",\n      \"damage\",\n      \"damagedist\",\n      \"fallofffromrange\",\n      \"distdraw\",\n      \"integrity\",\n      \"jitter\",\n      \"mass\",\n      \"piercing\",\n      \"power\",\n      \"range\",\n      \"reload\",\n      \"rof\",\n      \"thermload\"\n    ],\n    \"specials\": [\n      \"special_feedback_cascade\",\n      \"special_feedback_cascade_cooled\",\n      \"special_plasma_slug\",\n      \"special_plasma_slug_cooled\",\n      \"special_super_penetrator\",\n      \"special_super_penetrator_cooled\",\n      \"special_weapon_damage\",\n      \"special_weapon_efficient\",\n      \"special_weapon_rateoffire\",\n      \"special_weapon_toughened\",\n      \"special_weapon_lightweight\"\n    ]\n  },\n  \"s\": {\n    \"blueprints\": {\n      \"Sensor_LightWeight\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Juri Ishmaak\",\n              \"Lei Cheung\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Felicity Farseer\",\n              \"Hera Tani\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Juri Ishmaak\",\n              \"Lei Cheung\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Felicity Farseer\",\n              \"Hera Tani\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Juri Ishmaak\",\n              \"Lei Cheung\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Felicity Farseer\",\n              \"Hera Tani\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Juri Ishmaak\",\n              \"Lei Cheung\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Juri Ishmaak\",\n              \"Lei Cheung\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\"\n            ]\n          }\n        }\n      },\n      \"Sensor_LongRange\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Juri Ishmaak\",\n              \"Lei Cheung\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Felicity Farseer\",\n              \"Hera Tani\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Juri Ishmaak\",\n              \"Lei Cheung\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Felicity Farseer\",\n              \"Hera Tani\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Juri Ishmaak\",\n              \"Lei Cheung\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Felicity Farseer\",\n              \"Hera Tani\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Juri Ishmaak\",\n              \"Lei Cheung\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Juri Ishmaak\",\n              \"Lei Cheung\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\"\n            ]\n          }\n        }\n      },\n      \"Sensor_WideAngle\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Juri Ishmaak\",\n              \"Lei Cheung\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Felicity Farseer\",\n              \"Hera Tani\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Juri Ishmaak\",\n              \"Lei Cheung\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Felicity Farseer\",\n              \"Hera Tani\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Juri Ishmaak\",\n              \"Lei Cheung\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Felicity Farseer\",\n              \"Hera Tani\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Juri Ishmaak\",\n              \"Lei Cheung\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Juri Ishmaak\",\n              \"Lei Cheung\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"integrity\",\n      \"mass\",\n      \"power\",\n      \"range\",\n      \"angle\"\n    ]\n  },\n  \"sb\": {\n    \"blueprints\": {\n      \"ShieldBooster_Explosive\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Felicity Farseer\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Didi Vatermann\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Didi Vatermann\"\n            ]\n          }\n        }\n      },\n      \"ShieldBooster_HeavyDuty\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Felicity Farseer\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Didi Vatermann\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Didi Vatermann\"\n            ]\n          }\n        }\n      },\n      \"ShieldBooster_Kinetic\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Felicity Farseer\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Didi Vatermann\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Didi Vatermann\"\n            ]\n          }\n        }\n      },\n      \"ShieldBooster_Resistive\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Felicity Farseer\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Didi Vatermann\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Didi Vatermann\"\n            ]\n          }\n        }\n      },\n      \"ShieldBooster_Thermic\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Felicity Farseer\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Didi Vatermann\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Didi Vatermann\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"explres\",\n      \"integrity\",\n      \"kinres\",\n      \"mass\",\n      \"power\",\n      \"shieldboost\",\n      \"thermres\"\n    ],\n    \"specials\": [\n      \"special_shieldbooster_thermic\",\n      \"special_shieldbooster_kinetic\",\n      \"special_shieldbooster_explosive\",\n      \"special_shieldbooster_efficient\",\n      \"special_shieldbooster_toughened\",\n      \"special_shieldbooster_chunky\"\n    ]\n  },\n  \"sfn\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  },\n  \"sc\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  },\n  \"scb\": {\n    \"blueprints\": {\n      \"ShieldCellBank_Rapid\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Elvira Martuuk\",\n              \"Lori Jameson\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Lori Jameson\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Lori Jameson\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Mel Brandon\"\n            ]\n          }\n        }\n      },\n      \"ShieldCellBank_Specialised\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Elvira Martuuk\",\n              \"Lori Jameson\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Lori Jameson\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Lori Jameson\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Mel Brandon\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"boot\",\n      \"clip\",\n      \"duration\",\n      \"integrity\",\n      \"mass\",\n      \"power\",\n      \"shieldreinforcement\",\n      \"spinup\",\n      \"thermload\"\n    ],\n    \"specials\": [\n      \"special_shieldcell_gradual\",\n      \"special_shieldcell_oversized\",\n      \"special_shieldcell_efficient\",\n      \"special_shieldcell_toughened\",\n      \"special_shieldcell_lightweight\"\n    ]\n  },\n  \"sg\": {\n    \"blueprints\": {\n      \"ShieldGenerator_Kinetic\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Elvira Martuuk\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Elvira Martuuk\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Elvira Martuuk\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Lei Cheung\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Lei Cheung\"\n            ]\n          }\n        }\n      },\n      \"ShieldGenerator_Optimised\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Elvira Martuuk\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Elvira Martuuk\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Elvira Martuuk\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Lei Cheung\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Lei Cheung\"\n            ]\n          }\n        }\n      },\n      \"ShieldGenerator_Reinforced\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Elvira Martuuk\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Elvira Martuuk\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Elvira Martuuk\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Lei Cheung\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Lei Cheung\"\n            ]\n          }\n        }\n      },\n      \"ShieldGenerator_Thermic\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Elvira Martuuk\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Elvira Martuuk\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Didi Vatermann\",\n              \"Elvira Martuuk\",\n              \"Lei Cheung\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Lei Cheung\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Lei Cheung\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"brokenregen\",\n      \"distdraw\",\n      \"explres\",\n      \"integrity\",\n      \"kinres\",\n      \"mass\",\n      \"optmass\",\n      \"optmul\",\n      \"power\",\n      \"regen\",\n      \"thermres\"\n    ],\n    \"specials\": [\n      \"special_shield_regenerative\",\n      \"special_shield_resistive\",\n      \"special_shield_health\",\n      \"special_shield_efficient\",\n      \"special_shield_thermic\",\n      \"special_shield_kinetic\",\n      \"special_shield_toughened\",\n      \"special_shield_lightweight\"\n    ]\n  },\n  \"ss\": {\n    \"blueprints\": {\n      \"Sensor_Expanded\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Felicity Farseer\",\n              \"Juri Ishmaak\",\n              \"Lei Cheung\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Felicity Farseer\",\n              \"Juri Ishmaak\",\n              \"Lei Cheung\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Felicity Farseer\",\n              \"Juri Ishmaak\",\n              \"Lei Cheung\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Juri Ishmaak\",\n              \"Lei Cheung\",\n              \"Lori Jameson\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Juri Ishmaak\",\n              \"Lei Cheung\",\n              \"Lori Jameson\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"mass\",\n      \"angle\",\n      \"range\",\n      \"scanrate\",\n      \"proberadius\"\n    ]\n  },\n  \"xs\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  },\n  \"t\": {\n    \"blueprints\": {\n      \"Engine_Dirty\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Elvira Martuuk\",\n              \"Felicity Farseer\",\n              \"Professor Palin\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Elvira Martuuk\",\n              \"Felicity Farseer\",\n              \"Professor Palin\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Felicity Farseer\",\n              \"Professor Palin\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Professor Palin\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Professor Palin\"\n            ]\n          }\n        }\n      },\n      \"Engine_Reinforced\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Elvira Martuuk\",\n              \"Felicity Farseer\",\n              \"Professor Palin\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Elvira Martuuk\",\n              \"Felicity Farseer\",\n              \"Professor Palin\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Felicity Farseer\",\n              \"Professor Palin\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Professor Palin\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Professor Palin\"\n            ]\n          }\n        }\n      },\n      \"Engine_Tuned\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Elvira Martuuk\",\n              \"Felicity Farseer\",\n              \"Professor Palin\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Elvira Martuuk\",\n              \"Felicity Farseer\",\n              \"Professor Palin\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Felicity Farseer\",\n              \"Professor Palin\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Professor Palin\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Professor Palin\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"integrity\",\n      \"mass\",\n      \"optmass\",\n      \"optmul\",\n      \"power\",\n      \"thermload\"\n    ],\n    \"specials\": [\n      \"special_engine_cooled\",\n      \"special_engine_haulage\",\n      \"special_engine_overloaded\",\n      \"special_engine_toughened\",\n      \"special_engine_lightweight\"\n    ]\n  },\n  \"tp\": {\n    \"blueprints\": {\n      \"Weapon_LightWeight\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Juri Ishmaak\",\n              \"Liz Ryder\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Juri Ishmaak\",\n              \"Liz Ryder\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Juri Ishmaak\",\n              \"Liz Ryder\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Liz Ryder\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Liz Ryder\"\n            ]\n          }\n        }\n      },\n      \"Weapon_Sturdy\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Juri Ishmaak\",\n              \"Liz Ryder\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Juri Ishmaak\",\n              \"Liz Ryder\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Juri Ishmaak\",\n              \"Liz Ryder\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Liz Ryder\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Liz Ryder\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"damage\",\n      \"damagedist\",\n      \"fallofffromrange\",\n      \"distdraw\",\n      \"integrity\",\n      \"jitter\",\n      \"mass\",\n      \"piercing\",\n      \"power\",\n      \"range\",\n      \"rof\",\n      \"thermload\"\n    ],\n    \"specials\": [\n      \"special_mass_lock_munition\",\n      \"special_penetrator_payload\",\n      \"special_reverberating_cascade\",\n      \"special_weapon_damage\",\n      \"special_weapon_efficient\",\n      \"special_weapon_rateoffire\",\n      \"special_weapon_toughened\",\n      \"special_weapon_lightweight\",\n      \"special_deep_cut_payload\",\n      \"special_mass_lock\"\n    ]\n  },\n  \"ul\": {\n    \"blueprints\": {\n      \"Weapon_Efficient\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Broo Tarquin\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Broo Tarquin\"\n            ]\n          }\n        }\n      },\n      \"Weapon_Focused\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Broo Tarquin\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Broo Tarquin\"\n            ]\n          }\n        }\n      },\n      \"Weapon_LightWeight\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Broo Tarquin\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Broo Tarquin\"\n            ]\n          }\n        }\n      },\n      \"Weapon_LongRange\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Broo Tarquin\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Broo Tarquin\"\n            ]\n          }\n        }\n      },\n      \"Weapon_Overcharged\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Broo Tarquin\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Broo Tarquin\"\n            ]\n          }\n        }\n      },\n      \"Weapon_RapidFire\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Broo Tarquin\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Broo Tarquin\"\n            ]\n          }\n        }\n      },\n      \"Weapon_ShortRange\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Broo Tarquin\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Broo Tarquin\"\n            ]\n          }\n        }\n      },\n      \"Weapon_Sturdy\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Broo Tarquin\",\n              \"The Dweller\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Broo Tarquin\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Broo Tarquin\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"burst\",\n      \"burstrof\",\n      \"damage\",\n      \"damagedist\",\n      \"fallofffromrange\",\n      \"distdraw\",\n      \"integrity\",\n      \"jitter\",\n      \"mass\",\n      \"piercing\",\n      \"power\",\n      \"range\",\n      \"rof\",\n      \"thermload\"\n    ],\n    \"specials\": [\n      \"special_concordant_sequence\",\n      \"special_inertial_impact\",\n      \"special_phasing_sequence\",\n      \"special_scramble_spectrum\",\n      \"special_thermalshock\",\n      \"special_weapon_damage\",\n      \"special_weapon_efficient\",\n      \"special_weapon_rateoffire\",\n      \"special_weapon_toughened\",\n      \"special_weapon_lightweight\"\n    ]\n  },\n  \"ws\": {\n    \"blueprints\": {\n      \"Sensor_FastScan\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Tiana Fortune\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Tiana Fortune\"\n            ]\n          }\n        }\n      },\n      \"Misc_LightWeight\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Tiana Fortune\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Tiana Fortune\"\n            ]\n          }\n        }\n      },\n      \"Scanner_LongRange\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Tiana Fortune\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Tiana Fortune\"\n            ]\n          }\n        }\n      },\n      \"Misc_Reinforced\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Tiana Fortune\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Tiana Fortune\"\n            ]\n          }\n        }\n      },\n      \"Misc_Shielded\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Tiana Fortune\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Tiana Fortune\"\n            ]\n          }\n        }\n      },\n      \"Scanner_WideAngle\": {\n        \"grades\": {\n          \"1\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"2\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\",\n              \"Etienne Dorn\"\n            ]\n          },\n          \"3\": {\n            \"engineers\": [\n              \"Bill Turner\",\n              \"Lori Jameson\",\n              \"Tiana Fortune\",\n              \"Juri Ishmaak\"\n            ]\n          },\n          \"4\": {\n            \"engineers\": [\n              \"Tiana Fortune\"\n            ]\n          },\n          \"5\": {\n            \"engineers\": [\n              \"Tiana Fortune\"\n            ]\n          }\n        }\n      }\n    },\n    \"modifications\": [\n      \"integrity\",\n      \"mass\",\n      \"power\",\n      \"angle\",\n      \"range\",\n      \"scantime\"\n    ]\n  },\n  \"tbem\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  },\n  \"tbrfl\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  },\n  \"dtl\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  },\n  \"mahr\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  },\n  \"pwa\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  },\n  \"scl\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  },\n  \"sdm\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  },\n  \"abl\": {\n    \"blueprints\": {\n    },\n    \"modifications\": [\n    ]\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modifications/specials.json",
    "content": "{\n    \"special_auto_loader\": {\n        \"id\": 0,\n        \"edname\": \"special_auto_loader\",\n        \"name\": \"Auto loader\",\n        \"uuid\": \"640d6dde-f497-42cd-8bc9-73ab3fa1b43a\"\n    },\n    \"special_choke_canister\": {\n        \"id\": 1,\n        \"edname\": \"special_choke_canister\",\n        \"name\": \"Choke canister\",\n        \"uuid\": \"770007e7-398c-40ce-be02-22b227728aef\"\n    },\n    \"special_concordant_sequence\": {\n        \"id\": 2,\n        \"edname\": \"special_concordant_sequence\",\n        \"name\": \"Concordant sequence\",\n        \"uuid\": \"b556c19a-e756-45b1-846f-9ddc61af18a9\"\n    },\n    \"special_corrosive_shell\": {\n        \"id\": 3,\n        \"edname\": \"special_corrosive_shell\",\n        \"name\": \"Corrosive shell\",\n        \"uuid\": \"a6faa870-ff89-4e48-b607-424e065cbd43\"\n    },\n    \"special_blinding_shell\": {\n        \"id\": 4,\n        \"edname\": \"special_blinding_shell\",\n        \"name\": \"Dazzle shell\",\n        \"uuid\": \"0a1e29ee-2fc7-4cbd-bbda-e8803c3e03ac\"\n    },\n    \"special_dispersal_field\": {\n        \"id\": 5,\n        \"edname\": \"special_dispersal_field\",\n        \"name\": \"Dispersal field\",\n        \"uuid\": \"0e2dbd63-335d-4dca-8050-c7ca8ddc56b0\"\n    },\n    \"special_distortion_field\": {\n        \"id\": 6,\n        \"edname\": \"special_distortion_field\",\n        \"name\": \"Distortion field\",\n        \"uuid\": \"4da956d5-df5b-4d4f-8651-22fd5e343454\"\n    },\n    \"special_drag_munitions\": {\n        \"id\": 7,\n        \"edname\": \"special_drag_munitions\",\n        \"name\": \"Drag munitions\",\n        \"uuid\": \"ca4cd540-660a-4fba-b38d-179f72125819\"\n    },\n    \"special_emissive_munitions\": {\n        \"id\": 8,\n        \"edname\": \"special_emissive_munitions\",\n        \"name\": \"Emissive munitions\",\n        \"uuid\": \"16c9ed0f-63c0-4ff2-b2e0-59bbb294632d\"\n    },\n    \"special_feedback_cascade\": {\n        \"id\": 9,\n        \"edname\": \"special_feedback_cascade\",\n        \"name\": \"Feedback cascade (Legacy)\",\n        \"uuid\": \"fe22ebee-802a-4905-b390-f59a65c1394c\"\n    },\n    \"special_force_shell\": {\n        \"id\": 10,\n        \"edname\": \"special_force_shell\",\n        \"name\": \"Force shell\",\n        \"uuid\": \"62056851-d2f2-474d-ba77-66c030c900e9\"\n    },\n    \"special_fsd_interrupt\": {\n        \"id\": 33,\n        \"edname\": \"special_fsd_interrupt\",\n        \"name\": \"FSD interrupt\",\n        \"uuid\": \"c1400054-1c2b-487c-8854-7a22d96d4cd2\"\n    },\n    \"special_high_yield_shell\": {\n        \"id\": 11,\n        \"edname\": \"special_high_yield_shell\",\n        \"name\": \"High yield shell\",\n        \"uuid\": \"a950b42c-204f-4775-a0c5-21bfcec1fd14\"\n    },\n    \"special_incendiary_rounds\": {\n        \"id\": 12,\n        \"edname\": \"special_incendiary_rounds\",\n        \"name\": \"Incendiary rounds\",\n        \"uuid\": \"3526773e-a814-4bec-afbf-30db79a3e239\"\n    },\n    \"special_inertial_impact\": {\n        \"id\": 32,\n        \"edname\": \"special_inertial_impact\",\n        \"name\": \"Inertial impact\",\n        \"uuid\": \"6eda22d3-8049-4bab-a125-762b12fa576a\"\n    },\n    \"special_ion_disruptor\": {\n        \"id\": 13,\n        \"edname\": \"special_ion_disruptor\",\n        \"name\": \"Ion disruptor\",\n        \"uuid\": \"d84e40ca-afc1-4b01-9940-034152d288e7\"\n    },\n    \"special_mass_lock_munition\": {\n        \"id\": 14,\n        \"edname\": \"special_mass_lock_munition\",\n        \"name\": \"Mass lock munition\",\n        \"uuid\": \"8565714f-912d-488b-82fb-43911504a300\"\n    },\n    \"special_overload_munitions\": {\n        \"id\": 15,\n        \"edname\": \"special_overload_munitions\",\n        \"name\": \"Overload munitions\",\n        \"uuid\": \"c157bbd1-a14d-4aa2-9081-94cbfbdee558\"\n    },\n    \"special_penetrator_payload\": {\n        \"id\": 16,\n        \"edname\": \"special_penetrator_payload\",\n        \"name\": \"Penetrator payload\",\n        \"uuid\": \"39e3bb85-e349-434b-b9fe-7fd02ee57f3d\"\n    },\n    \"special_phasing_sequence\": {\n        \"id\": 17,\n        \"edname\": \"special_phasing_sequence\",\n        \"name\": \"Phasing sequence\",\n        \"uuid\": \"47254ea9-c88f-43e0-9166-d1796649917b\"\n    },\n    \"special_plasma_slug\": {\n        \"id\": 18,\n        \"edname\": \"special_plasma_slug\",\n        \"name\": \"Plasma slug (Legacy)\",\n        \"uuid\": \"8794e18a-ecd5-4ebc-afd7-0b7d0d0cdd91\"\n    },\n    \"special_radiant_canister\": {\n        \"id\": 19,\n        \"edname\": \"special_radiant_canister\",\n        \"name\": \"Radiant Canister\",\n        \"uuid\": \"51f84837-e9a5-432c-a125-d4322099266c\"\n    },\n    \"special_regeneration_sequence\": {\n        \"id\": 20,\n        \"edname\": \"special_regeneration_sequence\",\n        \"name\": \"Regeneration sequence\",\n        \"uuid\": \"3bece1bb-7c31-4735-8c18-54dc4a0057bc\"\n    },\n    \"special_reverberating_cascade\": {\n        \"id\": 21,\n        \"edname\": \"special_reverberating_cascade\",\n        \"name\": \"Reverberating cascade\",\n        \"uuid\": \"c03e2f4f-9520-44bb-9a1f-7a917e8e3a48\"\n    },\n    \"special_scramble_spectrum\": {\n        \"id\": 22,\n        \"edname\": \"special_scramble_spectrum\",\n        \"name\": \"Scramble spectrum\",\n        \"uuid\": \"4f42cb92-4440-4295-ada9-fcca788a65b8\"\n    },\n    \"special_screening_shell\": {\n        \"id\": 23,\n        \"edname\": \"special_screening_shell\",\n        \"name\": \"Screening shell\",\n        \"uuid\": \"9cf533fc-ccb1-4c92-8b6b-dd700af2988a\"\n    },\n    \"special_shiftlock_canister\": {\n        \"id\": 24,\n        \"edname\": \"special_shiftlock_canister\",\n        \"name\": \"Shift-lock canister\",\n        \"uuid\": \"1f7b0deb-e023-43e5-96f6-ebf60d683e8b\"\n    },\n    \"special_smart_rounds\": {\n        \"id\": 25,\n        \"edname\": \"special_smart_rounds\",\n        \"name\": \"Smart rounds\",\n        \"uuid\": \"2a3d8519-27af-44f2-a50b-33095964d1cc\"\n    },\n    \"special_super_penetrator\": {\n        \"id\": 26,\n        \"edname\": \"special_super_penetrator\",\n        \"name\": \"Super penetrator (Legacy)\",\n        \"uuid\": \"2423e8f7-2384-4d32-8b9d-0e06a42a301d\"\n    },\n    \"special_lock_breaker\": {\n        \"id\": 27,\n        \"edname\": \"special_lock_breaker\",\n        \"name\": \"Target lock breaker\",\n        \"uuid\": \"4cf42ed8-574f-4bb8-a1f2-ee154475b463\"\n    },\n    \"special_thermal_cascade\": {\n        \"id\": 28,\n        \"edname\": \"special_thermal_cascade\",\n        \"name\": \"Thermal cascade\",\n        \"uuid\": \"e5c8cab4-7a2f-450d-a937-2d0d8b9e3714\"\n    },\n    \"special_thermal_conduit\": {\n        \"id\": 29,\n        \"edname\": \"special_thermal_conduit\",\n        \"name\": \"Thermal conduit\",\n        \"uuid\": \"4e4e1f59-6762-47ff-b1fa-40ca43304698\"\n    },\n    \"special_thermal_vent\": {\n        \"id\": 30,\n        \"edname\": \"special_thermal_vent\",\n        \"name\": \"Thermal vent\",\n        \"uuid\": \"70f11414-7904-405c-92db-806178ee9df4\"\n    },\n    \"special_thermalshock\": {\n        \"id\": 31,\n        \"edname\": \"special_thermalshock\",\n        \"name\": \"Thermal shock\",\n        \"uuid\": \"fe8b4daa-e65d-464c-811d-400d3632a3d6\"\n    },\n    \"special_feedback_cascade_cooled\": {\n        \"name\": \"Feedback Cascade\",\n        \"id\": 100,\n        \"edname\": \"special_feedback_cascade_cooled\",\n        \"uuid\": \"3c153755-3d2c-4832-bb73-d6b3d0e99a71\"\n    },\n    \"special_super_penetrator_cooled\": {\n        \"name\": \"Super Penetrator\",\n        \"id\": 101,\n        \"edname\": \"special_super_penetrator_cooled\",\n        \"uuid\": \"4bb4ec50-40fb-473d-abaf-4fc386aa889c\"\n    },\n    \"special_plasma_slug_cooled\": {\n        \"name\": \"Plasma Slug\",\n        \"id\": 102,\n        \"edname\": \"special_plasma_slug_cooled\",\n        \"uuid\": \"58a7b1b6-57b9-40f2-9a5a-712a5388a5eb\"\n    },\n    \"special_plasma_slug_pa\": {\n        \"name\": \"Plasma Slug\",\n        \"id\": 157,\n        \"edname\": \"special_plasma_slug_pa\"\n    },\n    \"special_penetrator_munitions\": {\n        \"name\": \"Penetrator Munitions\",\n        \"id\": 103,\n        \"edname\": \"special_penetrator_munitions\",\n        \"uuid\": \"35578402-1bc7-4d19-828b-af31ebd79866\"\n    },\n    \"special_deep_cut_payload\": {\n        \"name\": \"Penetrator Payload\",\n        \"id\": 104,\n        \"edname\": \"special_deep_cut_payload\",\n        \"uuid\": \"5d25c5bc-4b45-4119-bd87-71bfd0f85957\"\n    },\n    \"special_mass_lock\": {\n        \"name\": \"Mass Lock Munition\",\n        \"id\": 105,\n        \"edname\": \"special_mass_lock\",\n        \"uuid\": \"9e8635af-4077-4d7a-98dd-5220c8722688\"\n    },\n    \"special_shield_regenerative\": {\n        \"name\": \"Fast Charge\",\n        \"id\": 106,\n        \"edname\": \"special_shield_regenerative\",\n        \"uuid\": \"42c5e92d-ccab-435a-b2c6-fd268d39d6f5\"\n    },\n    \"special_shield_resistive\": {\n        \"name\": \"Multi-weave\",\n        \"id\": 107,\n        \"edname\": \"special_shield_resistive\",\n        \"uuid\": \"dd46c8be-730c-4671-87fe-f98b181b66cf\"\n    },\n    \"special_shield_health\": {\n        \"name\": \"Hi-Cap\",\n        \"id\": 108,\n        \"edname\": \"special_shield_health\",\n        \"uuid\": \"603c1ba6-45e6-4401-af56-639c3e7c9b79\"\n    },\n    \"special_shield_efficient\": {\n        \"name\": \"Lo-draw\",\n        \"id\": 109,\n        \"edname\": \"special_shield_efficient\",\n        \"uuid\": \"66a39288-59d7-4cfb-914d-354a200c0210\"\n    },\n    \"special_shield_thermic\": {\n        \"name\": \"Thermo Block\",\n        \"id\": 110,\n        \"edname\": \"special_shield_thermic\",\n        \"uuid\": \"c7636c6b-5849-4cad-bd8e-d99968d4014e\"\n    },\n    \"special_shield_kinetic\": {\n        \"name\": \"Force Block\",\n        \"id\": 111,\n        \"edname\": \"special_shield_kinetic\",\n        \"uuid\": \"3f9e7ca8-7e07-46c4-ad06-cf3787352201\"\n    },\n    \"special_shield_toughened\": {\n        \"name\": \"Double Braced\",\n        \"id\": 112,\n        \"edname\": \"special_shield_toughened\",\n        \"uuid\": \"d7d8433c-445c-4d8e-b4a4-3bd78cba9d15\"\n    },\n    \"special_shield_lightweight\": {\n        \"name\": \"Stripped Down\",\n        \"id\": 113,\n        \"edname\": \"special_shield_lightweight\",\n        \"uuid\": \"91ff72db-51cf-428d-80a8-be96d6418c4b\"\n    },\n    \"special_engine_cooled\": {\n        \"name\": \"Thermal Spread\",\n        \"id\": 114,\n        \"edname\": \"special_engine_cooled\",\n        \"uuid\": \"42ff1374-3ecb-4872-abfa-b39b495fb203\"\n    },\n    \"special_engine_haulage\": {\n        \"name\": \"Drive Distributors\",\n        \"id\": 115,\n        \"edname\": \"special_engine_haulage\",\n        \"uuid\": \"bd3c1991-370e-4b9d-b8cd-d5dec3260647\"\n    },\n    \"special_engine_overloaded\": {\n        \"name\": \"Drag Drives\",\n        \"id\": 116,\n        \"edname\": \"special_engine_overloaded\",\n        \"uuid\": \"68998b16-7b65-4f58-8bc0-6e0f2686c367\"\n    },\n    \"special_engine_toughened\": {\n        \"name\": \"Double Braced\",\n        \"id\": 117,\n        \"edname\": \"special_engine_toughened\",\n        \"uuid\": \"41b04d96-0817-479b-92e5-2114de444170\"\n    },\n    \"special_engine_lightweight\": {\n        \"name\": \"Stripped Down\",\n        \"id\": 118,\n        \"edname\": \"special_engine_lightweight\",\n        \"uuid\": \"dd77b197-412e-4ca1-88ed-0939c5c31a01\"\n    },\n    \"special_fsd_fuelcapacity\": {\n        \"name\": \"Deep Charge\",\n        \"id\": 119,\n        \"edname\": \"special_fsd_fuelcapacity\",\n        \"uuid\": \"56f1e58d-2044-4a31-8b54-ad0f99dfd64e\"\n    },\n    \"special_fsd_heavy\": {\n        \"name\": \"Mass Manager\",\n        \"id\": 120,\n        \"edname\": \"special_fsd_heavy\",\n        \"uuid\": \"4d7d30c3-970b-4c6e-a507-89ac7e6441bd\"\n    },\n    \"special_fsd_toughened\": {\n        \"name\": \"Double Braced\",\n        \"id\": 121,\n        \"edname\": \"special_fsd_toughened\",\n        \"uuid\": \"14c7f016-5c32-4599-8a27-caa1733f92e3\"\n    },\n    \"special_fsd_lightweight\": {\n        \"name\": \"Stripped Down\",\n        \"id\": 122,\n        \"edname\": \"special_fsd_lightweight\",\n        \"uuid\": \"6ab9d9d4-d488-4de8-9c1b-089a31f290a0\"\n    },\n    \"special_fsd_cooled\": {\n        \"name\": \"Thermal Spread\",\n        \"id\": 123,\n        \"edname\": \"special_fsd_cooled\",\n        \"uuid\": \"60ab0728-c8cd-47c9-a357-8c8bfeeb7023\"\n    },\n    \"special_powerplant_highcharge\": {\n        \"name\": \"Monstered\",\n        \"id\": 124,\n        \"edname\": \"special_powerplant_highcharge\",\n        \"uuid\": \"12a57a09-0e05-41a9-9824-14a3618e7a0f\"\n    },\n    \"special_powerplant_cooled\": {\n        \"name\": \"Thermal Spread\",\n        \"id\": 125,\n        \"edname\": \"special_powerplant_cooled\",\n        \"uuid\": \"6cda2960-a05b-4dd1-978c-202d746e47bc\"\n    },\n    \"special_powerplant_toughened\": {\n        \"name\": \"Double Braced\",\n        \"id\": 126,\n        \"edname\": \"special_powerplant_toughened\",\n        \"uuid\": \"1fddaba5-bc0b-492c-9caa-4a72a149532b\"\n    },\n    \"special_powerplant_lightweight\": {\n        \"name\": \"Stripped Down\",\n        \"id\": 127,\n        \"edname\": \"special_powerplant_lightweight\",\n        \"uuid\": \"11b258eb-36d1-4cbc-be04-7fc426ef3121\"\n    },\n    \"special_powerdistributor_capacity\": {\n        \"name\": \"Cluster Capacitors\",\n        \"id\": 128,\n        \"edname\": \"special_powerdistributor_capacity\",\n        \"uuid\": \"c4231886-f988-4a31-a749-2a58550f9e44\"\n    },\n    \"special_powerdistributor_fast\": {\n        \"name\": \"Super Conduits\",\n        \"id\": 129,\n        \"edname\": \"special_powerdistributor_fast\",\n        \"uuid\": \"b5bb35a1-e851-4d37-8f26-8fe828f84c95\"\n    },\n    \"special_powerdistributor_efficient\": {\n        \"name\": \"Flow Control\",\n        \"id\": 130,\n        \"edname\": \"special_powerdistributor_efficient\",\n        \"uuid\": \"c226afaf-ee7f-4809-a4e4-0797d4822a69\"\n    },\n    \"special_powerdistributor_toughened\": {\n        \"name\": \"Double Braced\",\n        \"id\": 131,\n        \"edname\": \"special_powerdistributor_toughened\",\n        \"uuid\": \"14d36c9b-efd5-450b-8175-80287daecd78\"\n    },\n    \"special_powerdistributor_lightweight\": {\n        \"name\": \"Stripped Down\",\n        \"id\": 132,\n        \"edname\": \"special_powerdistributor_lightweight\",\n        \"uuid\": \"ec53deaf-ece6-443f-9503-dd3dc5329e14\"\n    },\n    \"special_shieldcell_gradual\": {\n        \"name\": \"Recycling Cell\",\n        \"id\": 133,\n        \"edname\": \"special_shieldcell_gradual\",\n        \"uuid\": \"c8aa2134-3153-47b8-a367-9c5dbb9c557d\"\n    },\n    \"special_shieldcell_oversized\": {\n        \"name\": \"Boss Cells\",\n        \"id\": 134,\n        \"edname\": \"special_shieldcell_oversized\",\n        \"uuid\": \"87ed0cec-9624-4ecb-8ffb-cc941464e8d2\"\n    },\n    \"special_shieldcell_efficient\": {\n        \"name\": \"Flow Control\",\n        \"id\": 135,\n        \"edname\": \"special_shieldcell_efficient\",\n        \"uuid\": \"1d2316b8-3ddb-4db4-b36f-2d3e0e8581b5\"\n    },\n    \"special_shieldcell_toughened\": {\n        \"name\": \"Double Braced\",\n        \"id\": 136,\n        \"edname\": \"special_shieldcell_toughened\",\n        \"uuid\": \"beecd33b-b171-4a08-9d5a-459266bcb275\"\n    },\n    \"special_shieldcell_lightweight\": {\n        \"name\": \"Stripped Down\",\n        \"id\": 137,\n        \"edname\": \"special_shieldcell_lightweight\",\n        \"uuid\": \"b92c2e2e-baa5-4ce9-bf60-05771d7dcbc1\"\n    },\n    \"special_weapon_damage\": {\n        \"name\": \"Oversized\",\n        \"id\": 138,\n        \"edname\": \"special_weapon_damage\",\n        \"uuid\": \"ceb5c729-4565-4869-ade8-5ee897e8b410\"\n    },\n    \"special_weapon_rateoffire\": {\n        \"name\": \"Multi-servos\",\n        \"id\": 139,\n        \"edname\": \"special_weapon_rateoffire\",\n        \"uuid\": \"fd62292f-f5ed-4728-bc8a-3ae215ced386\"\n    },\n    \"special_weapon_efficient\": {\n        \"name\": \"Flow Control\",\n        \"id\": 140,\n        \"edname\": \"special_weapon_efficient\",\n        \"uuid\": \"d7ae7537-52ce-402a-b997-1cc463d8c7d0\"\n    },\n    \"special_weapon_toughened\": {\n        \"name\": \"Double Braced\",\n        \"id\": 141,\n        \"edname\": \"special_weapon_toughened\",\n        \"uuid\": \"167892c7-c4bd-411e-af8a-5bb464beec29\"\n    },\n    \"special_weapon_lightweight\": {\n        \"name\": \"Stripped Down\",\n        \"id\": 142,\n        \"edname\": \"special_weapon_lightweight\",\n        \"uuid\": \"dfc22aad-48b8-4f8d-af16-ec3b978fc8b6\"\n    },\n    \"special_armour_thermic\": {\n        \"name\": \"Reflective Plating\",\n        \"id\": 143,\n        \"edname\": \"special_armour_thermic\",\n        \"uuid\": \"dfe731fd-b709-4bbb-989b-5190bba4aa0e\"\n    },\n    \"special_armour_kinetic\": {\n        \"name\": \"Angled Plating\",\n        \"id\": 144,\n        \"edname\": \"special_armour_kinetic\",\n        \"uuid\": \"4803f4b3-f8ac-44a6-a6da-8d4c94aee048\"\n    },\n    \"special_armour_explosive\": {\n        \"name\": \"Layered Plating\",\n        \"id\": 145,\n        \"edname\": \"special_armour_explosive\",\n        \"uuid\": \"2af2d71c-b511-49a0-a605-22cfce862a63\"\n    },\n    \"special_armour_chunky\": {\n        \"name\": \"Deep Plating\",\n        \"id\": 146,\n        \"edname\": \"special_armour_chunky\",\n        \"uuid\": \"c4318e14-d50c-49ff-984f-bacae4aaa334\"\n    },\n    \"special_hullreinforcement_thermic\": {\n        \"name\": \"Reflective Plating\",\n        \"id\": 147,\n        \"edname\": \"special_hullreinforcement_thermic\",\n        \"uuid\": \"6c88aa33-01db-4eda-928e-6ca8b9b1bc3d\"\n    },\n    \"special_hullreinforcement_kinetic\": {\n        \"name\": \"Angled Plating\",\n        \"id\": 148,\n        \"edname\": \"special_hullreinforcement_kinetic\",\n        \"uuid\": \"e8631809-2915-4373-905c-8dcf3bda6921\"\n    },\n    \"special_hullreinforcement_explosive\": {\n        \"name\": \"Layered Plating\",\n        \"id\": 149,\n        \"edname\": \"special_hullreinforcement_explosive\",\n        \"uuid\": \"cdd19fcc-74b4-463a-a8f1-2e9909da664f\"\n    },\n    \"special_hullreinforcement_chunky\": {\n        \"name\": \"Deep Plating\",\n        \"id\": 150,\n        \"edname\": \"special_hullreinforcement_chunky\",\n        \"uuid\": \"b51706cc-d412-4559-8654-f812d2eb44b9\"\n    },\n    \"special_shieldbooster_thermic\": {\n        \"name\": \"Thermo Block\",\n        \"id\": 151,\n        \"edname\": \"special_shieldbooster_thermic\",\n        \"uuid\": \"c3340df8-c6da-49c9-b236-8f1cc4209088\"\n    },\n    \"special_shieldbooster_kinetic\": {\n        \"name\": \"Force Block\",\n        \"id\": 152,\n        \"edname\": \"special_shieldbooster_kinetic\",\n        \"uuid\": \"cb95d9b4-a945-491d-95ad-e230c0454cd9\"\n    },\n    \"special_shieldbooster_explosive\": {\n        \"name\": \"Blast Block\",\n        \"id\": 153,\n        \"edname\": \"special_shieldbooster_explosive\",\n        \"uuid\": \"eb1c4a92-03ef-4263-8051-9ac91b2d43b2\"\n    },\n    \"special_shieldbooster_efficient\": {\n        \"name\": \"Flow Control\",\n        \"id\": 154,\n        \"edname\": \"special_shieldbooster_efficient\",\n        \"uuid\": \"441e1d85-5174-4172-85ea-caee8d3c632d\"\n    },\n    \"special_shieldbooster_toughened\": {\n        \"name\": \"Double Braced\",\n        \"id\": 155,\n        \"edname\": \"special_shieldbooster_toughened\",\n        \"uuid\": \"32cb80c0-bb11-49ea-ae21-4c94eb5f9195\"\n    },\n    \"special_shieldbooster_chunky\": {\n        \"name\": \"Super Capacitors\",\n        \"id\": 156,\n        \"edname\": \"special_shieldbooster_chunky\",\n        \"uuid\": \"4197c308-a3df-442a-91c2-db856b4f57cf\"\n    }\n}"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/hardpoints/abrasion_blaster.json",
    "content": "{\n  \"abl\": [\n    {\n      \"breachdmg\": 0.6,\n      \"breachmax\": 0.2,\n      \"shotspeed\": 667,\n      \"breachmin\": 0.1,\n      \"class\": 1,\n      \"cost\": 9700,\n      \"damage\": 4,\n      \"chargetime\": 0,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 2,\n      \"edID\": 128915458,\n      \"eddbID\": 823,\n      \"falloff\": 1000,\n      \"fireint\": 0.2,\n      \"clip\": 1,\n      \"grp\": \"abl\",\n      \"id\": \"3R\",\n      \"reload\": 2,\n      \"integrity\": 40,\n      \"mass\": 2,\n      \"mount\": \"F\",\n      \"piercing\": 18,\n      \"power\": 0.34,\n      \"range\": 1000,\n      \"rating\": \"D\",\n      \"thermload\": 1.8,\n      \"symbol\": \"Hpt_Mining_AbrBlstr_Fixed_Small\"\n    },\n    {\n      \"breachdmg\": 0.6,\n      \"breachmax\": 0.2,\n      \"shotspeed\": 667,\n      \"breachmin\": 0.1,\n      \"class\": 1,\n      \"cost\": 27480,\n      \"damage\": 4,\n      \"chargetime\": 0,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 2,\n      \"edID\": 128915459,\n      \"eddbID\": 823,\n      \"falloff\": 1000,\n      \"fireint\": 0.2,\n      \"clip\": 1,\n      \"grp\": \"abl\",\n      \"id\": \"3S\",\n      \"reload\": 2,\n      \"integrity\": 40,\n      \"mass\": 2,\n      \"mount\": \"T\",\n      \"piercing\": 18,\n      \"power\": 0.47,\n      \"range\": 1000,\n      \"rating\": \"D\",\n      \"thermload\": 1.8,\n      \"symbol\": \"Hpt_Mining_Abrblstr_Turret_Small\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/hardpoints/ax_missile_rack.json",
    "content": "{\n  \"axmr\": [\n    {\n      \"experimental\": true,\n      \"ammo\": 64,\n      \"breachdmg\": 0.1,\n      \"breachmax\": 0.8,\n      \"breachmin\": 1,\n      \"class\": 2,\n      \"clip\": 8,\n      \"cost\": 540900,\n      \"damage\": 64,\n      \"damagedist\": {\n        \"X\": 1,\n        \"E\": 1\n      },\n      \"distdraw\": 0.14,\n      \"edID\": 128788699,\n      \"eddbID\": 1614,\n      \"falloff\": 10000,\n      \"fireint\": 2.0,\n      \"grp\": \"axmr\",\n      \"id\": \"x4\",\n      \"integrity\": 51,\n      \"mass\": 4,\n      \"missile\": \"D\",\n      \"mount\": \"F\",\n      \"piercing\": 60,\n      \"power\": 1.2,\n      \"rating\": \"B\",\n      \"reload\": 5,\n      \"shotspeed\": 750,\n      \"thermload\": 2.4,\n      \"symbol\": \"Hpt_ATDumbfireMissile_Fixed_Medium\"\n    },\n    {\n      \"experimental\": true,\n      \"ammo\": 64,\n      \"breachdmg\": 0.1,\n      \"breachmax\": 0.8,\n      \"breachmin\": 1,\n      \"class\": 2,\n      \"clip\": 8,\n      \"cost\": 2022700,\n      \"damage\": 50,\n      \"damagedist\": {\n        \"X\": 1,\n        \"E\": 1\n      },\n      \"distdraw\": 0.08,\n      \"edID\": 128788704,\n      \"eddbID\": 1615,\n      \"falloff\": 10000,\n      \"fireint\": 2.0,\n      \"grp\": \"axmr\",\n      \"id\": \"x5\",\n      \"integrity\": 51,\n      \"mass\": 4,\n      \"missile\": \"D\",\n      \"mount\": \"T\",\n      \"piercing\": 60,\n      \"power\": 1.2,\n      \"rating\": \"B\",\n      \"reload\": 5,\n      \"shotspeed\": 750,\n      \"thermload\": 1.5,\n      \"symbol\": \"Hpt_ATDumbfireMissile_Turret_Medium\"\n    },\n    {\n      \"experimental\": true,\n      \"ammo\": 128,\n      \"breachdmg\": 0.1,\n      \"breachmax\": 0.8,\n      \"breachmin\": 1,\n      \"class\": 3,\n      \"clip\": 12,\n      \"cost\": 1352250,\n      \"damage\": 64,\n      \"damagedist\": {\n        \"X\": 1,\n        \"E\": 1\n      },\n      \"distdraw\": 0.24,\n      \"edID\": 128788700,\n      \"eddbID\": 1623,\n      \"falloff\": 10000,\n      \"fireint\": 2.0,\n      \"grp\": \"axmr\",\n      \"id\": \"x6\",\n      \"integrity\": 64,\n      \"mass\": 8,\n      \"missile\": \"D\",\n      \"mount\": \"F\",\n      \"piercing\": 60,\n      \"power\": 1.62,\n      \"rating\": \"A\",\n      \"reload\": 5,\n      \"shotspeed\": 750,\n      \"thermload\": 3.6,\n      \"symbol\": \"Hpt_ATDumbfireMissile_Fixed_Large\"\n    },\n    {\n      \"experimental\": true,\n      \"ammo\": 128,\n      \"breachdmg\": 0.1,\n      \"breachmax\": 0.8,\n      \"breachmin\": 1,\n      \"class\": 3,\n      \"clip\": 12,\n      \"cost\": 4056750,\n      \"damage\": 64,\n      \"damagedist\": {\n        \"X\": 1,\n        \"E\": 1\n      },\n      \"distdraw\": 0.14,\n      \"edID\": 128788705,\n      \"eddbID\": 1624,\n      \"falloff\": 10000,\n      \"fireint\": 2.0,\n      \"grp\": \"axmr\",\n      \"id\": \"x7\",\n      \"integrity\": 64,\n      \"mass\": 8,\n      \"missile\": \"D\",\n      \"mount\": \"T\",\n      \"piercing\": 60,\n      \"power\": 1.75,\n      \"rating\": \"A\",\n      \"reload\": 5,\n      \"shotspeed\": 750,\n      \"thermload\": 1.9,\n      \"symbol\": \"Hpt_ATDumbfireMissile_Turret_Large\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/hardpoints/ax_multi_cannon.json",
    "content": "{\n  \"axmc\": [\n    {\n      \"experimental\": true,\n      \"ammo\": 2100,\n      \"breachdmg\": 2.8,\n      \"breachmax\": 0.5,\n      \"breachmin\": 0.8,\n      \"class\": 2,\n      \"clip\": 100,\n      \"cost\": 379000,\n      \"damage\": 3.3,\n      \"damagedist\": {\n        \"X\": 1,\n        \"K\": 1\n      },\n      \"experimental\": true,\n      \"distdraw\": 0.11,\n      \"edID\": 128788701,\n      \"eddbID\": 1618,\n      \"falloff\": 2000,\n      \"fireint\": 0.14,\n      \"grp\": \"axmc\",\n      \"id\": \"x0\",\n      \"integrity\": 51,\n      \"mass\": 4,\n      \"mount\": \"F\",\n      \"piercing\": 17,\n      \"power\": 0.46,\n      \"range\": 4000,\n      \"rating\": \"E\",\n      \"reload\": 4,\n      \"shotspeed\": 1600,\n      \"thermload\": 0.2,\n      \"symbol\": \"Hpt_ATMultiCannon_Fixed_Medium\"\n    },\n    {\n      \"experimental\": true,\n      \"ammo\": 2100,\n      \"breachdmg\": 0.4,\n      \"breachmax\": 0.5,\n      \"breachmin\": 0.5,\n      \"class\": 2,\n      \"clip\": 90,\n      \"cost\": 1826500,\n      \"damage\": 1.7,\n      \"damagedist\": {\n        \"X\": 1,\n        \"K\": 1\n      },\n      \"distdraw\": 0.06,\n      \"edID\": 128793059,\n      \"eddbID\": 1619,\n      \"falloff\": 2000,\n      \"fireint\": 0.16,\n      \"grp\": \"axmc\",\n      \"id\": \"x1\",\n      \"integrity\": 51,\n      \"mass\": 4,\n      \"mount\": \"T\",\n      \"piercing\": 17,\n      \"power\": 0.5,\n      \"range\": 4000,\n      \"rating\": \"F\",\n      \"reload\": 4,\n      \"shotspeed\": 1600,\n      \"thermload\": 0.1,\n      \"symbol\": \"Hpt_ATMultiCannon_Turret_Medium\"\n    },\n    {\n      \"experimental\": true,\n      \"ammo\": 2100,\n      \"breachdmg\": 5.2,\n      \"breachmax\": 0.5,\n      \"breachmin\": 0.8,\n      \"class\": 3,\n      \"clip\": 100,\n      \"cost\": 1181500,\n      \"damage\": 6.1,\n      \"damagedist\": {\n        \"X\": 1,\n        \"K\": 1\n      },\n      \"distdraw\": 0.18,\n      \"edID\": 128788702,\n      \"eddbID\": 1625,\n      \"falloff\": 2000,\n      \"fireint\": 0.17,\n      \"grp\": \"axmc\",\n      \"id\": \"x2\",\n      \"integrity\": 64,\n      \"mass\": 8,\n      \"mount\": \"F\",\n      \"piercing\": 33,\n      \"power\": 0.64,\n      \"range\": 4000,\n      \"rating\": \"C\",\n      \"reload\": 4,\n      \"shotspeed\": 1600,\n      \"thermload\": 0.3,\n      \"symbol\": \"Hpt_ATMultiCannon_Fixed_Large\"\n    },\n    {\n      \"experimental\": true,\n      \"ammo\": 2100,\n      \"breachdmg\": 0.8,\n      \"breachmax\": 0.5,\n      \"breachmin\": 0.5,\n      \"class\": 3,\n      \"clip\": 90,\n      \"cost\": 3821600,\n      \"damage\": 3.3,\n      \"damagedist\": {\n        \"X\": 1,\n        \"K\": 1\n      },\n      \"distdraw\": 0.06,\n      \"edID\": 128793060,\n      \"eddbID\": 1626,\n      \"falloff\": 2000,\n      \"fireint\": 0.16,\n      \"grp\": \"axmc\",\n      \"id\": \"x3\",\n      \"integrity\": 64,\n      \"mass\": 8,\n      \"mount\": \"T\",\n      \"piercing\": 33,\n      \"power\": 0.64,\n      \"range\": 4000,\n      \"rating\": \"E\",\n      \"reload\": 4,\n      \"shotspeed\": 1600,\n      \"thermload\": 0.1,\n      \"symbol\": \"Hpt_ATMultiCannon_Turret_Large\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/hardpoints/beam_laser.json",
    "content": "{\n  \"bl\": [\n    {\n      \"breachdmg\": 7.9,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 1,\n      \"cost\": 37430,\n      \"damage\": 9.8,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 1.94,\n      \"edID\": 128049428,\n      \"eddbID\": 841,\n      \"falloff\": 600,\n      \"grp\": \"bl\",\n      \"id\": \"10\",\n      \"integrity\": 40,\n      \"mass\": 2,\n      \"mount\": \"F\",\n      \"piercing\": 18,\n      \"power\": 0.62,\n      \"range\": 3000,\n      \"rating\": \"E\",\n      \"thermload\": 3.5,\n      \"symbol\": \"Hpt_BeamLaser_Fixed_Small\"\n    },\n    {\n      \"breachdmg\": 6.1,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 1,\n      \"cost\": 74650,\n      \"damage\": 7.66,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 2.11,\n      \"edID\": 128049432,\n      \"eddbID\": 844,\n      \"falloff\": 600,\n      \"grp\": \"bl\",\n      \"id\": \"0p\",\n      \"integrity\": 40,\n      \"mass\": 2,\n      \"mount\": \"G\",\n      \"piercing\": 18,\n      \"power\": 0.6,\n      \"range\": 3000,\n      \"rating\": \"E\",\n      \"thermload\": 3.6,\n      \"symbol\": \"Hpt_BeamLaser_Gimbal_Small\"\n    },\n    {\n      \"breachdmg\": 4.3,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 1,\n      \"cost\": 500000,\n      \"damage\": 5.4,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 1.32,\n      \"edID\": 128049435,\n      \"eddbID\": 847,\n      \"falloff\": 600,\n      \"eps\": 1.32,\n      \"grp\": \"bl\",\n      \"hps\": 2.4,\n      \"id\": \"0q\",\n      \"integrity\": 40,\n      \"mass\": 2,\n      \"mount\": \"T\",\n      \"piercing\": 18,\n      \"power\": 0.57,\n      \"range\": 3000,\n      \"rating\": \"F\",\n      \"thermload\": 2.4,\n      \"symbol\": \"Hpt_BeamLaser_Turret_Small\"\n    },\n    {\n      \"breachdmg\": 3.9,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 1,\n      \"cost\": 56150,\n      \"damage\": 4.9,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 2.52,\n      \"edID\": 128671346,\n      \"eddbID\": 1476,\n      \"falloff\": 600,\n      \"grp\": \"bl\",\n      \"id\": \"b0\",\n      \"integrity\": 40,\n      \"mass\": 2,\n      \"mount\": \"F\",\n      \"name\": \"Retributor\",\n      \"piercing\": 18,\n      \"power\": 0.62,\n      \"pp\": \"Edmund Mahon\",\n      \"range\": 3000,\n      \"rating\": \"E\",\n      \"thermload\": 2.7,\n      \"symbol\": \"Hpt_BeamLaser_Fixed_Small_Heat\"\n    },\n    {\n      \"breachdmg\": 12.8,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 2,\n      \"cost\": 299520,\n      \"damage\": 15.96,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 3.16,\n      \"edID\": 128049429,\n      \"eddbID\": 842,\n      \"falloff\": 600,\n      \"grp\": \"bl\",\n      \"id\": \"0r\",\n      \"integrity\": 51,\n      \"mass\": 4,\n      \"mount\": \"F\",\n      \"piercing\": 35,\n      \"power\": 1.01,\n      \"range\": 3000,\n      \"rating\": \"D\",\n      \"thermload\": 5.1,\n      \"symbol\": \"Hpt_BeamLaser_Fixed_Medium\"\n    },\n    {\n      \"breachdmg\": 10,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 2,\n      \"cost\": 500600,\n      \"damage\": 12.52,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 3.44,\n      \"edID\": 128049433,\n      \"eddbID\": 845,\n      \"falloff\": 600,\n      \"grp\": \"bl\",\n      \"id\": \"0s\",\n      \"integrity\": 51,\n      \"mass\": 4,\n      \"mount\": \"G\",\n      \"piercing\": 35,\n      \"power\": 1,\n      \"range\": 3000,\n      \"rating\": \"D\",\n      \"thermload\": 5.3,\n      \"symbol\": \"Hpt_BeamLaser_Gimbal_Medium\"\n    },\n    {\n      \"breachdmg\": 7.1,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 2,\n      \"cost\": 2099900,\n      \"damage\": 8.82,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 2.16,\n      \"edID\": 128049436,\n      \"eddbID\": 848,\n      \"falloff\": 600,\n      \"grp\": \"bl\",\n      \"id\": \"0t\",\n      \"integrity\": 51,\n      \"mass\": 4,\n      \"mount\": \"T\",\n      \"piercing\": 35,\n      \"power\": 0.93,\n      \"range\": 3000,\n      \"rating\": \"E\",\n      \"thermload\": 3.5,\n      \"symbol\": \"Hpt_BeamLaser_Turret_Medium\"\n    },\n    {\n      \"breachdmg\": 20.6,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 3,\n      \"cost\": 1177600,\n      \"damage\": 25.78,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 5.1,\n      \"edID\": 128049430,\n      \"eddbID\": 843,\n      \"falloff\": 600,\n      \"grp\": \"bl\",\n      \"id\": \"0u\",\n      \"integrity\": 64,\n      \"mass\": 8,\n      \"mount\": \"F\",\n      \"piercing\": 50,\n      \"power\": 1.62,\n      \"range\": 3000,\n      \"rating\": \"C\",\n      \"thermload\": 7.2,\n      \"symbol\": \"Hpt_BeamLaser_Fixed_Large\"\n    },\n    {\n      \"breachdmg\": 16.2,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 3,\n      \"cost\": 2396160,\n      \"damage\": 20.28,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 5.58,\n      \"edID\": 128049434,\n      \"eddbID\": 846,\n      \"falloff\": 600,\n      \"grp\": \"bl\",\n      \"id\": \"0v\",\n      \"integrity\": 64,\n      \"mass\": 8,\n      \"mount\": \"G\",\n      \"piercing\": 50,\n      \"power\": 1.6,\n      \"range\": 3000,\n      \"rating\": \"C\",\n      \"thermload\": 7.6,\n      \"symbol\": \"Hpt_BeamLaser_Gimbal_Large\"\n    },\n    {\n      \"breachdmg\": 11.5,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 3,\n      \"cost\": 19399600,\n      \"damage\": 14.34,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 3.51,\n      \"edID\": 128049437,\n      \"eddbID\": 849,\n      \"falloff\": 600,\n      \"grp\": \"bl\",\n      \"id\": \"0o\",\n      \"integrity\": 64,\n      \"mass\": 8,\n      \"mount\": \"T\",\n      \"piercing\": 50,\n      \"power\": 1.51,\n      \"range\": 3000,\n      \"rating\": \"D\",\n      \"thermload\": 5.1,\n      \"symbol\": \"Hpt_BeamLaser_Turret_Large\"\n    },\n    {\n      \"breachdmg\": 33.1,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 4,\n      \"cost\": 2396160,\n      \"damage\": 41.38,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 8.19,\n      \"edID\": 128049431,\n      \"eddbID\": 1540,\n      \"falloff\": 600,\n      \"grp\": \"bl\",\n      \"id\": \"0w\",\n      \"integrity\": 80,\n      \"mass\": 16,\n      \"mount\": \"F\",\n      \"piercing\": 60,\n      \"power\": 2.61,\n      \"range\": 3000,\n      \"rating\": \"A\",\n      \"thermload\": 9.9,\n      \"symbol\": \"Hpt_BeamLaser_Fixed_Huge\"\n    },\n    {\n      \"breachdmg\": 26.1,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 4,\n      \"cost\": 8746160,\n      \"damage\": 32.68,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 8.99,\n      \"edID\": 128681994,\n      \"eddbID\": 1544,\n      \"falloff\": 600,\n      \"grp\": \"bl\",\n      \"id\": \"0x\",\n      \"integrity\": 80,\n      \"mass\": 16,\n      \"mount\": \"G\",\n      \"piercing\": 60,\n      \"power\": 2.57,\n      \"range\": 3000,\n      \"rating\": \"A\",\n      \"thermload\": 10.6,\n      \"symbol\": \"Hpt_BeamLaser_Gimbal_Huge\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/hardpoints/burst_laser.json",
    "content": "{\n  \"ul\": [\n    {\n      \"breachdmg\": 1.5,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"burst\": 3,\n      \"burstrof\": 15,\n      \"class\": 1,\n      \"cost\": 4400,\n      \"damage\": 1.72,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 0.25,\n      \"edID\": 128049400,\n      \"eddbID\": 832,\n      \"falloff\": 500,\n      \"fireint\": 0.5,\n      \"grp\": \"ul\",\n      \"id\": \"11\",\n      \"integrity\": 40,\n      \"mass\": 2,\n      \"mount\": \"F\",\n      \"piercing\": 20,\n      \"power\": 0.65,\n      \"range\": 3000,\n      \"rating\": \"F\",\n      \"thermload\": 0.38,\n      \"symbol\": \"Hpt_PulseLaserBurst_Fixed_Small\"\n    },\n    {\n      \"breachdmg\": 1,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"burst\": 3,\n      \"burstrof\": 17,\n      \"class\": 1,\n      \"cost\": 8600,\n      \"damage\": 1.22,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 0.24,\n      \"fireint\": 0.45,\n      \"edID\": 128049404,\n      \"eddbID\": 835,\n      \"falloff\": 500,\n      \"grp\": \"ul\",\n      \"id\": \"12\",\n      \"integrity\": 40,\n      \"mass\": 2,\n      \"mount\": \"G\",\n      \"piercing\": 20,\n      \"power\": 0.64,\n      \"range\": 3000,\n      \"rating\": \"G\",\n      \"thermload\": 0.34,\n      \"symbol\": \"Hpt_PulseLaserBurst_Gimbal_Small\"\n    },\n    {\n      \"breachdmg\": 0.4,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.6,\n      \"burst\": 3,\n      \"burstrof\": 19,\n      \"class\": 1,\n      \"cost\": 52800,\n      \"damage\": 0.87,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 0.14,\n      \"edID\": 128049407,\n      \"eddbID\": 838,\n      \"falloff\": 500,\n      \"fireint\": 0.52,\n      \"grp\": \"ul\",\n      \"id\": \"13\",\n      \"integrity\": 40,\n      \"mass\": 2,\n      \"mount\": \"T\",\n      \"piercing\": 20,\n      \"power\": 0.6,\n      \"range\": 3000,\n      \"rating\": \"G\",\n      \"thermload\": 0.19,\n      \"symbol\": \"Hpt_PulseLaserBurst_Turret_Small\"\n    },\n    {\n      \"breachdmg\": 3.1,\n      \"breachmax\": 0,\n      \"breachmin\": 0,\n      \"burst\": 8,\n      \"burstrof\": 20,\n      \"class\": 1,\n      \"cost\": 8800,\n      \"damage\": 3.6,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 0.31,\n      \"edID\": 128671449,\n      \"eddbID\": 1477,\n      \"falloff\": 600,\n      \"fireint\": 0.7,\n      \"grp\": \"ul\",\n      \"id\": \"cy\",\n      \"integrity\": 40,\n      \"jitter\": 1.7,\n      \"mass\": 2,\n      \"mount\": \"F\",\n      \"name\": \"Cytoscrambler\",\n      \"piercing\": 1,\n      \"power\": 0.8,\n      \"pp\": \"Archon Delaine\",\n      \"range\": 1000,\n      \"rating\": \"F\",\n      \"thermload\": 0.3,\n      \"symbol\": \"Hpt_PulseLaserBurst_Fixed_Small_Scatter\"\n    },\n    {\n      \"breachdmg\": 3,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"burst\": 3,\n      \"burstrof\": 11,\n      \"class\": 2,\n      \"cost\": 23000,\n      \"damage\": 3.53,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 0.5,\n      \"edID\": 128049401,\n      \"eddbID\": 833,\n      \"falloff\": 500,\n      \"fireint\": 0.63,\n      \"grp\": \"ul\",\n      \"id\": \"7h\",\n      \"integrity\": 40,\n      \"mass\": 4,\n      \"mount\": \"F\",\n      \"piercing\": 35,\n      \"power\": 1.05,\n      \"range\": 3000,\n      \"rating\": \"E\",\n      \"thermload\": 0.78,\n      \"symbol\": \"Hpt_PulseLaserBurst_Fixed_Medium\"\n    },\n    {\n      \"breachdmg\": 2.1,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"burst\": 3,\n      \"burstrof\": 13,\n      \"class\": 2,\n      \"cost\": 48500,\n      \"damage\": 2.45,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 0.49,\n      \"edID\": 128049405,\n      \"eddbID\": 836,\n      \"falloff\": 500,\n      \"fireint\": 0.56,\n      \"grp\": \"ul\",\n      \"id\": \"7i\",\n      \"integrity\": 40,\n      \"mass\": 4,\n      \"mount\": \"G\",\n      \"piercing\": 35,\n      \"power\": 1.04,\n      \"range\": 3000,\n      \"rating\": \"F\",\n      \"thermload\": 0.67,\n      \"symbol\": \"Hpt_PulseLaserBurst_Gimbal_Medium\"\n    },\n    {\n      \"breachdmg\": 0.9,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.6,\n      \"burst\": 3,\n      \"burstrof\": 15,\n      \"class\": 2,\n      \"cost\": 162800,\n      \"damage\": 1.72,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 0.28,\n      \"edID\": 128049408,\n      \"eddbID\": 839,\n      \"falloff\": 500,\n      \"fireint\": 0.63,\n      \"grp\": \"ul\",\n      \"id\": \"7j\",\n      \"integrity\": 40,\n      \"mass\": 4,\n      \"mount\": \"T\",\n      \"piercing\": 35,\n      \"power\": 0.98,\n      \"range\": 3000,\n      \"rating\": \"F\",\n      \"thermload\": 0.38,\n      \"symbol\": \"Hpt_PulseLaserBurst_Turret_Medium\"\n    },\n    {\n      \"breachdmg\": 3.9,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"burst\": 3,\n      \"burstrof\": 7,\n      \"class\": 3,\n      \"cost\": 140400,\n      \"damage\": 7.73,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 1.11,\n      \"edID\": 128049402,\n      \"eddbID\": 834,\n      \"falloff\": 500,\n      \"fireint\": 0.83,\n      \"grp\": \"ul\",\n      \"id\": \"14\",\n      \"integrity\": 64,\n      \"mass\": 8,\n      \"mount\": \"F\",\n      \"piercing\": 52,\n      \"power\": 1.66,\n      \"range\": 3000,\n      \"rating\": \"D\",\n      \"thermload\": 1.7,\n      \"symbol\": \"Hpt_PulseLaserBurst_Fixed_Large\"\n    },\n    {\n      \"breachdmg\": 4.4,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"burst\": 3,\n      \"burstrof\": 9,\n      \"class\": 3,\n      \"cost\": 281600,\n      \"damage\": 5.16,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 1.03,\n      \"edID\": 128049406,\n      \"eddbID\": 837,\n      \"falloff\": 500,\n      \"fireint\": 0.71,\n      \"grp\": \"ul\",\n      \"id\": \"15\",\n      \"integrity\": 64,\n      \"mass\": 8,\n      \"mount\": \"G\",\n      \"piercing\": 52,\n      \"power\": 1.65,\n      \"range\": 3000,\n      \"rating\": \"E\",\n      \"thermload\": 1.42,\n      \"symbol\": \"Hpt_PulseLaserBurst_Gimbal_Large\"\n    },\n    {\n      \"breachdmg\": 1.8,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.6,\n      \"burst\": 3,\n      \"burstrof\": 11,\n      \"class\": 3,\n      \"cost\": 800400,\n      \"damage\": 3.53,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 0.56,\n      \"edID\": 128049409,\n      \"eddbID\": 840,\n      \"falloff\": 500,\n      \"fireint\": 0.78,\n      \"grp\": \"ul\",\n      \"id\": \"16\",\n      \"integrity\": 64,\n      \"mass\": 8,\n      \"mount\": \"T\",\n      \"piercing\": 52,\n      \"power\": 1.57,\n      \"range\": 3000,\n      \"rating\": \"E\",\n      \"thermload\": 0.78,\n      \"symbol\": \"Hpt_PulseLaserBurst_Turret_Large\"\n    },\n    {\n      \"breachdmg\": 17.5,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"burst\": 3,\n      \"burstrof\": 3,\n      \"class\": 4,\n      \"cost\": 281600,\n      \"damage\": 20.61,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 2.98,\n      \"edID\": 128049403,\n      \"eddbID\": 1549,\n      \"falloff\": 500,\n      \"fireint\": 1.25,\n      \"grp\": \"ul\",\n      \"id\": \"7s\",\n      \"integrity\": 80,\n      \"mass\": 16,\n      \"mount\": \"F\",\n      \"piercing\": 65,\n      \"power\": 2.58,\n      \"range\": 3000,\n      \"rating\": \"E\",\n      \"thermload\": 4.53,\n      \"symbol\": \"Hpt_PulseLaserBurst_Fixed_Huge\"\n    },\n    {\n      \"breachdmg\": 10.3,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"burst\": 3,\n      \"burstrof\": 5,\n      \"class\": 4,\n      \"cost\": 1245600,\n      \"damage\": 12.09,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 2.41,\n      \"edID\": 128727920,\n      \"eddbID\": 1550,\n      \"falloff\": 500,\n      \"fireint\": 1.0,\n      \"grp\": \"ul\",\n      \"id\": \"7t\",\n      \"integrity\": 80,\n      \"mass\": 16,\n      \"mount\": \"G\",\n      \"piercing\": 65,\n      \"power\": 2.59,\n      \"range\": 3000,\n      \"rating\": \"E\",\n      \"thermload\": 3.33,\n      \"symbol\": \"Hpt_PulseLaserBurst_Gimbal_Huge\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/hardpoints/cannon.json",
    "content": "{\n  \"c\": [\n    {\n      \"ammo\": 120,\n      \"breachdmg\": 17.1,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.6,\n      \"class\": 1,\n      \"clip\": 6,\n      \"cost\": 21100,\n      \"damage\": 22.5,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"distdraw\": 0.46,\n      \"edID\": 128049438,\n      \"eddbID\": 850,\n      \"falloff\": 3000,\n      \"fireint\": 2.0,\n      \"grp\": \"c\",\n      \"id\": \"1h\",\n      \"integrity\": 40,\n      \"mass\": 2,\n      \"mount\": \"F\",\n      \"piercing\": 35,\n      \"power\": 0.34,\n      \"range\": 3000,\n      \"rating\": \"D\",\n      \"reload\": 3,\n      \"shotspeed\": 1200,\n      \"thermload\": 1.4,\n      \"symbol\": \"Hpt_Cannon_Fixed_Small\"\n    },\n    {\n      \"ammo\": 100,\n      \"breachdmg\": 13.2,\n      \"breachmax\": 0.9,\n      \"breachmin\": 0.6,\n      \"class\": 1,\n      \"clip\": 5,\n      \"cost\": 42200,\n      \"damage\": 16,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"distdraw\": 0.48,\n      \"edID\": 128049442,\n      \"eddbID\": 854,\n      \"falloff\": 3000,\n      \"fireint\": 1.92,\n      \"grp\": \"c\",\n      \"id\": \"1i\",\n      \"integrity\": 40,\n      \"mass\": 2,\n      \"mount\": \"G\",\n      \"piercing\": 35,\n      \"power\": 0.38,\n      \"range\": 3000,\n      \"rating\": \"E\",\n      \"reload\": 4,\n      \"shotspeed\": 1000,\n      \"thermload\": 1.3,\n      \"symbol\": \"Hpt_Cannon_Gimbal_Small\"\n    },\n    {\n      \"ammo\": 100,\n      \"breachdmg\": 10.6,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.6,\n      \"class\": 1,\n      \"clip\": 5,\n      \"cost\": 506400,\n      \"damage\": 12.75,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"distdraw\": 0.22,\n      \"edID\": 128049445,\n      \"eddbID\": 857,\n      \"falloff\": 3000,\n      \"fireint\": 2.31,\n      \"grp\": \"c\",\n      \"id\": \"1j\",\n      \"integrity\": 40,\n      \"mass\": 2,\n      \"mount\": \"T\",\n      \"piercing\": 35,\n      \"power\": 0.32,\n      \"range\": 3000,\n      \"rating\": \"F\",\n      \"reload\": 4,\n      \"shotspeed\": 1000,\n      \"thermload\": 0.7,\n      \"symbol\": \"Hpt_Cannon_Turret_Small\"\n    },\n    {\n      \"ammo\": 120,\n      \"breachdmg\": 28,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.6,\n      \"class\": 2,\n      \"clip\": 6,\n      \"cost\": 168430,\n      \"damage\": 36.5,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"distdraw\": 0.7,\n      \"edID\": 128049439,\n      \"eddbID\": 851,\n      \"falloff\": 3500,\n      \"fireint\": 2.17,\n      \"grp\": \"c\",\n      \"id\": \"1k\",\n      \"integrity\": 51,\n      \"mass\": 4,\n      \"mount\": \"F\",\n      \"piercing\": 50,\n      \"power\": 0.49,\n      \"range\": 3500,\n      \"rating\": \"D\",\n      \"reload\": 3,\n      \"shotspeed\": 1051.051025,\n      \"thermload\": 2.1,\n      \"symbol\": \"Hpt_Cannon_Fixed_Medium\"\n    },\n    {\n      \"ammo\": 100,\n      \"breachdmg\": 20.3,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.6,\n      \"class\": 2,\n      \"clip\": 5,\n      \"cost\": 337600,\n      \"damage\": 24.5,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"distdraw\": 0.75,\n      \"edID\": 128049443,\n      \"eddbID\": 855,\n      \"falloff\": 3500,\n      \"fireint\": 2.08,\n      \"grp\": \"c\",\n      \"id\": \"1l\",\n      \"integrity\": 51,\n      \"mass\": 4,\n      \"mount\": \"G\",\n      \"piercing\": 50,\n      \"power\": 0.54,\n      \"range\": 3500,\n      \"rating\": \"D\",\n      \"reload\": 4,\n      \"shotspeed\": 875,\n      \"thermload\": 1.9,\n      \"symbol\": \"Hpt_Cannon_Gimbal_Medium\"\n    },\n    {\n      \"ammo\": 100,\n      \"breachdmg\": 16.3,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.6,\n      \"class\": 2,\n      \"clip\": 5,\n      \"cost\": 4051200,\n      \"damage\": 19.77,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"distdraw\": 0.34,\n      \"edID\": 128049446,\n      \"eddbID\": 858,\n      \"falloff\": 3500,\n      \"fireint\": 2.5,\n      \"grp\": \"c\",\n      \"id\": \"1m\",\n      \"integrity\": 51,\n      \"mass\": 4,\n      \"mount\": \"T\",\n      \"piercing\": 50,\n      \"power\": 0.45,\n      \"range\": 3500,\n      \"rating\": \"E\",\n      \"reload\": 4,\n      \"shotspeed\": 875,\n      \"thermload\": 1,\n      \"symbol\": \"Hpt_Cannon_Turret_Medium\"\n    },\n    {\n      \"ammo\": 120,\n      \"breachdmg\": 42.3,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.6,\n      \"class\": 3,\n      \"clip\": 6,\n      \"cost\": 675200,\n      \"damage\": 54.94,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"distdraw\": 1.07,\n      \"edID\": 128049440,\n      \"eddbID\": 852,\n      \"falloff\": 4000,\n      \"fireint\": 2.38,\n      \"grp\": \"c\",\n      \"id\": \"1n\",\n      \"integrity\": 64,\n      \"mass\": 8,\n      \"mount\": \"F\",\n      \"piercing\": 70,\n      \"power\": 0.67,\n      \"range\": 4000,\n      \"rating\": \"C\",\n      \"reload\": 3,\n      \"shotspeed\": 959.232605,\n      \"thermload\": 3.2,\n      \"symbol\": \"Hpt_Cannon_Fixed_Large\"\n    },\n    {\n      \"ammo\": 100,\n      \"breachdmg\": 30.9,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.6,\n      \"class\": 3,\n      \"clip\": 5,\n      \"cost\": 1350400,\n      \"damage\": 37.39,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"distdraw\": 1.14,\n      \"edID\": 128671120,\n      \"eddbID\": 1383,\n      \"falloff\": 4000,\n      \"fireint\": 2.27,\n      \"eps\": 0.456,\n      \"grp\": \"c\",\n      \"hps\": 1.16,\n      \"id\": \"1o\",\n      \"integrity\": 64,\n      \"mass\": 8,\n      \"mount\": \"G\",\n      \"piercing\": 70,\n      \"power\": 0.75,\n      \"range\": 4000,\n      \"rating\": \"C\",\n      \"reload\": 4,\n      \"shotspeed\": 800,\n      \"thermload\": 2.9,\n      \"symbol\": \"Hpt_Cannon_Gimbal_Large\"\n    },\n    {\n      \"ammo\": 100,\n      \"breachdmg\": 25.14,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.6,\n      \"class\": 3,\n      \"clip\": 5,\n      \"cost\": 16204800,\n      \"damage\": 30.4,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"distdraw\": 0.53,\n      \"edID\": 128049447,\n      \"eddbID\": 859,\n      \"falloff\": 4000,\n      \"fireint\": 2.72,\n      \"grp\": \"c\",\n      \"id\": \"1p\",\n      \"integrity\": 64,\n      \"mass\": 8,\n      \"mount\": \"T\",\n      \"piercing\": 70,\n      \"power\": 0.64,\n      \"range\": 4000,\n      \"rating\": \"D\",\n      \"reload\": 4,\n      \"shotspeed\": 800,\n      \"thermload\": 1.6,\n      \"symbol\": \"Hpt_Cannon_Turret_Large\"\n    },\n    {\n      \"ammo\": 120,\n      \"breachdmg\": 63.2,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.6,\n      \"class\": 4,\n      \"clip\": 6,\n      \"cost\": 2700800,\n      \"damage\": 82.1,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"distdraw\": 1.61,\n      \"edID\": 128049441,\n      \"eddbID\": 853,\n      \"falloff\": 4500,\n      \"fireint\": 2.63,\n      \"eps\": 0.644,\n      \"grp\": \"c\",\n      \"hps\": 1.92,\n      \"id\": \"1q\",\n      \"integrity\": 80,\n      \"mass\": 16,\n      \"mount\": \"F\",\n      \"piercing\": 90,\n      \"power\": 0.92,\n      \"range\": 4500,\n      \"rating\": \"B\",\n      \"reload\": 3,\n      \"shotspeed\": 900,\n      \"thermload\": 4.8,\n      \"symbol\": \"Hpt_Cannon_Fixed_Huge\"\n    },\n    {\n      \"ammo\": 100,\n      \"breachdmg\": 46.7,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.6,\n      \"class\": 4,\n      \"clip\": 5,\n      \"cost\": 5401600,\n      \"damage\": 56.58,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"distdraw\": 1.72,\n      \"edID\": 128049444,\n      \"eddbID\": 856,\n      \"falloff\": 4500,\n      \"fireint\": 2.5,\n      \"eps\": 0.688,\n      \"grp\": \"c\",\n      \"hps\": 1.76,\n      \"id\": \"1r\",\n      \"integrity\": 80,\n      \"mass\": 16,\n      \"mount\": \"G\",\n      \"piercing\": 90,\n      \"power\": 1.03,\n      \"range\": 4500,\n      \"rating\": \"B\",\n      \"reload\": 4,\n      \"shotspeed\": 750,\n      \"thermload\": 4.4,\n      \"symbol\": \"Hpt_Cannon_Gimbal_Huge\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/hardpoints/cargo_scanner.json",
    "content": "{\n  \"cs\": [\n    {\n      \"angle\": 15,\n      \"class\": 0,\n      \"cost\": 13540,\n      \"edID\": 128662520,\n      \"eddbID\": 1227,\n      \"grp\": \"cs\",\n      \"id\": \"0d\",\n      \"integrity\": 32,\n      \"mass\": 1.3,\n      \"power\": 0.2,\n      \"range\": 2000,\n      \"rating\": \"E\",\n      \"scantime\": 10,\n      \"symbol\": \"Hpt_CargoScanner_Size0_Class1\"\n    },\n    {\n      \"angle\": 15,\n      \"class\": 0,\n      \"cost\": 40630,\n      \"edID\": 128662521,\n      \"eddbID\": 1228,\n      \"grp\": \"cs\",\n      \"id\": \"0c\",\n      \"integrity\": 24,\n      \"mass\": 1.3,\n      \"power\": 0.4,\n      \"range\": 2500,\n      \"rating\": \"D\",\n      \"scantime\": 10,\n      \"symbol\": \"Hpt_CargoScanner_Size0_Class2\"\n    },\n    {\n      \"angle\": 15,\n      \"class\": 0,\n      \"cost\": 121900,\n      \"edID\": 128662522,\n      \"eddbID\": 1229,\n      \"grp\": \"cs\",\n      \"id\": \"0b\",\n      \"integrity\": 40,\n      \"mass\": 1.3,\n      \"power\": 0.8,\n      \"range\": 3000,\n      \"rating\": \"C\",\n      \"scantime\": 10,\n      \"symbol\": \"Hpt_CargoScanner_Size0_Class3\"\n    },\n    {\n      \"angle\": 15,\n      \"class\": 0,\n      \"cost\": 365700,\n      \"edID\": 128662523,\n      \"eddbID\": 1230,\n      \"grp\": \"cs\",\n      \"id\": \"0a\",\n      \"integrity\": 56,\n      \"mass\": 1.3,\n      \"power\": 1.6,\n      \"range\": 3500,\n      \"rating\": \"B\",\n      \"scantime\": 10,\n      \"symbol\": \"Hpt_CargoScanner_Size0_Class4\"\n    },\n    {\n      \"angle\": 15,\n      \"class\": 0,\n      \"cost\": 1097100,\n      \"edID\": 128662524,\n      \"eddbID\": 1231,\n      \"grp\": \"cs\",\n      \"id\": \"09\",\n      \"integrity\": 48,\n      \"mass\": 1.3,\n      \"power\": 3.2,\n      \"range\": 4000,\n      \"rating\": \"A\",\n      \"scantime\": 10,\n      \"symbol\": \"Hpt_CargoScanner_Size0_Class5\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/hardpoints/chaff_launcher.json",
    "content": "{\n  \"ch\": [\n    {\n      \"ammo\": 10,\n      \"ammocost\": 100,\n      \"class\": 0,\n      \"clip\": 1,\n      \"cost\": 8500,\n      \"distdraw\": 4,\n      \"duration\": 20,\n      \"edID\": 128049513,\n      \"eddbID\": 884,\n      \"fireint\": 1.0,\n      \"grp\": \"ch\",\n      \"id\": \"00\",\n      \"integrity\": 20,\n      \"mass\": 1.3,\n      \"name\": \"Chaff Launcher\",\n      \"passive\": 1,\n      \"power\": 0.2,\n      \"rating\": \"I\",\n      \"reload\": 10,\n      \"thermload\": 4,\n      \"symbol\": \"Hpt_ChaffLauncher_Tiny\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/hardpoints/electronic_countermeasure.json",
    "content": "{\n  \"ec\": [\n    {\n      \"activepower\": 4,\n      \"chargeup\": 3,\n      \"class\": 0,\n      \"cooldown\": 10,\n      \"cost\": 12500,\n      \"edID\": 128049516,\n      \"eddbID\": 885,\n      \"grp\": \"ec\",\n      \"id\": \"01\",\n      \"integrity\": 20,\n      \"mass\": 1.3,\n      \"name\": \"Electronic Countermeasure\",\n      \"power\": 0.2,\n      \"range\": 3000,\n      \"rating\": \"F\",\n      \"reload\": 10,\n      \"thermload\": 4,\n      \"symbol\": \"Hpt_ElectronicCountermeasure_Tiny\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/hardpoints/enzyme_missile_rack.json",
    "content": "{\n  \"tbem\": [\n    {\n      \"experimental\": true,\n      \"rating\": \"B\",\n      \"class\": 2,\n      \"grp\": \"tbem\",\n      \"id\": \"xt\",\n      \"eddbID\": 0,\n      \"edID\": 128833995,\n      \"fireint\": 2.0,\n      \"mount\": \"F\",\n      \"cost\": 480501,\n      \"mass\": 4,\n      \"integrity\": 51,\n      \"power\": 1.2,\n      \"damage\": 5,\n      \"distdraw\": 0.08,\n      \"thermload\": 1.5,\n      \"piercing\": 60,\n      \"shotspeed\": 750,\n      \"clip\": 8,\n      \"ammo\": 64,\n      \"reload\": 5,\n      \"breachdmg\": 0,\n      \"breachmin\": 0.8,\n      \"breachmax\": 1,\n      \"symbol\": \"Hpt_CausticMissile_Fixed_Medium\",\n      \"damagedist\": {\n        \"E\": 1\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/hardpoints/fragment_cannon.json",
    "content": "{\n  \"fc\": [\n    {\n      \"ammo\": 180,\n      \"breachdmg\": 1.3,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 1,\n      \"clip\": 3,\n      \"cost\": 36000,\n      \"damage\": 1.43,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"distdraw\": 0.21,\n      \"edID\": 128049448,\n      \"eddbID\": 860,\n      \"falloff\": 1800,\n      \"fireint\": 0.18,\n      \"grp\": \"fc\",\n      \"id\": \"20\",\n      \"integrity\": 40,\n      \"jitter\": 5,\n      \"mass\": 2,\n      \"mount\": \"F\",\n      \"piercing\": 20,\n      \"power\": 0.45,\n      \"range\": 2000,\n      \"rating\": \"E\",\n      \"reload\": 5,\n      \"roundspershot\": 12,\n      \"shotspeed\": 667,\n      \"thermload\": 0.4,\n      \"symbol\": \"Hpt_Slugshot_Fixed_Small\"\n    },\n    {\n      \"ammo\": 180,\n      \"breachdmg\": 0.9,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 1,\n      \"clip\": 3,\n      \"cost\": 54720,\n      \"damage\": 1.01,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"distdraw\": 0.26,\n      \"edID\": 128049451,\n      \"eddbID\": 863,\n      \"falloff\": 1800,\n      \"fireint\": 0.17,\n      \"grp\": \"fc\",\n      \"id\": \"21\",\n      \"integrity\": 40,\n      \"jitter\": 5,\n      \"mass\": 2,\n      \"mount\": \"G\",\n      \"piercing\": 20,\n      \"power\": 0.59,\n      \"range\": 2000,\n      \"rating\": \"E\",\n      \"reload\": 5,\n      \"roundspershot\": 12,\n      \"shotspeed\": 667,\n      \"thermload\": 0.4,\n      \"symbol\": \"Hpt_Slugshot_Gimbal_Small\"\n    },\n    {\n      \"ammo\": 180,\n      \"breachdmg\": 0.5,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 1,\n      \"clip\": 3,\n      \"cost\": 182400,\n      \"damage\": 0.69,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"distdraw\": 0.1,\n      \"edID\": 128049453,\n      \"eddbID\": 865,\n      \"falloff\": 1800,\n      \"fireint\": 0.21,\n      \"grp\": \"fc\",\n      \"id\": \"22\",\n      \"integrity\": 40,\n      \"jitter\": 5,\n      \"mass\": 2,\n      \"mount\": \"T\",\n      \"piercing\": 20,\n      \"power\": 0.42,\n      \"range\": 2000,\n      \"rating\": \"E\",\n      \"reload\": 5,\n      \"roundspershot\": 12,\n      \"shotspeed\": 667,\n      \"thermload\": 0.2,\n      \"symbol\": \"Hpt_Slugshot_Turret_Small\"\n    },\n    {\n      \"ammo\": 180,\n      \"breachdmg\": 2.3,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 2,\n      \"clip\": 3,\n      \"cost\": 291840,\n      \"damage\": 3,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"distdraw\": 0.37,\n      \"edID\": 128049449,\n      \"eddbID\": 861,\n      \"falloff\": 1800,\n      \"fireint\": 0.2,\n      \"grp\": \"fc\",\n      \"id\": \"1s\",\n      \"integrity\": 80,\n      \"jitter\": 5,\n      \"mass\": 4,\n      \"mount\": \"F\",\n      \"piercing\": 30,\n      \"power\": 0.74,\n      \"range\": 2000,\n      \"rating\": \"A\",\n      \"reload\": 5,\n      \"roundspershot\": 12,\n      \"shotspeed\": 667,\n      \"thermload\": 0.7,\n      \"symbol\": \"Hpt_Slugshot_Fixed_Medium\"\n    },\n    {\n      \"ammo\": 180,\n      \"breachdmg\": 1.8,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 2,\n      \"clip\": 3,\n      \"cost\": 437761,\n      \"damage\": 2.275,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"distdraw\": 0.49,\n      \"edID\": 128049452,\n      \"eddbID\": 864,\n      \"falloff\": 1800,\n      \"fireint\": 0.19,\n      \"grp\": \"fc\",\n      \"id\": \"7e\",\n      \"integrity\": 80,\n      \"jitter\": 5,\n      \"mass\": 4,\n      \"mount\": \"G\",\n      \"piercing\": 30,\n      \"power\": 1.03,\n      \"range\": 2000,\n      \"rating\": \"D\",\n      \"reload\": 5,\n      \"roundspershot\": 12,\n      \"shotspeed\": 667,\n      \"thermload\": 0.8,\n      \"symbol\": \"Hpt_Slugshot_Gimbal_Medium\"\n    },\n    {\n      \"ammo\": 180,\n      \"breachdmg\": 1.3,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 2,\n      \"clip\": 3,\n      \"cost\": 1459200,\n      \"damage\": 1.7,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"distdraw\": 0.21,\n      \"edID\": 128049454,\n      \"eddbID\": 866,\n      \"falloff\": 1800,\n      \"fireint\": 0.23,\n      \"grp\": \"fc\",\n      \"id\": \"7f\",\n      \"integrity\": 80,\n      \"jitter\": 5,\n      \"mass\": 4,\n      \"mount\": \"T\",\n      \"piercing\": 30,\n      \"power\": 0.79,\n      \"range\": 2000,\n      \"rating\": \"D\",\n      \"reload\": 5,\n      \"roundspershot\": 12,\n      \"shotspeed\": 667,\n      \"thermload\": 0.4,\n      \"symbol\": \"Hpt_Slugshot_Turret_Medium\"\n    },\n    {\n      \"ammo\": 180,\n      \"breachdmg\": 3.5,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 3,\n      \"clip\": 3,\n      \"cost\": 1167360,\n      \"damage\": 4.57,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"distdraw\": 0.57,\n      \"edID\": 128049450,\n      \"eddbID\": 862,\n      \"falloff\": 1800,\n      \"fireint\": 0.22,\n      \"grp\": \"fc\",\n      \"id\": \"1t\",\n      \"integrity\": 80,\n      \"jitter\": 5,\n      \"mass\": 8,\n      \"mount\": \"F\",\n      \"piercing\": 45,\n      \"power\": 1.02,\n      \"range\": 2000,\n      \"rating\": \"C\",\n      \"reload\": 5,\n      \"roundspershot\": 12,\n      \"shotspeed\": 667,\n      \"thermload\": 1.1,\n      \"symbol\": \"Hpt_Slugshot_Fixed_Large\"\n    },\n    {\n      \"ammo\": 180,\n      \"breachdmg\": 2.9,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 3,\n      \"clip\": 3,\n      \"cost\": 1751040,\n      \"damage\": 3.77,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"distdraw\": 0.81,\n      \"edID\": 128671321,\n      \"eddbID\": 1454,\n      \"falloff\": 1800,\n      \"fireint\": 0.21,\n      \"grp\": \"fc\",\n      \"id\": \"1u\",\n      \"integrity\": 80,\n      \"jitter\": 5,\n      \"mass\": 8,\n      \"mount\": \"G\",\n      \"piercing\": 45,\n      \"power\": 1.55,\n      \"range\": 2000,\n      \"rating\": \"C\",\n      \"reload\": 5,\n      \"roundspershot\": 12,\n      \"shotspeed\": 667,\n      \"thermload\": 1.4,\n      \"symbol\": \"Hpt_Slugshot_Gimbal_Large\"\n    },\n    {\n      \"ammo\": 180,\n      \"breachdmg\": 2.3,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 3,\n      \"clip\": 3,\n      \"cost\": 5836800,\n      \"damage\": 2.98,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"distdraw\": 0.37,\n      \"edID\": 128671322,\n      \"eddbID\": 1455,\n      \"falloff\": 1800,\n      \"fireint\": 0.25,\n      \"grp\": \"fc\",\n      \"id\": \"1v\",\n      \"integrity\": 80,\n      \"jitter\": 5,\n      \"mass\": 8,\n      \"mount\": \"T\",\n      \"piercing\": 45,\n      \"power\": 1.29,\n      \"range\": 2000,\n      \"rating\": \"C\",\n      \"reload\": 5,\n      \"roundspershot\": 12,\n      \"shotspeed\": 667,\n      \"thermload\": 0.7,\n      \"symbol\": \"Hpt_Slugshot_Turret_Large\"\n    },\n    {\n      \"ammo\": 180,\n      \"breachdmg\": 3.1,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 3,\n      \"clip\": 3,\n      \"cost\": 1400830,\n      \"damage\": 3.96,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"distdraw\": 0.57,\n      \"edID\": 128671343,\n      \"eddbID\": 1478,\n      \"falloff\": 2800,\n      \"fireint\": 0.22,\n      \"grp\": \"fc\",\n      \"id\": \"pa\",\n      \"integrity\": 64,\n      \"jitter\": 1.7,\n      \"mass\": 8,\n      \"mount\": \"F\",\n      \"name\": \"Pacifier\",\n      \"piercing\": 45,\n      \"power\": 1.02,\n      \"pp\": \"Zachary Hudson\",\n      \"rating\": \"C\",\n      \"reload\": 5,\n      \"roundspershot\": 12,\n      \"shotspeed\": 1000,\n      \"thermload\": 1.1,\n      \"symbol\": \"Hpt_Slugshot_Fixed_Large_Range\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/hardpoints/frame_shift_wake_scanner.json",
    "content": "{\n  \"ws\": [\n    {\n      \"class\": 0,\n      \"cost\": 13540,\n      \"edID\": 128662525,\n      \"eddbID\": 1232,\n      \"grp\": \"ws\",\n      \"id\": \"0i\",\n      \"integrity\": 32,\n      \"mass\": 1.3,\n      \"power\": 0.2,\n      \"range\": 2000,\n      \"rating\": \"E\",\n      \"scantime\": 10,\n      \"symbol\": \"Hpt_CloudScanner_Size0_Class1\"\n    },\n    {\n      \"class\": 0,\n      \"cost\": 40630,\n      \"edID\": 128662526,\n      \"eddbID\": 1233,\n      \"grp\": \"ws\",\n      \"id\": \"0h\",\n      \"integrity\": 24,\n      \"mass\": 1.3,\n      \"power\": 0.4,\n      \"range\": 2500,\n      \"rating\": \"D\",\n      \"scantime\": 10,\n      \"symbol\": \"Hpt_CloudScanner_Size0_Class2\"\n    },\n    {\n      \"class\": 0,\n      \"cost\": 121900,\n      \"edID\": 128662527,\n      \"eddbID\": 1234,\n      \"grp\": \"ws\",\n      \"id\": \"0g\",\n      \"integrity\": 40,\n      \"mass\": 1.3,\n      \"power\": 0.8,\n      \"range\": 3000,\n      \"rating\": \"C\",\n      \"scantime\": 10,\n      \"symbol\": \"Hpt_CloudScanner_Size0_Class3\"\n    },\n    {\n      \"class\": 0,\n      \"cost\": 365700,\n      \"edID\": 128662528,\n      \"eddbID\": 1235,\n      \"grp\": \"ws\",\n      \"id\": \"0f\",\n      \"integrity\": 56,\n      \"mass\": 1.3,\n      \"power\": 1.6,\n      \"range\": 3500,\n      \"rating\": \"B\",\n      \"scantime\": 10,\n      \"symbol\": \"Hpt_CloudScanner_Size0_Class4\"\n    },\n    {\n      \"class\": 0,\n      \"cost\": 1097100,\n      \"edID\": 128662529,\n      \"eddbID\": 1236,\n      \"grp\": \"ws\",\n      \"id\": \"0e\",\n      \"integrity\": 48,\n      \"mass\": 1.3,\n      \"power\": 3.2,\n      \"range\": 4000,\n      \"rating\": \"A\",\n      \"scantime\": 10,\n      \"symbol\": \"Hpt_CloudScanner_Size0_Class5\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/hardpoints/guardian_gauss_cannon.json",
    "content": "{\n  \"ggc\": [\n    {\n      \"experimental\": true,\n      \"ammo\": 80,\n      \"breachdmg\": 11,\n      \"breachmax\": 0.4,\n      \"breachmin\": 0.2,\n      \"class\": 1,\n      \"clip\": 1,\n      \"cost\": 167250,\n      \"damage\": 22,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 3.8,\n      \"edID\": 128891610,\n      \"eddbID\": 0,\n      \"falloff\": 1500,\n      \"fireint\": 0.83,\n      \"grp\": \"ggc\",\n      \"id\": \"yL\",\n      \"integrity\": 40,\n      \"mass\": 2,\n      \"mount\": \"F\",\n      \"piercing\": 140,\n      \"power\": 1.91,\n      \"range\": 3000,\n      \"rating\": \"D\",\n      \"reload\": 1,\n      \"thermload\": 15,\n      \"symbol\": \"Hpt_Guardian_GaussCannon_Fixed_Small\",\n      \"requirements\": {\n        \"horizons\": true\n      }\n    },\n    {\n      \"experimental\": true,\n      \"ammo\": 80,\n      \"breachdmg\": 35,\n      \"breachmax\": 0.4,\n      \"breachmin\": 0.2,\n      \"burst\": 1,\n      \"class\": 2,\n      \"clip\": 1,\n      \"cost\": 543801,\n      \"damage\": 38.5,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 7.2,\n      \"edID\": 128833687,\n      \"eddbID\": 876,\n      \"falloff\": 1500,\n      \"fireint\": 0.83,\n      \"grp\": \"ggc\",\n      \"id\": \"0H\",\n      \"integrity\": 42,\n      \"mass\": 4,\n      \"mount\": \"F\",\n      \"piercing\": 140,\n      \"power\": 2.61,\n      \"range\": 3000,\n      \"rating\": \"B\",\n      \"reload\": 1,\n      \"thermload\": 25,\n      \"symbol\": \"Hpt_Guardian_GaussCannon_Fixed_Medium\",\n      \"requirements\": {\n        \"horizons\": true\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/hardpoints/guardian_plasma_charger.json",
    "content": "{\n  \"gpc\": [\n    {\n      \"experimental\": true,\n      \"ammo\": 200,\n      \"breachdmg\": 0.4,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.5,\n      \"class\": 1,\n      \"clip\": 15,\n      \"cost\": 176500,\n      \"damage\": 1.7,\n      \"damagedist\": {\n        \"A\": 1\n      },\n      \"distdraw\": 0.68,\n      \"edID\": 128891607,\n      \"eddbID\": 0,\n      \"falloff\": 1000,\n      \"fireint\": 0.2,\n      \"grp\": \"gpc\",\n      \"id\": \"yN\",\n      \"integrity\": 34,\n      \"mass\": 2,\n      \"mount\": \"F\",\n      \"piercing\": 65,\n      \"power\": 1.4,\n      \"range\": 3000,\n      \"rating\": \"D\",\n      \"reload\": 3,\n      \"shotspeed\": 1200,\n      \"thermload\": 4.2,\n      \"symbol\": \"Hpt_Guardian_PlasmaLauncher_Fixed_Small\"\n    },\n    {\n      \"experimental\": true,\n      \"ammo\": 200,\n      \"breachdmg\": 0.3,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.5,\n      \"class\": 1,\n      \"clip\": 15,\n      \"cost\": 484050,\n      \"damage\": 1.1,\n      \"damagedist\": {\n        \"A\": 1\n      },\n      \"distdraw\": 0.8,\n      \"edID\": 128891606,\n      \"eddbID\": 0,\n      \"falloff\": 1000,\n      \"fireint\": 0.2,\n      \"grp\": \"gpc\",\n      \"id\": \"yM\",\n      \"integrity\": 34,\n      \"mass\": 2,\n      \"mount\": \"T\",\n      \"piercing\": 65,\n      \"power\": 1.6,\n      \"range\": 3000,\n      \"rating\": \"F\",\n      \"reload\": 3,\n      \"shotspeed\": 1200,\n      \"thermload\": 5,\n      \"symbol\": \"Hpt_Guardian_PlasmaLauncher_Turret_Small\"\n    },\n    {\n      \"experimental\": true,\n      \"ammo\": 200,\n      \"breachdmg\": 0.7,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.5,\n      \"class\": 2,\n      \"clip\": 15,\n      \"cost\": 567761,\n      \"damage\": 5,\n      \"damagedist\": {\n        \"A\": 1\n      },\n      \"distdraw\": 1.25,\n      \"edID\": 128833998,\n      \"eddbID\": 874,\n      \"falloff\": 1000,\n      \"fireint\": 0.2,\n      \"grp\": \"gpc\",\n      \"id\": \"0J\",\n      \"integrity\": 42,\n      \"mass\": 4,\n      \"mount\": \"F\",\n      \"piercing\": 80,\n      \"power\": 2.13,\n      \"range\": 3500,\n      \"rating\": \"B\",\n      \"reload\": 3,\n      \"shotspeed\": 1200,\n      \"thermload\": 5.2,\n      \"symbol\": \"Hpt_Guardian_PlasmaLauncher_Fixed_Medium\"\n    },\n    {\n      \"experimental\": true,\n      \"ammo\": 200,\n      \"breachdmg\": 1,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.5,\n      \"class\": 2,\n      \"clip\": 15,\n      \"cost\": 1659200,\n      \"damage\": 4,\n      \"damagedist\": {\n        \"A\": 1\n      },\n      \"distdraw\": 1.4,\n      \"edID\": 128833999,\n      \"eddbID\": 874,\n      \"falloff\": 1000,\n      \"fireint\": 0.2,\n      \"grp\": \"gpc\",\n      \"id\": \"0I\",\n      \"integrity\": 42,\n      \"mass\": 4,\n      \"mount\": \"T\",\n      \"piercing\": 80,\n      \"power\": 2.01,\n      \"range\": 3500,\n      \"rating\": \"E\",\n      \"reload\": 3,\n      \"shotspeed\": 1200,\n      \"thermload\": 5.8,\n      \"symbol\": \"Hpt_Guardian_PlasmaLauncher_Turret_Medium\"\n    },\n    {\n      \"experimental\": true,\n      \"rating\": \"C\",\n      \"class\": 3,\n      \"grp\": \"gpc\",\n      \"id\": \"xu\",\n      \"eddbID\": 0,\n      \"edID\": 128834783,\n      \"mount\": \"F\",\n      \"cost\": 1423301,\n      \"mass\": 8,\n      \"integrity\": 51,\n      \"power\": 3.1,\n      \"damage\": 3.4,\n      \"distdraw\": 2.42,\n      \"fireint\": 0.2,\n      \"thermload\": 6.2,\n      \"piercing\": 95,\n      \"range\": 3000,\n      \"shotspeed\": 1200,\n      \"clip\": 15,\n      \"ammo\": 200,\n      \"reload\": 3,\n      \"breachdmg\": 1,\n      \"breachmin\": 0.5,\n      \"breachmax\": 0.8,\n      \"symbol\": \"Hpt_Guardian_PlasmaLauncher_Fixed_Large\",\n      \"damagedist\": {\n        \"A\": 1\n      },\n      \"falloff\": 1000\n    },\n    {\n      \"experimental\": true,\n      \"ammo\": 200,\n      \"breachdmg\": 0.8,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.5,\n      \"class\": 3,\n      \"clip\": 15,\n      \"cost\": 5495200,\n      \"damage\": 3.3,\n      \"damagedist\": {\n        \"A\": 1\n      },\n      \"distdraw\": 2.6,\n      \"edID\": 128834784,\n      \"eddbID\": 0,\n      \"falloff\": 1000,\n      \"fireint\": 0.2,\n      \"grp\": \"gpc\",\n      \"id\": \"xv\",\n      \"integrity\": 51,\n      \"mass\": 8,\n      \"mount\": \"T\",\n      \"piercing\": 95,\n      \"power\": 2.53,\n      \"range\": 3000,\n      \"rating\": \"D\",\n      \"reload\": 3,\n      \"shotspeed\": 1200,\n      \"thermload\": 6.4,\n      \"symbol\": \"Hpt_Guardian_PlasmaLauncher_Turret_Large\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/hardpoints/guardian_shard_cannon.json",
    "content": "{\n  \"gsc\": [\n    {\n      \"experimental\": true,\n      \"rating\": \"D\",\n      \"class\": 1,\n      \"grp\": \"gsc\",\n      \"id\": \"yO\",\n      \"eddbID\": 0,\n      \"edID\": 128891609,\n      \"mount\": \"F\",\n      \"cost\": 151650,\n      \"mass\": 2,\n      \"integrity\": 34,\n      \"power\": 0.87,\n      \"damage\": 2,\n      \"distdraw\": 0.42,\n      \"fireint\": 0.6,\n      \"thermload\": 0.7,\n      \"piercing\": 30,\n      \"range\": 1700,\n      \"shotspeed\": 1133,\n      \"roundspershot\": 12,\n      \"clip\": 5,\n      \"ammo\": 180,\n      \"reload\": 5,\n      \"breachdmg\": 1.6,\n      \"breachmin\": 0.6,\n      \"breachmax\": 0.8,\n      \"jitter\": 5,\n      \"symbol\": \"Hpt_Guardian_ShardCannon_Fixed_Small\",\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"falloff\": 1700\n    },\n    {\n      \"experimental\": true,\n      \"rating\": \"F\",\n      \"class\": 1,\n      \"grp\": \"gsc\",\n      \"id\": \"yP\",\n      \"eddbID\": 0,\n      \"edID\": 128891608,\n      \"mount\": \"T\",\n      \"cost\": 502000,\n      \"mass\": 2,\n      \"integrity\": 34,\n      \"power\": 0.72,\n      \"damage\": 1.1,\n      \"distdraw\": 0.36,\n      \"fireint\": 0.6,\n      \"thermload\": 0.6,\n      \"piercing\": 30,\n      \"range\": 1700,\n      \"shotspeed\": 1133,\n      \"roundspershot\": 12,\n      \"clip\": 5,\n      \"ammo\": 180,\n      \"reload\": 5,\n      \"breachdmg\": 0.9,\n      \"breachmin\": 0.6,\n      \"breachmax\": 0.8,\n      \"jitter\": 5,\n      \"symbol\": \"Hpt_Guardian_ShardCannon_Turret_Small\",\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"falloff\": 1700\n    },\n    {\n      \"experimental\": true,\n      \"rating\": \"A\",\n      \"class\": 2,\n      \"grp\": \"gsc\",\n      \"id\": \"2P\",\n      \"eddbID\": 0,\n      \"edID\": 128834000,\n      \"mount\": \"F\",\n      \"cost\": 507761,\n      \"mass\": 4,\n      \"integrity\": 42,\n      \"power\": 1.21,\n      \"damage\": 3.7,\n      \"distdraw\": 0.65,\n      \"fireint\": 0.6,\n      \"thermload\": 1.2,\n      \"piercing\": 45,\n      \"range\": 1700,\n      \"shotspeed\": 1133,\n      \"roundspershot\": 12,\n      \"clip\": 5,\n      \"ammo\": 180,\n      \"reload\": 5,\n      \"breachdmg\": 3,\n      \"breachmin\": 0.6,\n      \"breachmax\": 0.8,\n      \"jitter\": 5,\n      \"symbol\": \"Hpt_Guardian_ShardCannon_Fixed_Medium\",\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"falloff\": 1700\n    },\n    {\n      \"experimental\": true,\n      \"rating\": \"D\",\n      \"class\": 2,\n      \"grp\": \"gsc\",\n      \"id\": \"xw\",\n      \"eddbID\": 0,\n      \"edID\": 128834001,\n      \"mount\": \"T\",\n      \"cost\": 1767001,\n      \"mass\": 4,\n      \"integrity\": 42,\n      \"power\": 1.16,\n      \"damage\": 2.4,\n      \"distdraw\": 0.57,\n      \"fireint\": 0.6,\n      \"thermload\": 1.1,\n      \"piercing\": 45,\n      \"range\": 1700,\n      \"shotspeed\": 1133,\n      \"roundspershot\": 12,\n      \"clip\": 5,\n      \"ammo\": 180,\n      \"reload\": 5,\n      \"breachdmg\": 1.9,\n      \"breachmin\": 0.6,\n      \"breachmax\": 0.8,\n      \"jitter\": 5,\n      \"symbol\": \"Hpt_Guardian_ShardCannon_Turret_medium\",\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"falloff\": 1700\n    },\n    {\n      \"experimental\": true,\n      \"rating\": \"C\",\n      \"class\": 3,\n      \"grp\": \"gsc\",\n      \"id\": \"2Q\",\n      \"eddbID\": 0,\n      \"edID\": 128834778,\n      \"mount\": \"F\",\n      \"cost\": 1461350,\n      \"mass\": 8,\n      \"integrity\": 51,\n      \"power\": 1.68,\n      \"damage\": 5.2,\n      \"distdraw\": 1.4,\n      \"fireint\": 0.6,\n      \"thermload\": 2.2,\n      \"piercing\": 60,\n      \"range\": 1700,\n      \"shotspeed\": 1133,\n      \"clip\": 5,\n      \"ammo\": 180,\n      \"roundspershot\": 12,\n      \"reload\": 5,\n      \"breachdmg\": 4.2,\n      \"breachmin\": 0.6,\n      \"breachmax\": 0.8,\n      \"jitter\": 5,\n      \"symbol\": \"Hpt_Guardian_ShardCannon_Fixed_Large\",\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"falloff\": 1700\n    },\n    {\n      \"experimental\": true,\n      \"rating\": \"D\",\n      \"class\": 3,\n      \"grp\": \"gsc\",\n      \"id\": \"xx\",\n      \"eddbID\": 0,\n      \"edID\": 128834779,\n      \"mount\": \"T\",\n      \"cost\": 5865026,\n      \"mass\": 8,\n      \"integrity\": 51,\n      \"power\": 1.39,\n      \"damage\": 3.4,\n      \"distdraw\": 1.2,\n      \"fireint\": 0.6,\n      \"thermload\": 2,\n      \"piercing\": 60,\n      \"range\": 1700,\n      \"shotspeed\": 1133,\n      \"clip\": 5,\n      \"ammo\": 180,\n      \"roundspershot\": 12,\n      \"reload\": 5,\n      \"breachdmg\": 2.7,\n      \"breachmin\": 0.6,\n      \"breachmax\": 0.8,\n      \"jitter\": 5,\n      \"symbol\": \"Hpt_Guardian_ShardCannon_Turret_Large\",\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"falloff\": 1700\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/hardpoints/heat_sink_launcher.json",
    "content": "{\n  \"hs\": [\n    {\n      \"ammo\": 2,\n      \"ammocost\": 25,\n      \"class\": 0,\n      \"clip\": 1,\n      \"cost\": 3500,\n      \"distdraw\": 2,\n      \"drain\": 100,\n      \"duration\": 10,\n      \"edID\": 128049519,\n      \"eddbID\": 886,\n      \"eps\": 0.4,\n      \"fireint\": 5.0,\n      \"grp\": \"hs\",\n      \"id\": \"02\",\n      \"integrity\": 20,\n      \"mass\": 1.3,\n      \"name\": \"Heat Sink Launcher\",\n      \"passive\": 1,\n      \"power\": 0.2,\n      \"rating\": \"I\",\n      \"reload\": 10,\n      \"symbol\": \"Hpt_HeatSinkLauncher_Turret_Tiny\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/hardpoints/kill_warrant_scanner.json",
    "content": "{\n  \"kw\": [\n    {\n      \"class\": 0,\n      \"cost\": 13540,\n      \"edID\": 128662530,\n      \"eddbID\": 1237,\n      \"grp\": \"kw\",\n      \"id\": \"0n\",\n      \"integrity\": 32,\n      \"mass\": 1.3,\n      \"power\": 0.2,\n      \"range\": 2000,\n      \"rating\": \"E\",\n      \"scantime\": 10,\n      \"symbol\": \"Hpt_CrimeScanner_Size0_Class1\"\n    },\n    {\n      \"class\": 0,\n      \"cost\": 40630,\n      \"edID\": 128662531,\n      \"eddbID\": 1238,\n      \"grp\": \"kw\",\n      \"id\": \"0m\",\n      \"integrity\": 24,\n      \"mass\": 1.3,\n      \"power\": 0.4,\n      \"range\": 2500,\n      \"rating\": \"D\",\n      \"scantime\": 10,\n      \"symbol\": \"Hpt_CrimeScanner_Size0_Class2\"\n    },\n    {\n      \"class\": 0,\n      \"cost\": 121900,\n      \"edID\": 128662532,\n      \"eddbID\": 1239,\n      \"grp\": \"kw\",\n      \"id\": \"0l\",\n      \"integrity\": 40,\n      \"mass\": 1.3,\n      \"power\": 0.8,\n      \"range\": 3000,\n      \"rating\": \"C\",\n      \"scantime\": 10,\n      \"symbol\": \"Hpt_CrimeScanner_Size0_Class3\"\n    },\n    {\n      \"class\": 0,\n      \"cost\": 365700,\n      \"edID\": 128662533,\n      \"eddbID\": 1240,\n      \"grp\": \"kw\",\n      \"id\": \"0k\",\n      \"integrity\": 56,\n      \"mass\": 1.3,\n      \"power\": 1.6,\n      \"range\": 3500,\n      \"rating\": \"B\",\n      \"scantime\": 10,\n      \"symbol\": \"Hpt_CrimeScanner_Size0_Class4\"\n    },\n    {\n      \"class\": 0,\n      \"cost\": 1097100,\n      \"edID\": 128662534,\n      \"eddbID\": 1241,\n      \"grp\": \"kw\",\n      \"id\": \"0j\",\n      \"integrity\": 48,\n      \"mass\": 1.3,\n      \"power\": 3.2,\n      \"range\": 4000,\n      \"rating\": \"A\",\n      \"scantime\": 10,\n      \"symbol\": \"Hpt_CrimeScanner_Size0_Class5\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/hardpoints/mine_launcher.json",
    "content": "{\n  \"nl\": [\n    {\n      \"ammo\": 36,\n      \"breachdmg\": 0,\n      \"breachmax\": 0,\n      \"breachmin\": 0,\n      \"class\": 1,\n      \"clip\": 1,\n      \"cost\": 24260,\n      \"damage\": 44,\n      \"damagedist\": {\n        \"E\": 0.5,\n        \"T\": 0.5\n      },\n      \"distdraw\": 0,\n      \"edID\": 128049500,\n      \"eddbID\": 880,\n      \"fireint\": 1.0,\n      \"grp\": \"nl\",\n      \"id\": \"2j\",\n      \"integrity\": 40,\n      \"mass\": 2,\n      \"mount\": \"F\",\n      \"piercing\": 60,\n      \"power\": 0.4,\n      \"rating\": \"I\",\n      \"reload\": 2,\n      \"thermload\": 5,\n      \"symbol\": \"Hpt_MineLauncher_Fixed_Small\"\n    },\n    {\n      \"ammo\": 36,\n      \"breachdmg\": 0,\n      \"breachmax\": 0,\n      \"breachmin\": 0,\n      \"class\": 1,\n      \"clip\": 1,\n      \"cost\": 36400,\n      \"damage\": 32,\n      \"damagedist\": {\n        \"E\": 0.5,\n        \"T\": 0.5\n      },\n      \"distdraw\": 0,\n      \"edID\": 128671448,\n      \"eddbID\": 1523,\n      \"fireint\": 1.0,\n      \"grp\": \"nl\",\n      \"id\": \"kp\",\n      \"integrity\": 40,\n      \"mass\": 2,\n      \"mount\": \"F\",\n      \"name\": \"Shock Mine Launcher\",\n      \"piercing\": 60,\n      \"power\": 0.4,\n      \"rating\": \"I\",\n      \"reload\": 2,\n      \"thermload\": 5,\n      \"symbol\": \"Hpt_MineLauncher_Fixed_Small_Impulse\"\n    },\n    {\n      \"ammo\": 72,\n      \"breachdmg\": 0,\n      \"breachmax\": 0,\n      \"breachmin\": 0,\n      \"class\": 2,\n      \"clip\": 3,\n      \"cost\": 294080,\n      \"damage\": 44,\n      \"damagedist\": {\n        \"E\": 0.5,\n        \"T\": 0.5\n      },\n      \"distdraw\": 0,\n      \"edID\": 128049501,\n      \"eddbID\": 881,\n      \"fireint\": 1.0,\n      \"grp\": \"nl\",\n      \"id\": \"2k\",\n      \"integrity\": 51,\n      \"mass\": 4,\n      \"mount\": \"F\",\n      \"piercing\": 60,\n      \"power\": 0.4,\n      \"rating\": \"I\",\n      \"reload\": 6.6,\n      \"thermload\": 7.5,\n      \"symbol\": \"Hpt_MineLauncher_Fixed_Medium\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/hardpoints/mining_laser.json",
    "content": "{\n  \"ml\": [\n    {\n      \"breachdmg\": 0.3,\n      \"breachmax\": 0.2,\n      \"breachmin\": 0.1,\n      \"class\": 1,\n      \"cost\": 6800,\n      \"damage\": 2,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 1.5,\n      \"edID\": 128049525,\n      \"eddbID\": 888,\n      \"falloff\": 300,\n      \"grp\": \"ml\",\n      \"id\": \"2l\",\n      \"integrity\": 40,\n      \"mass\": 2,\n      \"mount\": \"F\",\n      \"piercing\": 18,\n      \"power\": 0.5,\n      \"range\": 500,\n      \"rating\": \"D\",\n      \"thermload\": 2,\n      \"symbol\": \"Hpt_MiningLaser_Fixed_Small\"\n    },\n    {\n      \"breachdmg\": 0.3,\n      \"breachmax\": 0.2,\n      \"breachmin\": 0.1,\n      \"class\": 1,\n      \"cost\": 9400,\n      \"damage\": 2,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 1.5,\n      \"edID\": 128740819,\n      \"eddbID\": 1587,\n      \"falloff\": 300,\n      \"grp\": \"ml\",\n      \"id\": \"w0\",\n      \"integrity\": 40,\n      \"mass\": 2,\n      \"mount\": \"T\",\n      \"piercing\": 18,\n      \"power\": 0.5,\n      \"range\": 500,\n      \"rating\": \"D\",\n      \"thermload\": 2,\n      \"symbol\": \"Hpt_MiningLaser_Turret_Small\"\n    },\n    {\n      \"breachdmg\": 1.2,\n      \"breachmax\": 0.2,\n      \"breachmin\": 0.1,\n      \"class\": 1,\n      \"cost\": 13600,\n      \"damage\": 8,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 1.75,\n      \"edID\": 128671340,\n      \"eddbID\": 1479,\n      \"falloff\": 400,\n      \"grp\": \"ml\",\n      \"id\": \"ml\",\n      \"integrity\": 40,\n      \"mass\": 2,\n      \"mount\": \"F\",\n      \"name\": \"Mining Lance\",\n      \"piercing\": 18,\n      \"power\": 0.7,\n      \"pp\": \"Zemina Torval\",\n      \"range\": 2000,\n      \"rating\": \"D\",\n      \"thermload\": 6,\n      \"symbol\": \"Hpt_MiningLaser_Fixed_Small_Advanced\"\n    },\n    {\n      \"breachdmg\": 0.6,\n      \"breachmax\": 0.2,\n      \"breachmin\": 0.1,\n      \"class\": 2,\n      \"cost\": 22580,\n      \"damage\": 4,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 3,\n      \"edID\": 128049526,\n      \"eddbID\": 889,\n      \"falloff\": 300,\n      \"grp\": \"ml\",\n      \"id\": \"2m\",\n      \"integrity\": 51,\n      \"mass\": 2,\n      \"mount\": \"F\",\n      \"piercing\": 18,\n      \"power\": 0.75,\n      \"range\": 500,\n      \"rating\": \"D\",\n      \"thermload\": 4,\n      \"symbol\": \"Hpt_MiningLaser_Fixed_Medium\"\n    },\n    {\n      \"breachdmg\": 0.6,\n      \"breachmax\": 0.2,\n      \"breachmin\": 0.1,\n      \"class\": 2,\n      \"cost\": 32578,\n      \"damage\": 4,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 3,\n      \"edID\": 128740820,\n      \"eddbID\": 1588,\n      \"falloff\": 300,\n      \"grp\": \"ml\",\n      \"id\": \"w1\",\n      \"integrity\": 51,\n      \"mass\": 2,\n      \"mount\": \"T\",\n      \"piercing\": 18,\n      \"power\": 0.75,\n      \"range\": 500,\n      \"rating\": \"D\",\n      \"thermload\": 4,\n      \"symbol\": \"Hpt_MiningLaser_Turret_Medium\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/hardpoints/missile_rack.json",
    "content": "{\n  \"mr\": [\n    {\n      \"ammo\": 16,\n      \"breachdmg\": 20,\n      \"breachmax\": 1,\n      \"breachmin\": 1,\n      \"class\": 1,\n      \"clip\": 8,\n      \"cost\": 32180,\n      \"damage\": 50,\n      \"damagedist\": {\n        \"E\": 1\n      },\n      \"distdraw\": 0.24,\n      \"edID\": 128666724,\n      \"eddbID\": 1326,\n      \"fireint\": 2.0,\n      \"grp\": \"mr\",\n      \"id\": \"2d\",\n      \"integrity\": 40,\n      \"mass\": 2,\n      \"missile\": \"D\",\n      \"mount\": \"F\",\n      \"piercing\": 60,\n      \"power\": 0.4,\n      \"rating\": \"B\",\n      \"reload\": 5,\n      \"shotspeed\": 750,\n      \"thermload\": 3.6,\n      \"symbol\": \"Hpt_DumbfireMissileRack_Fixed_Small\"\n    },\n    {\n      \"ammo\": 6,\n      \"breachdmg\": 16,\n      \"breachmax\": 0,\n      \"breachmin\": 0,\n      \"class\": 1,\n      \"clip\": 6,\n      \"cost\": 72600,\n      \"damage\": 40,\n      \"damagedist\": {\n        \"E\": 1\n      },\n      \"distdraw\": 0.24,\n      \"edID\": 128049492,\n      \"eddbID\": 878,\n      \"fireint\": 3,\n      \"grp\": \"mr\",\n      \"id\": \"2e\",\n      \"integrity\": 40,\n      \"mass\": 2,\n      \"missile\": \"S\",\n      \"mount\": \"F\",\n      \"piercing\": 60,\n      \"power\": 0.6,\n      \"rating\": \"B\",\n      \"reload\": 12,\n      \"shotspeed\": 625,\n      \"thermload\": 3.6,\n      \"symbol\": \"Hpt_BasicMissileRack_Fixed_Small\"\n    },\n    {\n      \"ammo\": 48,\n      \"breachdmg\": 20,\n      \"breachmax\": 1,\n      \"breachmin\": 1,\n      \"class\": 2,\n      \"clip\": 12,\n      \"cost\": 240400,\n      \"damage\": 50,\n      \"damagedist\": {\n        \"E\": 1\n      },\n      \"distdraw\": 0.24,\n      \"edID\": 128666725,\n      \"eddbID\": 1327,\n      \"eps\": 0.12,\n      \"fireint\": 2.0,\n      \"grp\": \"mr\",\n      \"hps\": 1.8,\n      \"id\": \"2f\",\n      \"integrity\": 51,\n      \"mass\": 4,\n      \"missile\": \"D\",\n      \"mount\": \"F\",\n      \"piercing\": 60,\n      \"power\": 1.2,\n      \"rating\": \"B\",\n      \"reload\": 5,\n      \"shotspeed\": 750,\n      \"thermload\": 3.6,\n      \"symbol\": \"Hpt_DumbfireMissileRack_Fixed_Medium\"\n    },\n    {\n      \"ammo\": 18,\n      \"breachdmg\": 16,\n      \"breachmax\": 0,\n      \"breachmin\": 0,\n      \"class\": 2,\n      \"clip\": 6,\n      \"cost\": 512400,\n      \"damage\": 40,\n      \"damagedist\": {\n        \"E\": 1\n      },\n      \"distdraw\": 0.24,\n      \"edID\": 128049493,\n      \"eddbID\": 879,\n      \"eps\": 0.07,\n      \"fireint\": 3,\n      \"grp\": \"mr\",\n      \"hps\": 1.08,\n      \"id\": \"2g\",\n      \"integrity\": 51,\n      \"mass\": 4,\n      \"missile\": \"S\",\n      \"mount\": \"F\",\n      \"piercing\": 60,\n      \"power\": 1.2,\n      \"rating\": \"B\",\n      \"reload\": 12,\n      \"shotspeed\": 625,\n      \"thermload\": 3.6,\n      \"symbol\": \"Hpt_BasicMissileRack_Fixed_Medium\"\n    },\n    {\n      \"ammo\": 48,\n      \"breachdmg\": 16,\n      \"breachmax\": 1,\n      \"breachmin\": 1,\n      \"class\": 2,\n      \"clip\": 12,\n      \"cost\": 1951040,\n      \"damage\": 40,\n      \"damagedist\": {\n        \"E\": 1\n      },\n      \"distdraw\": 0.24,\n      \"eddbID\": 1559,\n      \"grp\": \"mr\",\n      \"edID\": 128732552,\n      \"fireint\": 3,\n      \"id\": \"1z\",\n      \"integrity\": 51,\n      \"mass\": 4,\n      \"missile\": \"D\",\n      \"mount\": \"F\",\n      \"name\": \"Rocket Propelled FSD Disruptor\",\n      \"piercing\": 60,\n      \"power\": 1.2,\n      \"pp\": \"Yuri Grom\",\n      \"rating\": \"B\",\n      \"reload\": 5,\n      \"shotspeed\": 750,\n      \"thermload\": 3.6,\n      \"symbol\": \"Hpt_DumbfireMissileRack_Fixed_Medium_Lasso\"\n    },\n    {\n      \"ammo\": 120,\n      \"breachdmg\": 3,\n      \"breachmax\": 0,\n      \"breachmin\": 0,\n      \"class\": 2,\n      \"clip\": 12,\n      \"cost\": 768600,\n      \"damage\": 7.5,\n      \"damagedist\": {\n        \"E\": 1\n      },\n      \"distdraw\": 0.24,\n      \"edID\": 128671344,\n      \"eddbID\": 1480,\n      \"eps\": 1.92,\n      \"fireint\": 0.5,\n      \"grp\": \"mr\",\n      \"hps\": 28.8,\n      \"id\": \"Ph\",\n      \"integrity\": 51,\n      \"mass\": 4,\n      \"missile\": \"S\",\n      \"mount\": \"F\",\n      \"name\": \"Pack-Hound\",\n      \"piercing\": 60,\n      \"power\": 1.2,\n      \"pp\": \"Li Yong-Rui\",\n      \"rating\": \"B\",\n      \"reload\": 5,\n      \"roundspershot\": 4,\n      \"shotspeed\": 600,\n      \"thermload\": 3.6,\n      \"symbol\": \"Hpt_DrunkMissileRack_Fixed_Medium\"\n    },\n    {\n      \"ammo\": 96,\n      \"breachdmg\": 20,\n      \"breachmax\": 1,\n      \"breachmin\": 1,\n      \"class\": 3,\n      \"clip\": 12,\n      \"cost\": 1021501,\n      \"damage\": 50,\n      \"damagedist\": {\n        \"E\": 1\n      },\n      \"distdraw\": 0.24,\n      \"edID\": 128891602,\n      \"eddbID\": 1657,\n      \"fireint\": 2.0,\n      \"grp\": \"mr\",\n      \"id\": \"yI\",\n      \"integrity\": 64,\n      \"mass\": 8,\n      \"missile\": \"D\",\n      \"mount\": \"F\",\n      \"piercing\": 60,\n      \"power\": 1.62,\n      \"rating\": \"A\",\n      \"reload\": 5,\n      \"shotspeed\": 750,\n      \"thermload\": 3.6,\n      \"symbol\": \"Hpt_DumbfireMissileRack_Fixed_Large\"\n    },\n    {\n      \"ammo\": 36,\n      \"breachdmg\": 16,\n      \"breachmax\": 0,\n      \"breachmin\": 0,\n      \"class\": 3,\n      \"clip\": 6,\n      \"cost\": 1471030,\n      \"damage\": 40,\n      \"damagedist\": {\n        \"E\": 1\n      },\n      \"distdraw\": 0.24,\n      \"edID\": 128049494,\n      \"eddbID\": 1656,\n      \"fireint\": 3,\n      \"grp\": \"mr\",\n      \"id\": \"yJ\",\n      \"integrity\": 64,\n      \"mass\": 8,\n      \"missile\": \"S\",\n      \"mount\": \"F\",\n      \"piercing\": 60,\n      \"power\": 1.62,\n      \"rating\": \"A\",\n      \"reload\": 12,\n      \"shotspeed\": 625,\n      \"thermload\": 3.6,\n      \"symbol\": \"Hpt_BasicMissileRack_Fixed_Large\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/hardpoints/multi_cannon.json",
    "content": "{\n  \"mc\": [\n    {\n      \"ammo\": 2100,\n      \"breachdmg\": 1,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 1,\n      \"clip\": 100,\n      \"cost\": 9500,\n      \"damage\": 1.12,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"distdraw\": 0.06,\n      \"edID\": 128049455,\n      \"eddbID\": 867,\n      \"falloff\": 1800,\n      \"fireint\": 0.13,\n      \"grp\": \"mc\",\n      \"id\": \"23\",\n      \"integrity\": 40,\n      \"mass\": 2,\n      \"mount\": \"F\",\n      \"piercing\": 22,\n      \"power\": 0.28,\n      \"range\": 4000,\n      \"rating\": \"F\",\n      \"reload\": 4,\n      \"shotspeed\": 1600,\n      \"thermload\": 0.09,\n      \"symbol\": \"Hpt_MultiCannon_Fixed_Small\"\n    },\n    {\n      \"ammo\": 2100,\n      \"breachdmg\": 0.7,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 1,\n      \"clip\": 90,\n      \"cost\": 14250,\n      \"damage\": 0.82,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"distdraw\": 0.07,\n      \"edID\": 128049459,\n      \"eddbID\": 869,\n      \"falloff\": 1800,\n      \"fireint\": 0.12,\n      \"grp\": \"mc\",\n      \"id\": \"24\",\n      \"integrity\": 40,\n      \"mass\": 2,\n      \"mount\": \"G\",\n      \"piercing\": 22,\n      \"power\": 0.37,\n      \"range\": 4000,\n      \"rating\": \"G\",\n      \"reload\": 5,\n      \"shotspeed\": 1600,\n      \"thermload\": 0.1,\n      \"symbol\": \"Hpt_MultiCannon_Gimbal_Small\"\n    },\n    {\n      \"ammo\": 2100,\n      \"breachdmg\": 0.5,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 1,\n      \"clip\": 90,\n      \"cost\": 81600,\n      \"damage\": 0.56,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"distdraw\": 0.03,\n      \"edID\": 128049462,\n      \"eddbID\": 871,\n      \"falloff\": 1800,\n      \"fireint\": 0.14,\n      \"grp\": \"mc\",\n      \"id\": \"25\",\n      \"integrity\": 40,\n      \"mass\": 2,\n      \"mount\": \"T\",\n      \"piercing\": 22,\n      \"power\": 0.26,\n      \"range\": 4000,\n      \"rating\": \"G\",\n      \"reload\": 4,\n      \"shotspeed\": 1600,\n      \"thermload\": 0.04,\n      \"symbol\": \"Hpt_MultiCannon_Turret_Small\"\n    },\n    {\n      \"ammo\": 1000,\n      \"breachdmg\": 2.6,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 1,\n      \"clip\": 60,\n      \"cost\": 13980,\n      \"damage\": 2.9,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"distdraw\": 0.12,\n      \"edID\": 128671345,\n      \"eddbID\": 1481,\n      \"falloff\": 1800,\n      \"fireint\": 0.23,\n      \"grp\": \"mc\",\n      \"id\": \"e0\",\n      \"integrity\": 40,\n      \"mass\": 2,\n      \"mount\": \"F\",\n      \"name\": \"Enforcer\",\n      \"piercing\": 30,\n      \"power\": 0.28,\n      \"pp\": \"Pranav Antal\",\n      \"range\": 4500,\n      \"rating\": \"F\",\n      \"reload\": 4,\n      \"shotspeed\": 1800,\n      \"thermload\": 0.2,\n      \"symbol\": \"Hpt_MultiCannon_Fixed_Small_Strong\"\n    },\n    {\n      \"ammo\": 2100,\n      \"breachdmg\": 2,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 2,\n      \"clip\": 100,\n      \"cost\": 38000,\n      \"damage\": 2.19,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"distdraw\": 0.11,\n      \"edID\": 128049456,\n      \"eddbID\": 868,\n      \"falloff\": 1800,\n      \"fireint\": 0.14,\n      \"grp\": \"mc\",\n      \"id\": \"26\",\n      \"integrity\": 51,\n      \"mass\": 4,\n      \"mount\": \"F\",\n      \"piercing\": 37,\n      \"power\": 0.46,\n      \"range\": 4000,\n      \"rating\": \"E\",\n      \"reload\": 4,\n      \"shotspeed\": 1600,\n      \"thermload\": 0.18,\n      \"symbol\": \"Hpt_MultiCannon_Fixed_Medium\"\n    },\n    {\n      \"ammo\": 2100,\n      \"breachdmg\": 1.5,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 2,\n      \"clip\": 90,\n      \"cost\": 57000,\n      \"damage\": 1.64,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"distdraw\": 0.14,\n      \"edID\": 128049460,\n      \"eddbID\": 870,\n      \"falloff\": 1800,\n      \"fireint\": 0.13,\n      \"grp\": \"mc\",\n      \"id\": \"27\",\n      \"integrity\": 51,\n      \"mass\": 4,\n      \"mount\": \"G\",\n      \"piercing\": 37,\n      \"power\": 0.64,\n      \"range\": 4000,\n      \"rating\": \"F\",\n      \"reload\": 5,\n      \"shotspeed\": 1600,\n      \"thermload\": 0.2,\n      \"symbol\": \"Hpt_MultiCannon_Gimbal_Medium\"\n    },\n    {\n      \"ammo\": 2100,\n      \"breachdmg\": 1.1,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 2,\n      \"clip\": 90,\n      \"cost\": 1292800,\n      \"damage\": 1.17,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"distdraw\": 0.06,\n      \"edID\": 128049463,\n      \"eddbID\": 872,\n      \"falloff\": 1800,\n      \"fireint\": 0.16,\n      \"grp\": \"mc\",\n      \"id\": \"28\",\n      \"integrity\": 51,\n      \"mass\": 4,\n      \"mount\": \"T\",\n      \"piercing\": 37,\n      \"power\": 0.5,\n      \"range\": 4000,\n      \"rating\": \"F\",\n      \"reload\": 4,\n      \"shotspeed\": 1600,\n      \"thermload\": 0.09,\n      \"symbol\": \"Hpt_MultiCannon_Turret_Medium\"\n    },\n    {\n      \"ammo\": 2100,\n      \"breachdmg\": 3.5,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 3,\n      \"clip\": 100,\n      \"cost\": 140400,\n      \"damage\": 3.925,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"distdraw\": 0.18,\n      \"edID\": 128049457,\n      \"eddbID\": 1541,\n      \"falloff\": 1800,\n      \"fireint\": 0.17,\n      \"grp\": \"mc\",\n      \"id\": \"7k\",\n      \"integrity\": 64,\n      \"mass\": 8,\n      \"mount\": \"F\",\n      \"piercing\": 54,\n      \"power\": 0.64,\n      \"range\": 4000,\n      \"rating\": \"C\",\n      \"reload\": 4,\n      \"shotspeed\": 1600,\n      \"thermload\": 0.28,\n      \"symbol\": \"Hpt_MultiCannon_Fixed_Large\"\n    },\n    {\n      \"ammo\": 2100,\n      \"breachdmg\": 2.6,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 3,\n      \"clip\": 90,\n      \"cost\": 578436,\n      \"damage\": 2.84,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"distdraw\": 0.25,\n      \"edID\": 128049461,\n      \"eddbID\": 1543,\n      \"falloff\": 1800,\n      \"fireint\": 0.15,\n      \"grp\": \"mc\",\n      \"id\": \"7l\",\n      \"integrity\": 64,\n      \"mass\": 8,\n      \"mount\": \"G\",\n      \"piercing\": 54,\n      \"power\": 0.97,\n      \"range\": 4000,\n      \"rating\": \"C\",\n      \"reload\": 5,\n      \"shotspeed\": 1600,\n      \"thermload\": 0.34,\n      \"symbol\": \"Hpt_MultiCannon_Gimbal_Large\"\n    },\n    {\n      \"ammo\": 2100,\n      \"breachdmg\": 2,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 3,\n      \"clip\": 90,\n      \"cost\": 3794601,\n      \"damage\": 2.2,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"distdraw\": 0.16,\n      \"edID\": 128049464,\n      \"eddbID\": 1658,\n      \"falloff\": 2000,\n      \"fireint\": 0.19,\n      \"grp\": \"mc\",\n      \"id\": \"yH\",\n      \"integrity\": 64,\n      \"mass\": 8,\n      \"mount\": \"T\",\n      \"piercing\": 54,\n      \"power\": 0.86,\n      \"range\": 4000,\n      \"rating\": \"E\",\n      \"reload\": 4,\n      \"shotspeed\": 1600,\n      \"thermload\": 0.2,\n      \"symbol\": \"Hpt_MultiCannon_Turret_Large\"\n    },\n    {\n      \"ammo\": 2100,\n      \"breachdmg\": 4.2,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 4,\n      \"clip\": 100,\n      \"cost\": 1177600,\n      \"damage\": 4.625,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"distdraw\": 0.24,\n      \"edID\": 128049458,\n      \"eddbID\": 1542,\n      \"falloff\": 1800,\n      \"fireint\": 0.33,\n      \"grp\": \"mc\",\n      \"id\": \"7n\",\n      \"integrity\": 80,\n      \"mass\": 16,\n      \"mount\": \"F\",\n      \"piercing\": 68,\n      \"power\": 0.73,\n      \"range\": 4000,\n      \"rating\": \"A\",\n      \"reload\": 4,\n      \"roundspershot\": 2,\n      \"shotspeed\": 1600,\n      \"thermload\": 0.39,\n      \"symbol\": \"Hpt_MultiCannon_Fixed_Huge\"\n    },\n    {\n      \"ammo\": 2100,\n      \"breachdmg\": 3.1,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 4,\n      \"clip\": 90,\n      \"cost\": 6377600,\n      \"damage\": 3.46,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"distdraw\": 0.37,\n      \"edID\": 128681996,\n      \"eddbID\": 1546,\n      \"falloff\": 1800,\n      \"fireint\": 0.297,\n      \"grp\": \"mc\",\n      \"id\": \"7o\",\n      \"integrity\": 80,\n      \"mass\": 16,\n      \"mount\": \"G\",\n      \"piercing\": 68,\n      \"power\": 1.22,\n      \"range\": 4000,\n      \"rating\": \"A\",\n      \"reload\": 5,\n      \"roundspershot\": 2,\n      \"shotspeed\": 1600,\n      \"thermload\": 0.51,\n      \"symbol\": \"Hpt_MultiCannon_Gimbal_Huge\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/hardpoints/plasma_accelerator.json",
    "content": "{\n  \"pa\": [\n    {\n      \"ammo\": 100,\n      \"breachdmg\": 44.2,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 2,\n      \"clip\": 5,\n      \"cost\": 834200,\n      \"damage\": 54.3,\n      \"damagedist\": {\n        \"A\": 0.6,\n        \"K\": 0.2,\n        \"T\": 0.2\n      },\n      \"distdraw\": 8.65,\n      \"edID\": 128049465,\n      \"eddbID\": 873,\n      \"falloff\": 2000,\n      \"fireint\": 3.03,\n      \"grp\": \"pa\",\n      \"id\": \"1g\",\n      \"integrity\": 51,\n      \"mass\": 4,\n      \"mount\": \"F\",\n      \"piercing\": 100,\n      \"power\": 1.43,\n      \"range\": 3500,\n      \"rating\": \"C\",\n      \"reload\": 6,\n      \"shotspeed\": 875,\n      \"thermload\": 15.6,\n      \"symbol\": \"Hpt_PlasmaAccelerator_Fixed_Medium\"\n    },\n    {\n      \"ammo\": 100,\n      \"breachdmg\": 68,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 3,\n      \"clip\": 5,\n      \"cost\": 3051200,\n      \"damage\": 83.4,\n      \"damagedist\": {\n        \"A\": 0.6,\n        \"K\": 0.2,\n        \"T\": 0.2\n      },\n      \"distdraw\": 13.6,\n      \"edID\": 128049466,\n      \"eddbID\": 874,\n      \"falloff\": 2000,\n      \"fireint\": 3.45,\n      \"grp\": \"pa\",\n      \"id\": \"2b\",\n      \"integrity\": 64,\n      \"mass\": 8,\n      \"mount\": \"F\",\n      \"piercing\": 100,\n      \"power\": 1.97,\n      \"range\": 3500,\n      \"rating\": \"B\",\n      \"reload\": 6,\n      \"shotspeed\": 875,\n      \"thermload\": 21.75,\n      \"symbol\": \"Hpt_PlasmaAccelerator_Fixed_Large\"\n    },\n    {\n      \"ammo\": 300,\n      \"breachdmg\": 30.9,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 3,\n      \"clip\": 20,\n      \"cost\": 4119120,\n      \"damage\": 34.5,\n      \"damagedist\": {\n        \"A\": 0.6,\n        \"K\": 0.2,\n        \"T\": 0.2\n      },\n      \"distdraw\": 5.5,\n      \"edID\": 128671339,\n      \"eddbID\": 1482,\n      \"falloff\": 2000,\n      \"fireint\": 1.25,\n      \"grp\": \"pa\",\n      \"id\": \"Ap\",\n      \"integrity\": 64,\n      \"mass\": 8,\n      \"mount\": \"F\",\n      \"name\": \"Advanced Plasma Accelerator\",\n      \"piercing\": 100,\n      \"power\": 1.97,\n      \"pp\": \"Denton Patreus\",\n      \"range\": 3500,\n      \"rating\": \"B\",\n      \"reload\": 6,\n      \"shotspeed\": 875,\n      \"thermload\": 11,\n      \"symbol\": \"Hpt_PlasmaAccelerator_Fixed_Large_Advanced\"\n    },\n    {\n      \"ammo\": 100,\n      \"breachdmg\": 102,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 4,\n      \"clip\": 5,\n      \"cost\": 13793600,\n      \"damage\": 125.2,\n      \"damagedist\": {\n        \"A\": 0.6,\n        \"K\": 0.2,\n        \"T\": 0.2\n      },\n      \"distdraw\": 21.04,\n      \"edID\": 128049467,\n      \"eddbID\": 875,\n      \"falloff\": 2000,\n      \"fireint\": 4.0,\n      \"grp\": \"pa\",\n      \"id\": \"2c\",\n      \"integrity\": 80,\n      \"mass\": 16,\n      \"mount\": \"F\",\n      \"piercing\": 100,\n      \"power\": 2.63,\n      \"range\": 3500,\n      \"rating\": \"A\",\n      \"reload\": 6,\n      \"shotspeed\": 875,\n      \"thermload\": 29.5,\n      \"symbol\": \"Hpt_PlasmaAccelerator_Fixed_Huge\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/hardpoints/point_defence.json",
    "content": "{\n  \"po\": [\n    {\n      \"ammo\": 10000,\n      \"burst\": 4,\n      \"burstrof\": 15,\n      \"class\": 0,\n      \"clip\": 12,\n      \"cost\": 18550,\n      \"damage\": 0.2,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"edID\": 128049522,\n      \"eddbID\": 887,\n      \"fireint\": 0.2,\n      \"grp\": \"po\",\n      \"id\": \"03\",\n      \"integrity\": 30,\n      \"jitter\": 0.75,\n      \"mass\": 0.5,\n      \"name\": \"Point Defence\",\n      \"passive\": 1,\n      \"power\": 0.2,\n      \"range\": 2500,\n      \"rating\": \"I\",\n      \"reload\": 0.4,\n      \"shotspeed\": 1000,\n      \"thermload\": 0.1,\n      \"symbol\": \"Hpt_PlasmaPointDefence_Turret_Tiny\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/hardpoints/pulse_laser.json",
    "content": "{\n  \"pl\": [\n    {\n      \"breachdmg\": 1.7,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 1,\n      \"cost\": 2200,\n      \"damage\": 2.05,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 0.3,\n      \"edID\": 128049381,\n      \"eddbID\": 823,\n      \"falloff\": 500,\n      \"fireint\": 0.26,\n      \"grp\": \"pl\",\n      \"id\": \"17\",\n      \"integrity\": 40,\n      \"mass\": 2,\n      \"mount\": \"F\",\n      \"piercing\": 20,\n      \"power\": 0.39,\n      \"range\": 3000,\n      \"rating\": \"F\",\n      \"thermload\": 0.33,\n      \"symbol\": \"Hpt_PulseLaser_Fixed_Small\"\n    },\n    {\n      \"breachdmg\": 1.3,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 1,\n      \"cost\": 6600,\n      \"damage\": 1.56,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 0.31,\n      \"edID\": 128049385,\n      \"eddbID\": 826,\n      \"falloff\": 500,\n      \"fireint\": 0.25,\n      \"grp\": \"pl\",\n      \"id\": \"18\",\n      \"integrity\": 40,\n      \"mass\": 2,\n      \"mount\": \"G\",\n      \"piercing\": 20,\n      \"power\": 0.39,\n      \"range\": 3000,\n      \"rating\": \"G\",\n      \"thermload\": 0.31,\n      \"symbol\": \"Hpt_PulseLaser_Gimbal_Small\"\n    },\n    {\n      \"breachdmg\": 1,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 1,\n      \"cost\": 26000,\n      \"damage\": 1.19,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 0.19,\n      \"edID\": 128049388,\n      \"eddbID\": 829,\n      \"falloff\": 500,\n      \"fireint\": 0.3,\n      \"grp\": \"pl\",\n      \"id\": \"19\",\n      \"integrity\": 40,\n      \"mass\": 2,\n      \"mount\": \"T\",\n      \"piercing\": 20,\n      \"power\": 0.38,\n      \"range\": 3000,\n      \"rating\": \"G\",\n      \"thermload\": 0.19,\n      \"symbol\": \"Hpt_PulseLaser_Turret_Small\"\n    },\n    {\n      \"breachdmg\": 3,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 2,\n      \"cost\": 17600,\n      \"damage\": 3.5,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 0.5,\n      \"edID\": 128049382,\n      \"eddbID\": 824,\n      \"falloff\": 500,\n      \"fireint\": 0.29,\n      \"grp\": \"pl\",\n      \"id\": \"1a\",\n      \"integrity\": 51,\n      \"mass\": 4,\n      \"mount\": \"F\",\n      \"piercing\": 35,\n      \"power\": 0.6,\n      \"range\": 3000,\n      \"rating\": \"E\",\n      \"thermload\": 0.56,\n      \"symbol\": \"Hpt_PulseLaser_Fixed_Medium\"\n    },\n    {\n      \"breachdmg\": 2.3,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 2,\n      \"cost\": 35400,\n      \"damage\": 2.68,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 0.54,\n      \"edID\": 128049386,\n      \"eddbID\": 827,\n      \"falloff\": 500,\n      \"fireint\": 0.28,\n      \"grp\": \"pl\",\n      \"id\": \"1b\",\n      \"integrity\": 51,\n      \"mass\": 4,\n      \"mount\": \"G\",\n      \"piercing\": 35,\n      \"power\": 0.6,\n      \"range\": 3000,\n      \"rating\": \"F\",\n      \"thermload\": 0.54,\n      \"symbol\": \"Hpt_PulseLaser_Gimbal_Medium\"\n    },\n    {\n      \"breachdmg\": 1.7,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 2,\n      \"cost\": 132800,\n      \"damage\": 2.05,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 0.33,\n      \"edID\": 128049389,\n      \"eddbID\": 830,\n      \"falloff\": 500,\n      \"fireint\": 0.33,\n      \"grp\": \"pl\",\n      \"id\": \"1c\",\n      \"integrity\": 51,\n      \"mass\": 4,\n      \"mount\": \"T\",\n      \"piercing\": 35,\n      \"power\": 0.58,\n      \"range\": 3000,\n      \"rating\": \"F\",\n      \"thermload\": 0.33,\n      \"symbol\": \"Hpt_PulseLaser_Turret_Medium\"\n    },\n    {\n      \"breachdmg\": 2.4,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 2,\n      \"cost\": 26400,\n      \"damage\": 2.8,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 0.9,\n      \"edID\": 128671342,\n      \"eddbID\": 1483,\n      \"falloff\": 500,\n      \"fireint\": 0.6,\n      \"grp\": \"pl\",\n      \"id\": \"PL\",\n      \"integrity\": 51,\n      \"mass\": 4,\n      \"mount\": \"F\",\n      \"name\": \"Disruptor\",\n      \"piercing\": 35,\n      \"power\": 0.7,\n      \"pp\": \"Felicia Winters\",\n      \"rating\": \"E\",\n      \"thermload\": 1,\n      \"symbol\": \"Hpt_PulseLaser_Fixed_Medium_Disruptor\"\n    },\n    {\n      \"breachdmg\": 5.1,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 3,\n      \"cost\": 70400,\n      \"damage\": 5.98,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 0.86,\n      \"edID\": 128049383,\n      \"eddbID\": 825,\n      \"falloff\": 500,\n      \"fireint\": 0.33,\n      \"grp\": \"pl\",\n      \"id\": \"1d\",\n      \"integrity\": 64,\n      \"mass\": 8,\n      \"mount\": \"F\",\n      \"piercing\": 52,\n      \"power\": 0.9,\n      \"range\": 3000,\n      \"rating\": \"D\",\n      \"thermload\": 0.96,\n      \"symbol\": \"Hpt_PulseLaser_Fixed_Large\"\n    },\n    {\n      \"breachdmg\": 3.9,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 3,\n      \"cost\": 140600,\n      \"damage\": 4.58,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 0.92,\n      \"edID\": 128049387,\n      \"eddbID\": 828,\n      \"falloff\": 500,\n      \"fireint\": 0.31,\n      \"grp\": \"pl\",\n      \"id\": \"1e\",\n      \"integrity\": 64,\n      \"mass\": 8,\n      \"mount\": \"G\",\n      \"piercing\": 52,\n      \"power\": 0.92,\n      \"range\": 3000,\n      \"rating\": \"E\",\n      \"thermload\": 0.92,\n      \"symbol\": \"Hpt_PulseLaser_Gimbal_Large\"\n    },\n    {\n      \"breachdmg\": 3,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 3,\n      \"cost\": 400400,\n      \"damage\": 3.5,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 0.56,\n      \"edID\": 128049390,\n      \"eddbID\": 831,\n      \"falloff\": 500,\n      \"fireint\": 0.37,\n      \"grp\": \"pl\",\n      \"id\": \"1f\",\n      \"integrity\": 64,\n      \"mass\": 8,\n      \"mount\": \"T\",\n      \"piercing\": 52,\n      \"power\": 0.89,\n      \"range\": 3000,\n      \"rating\": \"F\",\n      \"thermload\": 0.56,\n      \"symbol\": \"Hpt_PulseLaser_Turret_Large\"\n    },\n    {\n      \"breachdmg\": 8.7,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 4,\n      \"cost\": 177600,\n      \"damage\": 10.24,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 1.48,\n      \"edID\": 128049384,\n      \"eddbID\": 1539,\n      \"falloff\": 500,\n      \"fireint\": 0.38,\n      \"grp\": \"pl\",\n      \"id\": \"7q\",\n      \"integrity\": 80,\n      \"mass\": 16,\n      \"mount\": \"F\",\n      \"piercing\": 65,\n      \"power\": 1.33,\n      \"range\": 3000,\n      \"rating\": \"A\",\n      \"thermload\": 1.64,\n      \"symbol\": \"Hpt_PulseLaser_Fixed_Huge\"\n    },\n    {\n      \"breachdmg\": 6.6,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 4,\n      \"cost\": 877600,\n      \"damage\": 7.82,\n      \"damagedist\": {\n        \"T\": 1\n      },\n      \"distdraw\": 1.56,\n      \"edID\": 128681995,\n      \"eddbID\": 1545,\n      \"falloff\": 500,\n      \"fireint\": 0.36,\n      \"grp\": \"pl\",\n      \"id\": \"7r\",\n      \"integrity\": 80,\n      \"mass\": 16,\n      \"mount\": \"G\",\n      \"piercing\": 65,\n      \"power\": 1.37,\n      \"range\": 3000,\n      \"rating\": \"A\",\n      \"thermload\": 1.56,\n      \"symbol\": \"Hpt_PulseLaser_Gimbal_Huge\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/hardpoints/pulse_wave_analyser.json",
    "content": "{\n  \"pwa\": [\n    {\n      \"rating\": \"A\",\n      \"class\": 0,\n      \"mass\": 1.3,\n      \"eddbID\": 0,\n      \"power\": 3.2,\n      \"integrity\": 48,\n      \"cost\": 1097096,\n      \"id\": \"2x\",\n      \"maxangle\": 15,\n      \"scanrange\": 24000,\n      \"scantime\": 3,\n      \"grp\": \"pwa\",\n      \"boot\": 3,\n      \"edID\": 128915722,\n      \"symbol\": \"Hpt_MRAScanner_Size0_Class5\"\n    },\n    {\n      \"rating\": \"B\",\n      \"class\": 0,\n      \"mass\": 1.3,\n      \"eddbID\": 0,\n      \"power\": 1.6,\n      \"integrity\": 56,\n      \"cost\": 406332,\n      \"id\": \"2y\",\n      \"maxangle\": 15,\n      \"boot\": 3,\n      \"scanrange\": 21000,\n      \"scantime\": 3.08,\n      \"grp\": \"pwa\",\n      \"edID\": 128915721,\n      \"symbol\": \"hpt_mrascanner_size0_class4\"\n    },\n    {\n      \"rating\": \"C\",\n      \"class\": 0,\n      \"mass\": 1.3,\n      \"eddbID\": 0,\n      \"power\": 0.8,\n      \"integrity\": 40,\n      \"cost\": 121901,\n      \"id\": \"2z\",\n      \"maxangle\": 15,\n      \"boot\": 3,\n      \"scanrange\": 18000,\n      \"scantime\": 3,\n      \"grp\": \"pwa\",\n      \"edID\": 128915720,\n      \"symbol\": \"hpt_mrascanner_size0_class3\"\n    },\n    {\n      \"rating\": \"D\",\n      \"class\": 0,\n      \"mass\": 1.3,\n      \"eddbID\": 0,\n      \"power\": 0.4,\n      \"integrity\": 24,\n      \"cost\": 40634,\n      \"id\": \"3J\",\n      \"maxangle\": 15,\n      \"boot\": 3,\n      \"scanrange\": 15000,\n      \"scantime\": 3,\n      \"grp\": \"pwa\",\n      \"edID\": 128915719,\n      \"symbol\": \"hpt_mrascanner_size0_class2\"\n    },\n    {\n      \"rating\": \"E\",\n      \"class\": 0,\n      \"mass\": 1.3,\n      \"eddbID\": 0,\n      \"power\": 0.2,\n      \"integrity\": 24,\n      \"cost\": 13545,\n      \"id\": \"3K\",\n      \"maxangle\": 15,\n      \"boot\": 3,\n      \"scanrange\": 12000,\n      \"scantime\": 3,\n      \"grp\": \"pwa\",\n      \"edID\": 128915718,\n      \"symbol\": \"hpt_mrascanner_size0_class1\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/hardpoints/rail_gun.json",
    "content": "{\n  \"rg\": [\n    {\n      \"ammo\": 80,\n      \"breachdmg\": 22.2,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 1,\n      \"clip\": 1,\n      \"cost\": 51600,\n      \"damage\": 23.25,\n      \"damagedist\": {\n        \"T\": 0.66666666666666666666666666666667,\n        \"K\": 0.33333333333333333333333333333333\n      },\n      \"distdraw\": 2.69,\n      \"edID\": 128049488,\n      \"eddbID\": 876,\n      \"falloff\": 1000,\n      \"fireint\": 0.63,\n      \"grp\": \"rg\",\n      \"id\": \"29\",\n      \"integrity\": 40,\n      \"mass\": 2,\n      \"mount\": \"F\",\n      \"piercing\": 100,\n      \"power\": 1.15,\n      \"range\": 3000,\n      \"rating\": \"D\",\n      \"reload\": 1,\n      \"thermload\": 12,\n      \"symbol\": \"Hpt_Railgun_Fixed_Small\"\n    },\n    {\n      \"ammo\": 80,\n      \"breachdmg\": 39.5,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"class\": 2,\n      \"clip\": 1,\n      \"cost\": 412800,\n      \"damage\": 41.5,\n      \"damagedist\": {\n        \"T\": 0.66666666666666666666666666666667,\n        \"K\": 0.33333333333333333333333333333333\n      },\n      \"distdraw\": 5.11,\n      \"edID\": 128049489,\n      \"eddbID\": 877,\n      \"falloff\": 1000,\n      \"fireint\": 0.83,\n      \"grp\": \"rg\",\n      \"id\": \"2a\",\n      \"integrity\": 51,\n      \"mass\": 4,\n      \"mount\": \"F\",\n      \"piercing\": 100,\n      \"power\": 1.63,\n      \"range\": 3000,\n      \"rating\": \"B\",\n      \"reload\": 1,\n      \"thermload\": 20,\n      \"symbol\": \"Hpt_Railgun_Fixed_Medium\"\n    },\n    {\n      \"ammo\": 240,\n      \"breachdmg\": 14.3,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"burst\": 3,\n      \"burstrof\": 6,\n      \"class\": 2,\n      \"clip\": 3,\n      \"cost\": 619200,\n      \"damage\": 15,\n      \"damagedist\": {\n        \"T\": 0.66666666666666666666666666666667,\n        \"K\": 0.33333333333333333333333333333333\n      },\n      \"distdraw\": 2,\n      \"edID\": 128671341,\n      \"eddbID\": 1484,\n      \"falloff\": 1000,\n      \"fireint\": 0.4,\n      \"grp\": \"rg\",\n      \"id\": \"ih\",\n      \"integrity\": 51,\n      \"mass\": 4,\n      \"mount\": \"F\",\n      \"name\": \"Imperial Hammer\",\n      \"piercing\": 100,\n      \"power\": 1.63,\n      \"pp\": \"Arissa Lavigny-Duval\",\n      \"range\": 3000,\n      \"rating\": \"B\",\n      \"reload\": 1,\n      \"thermload\": 11,\n      \"symbol\": \"Hpt_Railgun_Fixed_Medium_Burst\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/hardpoints/remote_release_flak_launcher.json",
    "content": "{\n  \"rfl\": [\n    {\n      \"ammo\": 32,\n      \"breachdmg\": 1.7,\n      \"breachmax\": 1,\n      \"breachmin\": 1,\n      \"class\": 2,\n      \"clip\": 1,\n      \"cost\": 261800,\n      \"damage\": 34,\n      \"damagedist\": {\n        \"E\": 1\n      },\n      \"distdraw\": 0.24,\n      \"edID\": 128785626,\n      \"eddbID\": 1620,\n      \"falloff\": 100000,\n      \"fireint\": 2.0,\n      \"grp\": \"rfl\",\n      \"id\": \"x8\",\n      \"integrity\": 51,\n      \"mass\": 4,\n      \"mount\": \"F\",\n      \"piercing\": 60,\n      \"power\": 1.2,\n      \"rating\": \"B\",\n      \"reload\": 2,\n      \"shotspeed\": 550,\n      \"thermload\": 3.6,\n      \"symbol\": \"Hpt_FlakMortar_Fixed_Medium\"\n    },\n    {\n      \"ammo\": 32,\n      \"breachdmg\": 1.7,\n      \"breachmax\": 1,\n      \"breachmin\": 1,\n      \"class\": 2,\n      \"clip\": 1,\n      \"cost\": 1259200,\n      \"damage\": 34,\n      \"damagedist\": {\n        \"E\": 1\n      },\n      \"distdraw\": 0.24,\n      \"edID\": 128793058,\n      \"eddbID\": 1621,\n      \"falloff\": 100000,\n      \"fireint\": 2.0,\n      \"grp\": \"rfl\",\n      \"id\": \"x9\",\n      \"integrity\": 51,\n      \"mass\": 4,\n      \"mount\": \"T\",\n      \"piercing\": 60,\n      \"power\": 1.2,\n      \"rating\": \"B\",\n      \"reload\": 2,\n      \"shotspeed\": 550,\n      \"thermload\": 3.6,\n      \"symbol\": \"Hpt_FlakMortar_Turret_Medium\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/hardpoints/remote_release_flechette_launcher.json",
    "content": "{\n  \"tbrfl\": [\n    {\n      \"rating\": \"B\",\n      \"class\": 2,\n      \"grp\": \"tbrfl\",\n      \"id\": \"xy\",\n      \"eddbID\": 0,\n      \"edID\": 128833996,\n      \"mount\": \"F\",\n      \"cost\": 353761,\n      \"mass\": 4,\n      \"integrity\": 51,\n      \"power\": 1.2,\n      \"damage\": 13,\n      \"distdraw\": 0.24,\n      \"fireint\": 2.0,\n      \"thermload\": 3.6,\n      \"piercing\": 80,\n      \"shotspeed\": 550,\n      \"clip\": 1,\n      \"ammo\": 72,\n      \"reload\": 2,\n      \"breachdmg\": 6.5,\n      \"breachmin\": 1,\n      \"breachmax\": 1,\n      \"symbol\": \"Hpt_FlechetteLauncher_Fixed_Medium\",\n      \"damagedist\": {\n        \"K\": 1\n      }\n    },\n    {\n      \"rating\": \"B\",\n      \"class\": 2,\n      \"grp\": \"tbrfl\",\n      \"id\": \"yF\",\n      \"eddbID\": 0,\n      \"edID\": 128833997,\n      \"mount\": \"T\",\n      \"cost\": 1279200,\n      \"mass\": 4,\n      \"integrity\": 51,\n      \"power\": 1.2,\n      \"damage\": 13,\n      \"distdraw\": 0.24,\n      \"fireint\": 2.0,\n      \"thermload\": 3.6,\n      \"piercing\": 70,\n      \"shotspeed\": 550,\n      \"clip\": 1,\n      \"ammo\": 72,\n      \"reload\": 2,\n      \"breachdmg\": 6.5,\n      \"breachmin\": 1,\n      \"breachmax\": 1,\n      \"symbol\": \"Hpt_FlechetteLauncher_Turret_Medium\",\n      \"damagedist\": {\n        \"K\": 1\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/hardpoints/seismic_charge_launcher.json",
    "content": "{\n  \"scl\": [\n    {\n      \"breachdmg\": 3,\n      \"breachmax\": 0,\n      \"shotspeed\": 350,\n      \"breachmin\": 0,\n      \"class\": 2,\n      \"cost\": 445570,\n      \"damage\": 15,\n      \"chargetime\": 2,\n      \"damagedist\": {\n        \"E\": 1\n      },\n      \"distdraw\": 0.24,\n      \"edID\": 128915461,\n      \"eddbID\": 823,\n      \"falloff\": 500,\n      \"fireint\": 1.0,\n      \"ammo\": 72,\n      \"clip\": 1,\n      \"grp\": \"scl\",\n      \"id\": \"3L\",\n      \"integrity\": 51,\n      \"mass\": 4,\n      \"mount\": \"T\",\n      \"piercing\": 35,\n      \"power\": 1.2,\n      \"range\": 3000,\n      \"rating\": \"B\",\n      \"thermload\": 3.6,\n      \"symbol\": \"Hpt_Mining_SeismChrgWarhd_Turret_Medium\"\n    },\n    {\n      \"breachdmg\": 3,\n      \"breachmax\": 0,\n      \"shotspeed\": 350,\n      \"breachmin\": 0,\n      \"class\": 2,\n      \"cost\": 170123,\n      \"damage\": 15,\n      \"chargetime\": 2,\n      \"damagedist\": {\n        \"E\": 1\n      },\n      \"distdraw\": 0.24,\n      \"edID\": 128049381,\n      \"eddbID\": 823,\n      \"falloff\": 500,\n      \"fireint\": 1.0,\n      \"ammo\": 72,\n      \"clip\": 1,\n      \"grp\": \"scl\",\n      \"id\": \"3M\",\n      \"integrity\": 51,\n      \"mass\": 4,\n      \"mount\": \"F\",\n      \"piercing\": 35,\n      \"power\": 1.2,\n      \"range\": 3000,\n      \"rating\": \"B\",\n      \"thermload\": 3.6,\n      \"symbol\": \"Hpt_Mining_SeismChrgWarhd_Fixed_Medium\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/hardpoints/shield_booster.json",
    "content": "{\n  \"sb\": [\n    {\n      \"class\": 0,\n      \"cost\": 10000,\n      \"edID\": 128668532,\n      \"eddbID\": 1368,\n      \"grp\": \"sb\",\n      \"id\": \"08\",\n      \"integrity\": 25,\n      \"mass\": 0.5,\n      \"passive\": 1,\n      \"power\": 0.2,\n      \"rating\": \"E\",\n      \"shieldboost\": 0.04,\n      \"explres\": 0,\n      \"kinres\": 0,\n      \"thermres\": 0,\n      \"symbol\": \"Hpt_ShieldBooster_Size0_Class1\"\n    },\n    {\n      \"class\": 0,\n      \"cost\": 23000,\n      \"edID\": 128668533,\n      \"eddbID\": 1369,\n      \"grp\": \"sb\",\n      \"id\": \"07\",\n      \"integrity\": 35,\n      \"mass\": 1,\n      \"passive\": 1,\n      \"power\": 0.5,\n      \"rating\": \"D\",\n      \"shieldboost\": 0.08,\n      \"explres\": 0,\n      \"kinres\": 0,\n      \"thermres\": 0,\n      \"symbol\": \"Hpt_ShieldBooster_Size0_Class2\"\n    },\n    {\n      \"class\": 0,\n      \"cost\": 53000,\n      \"edID\": 128668534,\n      \"eddbID\": 1370,\n      \"grp\": \"sb\",\n      \"id\": \"06\",\n      \"integrity\": 40,\n      \"mass\": 2,\n      \"passive\": 1,\n      \"power\": 0.7,\n      \"rating\": \"C\",\n      \"shieldboost\": 0.12,\n      \"explres\": 0,\n      \"kinres\": 0,\n      \"thermres\": 0,\n      \"symbol\": \"Hpt_ShieldBooster_Size0_Class3\"\n    },\n    {\n      \"class\": 0,\n      \"cost\": 122000,\n      \"edID\": 128668535,\n      \"eddbID\": 1371,\n      \"grp\": \"sb\",\n      \"id\": \"05\",\n      \"integrity\": 45,\n      \"mass\": 3,\n      \"passive\": 1,\n      \"power\": 1,\n      \"rating\": \"B\",\n      \"shieldboost\": 0.16,\n      \"explres\": 0,\n      \"kinres\": 0,\n      \"thermres\": 0,\n      \"symbol\": \"Hpt_ShieldBooster_Size0_Class4\"\n    },\n    {\n      \"class\": 0,\n      \"cost\": 281000,\n      \"edID\": 128668536,\n      \"eddbID\": 1372,\n      \"grp\": \"sb\",\n      \"id\": \"04\",\n      \"integrity\": 48,\n      \"mass\": 3.5,\n      \"passive\": 1,\n      \"power\": 1.2,\n      \"rating\": \"A\",\n      \"shieldboost\": 0.2,\n      \"explres\": 0,\n      \"kinres\": 0,\n      \"thermres\": 0,\n      \"symbol\": \"Hpt_ShieldBooster_Size0_Class5\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/hardpoints/shock_cannon.json",
    "content": "{\n  \"tbsc\": [\n    {\n      \"rating\": \"C\",\n      \"class\": 3,\n      \"grp\": \"tbsc\",\n      \"id\": \"yG\",\n      \"eddbID\": 0,\n      \"edID\": 128834780,\n      \"mount\": \"F\",\n      \"cost\": 1015750,\n      \"mass\": 8,\n      \"integrity\": 64,\n      \"power\": 0.89,\n      \"damage\": 18.1,\n      \"distdraw\": 0.92,\n      \"fireint\": 0.1,\n      \"thermload\": 2.7,\n      \"piercing\": 60,\n      \"range\": 3000,\n      \"shotspeed\": 1200,\n      \"roundspershot\": 0,\n      \"clip\": 16,\n      \"ammo\": 240,\n      \"reload\": 6,\n      \"breachdmg\": 12.7,\n      \"breachmin\": 0.4,\n      \"breachmax\": 0.8,\n      \"jitter\": 0,\n      \"symbol\": \"Hpt_PlasmaShockCannon_Fixed_Large\",\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"falloff\": 2500\n    },\n    {\n      \"rating\": \"C\",\n      \"class\": 3,\n      \"grp\": \"tbsc\",\n      \"ammo\": 240,\n      \"mass\": 8,\n      \"eddbID\": 0,\n      \"breachdmg\": 10.4,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"clip\": 16,\n      \"damage\": 14.9,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"distdraw\": 1.07,\n      \"falloff\": 2500,\n      \"fireint\": 0.1,\n      \"integrity\": 64,\n      \"mount\": \"G\",\n      \"piercing\": 60,\n      \"power\": 0.89,\n      \"range\": 3000,\n      \"shotspeed\": 1200,\n      \"thermload\": 3.1,\n      \"cost\": 2249050,\n      \"reload\": 6,\n      \"id\": \"2N\",\n      \"edID\": 128834781,\n      \"symbol\": \"Hpt_PlasmaShockCannon_Gimbal_Large\"\n    },\n    {\n      \"rating\": \"D\",\n      \"class\": 3,\n      \"grp\": \"tbsc\",\n      \"symbol\": \"Hpt_PlasmaShockCannon_Turret_Large\",\n      \"id\": \"xz\",\n      \"eddbID\": 0,\n      \"edID\": 128834782,\n      \"mount\": \"T\",\n      \"cost\": 6050201,\n      \"mass\": 8,\n      \"integrity\": 64,\n      \"power\": 0.64,\n      \"damage\": 12.32,\n      \"distdraw\": 0.79,\n      \"fireint\": 0.1,\n      \"thermload\": 2.2,\n      \"piercing\": 60,\n      \"range\": 3000,\n      \"shotspeed\": 1200,\n      \"clip\": 16,\n      \"ammo\": 240,\n      \"reload\": 6,\n      \"breachdmg\": 8.6,\n      \"breachmin\": 0.4,\n      \"breachmax\": 0.8,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"falloff\": 2500\n    },\n    {\n      \"rating\": \"D\",\n      \"class\": 2,\n      \"grp\": \"tbsc\",\n      \"ammo\": 240,\n      \"mass\": 4,\n      \"eddbID\": 0,\n      \"breachdmg\": 7.1,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"clip\": 16,\n      \"damage\": 10.2,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"distdraw\": 0.58,\n      \"falloff\": 2500,\n      \"fireint\": 0.1,\n      \"integrity\": 51,\n      \"mount\": \"G\",\n      \"piercing\": 40,\n      \"power\": 0.61,\n      \"range\": 3000,\n      \"reload\": 6,\n      \"shotspeed\": 1200,\n      \"thermload\": 2.1,\n      \"cost\": 565200,\n      \"id\": \"2O\",\n      \"edID\": 128834003,\n      \"symbol\": \"Hpt_PlasmaShockCannon_Gimbal_Medium\"\n    },\n    {\n      \"grp\": \"tbsc\",\n      \"symbol\": \"Hpt_PlasmaShockCannon_Fixed_Medium\",\n      \"id\": \"y0\",\n      \"eddbID\": 0,\n      \"edID\": 128834002,\n      \"class\": 2,\n      \"rating\": \"D\",\n      \"mount\": \"F\",\n      \"cost\": 367501,\n      \"mass\": 4,\n      \"integrity\": 51,\n      \"power\": 0.57,\n      \"damage\": 13,\n      \"distdraw\": 0.47,\n      \"fireint\": 0.1,\n      \"thermload\": 1.8,\n      \"piercing\": 40,\n      \"range\": 3000,\n      \"shotspeed\": 1200,\n      \"clip\": 16,\n      \"ammo\": 240,\n      \"reload\": 6,\n      \"breachdmg\": 9.1,\n      \"breachmin\": 0.4,\n      \"breachmax\": 0.6,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"falloff\": 2500\n    },\n    {\n      \"rating\": \"E\",\n      \"class\": 2,\n      \"grp\": \"tbsc\",\n      \"id\": \"0\",\n      \"eddbID\": 0,\n      \"edID\": 128834004,\n      \"mount\": \"T\",\n      \"cost\": 1359200,\n      \"mass\": 4,\n      \"integrity\": 51,\n      \"power\": 0.5,\n      \"damage\": 9,\n      \"distdraw\": 0.39,\n      \"fireint\": 0.1,\n      \"thermload\": 1.2,\n      \"piercing\": 40,\n      \"range\": 3000,\n      \"shotspeed\": 1200,\n      \"roundspershot\": 0,\n      \"clip\": 16,\n      \"ammo\": 240,\n      \"reload\": 6,\n      \"breachdmg\": 6.3,\n      \"breachmin\": 0.4,\n      \"breachmax\": 0.8,\n      \"jitter\": 0,\n      \"symbol\": \"Hpt_PlasmaShockCannon_Turret_Medium\",\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"falloff\": 2500\n    },\n    {\n      \"rating\": \"D\",\n      \"class\": 1,\n      \"grp\": \"tbsc\",\n      \"id\": \"yQ\",\n      \"eddbID\": 0,\n      \"edID\": 128891605,\n      \"mount\": \"F\",\n      \"cost\": 65941,\n      \"mass\": 2,\n      \"integrity\": 40,\n      \"power\": 0.41,\n      \"damage\": 8.6,\n      \"distdraw\": 0.27,\n      \"fireint\": 0.1,\n      \"thermload\": 1.1,\n      \"piercing\": 25,\n      \"range\": 3000,\n      \"shotspeed\": 1200,\n      \"clip\": 16,\n      \"ammo\": 240,\n      \"reload\": 6,\n      \"breachdmg\": 6,\n      \"breachmin\": 0.4,\n      \"breachmax\": 0.6,\n      \"symbol\": \"Hpt_PlasmaShockCannon_Fixed_Small\",\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"falloff\": 2500\n    },\n    {\n      \"rating\": \"E\",\n      \"class\": 1,\n      \"grp\": \"tbsc\",\n      \"ammo\": 240,\n      \"mass\": 2,\n      \"eddbID\": 0,\n      \"breachdmg\": 4.8,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.4,\n      \"clip\": 16,\n      \"damage\": 6.9,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"distdraw\": 0.39,\n      \"fireint\": 0.1,\n      \"falloff\": 2500,\n      \"integrity\": 40,\n      \"mount\": \"G\",\n      \"piercing\": 25,\n      \"power\": 0.47,\n      \"range\": 3000,\n      \"shotspeed\": 1200,\n      \"thermload\": 1.5,\n      \"cost\": 137501,\n      \"reload\": 6,\n      \"id\": \"yR\",\n      \"edID\": 128891604,\n      \"symbol\": \"Hpt_PlasmaShockCannon_Gimbal_Small\"\n    },\n    {\n      \"rating\": \"F\",\n      \"class\": 1,\n      \"grp\": \"tbsc\",\n      \"symbol\": \"Hpt_PlasmaShockCannon_Turret_Small\",\n      \"id\": \"yS\",\n      \"eddbID\": 0,\n      \"edID\": 128891603,\n      \"mount\": \"T\",\n      \"cost\": 364000,\n      \"mass\": 2,\n      \"integrity\": 40,\n      \"power\": 0.54,\n      \"damage\": 4.5,\n      \"distdraw\": 0.21,\n      \"fireint\": 0.1,\n      \"thermload\": 0.7,\n      \"piercing\": 25,\n      \"range\": 3000,\n      \"shotspeed\": 1200,\n      \"clip\": 16,\n      \"ammo\": 240,\n      \"reload\": 6,\n      \"breachdmg\": 3.1,\n      \"breachmin\": 0.4,\n      \"breachmax\": 0.8,\n      \"damagedist\": {\n        \"K\": 1\n      },\n      \"falloff\": 2500\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/hardpoints/shutdown_field_neutraliser.json",
    "content": "{\n  \"sfn\": [\n    {\n      \"class\": 0,\n      \"cost\": 63000,\n      \"edID\": 128771884,\n      \"eddbID\": 1622,\n      \"grp\": \"sfn\",\n      \"id\": \"Sn\",\n      \"integrity\": 35,\n      \"mass\": 1.3,\n      \"name\": \"Shutdown Field Neutraliser\",\n      \"passive\": 1,\n      \"power\": 0.2,\n      \"activepower\": 0.25,\n      \"rating\": \"F\",\n      \"cooldown\": 10,\n      \"duration\": 1,\n      \"range\": 3000,\n      \"symbol\": \"Hpt_AntiUnknownShutdown_Tiny\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/hardpoints/sub_surface_displacement_missile.json",
    "content": "{\n  \"sdm\": [\n    {\n      \"breachdmg\": 0.5,\n      \"breachmax\": 0.2,\n      \"shotspeed\": 550,\n      \"breachmin\": 0.1,\n      \"class\": 2,\n      \"cost\": 381750,\n      \"damage\": 5,\n      \"chargetime\": 2,\n      \"damagedist\": {\n        \"E\": 1\n      },\n      \"distdraw\": 0.18,\n      \"edID\": 128915457,\n      \"eddbID\": 823,\n      \"falloff\": 500,\n      \"fireint\": 2.0,\n      \"ammo\": 96,\n      \"clip\": 1,\n      \"grp\": \"sdm\",\n      \"id\": \"3N\",\n      \"reload\": 2,\n      \"integrity\": 51,\n      \"mass\": 4,\n      \"mount\": \"F\",\n      \"piercing\": 25,\n      \"power\": 1.01,\n      \"range\": 3000,\n      \"rating\": \"B\",\n      \"thermload\": 2.9,\n      \"symbol\": \"Hpt_Mining_SubSurfDispMisle_Fixed_Medium\"\n    },\n    {\n      \"breachdmg\": 0.5,\n      \"breachmax\": 0.2,\n      \"shotspeed\": 550,\n      \"breachmin\": 0.1,\n      \"class\": 2,\n      \"cost\": 381750,\n      \"damage\": 5,\n      \"chargetime\": 2,\n      \"damagedist\": {\n        \"E\": 1\n      },\n      \"distdraw\": 0.24,\n      \"edID\": 128049381,\n      \"eddbID\": 823,\n      \"falloff\": 500,\n      \"fireint\": 2.0,\n      \"ammo\": 96,\n      \"clip\": 1,\n      \"grp\": \"sdm\",\n      \"id\": \"3Q\",\n      \"reload\": 2,\n      \"integrity\": 51,\n      \"mass\": 4,\n      \"mount\": \"T\",\n      \"piercing\": 25,\n      \"power\": 0.93,\n      \"range\": 3000,\n      \"rating\": \"B\",\n      \"thermload\": 2.9,\n      \"symbol\": \"Hpt_Mining_Subsurfdispmisle_Turret_Medium\"\n    },\n    {\n      \"breachdmg\": 0.5,\n      \"breachmax\": 0.2,\n      \"shotspeed\": 550,\n      \"breachmin\": 0.1,\n      \"class\": 1,\n      \"cost\": 12601,\n      \"damage\": 5,\n      \"chargetime\": 2,\n      \"damagedist\": {\n        \"E\": 1\n      },\n      \"distdraw\": 0.18,\n      \"edID\": 128915455,\n      \"eddbID\": 823,\n      \"falloff\": 500,\n      \"fireint\": 2.0,\n      \"ammo\": 32,\n      \"clip\": 1,\n      \"grp\": \"sdm\",\n      \"id\": \"3O\",\n      \"reload\": 2,\n      \"integrity\": 40,\n      \"mass\": 2,\n      \"mount\": \"F\",\n      \"piercing\": 25,\n      \"power\": 0.42,\n      \"range\": 3000,\n      \"rating\": \"B\",\n      \"thermload\": 2.2,\n      \"symbol\": \"Hpt_Mining_SubSurfDispMisle_Fixed_Small\"\n    },\n    {\n      \"breachdmg\": 0.5,\n      \"breachmax\": 0.2,\n      \"shotspeed\": 550,\n      \"breachmin\": 0.1,\n      \"class\": 1,\n      \"cost\": 38751,\n      \"damage\": 5,\n      \"chargetime\": 2,\n      \"damagedist\": {\n        \"E\": 1\n      },\n      \"distdraw\": 0.16,\n      \"edID\": 128049381,\n      \"eddbID\": 823,\n      \"falloff\": 500,\n      \"fireint\": 2.0,\n      \"ammo\": 32,\n      \"clip\": 1,\n      \"grp\": \"sdm\",\n      \"id\": \"3P\",\n      \"reload\": 2,\n      \"integrity\": 40,\n      \"mass\": 2,\n      \"mount\": \"T\",\n      \"piercing\": 25,\n      \"power\": 0.42,\n      \"range\": 3000,\n      \"rating\": \"B\",\n      \"thermload\": 2.2,\n      \"symbol\": \"Hpt_Mining_Subsurfdispmisle_Turret_Small\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/hardpoints/torpedo_pylon.json",
    "content": "{\n  \"tp\": [\n    {\n      \"ammo\": 1,\n      \"breachdmg\": 60,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.6,\n      \"class\": 1,\n      \"clip\": 1,\n      \"cost\": 11200,\n      \"damage\": 120,\n      \"damagedist\": {\n        \"E\": 1\n      },\n      \"distdraw\": 0,\n      \"edID\": 128049509,\n      \"eddbID\": 882,\n      \"fireint\": 1.0,\n      \"grp\": \"tp\",\n      \"id\": \"2h\",\n      \"integrity\": 40,\n      \"mass\": 2,\n      \"missile\": \"S\",\n      \"mount\": \"F\",\n      \"piercing\": 10000,\n      \"power\": 0.4,\n      \"rating\": \"I\",\n      \"reload\": 5,\n      \"shotspeed\": 250,\n      \"thermload\": 45,\n      \"symbol\": \"Hpt_AdvancedTorpPylon_Fixed_Small\"\n    },\n    {\n      \"ammo\": 2,\n      \"breachdmg\": 60,\n      \"breachmax\": 0.8,\n      \"breachmin\": 0.6,\n      \"class\": 2,\n      \"clip\": 1,\n      \"cost\": 44800,\n      \"damage\": 120,\n      \"damagedist\": {\n        \"E\": 1\n      },\n      \"distdraw\": 0,\n      \"edID\": 128049510,\n      \"eddbID\": 883,\n      \"fireint\": 1.0,\n      \"grp\": \"tp\",\n      \"id\": \"2i\",\n      \"integrity\": 51,\n      \"mass\": 4,\n      \"missile\": \"S\",\n      \"mount\": \"F\",\n      \"piercing\": 10000,\n      \"power\": 0.4,\n      \"rating\": \"I\",\n      \"reload\": 5,\n      \"shotspeed\": 250,\n      \"thermload\": 50,\n      \"symbol\": \"Hpt_AdvancedTorpPylon_Fixed_Medium\"\n    },\n    {\n      \"ammo\": 4,\n      \"breachdmg\": 60,\n      \"breachmax\": 1,\n      \"breachmin\": 1,\n      \"class\": 3,\n      \"clip\": 4,\n      \"cost\": 157960,\n      \"damage\": 120,\n      \"damagedist\": {\n        \"E\": 1\n      },\n      \"distdraw\": 0,\n      \"edID\": 128049511,\n      \"eddbID\": 1655,\n      \"fireint\": 1.0,\n      \"grp\": \"tp\",\n      \"id\": \"yK\",\n      \"integrity\": 64,\n      \"mass\": 8,\n      \"missile\": \"S\",\n      \"mount\": \"F\",\n      \"piercing\": 10000,\n      \"power\": 0.6,\n      \"rating\": \"I\",\n      \"reload\": 5,\n      \"shotspeed\": 250,\n      \"thermload\": 55,\n      \"symbol\": \"Hpt_AdvancedTorpPylon_Fixed_Large\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/hardpoints/xeno_scanner.json",
    "content": "{\n  \"xs\": [\n    {\n      \"class\": 0,\n      \"cost\": 365698,\n      \"edID\": 128793115,\n      \"eddbID\": 1616,\n      \"grp\": \"xs\",\n      \"id\": \"xs\",\n      \"integrity\": 56,\n      \"mass\": 1.3,\n      \"name\": \"Xeno Scanner\",\n      \"power\": 0.2,\n      \"range\": 500,\n      \"rating\": \"E\",\n      \"boot\": 2,\n      \"scantime\": 10,\n      \"angle\": 23,\n      \"symbol\": \"Hpt_XenoScanner_Basic_Tiny\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/internal/auto_field_maintenance_unit.json",
    "content": "{\n  \"am\": [\n    {\n      \"ammo\": 1000,\n      \"ammocost\": 1,\n      \"class\": 1,\n      \"cost\": 10000,\n      \"edID\": 128667598,\n      \"eddbID\": 1328,\n      \"grp\": \"am\",\n      \"id\": \"0c\",\n      \"power\": 0.54,\n      \"rating\": \"E\",\n      \"repair\": 12,\n      \"symbol\": \"Int_Repairer_Size1_Class1\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 900,\n      \"ammocost\": 1,\n      \"class\": 1,\n      \"cost\": 30000,\n      \"edID\": 128667606,\n      \"eddbID\": 1336,\n      \"grp\": \"am\",\n      \"id\": \"0b\",\n      \"power\": 0.72,\n      \"rating\": \"D\",\n      \"repair\": 14.4,\n      \"symbol\": \"Int_Repairer_Size1_Class2\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 1000,\n      \"ammocost\": 1,\n      \"class\": 1,\n      \"cost\": 90000,\n      \"edID\": 128667614,\n      \"eddbID\": 1344,\n      \"grp\": \"am\",\n      \"id\": \"0a\",\n      \"power\": 0.9,\n      \"rating\": \"C\",\n      \"repair\": 20,\n      \"symbol\": \"Int_Repairer_Size1_Class3\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 1200,\n      \"ammocost\": 1,\n      \"class\": 1,\n      \"cost\": 270000,\n      \"edID\": 128667622,\n      \"eddbID\": 1352,\n      \"grp\": \"am\",\n      \"id\": \"09\",\n      \"power\": 1.04,\n      \"rating\": \"B\",\n      \"repair\": 27.6,\n      \"symbol\": \"Int_Repairer_Size1_Class4\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 1100,\n      \"ammocost\": 1,\n      \"class\": 1,\n      \"cost\": 810000,\n      \"edID\": 128667630,\n      \"eddbID\": 1360,\n      \"grp\": \"am\",\n      \"id\": \"08\",\n      \"power\": 1.26,\n      \"rating\": \"A\",\n      \"repair\": 30.8,\n      \"symbol\": \"Int_Repairer_Size1_Class5\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 2300,\n      \"ammocost\": 1,\n      \"class\": 2,\n      \"cost\": 18000,\n      \"edID\": 128667599,\n      \"eddbID\": 1329,\n      \"grp\": \"am\",\n      \"id\": \"0h\",\n      \"power\": 0.68,\n      \"rating\": \"E\",\n      \"repair\": 27.6,\n      \"symbol\": \"Int_Repairer_Size2_Class1\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 2100,\n      \"ammocost\": 1,\n      \"class\": 2,\n      \"cost\": 54000,\n      \"edID\": 128667607,\n      \"eddbID\": 1337,\n      \"grp\": \"am\",\n      \"id\": \"0g\",\n      \"power\": 0.9,\n      \"rating\": \"D\",\n      \"repair\": 33.6,\n      \"symbol\": \"Int_Repairer_Size2_Class2\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 2300,\n      \"ammocost\": 1,\n      \"class\": 2,\n      \"cost\": 162000,\n      \"edID\": 128667615,\n      \"eddbID\": 1345,\n      \"grp\": \"am\",\n      \"id\": \"0f\",\n      \"power\": 1.13,\n      \"rating\": \"C\",\n      \"repair\": 46,\n      \"symbol\": \"Int_Repairer_Size2_Class3\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 2800,\n      \"ammocost\": 1,\n      \"class\": 2,\n      \"cost\": 486000,\n      \"edID\": 128667623,\n      \"eddbID\": 1353,\n      \"grp\": \"am\",\n      \"id\": \"0e\",\n      \"power\": 1.29,\n      \"rating\": \"B\",\n      \"repair\": 64.4,\n      \"symbol\": \"Int_Repairer_Size2_Class4\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 2500,\n      \"ammocost\": 1,\n      \"class\": 2,\n      \"cost\": 1458000,\n      \"edID\": 128667631,\n      \"eddbID\": 1361,\n      \"grp\": \"am\",\n      \"id\": \"0d\",\n      \"power\": 1.58,\n      \"rating\": \"A\",\n      \"repair\": 70,\n      \"symbol\": \"Int_Repairer_Size2_Class5\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 3600,\n      \"ammocost\": 1,\n      \"class\": 3,\n      \"cost\": 32400,\n      \"edID\": 128667600,\n      \"eddbID\": 1330,\n      \"grp\": \"am\",\n      \"id\": \"0m\",\n      \"power\": 0.81,\n      \"rating\": \"E\",\n      \"repair\": 43.2,\n      \"symbol\": \"Int_Repairer_Size3_Class1\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 3200,\n      \"ammocost\": 1,\n      \"class\": 3,\n      \"cost\": 97200,\n      \"edID\": 128667608,\n      \"eddbID\": 1338,\n      \"grp\": \"am\",\n      \"id\": \"0l\",\n      \"power\": 1.08,\n      \"rating\": \"D\",\n      \"repair\": 51.2,\n      \"symbol\": \"Int_Repairer_Size3_Class2\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 3600,\n      \"ammocost\": 1,\n      \"class\": 3,\n      \"cost\": 291600,\n      \"edID\": 128667616,\n      \"eddbID\": 1346,\n      \"grp\": \"am\",\n      \"id\": \"0k\",\n      \"power\": 1.35,\n      \"rating\": \"C\",\n      \"repair\": 72,\n      \"symbol\": \"Int_Repairer_Size3_Class3\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 4300,\n      \"ammocost\": 1,\n      \"class\": 3,\n      \"cost\": 874800,\n      \"edID\": 128667624,\n      \"eddbID\": 1354,\n      \"grp\": \"am\",\n      \"id\": \"0j\",\n      \"power\": 1.55,\n      \"rating\": \"B\",\n      \"repair\": 98.9,\n      \"symbol\": \"Int_Repairer_Size3_Class4\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 4000,\n      \"ammocost\": 1,\n      \"class\": 3,\n      \"cost\": 2624400,\n      \"edID\": 128667632,\n      \"eddbID\": 1362,\n      \"grp\": \"am\",\n      \"id\": \"0i\",\n      \"power\": 1.89,\n      \"rating\": \"A\",\n      \"repair\": 112,\n      \"symbol\": \"Int_Repairer_Size3_Class5\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 4900,\n      \"ammocost\": 1,\n      \"class\": 4,\n      \"cost\": 58320,\n      \"edID\": 128667601,\n      \"eddbID\": 1331,\n      \"grp\": \"am\",\n      \"id\": \"0r\",\n      \"power\": 0.99,\n      \"rating\": \"E\",\n      \"repair\": 58.8,\n      \"symbol\": \"Int_Repairer_Size4_Class1\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 4400,\n      \"ammocost\": 1,\n      \"class\": 4,\n      \"cost\": 174960,\n      \"edID\": 128667609,\n      \"eddbID\": 1339,\n      \"grp\": \"am\",\n      \"id\": \"0q\",\n      \"power\": 1.32,\n      \"rating\": \"D\",\n      \"repair\": 70.4,\n      \"symbol\": \"Int_Repairer_Size4_Class2\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 4900,\n      \"ammocost\": 1,\n      \"class\": 4,\n      \"cost\": 524880,\n      \"edID\": 128667617,\n      \"eddbID\": 1347,\n      \"grp\": \"am\",\n      \"id\": \"0p\",\n      \"power\": 1.65,\n      \"rating\": \"C\",\n      \"repair\": 98,\n      \"symbol\": \"Int_Repairer_Size4_Class3\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 5900,\n      \"ammocost\": 1,\n      \"class\": 4,\n      \"cost\": 1574640,\n      \"edID\": 128667625,\n      \"eddbID\": 1355,\n      \"grp\": \"am\",\n      \"id\": \"0o\",\n      \"power\": 1.9,\n      \"rating\": \"B\",\n      \"repair\": 135.7,\n      \"symbol\": \"Int_Repairer_Size4_Class4\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 5400,\n      \"ammocost\": 1,\n      \"class\": 4,\n      \"cost\": 4723920,\n      \"edID\": 128667633,\n      \"eddbID\": 1363,\n      \"grp\": \"am\",\n      \"id\": \"0n\",\n      \"power\": 2.31,\n      \"rating\": \"A\",\n      \"repair\": 151.2,\n      \"symbol\": \"Int_Repairer_Size4_Class5\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 6100,\n      \"ammocost\": 1,\n      \"class\": 5,\n      \"cost\": 104980,\n      \"edID\": 128667602,\n      \"eddbID\": 1332,\n      \"grp\": \"am\",\n      \"id\": \"10\",\n      \"power\": 1.17,\n      \"rating\": \"E\",\n      \"repair\": 73.2,\n      \"symbol\": \"Int_Repairer_Size5_Class1\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 5500,\n      \"ammocost\": 1,\n      \"class\": 5,\n      \"cost\": 314930,\n      \"edID\": 128667610,\n      \"eddbID\": 1340,\n      \"grp\": \"am\",\n      \"id\": \"0v\",\n      \"power\": 1.56,\n      \"rating\": \"D\",\n      \"repair\": 88,\n      \"symbol\": \"Int_Repairer_Size5_Class2\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 6100,\n      \"ammocost\": 1,\n      \"class\": 5,\n      \"cost\": 944780,\n      \"edID\": 128667618,\n      \"eddbID\": 1348,\n      \"grp\": \"am\",\n      \"id\": \"0u\",\n      \"power\": 1.95,\n      \"rating\": \"C\",\n      \"repair\": 122,\n      \"symbol\": \"Int_Repairer_Size5_Class3\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 7300,\n      \"ammocost\": 1,\n      \"class\": 5,\n      \"cost\": 2834350,\n      \"edID\": 128667626,\n      \"eddbID\": 1356,\n      \"grp\": \"am\",\n      \"id\": \"0t\",\n      \"power\": 2.24,\n      \"rating\": \"B\",\n      \"repair\": 167.9,\n      \"symbol\": \"Int_Repairer_Size5_Class4\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 6700,\n      \"ammocost\": 1,\n      \"class\": 5,\n      \"cost\": 8503060,\n      \"edID\": 128667634,\n      \"eddbID\": 1364,\n      \"grp\": \"am\",\n      \"id\": \"0s\",\n      \"power\": 2.73,\n      \"rating\": \"A\",\n      \"repair\": 187.6,\n      \"symbol\": \"Int_Repairer_Size5_Class5\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 7400,\n      \"ammocost\": 1,\n      \"class\": 6,\n      \"cost\": 188960,\n      \"edID\": 128667603,\n      \"eddbID\": 1333,\n      \"grp\": \"am\",\n      \"id\": \"15\",\n      \"power\": 1.4,\n      \"rating\": \"E\",\n      \"repair\": 88.8,\n      \"symbol\": \"Int_Repairer_Size6_Class1\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 6700,\n      \"ammocost\": 1,\n      \"class\": 6,\n      \"cost\": 566870,\n      \"edID\": 128667611,\n      \"eddbID\": 1341,\n      \"grp\": \"am\",\n      \"id\": \"14\",\n      \"power\": 1.86,\n      \"rating\": \"D\",\n      \"repair\": 107.2,\n      \"symbol\": \"Int_Repairer_Size6_Class2\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 7400,\n      \"ammocost\": 1,\n      \"class\": 6,\n      \"cost\": 1700610,\n      \"edID\": 128667619,\n      \"eddbID\": 1349,\n      \"grp\": \"am\",\n      \"id\": \"13\",\n      \"power\": 2.33,\n      \"rating\": \"C\",\n      \"repair\": 148,\n      \"symbol\": \"Int_Repairer_Size6_Class3\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 8900,\n      \"ammocost\": 1,\n      \"class\": 6,\n      \"cost\": 5101830,\n      \"edID\": 128667627,\n      \"eddbID\": 1357,\n      \"grp\": \"am\",\n      \"id\": \"12\",\n      \"power\": 2.67,\n      \"rating\": \"B\",\n      \"repair\": 204.7,\n      \"symbol\": \"Int_Repairer_Size6_Class4\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 8100,\n      \"ammocost\": 1,\n      \"class\": 6,\n      \"cost\": 15305500,\n      \"edID\": 128667635,\n      \"eddbID\": 1365,\n      \"grp\": \"am\",\n      \"id\": \"11\",\n      \"power\": 3.26,\n      \"rating\": \"A\",\n      \"repair\": 226.8,\n      \"symbol\": \"Int_Repairer_Size6_Class5\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 8700,\n      \"ammocost\": 1,\n      \"class\": 7,\n      \"cost\": 340120,\n      \"edID\": 128667604,\n      \"eddbID\": 1334,\n      \"grp\": \"am\",\n      \"id\": \"1a\",\n      \"power\": 1.58,\n      \"rating\": \"E\",\n      \"repair\": 104.4,\n      \"symbol\": \"Int_Repairer_Size7_Class1\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 7800,\n      \"ammocost\": 1,\n      \"class\": 7,\n      \"cost\": 1020370,\n      \"edID\": 128667612,\n      \"eddbID\": 1342,\n      \"grp\": \"am\",\n      \"id\": \"19\",\n      \"power\": 2.1,\n      \"rating\": \"D\",\n      \"repair\": 124.8,\n      \"symbol\": \"Int_Repairer_Size7_Class2\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 8700,\n      \"ammocost\": 1,\n      \"class\": 7,\n      \"cost\": 3061100,\n      \"edID\": 128667620,\n      \"eddbID\": 1350,\n      \"grp\": \"am\",\n      \"id\": \"18\",\n      \"power\": 2.63,\n      \"rating\": \"C\",\n      \"repair\": 174,\n      \"symbol\": \"Int_Repairer_Size7_Class3\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 10400,\n      \"ammocost\": 1,\n      \"class\": 7,\n      \"cost\": 9183300,\n      \"edID\": 128667628,\n      \"eddbID\": 1358,\n      \"grp\": \"am\",\n      \"id\": \"17\",\n      \"power\": 3.02,\n      \"rating\": \"B\",\n      \"repair\": 239.2,\n      \"symbol\": \"Int_Repairer_Size7_Class4\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 9600,\n      \"ammocost\": 1,\n      \"class\": 7,\n      \"cost\": 27549900,\n      \"edID\": 128667636,\n      \"eddbID\": 1366,\n      \"grp\": \"am\",\n      \"id\": \"16\",\n      \"power\": 3.68,\n      \"rating\": \"A\",\n      \"repair\": 268.8,\n      \"symbol\": \"Int_Repairer_Size7_Class5\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 10000,\n      \"ammocost\": 1,\n      \"class\": 8,\n      \"cost\": 612220,\n      \"edID\": 128667605,\n      \"eddbID\": 1335,\n      \"grp\": \"am\",\n      \"id\": \"1f\",\n      \"power\": 1.8,\n      \"rating\": \"E\",\n      \"repair\": 120,\n      \"symbol\": \"Int_Repairer_Size8_Class1\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 9000,\n      \"ammocost\": 1,\n      \"class\": 8,\n      \"cost\": 1836660,\n      \"edID\": 128667613,\n      \"eddbID\": 1343,\n      \"grp\": \"am\",\n      \"id\": \"1e\",\n      \"power\": 2.4,\n      \"rating\": \"D\",\n      \"repair\": 144,\n      \"symbol\": \"Int_Repairer_Size8_Class2\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 10000,\n      \"ammocost\": 1,\n      \"class\": 8,\n      \"cost\": 5509980,\n      \"edID\": 128667621,\n      \"eddbID\": 1351,\n      \"grp\": \"am\",\n      \"id\": \"1d\",\n      \"power\": 3,\n      \"rating\": \"C\",\n      \"repair\": 200,\n      \"symbol\": \"Int_Repairer_Size8_Class3\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 12000,\n      \"ammocost\": 1,\n      \"class\": 8,\n      \"cost\": 16529940,\n      \"edID\": 128667629,\n      \"eddbID\": 1359,\n      \"grp\": \"am\",\n      \"id\": \"1c\",\n      \"power\": 3.45,\n      \"rating\": \"B\",\n      \"repair\": 276,\n      \"symbol\": \"Int_Repairer_Size8_Class4\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    },\n    {\n      \"ammo\": 11000,\n      \"ammocost\": 1,\n      \"class\": 8,\n      \"cost\": 49589820,\n      \"edID\": 128667637,\n      \"eddbID\": 1367,\n      \"grp\": \"am\",\n      \"id\": \"1b\",\n      \"power\": 4.2,\n      \"rating\": \"A\",\n      \"repair\": 308,\n      \"symbol\": \"Int_Repairer_Size8_Class5\",\n      \"ukName\": \"AFM Unit\",\n      \"ukDiscript\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/internal/bi_weave_shield_generator.json",
    "content": "{\n  \"bsg\": [\n    {\n      \"brokenregen\": 2.4,\n      \"class\": 1,\n      \"cost\": 7710,\n      \"distdraw\": 0.6,\n      \"edID\": 128671331,\n      \"eddbID\": 1530,\n      \"explres\": 0.5,\n      \"grp\": \"bsg\",\n      \"id\": \"B6\",\n      \"integrity\": 40,\n      \"kinres\": 0.4,\n      \"mass\": 1.3,\n      \"maxmass\": 63,\n      \"maxmul\": 1.4,\n      \"minmass\": 13,\n      \"minmul\": 0.4,\n      \"optmass\": 25,\n      \"optmul\": 0.9,\n      \"power\": 1.2,\n      \"rating\": \"C\",\n      \"regen\": 1.8,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size1_Class3_Fast\",\n      \"ukName\": \"Bi-Weave Shield\",\n      \"ukDiscript\": \"An alternative shield generator that sacrifices overall shield strength for a much faster recharge rate.\"\n    },\n    {\n      \"brokenregen\": 2.4,\n      \"class\": 2,\n      \"cost\": 26710,\n      \"distdraw\": 0.6,\n      \"edID\": 128671332,\n      \"eddbID\": 1531,\n      \"explres\": 0.5,\n      \"grp\": \"bsg\",\n      \"id\": \"B5\",\n      \"integrity\": 51,\n      \"kinres\": 0.4,\n      \"mass\": 2.5,\n      \"maxmass\": 138,\n      \"maxmul\": 1.4,\n      \"minmass\": 28,\n      \"minmul\": 0.4,\n      \"optmass\": 55,\n      \"optmul\": 0.9,\n      \"power\": 1.5,\n      \"rating\": \"C\",\n      \"regen\": 1.8,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size2_Class3_Fast\",\n      \"ukName\": \"Bi-Weave Shield\",\n      \"ukDiscript\": \"An alternative shield generator that sacrifices overall shield strength for a much faster recharge rate.\"\n    },\n    {\n      \"brokenregen\": 2.8,\n      \"class\": 3,\n      \"cost\": 84650,\n      \"distdraw\": 0.6,\n      \"edID\": 128671333,\n      \"eddbID\": 1532,\n      \"explres\": 0.5,\n      \"grp\": \"bsg\",\n      \"id\": \"B4\",\n      \"integrity\": 64,\n      \"kinres\": 0.4,\n      \"mass\": 5,\n      \"maxmass\": 413,\n      \"maxmul\": 1.4,\n      \"minmass\": 83,\n      \"minmul\": 0.4,\n      \"optmass\": 165,\n      \"optmul\": 0.9,\n      \"power\": 1.8,\n      \"rating\": \"C\",\n      \"regen\": 1.8,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size3_Class3_Fast\",\n      \"ukName\": \"Bi-Weave Shield\",\n      \"ukDiscript\": \"An alternative shield generator that sacrifices overall shield strength for a much faster recharge rate.\"\n    },\n    {\n      \"brokenregen\": 3.8,\n      \"class\": 4,\n      \"cost\": 268350,\n      \"distdraw\": 0.6,\n      \"edID\": 128671334,\n      \"eddbID\": 1533,\n      \"explres\": 0.5,\n      \"grp\": \"bsg\",\n      \"id\": \"B3\",\n      \"integrity\": 80,\n      \"kinres\": 0.4,\n      \"mass\": 10,\n      \"maxmass\": 713,\n      \"maxmul\": 1.4,\n      \"minmass\": 143,\n      \"minmul\": 0.4,\n      \"optmass\": 285,\n      \"optmul\": 0.9,\n      \"power\": 2.2,\n      \"rating\": \"C\",\n      \"regen\": 1.8,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size4_Class3_Fast\",\n      \"ukName\": \"Bi-Weave Shield\",\n      \"ukDiscript\": \"An alternative shield generator that sacrifices overall shield strength for a much faster recharge rate.\"\n    },\n    {\n      \"brokenregen\": 5.6,\n      \"class\": 5,\n      \"cost\": 850660,\n      \"distdraw\": 0.6,\n      \"edID\": 128671335,\n      \"eddbID\": 1534,\n      \"explres\": 0.5,\n      \"grp\": \"bsg\",\n      \"id\": \"B2\",\n      \"integrity\": 96,\n      \"kinres\": 0.4,\n      \"mass\": 20,\n      \"maxmass\": 1013,\n      \"maxmul\": 1.4,\n      \"minmass\": 203,\n      \"minmul\": 0.4,\n      \"optmass\": 405,\n      \"optmul\": 0.9,\n      \"power\": 2.6,\n      \"rating\": \"C\",\n      \"regen\": 2.2,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size5_Class3_Fast\",\n      \"ukName\": \"Bi-Weave Shield\",\n      \"ukDiscript\": \"An alternative shield generator that sacrifices overall shield strength for a much faster recharge rate.\"\n    },\n    {\n      \"brokenregen\": 8,\n      \"class\": 6,\n      \"cost\": 2696600,\n      \"distdraw\": 0.6,\n      \"edID\": 128671336,\n      \"eddbID\": 1535,\n      \"explres\": 0.5,\n      \"grp\": \"bsg\",\n      \"id\": \"B1\",\n      \"integrity\": 113,\n      \"kinres\": 0.4,\n      \"mass\": 40,\n      \"maxmass\": 1350,\n      \"maxmul\": 1.4,\n      \"minmass\": 270,\n      \"minmul\": 0.4,\n      \"optmass\": 540,\n      \"optmul\": 0.9,\n      \"power\": 3.1,\n      \"rating\": \"C\",\n      \"regen\": 3.2,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size6_Class3_Fast\",\n      \"ukName\": \"Bi-Weave Shield\",\n      \"ukDiscript\": \"An alternative shield generator that sacrifices overall shield strength for a much faster recharge rate.\"\n    },\n    {\n      \"brokenregen\": 11,\n      \"class\": 7,\n      \"cost\": 8548186,\n      \"distdraw\": 0.6,\n      \"edID\": 128671337,\n      \"eddbID\": 1536,\n      \"explres\": 0.5,\n      \"grp\": \"bsg\",\n      \"id\": \"B0\",\n      \"integrity\": 131,\n      \"kinres\": 0.4,\n      \"mass\": 80,\n      \"maxmass\": 2650,\n      \"maxmul\": 1.4,\n      \"minmass\": 530,\n      \"minmul\": 0.4,\n      \"optmass\": 1060,\n      \"optmul\": 0.9,\n      \"power\": 3.5,\n      \"rating\": \"C\",\n      \"regen\": 4.4,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size7_Class3_Fast\",\n      \"ukName\": \"Bi-Weave Shield\",\n      \"ukDiscript\": \"An alternative shield generator that sacrifices overall shield strength for a much faster recharge rate.\"\n    },\n    {\n      \"brokenregen\": 14.4,\n      \"class\": 8,\n      \"cost\": 27097750,\n      \"distdraw\": 0.6,\n      \"edID\": 128671338,\n      \"eddbID\": 1537,\n      \"explres\": 0.5,\n      \"grp\": \"bsg\",\n      \"id\": \"B7\",\n      \"integrity\": 150,\n      \"kinres\": 0.4,\n      \"mass\": 160,\n      \"maxmass\": 4500,\n      \"maxmul\": 1.4,\n      \"minmass\": 900,\n      \"minmul\": 0.4,\n      \"optmass\": 1800,\n      \"optmul\": 0.9,\n      \"power\": 4,\n      \"rating\": \"C\",\n      \"regen\": 5.8,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size8_Class3_Fast\",\n      \"ukName\": \"Bi-Weave Shield\",\n      \"ukDiscript\": \"An alternative shield generator that sacrifices overall shield strength for a much faster recharge rate.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/internal/business_passenger_cabin.json",
    "content": "{\n  \"pci\": [\n    {\n      \"class\": 3,\n      \"cost\": 26707,\n      \"edID\": 128734692,\n      \"eddbID\": 1568,\n      \"grp\": \"pci\",\n      \"id\": \"mf\",\n      \"mass\": 5,\n      \"passengers\": 3,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_PassengerCabin_Size3_Class2\",\n      \"ukName\": \"BC Passenger Cabin\",\n      \"ukDiscript\": \"Business Class Passenger Cabin.\"\n    },\n    {\n      \"class\": 4,\n      \"cost\": 56870,\n      \"edID\": 128727923,\n      \"eddbID\": 1569,\n      \"grp\": \"pci\",\n      \"id\": \"mg\",\n      \"mass\": 10,\n      \"passengers\": 6,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_PassengerCabin_Size4_Class2\",\n      \"ukName\": \"BC Passenger Cabin\",\n      \"ukDiscript\": \"Business Class Passenger Cabin.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 92370,\n      \"edID\": 128734694,\n      \"eddbID\": 1570,\n      \"grp\": \"pci\",\n      \"id\": \"mh\",\n      \"mass\": 20,\n      \"passengers\": 10,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_PassengerCabin_Size5_Class2\",\n      \"ukName\": \"BC Passenger Cabin\",\n      \"ukDiscript\": \"Business Class Passenger Cabin.\"\n    },\n    {\n      \"class\": 6,\n      \"cost\": 184240,\n      \"edID\": 128727927,\n      \"eddbID\": 1571,\n      \"grp\": \"pci\",\n      \"id\": \"mi\",\n      \"mass\": 40,\n      \"passengers\": 16,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_PassengerCabin_Size6_Class2\",\n      \"ukName\": \"BC Passenger Cabin\",\n      \"ukDiscript\": \"Business Class Passenger Cabin.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/internal/cargo_rack.json",
    "content": "{\n  \"cr\": [\n    {\n      \"cargo\": 2,\n      \"class\": 1,\n      \"cost\": 1000,\n      \"edID\": 128064338,\n      \"eddbID\": 1191,\n      \"grp\": \"cr\",\n      \"id\": \"00\",\n      \"rating\": \"E\",\n      \"mass\": 0,\n      \"symbol\": \"Int_CargoRack_Size1_Class1\",\n      \"ukName\": \"Cargo Rack\",\n      \"ukDiscript\": \"Standardised storage rack for use in automated cargo transfer system.\"\n    },\n    {\n      \"cargo\": 4,\n      \"class\": 2,\n      \"cost\": 3250,\n      \"edID\": 128064339,\n      \"eddbID\": 1192,\n      \"grp\": \"cr\",\n      \"id\": \"01\",\n      \"rating\": \"E\",\n      \"mass\": 0,\n      \"symbol\": \"Int_CargoRack_Size2_Class1\",\n      \"ukName\": \"Cargo Rack\",\n      \"ukDiscript\": \"Standardised storage rack for use in automated cargo transfer system.\"\n    },\n    {\n      \"cargo\": 8,\n      \"class\": 3,\n      \"cost\": 10560,\n      \"edID\": 128064340,\n      \"eddbID\": 1193,\n      \"grp\": \"cr\",\n      \"id\": \"02\",\n      \"rating\": \"E\",\n      \"mass\": 0,\n      \"symbol\": \"Int_CargoRack_Size3_Class1\",\n      \"ukName\": \"Cargo Rack\",\n      \"ukDiscript\": \"Standardised storage rack for use in automated cargo transfer system.\"\n    },\n    {\n      \"cargo\": 16,\n      \"class\": 4,\n      \"cost\": 34330,\n      \"edID\": 128064341,\n      \"eddbID\": 1194,\n      \"grp\": \"cr\",\n      \"id\": \"03\",\n      \"rating\": \"E\",\n      \"mass\": 0,\n      \"symbol\": \"Int_CargoRack_Size4_Class1\",\n      \"ukName\": \"Cargo Rack\",\n      \"ukDiscript\": \"Standardised storage rack for use in automated cargo transfer system.\"\n    },\n    {\n      \"cargo\": 32,\n      \"class\": 5,\n      \"cost\": 111570,\n      \"edID\": 128064342,\n      \"eddbID\": 1195,\n      \"grp\": \"cr\",\n      \"id\": \"04\",\n      \"rating\": \"E\",\n      \"mass\": 0,\n      \"symbol\": \"Int_CargoRack_Size5_Class1\",\n      \"ukName\": \"Cargo Rack\",\n      \"ukDiscript\": \"Standardised storage rack for use in automated cargo transfer system.\"\n    },\n    {\n      \"cargo\": 64,\n      \"class\": 6,\n      \"cost\": 362590,\n      \"edID\": 128064343,\n      \"eddbID\": 1196,\n      \"grp\": \"cr\",\n      \"id\": \"05\",\n      \"rating\": \"E\",\n      \"mass\": 0,\n      \"symbol\": \"Int_CargoRack_Size6_Class1\",\n      \"ukName\": \"Cargo Rack\",\n      \"ukDiscript\": \"Standardised storage rack for use in automated cargo transfer system.\"\n    },\n    {\n      \"cargo\": 128,\n      \"class\": 7,\n      \"cost\": 1178420,\n      \"edID\": 128064344,\n      \"eddbID\": 1197,\n      \"grp\": \"cr\",\n      \"id\": \"06\",\n      \"rating\": \"E\",\n      \"mass\": 0,\n      \"symbol\": \"Int_CargoRack_Size7_Class1\",\n      \"ukName\": \"Cargo Rack\",\n      \"ukDiscript\": \"Standardised storage rack for use in automated cargo transfer system.\"\n    },\n    {\n      \"cargo\": 256,\n      \"class\": 8,\n      \"cost\": 3829870,\n      \"edID\": 128064345,\n      \"eddbID\": 1198,\n      \"grp\": \"cr\",\n      \"id\": \"07\",\n      \"rating\": \"E\",\n      \"mass\": 0,\n      \"symbol\": \"Int_CargoRack_Size8_Class1\",\n      \"ukName\": \"Cargo Rack\",\n      \"ukDiscript\": \"Standardised storage rack for use in automated cargo transfer system.\"\n    },\n    {\n      \"cargo\": 1,\n      \"class\": 1,\n      \"cost\": 6250,\n      \"edID\": 128681641,\n      \"eddbID\": 1553,\n      \"grp\": \"cr\",\n      \"id\": \"1w\",\n      \"name\": \"Corrosion Resistant\",\n      \"rating\": \"E\",\n      \"mass\": 0,\n      \"symbol\": \"Int_CorrosionProofCargoRack_Size1_Class1\",\n      \"ukName\": \"Corrosion Resistant Cargo Rack\",\n      \"ukDiscript\": \"Specialised storage rack for use in automated cargo transfer system that can resist the effects of corrosive cargo.\"\n    },\n    {\n      \"cargo\": 2,\n      \"class\": 1,\n      \"cost\": 12563,\n      \"edID\": 128681992,\n      \"eddbID\": 1552,\n      \"grp\": \"cr\",\n      \"id\": \"1y\",\n      \"name\": \"Corrosion Resistant\",\n      \"rating\": \"F\",\n      \"mass\": 0,\n      \"symbol\": \"Int_CorrosionProofCargoRack_Size1_Class2\",\n      \"ukName\": \"Corrosion Resistant Cargo Rack\",\n      \"ukDiscript\": \"Specialised storage rack for use in automated cargo transfer system that can resist the effects of corrosive cargo.\"\n    },\n    {\n      \"cargo\": 16,\n      \"class\": 4,\n      \"cost\": 94330,\n      \"edID\": 128833944,\n      \"eddbID\": 1699,\n      \"grp\": \"cr\",\n      \"id\": \"0W\",\n      \"name\": \"Corrosion Resistant\",\n      \"rating\": \"E\",\n      \"mass\": 0,\n      \"symbol\": \"Int_CorrosionProofCargoRack_Size4_Class1\",\n      \"ukName\": \"Corrosion Resistant Cargo Rack\",\n      \"ukDiscript\": \"Specialised storage rack for use in automated cargo transfer system that can resist the effects of corrosive cargo.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/internal/collector_limpet_controllers.json",
    "content": "{\n  \"cc\": [\n    {\n      \"class\": 1,\n      \"cost\": 600,\n      \"edID\": 128671229,\n      \"eddbID\": 1394,\n      \"grp\": \"cc\",\n      \"id\": \"C1\",\n      \"mass\": 0.5,\n      \"maximum\": 1,\n      \"power\": 0.14,\n      \"range\": 0.8,\n      \"rating\": \"E\",\n      \"time\": 300,\n      \"symbol\": \"Int_DroneControl_Collection_Size1_Class1\",\n      \"ukName\": \"Collector\",\n      \"ukDiscript\": \"Controls limpets to collect canisters and asteroid chunks automatically.\"\n    },\n    {\n      \"class\": 1,\n      \"cost\": 1200,\n      \"edID\": 128671230,\n      \"eddbID\": 1395,\n      \"grp\": \"cc\",\n      \"id\": \"C2\",\n      \"mass\": 0.5,\n      \"maximum\": 1,\n      \"power\": 0.18,\n      \"range\": 0.6,\n      \"rating\": \"D\",\n      \"time\": 600,\n      \"symbol\": \"Int_DroneControl_Collection_Size1_Class2\",\n      \"ukName\": \"Collector\",\n      \"ukDiscript\": \"Controls limpets to collect canisters and asteroid chunks automatically.\"\n    },\n    {\n      \"class\": 1,\n      \"cost\": 2400,\n      \"edID\": 128671231,\n      \"eddbID\": 1396,\n      \"grp\": \"cc\",\n      \"id\": \"C3\",\n      \"mass\": 1.3,\n      \"maximum\": 1,\n      \"power\": 0.23,\n      \"range\": 1,\n      \"rating\": \"C\",\n      \"time\": 510,\n      \"symbol\": \"Int_DroneControl_Collection_Size1_Class3\",\n      \"ukName\": \"Collector\",\n      \"ukDiscript\": \"Controls limpets to collect canisters and asteroid chunks automatically.\"\n    },\n    {\n      \"class\": 1,\n      \"cost\": 4800,\n      \"edID\": 128671232,\n      \"eddbID\": 1397,\n      \"grp\": \"cc\",\n      \"id\": \"C4\",\n      \"mass\": 2,\n      \"maximum\": 1,\n      \"power\": 0.28,\n      \"range\": 1.4,\n      \"rating\": \"B\",\n      \"time\": 420,\n      \"symbol\": \"Int_DroneControl_Collection_Size1_Class4\",\n      \"ukName\": \"Collector\",\n      \"ukDiscript\": \"Controls limpets to collect canisters and asteroid chunks automatically.\"\n    },\n    {\n      \"class\": 1,\n      \"cost\": 9600,\n      \"edID\": 128671233,\n      \"eddbID\": 1398,\n      \"grp\": \"cc\",\n      \"id\": \"C5\",\n      \"mass\": 2,\n      \"maximum\": 1,\n      \"power\": 0.32,\n      \"range\": 1.2,\n      \"rating\": \"A\",\n      \"time\": 720,\n      \"symbol\": \"Int_DroneControl_Collection_Size1_Class5\",\n      \"ukName\": \"Collector\",\n      \"ukDiscript\": \"Controls limpets to collect canisters and asteroid chunks automatically.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 5400,\n      \"edID\": 128671234,\n      \"eddbID\": 1399,\n      \"grp\": \"cc\",\n      \"id\": \"C6\",\n      \"mass\": 2,\n      \"maximum\": 2,\n      \"power\": 0.2,\n      \"range\": 0.88,\n      \"rating\": \"E\",\n      \"time\": 300,\n      \"symbol\": \"Int_DroneControl_Collection_Size3_Class1\",\n      \"ukName\": \"Collector\",\n      \"ukDiscript\": \"Controls limpets to collect canisters and asteroid chunks automatically.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 10800,\n      \"edID\": 128671235,\n      \"eddbID\": 1400,\n      \"grp\": \"cc\",\n      \"id\": \"C7\",\n      \"mass\": 2,\n      \"maximum\": 2,\n      \"power\": 0.27,\n      \"range\": 0.66,\n      \"rating\": \"D\",\n      \"time\": 600,\n      \"symbol\": \"Int_DroneControl_Collection_Size3_Class2\",\n      \"ukName\": \"Collector\",\n      \"ukDiscript\": \"Controls limpets to collect canisters and asteroid chunks automatically.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 21600,\n      \"edID\": 128671236,\n      \"eddbID\": 1401,\n      \"grp\": \"cc\",\n      \"id\": \"C8\",\n      \"mass\": 5,\n      \"maximum\": 2,\n      \"power\": 0.34,\n      \"range\": 1.1,\n      \"rating\": \"C\",\n      \"time\": 510,\n      \"symbol\": \"Int_DroneControl_Collection_Size3_Class3\",\n      \"ukName\": \"Collector\",\n      \"ukDiscript\": \"Controls limpets to collect canisters and asteroid chunks automatically.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 43200,\n      \"edID\": 128671237,\n      \"eddbID\": 1402,\n      \"grp\": \"cc\",\n      \"id\": \"C9\",\n      \"mass\": 8,\n      \"maximum\": 2,\n      \"power\": 0.41,\n      \"range\": 1.54,\n      \"rating\": \"B\",\n      \"time\": 420,\n      \"symbol\": \"Int_DroneControl_Collection_Size3_Class4\",\n      \"ukName\": \"Collector\",\n      \"ukDiscript\": \"Controls limpets to collect canisters and asteroid chunks automatically.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 86400,\n      \"edID\": 128671238,\n      \"eddbID\": 1403,\n      \"grp\": \"cc\",\n      \"id\": \"C0\",\n      \"mass\": 8,\n      \"maximum\": 2,\n      \"power\": 0.48,\n      \"range\": 1.32,\n      \"rating\": \"A\",\n      \"time\": 720,\n      \"symbol\": \"Int_DroneControl_Collection_Size3_Class5\",\n      \"ukName\": \"Collector\",\n      \"ukDiscript\": \"Controls limpets to collect canisters and asteroid chunks automatically.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 48600,\n      \"edID\": 128671239,\n      \"eddbID\": 1404,\n      \"grp\": \"cc\",\n      \"id\": \"Ca\",\n      \"mass\": 8,\n      \"maximum\": 3,\n      \"power\": 0.3,\n      \"range\": 1.04,\n      \"rating\": \"E\",\n      \"time\": 300,\n      \"symbol\": \"Int_DroneControl_Collection_Size5_Class1\",\n      \"ukName\": \"Collector\",\n      \"ukDiscript\": \"Controls limpets to collect canisters and asteroid chunks automatically.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 97200,\n      \"edID\": 128671240,\n      \"eddbID\": 1405,\n      \"grp\": \"cc\",\n      \"id\": \"Cb\",\n      \"mass\": 8,\n      \"maximum\": 3,\n      \"power\": 0.4,\n      \"range\": 0.78,\n      \"rating\": \"D\",\n      \"time\": 600,\n      \"symbol\": \"Int_DroneControl_Collection_Size5_Class2\",\n      \"ukName\": \"Collector\",\n      \"ukDiscript\": \"Controls limpets to collect canisters and asteroid chunks automatically.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 194400,\n      \"edID\": 128671241,\n      \"eddbID\": 1406,\n      \"grp\": \"cc\",\n      \"id\": \"Cc\",\n      \"mass\": 20,\n      \"maximum\": 3,\n      \"power\": 0.5,\n      \"range\": 1.3,\n      \"rating\": \"C\",\n      \"time\": 510,\n      \"symbol\": \"Int_DroneControl_Collection_Size5_Class3\",\n      \"ukName\": \"Collector\",\n      \"ukDiscript\": \"Controls limpets to collect canisters and asteroid chunks automatically.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 388800,\n      \"edID\": 128671242,\n      \"eddbID\": 1407,\n      \"grp\": \"cc\",\n      \"id\": \"Cd\",\n      \"mass\": 32,\n      \"maximum\": 3,\n      \"power\": 0.6,\n      \"range\": 1.82,\n      \"rating\": \"B\",\n      \"time\": 420,\n      \"symbol\": \"Int_DroneControl_Collection_Size5_Class4\",\n      \"ukName\": \"Collector\",\n      \"ukDiscript\": \"Controls limpets to collect canisters and asteroid chunks automatically.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 777600,\n      \"edID\": 128671243,\n      \"eddbID\": 1408,\n      \"grp\": \"cc\",\n      \"id\": \"Ce\",\n      \"mass\": 32,\n      \"maximum\": 3,\n      \"power\": 0.7,\n      \"range\": 1.56,\n      \"rating\": \"A\",\n      \"time\": 720,\n      \"symbol\": \"Int_DroneControl_Collection_Size5_Class5\",\n      \"ukName\": \"Collector\",\n      \"ukDiscript\": \"Controls limpets to collect canisters and asteroid chunks automatically.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 437400,\n      \"edID\": 128671244,\n      \"eddbID\": 1409,\n      \"grp\": \"cc\",\n      \"id\": \"Cf\",\n      \"mass\": 32,\n      \"maximum\": 4,\n      \"power\": 0.41,\n      \"range\": 1.36,\n      \"rating\": \"E\",\n      \"time\": 300,\n      \"symbol\": \"Int_DroneControl_Collection_Size7_Class1\",\n      \"ukName\": \"Collector\",\n      \"ukDiscript\": \"Controls limpets to collect canisters and asteroid chunks automatically.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 874800,\n      \"edID\": 128671245,\n      \"eddbID\": 1410,\n      \"grp\": \"cc\",\n      \"id\": \"Cg\",\n      \"mass\": 32,\n      \"maximum\": 4,\n      \"power\": 0.55,\n      \"range\": 1.02,\n      \"rating\": \"D\",\n      \"time\": 600,\n      \"symbol\": \"Int_DroneControl_Collection_Size7_Class2\",\n      \"ukName\": \"Collector\",\n      \"ukDiscript\": \"Controls limpets to collect canisters and asteroid chunks automatically.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 1749600,\n      \"edID\": 128671246,\n      \"eddbID\": 1411,\n      \"grp\": \"cc\",\n      \"id\": \"Ch\",\n      \"mass\": 80,\n      \"maximum\": 4,\n      \"power\": 0.69,\n      \"range\": 1.7,\n      \"rating\": \"C\",\n      \"time\": 510,\n      \"symbol\": \"Int_DroneControl_Collection_Size7_Class3\",\n      \"ukName\": \"Collector\",\n      \"ukDiscript\": \"Controls limpets to collect canisters and asteroid chunks automatically.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 3499200,\n      \"edID\": 128671247,\n      \"eddbID\": 1412,\n      \"grp\": \"cc\",\n      \"id\": \"Ci\",\n      \"mass\": 128,\n      \"maximum\": 4,\n      \"power\": 0.83,\n      \"range\": 2.38,\n      \"rating\": \"B\",\n      \"time\": 420,\n      \"symbol\": \"Int_DroneControl_Collection_Size7_Class4\",\n      \"ukName\": \"Collector\",\n      \"ukDiscript\": \"Controls limpets to collect canisters and asteroid chunks automatically.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 6998400,\n      \"edID\": 128671248,\n      \"eddbID\": 1413,\n      \"grp\": \"cc\",\n      \"id\": \"Cj\",\n      \"mass\": 128,\n      \"maximum\": 4,\n      \"power\": 0.97,\n      \"range\": 2.04,\n      \"rating\": \"A\",\n      \"time\": 720,\n      \"symbol\": \"Int_DroneControl_Collection_Size7_Class5\",\n      \"ukName\": \"Collector\",\n      \"ukDiscript\": \"Controls limpets to collect canisters and asteroid chunks automatically.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/internal/decontamination_limpet_controller.json",
    "content": "{\n  \"dtl\": [\n    {\n      \"class\": 1,\n      \"cost\": 3600,\n      \"edID\": 128793941,\n      \"eddbID\": 1632,\n      \"grp\": \"dtl\",\n      \"id\": \"y1\",\n      \"mass\": 1.3,\n      \"maximum\": 1,\n      \"power\": 0.18,\n      \"range\": 0.6,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_DroneControl_Decontamination_Size1_Class1\",\n      \"ukName\": \"Decontamination\",\n      \"ukDiscript\": \"Controls a limpet that removes caustic chemicals affecting a ship's hull, as well as applying a small amount of hull repair.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 16201,\n      \"edID\": 128793942,\n      \"eddbID\": 1633,\n      \"grp\": \"dtl\",\n      \"id\": \"y2\",\n      \"mass\": 2,\n      \"maximum\": 2,\n      \"power\": 0.2,\n      \"range\": 0.88,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_DroneControl_Decontamination_Size3_Class1\",\n      \"ukName\": \"Decontamination\",\n      \"ukDiscript\": \"Controls a limpet that removes caustic chemicals affecting a ship's hull, as well as applying a small amount of hull repair.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 145801,\n      \"edID\": 128793943,\n      \"eddbID\": 1634,\n      \"grp\": \"dtl\",\n      \"id\": \"y3\",\n      \"mass\": 20,\n      \"maximum\": 3,\n      \"power\": 0.5,\n      \"range\": 1.3,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_DroneControl_Decontamination_Size5_Class1\",\n      \"ukName\": \"Decontamination\",\n      \"ukDiscript\": \"Controls a limpet that removes caustic chemicals affecting a ship's hull, as well as applying a small amount of hull repair.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 1312201,\n      \"edID\": 128793944,\n      \"eddbID\": 1635,\n      \"grp\": \"dtl\",\n      \"id\": \"y4\",\n      \"mass\": 128,\n      \"maximum\": 4,\n      \"power\": 0.97,\n      \"range\": 2.04,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_DroneControl_Decontamination_Size7_Class1\",\n      \"ukName\": \"Decontamination\",\n      \"ukDiscript\": \"Controls a limpet that removes caustic chemicals affecting a ship's hull, as well as applying a small amount of hull repair.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/internal/docking_computer.json",
    "content": "{\n  \"dc\": [\n    {\n      \"class\": 1,\n      \"cost\": 4500,\n      \"edID\": 128049549,\n      \"eddbID\": 890,\n      \"grp\": \"dc\",\n      \"id\": \"24\",\n      \"integrity\": 10,\n      \"name\": \"Standard Docking Computer\",\n      \"power\": 0.39,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_DockingComputer_Standard\",\n      \"ukName\": \"Docking Computer\",\n      \"ukDiscript\": \"Allows assisted docking sequence at all starports and outposts.\"\n    },\n    {\n      \"class\": 1,\n      \"cost\": 13509,\n      \"edID\": 128935155,\n      \"eddbID\": 890,\n      \"grp\": \"dc\",\n      \"id\": \"3x\",\n      \"integrity\": 10,\n      \"name\": \"Advanced Docking Computer\",\n      \"power\": 0.45,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_DockingComputer_Advanced\",\n      \"ukName\": \"Advanced Docking Computer\",\n      \"ukDiscript\": \"Allows assisted docking and launch at all starports and outposts.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/internal/economy_passenger_cabin.json",
    "content": "{\n  \"pce\": [\n    {\n      \"class\": 2,\n      \"cost\": 4320,\n      \"edID\": 128734690,\n      \"eddbID\": 1563,\n      \"grp\": \"pce\",\n      \"id\": \"ma\",\n      \"mass\": 2.5,\n      \"passengers\": 2,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_PassengerCabin_Size2_Class1\",\n      \"ukName\": \"EC Passenger Cabin\",\n      \"ukDiscript\": \"Economy Class Passenger Cabin.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 8659,\n      \"edID\": 128734691,\n      \"eddbID\": 1564,\n      \"grp\": \"pce\",\n      \"id\": \"mb\",\n      \"mass\": 5,\n      \"passengers\": 4,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_PassengerCabin_Size3_Class1\",\n      \"ukName\": \"EC Passenger Cabin\",\n      \"ukDiscript\": \"Economy Class Passenger Cabin.\"\n    },\n    {\n      \"class\": 4,\n      \"cost\": 18960,\n      \"edID\": 128727922,\n      \"eddbID\": 1565,\n      \"grp\": \"pce\",\n      \"id\": \"mc\",\n      \"mass\": 10,\n      \"passengers\": 8,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_PassengerCabin_Size4_Class1\",\n      \"ukName\": \"EC Passenger Cabin\",\n      \"ukDiscript\": \"Economy Class Passenger Cabin.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 34960,\n      \"edID\": 128734693,\n      \"eddbID\": 1566,\n      \"grp\": \"pce\",\n      \"id\": \"md\",\n      \"mass\": 20,\n      \"passengers\": 16,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_PassengerCabin_Size5_Class1\",\n      \"ukName\": \"EC Passenger Cabin\",\n      \"ukDiscript\": \"Economy Class Passenger Cabin.\"\n    },\n    {\n      \"class\": 6,\n      \"cost\": 61420,\n      \"edID\": 128727926,\n      \"eddbID\": 1567,\n      \"grp\": \"pce\",\n      \"id\": \"me\",\n      \"mass\": 40,\n      \"passengers\": 32,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_PassengerCabin_Size6_Class1\",\n      \"ukName\": \"EC Passenger Cabin\",\n      \"ukDiscript\": \"Economy Class Passenger Cabin.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/internal/fighter_hangar.json",
    "content": "{\n  \"fh\": [\n    {\n      \"bays\": 1,\n      \"class\": 5,\n      \"cost\": 575644,\n      \"edID\": 128727930,\n      \"eddbID\": 1562,\n      \"fightercost\": 1030,\n      \"grp\": \"fh\",\n      \"id\": \"fr\",\n      \"integrity\": 60,\n      \"mass\": 20,\n      \"power\": 0.25,\n      \"rating\": \"D\",\n      \"rebuildsperbay\": 6,\n      \"symbol\": \"Int_FighterBay_Size5_Class1\",\n      \"ukName\": \"Fighter Hangar\",\n      \"ukDiscript\": \"A module designed to house ship launched vehicles.\"\n    },\n    {\n      \"bays\": 2,\n      \"class\": 6,\n      \"cost\": 1869350,\n      \"edID\": 128727931,\n      \"eddbID\": 1561,\n      \"fightercost\": 1030,\n      \"grp\": \"fh\",\n      \"id\": \"fm\",\n      \"integrity\": 80,\n      \"mass\": 40,\n      \"power\": 0.35,\n      \"rating\": \"D\",\n      \"rebuildsperbay\": 8,\n      \"symbol\": \"Int_FighterBay_Size6_Class1\",\n      \"ukName\": \"Fighter Hangar\",\n      \"ukDiscript\": \"A module designed to house ship launched vehicles.\"\n    },\n    {\n      \"bays\": 2,\n      \"class\": 7,\n      \"edID\": 128727932,\n      \"cost\": 2369330,\n      \"eddbID\": 1560,\n      \"fightercost\": 1030,\n      \"grp\": \"fh\",\n      \"id\": \"fh\",\n      \"integrity\": 120,\n      \"mass\": 60,\n      \"power\": 0.35,\n      \"rating\": \"D\",\n      \"rebuildsperbay\": 15,\n      \"symbol\": \"Int_FighterBay_Size7_Class1\",\n      \"ukName\": \"Fighter Hangar\",\n      \"ukDiscript\": \"A module designed to house ship launched vehicles.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/internal/first_passenger_cabin.json",
    "content": "{\n  \"pcm\": [\n    {\n      \"class\": 4,\n      \"cost\": 170587,\n      \"edID\": 128727924,\n      \"eddbID\": 1572,\n      \"grp\": \"pcm\",\n      \"id\": \"mj\",\n      \"mass\": 10,\n      \"passengers\": 3,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_PassengerCabin_Size4_Class3\",\n      \"ukName\": \"FC Passenger Cabin\",\n      \"ukDiscript\": \"First Class Passenger Cabin.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 340528,\n      \"edID\": 128734695,\n      \"eddbID\": 1573,\n      \"grp\": \"pcm\",\n      \"id\": \"mk\",\n      \"mass\": 20,\n      \"passengers\": 6,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_PassengerCabin_Size5_Class3\",\n      \"ukName\": \"FC Passenger Cabin\",\n      \"ukDiscript\": \"First Class Passenger Cabin.\"\n    },\n    {\n      \"class\": 6,\n      \"cost\": 552700,\n      \"edID\": 128727928,\n      \"eddbID\": 1574,\n      \"grp\": \"pcm\",\n      \"id\": \"ml\",\n      \"mass\": 40,\n      \"passengers\": 12,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_PassengerCabin_Size6_Class3\",\n      \"ukName\": \"FC Passenger Cabin\",\n      \"ukDiscript\": \"First Class Passenger Cabin.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/internal/frame_shift_drive_interdictor.json",
    "content": "{\n  \"fi\": [\n    {\n      \"boot\": 15,\n      \"class\": 1,\n      \"cost\": 12000,\n      \"edID\": 128666704,\n      \"eddbID\": 1306,\n      \"facinglimit\": 50,\n      \"grp\": \"fi\",\n      \"id\": \"6a\",\n      \"integrity\": 32,\n      \"mass\": 1.3,\n      \"power\": 0.14,\n      \"ranget\": 3,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_FSDInterdictor_Size1_Class1\",\n      \"ukName\": \"FSD Interdictor\",\n      \"ukDiscript\": \"Used to pull targets out of supercruise.\"\n    },\n    {\n      \"boot\": 15,\n      \"class\": 1,\n      \"cost\": 36000,\n      \"edID\": 128666708,\n      \"eddbID\": 1310,\n      \"facinglimit\": 50,\n      \"grp\": \"fi\",\n      \"id\": \"69\",\n      \"integrity\": 24,\n      \"mass\": 0.5,\n      \"power\": 0.18,\n      \"ranget\": 4,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_FSDInterdictor_Size1_Class2\",\n      \"ukName\": \"FSD Interdictor\",\n      \"ukDiscript\": \"Used to pull targets out of supercruise.\"\n    },\n    {\n      \"boot\": 15,\n      \"class\": 1,\n      \"cost\": 108000,\n      \"edID\": 128666712,\n      \"eddbID\": 1314,\n      \"facinglimit\": 50,\n      \"grp\": \"fi\",\n      \"id\": \"68\",\n      \"integrity\": 40,\n      \"mass\": 1.3,\n      \"power\": 0.23,\n      \"ranget\": 5,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_FSDInterdictor_Size1_Class3\",\n      \"ukName\": \"FSD Interdictor\",\n      \"ukDiscript\": \"Used to pull targets out of supercruise.\"\n    },\n    {\n      \"boot\": 15,\n      \"class\": 1,\n      \"cost\": 324000,\n      \"edID\": 128666716,\n      \"eddbID\": 1318,\n      \"facinglimit\": 50,\n      \"grp\": \"fi\",\n      \"id\": \"67\",\n      \"integrity\": 56,\n      \"mass\": 2,\n      \"power\": 0.28,\n      \"ranget\": 6,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_FSDInterdictor_Size1_Class4\",\n      \"ukName\": \"FSD Interdictor\",\n      \"ukDiscript\": \"Used to pull targets out of supercruise.\"\n    },\n    {\n      \"boot\": 15,\n      \"class\": 1,\n      \"cost\": 972000,\n      \"edID\": 128666720,\n      \"eddbID\": 1322,\n      \"facinglimit\": 50,\n      \"grp\": \"fi\",\n      \"id\": \"66\",\n      \"integrity\": 48,\n      \"mass\": 1.3,\n      \"power\": 0.32,\n      \"ranget\": 7,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_FSDInterdictor_Size1_Class5\",\n      \"ukName\": \"FSD Interdictor\",\n      \"ukDiscript\": \"Used to pull targets out of supercruise.\"\n    },\n    {\n      \"boot\": 15,\n      \"class\": 2,\n      \"cost\": 33600,\n      \"edID\": 128666705,\n      \"eddbID\": 1307,\n      \"facinglimit\": 50,\n      \"grp\": \"fi\",\n      \"id\": \"6f\",\n      \"integrity\": 41,\n      \"mass\": 2.5,\n      \"power\": 0.17,\n      \"ranget\": 6,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_FSDInterdictor_Size2_Class1\",\n      \"ukName\": \"FSD Interdictor\",\n      \"ukDiscript\": \"Used to pull targets out of supercruise.\"\n    },\n    {\n      \"boot\": 15,\n      \"class\": 2,\n      \"cost\": 100800,\n      \"edID\": 128666709,\n      \"eddbID\": 1311,\n      \"facinglimit\": 50,\n      \"grp\": \"fi\",\n      \"id\": \"6e\",\n      \"integrity\": 51,\n      \"mass\": 1,\n      \"power\": 0.22,\n      \"ranget\": 7,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_FSDInterdictor_Size2_Class2\",\n      \"ukName\": \"FSD Interdictor\",\n      \"ukDiscript\": \"Used to pull targets out of supercruise.\"\n    },\n    {\n      \"boot\": 15,\n      \"class\": 2,\n      \"cost\": 302400,\n      \"edID\": 128666713,\n      \"eddbID\": 1315,\n      \"facinglimit\": 50,\n      \"grp\": \"fi\",\n      \"id\": \"6d\",\n      \"integrity\": 51,\n      \"mass\": 2.5,\n      \"power\": 0.28,\n      \"ranget\": 8,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_FSDInterdictor_Size2_Class3\",\n      \"ukName\": \"FSD Interdictor\",\n      \"ukDiscript\": \"Used to pull targets out of supercruise.\"\n    },\n    {\n      \"boot\": 15,\n      \"class\": 2,\n      \"cost\": 907200,\n      \"edID\": 128666717,\n      \"eddbID\": 1319,\n      \"facinglimit\": 50,\n      \"grp\": \"fi\",\n      \"id\": \"6c\",\n      \"integrity\": 71,\n      \"mass\": 4,\n      \"power\": 0.34,\n      \"ranget\": 9,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_FSDInterdictor_Size2_Class4\",\n      \"ukName\": \"FSD Interdictor\",\n      \"ukDiscript\": \"Used to pull targets out of supercruise.\"\n    },\n    {\n      \"boot\": 15,\n      \"class\": 2,\n      \"cost\": 2721600,\n      \"edID\": 128666721,\n      \"eddbID\": 1323,\n      \"facinglimit\": 50,\n      \"grp\": \"fi\",\n      \"id\": \"6b\",\n      \"integrity\": 61,\n      \"mass\": 2.5,\n      \"power\": 0.39,\n      \"ranget\": 10,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_FSDInterdictor_Size2_Class5\",\n      \"ukName\": \"FSD Interdictor\",\n      \"ukDiscript\": \"Used to pull targets out of supercruise.\"\n    },\n    {\n      \"boot\": 15,\n      \"class\": 3,\n      \"cost\": 94080,\n      \"edID\": 128666706,\n      \"eddbID\": 1308,\n      \"facinglimit\": 50,\n      \"grp\": \"fi\",\n      \"id\": \"6k\",\n      \"integrity\": 51,\n      \"mass\": 5,\n      \"power\": 0.2,\n      \"ranget\": 9,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_FSDInterdictor_Size3_Class1\",\n      \"ukName\": \"FSD Interdictor\",\n      \"ukDiscript\": \"Used to pull targets out of supercruise.\"\n    },\n    {\n      \"boot\": 15,\n      \"class\": 3,\n      \"cost\": 282240,\n      \"edID\": 128666710,\n      \"eddbID\": 1312,\n      \"facinglimit\": 50,\n      \"grp\": \"fi\",\n      \"id\": \"6j\",\n      \"integrity\": 38,\n      \"mass\": 2,\n      \"power\": 0.27,\n      \"ranget\": 10,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_FSDInterdictor_Size3_Class2\",\n      \"ukName\": \"FSD Interdictor\",\n      \"ukDiscript\": \"Used to pull targets out of supercruise.\"\n    },\n    {\n      \"boot\": 15,\n      \"class\": 3,\n      \"cost\": 846720,\n      \"edID\": 128666714,\n      \"eddbID\": 1316,\n      \"facinglimit\": 50,\n      \"grp\": \"fi\",\n      \"id\": \"6i\",\n      \"integrity\": 64,\n      \"mass\": 5,\n      \"power\": 0.34,\n      \"ranget\": 11,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_FSDInterdictor_Size3_Class3\",\n      \"ukName\": \"FSD Interdictor\",\n      \"ukDiscript\": \"Used to pull targets out of supercruise.\"\n    },\n    {\n      \"boot\": 15,\n      \"class\": 3,\n      \"cost\": 2540160,\n      \"edID\": 128666718,\n      \"eddbID\": 1320,\n      \"facinglimit\": 50,\n      \"grp\": \"fi\",\n      \"id\": \"6h\",\n      \"integrity\": 90,\n      \"mass\": 8,\n      \"power\": 0.41,\n      \"ranget\": 12,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_FSDInterdictor_Size3_Class4\",\n      \"ukName\": \"FSD Interdictor\",\n      \"ukDiscript\": \"Used to pull targets out of supercruise.\"\n    },\n    {\n      \"boot\": 15,\n      \"class\": 3,\n      \"cost\": 7620480,\n      \"edID\": 128666722,\n      \"eddbID\": 1324,\n      \"facinglimit\": 50,\n      \"grp\": \"fi\",\n      \"id\": \"6g\",\n      \"integrity\": 77,\n      \"mass\": 5,\n      \"power\": 0.48,\n      \"ranget\": 13,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_FSDInterdictor_Size3_Class5\",\n      \"ukName\": \"FSD Interdictor\",\n      \"ukDiscript\": \"Used to pull targets out of supercruise.\"\n    },\n    {\n      \"boot\": 15,\n      \"class\": 4,\n      \"cost\": 263420,\n      \"edID\": 128666707,\n      \"eddbID\": 1309,\n      \"facinglimit\": 50,\n      \"grp\": \"fi\",\n      \"id\": \"6p\",\n      \"integrity\": 64,\n      \"mass\": 10,\n      \"power\": 0.25,\n      \"ranget\": 12,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_FSDInterdictor_Size4_Class1\",\n      \"ukName\": \"FSD Interdictor\",\n      \"ukDiscript\": \"Used to pull targets out of supercruise.\"\n    },\n    {\n      \"boot\": 15,\n      \"class\": 4,\n      \"cost\": 790270,\n      \"edID\": 128666711,\n      \"eddbID\": 1313,\n      \"facinglimit\": 50,\n      \"grp\": \"fi\",\n      \"id\": \"6o\",\n      \"integrity\": 48,\n      \"mass\": 4,\n      \"power\": 0.33,\n      \"ranget\": 13,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_FSDInterdictor_Size4_Class2\",\n      \"ukName\": \"FSD Interdictor\",\n      \"ukDiscript\": \"Used to pull targets out of supercruise.\"\n    },\n    {\n      \"boot\": 15,\n      \"class\": 4,\n      \"cost\": 2370820,\n      \"edID\": 128666715,\n      \"eddbID\": 1317,\n      \"facinglimit\": 50,\n      \"grp\": \"fi\",\n      \"id\": \"6n\",\n      \"integrity\": 80,\n      \"mass\": 10,\n      \"power\": 0.41,\n      \"ranget\": 14,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_FSDInterdictor_Size4_Class3\",\n      \"ukName\": \"FSD Interdictor\",\n      \"ukDiscript\": \"Used to pull targets out of supercruise.\"\n    },\n    {\n      \"boot\": 15,\n      \"class\": 4,\n      \"cost\": 7112450,\n      \"edID\": 128666719,\n      \"eddbID\": 1321,\n      \"facinglimit\": 50,\n      \"grp\": \"fi\",\n      \"id\": \"6m\",\n      \"integrity\": 112,\n      \"mass\": 16,\n      \"power\": 0.49,\n      \"ranget\": 15,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_FSDInterdictor_Size4_Class4\",\n      \"ukName\": \"FSD Interdictor\",\n      \"ukDiscript\": \"Used to pull targets out of supercruise.\"\n    },\n    {\n      \"boot\": 15,\n      \"class\": 4,\n      \"cost\": 21337340,\n      \"edID\": 128666723,\n      \"eddbID\": 1325,\n      \"facinglimit\": 50,\n      \"grp\": \"fi\",\n      \"id\": \"6l\",\n      \"integrity\": 96,\n      \"mass\": 10,\n      \"power\": 0.57,\n      \"ranget\": 16,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_FSDInterdictor_Size4_Class5\",\n      \"ukName\": \"FSD Interdictor\",\n      \"ukDiscript\": \"Used to pull targets out of supercruise.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/internal/fuel_scoop.json",
    "content": "{\n  \"fs\": [\n    {\n      \"class\": 1,\n      \"cost\": 310,\n      \"edID\": 128666644,\n      \"eddbID\": 1246,\n      \"grp\": \"fs\",\n      \"id\": \"2n\",\n      \"power\": 0.14,\n      \"rate\": 18,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_FuelScoop_Size1_Class1\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 1,\n      \"cost\": 1290,\n      \"edID\": 128666652,\n      \"eddbID\": 1254,\n      \"grp\": \"fs\",\n      \"id\": \"2m\",\n      \"power\": 0.18,\n      \"rate\": 24,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_FuelScoop_Size1_Class2\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 1,\n      \"cost\": 5140,\n      \"edID\": 128666660,\n      \"eddbID\": 1262,\n      \"grp\": \"fs\",\n      \"id\": \"2l\",\n      \"power\": 0.23,\n      \"rate\": 30,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_FuelScoop_Size1_Class3\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 1,\n      \"cost\": 20570,\n      \"edID\": 128666668,\n      \"eddbID\": 1270,\n      \"grp\": \"fs\",\n      \"id\": \"2k\",\n      \"power\": 0.28,\n      \"rate\": 36,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_FuelScoop_Size1_Class4\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 1,\n      \"cost\": 82270,\n      \"edID\": 128666676,\n      \"eddbID\": 1278,\n      \"grp\": \"fs\",\n      \"id\": \"2j\",\n      \"power\": 0.32,\n      \"rate\": 42,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_FuelScoop_Size1_Class5\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 2,\n      \"cost\": 1070,\n      \"edID\": 128666645,\n      \"eddbID\": 1247,\n      \"grp\": \"fs\",\n      \"id\": \"2s\",\n      \"power\": 0.17,\n      \"rate\": 32,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_FuelScoop_Size2_Class1\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 2,\n      \"cost\": 4450,\n      \"edID\": 128666653,\n      \"eddbID\": 1255,\n      \"grp\": \"fs\",\n      \"id\": \"2r\",\n      \"power\": 0.22,\n      \"rate\": 43,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_FuelScoop_Size2_Class2\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 2,\n      \"cost\": 17800,\n      \"edID\": 128666661,\n      \"eddbID\": 1263,\n      \"grp\": \"fs\",\n      \"id\": \"2q\",\n      \"power\": 0.28,\n      \"rate\": 54,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_FuelScoop_Size2_Class3\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 2,\n      \"cost\": 71210,\n      \"edID\": 128666669,\n      \"eddbID\": 1271,\n      \"grp\": \"fs\",\n      \"id\": \"2p\",\n      \"power\": 0.34,\n      \"rate\": 65,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_FuelScoop_Size2_Class4\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 2,\n      \"cost\": 284840,\n      \"edID\": 128666677,\n      \"eddbID\": 1279,\n      \"grp\": \"fs\",\n      \"id\": \"2o\",\n      \"power\": 0.39,\n      \"rate\": 75,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_FuelScoop_Size2_Class5\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 3390,\n      \"edID\": 128666646,\n      \"eddbID\": 1248,\n      \"grp\": \"fs\",\n      \"id\": \"31\",\n      \"power\": 0.2,\n      \"rate\": 75,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_FuelScoop_Size3_Class1\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 14110,\n      \"edID\": 128666654,\n      \"eddbID\": 1256,\n      \"grp\": \"fs\",\n      \"id\": \"30\",\n      \"power\": 0.27,\n      \"rate\": 100,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_FuelScoop_Size3_Class2\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 56440,\n      \"edID\": 128666662,\n      \"eddbID\": 1264,\n      \"grp\": \"fs\",\n      \"id\": \"2v\",\n      \"power\": 0.34,\n      \"rate\": 126,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_FuelScoop_Size3_Class3\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 225740,\n      \"edID\": 128666670,\n      \"eddbID\": 1272,\n      \"grp\": \"fs\",\n      \"id\": \"2u\",\n      \"power\": 0.41,\n      \"rate\": 151,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_FuelScoop_Size3_Class4\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 902950,\n      \"edID\": 128666678,\n      \"eddbID\": 1280,\n      \"grp\": \"fs\",\n      \"id\": \"2t\",\n      \"power\": 0.48,\n      \"rate\": 176,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_FuelScoop_Size3_Class5\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 4,\n      \"cost\": 10730,\n      \"edID\": 128666647,\n      \"eddbID\": 1249,\n      \"grp\": \"fs\",\n      \"id\": \"36\",\n      \"power\": 0.25,\n      \"rate\": 147,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_FuelScoop_Size4_Class1\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 4,\n      \"cost\": 44720,\n      \"edID\": 128666655,\n      \"eddbID\": 1257,\n      \"grp\": \"fs\",\n      \"id\": \"35\",\n      \"power\": 0.33,\n      \"rate\": 196,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_FuelScoop_Size4_Class2\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 4,\n      \"cost\": 178900,\n      \"edID\": 128666663,\n      \"eddbID\": 1265,\n      \"grp\": \"fs\",\n      \"id\": \"34\",\n      \"power\": 0.41,\n      \"rate\": 245,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_FuelScoop_Size4_Class3\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 4,\n      \"cost\": 715590,\n      \"edID\": 128666671,\n      \"eddbID\": 1273,\n      \"grp\": \"fs\",\n      \"id\": \"33\",\n      \"power\": 0.49,\n      \"rate\": 294,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_FuelScoop_Size4_Class4\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 4,\n      \"cost\": 2862360,\n      \"edID\": 128666679,\n      \"eddbID\": 1281,\n      \"grp\": \"fs\",\n      \"id\": \"32\",\n      \"power\": 0.57,\n      \"rate\": 342,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_FuelScoop_Size4_Class5\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 34030,\n      \"edID\": 128666648,\n      \"eddbID\": 1250,\n      \"grp\": \"fs\",\n      \"id\": \"3b\",\n      \"power\": 0.3,\n      \"rate\": 247,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_FuelScoop_Size5_Class1\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 141780,\n      \"edID\": 128666656,\n      \"eddbID\": 1258,\n      \"grp\": \"fs\",\n      \"id\": \"3a\",\n      \"power\": 0.4,\n      \"rate\": 330,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_FuelScoop_Size5_Class2\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 567110,\n      \"edID\": 128666664,\n      \"eddbID\": 1266,\n      \"grp\": \"fs\",\n      \"id\": \"39\",\n      \"power\": 0.5,\n      \"rate\": 412,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_FuelScoop_Size5_Class3\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 2268420,\n      \"edID\": 128666672,\n      \"eddbID\": 1274,\n      \"grp\": \"fs\",\n      \"id\": \"38\",\n      \"power\": 0.6,\n      \"rate\": 494,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_FuelScoop_Size5_Class4\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 9073690,\n      \"edID\": 128666680,\n      \"eddbID\": 1282,\n      \"grp\": \"fs\",\n      \"id\": \"37\",\n      \"power\": 0.7,\n      \"rate\": 577,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_FuelScoop_Size5_Class5\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 6,\n      \"cost\": 107860,\n      \"edID\": 128666649,\n      \"eddbID\": 1251,\n      \"grp\": \"fs\",\n      \"id\": \"3g\",\n      \"power\": 0.35,\n      \"rate\": 376,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_FuelScoop_Size6_Class1\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 6,\n      \"cost\": 449430,\n      \"edID\": 128666657,\n      \"eddbID\": 1259,\n      \"grp\": \"fs\",\n      \"id\": \"3f\",\n      \"power\": 0.47,\n      \"rate\": 502,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_FuelScoop_Size6_Class2\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 6,\n      \"cost\": 1797730,\n      \"edID\": 128666665,\n      \"eddbID\": 1267,\n      \"grp\": \"fs\",\n      \"id\": \"3e\",\n      \"power\": 0.59,\n      \"rate\": 627,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_FuelScoop_Size6_Class3\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 6,\n      \"cost\": 7190900,\n      \"edID\": 128666673,\n      \"eddbID\": 1275,\n      \"grp\": \"fs\",\n      \"id\": \"3d\",\n      \"power\": 0.71,\n      \"rate\": 752,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_FuelScoop_Size6_Class4\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 6,\n      \"cost\": 28763610,\n      \"edID\": 128666681,\n      \"eddbID\": 1283,\n      \"grp\": \"fs\",\n      \"id\": \"3c\",\n      \"power\": 0.83,\n      \"rate\": 878,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_FuelScoop_Size6_Class5\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 341930,\n      \"edID\": 128666650,\n      \"eddbID\": 1252,\n      \"grp\": \"fs\",\n      \"id\": \"3l\",\n      \"power\": 0.41,\n      \"rate\": 534,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_FuelScoop_Size7_Class1\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 1424700,\n      \"edID\": 128666658,\n      \"eddbID\": 1260,\n      \"grp\": \"fs\",\n      \"id\": \"3k\",\n      \"power\": 0.55,\n      \"rate\": 712,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_FuelScoop_Size7_Class2\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 5698790,\n      \"edID\": 128666666,\n      \"eddbID\": 1268,\n      \"grp\": \"fs\",\n      \"id\": \"3j\",\n      \"power\": 0.69,\n      \"rate\": 890,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_FuelScoop_Size7_Class3\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 22795160,\n      \"edID\": 128666674,\n      \"eddbID\": 1276,\n      \"grp\": \"fs\",\n      \"id\": \"3i\",\n      \"power\": 0.83,\n      \"rate\": 1068,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_FuelScoop_Size7_Class4\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 91180640,\n      \"edID\": 128666682,\n      \"eddbID\": 1284,\n      \"grp\": \"fs\",\n      \"id\": \"3h\",\n      \"power\": 0.97,\n      \"rate\": 1245,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_FuelScoop_Size7_Class5\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 8,\n      \"cost\": 1083910,\n      \"edID\": 128666651,\n      \"eddbID\": 1253,\n      \"grp\": \"fs\",\n      \"id\": \"3q\",\n      \"power\": 0.48,\n      \"rate\": 720,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_FuelScoop_Size8_Class1\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 8,\n      \"cost\": 4516290,\n      \"edID\": 128666659,\n      \"eddbID\": 1261,\n      \"grp\": \"fs\",\n      \"id\": \"3p\",\n      \"power\": 0.64,\n      \"rate\": 960,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_FuelScoop_Size8_Class2\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 8,\n      \"cost\": 18065160,\n      \"edID\": 128666667,\n      \"eddbID\": 1269,\n      \"grp\": \"fs\",\n      \"id\": \"3o\",\n      \"power\": 0.8,\n      \"rate\": 1200,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_FuelScoop_Size8_Class3\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 8,\n      \"cost\": 72260660,\n      \"edID\": 128666675,\n      \"eddbID\": 1277,\n      \"grp\": \"fs\",\n      \"id\": \"3n\",\n      \"power\": 0.96,\n      \"rate\": 1440,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_FuelScoop_Size8_Class4\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    },\n    {\n      \"class\": 8,\n      \"cost\": 289042642,\n      \"edID\": 128666683,\n      \"eddbID\": 1285,\n      \"grp\": \"fs\",\n      \"id\": \"3m\",\n      \"power\": 1.12,\n      \"rate\": 1680,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_FuelScoop_Size8_Class5\",\n      \"ukName\": \"Fuel Scoop\",\n      \"ukDiscript\": \"Fly close to the sun with an active fuel scoop to collect fuel.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/internal/fuel_transfer_limpet_controllers.json",
    "content": "{\n  \"fx\": [\n    {\n      \"class\": 1,\n      \"cost\": 600,\n      \"edID\": 128671249,\n      \"eddbID\": 1414,\n      \"grp\": \"fx\",\n      \"id\": \"F0\",\n      \"mass\": 1.3,\n      \"maximum\": 1,\n      \"power\": 0.18,\n      \"range\": 0.6,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_DroneControl_FuelTransfer_Size1_Class1\",\n      \"ukName\": \"Fuel Transfer\",\n      \"ukDiscript\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\"\n    },\n    {\n      \"class\": 1,\n      \"cost\": 1200,\n      \"edID\": 128671250,\n      \"eddbID\": 1415,\n      \"grp\": \"fx\",\n      \"id\": \"F1\",\n      \"mass\": 0.5,\n      \"maximum\": 1,\n      \"power\": 0.14,\n      \"range\": 0.8,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_DroneControl_FuelTransfer_Size1_Class2\",\n      \"ukName\": \"Fuel Transfer\",\n      \"ukDiscript\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\"\n    },\n    {\n      \"class\": 1,\n      \"cost\": 2400,\n      \"edID\": 128671251,\n      \"eddbID\": 1416,\n      \"grp\": \"fx\",\n      \"id\": \"F2\",\n      \"mass\": 1.3,\n      \"maximum\": 1,\n      \"power\": 0.23,\n      \"range\": 1,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_DroneControl_FuelTransfer_Size1_Class3\",\n      \"ukName\": \"Fuel Transfer\",\n      \"ukDiscript\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\"\n    },\n    {\n      \"class\": 1,\n      \"cost\": 4800,\n      \"edID\": 128671252,\n      \"eddbID\": 1417,\n      \"grp\": \"fx\",\n      \"id\": \"F3\",\n      \"mass\": 2,\n      \"maximum\": 1,\n      \"power\": 0.32,\n      \"range\": 1.2,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_DroneControl_FuelTransfer_Size1_Class4\",\n      \"ukName\": \"Fuel Transfer\",\n      \"ukDiscript\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\"\n    },\n    {\n      \"class\": 1,\n      \"cost\": 9600,\n      \"edID\": 128671253,\n      \"eddbID\": 1418,\n      \"grp\": \"fx\",\n      \"id\": \"F4\",\n      \"mass\": 1.3,\n      \"maximum\": 1,\n      \"power\": 0.28,\n      \"range\": 1.4,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_DroneControl_FuelTransfer_Size1_Class5\",\n      \"ukName\": \"Fuel Transfer\",\n      \"ukDiscript\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 5400,\n      \"edID\": 128671254,\n      \"eddbID\": 1419,\n      \"grp\": \"fx\",\n      \"id\": \"F5\",\n      \"mass\": 5,\n      \"maximum\": 2,\n      \"power\": 0.27,\n      \"range\": 0.66,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_DroneControl_FuelTransfer_Size3_Class1\",\n      \"ukName\": \"Fuel Transfer\",\n      \"ukDiscript\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 10800,\n      \"edID\": 128671255,\n      \"eddbID\": 1420,\n      \"grp\": \"fx\",\n      \"id\": \"F6\",\n      \"mass\": 2,\n      \"maximum\": 2,\n      \"power\": 0.2,\n      \"range\": 0.88,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_DroneControl_FuelTransfer_Size3_Class2\",\n      \"ukName\": \"Fuel Transfer\",\n      \"ukDiscript\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 21600,\n      \"edID\": 128671256,\n      \"eddbID\": 1421,\n      \"grp\": \"fx\",\n      \"id\": \"F7\",\n      \"mass\": 5,\n      \"maximum\": 2,\n      \"power\": 0.34,\n      \"range\": 1.1,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_DroneControl_FuelTransfer_Size3_Class3\",\n      \"ukName\": \"Fuel Transfer\",\n      \"ukDiscript\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 43200,\n      \"edID\": 128671257,\n      \"eddbID\": 1422,\n      \"grp\": \"fx\",\n      \"id\": \"F8\",\n      \"mass\": 8,\n      \"maximum\": 2,\n      \"power\": 0.48,\n      \"range\": 1.32,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_DroneControl_FuelTransfer_Size3_Class4\",\n      \"ukName\": \"Fuel Transfer\",\n      \"ukDiscript\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 86400,\n      \"edID\": 128671258,\n      \"eddbID\": 1423,\n      \"grp\": \"fx\",\n      \"id\": \"F9\",\n      \"mass\": 5,\n      \"maximum\": 2,\n      \"power\": 0.41,\n      \"range\": 1.54,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_DroneControl_FuelTransfer_Size3_Class5\",\n      \"ukName\": \"Fuel Transfer\",\n      \"ukDiscript\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 48600,\n      \"edID\": 128671259,\n      \"eddbID\": 1424,\n      \"grp\": \"fx\",\n      \"id\": \"Fa\",\n      \"mass\": 20,\n      \"maximum\": 4,\n      \"power\": 0.4,\n      \"range\": 0.78,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_DroneControl_FuelTransfer_Size5_Class1\",\n      \"ukName\": \"Fuel Transfer\",\n      \"ukDiscript\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 97200,\n      \"edID\": 128671260,\n      \"eddbID\": 1425,\n      \"grp\": \"fx\",\n      \"id\": \"Fb\",\n      \"mass\": 8,\n      \"maximum\": 4,\n      \"power\": 0.3,\n      \"range\": 1.04,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_DroneControl_FuelTransfer_Size5_Class2\",\n      \"ukName\": \"Fuel Transfer\",\n      \"ukDiscript\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 194400,\n      \"edID\": 128671261,\n      \"eddbID\": 1426,\n      \"grp\": \"fx\",\n      \"id\": \"Fc\",\n      \"mass\": 20,\n      \"maximum\": 4,\n      \"power\": 0.5,\n      \"range\": 1.3,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_DroneControl_FuelTransfer_Size5_Class3\",\n      \"ukName\": \"Fuel Transfer\",\n      \"ukDiscript\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 388800,\n      \"edID\": 128671262,\n      \"eddbID\": 1427,\n      \"grp\": \"fx\",\n      \"id\": \"Fd\",\n      \"mass\": 32,\n      \"maximum\": 4,\n      \"power\": 0.97,\n      \"range\": 1.56,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_DroneControl_FuelTransfer_Size5_Class4\",\n      \"ukName\": \"Fuel Transfer\",\n      \"ukDiscript\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 777600,\n      \"edID\": 128671263,\n      \"eddbID\": 1428,\n      \"grp\": \"fx\",\n      \"id\": \"Fe\",\n      \"mass\": 20,\n      \"maximum\": 4,\n      \"power\": 0.6,\n      \"range\": 1.82,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_DroneControl_FuelTransfer_Size5_Class5\",\n      \"ukName\": \"Fuel Transfer\",\n      \"ukDiscript\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 437400,\n      \"edID\": 128671264,\n      \"eddbID\": 1429,\n      \"grp\": \"fx\",\n      \"id\": \"Ff\",\n      \"mass\": 80,\n      \"maximum\": 8,\n      \"power\": 0.55,\n      \"range\": 1.02,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_DroneControl_FuelTransfer_Size7_Class1\",\n      \"ukName\": \"Fuel Transfer\",\n      \"ukDiscript\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 874800,\n      \"edID\": 128671265,\n      \"eddbID\": 1430,\n      \"grp\": \"fx\",\n      \"id\": \"Fg\",\n      \"mass\": 32,\n      \"maximum\": 8,\n      \"power\": 0.41,\n      \"range\": 1.36,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_DroneControl_FuelTransfer_Size7_Class2\",\n      \"ukName\": \"Fuel Transfer\",\n      \"ukDiscript\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 1749600,\n      \"edID\": 128671266,\n      \"eddbID\": 1431,\n      \"grp\": \"fx\",\n      \"id\": \"Fh\",\n      \"mass\": 80,\n      \"maximum\": 8,\n      \"power\": 0.69,\n      \"range\": 1.7,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_DroneControl_FuelTransfer_Size7_Class3\",\n      \"ukName\": \"Fuel Transfer\",\n      \"ukDiscript\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 3499200,\n      \"edID\": 128671267,\n      \"eddbID\": 1432,\n      \"grp\": \"fx\",\n      \"id\": \"Fi\",\n      \"mass\": 128,\n      \"maximum\": 8,\n      \"power\": 0.97,\n      \"range\": 2.04,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_DroneControl_FuelTransfer_Size7_Class4\",\n      \"ukName\": \"Fuel Transfer\",\n      \"ukDiscript\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 6998400,\n      \"edID\": 128671268,\n      \"eddbID\": 1433,\n      \"grp\": \"fx\",\n      \"id\": \"Fj\",\n      \"mass\": 80,\n      \"maximum\": 8,\n      \"power\": 0.83,\n      \"range\": 2.38,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_DroneControl_FuelTransfer_Size7_Class5\",\n      \"ukName\": \"Fuel Transfer\",\n      \"ukDiscript\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/internal/guardian_fsd_booster.json",
    "content": "{\n  \"gfsb\": [\n    {\n      \"jumpboost\": 4,\n      \"integrity\": 32,\n      \"class\": 1,\n      \"cost\": 405022,\n      \"edID\": 128833975,\n      \"power\": 0.75,\n      \"eddbID\": 1730,\n      \"grp\": \"gfsb\",\n      \"id\": \"1H\",\n      \"mass\": 1.3,\n      \"rating\": \"H\",\n      \"symbol\": \"Int_GuardianFSDBooster_Size1\",\n      \"ukName\": \"Guardian FSD Booster\",\n      \"ukDiscript\": \"Used to boost the output of Frame Shift Drives, but at the cost of overall fuel efficiency.\"\n    },\n    {\n      \"jumpboost\": 6,\n      \"integrity\": 32,\n      \"class\": 2,\n      \"cost\": 810521,\n      \"edID\": 128833976,\n      \"power\": 0.98,\n      \"eddbID\": 1731,\n      \"grp\": \"gfsb\",\n      \"id\": \"1M\",\n      \"mass\": 1.3,\n      \"rating\": \"H\",\n      \"symbol\": \"Int_GuardianFSDBooster_Size2\",\n      \"ukName\": \"Guardian FSD Booster\",\n      \"ukDiscript\": \"Used to boost the output of Frame Shift Drives, but at the cost of overall fuel efficiency.\"\n    },\n    {\n      \"jumpboost\": 7.75,\n      \"integrity\": 32,\n      \"class\": 3,\n      \"cost\": 1620431,\n      \"edID\": 128833977,\n      \"power\": 1.27,\n      \"eddbID\": 1732,\n      \"grp\": \"gfsb\",\n      \"id\": \"1N\",\n      \"mass\": 1.3,\n      \"rating\": \"H\",\n      \"symbol\": \"Int_GuardianFSDBooster_Size3\",\n      \"ukName\": \"Guardian FSD Booster\",\n      \"ukDiscript\": \"Used to boost the output of Frame Shift Drives, but at the cost of overall fuel efficiency.\"\n    },\n    {\n      \"jumpboost\": 9.25,\n      \"integrity\": 32,\n      \"class\": 4,\n      \"cost\": 3245013,\n      \"edID\": 128833978,\n      \"power\": 1.65,\n      \"eddbID\": 1733,\n      \"grp\": \"gfsb\",\n      \"id\": \"1P\",\n      \"mass\": 1.3,\n      \"rating\": \"H\",\n      \"symbol\": \"Int_GuardianFSDBooster_Size4\",\n      \"ukName\": \"Guardian FSD Booster\",\n      \"ukDiscript\": \"Used to boost the output of Frame Shift Drives, but at the cost of overall fuel efficiency.\"\n    },\n    {\n      \"jumpboost\": 10.5,\n      \"integrity\": 32,\n      \"class\": 5,\n      \"cost\": 6483101,\n      \"edID\": 128833979,\n      \"power\": 2.14,\n      \"eddbID\": 1734,\n      \"grp\": \"gfsb\",\n      \"id\": \"1O\",\n      \"mass\": 1.3,\n      \"rating\": \"H\",\n      \"symbol\": \"Int_GuardianFSDBooster_Size5\",\n      \"ukName\": \"Guardian FSD Booster\",\n      \"ukDiscript\": \"Used to boost the output of Frame Shift Drives, but at the cost of overall fuel efficiency.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/internal/guardian_hull_reinforcement_package.json",
    "content": "{\n  \"ghrp\": [\n    {\n      \"rating\": \"D\",\n      \"class\": 1,\n      \"mass\": 1,\n      \"id\": \"1V\",\n      \"edID\": 128833946,\n      \"eddbID\": 1701,\n      \"power\": 0.56,\n      \"hullreinforcement\": 138,\n      \"causres\": 0.05,\n      \"explres\": 0,\n      \"kinres\": 0,\n      \"thermres\": 0.02,\n      \"cost\": 30000,\n      \"symbol\": \"Int_GuardianHullReinforcement_Size1_Class2\",\n      \"grp\": \"ghrp\",\n      \"ukName\": \"Guardian Hull Reinforcement\",\n      \"ukDiscript\": \"Powered module that increases the ship's hull integrity and resistance to Thargoid, caustic and thermic damage.\"\n    },\n    {\n      \"rating\": \"E\",\n      \"class\": 1,\n      \"mass\": 2,\n      \"id\": \"1W\",\n      \"edID\": 128833945,\n      \"eddbID\": 1700,\n      \"power\": 0.45,\n      \"hullreinforcement\": 100,\n      \"causres\": 0.05,\n      \"explres\": 0,\n      \"kinres\": 0,\n      \"thermres\": 0.02,\n      \"cost\": 10000,\n      \"symbol\": \"Int_GuardianHullReinforcement_Size1_Class1\",\n      \"grp\": \"ghrp\",\n      \"ukName\": \"Guardian Hull Reinforcement\",\n      \"ukDiscript\": \"Powered module that increases the ship's hull integrity and resistance to Thargoid, caustic and thermic damage.\"\n    },\n    {\n      \"rating\": \"D\",\n      \"class\": 2,\n      \"mass\": 2,\n      \"id\": \"1X\",\n      \"edID\": 128833948,\n      \"eddbID\": 1703,\n      \"power\": 0.79,\n      \"hullreinforcement\": 238,\n      \"causres\": 0.05,\n      \"explres\": 0,\n      \"kinres\": 0,\n      \"thermres\": 0.02,\n      \"cost\": 72000,\n      \"symbol\": \"Int_GuardianHullReinforcement_Size2_Class2\",\n      \"grp\": \"ghrp\",\n      \"ukName\": \"Guardian Hull Reinforcement\",\n      \"ukDiscript\": \"Powered module that increases the ship's hull integrity and resistance to Thargoid, caustic and thermic damage.\"\n    },\n    {\n      \"rating\": \"E\",\n      \"class\": 2,\n      \"mass\": 4,\n      \"id\": \"1Y\",\n      \"edID\": 128833947,\n      \"eddbID\": 1702,\n      \"power\": 0.68,\n      \"hullreinforcement\": 188,\n      \"causres\": 0.05,\n      \"explres\": 0,\n      \"kinres\": 0,\n      \"thermres\": 0.02,\n      \"cost\": 24000,\n      \"symbol\": \"Int_GuardianHullReinforcement_Size2_Class1\",\n      \"grp\": \"ghrp\",\n      \"ukName\": \"Guardian Hull Reinforcement\",\n      \"ukDiscript\": \"Powered module that increases the ship's hull integrity and resistance to Thargoid, caustic and thermic damage.\"\n    },\n    {\n      \"rating\": \"D\",\n      \"class\": 3,\n      \"mass\": 4,\n      \"id\": \"1Z\",\n      \"edID\": 128833950,\n      \"eddbID\": 1705,\n      \"power\": 1.01,\n      \"hullreinforcement\": 325,\n      \"causres\": 0.05,\n      \"explres\": 0,\n      \"kinres\": 0,\n      \"thermres\": 0.02,\n      \"cost\": 172800,\n      \"symbol\": \"Int_GuardianHullReinforcement_Size3_Class2\",\n      \"grp\": \"ghrp\",\n      \"ukName\": \"Guardian Hull Reinforcement\",\n      \"ukDiscript\": \"Powered module that increases the ship's hull integrity and resistance to Thargoid, caustic and thermic damage.\"\n    },\n    {\n      \"rating\": \"E\",\n      \"class\": 3,\n      \"mass\": 8,\n      \"id\": \"2A\",\n      \"edID\": 128833949,\n      \"eddbID\": 1704,\n      \"power\": 0.9,\n      \"hullreinforcement\": 288,\n      \"causres\": 0.05,\n      \"explres\": 0,\n      \"kinres\": 0,\n      \"thermres\": 0.02,\n      \"cost\": 57600,\n      \"symbol\": \"Int_GuardianHullReinforcement_Size3_Class1\",\n      \"grp\": \"ghrp\",\n      \"ukName\": \"Guardian Hull Reinforcement\",\n      \"ukDiscript\": \"Powered module that increases the ship's hull integrity and resistance to Thargoid, caustic and thermic damage.\"\n    },\n    {\n      \"rating\": \"D\",\n      \"class\": 4,\n      \"mass\": 8,\n      \"edID\": 128833952,\n      \"eddbID\": 1707,\n      \"power\": 1.24,\n      \"hullreinforcement\": 413,\n      \"causres\": 0.05,\n      \"explres\": 0,\n      \"kinres\": 0,\n      \"thermres\": 0.02,\n      \"cost\": 414720,\n      \"id\": \"2R\",\n      \"symbol\": \"Int_GuardianHullReinforcement_Size4_Class2\",\n      \"grp\": \"ghrp\",\n      \"ukName\": \"Guardian Hull Reinforcement\",\n      \"ukDiscript\": \"Powered module that increases the ship's hull integrity and resistance to Thargoid, caustic and thermic damage.\"\n    },\n    {\n      \"rating\": \"E\",\n      \"class\": 4,\n      \"mass\": 16,\n      \"edID\": 128833951,\n      \"eddbID\": 1706,\n      \"power\": 1.13,\n      \"hullreinforcement\": 375,\n      \"causres\": 0.05,\n      \"explres\": 0,\n      \"kinres\": 0,\n      \"thermres\": 0.02,\n      \"cost\": 138240,\n      \"id\": \"2B\",\n      \"symbol\": \"Int_GuardianHullReinforcement_Size4_Class1\",\n      \"grp\": \"ghrp\",\n      \"ukName\": \"Guardian Hull Reinforcement\",\n      \"ukDiscript\": \"Powered module that increases the ship's hull integrity and resistance to Thargoid, caustic and thermic damage.\"\n    },\n    {\n      \"rating\": \"D\",\n      \"class\": 5,\n      \"mass\": 16,\n      \"edID\": 128833954,\n      \"eddbID\": 1709,\n      \"power\": 1.46,\n      \"hullreinforcement\": 488,\n      \"causres\": 0.05,\n      \"explres\": 0,\n      \"kinres\": 0,\n      \"thermres\": 0.02,\n      \"cost\": 995330,\n      \"id\": \"2C\",\n      \"symbol\": \"Int_GuardianHullReinforcement_Size5_Class2\",\n      \"grp\": \"ghrp\",\n      \"ukName\": \"Guardian Hull Reinforcement\",\n      \"ukDiscript\": \"Powered module that increases the ship's hull integrity and resistance to Thargoid, caustic and thermic damage.\"\n    },\n    {\n      \"rating\": \"E\",\n      \"class\": 5,\n      \"mass\": 32,\n      \"edID\": 128833953,\n      \"eddbID\": 1708,\n      \"power\": 1.35,\n      \"hullreinforcement\": 450,\n      \"causres\": 0.05,\n      \"explres\": 0,\n      \"kinres\": 0,\n      \"thermres\": 0.02,\n      \"cost\": 331778,\n      \"id\": \"2D\",\n      \"symbol\": \"Int_GuardianHullReinforcement_Size5_Class1\",\n      \"grp\": \"ghrp\",\n      \"ukName\": \"Guardian Hull Reinforcement\",\n      \"ukDiscript\": \"Powered module that increases the ship's hull integrity and resistance to Thargoid, caustic and thermic damage.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/internal/guardian_module_reinforcement_package.json",
    "content": "{\n  \"gmrp\": [\n    {\n      \"rating\": \"D\",\n      \"class\": 1,\n      \"mass\": 1,\n      \"eddbID\": 1711,\n      \"power\": 0.34,\n      \"protection\": 0.6,\n      \"integrity\": 77,\n      \"cost\": 30000,\n      \"id\": \"2E\",\n      \"edID\": 128833956,\n      \"symbol\": \"Int_GuardianModuleReinforcement_Size1_Class2\",\n      \"grp\": \"gmrp\",\n      \"ukName\": \"Guardian Module Reinforcement\",\n      \"ukDiscript\": \"Powered module that protects a ships modules from any weapons fire penetrating the hull. It utilises it's own damage capacity to absorb a proportion of the damage applied to modules, eventually burning out when it's capacity reaches zero. This version is based on Guardian research and has resistances to Thargoid specific disruption technology.\"\n    },\n    {\n      \"rating\": \"E\",\n      \"class\": 1,\n      \"mass\": 2,\n      \"eddbID\": 1710,\n      \"power\": 0.27,\n      \"protection\": 0.3,\n      \"integrity\": 85,\n      \"cost\": 10000,\n      \"id\": \"2F\",\n      \"edID\": 128833955,\n      \"symbol\": \"Int_GuardianModuleReinforcement_Size1_Class1\",\n      \"grp\": \"gmrp\",\n      \"ukName\": \"Guardian Module Reinforcement\",\n      \"ukDiscript\": \"Powered module that protects a ships modules from any weapons fire penetrating the hull. It utilises it's own damage capacity to absorb a proportion of the damage applied to modules, eventually burning out when it's capacity reaches zero. This version is based on Guardian research and has resistances to Thargoid specific disruption technology.\"\n    },\n    {\n      \"rating\": \"D\",\n      \"class\": 2,\n      \"mass\": 2,\n      \"eddbID\": 1713,\n      \"power\": 0.47,\n      \"protection\": 0.6,\n      \"integrity\": 116,\n      \"cost\": 72000,\n      \"id\": \"2G\",\n      \"edID\": 128833958,\n      \"symbol\": \"Int_GuardianModuleReinforcement_Size2_Class2\",\n      \"grp\": \"gmrp\",\n      \"ukName\": \"Guardian Module Reinforcement\",\n      \"ukDiscript\": \"Powered module that protects a ships modules from any weapons fire penetrating the hull. It utilises it's own damage capacity to absorb a proportion of the damage applied to modules, eventually burning out when it's capacity reaches zero. This version is based on Guardian research and has resistances to Thargoid specific disruption technology.\"\n    },\n    {\n      \"rating\": \"E\",\n      \"class\": 2,\n      \"mass\": 4,\n      \"eddbID\": 1712,\n      \"power\": 0.41,\n      \"protection\": 0.3,\n      \"integrity\": 127,\n      \"cost\": 24000,\n      \"id\": \"2S\",\n      \"edID\": 128833957,\n      \"symbol\": \"Int_GuardianModuleReinforcement_Size2_Class1\",\n      \"grp\": \"gmrp\",\n      \"ukName\": \"Guardian Module Reinforcement\",\n      \"ukDiscript\": \"Powered module that protects a ships modules from any weapons fire penetrating the hull. It utilises it's own damage capacity to absorb a proportion of the damage applied to modules, eventually burning out when it's capacity reaches zero. This version is based on Guardian research and has resistances to Thargoid specific disruption technology.\"\n    },\n    {\n      \"rating\": \"D\",\n      \"class\": 3,\n      \"mass\": 4,\n      \"eddbID\": 1715,\n      \"power\": 0.61,\n      \"protection\": 0.6,\n      \"integrity\": 171,\n      \"cost\": 172800,\n      \"id\": \"2H\",\n      \"edID\": 128833960,\n      \"symbol\": \"Int_GuardianModuleReinforcement_Size3_Class2\",\n      \"grp\": \"gmrp\",\n      \"ukName\": \"Guardian Module Reinforcement\",\n      \"ukDiscript\": \"Powered module that protects a ships modules from any weapons fire penetrating the hull. It utilises it's own damage capacity to absorb a proportion of the damage applied to modules, eventually burning out when it's capacity reaches zero. This version is based on Guardian research and has resistances to Thargoid specific disruption technology.\"\n    },\n    {\n      \"rating\": \"E\",\n      \"class\": 3,\n      \"mass\": 8,\n      \"eddbID\": 1714,\n      \"power\": 0.54,\n      \"protection\": 0.3,\n      \"integrity\": 187,\n      \"cost\": 57600,\n      \"id\": \"2I\",\n      \"edID\": 128833959,\n      \"symbol\": \"Int_GuardianModuleReinforcement_Size3_Class1\",\n      \"grp\": \"gmrp\",\n      \"ukName\": \"Guardian Module Reinforcement\",\n      \"ukDiscript\": \"Powered module that protects a ships modules from any weapons fire penetrating the hull. It utilises it's own damage capacity to absorb a proportion of the damage applied to modules, eventually burning out when it's capacity reaches zero. This version is based on Guardian research and has resistances to Thargoid specific disruption technology.\"\n    },\n    {\n      \"rating\": \"D\",\n      \"class\": 4,\n      \"mass\": 8,\n      \"eddbID\": 1717,\n      \"power\": 0.74,\n      \"protection\": 0.6,\n      \"integrity\": 259,\n      \"cost\": 414720,\n      \"id\": \"2J\",\n      \"edID\": 128833962,\n      \"symbol\": \"Int_GuardianModuleReinforcement_Size4_Class2\",\n      \"grp\": \"gmrp\",\n      \"ukName\": \"Guardian Module Reinforcement\",\n      \"ukDiscript\": \"Powered module that protects a ships modules from any weapons fire penetrating the hull. It utilises it's own damage capacity to absorb a proportion of the damage applied to modules, eventually burning out when it's capacity reaches zero. This version is based on Guardian research and has resistances to Thargoid specific disruption technology.\"\n    },\n    {\n      \"rating\": \"E\",\n      \"class\": 4,\n      \"mass\": 16,\n      \"eddbID\": 1716,\n      \"power\": 0.68,\n      \"protection\": 0.3,\n      \"integrity\": 286,\n      \"cost\": 138240,\n      \"id\": \"2K\",\n      \"edID\": 128833961,\n      \"symbol\": \"Int_GuardianModuleReinforcement_Size4_Class1\",\n      \"grp\": \"gmrp\",\n      \"ukName\": \"Guardian Module Reinforcement\",\n      \"ukDiscript\": \"Powered module that protects a ships modules from any weapons fire penetrating the hull. It utilises it's own damage capacity to absorb a proportion of the damage applied to modules, eventually burning out when it's capacity reaches zero. This version is based on Guardian research and has resistances to Thargoid specific disruption technology.\"\n    },\n    {\n      \"rating\": \"D\",\n      \"class\": 5,\n      \"mass\": 16,\n      \"eddbID\": 1719,\n      \"power\": 0.88,\n      \"protection\": 0.6,\n      \"integrity\": 385,\n      \"cost\": 995330,\n      \"id\": \"2L\",\n      \"edID\": 128833964,\n      \"symbol\": \"Int_GuardianModuleReinforcement_Size5_Class2\",\n      \"grp\": \"gmrp\",\n      \"ukName\": \"Guardian Module Reinforcement\",\n      \"ukDiscript\": \"Powered module that protects a ships modules from any weapons fire penetrating the hull. It utilises it's own damage capacity to absorb a proportion of the damage applied to modules, eventually burning out when it's capacity reaches zero. This version is based on Guardian research and has resistances to Thargoid specific disruption technology.\"\n    },\n    {\n      \"rating\": \"E\",\n      \"class\": 5,\n      \"mass\": 32,\n      \"eddbID\": 1718,\n      \"power\": 0.81,\n      \"protection\": 0.3,\n      \"integrity\": 424,\n      \"cost\": 331778,\n      \"id\": \"2M\",\n      \"edID\": 128833963,\n      \"symbol\": \"Int_GuardianModuleReinforcement_Size5_Class1\",\n      \"grp\": \"gmrp\",\n      \"ukName\": \"Guardian Module Reinforcement\",\n      \"ukDiscript\": \"Powered module that protects a ships modules from any weapons fire penetrating the hull. It utilises it's own damage capacity to absorb a proportion of the damage applied to modules, eventually burning out when it's capacity reaches zero. This version is based on Guardian research and has resistances to Thargoid specific disruption technology.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/internal/guardian_shield_reinforcement_package.json",
    "content": "{\n  \"gsrp\": [\n    {\n      \"shieldaddition\": 44,\n      \"integrity\": 36,\n      \"class\": 1,\n      \"cost\": 10000,\n      \"edID\": 128833965,\n      \"power\": 0.35,\n      \"eddbID\": 1720,\n      \"grp\": \"gsrp\",\n      \"id\": \"0Z\",\n      \"mass\": 2,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_GuardianShieldReinforcement_Size1_Class1\",\n      \"ukName\": \"Guardian Shield Reinforcement\",\n      \"ukDiscript\": \"\"\n    },\n    {\n      \"shieldaddition\": 61,\n      \"integrity\": 36,\n      \"class\": 1,\n      \"cost\": 30000,\n      \"edID\": 128833966,\n      \"power\": 0.46,\n      \"eddbID\": 1721,\n      \"grp\": \"gsrp\",\n      \"id\": \"0y\",\n      \"mass\": 1,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_GuardianShieldReinforcement_Size1_Class2\",\n      \"ukName\": \"Guardian Shield Reinforcement\",\n      \"ukDiscript\": \"\"\n    },\n    {\n      \"shieldaddition\": 83,\n      \"integrity\": 36,\n      \"class\": 2,\n      \"cost\": 24000,\n      \"edID\": 128833967,\n      \"power\": 0.56,\n      \"eddbID\": 1722,\n      \"grp\": \"gsrp\",\n      \"id\": \"0z\",\n      \"mass\": 4,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_GuardianShieldReinforcement_Size2_Class1\",\n      \"ukName\": \"Guardian Shield Reinforcement\",\n      \"ukDiscript\": \"\"\n    },\n    {\n      \"shieldaddition\": 105,\n      \"integrity\": 36,\n      \"class\": 2,\n      \"cost\": 72000,\n      \"edID\": 128833968,\n      \"power\": 0.67,\n      \"eddbID\": 1723,\n      \"grp\": \"gsrp\",\n      \"id\": \"1E\",\n      \"mass\": 2,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_GuardianShieldReinforcement_Size2_Class2\",\n      \"ukName\": \"Guardian Shield Reinforcement\",\n      \"ukDiscript\": \"\"\n    },\n    {\n      \"shieldaddition\": 143,\n      \"integrity\": 36,\n      \"class\": 3,\n      \"cost\": 172800,\n      \"edID\": 128833970,\n      \"power\": 0.84,\n      \"eddbID\": 1725,\n      \"grp\": \"gsrp\",\n      \"id\": \"1F\",\n      \"mass\": 4,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_GuardianShieldReinforcement_Size3_Class2\",\n      \"ukName\": \"Guardian Shield Reinforcement\",\n      \"ukDiscript\": \"\"\n    },\n    {\n      \"shieldaddition\": 127,\n      \"integrity\": 36,\n      \"class\": 3,\n      \"cost\": 57600,\n      \"edID\": 128833969,\n      \"power\": 0.74,\n      \"eddbID\": 1724,\n      \"grp\": \"gsrp\",\n      \"id\": \"1G\",\n      \"mass\": 8,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_GuardianShieldReinforcement_Size3_Class1\",\n      \"ukName\": \"Guardian Shield Reinforcement\",\n      \"ukDiscript\": \"\"\n    },\n    {\n      \"shieldaddition\": 165,\n      \"integrity\": 36,\n      \"class\": 4,\n      \"cost\": 138240,\n      \"edID\": 128833971,\n      \"power\": 0.95,\n      \"eddbID\": 1726,\n      \"grp\": \"gsrp\",\n      \"id\": \"1I\",\n      \"mass\": 16,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_GuardianShieldReinforcement_Size4_Class1\",\n      \"ukName\": \"Guardian Shield Reinforcement\",\n      \"ukDiscript\": \"\"\n    },\n    {\n      \"shieldaddition\": 182,\n      \"integrity\": 36,\n      \"class\": 4,\n      \"cost\": 414720,\n      \"edID\": 128833972,\n      \"power\": 1.05,\n      \"eddbID\": 1727,\n      \"grp\": \"gsrp\",\n      \"id\": \"1J\",\n      \"mass\": 8,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_GuardianShieldReinforcement_Size4_Class2\",\n      \"ukName\": \"Guardian Shield Reinforcement\",\n      \"ukDiscript\": \"\"\n    },\n    {\n      \"shieldaddition\": 215,\n      \"integrity\": 36,\n      \"class\": 5,\n      \"cost\": 995330,\n      \"edID\": 128833974,\n      \"power\": 1.26,\n      \"eddbID\": 1729,\n      \"grp\": \"gsrp\",\n      \"id\": \"1K\",\n      \"mass\": 16,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_GuardianShieldReinforcement_Size5_Class2\",\n      \"ukName\": \"Guardian Shield Reinforcement\",\n      \"ukDiscript\": \"\"\n    },\n    {\n      \"shieldaddition\": 198,\n      \"integrity\": 36,\n      \"class\": 5,\n      \"cost\": 331778,\n      \"edID\": 128833973,\n      \"power\": 1.16,\n      \"eddbID\": 1728,\n      \"grp\": \"gsrp\",\n      \"id\": \"1L\",\n      \"mass\": 32,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_GuardianShieldReinforcement_Size5_Class1\",\n      \"ukName\": \"Guardian Shield Reinforcement\",\n      \"ukDiscript\": \"\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/internal/hatch_breaker_limpet_controller.json",
    "content": "{\n  \"hb\": [\n    {\n      \"class\": 1,\n      \"cost\": 600,\n      \"edID\": 128066532,\n      \"eddbID\": 1207,\n      \"grp\": \"hb\",\n      \"id\": \"6u\",\n      \"mass\": 1.3,\n      \"maximum\": 2,\n      \"power\": 0.12,\n      \"range\": 1.5,\n      \"rating\": \"E\",\n      \"time\": 42,\n      \"symbol\": \"Int_DroneControl_ResourceSiphon_Size1_Class1\",\n      \"ukName\": \"Hatch Breaker\",\n      \"ukDiscript\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\"\n    },\n    {\n      \"class\": 1,\n      \"cost\": 1200,\n      \"edID\": 128066533,\n      \"eddbID\": 1208,\n      \"grp\": \"hb\",\n      \"id\": \"6t\",\n      \"mass\": 0.5,\n      \"maximum\": 1,\n      \"power\": 0.16,\n      \"range\": 2,\n      \"rating\": \"D\",\n      \"time\": 36,\n      \"symbol\": \"Int_DroneControl_ResourceSiphon_Size1_Class2\",\n      \"ukName\": \"Hatch Breaker\",\n      \"ukDiscript\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\"\n    },\n    {\n      \"class\": 1,\n      \"cost\": 2400,\n      \"edID\": 128066534,\n      \"eddbID\": 1209,\n      \"grp\": \"hb\",\n      \"id\": \"6s\",\n      \"mass\": 1.3,\n      \"maximum\": 1,\n      \"power\": 0.2,\n      \"range\": 2.5,\n      \"rating\": \"C\",\n      \"time\": 30,\n      \"symbol\": \"Int_DroneControl_ResourceSiphon_Size1_Class3\",\n      \"ukName\": \"Hatch Breaker\",\n      \"ukDiscript\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\"\n    },\n    {\n      \"class\": 1,\n      \"cost\": 4800,\n      \"edID\": 128066535,\n      \"eddbID\": 1210,\n      \"grp\": \"hb\",\n      \"id\": \"6r\",\n      \"mass\": 2,\n      \"maximum\": 2,\n      \"power\": 0.24,\n      \"range\": 3,\n      \"rating\": \"B\",\n      \"time\": 24,\n      \"symbol\": \"Int_DroneControl_ResourceSiphon_Size1_Class4\",\n      \"ukName\": \"Hatch Breaker\",\n      \"ukDiscript\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\"\n    },\n    {\n      \"class\": 1,\n      \"cost\": 9600,\n      \"edID\": 128066536,\n      \"eddbID\": 1211,\n      \"grp\": \"hb\",\n      \"id\": \"6q\",\n      \"mass\": 1.3,\n      \"maximum\": 1,\n      \"power\": 0.28,\n      \"range\": 3.5,\n      \"rating\": \"A\",\n      \"time\": 18,\n      \"symbol\": \"Int_DroneControl_ResourceSiphon_Size1_Class5\",\n      \"ukName\": \"Hatch Breaker\",\n      \"ukDiscript\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 5400,\n      \"edID\": 128066537,\n      \"eddbID\": 1212,\n      \"grp\": \"hb\",\n      \"id\": \"73\",\n      \"mass\": 5,\n      \"maximum\": 4,\n      \"power\": 0.18,\n      \"range\": 1.62,\n      \"rating\": \"E\",\n      \"time\": 36,\n      \"symbol\": \"Int_DroneControl_ResourceSiphon_Size3_Class1\",\n      \"ukName\": \"Hatch Breaker\",\n      \"ukDiscript\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 10800,\n      \"edID\": 128066538,\n      \"eddbID\": 1213,\n      \"grp\": \"hb\",\n      \"id\": \"72\",\n      \"mass\": 2,\n      \"maximum\": 3,\n      \"power\": 0.24,\n      \"range\": 2.16,\n      \"rating\": \"D\",\n      \"time\": 31,\n      \"symbol\": \"Int_DroneControl_ResourceSiphon_Size3_Class2\",\n      \"ukName\": \"Hatch Breaker\",\n      \"ukDiscript\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 21600,\n      \"edID\": 128066539,\n      \"eddbID\": 1214,\n      \"grp\": \"hb\",\n      \"id\": \"71\",\n      \"mass\": 5,\n      \"maximum\": 3,\n      \"power\": 0.3,\n      \"range\": 2.7,\n      \"rating\": \"C\",\n      \"time\": 26,\n      \"symbol\": \"Int_DroneControl_ResourceSiphon_Size3_Class3\",\n      \"ukName\": \"Hatch Breaker\",\n      \"ukDiscript\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 43200,\n      \"edID\": 128066540,\n      \"eddbID\": 1215,\n      \"grp\": \"hb\",\n      \"id\": \"70\",\n      \"mass\": 8,\n      \"maximum\": 4,\n      \"power\": 0.36,\n      \"range\": 3.24,\n      \"rating\": \"B\",\n      \"time\": 21,\n      \"symbol\": \"Int_DroneControl_ResourceSiphon_Size3_Class4\",\n      \"ukName\": \"Hatch Breaker\",\n      \"ukDiscript\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 86400,\n      \"edID\": 128066541,\n      \"eddbID\": 1216,\n      \"grp\": \"hb\",\n      \"id\": \"6v\",\n      \"mass\": 5,\n      \"maximum\": 3,\n      \"power\": 0.42,\n      \"range\": 3.78,\n      \"rating\": \"A\",\n      \"time\": 16,\n      \"symbol\": \"Int_DroneControl_ResourceSiphon_Size3_Class5\",\n      \"ukName\": \"Hatch Breaker\",\n      \"ukDiscript\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 48600,\n      \"edID\": 128066542,\n      \"eddbID\": 1217,\n      \"grp\": \"hb\",\n      \"id\": \"78\",\n      \"mass\": 20,\n      \"maximum\": 9,\n      \"power\": 0.3,\n      \"range\": 1.98,\n      \"rating\": \"E\",\n      \"time\": 31,\n      \"symbol\": \"Int_DroneControl_ResourceSiphon_Size5_Class1\",\n      \"ukName\": \"Hatch Breaker\",\n      \"ukDiscript\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 97200,\n      \"edID\": 128066543,\n      \"eddbID\": 1218,\n      \"grp\": \"hb\",\n      \"id\": \"77\",\n      \"mass\": 8,\n      \"maximum\": 6,\n      \"power\": 0.4,\n      \"range\": 2.64,\n      \"rating\": \"D\",\n      \"time\": 26,\n      \"symbol\": \"Int_DroneControl_ResourceSiphon_Size5_Class2\",\n      \"ukName\": \"Hatch Breaker\",\n      \"ukDiscript\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 194400,\n      \"edID\": 128066544,\n      \"eddbID\": 1219,\n      \"grp\": \"hb\",\n      \"id\": \"76\",\n      \"mass\": 20,\n      \"maximum\": 7,\n      \"power\": 0.5,\n      \"range\": 3.3,\n      \"rating\": \"C\",\n      \"time\": 22,\n      \"symbol\": \"Int_DroneControl_ResourceSiphon_Size5_Class3\",\n      \"ukName\": \"Hatch Breaker\",\n      \"ukDiscript\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 388800,\n      \"edID\": 128066545,\n      \"eddbID\": 1220,\n      \"grp\": \"hb\",\n      \"id\": \"75\",\n      \"mass\": 32,\n      \"maximum\": 9,\n      \"power\": 0.6,\n      \"range\": 3.96,\n      \"rating\": \"B\",\n      \"time\": 18,\n      \"symbol\": \"Int_DroneControl_ResourceSiphon_Size5_Class4\",\n      \"ukName\": \"Hatch Breaker\",\n      \"ukDiscript\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 777600,\n      \"edID\": 128066546,\n      \"eddbID\": 1221,\n      \"grp\": \"hb\",\n      \"id\": \"74\",\n      \"mass\": 20,\n      \"maximum\": 6,\n      \"power\": 0.7,\n      \"range\": 4.62,\n      \"rating\": \"A\",\n      \"time\": 13,\n      \"symbol\": \"Int_DroneControl_ResourceSiphon_Size5_Class5\",\n      \"ukName\": \"Hatch Breaker\",\n      \"ukDiscript\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 437400,\n      \"edID\": 128066547,\n      \"eddbID\": 1222,\n      \"grp\": \"hb\",\n      \"id\": \"7d\",\n      \"mass\": 80,\n      \"maximum\": 18,\n      \"power\": 0.42,\n      \"range\": 2.58,\n      \"rating\": \"E\",\n      \"time\": 25,\n      \"symbol\": \"Int_DroneControl_ResourceSiphon_Size7_Class1\",\n      \"ukName\": \"Hatch Breaker\",\n      \"ukDiscript\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 874800,\n      \"edID\": 128066548,\n      \"eddbID\": 1223,\n      \"grp\": \"hb\",\n      \"id\": \"7c\",\n      \"mass\": 32,\n      \"maximum\": 12,\n      \"power\": 0.56,\n      \"range\": 3.44,\n      \"rating\": \"D\",\n      \"time\": 22,\n      \"symbol\": \"Int_DroneControl_ResourceSiphon_Size7_Class2\",\n      \"ukName\": \"Hatch Breaker\",\n      \"ukDiscript\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 1749600,\n      \"edID\": 128066549,\n      \"eddbID\": 1224,\n      \"grp\": \"hb\",\n      \"id\": \"7b\",\n      \"mass\": 80,\n      \"maximum\": 15,\n      \"power\": 0.7,\n      \"range\": 4.3,\n      \"rating\": \"C\",\n      \"time\": 18,\n      \"symbol\": \"Int_DroneControl_ResourceSiphon_Size7_Class3\",\n      \"ukName\": \"Hatch Breaker\",\n      \"ukDiscript\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 3499200,\n      \"edID\": 128066550,\n      \"eddbID\": 1225,\n      \"grp\": \"hb\",\n      \"id\": \"7a\",\n      \"mass\": 128,\n      \"maximum\": 18,\n      \"power\": 0.84,\n      \"range\": 5.16,\n      \"rating\": \"B\",\n      \"time\": 14,\n      \"symbol\": \"Int_DroneControl_ResourceSiphon_Size7_Class4\",\n      \"ukName\": \"Hatch Breaker\",\n      \"ukDiscript\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 6998400,\n      \"edID\": 128066551,\n      \"eddbID\": 1226,\n      \"grp\": \"hb\",\n      \"id\": \"79\",\n      \"mass\": 80,\n      \"maximum\": 12,\n      \"power\": 0.98,\n      \"range\": 6.02,\n      \"rating\": \"A\",\n      \"time\": 11,\n      \"symbol\": \"Int_DroneControl_ResourceSiphon_Size7_Class5\",\n      \"ukName\": \"Hatch Breaker\",\n      \"ukDiscript\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/internal/hull_reinforcement_package.json",
    "content": "{\n  \"hr\": [\n    {\n      \"hullreinforcement\": 80,\n      \"class\": 1,\n      \"cost\": 5000,\n      \"edID\": 128668537,\n      \"eddbID\": 1373,\n      \"causres\": 0,\n      \"explres\": 0.005,\n      \"grp\": \"hr\",\n      \"id\": \"26\",\n      \"kinres\": 0.005,\n      \"mass\": 2,\n      \"rating\": \"E\",\n      \"thermres\": 0.005,\n      \"symbol\": \"Int_HullReinforcement_Size1_Class1\",\n      \"ukName\": \"Hull Reinforcement\",\n      \"ukDiscript\": \"Increases the ship's hull integrity and resistance to damage.\"\n    },\n    {\n      \"hullreinforcement\": 110,\n      \"class\": 1,\n      \"cost\": 15000,\n      \"edID\": 128668538,\n      \"eddbID\": 1374,\n      \"causres\": 0,\n      \"explres\": 0.005,\n      \"grp\": \"hr\",\n      \"id\": \"25\",\n      \"kinres\": 0.005,\n      \"mass\": 1,\n      \"rating\": \"D\",\n      \"thermres\": 0.005,\n      \"symbol\": \"Int_HullReinforcement_Size1_Class2\",\n      \"ukName\": \"Hull Reinforcement\",\n      \"ukDiscript\": \"Increases the ship's hull integrity and resistance to damage.\"\n    },\n    {\n      \"hullreinforcement\": 150,\n      \"class\": 2,\n      \"cost\": 12000,\n      \"edID\": 128668539,\n      \"eddbID\": 1375,\n      \"causres\": 0,\n      \"explres\": 0.01,\n      \"grp\": \"hr\",\n      \"id\": \"28\",\n      \"kinres\": 0.01,\n      \"mass\": 4,\n      \"rating\": \"E\",\n      \"thermres\": 0.01,\n      \"symbol\": \"Int_HullReinforcement_Size2_Class1\",\n      \"ukName\": \"Hull Reinforcement\",\n      \"ukDiscript\": \"Increases the ship's hull integrity and resistance to damage.\"\n    },\n    {\n      \"hullreinforcement\": 190,\n      \"class\": 2,\n      \"cost\": 36000,\n      \"edID\": 128668540,\n      \"eddbID\": 1376,\n      \"causres\": 0,\n      \"explres\": 0.01,\n      \"grp\": \"hr\",\n      \"id\": \"27\",\n      \"kinres\": 0.01,\n      \"mass\": 2,\n      \"rating\": \"D\",\n      \"thermres\": 0.01,\n      \"symbol\": \"Int_HullReinforcement_Size2_Class2\",\n      \"ukName\": \"Hull Reinforcement\",\n      \"ukDiscript\": \"Increases the ship's hull integrity and resistance to damage.\"\n    },\n    {\n      \"hullreinforcement\": 230,\n      \"class\": 3,\n      \"cost\": 28000,\n      \"edID\": 128668541,\n      \"eddbID\": 1377,\n      \"causres\": 0,\n      \"explres\": 0.015,\n      \"grp\": \"hr\",\n      \"id\": \"2a\",\n      \"kinres\": 0.015,\n      \"mass\": 8,\n      \"rating\": \"E\",\n      \"thermres\": 0.015,\n      \"symbol\": \"Int_HullReinforcement_Size3_Class1\",\n      \"ukName\": \"Hull Reinforcement\",\n      \"ukDiscript\": \"Increases the ship's hull integrity and resistance to damage.\"\n    },\n    {\n      \"hullreinforcement\": 260,\n      \"class\": 3,\n      \"cost\": 84000,\n      \"edID\": 128668542,\n      \"eddbID\": 1378,\n      \"causres\": 0,\n      \"explres\": 0.015,\n      \"grp\": \"hr\",\n      \"id\": \"29\",\n      \"kinres\": 0.015,\n      \"mass\": 4,\n      \"rating\": \"D\",\n      \"thermres\": 0.015,\n      \"symbol\": \"Int_HullReinforcement_Size3_Class2\",\n      \"ukName\": \"Hull Reinforcement\",\n      \"ukDiscript\": \"Increases the ship's hull integrity and resistance to damage.\"\n    },\n    {\n      \"hullreinforcement\": 300,\n      \"class\": 4,\n      \"cost\": 65000,\n      \"edID\": 128668543,\n      \"eddbID\": 1379,\n      \"causres\": 0,\n      \"explres\": 0.02,\n      \"grp\": \"hr\",\n      \"id\": \"2c\",\n      \"kinres\": 0.02,\n      \"mass\": 16,\n      \"rating\": \"E\",\n      \"thermres\": 0.02,\n      \"symbol\": \"Int_HullReinforcement_Size4_Class1\",\n      \"ukName\": \"Hull Reinforcement\",\n      \"ukDiscript\": \"Increases the ship's hull integrity and resistance to damage.\"\n    },\n    {\n      \"hullreinforcement\": 330,\n      \"class\": 4,\n      \"cost\": 195000,\n      \"edID\": 128668544,\n      \"eddbID\": 1380,\n      \"causres\": 0,\n      \"explres\": 0.02,\n      \"grp\": \"hr\",\n      \"id\": \"2b\",\n      \"kinres\": 0.02,\n      \"mass\": 8,\n      \"rating\": \"D\",\n      \"thermres\": 0.02,\n      \"symbol\": \"Int_HullReinforcement_Size4_Class2\",\n      \"ukName\": \"Hull Reinforcement\",\n      \"ukDiscript\": \"Increases the ship's hull integrity and resistance to damage.\"\n    },\n    {\n      \"hullreinforcement\": 360,\n      \"class\": 5,\n      \"cost\": 150000,\n      \"edID\": 128668545,\n      \"eddbID\": 1381,\n      \"causres\": 0,\n      \"explres\": 0.025,\n      \"grp\": \"hr\",\n      \"id\": \"2e\",\n      \"kinres\": 0.025,\n      \"mass\": 32,\n      \"rating\": \"E\",\n      \"thermres\": 0.025,\n      \"symbol\": \"Int_HullReinforcement_Size5_Class1\",\n      \"ukName\": \"Hull Reinforcement\",\n      \"ukDiscript\": \"Increases the ship's hull integrity and resistance to damage.\"\n    },\n    {\n      \"hullreinforcement\": 390,\n      \"class\": 5,\n      \"cost\": 450000,\n      \"edID\": 128668546,\n      \"eddbID\": 1382,\n      \"causres\": 0,\n      \"explres\": 0.025,\n      \"grp\": \"hr\",\n      \"id\": \"2d\",\n      \"kinres\": 0.025,\n      \"mass\": 16,\n      \"rating\": \"D\",\n      \"thermres\": 0.025,\n      \"symbol\": \"Int_HullReinforcement_Size5_Class2\",\n      \"ukName\": \"Hull Reinforcement\",\n      \"ukDiscript\": \"Increases the ship's hull integrity and resistance to damage.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/internal/internal_fuel_tank.json",
    "content": "{\n  \"ft\": [\n    {\n      \"class\": 1,\n      \"cost\": 1000,\n      \"edID\": 128064346,\n      \"eddbID\": 1199,\n      \"fuel\": 2,\n      \"grp\": \"ft\",\n      \"id\": \"f1\",\n      \"rating\": \"C\",\n      \"symbol\": \"Int_FuelTank_Size1_Class3\",\n      \"ukName\": \"Fuel Tank\",\n      \"ukDiscript\": \"Storage container for fuel used by ship's power plant.\"\n    },\n    {\n      \"class\": 2,\n      \"cost\": 3750,\n      \"edID\": 128064347,\n      \"eddbID\": 1200,\n      \"fuel\": 4,\n      \"grp\": \"ft\",\n      \"id\": \"f2\",\n      \"rating\": \"C\",\n      \"symbol\": \"Int_FuelTank_Size2_Class3\",\n      \"ukName\": \"Fuel Tank\",\n      \"ukDiscript\": \"Storage container for fuel used by ship's power plant.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 7060,\n      \"edID\": 128064348,\n      \"eddbID\": 1201,\n      \"fuel\": 8,\n      \"grp\": \"ft\",\n      \"id\": \"f3\",\n      \"rating\": \"C\",\n      \"symbol\": \"Int_FuelTank_Size3_Class3\",\n      \"ukName\": \"Fuel Tank\",\n      \"ukDiscript\": \"Storage container for fuel used by ship's power plant.\"\n    },\n    {\n      \"class\": 4,\n      \"cost\": 24730,\n      \"edID\": 128064349,\n      \"eddbID\": 1202,\n      \"fuel\": 16,\n      \"grp\": \"ft\",\n      \"id\": \"f4\",\n      \"rating\": \"C\",\n      \"symbol\": \"Int_FuelTank_Size4_Class3\",\n      \"ukName\": \"Fuel Tank\",\n      \"ukDiscript\": \"Storage container for fuel used by ship's power plant.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 97750,\n      \"edID\": 128064350,\n      \"eddbID\": 1203,\n      \"fuel\": 32,\n      \"grp\": \"ft\",\n      \"id\": \"f5\",\n      \"rating\": \"C\",\n      \"symbol\": \"Int_FuelTank_Size5_Class3\",\n      \"ukName\": \"Fuel Tank\",\n      \"ukDiscript\": \"Storage container for fuel used by ship's power plant.\"\n    },\n    {\n      \"class\": 6,\n      \"cost\": 341580,\n      \"edID\": 128064351,\n      \"eddbID\": 1204,\n      \"fuel\": 64,\n      \"grp\": \"ft\",\n      \"id\": \"f6\",\n      \"rating\": \"C\",\n      \"symbol\": \"Int_FuelTank_Size6_Class3\",\n      \"ukName\": \"Fuel Tank\",\n      \"ukDiscript\": \"Storage container for fuel used by ship's power plant.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 1780910,\n      \"edID\": 128064352,\n      \"eddbID\": 1205,\n      \"fuel\": 128,\n      \"grp\": \"ft\",\n      \"id\": \"f7\",\n      \"rating\": \"C\",\n      \"symbol\": \"Int_FuelTank_Size7_Class3\",\n      \"ukName\": \"Fuel Tank\",\n      \"ukDiscript\": \"Storage container for fuel used by ship's power plant.\"\n    },\n    {\n      \"class\": 8,\n      \"cost\": 5428431,\n      \"edID\": 128064353,\n      \"eddbID\": 1206,\n      \"fuel\": 256,\n      \"grp\": \"ft\",\n      \"id\": \"f8\",\n      \"rating\": \"C\",\n      \"symbol\": \"Int_FuelTank_Size8_Class3\",\n      \"ukName\": \"Fuel Tank\",\n      \"ukDiscript\": \"Storage container for fuel used by ship's power plant.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/internal/luxury_passenger_cabin.json",
    "content": "{\n  \"pcq\": [\n    {\n      \"class\": 5,\n      \"cost\": 1658100,\n      \"edID\": 128727925,\n      \"eddbID\": 1575,\n      \"grp\": \"pcq\",\n      \"id\": \"mm\",\n      \"mass\": 20,\n      \"passengers\": 4,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_PassengerCabin_Size5_Class4\",\n      \"ukName\": \"LC Passenger Cabin\",\n      \"ukDiscript\": \"Luxury Class Passenger Cabin.\"\n    },\n    {\n      \"class\": 6,\n      \"cost\": 4974288,\n      \"edID\": 128727929,\n      \"eddbID\": 1576,\n      \"grp\": \"pcq\",\n      \"id\": \"mn\",\n      \"mass\": 40,\n      \"passengers\": 8,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_PassengerCabin_Size6_Class4\",\n      \"ukName\": \"LC Passenger Cabin\",\n      \"ukDiscript\": \"Luxury Class Passenger Cabin.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/internal/meta_alloy_hull_reinforcement_package.json",
    "content": "{\n  \"mahr\": [\n    {\n      \"hullreinforcement\": 72,\n      \"class\": 1,\n      \"cost\": 7501,\n      \"edID\": 128793117,\n      \"eddbID\": 0,\n      \"explres\": 0,\n      \"grp\": \"mahr\",\n      \"id\": \"y5\",\n      \"kinres\": 0,\n      \"mass\": 2,\n      \"rating\": \"E\",\n      \"thermres\": 0,\n      \"causres\": 0.03,\n      \"symbol\": \"Int_MetaAlloyHullReinforcement_Size1_Class1\",\n      \"ukName\": \"Meta Alloy Hull Reinforcement\",\n      \"ukDiscript\": \"Increases the ship's hull integrity and resistance to caustic damage.\"\n    },\n    {\n      \"hullreinforcement\": 99,\n      \"class\": 1,\n      \"cost\": 22501,\n      \"edID\": 128793118,\n      \"eddbID\": 0,\n      \"explres\": 0,\n      \"grp\": \"mahr\",\n      \"id\": \"y6\",\n      \"kinres\": 0,\n      \"mass\": 2,\n      \"rating\": \"D\",\n      \"thermres\": 0,\n      \"causres\": 0.03,\n      \"symbol\": \"Int_MetaAlloyHullReinforcement_Size1_Class2\",\n      \"ukName\": \"Meta Alloy Hull Reinforcement\",\n      \"ukDiscript\": \"Increases the ship's hull integrity and resistance to caustic damage.\"\n    },\n    {\n      \"hullreinforcement\": 135,\n      \"class\": 2,\n      \"cost\": 18000,\n      \"edID\": 128793119,\n      \"eddbID\": 0,\n      \"explres\": 0,\n      \"grp\": \"mahr\",\n      \"id\": \"y7\",\n      \"kinres\": 0,\n      \"mass\": 4,\n      \"rating\": \"E\",\n      \"thermres\": 0,\n      \"causres\": 0.03,\n      \"symbol\": \"Int_MetaAlloyHullReinforcement_Size2_Class1\",\n      \"ukName\": \"Meta Alloy Hull Reinforcement\",\n      \"ukDiscript\": \"Increases the ship's hull integrity and resistance to caustic damage.\"\n    },\n    {\n      \"hullreinforcement\": 171,\n      \"class\": 2,\n      \"cost\": 54000,\n      \"edID\": 128793120,\n      \"eddbID\": 0,\n      \"explres\": 0,\n      \"grp\": \"mahr\",\n      \"id\": \"y8\",\n      \"kinres\": 0,\n      \"mass\": 2,\n      \"rating\": \"D\",\n      \"thermres\": 0,\n      \"causres\": 0.03,\n      \"symbol\": \"Int_MetaAlloyHullReinforcement_Size2_Class2\",\n      \"ukName\": \"Meta Alloy Hull Reinforcement\",\n      \"ukDiscript\": \"Increases the ship's hull integrity and resistance to caustic damage.\"\n    },\n    {\n      \"hullreinforcement\": 207,\n      \"class\": 3,\n      \"cost\": 42000,\n      \"edID\": 128793121,\n      \"eddbID\": 0,\n      \"explres\": 0,\n      \"grp\": \"mahr\",\n      \"id\": \"y9\",\n      \"kinres\": 0,\n      \"mass\": 8,\n      \"rating\": \"E\",\n      \"thermres\": 0,\n      \"causres\": 0.03,\n      \"symbol\": \"Int_MetaAlloyHullReinforcement_Size3_Class1\",\n      \"ukName\": \"Meta Alloy Hull Reinforcement\",\n      \"ukDiscript\": \"Increases the ship's hull integrity and resistance to caustic damage.\"\n    },\n    {\n      \"hullreinforcement\": 234,\n      \"class\": 3,\n      \"cost\": 126000,\n      \"edID\": 128793122,\n      \"eddbID\": 0,\n      \"explres\": 0,\n      \"grp\": \"mahr\",\n      \"id\": \"yA\",\n      \"kinres\": 0,\n      \"mass\": 4,\n      \"rating\": \"D\",\n      \"thermres\": 0,\n      \"causres\": 0.03,\n      \"symbol\": \"Int_MetaAlloyHullReinforcement_Size3_Class2\",\n      \"ukName\": \"Meta Alloy Hull Reinforcement\",\n      \"ukDiscript\": \"Increases the ship's hull integrity and resistance to caustic damage.\"\n    },\n    {\n      \"hullreinforcement\": 270,\n      \"class\": 4,\n      \"cost\": 97501,\n      \"edID\": 128793123,\n      \"eddbID\": 0,\n      \"explres\": 0,\n      \"grp\": \"mahr\",\n      \"id\": \"yB\",\n      \"kinres\": 0,\n      \"mass\": 16,\n      \"rating\": \"E\",\n      \"thermres\": 0,\n      \"causres\": 0.03,\n      \"symbol\": \"Int_MetaAlloyHullReinforcement_Size4_Class1\",\n      \"ukName\": \"Meta Alloy Hull Reinforcement\",\n      \"ukDiscript\": \"Increases the ship's hull integrity and resistance to caustic damage.\"\n    },\n    {\n      \"hullreinforcement\": 297,\n      \"class\": 4,\n      \"cost\": 292501,\n      \"edID\": 128793124,\n      \"eddbID\": 0,\n      \"explres\": 0,\n      \"grp\": \"mahr\",\n      \"id\": \"yC\",\n      \"kinres\": 0,\n      \"mass\": 8,\n      \"rating\": \"D\",\n      \"thermres\": 0,\n      \"causres\": 0.03,\n      \"symbol\": \"Int_MetaAlloyHullReinforcement_Size4_Class2\",\n      \"ukName\": \"Meta Alloy Hull Reinforcement\",\n      \"ukDiscript\": \"Increases the ship's hull integrity and resistance to caustic damage.\"\n    },\n    {\n      \"hullreinforcement\": 324,\n      \"class\": 5,\n      \"cost\": 225001,\n      \"edID\": 128793125,\n      \"eddbID\": 0,\n      \"explres\": 0,\n      \"grp\": \"mahr\",\n      \"id\": \"yD\",\n      \"kinres\": 0,\n      \"mass\": 32,\n      \"rating\": \"E\",\n      \"thermres\": 0,\n      \"causres\": 0.03,\n      \"symbol\": \"Int_MetaAlloyHullReinforcement_Size5_Class1\",\n      \"ukName\": \"Meta Alloy Hull Reinforcement\",\n      \"ukDiscript\": \"Increases the ship's hull integrity and resistance to caustic damage.\"\n    },\n    {\n      \"hullreinforcement\": 351,\n      \"class\": 5,\n      \"cost\": 675001,\n      \"edID\": 128793126,\n      \"eddbID\": 0,\n      \"explres\": 0,\n      \"grp\": \"mahr\",\n      \"id\": \"yE\",\n      \"kinres\": 0,\n      \"mass\": 16,\n      \"rating\": \"D\",\n      \"thermres\": 0,\n      \"causres\": 0.03,\n      \"symbol\": \"Int_MetaAlloyHullReinforcement_Size5_Class2\",\n      \"ukName\": \"Meta Alloy Hull Reinforcement\",\n      \"ukDiscript\": \"Increases the ship's hull integrity and resistance to caustic damage.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/internal/module_reinforcement_package.json",
    "content": "{\n  \"mrp\": [\n    {\n      \"class\": 1,\n      \"cost\": 5000,\n      \"eddbID\": 1577,\n      \"edID\": 128737270,\n      \"grp\": \"mrp\",\n      \"id\": \"m0\",\n      \"integrity\": 77,\n      \"mass\": 2,\n      \"protection\": 0.3,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_ModuleReinforcement_Size1_Class1\",\n      \"ukName\": \"Module Reinforcement\",\n      \"ukDiscript\": \"Protects modules against weapons fire that penetrates the hull. This version of the module has high damage capacity but low absorption of module damage. I.e. it can absorb a small proportion of module damage each time over a long period before running out of damage capacity.\"\n    },\n    {\n      \"class\": 1,\n      \"cost\": 15000,\n      \"eddbID\": 1578,\n      \"edID\": 128737271,\n      \"grp\": \"mrp\",\n      \"id\": \"m1\",\n      \"integrity\": 70,\n      \"mass\": 1,\n      \"protection\": 0.6,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_ModuleReinforcement_Size1_Class2\",\n      \"ukName\": \"Module Reinforcement\",\n      \"ukDiscript\": \"Protects modules against weapons fire that penetrates the hull. This version of the module has low damage capacity but high absorption of module damage. I.e. it can absorb a large proportion of module damage each time over a short period before running out of damage capacity.\"\n    },\n    {\n      \"class\": 2,\n      \"cost\": 12000,\n      \"eddbID\": 1579,\n      \"edID\": 128737272,\n      \"grp\": \"mrp\",\n      \"id\": \"m2\",\n      \"integrity\": 115,\n      \"mass\": 4,\n      \"protection\": 0.3,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_ModuleReinforcement_Size2_Class1\",\n      \"ukName\": \"Module Reinforcement\",\n      \"ukDiscript\": \"Protects modules against weapons fire that penetrates the hull. This version of the module has high damage capacity but low absorption of module damage. I.e. it can absorb a small proportion of module damage each time over a long period before running out of damage capacity.\"\n    },\n    {\n      \"class\": 2,\n      \"cost\": 36000,\n      \"eddbID\": 1580,\n      \"edID\": 128737273,\n      \"grp\": \"mrp\",\n      \"id\": \"m3\",\n      \"integrity\": 105,\n      \"mass\": 2,\n      \"protection\": 0.6,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_ModuleReinforcement_Size2_Class2\",\n      \"ukName\": \"Module Reinforcement\",\n      \"ukDiscript\": \"Protects modules against weapons fire that penetrates the hull. This version of the module has low damage capacity but high absorption of module damage. I.e. it can absorb a large proportion of module damage each time over a short period before running out of damage capacity.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 28000,\n      \"eddbID\": 1581,\n      \"edID\": 128737274,\n      \"grp\": \"mrp\",\n      \"id\": \"m4\",\n      \"integrity\": 170,\n      \"mass\": 8,\n      \"protection\": 0.3,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_ModuleReinforcement_Size3_Class1\",\n      \"ukName\": \"Module Reinforcement\",\n      \"ukDiscript\": \"Protects modules against weapons fire that penetrates the hull. This version of the module has high damage capacity but low absorption of module damage. I.e. it can absorb a small proportion of module damage each time over a long period before running out of damage capacity.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 84000,\n      \"eddbID\": 1582,\n      \"edID\": 128737275,\n      \"grp\": \"mrp\",\n      \"id\": \"m5\",\n      \"integrity\": 155,\n      \"mass\": 4,\n      \"protection\": 0.6,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_ModuleReinforcement_Size3_Class2\",\n      \"ukName\": \"Module Reinforcement\",\n      \"ukDiscript\": \"Protects modules against weapons fire that penetrates the hull. This version of the module has low damage capacity but high absorption of module damage. I.e. it can absorb a large proportion of module damage each time over a short period before running out of damage capacity.\"\n    },\n    {\n      \"class\": 4,\n      \"cost\": 65000,\n      \"eddbID\": 1583,\n      \"edID\": 128737276,\n      \"grp\": \"mrp\",\n      \"id\": \"m6\",\n      \"integrity\": 260,\n      \"mass\": 16,\n      \"protection\": 0.3,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_ModuleReinforcement_Size4_Class1\",\n      \"ukName\": \"Module Reinforcement\",\n      \"ukDiscript\": \"Protects modules against weapons fire that penetrates the hull. This version of the module has high damage capacity but low absorption of module damage. I.e. it can absorb a small proportion of module damage each time over a long period before running out of damage capacity.\"\n    },\n    {\n      \"class\": 4,\n      \"cost\": 195000,\n      \"eddbID\": 1584,\n      \"edID\": 128737277,\n      \"grp\": \"mrp\",\n      \"id\": \"m7\",\n      \"integrity\": 235,\n      \"mass\": 8,\n      \"protection\": 0.6,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_ModuleReinforcement_Size4_Class2\",\n      \"ukName\": \"Module Reinforcement\",\n      \"ukDiscript\": \"Protects modules against weapons fire that penetrates the hull. This version of the module has low damage capacity but high absorption of module damage. I.e. it can absorb a large proportion of module damage each time over a short period before running out of damage capacity.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 150000,\n      \"eddbID\": 1585,\n      \"edID\": 128737278,\n      \"grp\": \"mrp\",\n      \"id\": \"m8\",\n      \"integrity\": 385,\n      \"mass\": 32,\n      \"protection\": 0.3,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_ModuleReinforcement_Size5_Class1\",\n      \"ukName\": \"Module Reinforcement\",\n      \"ukDiscript\": \"Protects modules against weapons fire that penetrates the hull. This version of the module has high damage capacity but low absorption of module damage. I.e. it can absorb a small proportion of module damage each time over a long period before running out of damage capacity.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 450000,\n      \"eddbID\": 1586,\n      \"edID\": 128737279,\n      \"grp\": \"mrp\",\n      \"id\": \"m9\",\n      \"integrity\": 350,\n      \"mass\": 16,\n      \"protection\": 0.6,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_ModuleReinforcement_Size5_Class2\",\n      \"ukName\": \"Module Reinforcement\",\n      \"ukDiscript\": \"Protects modules against weapons fire that penetrates the hull. This version of the module has low damage capacity but high absorption of module damage. I.e. it can absorb a large proportion of module damage each time over a short period before running out of damage capacity.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/internal/planetary_vehicle_hanger.json",
    "content": "{\n  \"pv\": [\n    {\n      \"bays\": 1,\n      \"class\": 2,\n      \"cost\": 18000,\n      \"edID\": 128672288,\n      \"eddbID\": 1528,\n      \"grp\": \"pv\",\n      \"id\": \"v5\",\n      \"integrity\": 30,\n      \"mass\": 12,\n      \"power\": 0.25,\n      \"rating\": \"H\",\n      \"symbol\": \"Int_BuggyBay_Size2_Class1\",\n      \"ukName\": \"Planetary Vehicle Hangar\",\n      \"ukDiscript\": \"A module designed to house ground-based vehicles.\"\n    },\n    {\n      \"bays\": 1,\n      \"class\": 2,\n      \"cost\": 21600,\n      \"edID\": 128672289,\n      \"eddbID\": 1529,\n      \"grp\": \"pv\",\n      \"id\": \"v6\",\n      \"integrity\": 30,\n      \"mass\": 6,\n      \"power\": 0.75,\n      \"rating\": \"G\",\n      \"symbol\": \"Int_BuggyBay_Size2_Class2\",\n      \"ukName\": \"Planetary Vehicle Hangar\",\n      \"ukDiscript\": \"A module designed to house ground-based vehicles.\"\n    },\n    {\n      \"bays\": 2,\n      \"class\": 4,\n      \"cost\": 72000,\n      \"edID\": 128672290,\n      \"eddbID\": 1526,\n      \"grp\": \"pv\",\n      \"id\": \"v3\",\n      \"integrity\": 30,\n      \"mass\": 20,\n      \"power\": 0.4,\n      \"rating\": \"H\",\n      \"symbol\": \"Int_BuggyBay_Size4_Class1\",\n      \"ukName\": \"Planetary Vehicle Hangar\",\n      \"ukDiscript\": \"A module designed to house ground-based vehicles.\"\n    },\n    {\n      \"bays\": 2,\n      \"class\": 4,\n      \"cost\": 86400,\n      \"edID\": 128672291,\n      \"eddbID\": 1527,\n      \"grp\": \"pv\",\n      \"id\": \"v4\",\n      \"integrity\": 30,\n      \"mass\": 10,\n      \"power\": 1.2,\n      \"rating\": \"G\",\n      \"symbol\": \"Int_BuggyBay_Size4_Class2\",\n      \"ukName\": \"Planetary Vehicle Hangar\",\n      \"ukDiscript\": \"A module designed to house ground-based vehicles.\"\n    },\n    {\n      \"bays\": 4,\n      \"class\": 6,\n      \"cost\": 576000,\n      \"edID\": 128672292,\n      \"eddbID\": 1524,\n      \"grp\": \"pv\",\n      \"id\": \"v1\",\n      \"integrity\": 30,\n      \"mass\": 34,\n      \"power\": 0.6,\n      \"rating\": \"H\",\n      \"symbol\": \"Int_BuggyBay_Size6_Class1\",\n      \"ukName\": \"Planetary Vehicle Hangar\",\n      \"ukDiscript\": \"A module designed to house ground-based vehicles.\"\n    },\n    {\n      \"bays\": 4,\n      \"class\": 6,\n      \"cost\": 691200,\n      \"edID\": 128672293,\n      \"eddbID\": 1525,\n      \"grp\": \"pv\",\n      \"id\": \"v2\",\n      \"integrity\": 30,\n      \"mass\": 17,\n      \"power\": 1.8,\n      \"rating\": \"G\",\n      \"symbol\": \"Int_BuggyBay_Size6_Class2\",\n      \"ukName\": \"Planetary Vehicle Hangar\",\n      \"ukDiscript\": \"A module designed to house ground-based vehicles.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/internal/pristmatic_shield_generator.json",
    "content": "{\n  \"psg\": [\n    {\n      \"brokenregen\": 1.2,\n      \"class\": 1,\n      \"cost\": 132200,\n      \"distdraw\": 0.6,\n      \"edID\": 128671323,\n      \"eddbID\": 1485,\n      \"explres\": 0.5,\n      \"grp\": \"psg\",\n      \"id\": \"p6\",\n      \"integrity\": 48,\n      \"kinres\": 0.4,\n      \"mass\": 2.5,\n      \"maxmass\": 63,\n      \"maxmul\": 2,\n      \"minmass\": 13,\n      \"minmul\": 1,\n      \"optmass\": 25,\n      \"optmul\": 1.5,\n      \"power\": 2.52,\n      \"pp\": \"Aisling Duval\",\n      \"rating\": \"A\",\n      \"regen\": 1,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size1_Class5_Strong\",\n      \"ukName\": \"Prismatic Shield\",\n      \"ukDiscript\": \"An alternative shield generator that has higher than normal strength but requires a higher power draw and weight allowance.\"\n    },\n    {\n      \"brokenregen\": 1.2,\n      \"class\": 2,\n      \"cost\": 240340,\n      \"distdraw\": 0.6,\n      \"edID\": 128671324,\n      \"eddbID\": 1486,\n      \"explres\": 0.5,\n      \"grp\": \"psg\",\n      \"id\": \"p5\",\n      \"integrity\": 61,\n      \"kinres\": 0.4,\n      \"mass\": 5,\n      \"maxmass\": 138,\n      \"maxmul\": 2,\n      \"minmass\": 23,\n      \"minmul\": 1,\n      \"optmass\": 55,\n      \"optmul\": 1.5,\n      \"power\": 3.15,\n      \"pp\": \"Aisling Duval\",\n      \"rating\": \"A\",\n      \"regen\": 1,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size2_Class5_Strong\",\n      \"ukName\": \"Prismatic Shield\",\n      \"ukDiscript\": \"An alternative shield generator that has higher than normal strength but requires a higher power draw and weight allowance.\"\n    },\n    {\n      \"brokenregen\": 1.3,\n      \"class\": 3,\n      \"cost\": 761870,\n      \"distdraw\": 0.6,\n      \"edID\": 128671325,\n      \"eddbID\": 1487,\n      \"explres\": 0.5,\n      \"grp\": \"psg\",\n      \"id\": \"p4\",\n      \"integrity\": 77,\n      \"kinres\": 0.4,\n      \"mass\": 10,\n      \"maxmass\": 413,\n      \"maxmul\": 2,\n      \"minmass\": 83,\n      \"minmul\": 1,\n      \"optmass\": 165,\n      \"optmul\": 1.5,\n      \"power\": 3.78,\n      \"pp\": \"Aisling Duval\",\n      \"rating\": \"A\",\n      \"regen\": 1,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size3_Class5_Strong\",\n      \"ukName\": \"Prismatic Shield\",\n      \"ukDiscript\": \"An alternative shield generator that has higher than normal strength but requires a higher power draw and weight allowance.\"\n    },\n    {\n      \"brokenregen\": 1.7,\n      \"class\": 4,\n      \"cost\": 2415120,\n      \"distdraw\": 0.6,\n      \"edID\": 128671326,\n      \"eddbID\": 1488,\n      \"explres\": 0.5,\n      \"grp\": \"psg\",\n      \"id\": \"p3\",\n      \"integrity\": 96,\n      \"kinres\": 0.4,\n      \"mass\": 20,\n      \"maxmass\": 713,\n      \"maxmul\": 2,\n      \"minmass\": 143,\n      \"minmul\": 1,\n      \"optmass\": 285,\n      \"optmul\": 1.5,\n      \"power\": 4.62,\n      \"pp\": \"Aisling Duval\",\n      \"rating\": \"A\",\n      \"regen\": 1,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size4_Class5_Strong\",\n      \"ukName\": \"Prismatic Shield\",\n      \"ukDiscript\": \"An alternative shield generator that has higher than normal strength but requires a higher power draw and weight allowance.\"\n    },\n    {\n      \"brokenregen\": 2.3,\n      \"class\": 5,\n      \"cost\": 7655930,\n      \"distdraw\": 0.6,\n      \"edID\": 128671327,\n      \"eddbID\": 1489,\n      \"explres\": 0.5,\n      \"grp\": \"psg\",\n      \"id\": \"p2\",\n      \"integrity\": 115,\n      \"kinres\": 0.4,\n      \"mass\": 40,\n      \"maxmass\": 1013,\n      \"maxmul\": 2,\n      \"minmass\": 203,\n      \"minmul\": 1,\n      \"optmass\": 405,\n      \"optmul\": 1.5,\n      \"power\": 5.46,\n      \"pp\": \"Aisling Duval\",\n      \"rating\": \"A\",\n      \"regen\": 1,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size5_Class5_Strong\",\n      \"ukName\": \"Prismatic Shield\",\n      \"ukDiscript\": \"An alternative shield generator that has higher than normal strength but requires a higher power draw and weight allowance.\"\n    },\n    {\n      \"brokenregen\": 3.2,\n      \"class\": 6,\n      \"cost\": 24269300,\n      \"distdraw\": 0.6,\n      \"edID\": 128671328,\n      \"eddbID\": 1490,\n      \"explres\": 0.5,\n      \"grp\": \"psg\",\n      \"id\": \"p1\",\n      \"integrity\": 136,\n      \"kinres\": 0.4,\n      \"mass\": 80,\n      \"maxmass\": 1350,\n      \"maxmul\": 2,\n      \"minmass\": 270,\n      \"minmul\": 1,\n      \"optmass\": 540,\n      \"optmul\": 1.5,\n      \"power\": 6.51,\n      \"pp\": \"Aisling Duval\",\n      \"rating\": \"A\",\n      \"regen\": 1,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size6_Class5_Strong\",\n      \"ukName\": \"Prismatic Shield\",\n      \"ukDiscript\": \"An alternative shield generator that has higher than normal strength but requires a higher power draw and weight allowance.\"\n    },\n    {\n      \"brokenregen\": 4.2,\n      \"class\": 7,\n      \"cost\": 76933670,\n      \"distdraw\": 0.6,\n      \"edID\": 128671329,\n      \"eddbID\": 1491,\n      \"explres\": 0.5,\n      \"grp\": \"psg\",\n      \"id\": \"p0\",\n      \"integrity\": 157,\n      \"kinres\": 0.4,\n      \"mass\": 160,\n      \"maxmass\": 2650,\n      \"maxmul\": 2,\n      \"minmass\": 530,\n      \"minmul\": 1,\n      \"optmass\": 1060,\n      \"optmul\": 1.5,\n      \"power\": 7.35,\n      \"pp\": \"Aisling Duval\",\n      \"rating\": \"A\",\n      \"regen\": 1.1,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size7_Class5_Strong\",\n      \"ukName\": \"Prismatic Shield\",\n      \"ukDiscript\": \"An alternative shield generator that has higher than normal strength but requires a higher power draw and weight allowance.\"\n    },\n    {\n      \"brokenregen\": 5.4,\n      \"class\": 8,\n      \"cost\": 243879730,\n      \"distdraw\": 0.6,\n      \"edID\": 128671330,\n      \"eddbID\": 1492,\n      \"explres\": 0.5,\n      \"grp\": \"psg\",\n      \"id\": \"p7\",\n      \"integrity\": 180,\n      \"kinres\": 0.4,\n      \"mass\": 320,\n      \"maxmass\": 4500,\n      \"maxmul\": 2,\n      \"minmass\": 900,\n      \"minmul\": 1,\n      \"optmass\": 1800,\n      \"optmul\": 1.5,\n      \"power\": 8.4,\n      \"pp\": \"Aisling Duval\",\n      \"rating\": \"A\",\n      \"regen\": 1.4,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size8_Class5_Strong\",\n      \"ukName\": \"Prismatic Shield\",\n      \"ukDiscript\": \"An alternative shield generator that has higher than normal strength but requires a higher power draw and weight allowance.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/internal/prospector_limpet_controllers.json",
    "content": "{\n  \"pc\": [\n    {\n      \"class\": 1,\n      \"cost\": 600,\n      \"edID\": 128671269,\n      \"eddbID\": 1434,\n      \"grp\": \"pc\",\n      \"id\": \"P0\",\n      \"mass\": 1.3,\n      \"maximum\": 1,\n      \"power\": 0.18,\n      \"range\": 3,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_DroneControl_Prospector_Size1_Class1\",\n      \"ukName\": \"Prospector\",\n      \"ukDiscript\": \"Controls a limpet to prospect an asteroid to discover its composition.\"\n    },\n    {\n      \"class\": 1,\n      \"cost\": 1200,\n      \"edID\": 128671270,\n      \"eddbID\": 1435,\n      \"grp\": \"pc\",\n      \"id\": \"P1\",\n      \"mass\": 0.5,\n      \"maximum\": 1,\n      \"power\": 0.14,\n      \"range\": 4,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_DroneControl_Prospector_Size1_Class2\",\n      \"ukName\": \"Prospector\",\n      \"ukDiscript\": \"Controls a limpet to prospect an asteroid to discover its composition.\"\n    },\n    {\n      \"class\": 1,\n      \"cost\": 2400,\n      \"edID\": 128671271,\n      \"eddbID\": 1436,\n      \"grp\": \"pc\",\n      \"id\": \"P2\",\n      \"mass\": 1.3,\n      \"maximum\": 1,\n      \"power\": 0.23,\n      \"range\": 5,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_DroneControl_Prospector_Size1_Class3\",\n      \"ukName\": \"Prospector\",\n      \"ukDiscript\": \"Controls a limpet to prospect an asteroid to discover its composition.\"\n    },\n    {\n      \"class\": 1,\n      \"cost\": 4800,\n      \"edID\": 128671272,\n      \"eddbID\": 1437,\n      \"grp\": \"pc\",\n      \"id\": \"P3\",\n      \"mass\": 2,\n      \"maximum\": 1,\n      \"power\": 0.32,\n      \"range\": 6,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_DroneControl_Prospector_Size1_Class4\",\n      \"ukName\": \"Prospector\",\n      \"ukDiscript\": \"Controls a limpet to prospect an asteroid to discover its composition.\"\n    },\n    {\n      \"class\": 1,\n      \"cost\": 9600,\n      \"edID\": 128671273,\n      \"eddbID\": 1438,\n      \"grp\": \"pc\",\n      \"id\": \"P4\",\n      \"mass\": 1.3,\n      \"maximum\": 1,\n      \"power\": 0.28,\n      \"range\": 7,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_DroneControl_Prospector_Size1_Class5\",\n      \"ukName\": \"Prospector\",\n      \"ukDiscript\": \"Controls a limpet to prospect an asteroid to discover its composition.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 5400,\n      \"edID\": 128671274,\n      \"eddbID\": 1439,\n      \"grp\": \"pc\",\n      \"id\": \"P5\",\n      \"mass\": 5,\n      \"maximum\": 2,\n      \"power\": 0.27,\n      \"range\": 3.3,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_DroneControl_Prospector_Size3_Class1\",\n      \"ukName\": \"Prospector\",\n      \"ukDiscript\": \"Controls a limpet to prospect an asteroid to discover its composition.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 10800,\n      \"edID\": 128671275,\n      \"eddbID\": 1440,\n      \"grp\": \"pc\",\n      \"id\": \"P6\",\n      \"mass\": 2,\n      \"maximum\": 2,\n      \"power\": 0.2,\n      \"range\": 4.4,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_DroneControl_Prospector_Size3_Class2\",\n      \"ukName\": \"Prospector\",\n      \"ukDiscript\": \"Controls a limpet to prospect an asteroid to discover its composition.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 21600,\n      \"edID\": 128671276,\n      \"eddbID\": 1441,\n      \"grp\": \"pc\",\n      \"id\": \"P7\",\n      \"mass\": 5,\n      \"maximum\": 2,\n      \"power\": 0.34,\n      \"range\": 5.5,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_DroneControl_Prospector_Size3_Class3\",\n      \"ukName\": \"Prospector\",\n      \"ukDiscript\": \"Controls a limpet to prospect an asteroid to discover its composition.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 43200,\n      \"edID\": 128671277,\n      \"eddbID\": 1442,\n      \"grp\": \"pc\",\n      \"id\": \"P8\",\n      \"mass\": 8,\n      \"maximum\": 2,\n      \"power\": 0.48,\n      \"range\": 6.6,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_DroneControl_Prospector_Size3_Class4\",\n      \"ukName\": \"Prospector\",\n      \"ukDiscript\": \"Controls a limpet to prospect an asteroid to discover its composition.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 86400,\n      \"edID\": 128671278,\n      \"eddbID\": 1443,\n      \"grp\": \"pc\",\n      \"id\": \"P9\",\n      \"mass\": 5,\n      \"maximum\": 2,\n      \"power\": 0.41,\n      \"range\": 7.7,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_DroneControl_Prospector_Size3_Class5\",\n      \"ukName\": \"Prospector\",\n      \"ukDiscript\": \"Controls a limpet to prospect an asteroid to discover its composition.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 48600,\n      \"edID\": 128671279,\n      \"eddbID\": 1444,\n      \"grp\": \"pc\",\n      \"id\": \"Pa\",\n      \"mass\": 20,\n      \"maximum\": 4,\n      \"power\": 0.4,\n      \"range\": 3.9,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_DroneControl_Prospector_Size5_Class1\",\n      \"ukName\": \"Prospector\",\n      \"ukDiscript\": \"Controls a limpet to prospect an asteroid to discover its composition.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 97200,\n      \"edID\": 128671280,\n      \"eddbID\": 1445,\n      \"grp\": \"pc\",\n      \"id\": \"Pb\",\n      \"mass\": 8,\n      \"maximum\": 4,\n      \"power\": 0.3,\n      \"range\": 5.2,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_DroneControl_Prospector_Size5_Class2\",\n      \"ukName\": \"Prospector\",\n      \"ukDiscript\": \"Controls a limpet to prospect an asteroid to discover its composition.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 194400,\n      \"edID\": 128671281,\n      \"eddbID\": 1446,\n      \"grp\": \"pc\",\n      \"id\": \"Pc\",\n      \"mass\": 20,\n      \"maximum\": 4,\n      \"power\": 0.5,\n      \"range\": 6.5,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_DroneControl_Prospector_Size5_Class3\",\n      \"ukName\": \"Prospector\",\n      \"ukDiscript\": \"Controls a limpet to prospect an asteroid to discover its composition.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 388800,\n      \"edID\": 128671282,\n      \"eddbID\": 1447,\n      \"grp\": \"pc\",\n      \"id\": \"Pd\",\n      \"mass\": 32,\n      \"maximum\": 4,\n      \"power\": 0.97,\n      \"range\": 7.8,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_DroneControl_Prospector_Size5_Class4\",\n      \"ukName\": \"Prospector\",\n      \"ukDiscript\": \"Controls a limpet to prospect an asteroid to discover its composition.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 777600,\n      \"edID\": 128671283,\n      \"eddbID\": 1448,\n      \"grp\": \"pc\",\n      \"id\": \"Pe\",\n      \"mass\": 20,\n      \"maximum\": 4,\n      \"power\": 0.6,\n      \"range\": 9.1,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_DroneControl_Prospector_Size5_Class5\",\n      \"ukName\": \"Prospector\",\n      \"ukDiscript\": \"Controls a limpet to prospect an asteroid to discover its composition.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 437400,\n      \"edID\": 128671284,\n      \"eddbID\": 1449,\n      \"grp\": \"pc\",\n      \"id\": \"Pf\",\n      \"mass\": 80,\n      \"maximum\": 8,\n      \"power\": 0.55,\n      \"range\": 5.1,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_DroneControl_Prospector_Size7_Class1\",\n      \"ukName\": \"Prospector\",\n      \"ukDiscript\": \"Controls a limpet to prospect an asteroid to discover its composition.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 874800,\n      \"edID\": 128671285,\n      \"eddbID\": 1450,\n      \"grp\": \"pc\",\n      \"id\": \"Pg\",\n      \"mass\": 32,\n      \"maximum\": 8,\n      \"power\": 0.41,\n      \"range\": 6.8,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_DroneControl_Prospector_Size7_Class2\",\n      \"ukName\": \"Prospector\",\n      \"ukDiscript\": \"Controls a limpet to prospect an asteroid to discover its composition.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 1749600,\n      \"edID\": 128671286,\n      \"eddbID\": 1451,\n      \"grp\": \"pc\",\n      \"id\": \"Ph\",\n      \"mass\": 80,\n      \"maximum\": 8,\n      \"power\": 0.69,\n      \"range\": 8.5,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_DroneControl_Prospector_Size7_Class3\",\n      \"ukName\": \"Prospector\",\n      \"ukDiscript\": \"Controls a limpet to prospect an asteroid to discover its composition.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 3499200,\n      \"edID\": 128671287,\n      \"eddbID\": 1452,\n      \"grp\": \"pc\",\n      \"id\": \"Pi\",\n      \"mass\": 128,\n      \"maximum\": 8,\n      \"power\": 0.97,\n      \"range\": 10.2,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_DroneControl_Prospector_Size7_Class4\",\n      \"ukName\": \"Prospector\",\n      \"ukDiscript\": \"Controls a limpet to prospect an asteroid to discover its composition.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 6998400,\n      \"edID\": 128671288,\n      \"eddbID\": 1453,\n      \"grp\": \"pc\",\n      \"id\": \"Pj\",\n      \"mass\": 80,\n      \"maximum\": 8,\n      \"power\": 0.83,\n      \"range\": 11.9,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_DroneControl_Prospector_Size7_Class5\",\n      \"ukName\": \"Prospector\",\n      \"ukDiscript\": \"Controls a limpet to prospect an asteroid to discover its composition.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/internal/recon_limpet_controllers.json",
    "content": "{\n  \"rcpl\": [\n    {\n      \"class\": 1,\n      \"cost\": 2600,\n      \"edID\": 128837858,\n      \"eddbID\": 1636,\n      \"grp\": \"rcpl\",\n      \"id\": \"0L\",\n      \"mass\": 1.3,\n      \"maximum\": 1,\n      \"power\": 0.18,\n      \"range\": 1.2,\n      \"rating\": \"E\",\n      \"integrity\": 24,\n      \"hacktime\": 22,\n      \"symbol\": \"Int_DroneControl_Recon_Size1_Class1\",\n      \"ukName\": \"Recon\",\n      \"ukDiscript\": \"Controls a limpet that can hack into data points.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 8200,\n      \"edID\": 128841592,\n      \"eddbID\": 1637,\n      \"grp\": \"rcpl\",\n      \"id\": \"0M\",\n      \"mass\": 2,\n      \"maximum\": 1,\n      \"power\": 0.2,\n      \"range\": 1.4,\n      \"rating\": \"E\",\n      \"integrity\": 51,\n      \"hacktime\": 17,\n      \"symbol\": \"Int_DroneControl_Recon_Size3_Class1\",\n      \"ukName\": \"Recon\",\n      \"ukDiscript\": \"Controls a limpet that can hack into data points.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 75800,\n      \"edID\": 128841593,\n      \"eddbID\": 1638,\n      \"grp\": \"rcpl\",\n      \"id\": \"0N\",\n      \"mass\": 20,\n      \"maximum\": 1,\n      \"power\": 0.5,\n      \"range\": 1.7,\n      \"rating\": \"E\",\n      \"integrity\": 96,\n      \"hacktime\": 13,\n      \"symbol\": \"Int_DroneControl_Recon_Size5_Class1\",\n      \"ukName\": \"Recon\",\n      \"ukDiscript\": \"Controls a limpet that can hack into data points.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 612200,\n      \"edID\": 128841594,\n      \"eddbID\": 1639,\n      \"grp\": \"rcpl\",\n      \"id\": \"0O\",\n      \"mass\": 128,\n      \"maximum\": 1,\n      \"power\": 0.97,\n      \"range\": 2,\n      \"rating\": \"E\",\n      \"integrity\": 157,\n      \"hacktime\": 10,\n      \"symbol\": \"Int_DroneControl_Recon_Size7_Class1\",\n      \"ukName\": \"Recon\",\n      \"ukDiscript\": \"Controls a limpet that can hack into data points.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/internal/refinery.json",
    "content": "{\n  \"rf\": [\n    {\n      \"bins\": 1,\n      \"class\": 1,\n      \"cost\": 6000,\n      \"edID\": 128666684,\n      \"eddbID\": 1286,\n      \"grp\": \"rf\",\n      \"id\": \"1k\",\n      \"power\": 0.14,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_Refinery_Size1_Class1\",\n      \"ukName\": \"Refinery\",\n      \"ukDiscript\": \"Converts scooped fragments into usable resources (requires mining laser).\"\n    },\n    {\n      \"bins\": 1,\n      \"class\": 1,\n      \"cost\": 18000,\n      \"edID\": 128666688,\n      \"eddbID\": 1290,\n      \"grp\": \"rf\",\n      \"id\": \"1j\",\n      \"power\": 0.18,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_Refinery_Size1_Class2\",\n      \"ukName\": \"Refinery\",\n      \"ukDiscript\": \"Converts scooped fragments into usable resources (requires mining laser).\"\n    },\n    {\n      \"bins\": 2,\n      \"class\": 1,\n      \"cost\": 54000,\n      \"edID\": 128666692,\n      \"eddbID\": 1294,\n      \"grp\": \"rf\",\n      \"id\": \"1i\",\n      \"power\": 0.23,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_Refinery_Size1_Class3\",\n      \"ukName\": \"Refinery\",\n      \"ukDiscript\": \"Converts scooped fragments into usable resources (requires mining laser).\"\n    },\n    {\n      \"bins\": 3,\n      \"class\": 1,\n      \"cost\": 162000,\n      \"edID\": 128666696,\n      \"eddbID\": 1298,\n      \"grp\": \"rf\",\n      \"id\": \"1h\",\n      \"power\": 0.28,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_Refinery_Size1_Class4\",\n      \"ukName\": \"Refinery\",\n      \"ukDiscript\": \"Converts scooped fragments into usable resources (requires mining laser).\"\n    },\n    {\n      \"bins\": 4,\n      \"class\": 1,\n      \"cost\": 486000,\n      \"edID\": 128666700,\n      \"eddbID\": 1302,\n      \"grp\": \"rf\",\n      \"id\": \"1g\",\n      \"power\": 0.32,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_Refinery_Size1_Class5\",\n      \"ukName\": \"Refinery\",\n      \"ukDiscript\": \"Converts scooped fragments into usable resources (requires mining laser).\"\n    },\n    {\n      \"bins\": 2,\n      \"class\": 2,\n      \"cost\": 12600,\n      \"edID\": 128666685,\n      \"eddbID\": 1287,\n      \"grp\": \"rf\",\n      \"id\": \"1p\",\n      \"power\": 0.17,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_Refinery_Size2_Class1\",\n      \"ukName\": \"Refinery\",\n      \"ukDiscript\": \"Converts scooped fragments into usable resources (requires mining laser).\"\n    },\n    {\n      \"bins\": 3,\n      \"class\": 2,\n      \"cost\": 37800,\n      \"edID\": 128666689,\n      \"eddbID\": 1291,\n      \"grp\": \"rf\",\n      \"id\": \"1o\",\n      \"power\": 0.22,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_Refinery_Size2_Class2\",\n      \"ukName\": \"Refinery\",\n      \"ukDiscript\": \"Converts scooped fragments into usable resources (requires mining laser).\"\n    },\n    {\n      \"bins\": 4,\n      \"class\": 2,\n      \"cost\": 113400,\n      \"edID\": 128666693,\n      \"eddbID\": 1295,\n      \"grp\": \"rf\",\n      \"id\": \"1n\",\n      \"power\": 0.28,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_Refinery_Size2_Class3\",\n      \"ukName\": \"Refinery\",\n      \"ukDiscript\": \"Converts scooped fragments into usable resources (requires mining laser).\"\n    },\n    {\n      \"bins\": 5,\n      \"class\": 2,\n      \"cost\": 340200,\n      \"edID\": 128666697,\n      \"eddbID\": 1299,\n      \"grp\": \"rf\",\n      \"id\": \"1m\",\n      \"power\": 0.34,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_Refinery_Size2_Class4\",\n      \"ukName\": \"Refinery\",\n      \"ukDiscript\": \"Converts scooped fragments into usable resources (requires mining laser).\"\n    },\n    {\n      \"bins\": 6,\n      \"class\": 2,\n      \"cost\": 1020600,\n      \"edID\": 128666701,\n      \"eddbID\": 1303,\n      \"grp\": \"rf\",\n      \"id\": \"1l\",\n      \"power\": 0.39,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_Refinery_Size2_Class5\",\n      \"ukName\": \"Refinery\",\n      \"ukDiscript\": \"Converts scooped fragments into usable resources (requires mining laser).\"\n    },\n    {\n      \"bins\": 3,\n      \"class\": 3,\n      \"cost\": 26460,\n      \"edID\": 128666686,\n      \"eddbID\": 1288,\n      \"grp\": \"rf\",\n      \"id\": \"1u\",\n      \"power\": 0.2,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_Refinery_Size3_Class1\",\n      \"ukName\": \"Refinery\",\n      \"ukDiscript\": \"Converts scooped fragments into usable resources (requires mining laser).\"\n    },\n    {\n      \"bins\": 4,\n      \"class\": 3,\n      \"cost\": 79380,\n      \"edID\": 128666690,\n      \"eddbID\": 1292,\n      \"grp\": \"rf\",\n      \"id\": \"1t\",\n      \"power\": 0.27,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_Refinery_Size3_Class2\",\n      \"ukName\": \"Refinery\",\n      \"ukDiscript\": \"Converts scooped fragments into usable resources (requires mining laser).\"\n    },\n    {\n      \"bins\": 6,\n      \"class\": 3,\n      \"cost\": 238140,\n      \"edID\": 128666694,\n      \"eddbID\": 1296,\n      \"grp\": \"rf\",\n      \"id\": \"1s\",\n      \"power\": 0.34,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_Refinery_Size3_Class3\",\n      \"ukName\": \"Refinery\",\n      \"ukDiscript\": \"Converts scooped fragments into usable resources (requires mining laser).\"\n    },\n    {\n      \"bins\": 7,\n      \"class\": 3,\n      \"cost\": 714420,\n      \"edID\": 128666698,\n      \"eddbID\": 1300,\n      \"grp\": \"rf\",\n      \"id\": \"1r\",\n      \"power\": 0.41,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_Refinery_Size3_Class4\",\n      \"ukName\": \"Refinery\",\n      \"ukDiscript\": \"Converts scooped fragments into usable resources (requires mining laser).\"\n    },\n    {\n      \"bins\": 8,\n      \"class\": 3,\n      \"cost\": 2143260,\n      \"edID\": 128666702,\n      \"eddbID\": 1304,\n      \"grp\": \"rf\",\n      \"id\": \"1q\",\n      \"power\": 0.48,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_Refinery_Size3_Class5\",\n      \"ukName\": \"Refinery\",\n      \"ukDiscript\": \"Converts scooped fragments into usable resources (requires mining laser).\"\n    },\n    {\n      \"bins\": 4,\n      \"class\": 4,\n      \"cost\": 55570,\n      \"edID\": 128666687,\n      \"eddbID\": 1289,\n      \"grp\": \"rf\",\n      \"id\": \"23\",\n      \"power\": 0.25,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_Refinery_Size4_Class1\",\n      \"ukName\": \"Refinery\",\n      \"ukDiscript\": \"Converts scooped fragments into usable resources (requires mining laser).\"\n    },\n    {\n      \"bins\": 5,\n      \"class\": 4,\n      \"cost\": 166700,\n      \"edID\": 128666691,\n      \"eddbID\": 1293,\n      \"grp\": \"rf\",\n      \"id\": \"22\",\n      \"power\": 0.33,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_Refinery_Size4_Class2\",\n      \"ukName\": \"Refinery\",\n      \"ukDiscript\": \"Converts scooped fragments into usable resources (requires mining laser).\"\n    },\n    {\n      \"bins\": 7,\n      \"class\": 4,\n      \"cost\": 500090,\n      \"edID\": 128666695,\n      \"eddbID\": 1297,\n      \"grp\": \"rf\",\n      \"id\": \"21\",\n      \"power\": 0.41,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_Refinery_Size4_Class3\",\n      \"ukName\": \"Refinery\",\n      \"ukDiscript\": \"Converts scooped fragments into usable resources (requires mining laser).\"\n    },\n    {\n      \"bins\": 9,\n      \"class\": 4,\n      \"cost\": 1500280,\n      \"edID\": 128666699,\n      \"eddbID\": 1301,\n      \"grp\": \"rf\",\n      \"id\": \"20\",\n      \"power\": 0.49,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_Refinery_Size4_Class4\",\n      \"ukName\": \"Refinery\",\n      \"ukDiscript\": \"Converts scooped fragments into usable resources (requires mining laser).\"\n    },\n    {\n      \"bins\": 10,\n      \"class\": 4,\n      \"cost\": 4500850,\n      \"edID\": 128666703,\n      \"eddbID\": 1305,\n      \"grp\": \"rf\",\n      \"id\": \"1v\",\n      \"power\": 0.57,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_Refinery_Size4_Class5\",\n      \"ukName\": \"Refinery\",\n      \"ukDiscript\": \"Converts scooped fragments into usable resources (requires mining laser).\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/internal/repair_limpet_controller.json",
    "content": "{\n  \"rpl\": [\n    {\n      \"class\": 1,\n      \"cost\": 600,\n      \"edID\": 128777327,\n      \"eddbID\": 1594,\n      \"grp\": \"rpl\",\n      \"id\": \"9z\",\n      \"mass\": 1.3,\n      \"maximum\": 1,\n      \"power\": 0.18,\n      \"range\": 0.6,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_DroneControl_Repair_Size1_Class1\",\n      \"ukName\": \"Repair\",\n      \"ukDiscript\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\"\n    },\n    {\n      \"class\": 1,\n      \"cost\": 1200,\n      \"edID\": 128777328,\n      \"eddbID\": 1595,\n      \"grp\": \"rpl\",\n      \"id\": \"9q\",\n      \"mass\": 0.5,\n      \"maximum\": 1,\n      \"power\": 0.14,\n      \"range\": 0.8,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_DroneControl_Repair_Size1_Class2\",\n      \"ukName\": \"Repair\",\n      \"ukDiscript\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\"\n    },\n    {\n      \"class\": 1,\n      \"cost\": 2400,\n      \"edID\": 128777329,\n      \"eddbID\": 1596,\n      \"grp\": \"rpl\",\n      \"id\": \"9a\",\n      \"mass\": 1.3,\n      \"maximum\": 1,\n      \"power\": 0.23,\n      \"range\": 1,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_DroneControl_Repair_Size1_Class3\",\n      \"ukName\": \"Repair\",\n      \"ukDiscript\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\"\n    },\n    {\n      \"class\": 1,\n      \"cost\": 4800,\n      \"edID\": 128777330,\n      \"eddbID\": 1597,\n      \"grp\": \"rpl\",\n      \"id\": \"9w\",\n      \"mass\": 2,\n      \"maximum\": 1,\n      \"power\": 0.32,\n      \"range\": 1.2,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_DroneControl_Repair_Size1_Class4\",\n      \"ukName\": \"Repair\",\n      \"ukDiscript\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\"\n    },\n    {\n      \"class\": 1,\n      \"cost\": 9600,\n      \"edID\": 128777331,\n      \"eddbID\": 1598,\n      \"grp\": \"rpl\",\n      \"id\": \"9s\",\n      \"mass\": 1.3,\n      \"maximum\": 1,\n      \"power\": 0.28,\n      \"range\": 1.4,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_DroneControl_Repair_Size1_Class5\",\n      \"ukName\": \"Repair\",\n      \"ukDiscript\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 5400,\n      \"edID\": 128777332,\n      \"eddbID\": 1599,\n      \"grp\": \"rpl\",\n      \"id\": \"9x\",\n      \"mass\": 5,\n      \"maximum\": 2,\n      \"power\": 0.27,\n      \"range\": 0.66,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_DroneControl_Repair_Size3_Class1\",\n      \"ukName\": \"Repair\",\n      \"ukDiscript\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 10800,\n      \"edID\": 128777333,\n      \"eddbID\": 1600,\n      \"grp\": \"rpl\",\n      \"id\": \"9e\",\n      \"mass\": 2,\n      \"maximum\": 2,\n      \"power\": 0.2,\n      \"range\": 0.88,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_DroneControl_Repair_Size3_Class2\",\n      \"ukName\": \"Repair\",\n      \"ukDiscript\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 21600,\n      \"edID\": 128777334,\n      \"eddbID\": 1601,\n      \"grp\": \"rpl\",\n      \"id\": \"9d\",\n      \"mass\": 5,\n      \"maximum\": 2,\n      \"power\": 0.34,\n      \"range\": 1.1,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_DroneControl_Repair_Size3_Class3\",\n      \"ukName\": \"Repair\",\n      \"ukDiscript\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 43200,\n      \"edID\": 128777335,\n      \"eddbID\": 1602,\n      \"grp\": \"rpl\",\n      \"id\": \"9c\",\n      \"mass\": 8,\n      \"maximum\": 2,\n      \"power\": 0.48,\n      \"range\": 1.32,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_DroneControl_Repair_Size3_Class4\",\n      \"ukName\": \"Repair\",\n      \"ukDiscript\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 86400,\n      \"edID\": 128777336,\n      \"eddbID\": 1603,\n      \"grp\": \"rpl\",\n      \"id\": \"9r\",\n      \"mass\": 5,\n      \"maximum\": 2,\n      \"power\": 0.41,\n      \"range\": 1.54,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_DroneControl_Repair_Size3_Class5\",\n      \"ukName\": \"Repair\",\n      \"ukDiscript\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 48600,\n      \"edID\": 128777337,\n      \"eddbID\": 1604,\n      \"grp\": \"rpl\",\n      \"id\": \"9f\",\n      \"mass\": 20,\n      \"maximum\": 3,\n      \"power\": 0.4,\n      \"range\": 0.78,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_DroneControl_Repair_Size5_Class1\",\n      \"ukName\": \"Repair\",\n      \"ukDiscript\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 97200,\n      \"edID\": 128777338,\n      \"eddbID\": 1605,\n      \"grp\": \"rpl\",\n      \"id\": \"9v\",\n      \"mass\": 8,\n      \"maximum\": 3,\n      \"power\": 0.3,\n      \"range\": 1.04,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_DroneControl_Repair_Size5_Class2\",\n      \"ukName\": \"Repair\",\n      \"ukDiscript\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 194400,\n      \"edID\": 128777339,\n      \"eddbID\": 1606,\n      \"grp\": \"rpl\",\n      \"id\": \"9t\",\n      \"mass\": 20,\n      \"maximum\": 3,\n      \"power\": 0.5,\n      \"range\": 1.3,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_DroneControl_Repair_Size5_Class3\",\n      \"ukName\": \"Repair\",\n      \"ukDiscript\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 388800,\n      \"edID\": 128777340,\n      \"eddbID\": 1607,\n      \"grp\": \"rpl\",\n      \"id\": \"9g\",\n      \"mass\": 32,\n      \"maximum\": 3,\n      \"power\": 0.97,\n      \"range\": 1.56,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_DroneControl_Repair_Size5_Class4\",\n      \"ukName\": \"Repair\",\n      \"ukDiscript\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 777600,\n      \"edID\": 128777341,\n      \"eddbID\": 1608,\n      \"grp\": \"rpl\",\n      \"id\": \"9b\",\n      \"mass\": 20,\n      \"maximum\": 3,\n      \"power\": 0.6,\n      \"range\": 1.82,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_DroneControl_Repair_Size5_Class5\",\n      \"ukName\": \"Repair\",\n      \"ukDiscript\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 437400,\n      \"edID\": 128777342,\n      \"eddbID\": 1609,\n      \"grp\": \"rpl\",\n      \"id\": \"9y\",\n      \"mass\": 80,\n      \"maximum\": 4,\n      \"power\": 0.55,\n      \"range\": 1.02,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_DroneControl_Repair_Size7_Class1\",\n      \"ukName\": \"Repair\",\n      \"ukDiscript\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 874800,\n      \"edID\": 128777343,\n      \"eddbID\": 1610,\n      \"grp\": \"rpl\",\n      \"id\": \"9h\",\n      \"mass\": 32,\n      \"maximum\": 4,\n      \"power\": 0.41,\n      \"range\": 1.36,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_DroneControl_Repair_Size7_Class2\",\n      \"ukName\": \"Repair\",\n      \"ukDiscript\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 1749600,\n      \"edID\": 128777344,\n      \"eddbID\": 1611,\n      \"grp\": \"rpl\",\n      \"id\": \"9n\",\n      \"mass\": 80,\n      \"maximum\": 4,\n      \"power\": 0.69,\n      \"range\": 1.7,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_DroneControl_Repair_Size7_Class3\",\n      \"ukName\": \"Repair\",\n      \"ukDiscript\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 3499200,\n      \"edID\": 128777345,\n      \"eddbID\": 1612,\n      \"grp\": \"rpl\",\n      \"id\": \"9u\",\n      \"mass\": 128,\n      \"maximum\": 4,\n      \"power\": 0.97,\n      \"range\": 2.04,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_DroneControl_Repair_Size7_Class4\",\n      \"ukName\": \"Repair\",\n      \"ukDiscript\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 6998400,\n      \"edID\": 128777346,\n      \"eddbID\": 1613,\n      \"grp\": \"rpl\",\n      \"id\": \"9j\",\n      \"mass\": 80,\n      \"maximum\": 4,\n      \"power\": 0.83,\n      \"range\": 2.38,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_DroneControl_Repair_Size7_Class5\",\n      \"ukName\": \"Repair\",\n      \"ukDiscript\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/internal/research_limpet_controller.json",
    "content": "{\n  \"rsl\": [\n    {\n      \"rating\": \"E\",\n      \"class\": 1,\n      \"grp\": \"rsl\",\n      \"id\": \"2w\",\n      \"eddbID\": 1617,\n      \"edID\": 128793116,\n      \"cost\": 1749600,\n      \"mass\": 1.3,\n      \"maximum\": 1,\n      \"power\": 0.4,\n      \"range\": 2,\n      \"symbol\": \"Int_DroneControl_UnkVesselResearch\",\n      \"time\": 300,\n      \"integrity\": 20\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/internal/shield_cell_bank.json",
    "content": "{\n  \"scb\": [\n    {\n      \"ammo\": 3,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 1,\n      \"clip\": 1,\n      \"cost\": 517,\n      \"duration\": 1,\n      \"edID\": 128064298,\n      \"eddbID\": 1151,\n      \"grp\": \"scb\",\n      \"id\": \"52\",\n      \"integrity\": 32,\n      \"mass\": 1.3,\n      \"power\": 0.41,\n      \"rating\": \"E\",\n      \"shieldreinforcement\": 12,\n      \"rechargerating\": \"E\",\n      \"spinup\": 5,\n      \"thermload\": 170,\n      \"symbol\": \"Int_ShieldCellBank_Size1_Class1\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 0,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 1,\n      \"clip\": 1,\n      \"cost\": 1293,\n      \"duration\": 1,\n      \"edID\": 128064299,\n      \"eddbID\": 1152,\n      \"grp\": \"scb\",\n      \"id\": \"51\",\n      \"integrity\": 24,\n      \"mass\": 0.5,\n      \"power\": 0.55,\n      \"rating\": \"D\",\n      \"shieldreinforcement\": 12.5,\n      \"rechargerating\": \"D\",\n      \"spinup\": 5,\n      \"thermload\": 170,\n      \"symbol\": \"Int_ShieldCellBank_Size1_Class2\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 2,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 1,\n      \"clip\": 1,\n      \"cost\": 3231,\n      \"duration\": 1,\n      \"edID\": 128064300,\n      \"eddbID\": 1153,\n      \"grp\": \"scb\",\n      \"id\": \"50\",\n      \"integrity\": 40,\n      \"mass\": 1.3,\n      \"power\": 0.69,\n      \"rating\": \"C\",\n      \"shieldreinforcement\": 20,\n      \"rechargerating\": \"C\",\n      \"spinup\": 5,\n      \"thermload\": 170,\n      \"symbol\": \"Int_ShieldCellBank_Size1_Class3\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 3,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 1,\n      \"clip\": 1,\n      \"cost\": 8078,\n      \"duration\": 1,\n      \"edID\": 128064301,\n      \"eddbID\": 1154,\n      \"grp\": \"scb\",\n      \"id\": \"4v\",\n      \"integrity\": 56,\n      \"mass\": 2,\n      \"power\": 0.83,\n      \"rating\": \"B\",\n      \"shieldreinforcement\": 24,\n      \"rechargerating\": \"B\",\n      \"spinup\": 5,\n      \"thermload\": 170,\n      \"symbol\": \"Int_ShieldCellBank_Size1_Class4\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 2,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 1,\n      \"clip\": 1,\n      \"cost\": 20195,\n      \"duration\": 1,\n      \"edID\": 128064302,\n      \"eddbID\": 1155,\n      \"grp\": \"scb\",\n      \"id\": \"4u\",\n      \"integrity\": 48,\n      \"mass\": 1.3,\n      \"power\": 0.97,\n      \"rating\": \"A\",\n      \"shieldreinforcement\": 28,\n      \"rechargerating\": \"A\",\n      \"spinup\": 5,\n      \"thermload\": 170,\n      \"symbol\": \"Int_ShieldCellBank_Size1_Class5\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 4,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 2,\n      \"clip\": 1,\n      \"cost\": 1448,\n      \"duration\": 2,\n      \"edID\": 128064303,\n      \"eddbID\": 1156,\n      \"grp\": \"scb\",\n      \"id\": \"57\",\n      \"integrity\": 41,\n      \"mass\": 2.5,\n      \"power\": 0.5,\n      \"rating\": \"E\",\n      \"shieldreinforcement\": 14,\n      \"rechargerating\": \"E\",\n      \"spinup\": 5,\n      \"thermload\": 240,\n      \"symbol\": \"Int_ShieldCellBank_Size2_Class1\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 2,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 2,\n      \"clip\": 1,\n      \"cost\": 3619,\n      \"duration\": 2,\n      \"edID\": 128064304,\n      \"eddbID\": 1157,\n      \"grp\": \"scb\",\n      \"id\": \"56\",\n      \"integrity\": 31,\n      \"mass\": 1,\n      \"power\": 0.67,\n      \"rating\": \"D\",\n      \"shieldreinforcement\": 18,\n      \"rechargerating\": \"D\",\n      \"spinup\": 5,\n      \"thermload\": 240,\n      \"symbol\": \"Int_ShieldCellBank_Size2_Class2\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 3,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 2,\n      \"clip\": 1,\n      \"cost\": 9048,\n      \"duration\": 2,\n      \"edID\": 128064305,\n      \"eddbID\": 1158,\n      \"grp\": \"scb\",\n      \"id\": \"55\",\n      \"integrity\": 51,\n      \"mass\": 2.5,\n      \"power\": 0.84,\n      \"rating\": \"C\",\n      \"shieldreinforcement\": 23,\n      \"rechargerating\": \"C\",\n      \"spinup\": 5,\n      \"thermload\": 240,\n      \"symbol\": \"Int_ShieldCellBank_Size2_Class3\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 4,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 2,\n      \"clip\": 1,\n      \"cost\": 22619,\n      \"duration\": 2,\n      \"edID\": 128064306,\n      \"eddbID\": 1159,\n      \"grp\": \"scb\",\n      \"id\": \"54\",\n      \"integrity\": 71,\n      \"mass\": 4,\n      \"power\": 1.01,\n      \"rating\": \"B\",\n      \"shieldreinforcement\": 28,\n      \"rechargerating\": \"B\",\n      \"spinup\": 5,\n      \"thermload\": 240,\n      \"symbol\": \"Int_ShieldCellBank_Size2_Class4\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 3,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 2,\n      \"clip\": 1,\n      \"cost\": 56547,\n      \"duration\": 2,\n      \"edID\": 128064307,\n      \"eddbID\": 1160,\n      \"grp\": \"scb\",\n      \"id\": \"53\",\n      \"integrity\": 61,\n      \"mass\": 2.5,\n      \"power\": 1.18,\n      \"rating\": \"A\",\n      \"shieldreinforcement\": 32,\n      \"rechargerating\": \"A\",\n      \"spinup\": 5,\n      \"thermload\": 240,\n      \"symbol\": \"Int_ShieldCellBank_Size2_Class5\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 4,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 3,\n      \"clip\": 1,\n      \"cost\": 4053,\n      \"duration\": 2,\n      \"edID\": 128064308,\n      \"eddbID\": 1161,\n      \"grp\": \"scb\",\n      \"id\": \"5c\",\n      \"integrity\": 51,\n      \"mass\": 5,\n      \"power\": 0.61,\n      \"rating\": \"E\",\n      \"shieldreinforcement\": 17,\n      \"rechargerating\": \"E\",\n      \"spinup\": 5,\n      \"thermload\": 340,\n      \"symbol\": \"Int_ShieldCellBank_Size3_Class1\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 2,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 3,\n      \"clip\": 1,\n      \"cost\": 10133,\n      \"duration\": 2,\n      \"edID\": 128064309,\n      \"eddbID\": 1162,\n      \"grp\": \"scb\",\n      \"id\": \"5b\",\n      \"integrity\": 38,\n      \"mass\": 2,\n      \"power\": 0.82,\n      \"rating\": \"D\",\n      \"shieldreinforcement\": 23,\n      \"rechargerating\": \"D\",\n      \"spinup\": 5,\n      \"thermload\": 340,\n      \"symbol\": \"Int_ShieldCellBank_Size3_Class2\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 3,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 3,\n      \"clip\": 1,\n      \"cost\": 25333,\n      \"duration\": 2,\n      \"edID\": 128064310,\n      \"eddbID\": 1163,\n      \"grp\": \"scb\",\n      \"id\": \"5a\",\n      \"integrity\": 64,\n      \"mass\": 5,\n      \"power\": 1.02,\n      \"rating\": \"C\",\n      \"shieldreinforcement\": 29,\n      \"rechargerating\": \"C\",\n      \"spinup\": 5,\n      \"thermload\": 340,\n      \"symbol\": \"Int_ShieldCellBank_Size3_Class3\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 4,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 3,\n      \"clip\": 1,\n      \"cost\": 63333,\n      \"duration\": 2,\n      \"edID\": 128064311,\n      \"eddbID\": 1164,\n      \"grp\": \"scb\",\n      \"id\": \"59\",\n      \"integrity\": 90,\n      \"mass\": 8,\n      \"power\": 1.22,\n      \"rating\": \"B\",\n      \"shieldreinforcement\": 35,\n      \"rechargerating\": \"B\",\n      \"spinup\": 5,\n      \"thermload\": 340,\n      \"symbol\": \"Int_ShieldCellBank_Size3_Class4\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 3,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 3,\n      \"clip\": 1,\n      \"cost\": 158331,\n      \"duration\": 2,\n      \"edID\": 128064312,\n      \"eddbID\": 1165,\n      \"grp\": \"scb\",\n      \"id\": \"58\",\n      \"integrity\": 77,\n      \"mass\": 5,\n      \"power\": 1.43,\n      \"rating\": \"A\",\n      \"shieldreinforcement\": 41,\n      \"rechargerating\": \"A\",\n      \"spinup\": 5,\n      \"thermload\": 340,\n      \"symbol\": \"Int_ShieldCellBank_Size3_Class5\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 4,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 4,\n      \"clip\": 1,\n      \"cost\": 11349,\n      \"duration\": 3,\n      \"edID\": 128064313,\n      \"eddbID\": 1166,\n      \"grp\": \"scb\",\n      \"id\": \"5h\",\n      \"integrity\": 64,\n      \"mass\": 10,\n      \"power\": 0.74,\n      \"rating\": \"E\",\n      \"shieldreinforcement\": 20,\n      \"rechargerating\": \"E\",\n      \"spinup\": 5,\n      \"thermload\": 410,\n      \"symbol\": \"Int_ShieldCellBank_Size4_Class1\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 2,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 4,\n      \"clip\": 1,\n      \"cost\": 28373,\n      \"duration\": 3,\n      \"edID\": 128064314,\n      \"eddbID\": 1167,\n      \"grp\": \"scb\",\n      \"id\": \"5g\",\n      \"integrity\": 48,\n      \"mass\": 4,\n      \"power\": 0.98,\n      \"rating\": \"D\",\n      \"shieldreinforcement\": 26,\n      \"rechargerating\": \"D\",\n      \"spinup\": 5,\n      \"thermload\": 410,\n      \"symbol\": \"Int_ShieldCellBank_Size4_Class2\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 3,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 4,\n      \"clip\": 1,\n      \"cost\": 70932,\n      \"duration\": 3,\n      \"edID\": 128064315,\n      \"eddbID\": 1168,\n      \"grp\": \"scb\",\n      \"id\": \"5f\",\n      \"integrity\": 80,\n      \"mass\": 10,\n      \"power\": 1.23,\n      \"rating\": \"C\",\n      \"shieldreinforcement\": 33,\n      \"rechargerating\": \"C\",\n      \"spinup\": 5,\n      \"thermload\": 410,\n      \"symbol\": \"Int_ShieldCellBank_Size4_Class3\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 4,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 4,\n      \"clip\": 1,\n      \"cost\": 177331,\n      \"duration\": 3,\n      \"edID\": 128064316,\n      \"eddbID\": 1169,\n      \"grp\": \"scb\",\n      \"id\": \"5e\",\n      \"integrity\": 112,\n      \"mass\": 16,\n      \"power\": 1.48,\n      \"rating\": \"B\",\n      \"shieldreinforcement\": 39,\n      \"rechargerating\": \"B\",\n      \"spinup\": 5,\n      \"thermload\": 410,\n      \"symbol\": \"Int_ShieldCellBank_Size4_Class4\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 3,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 4,\n      \"clip\": 1,\n      \"cost\": 443328,\n      \"duration\": 3,\n      \"edID\": 128064317,\n      \"eddbID\": 1170,\n      \"grp\": \"scb\",\n      \"id\": \"5d\",\n      \"integrity\": 96,\n      \"mass\": 10,\n      \"power\": 1.72,\n      \"rating\": \"A\",\n      \"shieldreinforcement\": 46,\n      \"rechargerating\": \"A\",\n      \"spinup\": 5,\n      \"thermload\": 410,\n      \"symbol\": \"Int_ShieldCellBank_Size4_Class5\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 4,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 5,\n      \"clip\": 1,\n      \"cost\": 31778,\n      \"duration\": 5,\n      \"edID\": 128064318,\n      \"eddbID\": 1171,\n      \"grp\": \"scb\",\n      \"id\": \"5m\",\n      \"integrity\": 77,\n      \"mass\": 20,\n      \"power\": 0.9,\n      \"rating\": \"E\",\n      \"shieldreinforcement\": 21,\n      \"rechargerating\": \"E\",\n      \"spinup\": 5,\n      \"thermload\": 540,\n      \"symbol\": \"Int_ShieldCellBank_Size5_Class1\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 2,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 5,\n      \"clip\": 1,\n      \"cost\": 79444,\n      \"duration\": 5,\n      \"edID\": 128064319,\n      \"eddbID\": 1172,\n      \"grp\": \"scb\",\n      \"id\": \"5l\",\n      \"integrity\": 58,\n      \"mass\": 8,\n      \"power\": 1.2,\n      \"rating\": \"D\",\n      \"shieldreinforcement\": 28,\n      \"rechargerating\": \"D\",\n      \"spinup\": 5,\n      \"thermload\": 540,\n      \"symbol\": \"Int_ShieldCellBank_Size5_Class2\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 3,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 5,\n      \"clip\": 1,\n      \"cost\": 198612,\n      \"duration\": 5,\n      \"edID\": 128064320,\n      \"eddbID\": 1173,\n      \"grp\": \"scb\",\n      \"id\": \"5k\",\n      \"integrity\": 96,\n      \"mass\": 20,\n      \"power\": 1.5,\n      \"rating\": \"C\",\n      \"shieldreinforcement\": 35,\n      \"rechargerating\": \"C\",\n      \"spinup\": 5,\n      \"thermload\": 540,\n      \"symbol\": \"Int_ShieldCellBank_Size5_Class3\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 4,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 5,\n      \"clip\": 1,\n      \"cost\": 496527,\n      \"duration\": 5,\n      \"edID\": 128064321,\n      \"eddbID\": 1174,\n      \"grp\": \"scb\",\n      \"id\": \"5j\",\n      \"integrity\": 134,\n      \"mass\": 32,\n      \"power\": 1.8,\n      \"rating\": \"B\",\n      \"shieldreinforcement\": 41,\n      \"rechargerating\": \"B\",\n      \"spinup\": 5,\n      \"thermload\": 540,\n      \"symbol\": \"Int_ShieldCellBank_Size5_Class4\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 3,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 5,\n      \"clip\": 1,\n      \"cost\": 1241319,\n      \"duration\": 5,\n      \"edID\": 128064322,\n      \"eddbID\": 1175,\n      \"grp\": \"scb\",\n      \"id\": \"5i\",\n      \"integrity\": 115,\n      \"mass\": 20,\n      \"power\": 2.1,\n      \"rating\": \"A\",\n      \"shieldreinforcement\": 48,\n      \"rechargerating\": \"A\",\n      \"spinup\": 5,\n      \"thermload\": 540,\n      \"symbol\": \"Int_ShieldCellBank_Size5_Class5\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 5,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 6,\n      \"clip\": 1,\n      \"cost\": 88987,\n      \"duration\": 8,\n      \"edID\": 128064323,\n      \"eddbID\": 1176,\n      \"grp\": \"scb\",\n      \"id\": \"5r\",\n      \"integrity\": 90,\n      \"mass\": 40,\n      \"power\": 1.06,\n      \"rating\": \"E\",\n      \"shieldreinforcement\": 20,\n      \"rechargerating\": \"E\",\n      \"spinup\": 5,\n      \"thermload\": 640,\n      \"symbol\": \"Int_ShieldCellBank_Size6_Class1\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 3,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 6,\n      \"clip\": 1,\n      \"cost\": 222444,\n      \"duration\": 8,\n      \"edID\": 128064324,\n      \"eddbID\": 1177,\n      \"grp\": \"scb\",\n      \"id\": \"5q\",\n      \"integrity\": 68,\n      \"mass\": 16,\n      \"power\": 1.42,\n      \"rating\": \"D\",\n      \"shieldreinforcement\": 26,\n      \"rechargerating\": \"D\",\n      \"spinup\": 5,\n      \"thermload\": 640,\n      \"symbol\": \"Int_ShieldCellBank_Size6_Class2\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 4,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 6,\n      \"clip\": 1,\n      \"cost\": 556110,\n      \"duration\": 8,\n      \"edID\": 128064325,\n      \"eddbID\": 1178,\n      \"grp\": \"scb\",\n      \"id\": \"5p\",\n      \"integrity\": 113,\n      \"mass\": 40,\n      \"power\": 1.77,\n      \"rating\": \"C\",\n      \"shieldreinforcement\": 33,\n      \"rechargerating\": \"C\",\n      \"spinup\": 5,\n      \"thermload\": 640,\n      \"symbol\": \"Int_ShieldCellBank_Size6_Class3\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 5,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 6,\n      \"clip\": 1,\n      \"cost\": 1390275,\n      \"duration\": 8,\n      \"edID\": 128064326,\n      \"eddbID\": 1179,\n      \"grp\": \"scb\",\n      \"id\": \"5o\",\n      \"integrity\": 158,\n      \"mass\": 64,\n      \"power\": 2.12,\n      \"rating\": \"B\",\n      \"shieldreinforcement\": 39,\n      \"rechargerating\": \"B\",\n      \"spinup\": 5,\n      \"thermload\": 640,\n      \"symbol\": \"Int_ShieldCellBank_Size6_Class4\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 4,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 6,\n      \"clip\": 1,\n      \"cost\": 3475688,\n      \"duration\": 8,\n      \"edID\": 128064327,\n      \"eddbID\": 1180,\n      \"grp\": \"scb\",\n      \"id\": \"5n\",\n      \"integrity\": 136,\n      \"mass\": 40,\n      \"power\": 2.48,\n      \"rating\": \"A\",\n      \"shieldreinforcement\": 46,\n      \"rechargerating\": \"A\",\n      \"spinup\": 5,\n      \"thermload\": 640,\n      \"symbol\": \"Int_ShieldCellBank_Size6_Class5\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 5,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 7,\n      \"clip\": 1,\n      \"cost\": 249137,\n      \"duration\": 11,\n      \"edID\": 128064328,\n      \"eddbID\": 1181,\n      \"grp\": \"scb\",\n      \"id\": \"60\",\n      \"integrity\": 105,\n      \"mass\": 80,\n      \"power\": 1.24,\n      \"rating\": \"E\",\n      \"shieldreinforcement\": 24,\n      \"rechargerating\": \"E\",\n      \"spinup\": 5,\n      \"thermload\": 720,\n      \"symbol\": \"Int_ShieldCellBank_Size7_Class1\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 3,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 7,\n      \"clip\": 1,\n      \"cost\": 622843,\n      \"duration\": 11,\n      \"edID\": 128064329,\n      \"eddbID\": 1182,\n      \"grp\": \"scb\",\n      \"id\": \"5v\",\n      \"integrity\": 79,\n      \"mass\": 32,\n      \"power\": 1.66,\n      \"rating\": \"D\",\n      \"shieldreinforcement\": 32,\n      \"rechargerating\": \"D\",\n      \"spinup\": 5,\n      \"thermload\": 720,\n      \"symbol\": \"Int_ShieldCellBank_Size7_Class2\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 4,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 7,\n      \"clip\": 1,\n      \"cost\": 1557108,\n      \"duration\": 11,\n      \"edID\": 128064330,\n      \"eddbID\": 1183,\n      \"grp\": \"scb\",\n      \"id\": \"5u\",\n      \"integrity\": 131,\n      \"mass\": 80,\n      \"power\": 2.07,\n      \"rating\": \"C\",\n      \"shieldreinforcement\": 41,\n      \"rechargerating\": \"C\",\n      \"spinup\": 5,\n      \"thermload\": 720,\n      \"symbol\": \"Int_ShieldCellBank_Size7_Class3\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 5,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 7,\n      \"clip\": 1,\n      \"cost\": 3892770,\n      \"duration\": 11,\n      \"edID\": 128064331,\n      \"eddbID\": 1184,\n      \"grp\": \"scb\",\n      \"id\": \"5t\",\n      \"integrity\": 183,\n      \"mass\": 128,\n      \"power\": 2.48,\n      \"rating\": \"B\",\n      \"shieldreinforcement\": 49,\n      \"rechargerating\": \"B\",\n      \"spinup\": 5,\n      \"thermload\": 720,\n      \"symbol\": \"Int_ShieldCellBank_Size7_Class4\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 4,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 7,\n      \"clip\": 1,\n      \"cost\": 9731925,\n      \"duration\": 11,\n      \"edID\": 128064332,\n      \"eddbID\": 1185,\n      \"grp\": \"scb\",\n      \"id\": \"5s\",\n      \"integrity\": 157,\n      \"mass\": 80,\n      \"power\": 2.9,\n      \"rating\": \"A\",\n      \"shieldreinforcement\": 57,\n      \"rechargerating\": \"A\",\n      \"spinup\": 5,\n      \"thermload\": 720,\n      \"symbol\": \"Int_ShieldCellBank_Size7_Class5\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 5,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 8,\n      \"clip\": 1,\n      \"cost\": 697584,\n      \"duration\": 17,\n      \"edID\": 128064333,\n      \"eddbID\": 1186,\n      \"grp\": \"scb\",\n      \"id\": \"65\",\n      \"integrity\": 120,\n      \"mass\": 160,\n      \"power\": 1.44,\n      \"rating\": \"E\",\n      \"shieldreinforcement\": 28,\n      \"rechargerating\": \"C\",\n      \"spinup\": 5,\n      \"thermload\": 800,\n      \"symbol\": \"Int_ShieldCellBank_Size8_Class1\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 3,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 8,\n      \"clip\": 1,\n      \"cost\": 1743961,\n      \"duration\": 17,\n      \"edID\": 128064334,\n      \"eddbID\": 1187,\n      \"grp\": \"scb\",\n      \"id\": \"64\",\n      \"integrity\": 90,\n      \"mass\": 64,\n      \"power\": 1.92,\n      \"rating\": \"D\",\n      \"shieldreinforcement\": 37,\n      \"rechargerating\": \"D\",\n      \"spinup\": 5,\n      \"thermload\": 800,\n      \"symbol\": \"Int_ShieldCellBank_Size8_Class2\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 4,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 8,\n      \"clip\": 1,\n      \"cost\": 4359903,\n      \"duration\": 17,\n      \"edID\": 128064335,\n      \"eddbID\": 1188,\n      \"grp\": \"scb\",\n      \"id\": \"63\",\n      \"integrity\": 150,\n      \"mass\": 160,\n      \"power\": 2.4,\n      \"rating\": \"C\",\n      \"shieldreinforcement\": 47,\n      \"rechargerating\": \"C\",\n      \"spinup\": 5,\n      \"thermload\": 800,\n      \"symbol\": \"Int_ShieldCellBank_Size8_Class3\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 5,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 8,\n      \"clip\": 1,\n      \"cost\": 10899756,\n      \"duration\": 17,\n      \"edID\": 128064336,\n      \"eddbID\": 1189,\n      \"grp\": \"scb\",\n      \"id\": \"62\",\n      \"integrity\": 210,\n      \"mass\": 256,\n      \"power\": 2.88,\n      \"rating\": \"B\",\n      \"shieldreinforcement\": 56,\n      \"rechargerating\": \"B\",\n      \"spinup\": 5,\n      \"thermload\": 800,\n      \"symbol\": \"Int_ShieldCellBank_Size8_Class4\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    },\n    {\n      \"ammo\": 4,\n      \"ammocost\": 300,\n      \"boot\": 25,\n      \"class\": 8,\n      \"clip\": 1,\n      \"cost\": 27249391,\n      \"duration\": 17,\n      \"edID\": 128064337,\n      \"eddbID\": 1190,\n      \"grp\": \"scb\",\n      \"id\": \"61\",\n      \"integrity\": 180,\n      \"mass\": 160,\n      \"power\": 3.36,\n      \"rating\": \"A\",\n      \"shieldreinforcement\": 65,\n      \"rechargerating\": \"A\",\n      \"spinup\": 5,\n      \"thermload\": 800,\n      \"symbol\": \"Int_ShieldCellBank_Size8_Class5\",\n      \"ukName\": \"Shield Cell Bank\",\n      \"ukDiscript\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/internal/shield_generator.json",
    "content": "{\n  \"sg\": [\n    {\n      \"brokenregen\": 1.6,\n      \"class\": 1,\n      \"cost\": 88075,\n      \"distdraw\": 0.6,\n      \"edID\": 128064262,\n      \"eddbID\": 1551,\n      \"explres\": 0.5,\n      \"grp\": \"sg\",\n      \"id\": \"1x\",\n      \"integrity\": 48,\n      \"kinres\": 0.4,\n      \"mass\": 1.3,\n      \"maxmass\": 63,\n      \"maxmul\": 1.7,\n      \"minmass\": 13,\n      \"minmul\": 0.7,\n      \"optmass\": 25,\n      \"optmul\": 1.2,\n      \"power\": 1.68,\n      \"rating\": \"A\",\n      \"regen\": 1,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size1_Class5\",\n      \"ukName\": \"Shield Generator\",\n      \"ukDiscript\": \"Forms a continually regenerating protective energy shield around the vessel.\"\n    },\n    {\n      \"brokenregen\": 1.6,\n      \"class\": 2,\n      \"cost\": 1980,\n      \"distdraw\": 0.6,\n      \"edID\": 128064263,\n      \"eddbID\": 1116,\n      \"explres\": 0.5,\n      \"grp\": \"sg\",\n      \"id\": \"3v\",\n      \"integrity\": 41,\n      \"kinres\": 0.4,\n      \"mass\": 2.5,\n      \"maxmass\": 138,\n      \"maxmul\": 1.3,\n      \"minmass\": 28,\n      \"minmul\": 0.3,\n      \"optmass\": 55,\n      \"optmul\": 0.8,\n      \"power\": 0.9,\n      \"rating\": \"E\",\n      \"regen\": 1,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size2_Class1\",\n      \"ukName\": \"Shield Generator\",\n      \"ukDiscript\": \"Forms a continually regenerating protective energy shield around the vessel.\"\n    },\n    {\n      \"brokenregen\": 1.6,\n      \"class\": 2,\n      \"cost\": 5930,\n      \"distdraw\": 0.6,\n      \"edID\": 128064264,\n      \"eddbID\": 1117,\n      \"explres\": 0.5,\n      \"grp\": \"sg\",\n      \"id\": \"3u\",\n      \"integrity\": 31,\n      \"kinres\": 0.4,\n      \"mass\": 1,\n      \"maxmass\": 138,\n      \"maxmul\": 1.4,\n      \"minmass\": 28,\n      \"minmul\": 0.4,\n      \"optmass\": 55,\n      \"optmul\": 0.9,\n      \"power\": 1.2,\n      \"rating\": \"D\",\n      \"regen\": 1,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size2_Class2\",\n      \"ukName\": \"Shield Generator\",\n      \"ukDiscript\": \"Forms a continually regenerating protective energy shield around the vessel.\"\n    },\n    {\n      \"brokenregen\": 1.6,\n      \"class\": 2,\n      \"cost\": 17800,\n      \"distdraw\": 0.6,\n      \"edID\": 128064265,\n      \"eddbID\": 1118,\n      \"explres\": 0.5,\n      \"grp\": \"sg\",\n      \"id\": \"3t\",\n      \"integrity\": 51,\n      \"kinres\": 0.4,\n      \"mass\": 2.5,\n      \"maxmass\": 138,\n      \"maxmul\": 1.5,\n      \"minmass\": 28,\n      \"minmul\": 0.5,\n      \"optmass\": 55,\n      \"optmul\": 1,\n      \"power\": 1.5,\n      \"rating\": \"C\",\n      \"regen\": 1,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size2_Class3\",\n      \"ukName\": \"Shield Generator\",\n      \"ukDiscript\": \"Forms a continually regenerating protective energy shield around the vessel.\"\n    },\n    {\n      \"brokenregen\": 1.6,\n      \"class\": 2,\n      \"cost\": 53410,\n      \"distdraw\": 0.6,\n      \"edID\": 128064266,\n      \"eddbID\": 1119,\n      \"explres\": 0.5,\n      \"grp\": \"sg\",\n      \"id\": \"3s\",\n      \"integrity\": 71,\n      \"kinres\": 0.4,\n      \"mass\": 4,\n      \"maxmass\": 138,\n      \"maxmul\": 1.6,\n      \"minmass\": 28,\n      \"minmul\": 0.6,\n      \"optmass\": 55,\n      \"optmul\": 1.1,\n      \"power\": 1.8,\n      \"rating\": \"B\",\n      \"regen\": 1,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size2_Class4\",\n      \"ukName\": \"Shield Generator\",\n      \"ukDiscript\": \"Forms a continually regenerating protective energy shield around the vessel.\"\n    },\n    {\n      \"brokenregen\": 1.6,\n      \"class\": 2,\n      \"cost\": 160220,\n      \"distdraw\": 0.6,\n      \"edID\": 128064267,\n      \"eddbID\": 1120,\n      \"explres\": 0.5,\n      \"grp\": \"sg\",\n      \"id\": \"3r\",\n      \"integrity\": 61,\n      \"kinres\": 0.4,\n      \"mass\": 2.5,\n      \"maxmass\": 138,\n      \"maxmul\": 1.7,\n      \"minmass\": 28,\n      \"minmul\": 0.7,\n      \"optmass\": 55,\n      \"optmul\": 1.2,\n      \"power\": 2.1,\n      \"rating\": \"A\",\n      \"regen\": 1,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size2_Class5\",\n      \"ukName\": \"Shield Generator\",\n      \"ukDiscript\": \"Forms a continually regenerating protective energy shield around the vessel.\"\n    },\n    {\n      \"brokenregen\": 1.87,\n      \"class\": 3,\n      \"cost\": 6270,\n      \"distdraw\": 0.6,\n      \"edID\": 128064268,\n      \"eddbID\": 1121,\n      \"explres\": 0.5,\n      \"grp\": \"sg\",\n      \"id\": \"44\",\n      \"integrity\": 51,\n      \"kinres\": 0.4,\n      \"mass\": 5,\n      \"maxmass\": 413,\n      \"maxmul\": 1.3,\n      \"minmass\": 83,\n      \"minmul\": 0.3,\n      \"optmass\": 165,\n      \"optmul\": 0.8,\n      \"power\": 1.08,\n      \"rating\": \"E\",\n      \"regen\": 1,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size3_Class1\",\n      \"ukName\": \"Shield Generator\",\n      \"ukDiscript\": \"Forms a continually regenerating protective energy shield around the vessel.\"\n    },\n    {\n      \"brokenregen\": 1.87,\n      \"class\": 3,\n      \"cost\": 18810,\n      \"distdraw\": 0.6,\n      \"edID\": 128064269,\n      \"eddbID\": 1122,\n      \"explres\": 0.5,\n      \"grp\": \"sg\",\n      \"id\": \"43\",\n      \"integrity\": 38,\n      \"kinres\": 0.4,\n      \"mass\": 2,\n      \"maxmass\": 413,\n      \"maxmul\": 1.4,\n      \"minmass\": 83,\n      \"minmul\": 0.4,\n      \"optmass\": 165,\n      \"optmul\": 0.9,\n      \"power\": 1.44,\n      \"rating\": \"D\",\n      \"regen\": 1,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size3_Class2\",\n      \"ukName\": \"Shield Generator\",\n      \"ukDiscript\": \"Forms a continually regenerating protective energy shield around the vessel.\"\n    },\n    {\n      \"brokenregen\": 1.87,\n      \"class\": 3,\n      \"cost\": 56440,\n      \"distdraw\": 0.6,\n      \"edID\": 128064270,\n      \"eddbID\": 1123,\n      \"explres\": 0.5,\n      \"grp\": \"sg\",\n      \"id\": \"42\",\n      \"integrity\": 64,\n      \"kinres\": 0.4,\n      \"mass\": 5,\n      \"maxmass\": 413,\n      \"maxmul\": 1.5,\n      \"minmass\": 83,\n      \"minmul\": 0.5,\n      \"optmass\": 165,\n      \"optmul\": 1,\n      \"power\": 1.8,\n      \"rating\": \"C\",\n      \"regen\": 1,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size3_Class3\",\n      \"ukName\": \"Shield Generator\",\n      \"ukDiscript\": \"Forms a continually regenerating protective energy shield around the vessel.\"\n    },\n    {\n      \"brokenregen\": 1.87,\n      \"class\": 3,\n      \"cost\": 169300,\n      \"distdraw\": 0.6,\n      \"edID\": 128064271,\n      \"eddbID\": 1124,\n      \"explres\": 0.5,\n      \"grp\": \"sg\",\n      \"id\": \"41\",\n      \"integrity\": 90,\n      \"kinres\": 0.4,\n      \"mass\": 8,\n      \"maxmass\": 413,\n      \"maxmul\": 1.6,\n      \"minmass\": 83,\n      \"minmul\": 0.6,\n      \"optmass\": 165,\n      \"optmul\": 1.1,\n      \"power\": 2.16,\n      \"rating\": \"B\",\n      \"regen\": 1,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size3_Class4\",\n      \"ukName\": \"Shield Generator\",\n      \"ukDiscript\": \"Forms a continually regenerating protective energy shield around the vessel.\"\n    },\n    {\n      \"brokenregen\": 1.87,\n      \"class\": 3,\n      \"cost\": 507910,\n      \"distdraw\": 0.6,\n      \"edID\": 128064272,\n      \"eddbID\": 1125,\n      \"explres\": 0.5,\n      \"grp\": \"sg\",\n      \"id\": \"40\",\n      \"integrity\": 77,\n      \"kinres\": 0.4,\n      \"mass\": 5,\n      \"maxmass\": 413,\n      \"maxmul\": 1.7,\n      \"minmass\": 83,\n      \"minmul\": 0.7,\n      \"optmass\": 165,\n      \"optmul\": 1.2,\n      \"power\": 2.52,\n      \"rating\": \"A\",\n      \"regen\": 1,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size3_Class5\",\n      \"ukName\": \"Shield Generator\",\n      \"ukDiscript\": \"Forms a continually regenerating protective energy shield around the vessel.\"\n    },\n    {\n      \"brokenregen\": 2.53,\n      \"class\": 4,\n      \"cost\": 19880,\n      \"distdraw\": 0.6,\n      \"edID\": 128064273,\n      \"eddbID\": 1126,\n      \"explres\": 0.5,\n      \"grp\": \"sg\",\n      \"id\": \"49\",\n      \"integrity\": 64,\n      \"kinres\": 0.4,\n      \"mass\": 10,\n      \"maxmass\": 713,\n      \"maxmul\": 1.3,\n      \"minmass\": 143,\n      \"minmul\": 0.3,\n      \"optmass\": 285,\n      \"optmul\": 0.8,\n      \"power\": 1.32,\n      \"rating\": \"E\",\n      \"regen\": 1,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size4_Class1\",\n      \"ukName\": \"Shield Generator\",\n      \"ukDiscript\": \"Forms a continually regenerating protective energy shield around the vessel.\"\n    },\n    {\n      \"brokenregen\": 2.53,\n      \"class\": 4,\n      \"cost\": 59630,\n      \"distdraw\": 0.6,\n      \"edID\": 128064274,\n      \"eddbID\": 1127,\n      \"explres\": 0.5,\n      \"grp\": \"sg\",\n      \"id\": \"48\",\n      \"integrity\": 48,\n      \"kinres\": 0.4,\n      \"mass\": 4,\n      \"maxmass\": 713,\n      \"maxmul\": 1.4,\n      \"minmass\": 143,\n      \"minmul\": 0.4,\n      \"optmass\": 285,\n      \"optmul\": 0.9,\n      \"power\": 1.76,\n      \"rating\": \"D\",\n      \"regen\": 1,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size4_Class2\",\n      \"ukName\": \"Shield Generator\",\n      \"ukDiscript\": \"Forms a continually regenerating protective energy shield around the vessel.\"\n    },\n    {\n      \"brokenregen\": 2.53,\n      \"class\": 4,\n      \"cost\": 178900,\n      \"distdraw\": 0.6,\n      \"edID\": 128064275,\n      \"eddbID\": 1128,\n      \"explres\": 0.5,\n      \"grp\": \"sg\",\n      \"id\": \"47\",\n      \"integrity\": 80,\n      \"kinres\": 0.4,\n      \"mass\": 10,\n      \"maxmass\": 713,\n      \"maxmul\": 1.5,\n      \"minmass\": 143,\n      \"minmul\": 0.5,\n      \"optmass\": 285,\n      \"optmul\": 1,\n      \"power\": 2.2,\n      \"rating\": \"C\",\n      \"regen\": 1,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size4_Class3\",\n      \"ukName\": \"Shield Generator\",\n      \"ukDiscript\": \"Forms a continually regenerating protective energy shield around the vessel.\"\n    },\n    {\n      \"brokenregen\": 2.53,\n      \"class\": 4,\n      \"cost\": 536690,\n      \"distdraw\": 0.6,\n      \"edID\": 128064276,\n      \"eddbID\": 1129,\n      \"explres\": 0.5,\n      \"grp\": \"sg\",\n      \"id\": \"46\",\n      \"integrity\": 112,\n      \"kinres\": 0.4,\n      \"mass\": 16,\n      \"maxmass\": 713,\n      \"maxmul\": 1.6,\n      \"minmass\": 143,\n      \"minmul\": 0.6,\n      \"optmass\": 285,\n      \"optmul\": 1.1,\n      \"power\": 2.64,\n      \"rating\": \"B\",\n      \"regen\": 1,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size4_Class4\",\n      \"ukName\": \"Shield Generator\",\n      \"ukDiscript\": \"Forms a continually regenerating protective energy shield around the vessel.\"\n    },\n    {\n      \"brokenregen\": 2.53,\n      \"class\": 4,\n      \"cost\": 1610080,\n      \"distdraw\": 0.6,\n      \"edID\": 128064277,\n      \"eddbID\": 1130,\n      \"explres\": 0.5,\n      \"grp\": \"sg\",\n      \"id\": \"45\",\n      \"integrity\": 96,\n      \"kinres\": 0.4,\n      \"mass\": 10,\n      \"maxmass\": 713,\n      \"maxmul\": 1.7,\n      \"minmass\": 143,\n      \"minmul\": 0.7,\n      \"optmass\": 285,\n      \"optmul\": 1.2,\n      \"power\": 3.08,\n      \"rating\": \"A\",\n      \"regen\": 1,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size4_Class5\",\n      \"ukName\": \"Shield Generator\",\n      \"ukDiscript\": \"Forms a continually regenerating protective energy shield around the vessel.\"\n    },\n    {\n      \"brokenregen\": 3.75,\n      \"class\": 5,\n      \"cost\": 63010,\n      \"distdraw\": 0.6,\n      \"edID\": 128064278,\n      \"eddbID\": 1131,\n      \"explres\": 0.5,\n      \"grp\": \"sg\",\n      \"id\": \"4e\",\n      \"integrity\": 77,\n      \"kinres\": 0.4,\n      \"mass\": 20,\n      \"maxmass\": 1013,\n      \"maxmul\": 1.3,\n      \"minmass\": 203,\n      \"minmul\": 0.3,\n      \"optmass\": 405,\n      \"optmul\": 0.8,\n      \"power\": 1.56,\n      \"rating\": \"E\",\n      \"regen\": 1,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size5_Class1\",\n      \"ukName\": \"Shield Generator\",\n      \"ukDiscript\": \"Forms a continually regenerating protective energy shield around the vessel.\"\n    },\n    {\n      \"brokenregen\": 3.75,\n      \"class\": 5,\n      \"cost\": 189040,\n      \"distdraw\": 0.6,\n      \"edID\": 128064279,\n      \"eddbID\": 1132,\n      \"explres\": 0.5,\n      \"grp\": \"sg\",\n      \"id\": \"4d\",\n      \"integrity\": 58,\n      \"kinres\": 0.4,\n      \"mass\": 8,\n      \"maxmass\": 1013,\n      \"maxmul\": 1.4,\n      \"minmass\": 203,\n      \"minmul\": 0.4,\n      \"optmass\": 405,\n      \"optmul\": 0.9,\n      \"power\": 2.08,\n      \"rating\": \"D\",\n      \"regen\": 1,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size5_Class2\",\n      \"ukName\": \"Shield Generator\",\n      \"ukDiscript\": \"Forms a continually regenerating protective energy shield around the vessel.\"\n    },\n    {\n      \"brokenregen\": 3.75,\n      \"class\": 5,\n      \"cost\": 567110,\n      \"distdraw\": 0.6,\n      \"edID\": 128064280,\n      \"eddbID\": 1133,\n      \"explres\": 0.5,\n      \"grp\": \"sg\",\n      \"id\": \"4c\",\n      \"integrity\": 96,\n      \"kinres\": 0.4,\n      \"mass\": 20,\n      \"maxmass\": 1013,\n      \"maxmul\": 1.5,\n      \"minmass\": 203,\n      \"minmul\": 0.5,\n      \"optmass\": 405,\n      \"optmul\": 1,\n      \"power\": 2.6,\n      \"rating\": \"C\",\n      \"regen\": 1,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size5_Class3\",\n      \"ukName\": \"Shield Generator\",\n      \"ukDiscript\": \"Forms a continually regenerating protective energy shield around the vessel.\"\n    },\n    {\n      \"brokenregen\": 3.75,\n      \"class\": 5,\n      \"cost\": 1701320,\n      \"distdraw\": 0.6,\n      \"edID\": 128064281,\n      \"eddbID\": 1134,\n      \"explres\": 0.5,\n      \"grp\": \"sg\",\n      \"id\": \"4b\",\n      \"integrity\": 134,\n      \"kinres\": 0.4,\n      \"mass\": 32,\n      \"maxmass\": 1013,\n      \"maxmul\": 1.6,\n      \"minmass\": 203,\n      \"minmul\": 0.6,\n      \"optmass\": 405,\n      \"optmul\": 1.1,\n      \"power\": 3.12,\n      \"rating\": \"B\",\n      \"regen\": 1,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size5_Class4\",\n      \"ukName\": \"Shield Generator\",\n      \"ukDiscript\": \"Forms a continually regenerating protective energy shield around the vessel.\"\n    },\n    {\n      \"brokenregen\": 3.75,\n      \"class\": 5,\n      \"cost\": 5103950,\n      \"distdraw\": 0.6,\n      \"edID\": 128064282,\n      \"eddbID\": 1135,\n      \"explres\": 0.5,\n      \"grp\": \"sg\",\n      \"id\": \"4a\",\n      \"integrity\": 115,\n      \"kinres\": 0.4,\n      \"mass\": 20,\n      \"maxmass\": 1013,\n      \"maxmul\": 1.7,\n      \"minmass\": 203,\n      \"minmul\": 0.7,\n      \"optmass\": 405,\n      \"optmul\": 1.2,\n      \"power\": 3.64,\n      \"rating\": \"A\",\n      \"regen\": 1,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size5_Class5\",\n      \"ukName\": \"Shield Generator\",\n      \"ukDiscript\": \"Forms a continually regenerating protective energy shield around the vessel.\"\n    },\n    {\n      \"brokenregen\": 5.33,\n      \"class\": 6,\n      \"cost\": 199750,\n      \"distdraw\": 0.6,\n      \"edID\": 128064283,\n      \"eddbID\": 1136,\n      \"explres\": 0.5,\n      \"grp\": \"sg\",\n      \"id\": \"4j\",\n      \"integrity\": 90,\n      \"kinres\": 0.4,\n      \"mass\": 40,\n      \"maxmass\": 1350,\n      \"maxmul\": 1.3,\n      \"minmass\": 270,\n      \"minmul\": 0.3,\n      \"optmass\": 540,\n      \"optmul\": 0.8,\n      \"power\": 1.86,\n      \"rating\": \"E\",\n      \"regen\": 1.3,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size6_Class1\",\n      \"ukName\": \"Shield Generator\",\n      \"ukDiscript\": \"Forms a continually regenerating protective energy shield around the vessel.\"\n    },\n    {\n      \"brokenregen\": 5.33,\n      \"class\": 6,\n      \"cost\": 599240,\n      \"distdraw\": 0.6,\n      \"edID\": 128064284,\n      \"eddbID\": 1137,\n      \"explres\": 0.5,\n      \"grp\": \"sg\",\n      \"id\": \"4i\",\n      \"integrity\": 68,\n      \"kinres\": 0.4,\n      \"mass\": 16,\n      \"maxmass\": 1350,\n      \"maxmul\": 1.4,\n      \"minmass\": 270,\n      \"minmul\": 0.4,\n      \"optmass\": 540,\n      \"optmul\": 0.9,\n      \"power\": 2.48,\n      \"rating\": \"D\",\n      \"regen\": 1.3,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size6_Class2\",\n      \"ukName\": \"Shield Generator\",\n      \"ukDiscript\": \"Forms a continually regenerating protective energy shield around the vessel.\"\n    },\n    {\n      \"brokenregen\": 5.33,\n      \"class\": 6,\n      \"cost\": 1797730,\n      \"distdraw\": 0.6,\n      \"edID\": 128064285,\n      \"eddbID\": 1138,\n      \"explres\": 0.5,\n      \"grp\": \"sg\",\n      \"id\": \"4h\",\n      \"integrity\": 113,\n      \"kinres\": 0.4,\n      \"mass\": 40,\n      \"maxmass\": 1350,\n      \"maxmul\": 1.5,\n      \"minmass\": 270,\n      \"minmul\": 0.5,\n      \"optmass\": 540,\n      \"optmul\": 1,\n      \"power\": 3.1,\n      \"rating\": \"C\",\n      \"regen\": 1.3,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size6_Class3\",\n      \"ukName\": \"Shield Generator\",\n      \"ukDiscript\": \"Forms a continually regenerating protective energy shield around the vessel.\"\n    },\n    {\n      \"brokenregen\": 5.33,\n      \"class\": 6,\n      \"cost\": 5393180,\n      \"distdraw\": 0.6,\n      \"edID\": 128064286,\n      \"eddbID\": 1139,\n      \"explres\": 0.5,\n      \"grp\": \"sg\",\n      \"id\": \"4g\",\n      \"integrity\": 158,\n      \"kinres\": 0.4,\n      \"mass\": 64,\n      \"maxmass\": 1350,\n      \"maxmul\": 1.6,\n      \"minmass\": 270,\n      \"minmul\": 0.6,\n      \"optmass\": 540,\n      \"optmul\": 1.1,\n      \"power\": 3.72,\n      \"rating\": \"B\",\n      \"regen\": 1.3,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size6_Class4\",\n      \"ukName\": \"Shield Generator\",\n      \"ukDiscript\": \"Forms a continually regenerating protective energy shield around the vessel.\"\n    },\n    {\n      \"brokenregen\": 5.33,\n      \"class\": 6,\n      \"cost\": 16179530,\n      \"distdraw\": 0.6,\n      \"edID\": 128064287,\n      \"eddbID\": 1140,\n      \"explres\": 0.5,\n      \"grp\": \"sg\",\n      \"id\": \"4f\",\n      \"integrity\": 136,\n      \"kinres\": 0.4,\n      \"mass\": 40,\n      \"maxmass\": 1350,\n      \"maxmul\": 1.7,\n      \"minmass\": 270,\n      \"minmul\": 0.7,\n      \"optmass\": 540,\n      \"optmul\": 1.2,\n      \"power\": 4.34,\n      \"rating\": \"A\",\n      \"regen\": 1.3,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size6_Class5\",\n      \"ukName\": \"Shield Generator\",\n      \"ukDiscript\": \"Forms a continually regenerating protective energy shield around the vessel.\"\n    },\n    {\n      \"brokenregen\": 7.33,\n      \"class\": 7,\n      \"cost\": 633200,\n      \"distdraw\": 0.6,\n      \"edID\": 128064288,\n      \"eddbID\": 1141,\n      \"explres\": 0.5,\n      \"grp\": \"sg\",\n      \"id\": \"4o\",\n      \"integrity\": 105,\n      \"kinres\": 0.4,\n      \"mass\": 80,\n      \"maxmass\": 2650,\n      \"maxmul\": 1.3,\n      \"minmass\": 530,\n      \"minmul\": 0.3,\n      \"optmass\": 1060,\n      \"optmul\": 0.8,\n      \"power\": 2.1,\n      \"rating\": \"E\",\n      \"regen\": 1.8,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size7_Class1\",\n      \"ukName\": \"Shield Generator\",\n      \"ukDiscript\": \"Forms a continually regenerating protective energy shield around the vessel.\"\n    },\n    {\n      \"brokenregen\": 7.33,\n      \"class\": 7,\n      \"cost\": 1899600,\n      \"distdraw\": 0.6,\n      \"edID\": 128064289,\n      \"eddbID\": 1142,\n      \"explres\": 0.5,\n      \"grp\": \"sg\",\n      \"id\": \"4n\",\n      \"integrity\": 79,\n      \"kinres\": 0.4,\n      \"mass\": 32,\n      \"maxmass\": 2650,\n      \"maxmul\": 1.4,\n      \"minmass\": 530,\n      \"minmul\": 0.4,\n      \"optmass\": 1060,\n      \"optmul\": 0.9,\n      \"power\": 2.8,\n      \"rating\": \"D\",\n      \"regen\": 1.8,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size7_Class2\",\n      \"ukName\": \"Shield Generator\",\n      \"ukDiscript\": \"Forms a continually regenerating protective energy shield around the vessel.\"\n    },\n    {\n      \"brokenregen\": 7.33,\n      \"class\": 7,\n      \"cost\": 5698790,\n      \"distdraw\": 0.6,\n      \"edID\": 128064290,\n      \"eddbID\": 1143,\n      \"explres\": 0.5,\n      \"grp\": \"sg\",\n      \"id\": \"4m\",\n      \"integrity\": 131,\n      \"kinres\": 0.4,\n      \"mass\": 80,\n      \"maxmass\": 2650,\n      \"maxmul\": 1.5,\n      \"minmass\": 530,\n      \"minmul\": 0.5,\n      \"optmass\": 1060,\n      \"optmul\": 1,\n      \"power\": 3.5,\n      \"rating\": \"C\",\n      \"regen\": 1.8,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size7_Class3\",\n      \"ukName\": \"Shield Generator\",\n      \"ukDiscript\": \"Forms a continually regenerating protective energy shield around the vessel.\"\n    },\n    {\n      \"brokenregen\": 7.33,\n      \"class\": 7,\n      \"cost\": 17096370,\n      \"distdraw\": 0.6,\n      \"edID\": 128064291,\n      \"eddbID\": 1144,\n      \"explres\": 0.5,\n      \"grp\": \"sg\",\n      \"id\": \"4l\",\n      \"integrity\": 183,\n      \"kinres\": 0.4,\n      \"mass\": 128,\n      \"maxmass\": 2650,\n      \"maxmul\": 1.6,\n      \"minmass\": 530,\n      \"minmul\": 0.6,\n      \"optmass\": 1060,\n      \"optmul\": 1.1,\n      \"power\": 4.2,\n      \"rating\": \"B\",\n      \"regen\": 1.8,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size7_Class4\",\n      \"ukName\": \"Shield Generator\",\n      \"ukDiscript\": \"Forms a continually regenerating protective energy shield around the vessel.\"\n    },\n    {\n      \"brokenregen\": 7.33,\n      \"class\": 7,\n      \"cost\": 51289110,\n      \"distdraw\": 0.6,\n      \"edID\": 128064292,\n      \"eddbID\": 1145,\n      \"explres\": 0.5,\n      \"grp\": \"sg\",\n      \"id\": \"4k\",\n      \"integrity\": 157,\n      \"kinres\": 0.4,\n      \"mass\": 80,\n      \"maxmass\": 2650,\n      \"maxmul\": 1.7,\n      \"minmass\": 530,\n      \"minmul\": 0.7,\n      \"optmass\": 1060,\n      \"optmul\": 1.2,\n      \"power\": 4.9,\n      \"rating\": \"A\",\n      \"regen\": 1.8,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size7_Class5\",\n      \"ukName\": \"Shield Generator\",\n      \"ukDiscript\": \"Forms a continually regenerating protective energy shield around the vessel.\"\n    },\n    {\n      \"brokenregen\": 9.6,\n      \"class\": 8,\n      \"cost\": 2007240,\n      \"distdraw\": 0.6,\n      \"edID\": 128064293,\n      \"eddbID\": 1146,\n      \"explres\": 0.5,\n      \"grp\": \"sg\",\n      \"id\": \"4t\",\n      \"integrity\": 120,\n      \"kinres\": 0.4,\n      \"mass\": 160,\n      \"maxmass\": 4500,\n      \"maxmul\": 1.3,\n      \"minmass\": 900,\n      \"minmul\": 0.3,\n      \"optmass\": 1800,\n      \"optmul\": 0.8,\n      \"power\": 2.4,\n      \"rating\": \"E\",\n      \"regen\": 2.4,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size8_Class1\",\n      \"ukName\": \"Shield Generator\",\n      \"ukDiscript\": \"Forms a continually regenerating protective energy shield around the vessel.\"\n    },\n    {\n      \"brokenregen\": 9.6,\n      \"class\": 8,\n      \"cost\": 6021720,\n      \"distdraw\": 0.6,\n      \"edID\": 128064294,\n      \"eddbID\": 1147,\n      \"explres\": 0.5,\n      \"grp\": \"sg\",\n      \"id\": \"4s\",\n      \"integrity\": 90,\n      \"kinres\": 0.4,\n      \"mass\": 64,\n      \"maxmass\": 4500,\n      \"maxmul\": 1.4,\n      \"minmass\": 900,\n      \"minmul\": 0.4,\n      \"optmass\": 1800,\n      \"optmul\": 0.9,\n      \"power\": 3.2,\n      \"rating\": \"D\",\n      \"regen\": 2.4,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size8_Class2\",\n      \"ukName\": \"Shield Generator\",\n      \"ukDiscript\": \"Forms a continually regenerating protective energy shield around the vessel.\"\n    },\n    {\n      \"brokenregen\": 9.6,\n      \"class\": 8,\n      \"cost\": 18065170,\n      \"distdraw\": 0.6,\n      \"edID\": 128064295,\n      \"eddbID\": 1148,\n      \"explres\": 0.5,\n      \"grp\": \"sg\",\n      \"id\": \"4r\",\n      \"integrity\": 150,\n      \"kinres\": 0.4,\n      \"mass\": 160,\n      \"maxmass\": 4500,\n      \"maxmul\": 1.5,\n      \"minmass\": 900,\n      \"minmul\": 0.5,\n      \"optmass\": 1800,\n      \"optmul\": 1,\n      \"power\": 4,\n      \"rating\": \"C\",\n      \"regen\": 2.4,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size8_Class3\",\n      \"ukName\": \"Shield Generator\",\n      \"ukDiscript\": \"Forms a continually regenerating protective energy shield around the vessel.\"\n    },\n    {\n      \"brokenregen\": 9.6,\n      \"class\": 8,\n      \"cost\": 54195500,\n      \"distdraw\": 0.6,\n      \"edID\": 128064296,\n      \"eddbID\": 1149,\n      \"explres\": 0.5,\n      \"grp\": \"sg\",\n      \"id\": \"4q\",\n      \"integrity\": 210,\n      \"kinres\": 0.4,\n      \"mass\": 256,\n      \"maxmass\": 4500,\n      \"maxmul\": 1.6,\n      \"minmass\": 900,\n      \"minmul\": 0.6,\n      \"optmass\": 1800,\n      \"optmul\": 1.1,\n      \"power\": 4.8,\n      \"rating\": \"B\",\n      \"regen\": 2.4,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size8_Class4\",\n      \"ukName\": \"Shield Generator\",\n      \"ukDiscript\": \"Forms a continually regenerating protective energy shield around the vessel.\"\n    },\n    {\n      \"brokenregen\": 9.6,\n      \"class\": 8,\n      \"cost\": 162586490,\n      \"distdraw\": 0.6,\n      \"edID\": 128064297,\n      \"eddbID\": 1150,\n      \"explres\": 0.5,\n      \"grp\": \"sg\",\n      \"id\": \"4p\",\n      \"integrity\": 180,\n      \"kinres\": 0.4,\n      \"mass\": 160,\n      \"maxmass\": 4500,\n      \"maxmul\": 1.7,\n      \"minmass\": 900,\n      \"minmul\": 0.7,\n      \"optmass\": 1800,\n      \"optmul\": 1.2,\n      \"power\": 5.6,\n      \"rating\": \"A\",\n      \"regen\": 2.4,\n      \"thermres\": -0.2,\n      \"symbol\": \"Int_ShieldGenerator_Size8_Class5\",\n      \"ukName\": \"Shield Generator\",\n      \"ukDiscript\": \"Forms a continually regenerating protective energy shield around the vessel.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/internal/supercruise_assist.json",
    "content": "{\n  \"sua\": [\n    {\n      \"class\": 1,\n      \"cost\": 9121,\n      \"edID\": 128932273,\n      \"eddbID\": 1538,\n      \"grp\": \"sua\",\n      \"id\": \"3w\",\n      \"mass\": 0,\n      \"power\": 0.3,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_SupercruiseAssist\",\n      \"name\": \"Supercruise Assist\",\n      \"ukName\": \"Supercruise Assist\",\n      \"ukDiscript\": \"Provides additional supercruise guidance to a predetermined destination.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/internal/surface_scanner.json",
    "content": "{\n  \"ss\": [\n    {\n      \"class\": 1,\n      \"cost\": 250000,\n      \"edID\": 128666634,\n      \"eddbID\": 1245,\n      \"grp\": \"ss\",\n      \"id\": \"2i\",\n      \"mass\": 0,\n      \"name\": \"Detailed Surface Scanner\",\n      \"power\": 0,\n      \"proberadius\": 0.2,\n      \"rating\": \"I\",\n      \"symbol\": \"Int_DetailedSurfaceScanner_Tiny\",\n      \"ukName\": \"Surface Scanner\",\n      \"ukDiscript\": \"Advanced stellar body scanner used during exploration.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/standard/frame_shift_drive.json",
    "content": "{\n  \"fsd\": [\n    {\n      \"class\": 8,\n      \"cost\": 2007242,\n      \"edID\": 128064133,\n      \"eddbID\": 991,\n      \"fuelmul\": 0.011,\n      \"fuelpower\": 2.9,\n      \"grp\": \"fsd\",\n      \"id\": \"Fy\",\n      \"integrity\": 135,\n      \"mass\": 160,\n      \"maxfuel\": 0,\n      \"optmass\": 0,\n      \"power\": 0.56,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_Hyperdrive_Size8_Class1\",\n      \"ukName\": \"FSD\",\n      \"ukDiscript\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\"\n    },\n    {\n      \"class\": 8,\n      \"cost\": 6021723,\n      \"edID\": 128064134,\n      \"eddbID\": 992,\n      \"fuelmul\": 0.01,\n      \"fuelpower\": 2.9,\n      \"grp\": \"fsd\",\n      \"id\": \"Fx\",\n      \"integrity\": 120,\n      \"mass\": 64,\n      \"maxfuel\": 0,\n      \"optmass\": 0,\n      \"power\": 0.63,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_Hyperdrive_Size8_Class2\",\n      \"ukName\": \"FSD\",\n      \"ukDiscript\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\"\n    },\n    {\n      \"class\": 8,\n      \"cost\": 18065166,\n      \"edID\": 128064135,\n      \"eddbID\": 993,\n      \"fuelmul\": 0.008,\n      \"fuelpower\": 2.9,\n      \"grp\": \"fsd\",\n      \"id\": \"Fw\",\n      \"integrity\": 150,\n      \"mass\": 160,\n      \"maxfuel\": 0,\n      \"optmass\": 0,\n      \"power\": 0.7,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_Hyperdrive_Size8_Class3\",\n      \"ukName\": \"FSD\",\n      \"ukDiscript\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\"\n    },\n    {\n      \"class\": 8,\n      \"cost\": 54195496,\n      \"edID\": 128064136,\n      \"eddbID\": 994,\n      \"fuelmul\": 0.01,\n      \"fuelpower\": 2.9,\n      \"grp\": \"fsd\",\n      \"id\": \"Fv\",\n      \"integrity\": 225,\n      \"mass\": 256,\n      \"maxfuel\": 0,\n      \"optmass\": 0,\n      \"power\": 0.88,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_Hyperdrive_Size8_Class4\",\n      \"ukName\": \"FSD\",\n      \"ukDiscript\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\"\n    },\n    {\n      \"class\": 8,\n      \"cost\": 162586488,\n      \"edID\": 128064137,\n      \"eddbID\": 995,\n      \"fuelmul\": 0.012,\n      \"fuelpower\": 2.9,\n      \"grp\": \"fsd\",\n      \"id\": \"Fu\",\n      \"integrity\": 188,\n      \"mass\": 160,\n      \"maxfuel\": 0,\n      \"optmass\": 0,\n      \"power\": 1.05,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_Hyperdrive_Size8_Class5\",\n      \"ukName\": \"FSD\",\n      \"ukDiscript\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 633200,\n      \"edID\": 128064128,\n      \"eddbID\": 986,\n      \"fuelmul\": 0.011,\n      \"fuelpower\": 2.75,\n      \"grp\": \"fsd\",\n      \"id\": \"Ft\",\n      \"integrity\": 118,\n      \"mass\": 80,\n      \"maxfuel\": 8.5,\n      \"optmass\": 1440,\n      \"power\": 0.48,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_Hyperdrive_Size7_Class1\",\n      \"ukName\": \"FSD\",\n      \"ukDiscript\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 1899600,\n      \"edID\": 128064129,\n      \"eddbID\": 987,\n      \"fuelmul\": 0.01,\n      \"fuelpower\": 2.75,\n      \"grp\": \"fsd\",\n      \"id\": \"Fs\",\n      \"integrity\": 105,\n      \"mass\": 32,\n      \"maxfuel\": 8.5,\n      \"optmass\": 1620,\n      \"power\": 0.54,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_Hyperdrive_Size7_Class2\",\n      \"ukName\": \"FSD\",\n      \"ukDiscript\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 5698790,\n      \"edID\": 128064130,\n      \"eddbID\": 988,\n      \"fuelmul\": 0.008,\n      \"fuelpower\": 2.75,\n      \"grp\": \"fsd\",\n      \"id\": \"Fr\",\n      \"integrity\": 131,\n      \"mass\": 80,\n      \"maxfuel\": 8.5,\n      \"optmass\": 1800,\n      \"power\": 0.6,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_Hyperdrive_Size7_Class3\",\n      \"ukName\": \"FSD\",\n      \"ukDiscript\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 17096370,\n      \"edID\": 128064131,\n      \"eddbID\": 989,\n      \"fuelmul\": 0.01,\n      \"fuelpower\": 2.75,\n      \"grp\": \"fsd\",\n      \"id\": \"Fq\",\n      \"integrity\": 197,\n      \"mass\": 128,\n      \"maxfuel\": 10.6,\n      \"optmass\": 2250,\n      \"power\": 0.75,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_Hyperdrive_Size7_Class4\",\n      \"ukName\": \"FSD\",\n      \"ukDiscript\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 51289110,\n      \"edID\": 128064132,\n      \"eddbID\": 990,\n      \"fuelmul\": 0.012,\n      \"fuelpower\": 2.75,\n      \"grp\": \"fsd\",\n      \"id\": \"Fp\",\n      \"integrity\": 164,\n      \"mass\": 80,\n      \"maxfuel\": 12.8,\n      \"optmass\": 2700,\n      \"power\": 0.9,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_Hyperdrive_Size7_Class5\",\n      \"ukName\": \"FSD\",\n      \"ukDiscript\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\"\n    },\n    {\n      \"class\": 6,\n      \"cost\": 199750,\n      \"edID\": 128064123,\n      \"eddbID\": 981,\n      \"fuelmul\": 0.011,\n      \"fuelpower\": 2.6,\n      \"grp\": \"fsd\",\n      \"id\": \"Fo\",\n      \"integrity\": 102,\n      \"mass\": 40,\n      \"maxfuel\": 5.3,\n      \"optmass\": 960,\n      \"power\": 0.4,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_Hyperdrive_Size6_Class1\",\n      \"ukName\": \"FSD\",\n      \"ukDiscript\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\"\n    },\n    {\n      \"class\": 6,\n      \"cost\": 599240,\n      \"edID\": 128064124,\n      \"eddbID\": 982,\n      \"fuelmul\": 0.01,\n      \"fuelpower\": 2.6,\n      \"grp\": \"fsd\",\n      \"id\": \"Fn\",\n      \"integrity\": 90,\n      \"mass\": 16,\n      \"maxfuel\": 5.3,\n      \"optmass\": 1080,\n      \"power\": 0.45,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_Hyperdrive_Size6_Class2\",\n      \"ukName\": \"FSD\",\n      \"ukDiscript\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\"\n    },\n    {\n      \"class\": 6,\n      \"cost\": 1797730,\n      \"edID\": 128064125,\n      \"eddbID\": 983,\n      \"fuelmul\": 0.008,\n      \"fuelpower\": 2.6,\n      \"grp\": \"fsd\",\n      \"id\": \"Fm\",\n      \"integrity\": 113,\n      \"mass\": 40,\n      \"maxfuel\": 5.3,\n      \"optmass\": 1200,\n      \"power\": 0.5,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_Hyperdrive_Size6_Class3\",\n      \"ukName\": \"FSD\",\n      \"ukDiscript\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\"\n    },\n    {\n      \"class\": 6,\n      \"cost\": 5393180,\n      \"edID\": 128064126,\n      \"eddbID\": 984,\n      \"fuelmul\": 0.01,\n      \"fuelpower\": 2.6,\n      \"grp\": \"fsd\",\n      \"id\": \"Fl\",\n      \"integrity\": 170,\n      \"mass\": 64,\n      \"maxfuel\": 6.6,\n      \"optmass\": 1500,\n      \"power\": 0.63,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_Hyperdrive_Size6_Class4\",\n      \"ukName\": \"FSD\",\n      \"ukDiscript\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\"\n    },\n    {\n      \"class\": 6,\n      \"cost\": 16179530,\n      \"edID\": 128064127,\n      \"eddbID\": 985,\n      \"fuelmul\": 0.012,\n      \"fuelpower\": 2.6,\n      \"grp\": \"fsd\",\n      \"id\": \"Fk\",\n      \"integrity\": 141,\n      \"mass\": 40,\n      \"maxfuel\": 8,\n      \"optmass\": 1800,\n      \"power\": 0.75,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_Hyperdrive_Size6_Class5\",\n      \"ukName\": \"FSD\",\n      \"ukDiscript\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 63010,\n      \"edID\": 128064118,\n      \"eddbID\": 976,\n      \"fuelmul\": 0.011,\n      \"fuelpower\": 2.45,\n      \"grp\": \"fsd\",\n      \"id\": \"Fj\",\n      \"integrity\": 86,\n      \"mass\": 20,\n      \"maxfuel\": 3.3,\n      \"optmass\": 560,\n      \"power\": 0.32,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_Hyperdrive_Size5_Class1\",\n      \"ukName\": \"FSD\",\n      \"ukDiscript\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 189040,\n      \"edID\": 128064119,\n      \"eddbID\": 977,\n      \"fuelmul\": 0.01,\n      \"fuelpower\": 2.45,\n      \"grp\": \"fsd\",\n      \"id\": \"Fi\",\n      \"integrity\": 77,\n      \"mass\": 8,\n      \"maxfuel\": 3.3,\n      \"optmass\": 630,\n      \"power\": 0.36,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_Hyperdrive_Size5_Class2\",\n      \"ukName\": \"FSD\",\n      \"ukDiscript\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 567110,\n      \"edID\": 128064120,\n      \"eddbID\": 978,\n      \"fuelmul\": 0.008,\n      \"fuelpower\": 2.45,\n      \"grp\": \"fsd\",\n      \"id\": \"Fh\",\n      \"integrity\": 96,\n      \"mass\": 20,\n      \"maxfuel\": 3.3,\n      \"optmass\": 700,\n      \"power\": 0.4,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_Hyperdrive_Size5_Class3\",\n      \"ukName\": \"FSD\",\n      \"ukDiscript\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 1701320,\n      \"edID\": 128064121,\n      \"eddbID\": 979,\n      \"fuelmul\": 0.01,\n      \"fuelpower\": 2.45,\n      \"grp\": \"fsd\",\n      \"id\": \"Fg\",\n      \"integrity\": 144,\n      \"mass\": 32,\n      \"maxfuel\": 4.1,\n      \"optmass\": 875,\n      \"power\": 0.5,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_Hyperdrive_Size5_Class4\",\n      \"ukName\": \"FSD\",\n      \"ukDiscript\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 5103950,\n      \"edID\": 128064122,\n      \"eddbID\": 980,\n      \"fuelmul\": 0.012,\n      \"fuelpower\": 2.45,\n      \"grp\": \"fsd\",\n      \"id\": \"Ff\",\n      \"integrity\": 120,\n      \"mass\": 20,\n      \"maxfuel\": 5,\n      \"optmass\": 1050,\n      \"power\": 0.6,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_Hyperdrive_Size5_Class5\",\n      \"ukName\": \"FSD\",\n      \"ukDiscript\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\"\n    },\n    {\n      \"class\": 4,\n      \"cost\": 19880,\n      \"edID\": 128064113,\n      \"eddbID\": 971,\n      \"fuelmul\": 0.011,\n      \"fuelpower\": 2.3,\n      \"grp\": \"fsd\",\n      \"id\": \"Fe\",\n      \"integrity\": 72,\n      \"mass\": 10,\n      \"maxfuel\": 2,\n      \"optmass\": 280,\n      \"power\": 0.24,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_Hyperdrive_Size4_Class1\",\n      \"ukName\": \"FSD\",\n      \"ukDiscript\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\"\n    },\n    {\n      \"class\": 4,\n      \"cost\": 59630,\n      \"edID\": 128064114,\n      \"eddbID\": 972,\n      \"fuelmul\": 0.01,\n      \"fuelpower\": 2.3,\n      \"grp\": \"fsd\",\n      \"id\": \"Fd\",\n      \"integrity\": 64,\n      \"mass\": 4,\n      \"maxfuel\": 2,\n      \"optmass\": 315,\n      \"power\": 0.27,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_Hyperdrive_Size4_Class2\",\n      \"ukName\": \"FSD\",\n      \"ukDiscript\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\"\n    },\n    {\n      \"class\": 4,\n      \"cost\": 178900,\n      \"edID\": 128064115,\n      \"eddbID\": 973,\n      \"fuelmul\": 0.008,\n      \"fuelpower\": 2.3,\n      \"grp\": \"fsd\",\n      \"id\": \"Fc\",\n      \"integrity\": 80,\n      \"mass\": 10,\n      \"maxfuel\": 2,\n      \"optmass\": 350,\n      \"power\": 0.3,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_Hyperdrive_Size4_Class3\",\n      \"ukName\": \"FSD\",\n      \"ukDiscript\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\"\n    },\n    {\n      \"class\": 4,\n      \"cost\": 536690,\n      \"edID\": 128064116,\n      \"eddbID\": 974,\n      \"fuelmul\": 0.01,\n      \"fuelpower\": 2.3,\n      \"grp\": \"fsd\",\n      \"id\": \"Fb\",\n      \"integrity\": 120,\n      \"mass\": 16,\n      \"maxfuel\": 2.5,\n      \"optmass\": 437.5,\n      \"power\": 0.38,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_Hyperdrive_Size4_Class4\",\n      \"ukName\": \"FSD\",\n      \"ukDiscript\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\"\n    },\n    {\n      \"class\": 4,\n      \"cost\": 1610080,\n      \"edID\": 128064117,\n      \"eddbID\": 975,\n      \"fuelmul\": 0.012,\n      \"fuelpower\": 2.3,\n      \"grp\": \"fsd\",\n      \"id\": \"Fa\",\n      \"integrity\": 100,\n      \"mass\": 10,\n      \"maxfuel\": 3,\n      \"optmass\": 525,\n      \"power\": 0.45,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_Hyperdrive_Size4_Class5\",\n      \"ukName\": \"FSD\",\n      \"ukDiscript\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 6270,\n      \"edID\": 128064108,\n      \"eddbID\": 966,\n      \"fuelmul\": 0.011,\n      \"fuelpower\": 2.15,\n      \"grp\": \"fsd\",\n      \"id\": \"F9\",\n      \"integrity\": 58,\n      \"mass\": 5,\n      \"maxfuel\": 1.2,\n      \"optmass\": 80,\n      \"power\": 0.24,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_Hyperdrive_Size3_Class1\",\n      \"ukName\": \"FSD\",\n      \"ukDiscript\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 18810,\n      \"edID\": 128064109,\n      \"eddbID\": 967,\n      \"fuelmul\": 0.01,\n      \"fuelpower\": 2.15,\n      \"grp\": \"fsd\",\n      \"id\": \"F8\",\n      \"integrity\": 51,\n      \"mass\": 2,\n      \"maxfuel\": 1.2,\n      \"optmass\": 90,\n      \"power\": 0.27,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_Hyperdrive_Size3_Class2\",\n      \"ukName\": \"FSD\",\n      \"ukDiscript\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 56440,\n      \"edID\": 128064110,\n      \"eddbID\": 968,\n      \"fuelmul\": 0.008,\n      \"fuelpower\": 2.15,\n      \"grp\": \"fsd\",\n      \"id\": \"F7\",\n      \"integrity\": 64,\n      \"mass\": 5,\n      \"maxfuel\": 1.2,\n      \"optmass\": 100,\n      \"power\": 0.3,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_Hyperdrive_Size3_Class3\",\n      \"ukName\": \"FSD\",\n      \"ukDiscript\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 169300,\n      \"edID\": 128064111,\n      \"eddbID\": 969,\n      \"fuelmul\": 0.01,\n      \"fuelpower\": 2.15,\n      \"grp\": \"fsd\",\n      \"id\": \"F6\",\n      \"integrity\": 96,\n      \"mass\": 8,\n      \"maxfuel\": 1.5,\n      \"optmass\": 125,\n      \"power\": 0.38,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_Hyperdrive_Size3_Class4\",\n      \"ukName\": \"FSD\",\n      \"ukDiscript\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 507910,\n      \"edID\": 128064112,\n      \"eddbID\": 970,\n      \"fuelmul\": 0.012,\n      \"fuelpower\": 2.15,\n      \"grp\": \"fsd\",\n      \"id\": \"F5\",\n      \"integrity\": 80,\n      \"mass\": 5,\n      \"maxfuel\": 1.8,\n      \"optmass\": 150,\n      \"power\": 0.45,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_Hyperdrive_Size3_Class5\",\n      \"ukName\": \"FSD\",\n      \"ukDiscript\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\"\n    },\n    {\n      \"class\": 2,\n      \"cost\": 1980,\n      \"edID\": 128064103,\n      \"eddbID\": 961,\n      \"fuelmul\": 0.011,\n      \"fuelpower\": 2,\n      \"grp\": \"fsd\",\n      \"id\": \"F4\",\n      \"integrity\": 46,\n      \"mass\": 2.5,\n      \"maxfuel\": 0.6,\n      \"optmass\": 48,\n      \"power\": 0.16,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_Hyperdrive_Size2_Class1\",\n      \"ukName\": \"FSD\",\n      \"ukDiscript\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\"\n    },\n    {\n      \"class\": 2,\n      \"cost\": 5930,\n      \"edID\": 128064104,\n      \"eddbID\": 962,\n      \"fuelmul\": 0.01,\n      \"fuelpower\": 2,\n      \"grp\": \"fsd\",\n      \"id\": \"F3\",\n      \"integrity\": 41,\n      \"mass\": 1,\n      \"maxfuel\": 0.6,\n      \"optmass\": 54,\n      \"power\": 0.18,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_Hyperdrive_Size2_Class2\",\n      \"ukName\": \"FSD\",\n      \"ukDiscript\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\"\n    },\n    {\n      \"class\": 2,\n      \"cost\": 17800,\n      \"edID\": 128064105,\n      \"eddbID\": 963,\n      \"fuelmul\": 0.008,\n      \"fuelpower\": 2,\n      \"grp\": \"fsd\",\n      \"id\": \"F2\",\n      \"integrity\": 51,\n      \"mass\": 2.5,\n      \"maxfuel\": 0.6,\n      \"optmass\": 60,\n      \"power\": 0.2,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_Hyperdrive_Size2_Class3\",\n      \"ukName\": \"FSD\",\n      \"ukDiscript\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\"\n    },\n    {\n      \"class\": 2,\n      \"cost\": 53410,\n      \"edID\": 128064106,\n      \"eddbID\": 964,\n      \"fuelmul\": 0.01,\n      \"fuelpower\": 2,\n      \"grp\": \"fsd\",\n      \"id\": \"F1\",\n      \"integrity\": 77,\n      \"mass\": 4,\n      \"maxfuel\": 0.8,\n      \"optmass\": 75,\n      \"power\": 0.25,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_Hyperdrive_Size2_Class4\",\n      \"ukName\": \"FSD\",\n      \"ukDiscript\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\"\n    },\n    {\n      \"class\": 2,\n      \"cost\": 160220,\n      \"edID\": 128064107,\n      \"eddbID\": 965,\n      \"fuelmul\": 0.012,\n      \"fuelpower\": 2,\n      \"grp\": \"fsd\",\n      \"id\": \"F0\",\n      \"integrity\": 64,\n      \"mass\": 2.5,\n      \"maxfuel\": 0.9,\n      \"optmass\": 90,\n      \"power\": 0.3,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_Hyperdrive_Size2_Class5\",\n      \"ukName\": \"FSD\",\n      \"ukDiscript\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/standard/fuel_tank.json",
    "content": "{\n  \"ft\": [\n    {\n      \"class\": 1,\n      \"cost\": 1000,\n      \"edID\": 128064346,\n      \"eddbID\": 1199,\n      \"fuel\": 2,\n      \"mass\": 0,\n      \"grp\": \"ft\",\n      \"id\": \"f1\",\n      \"rating\": \"C\",\n      \"symbol\": \"Int_FuelTank_Size1_Class3\",\n      \"ukName\": \"Fuel Tank\",\n      \"ukDiscript\": \"Storage container for fuel used by ship's power plant.\"\n    },\n    {\n      \"class\": 2,\n      \"cost\": 3750,\n      \"edID\": 128064347,\n      \"eddbID\": 1200,\n      \"fuel\": 4,\n      \"mass\": 0,\n      \"grp\": \"ft\",\n      \"id\": \"f2\",\n      \"rating\": \"C\",\n      \"symbol\": \"Int_FuelTank_Size2_Class3\",\n      \"ukName\": \"Fuel Tank\",\n      \"ukDiscript\": \"Storage container for fuel used by ship's power plant.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 7060,\n      \"edID\": 128064348,\n      \"eddbID\": 1201,\n      \"fuel\": 8,\n      \"mass\": 0,\n      \"grp\": \"ft\",\n      \"id\": \"f3\",\n      \"rating\": \"C\",\n      \"symbol\": \"Int_FuelTank_Size3_Class3\",\n      \"ukName\": \"Fuel Tank\",\n      \"ukDiscript\": \"Storage container for fuel used by ship's power plant.\"\n    },\n    {\n      \"class\": 4,\n      \"cost\": 24730,\n      \"edID\": 128064349,\n      \"eddbID\": 1202,\n      \"fuel\": 16,\n      \"mass\": 0,\n      \"grp\": \"ft\",\n      \"id\": \"f4\",\n      \"rating\": \"C\",\n      \"symbol\": \"Int_FuelTank_Size4_Class3\",\n      \"ukName\": \"Fuel Tank\",\n      \"ukDiscript\": \"Storage container for fuel used by ship's power plant.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 97750,\n      \"edID\": 128064350,\n      \"eddbID\": 1203,\n      \"fuel\": 32,\n      \"mass\": 0,\n      \"grp\": \"ft\",\n      \"id\": \"f5\",\n      \"rating\": \"C\",\n      \"symbol\": \"Int_FuelTank_Size5_Class3\",\n      \"ukName\": \"Fuel Tank\",\n      \"ukDiscript\": \"Storage container for fuel used by ship's power plant.\"\n    },\n    {\n      \"class\": 6,\n      \"cost\": 341580,\n      \"edID\": 128064351,\n      \"eddbID\": 1204,\n      \"fuel\": 64,\n      \"mass\": 0,\n      \"grp\": \"ft\",\n      \"id\": \"f6\",\n      \"rating\": \"C\",\n      \"symbol\": \"Int_FuelTank_Size6_Class3\",\n      \"ukName\": \"Fuel Tank\",\n      \"ukDiscript\": \"Storage container for fuel used by ship's power plant.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 1780910,\n      \"edID\": 128064352,\n      \"eddbID\": 1205,\n      \"fuel\": 128,\n      \"mass\": 0,\n      \"grp\": \"ft\",\n      \"id\": \"f7\",\n      \"rating\": \"C\",\n      \"symbol\": \"Int_FuelTank_Size7_Class3\",\n      \"ukName\": \"Fuel Tank\",\n      \"ukDiscript\": \"Storage container for fuel used by ship's power plant.\"\n    },\n    {\n      \"class\": 8,\n      \"cost\": 5428431,\n      \"edID\": 128064353,\n      \"eddbID\": 1206,\n      \"fuel\": 256,\n      \"mass\": 0,\n      \"grp\": \"ft\",\n      \"id\": \"f8\",\n      \"rating\": \"C\",\n      \"symbol\": \"Int_FuelTank_Size8_Class3\",\n      \"ukName\": \"Fuel Tank\",\n      \"ukDiscript\": \"Storage container for fuel used by ship's power plant.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/standard/life_support.json",
    "content": "{\n  \"ls\": [\n    {\n      \"boot\": 1,\n      \"class\": 8,\n      \"cost\": 697590,\n      \"edID\": 128064173,\n      \"eddbID\": 1031,\n      \"grp\": \"ls\",\n      \"id\": \"lD\",\n      \"integrity\": 120,\n      \"mass\": 160,\n      \"power\": 0.8,\n      \"rating\": \"E\",\n      \"time\": 300,\n      \"symbol\": \"Int_LifeSupport_Size8_Class1\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 8,\n      \"cost\": 1743970,\n      \"edID\": 128064174,\n      \"eddbID\": 1032,\n      \"grp\": \"ls\",\n      \"id\": \"lC\",\n      \"integrity\": 135,\n      \"mass\": 64,\n      \"power\": 0.9,\n      \"rating\": \"D\",\n      \"time\": 450,\n      \"symbol\": \"Int_LifeSupport_Size8_Class2\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 8,\n      \"cost\": 4359900,\n      \"edID\": 128064175,\n      \"eddbID\": 1033,\n      \"grp\": \"ls\",\n      \"id\": \"lB\",\n      \"integrity\": 150,\n      \"mass\": 160,\n      \"power\": 1,\n      \"rating\": \"C\",\n      \"time\": 600,\n      \"symbol\": \"Int_LifeSupport_Size8_Class3\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 8,\n      \"cost\": 10899757,\n      \"edID\": 128064176,\n      \"eddbID\": 1034,\n      \"grp\": \"ls\",\n      \"id\": \"lA\",\n      \"integrity\": 165,\n      \"mass\": 256,\n      \"power\": 1.1,\n      \"rating\": \"B\",\n      \"time\": 900,\n      \"symbol\": \"Int_LifeSupport_Size8_Class4\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 8,\n      \"cost\": 27249400,\n      \"edID\": 128064177,\n      \"eddbID\": 1035,\n      \"grp\": \"ls\",\n      \"id\": \"lz\",\n      \"integrity\": 180,\n      \"mass\": 160,\n      \"power\": 1.2,\n      \"rating\": \"A\",\n      \"time\": 1500,\n      \"symbol\": \"Int_LifeSupport_Size8_Class5\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 7,\n      \"cost\": 249140,\n      \"edID\": 128064168,\n      \"eddbID\": 1026,\n      \"grp\": \"ls\",\n      \"id\": \"ly\",\n      \"integrity\": 105,\n      \"mass\": 80,\n      \"power\": 0.72,\n      \"rating\": \"E\",\n      \"time\": 300,\n      \"symbol\": \"Int_LifeSupport_Size7_Class1\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 7,\n      \"cost\": 622840,\n      \"edID\": 128064169,\n      \"eddbID\": 1027,\n      \"grp\": \"ls\",\n      \"id\": \"lx\",\n      \"integrity\": 118,\n      \"mass\": 32,\n      \"power\": 0.81,\n      \"rating\": \"D\",\n      \"time\": 450,\n      \"symbol\": \"Int_LifeSupport_Size7_Class2\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 7,\n      \"cost\": 1557110,\n      \"edID\": 128064170,\n      \"eddbID\": 1028,\n      \"grp\": \"ls\",\n      \"id\": \"lw\",\n      \"integrity\": 131,\n      \"mass\": 80,\n      \"power\": 0.9,\n      \"rating\": \"C\",\n      \"time\": 600,\n      \"symbol\": \"Int_LifeSupport_Size7_Class3\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 7,\n      \"cost\": 3892770,\n      \"edID\": 128064171,\n      \"eddbID\": 1029,\n      \"grp\": \"ls\",\n      \"id\": \"lv\",\n      \"integrity\": 144,\n      \"mass\": 128,\n      \"power\": 0.99,\n      \"rating\": \"B\",\n      \"time\": 900,\n      \"symbol\": \"Int_LifeSupport_Size7_Class4\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 7,\n      \"cost\": 9731930,\n      \"edID\": 128064172,\n      \"eddbID\": 1030,\n      \"grp\": \"ls\",\n      \"id\": \"lu\",\n      \"integrity\": 157,\n      \"mass\": 80,\n      \"power\": 1.08,\n      \"rating\": \"A\",\n      \"time\": 1500,\n      \"symbol\": \"Int_LifeSupport_Size7_Class5\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 6,\n      \"cost\": 88980,\n      \"edID\": 128064163,\n      \"eddbID\": 1021,\n      \"grp\": \"ls\",\n      \"id\": \"lt\",\n      \"integrity\": 90,\n      \"mass\": 40,\n      \"power\": 0.64,\n      \"rating\": \"E\",\n      \"time\": 300,\n      \"symbol\": \"Int_LifeSupport_Size6_Class1\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 6,\n      \"cost\": 222440,\n      \"edID\": 128064164,\n      \"eddbID\": 1022,\n      \"grp\": \"ls\",\n      \"id\": \"ls\",\n      \"integrity\": 102,\n      \"mass\": 16,\n      \"power\": 0.72,\n      \"rating\": \"D\",\n      \"time\": 450,\n      \"symbol\": \"Int_LifeSupport_Size6_Class2\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 6,\n      \"cost\": 556110,\n      \"edID\": 128064165,\n      \"eddbID\": 1023,\n      \"grp\": \"ls\",\n      \"id\": \"lr\",\n      \"integrity\": 113,\n      \"mass\": 40,\n      \"power\": 0.8,\n      \"rating\": \"C\",\n      \"time\": 600,\n      \"symbol\": \"Int_LifeSupport_Size6_Class3\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 6,\n      \"cost\": 1390280,\n      \"edID\": 128064166,\n      \"eddbID\": 1024,\n      \"grp\": \"ls\",\n      \"id\": \"lq\",\n      \"integrity\": 124,\n      \"mass\": 64,\n      \"power\": 0.88,\n      \"rating\": \"B\",\n      \"time\": 900,\n      \"symbol\": \"Int_LifeSupport_Size6_Class4\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 6,\n      \"cost\": 3475690,\n      \"edID\": 128064167,\n      \"eddbID\": 1025,\n      \"grp\": \"ls\",\n      \"id\": \"lp\",\n      \"integrity\": 136,\n      \"mass\": 40,\n      \"power\": 0.96,\n      \"rating\": \"A\",\n      \"time\": 1500,\n      \"symbol\": \"Int_LifeSupport_Size6_Class5\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 5,\n      \"cost\": 31780,\n      \"edID\": 128064158,\n      \"eddbID\": 1016,\n      \"grp\": \"ls\",\n      \"id\": \"lo\",\n      \"integrity\": 77,\n      \"mass\": 20,\n      \"power\": 0.57,\n      \"rating\": \"E\",\n      \"time\": 300,\n      \"symbol\": \"Int_LifeSupport_Size5_Class1\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 5,\n      \"cost\": 79440,\n      \"edID\": 128064159,\n      \"eddbID\": 1017,\n      \"grp\": \"ls\",\n      \"id\": \"ln\",\n      \"integrity\": 86,\n      \"mass\": 8,\n      \"power\": 0.64,\n      \"rating\": \"D\",\n      \"time\": 450,\n      \"symbol\": \"Int_LifeSupport_Size5_Class2\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 5,\n      \"cost\": 198610,\n      \"edID\": 128064160,\n      \"eddbID\": 1018,\n      \"grp\": \"ls\",\n      \"id\": \"lm\",\n      \"integrity\": 96,\n      \"mass\": 20,\n      \"power\": 0.71,\n      \"rating\": \"C\",\n      \"time\": 600,\n      \"symbol\": \"Int_LifeSupport_Size5_Class3\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 5,\n      \"cost\": 496530,\n      \"edID\": 128064161,\n      \"eddbID\": 1019,\n      \"grp\": \"ls\",\n      \"id\": \"ll\",\n      \"integrity\": 106,\n      \"mass\": 32,\n      \"power\": 0.78,\n      \"rating\": \"B\",\n      \"time\": 900,\n      \"symbol\": \"Int_LifeSupport_Size5_Class4\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 5,\n      \"cost\": 1241320,\n      \"edID\": 128064162,\n      \"eddbID\": 1020,\n      \"grp\": \"ls\",\n      \"id\": \"lk\",\n      \"integrity\": 115,\n      \"mass\": 20,\n      \"power\": 0.85,\n      \"rating\": \"A\",\n      \"time\": 1500,\n      \"symbol\": \"Int_LifeSupport_Size5_Class5\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 4,\n      \"cost\": 11350,\n      \"edID\": 128064153,\n      \"eddbID\": 1011,\n      \"grp\": \"ls\",\n      \"id\": \"lj\",\n      \"integrity\": 64,\n      \"mass\": 10,\n      \"power\": 0.5,\n      \"rating\": \"E\",\n      \"time\": 300,\n      \"symbol\": \"Int_LifeSupport_Size4_Class1\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 4,\n      \"cost\": 28370,\n      \"edID\": 128064154,\n      \"eddbID\": 1012,\n      \"grp\": \"ls\",\n      \"id\": \"li\",\n      \"integrity\": 72,\n      \"mass\": 4,\n      \"power\": 0.56,\n      \"rating\": \"D\",\n      \"time\": 450,\n      \"symbol\": \"Int_LifeSupport_Size4_Class2\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 4,\n      \"cost\": 70930,\n      \"edID\": 128064155,\n      \"eddbID\": 1013,\n      \"grp\": \"ls\",\n      \"id\": \"lh\",\n      \"integrity\": 80,\n      \"mass\": 10,\n      \"power\": 0.62,\n      \"rating\": \"C\",\n      \"time\": 600,\n      \"symbol\": \"Int_LifeSupport_Size4_Class3\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 4,\n      \"cost\": 177330,\n      \"edID\": 128064156,\n      \"eddbID\": 1014,\n      \"grp\": \"ls\",\n      \"id\": \"lg\",\n      \"integrity\": 88,\n      \"mass\": 16,\n      \"power\": 0.68,\n      \"rating\": \"B\",\n      \"time\": 900,\n      \"symbol\": \"Int_LifeSupport_Size4_Class4\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 4,\n      \"cost\": 443330,\n      \"edID\": 128064157,\n      \"eddbID\": 1015,\n      \"grp\": \"ls\",\n      \"id\": \"lf\",\n      \"integrity\": 96,\n      \"mass\": 10,\n      \"power\": 0.74,\n      \"rating\": \"A\",\n      \"time\": 1500,\n      \"symbol\": \"Int_LifeSupport_Size4_Class5\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 3,\n      \"cost\": 4050,\n      \"edID\": 128064148,\n      \"eddbID\": 1006,\n      \"grp\": \"ls\",\n      \"id\": \"le\",\n      \"integrity\": 51,\n      \"mass\": 5,\n      \"power\": 0.42,\n      \"rating\": \"E\",\n      \"time\": 300,\n      \"symbol\": \"Int_LifeSupport_Size3_Class1\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 3,\n      \"cost\": 10130,\n      \"edID\": 128064149,\n      \"eddbID\": 1007,\n      \"grp\": \"ls\",\n      \"id\": \"ld\",\n      \"integrity\": 58,\n      \"mass\": 2,\n      \"power\": 0.48,\n      \"rating\": \"D\",\n      \"time\": 450,\n      \"symbol\": \"Int_LifeSupport_Size3_Class2\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 3,\n      \"cost\": 25330,\n      \"edID\": 128064150,\n      \"eddbID\": 1008,\n      \"grp\": \"ls\",\n      \"id\": \"lc\",\n      \"integrity\": 64,\n      \"mass\": 5,\n      \"power\": 0.53,\n      \"rating\": \"C\",\n      \"time\": 600,\n      \"symbol\": \"Int_LifeSupport_Size3_Class3\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 3,\n      \"cost\": 63330,\n      \"edID\": 128064151,\n      \"eddbID\": 1009,\n      \"grp\": \"ls\",\n      \"id\": \"lb\",\n      \"integrity\": 70,\n      \"mass\": 8,\n      \"power\": 0.58,\n      \"rating\": \"B\",\n      \"time\": 900,\n      \"symbol\": \"Int_LifeSupport_Size3_Class4\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 3,\n      \"cost\": 158330,\n      \"edID\": 128064152,\n      \"eddbID\": 1010,\n      \"grp\": \"ls\",\n      \"id\": \"la\",\n      \"integrity\": 77,\n      \"mass\": 5,\n      \"power\": 0.64,\n      \"rating\": \"A\",\n      \"time\": 1500,\n      \"symbol\": \"Int_LifeSupport_Size3_Class5\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 2,\n      \"cost\": 1450,\n      \"edID\": 128064143,\n      \"eddbID\": 1001,\n      \"grp\": \"ls\",\n      \"id\": \"l9\",\n      \"integrity\": 41,\n      \"mass\": 2.5,\n      \"power\": 0.37,\n      \"rating\": \"E\",\n      \"time\": 300,\n      \"symbol\": \"Int_LifeSupport_Size2_Class1\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 2,\n      \"cost\": 3620,\n      \"edID\": 128064144,\n      \"eddbID\": 1002,\n      \"grp\": \"ls\",\n      \"id\": \"l8\",\n      \"integrity\": 46,\n      \"mass\": 1,\n      \"power\": 0.41,\n      \"rating\": \"D\",\n      \"time\": 450,\n      \"symbol\": \"Int_LifeSupport_Size2_Class2\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 2,\n      \"cost\": 9050,\n      \"edID\": 128064145,\n      \"eddbID\": 1003,\n      \"grp\": \"ls\",\n      \"id\": \"l7\",\n      \"integrity\": 51,\n      \"mass\": 2.5,\n      \"power\": 0.46,\n      \"rating\": \"C\",\n      \"time\": 600,\n      \"symbol\": \"Int_LifeSupport_Size2_Class3\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 2,\n      \"cost\": 22620,\n      \"edID\": 128064146,\n      \"eddbID\": 1004,\n      \"grp\": \"ls\",\n      \"id\": \"l6\",\n      \"integrity\": 56,\n      \"mass\": 4,\n      \"power\": 0.51,\n      \"rating\": \"B\",\n      \"time\": 900,\n      \"symbol\": \"Int_LifeSupport_Size2_Class4\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 2,\n      \"cost\": 56550,\n      \"edID\": 128064147,\n      \"eddbID\": 1005,\n      \"grp\": \"ls\",\n      \"id\": \"l5\",\n      \"integrity\": 61,\n      \"mass\": 2.5,\n      \"power\": 0.55,\n      \"rating\": \"A\",\n      \"time\": 1500,\n      \"symbol\": \"Int_LifeSupport_Size2_Class5\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 1,\n      \"cost\": 520,\n      \"edID\": 128064138,\n      \"eddbID\": 996,\n      \"grp\": \"ls\",\n      \"id\": \"l4\",\n      \"integrity\": 32,\n      \"mass\": 1.3,\n      \"power\": 0.32,\n      \"rating\": \"E\",\n      \"time\": 300,\n      \"symbol\": \"Int_LifeSupport_Size1_Class1\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 1,\n      \"cost\": 1290,\n      \"edID\": 128064139,\n      \"eddbID\": 997,\n      \"grp\": \"ls\",\n      \"id\": \"l3\",\n      \"integrity\": 36,\n      \"mass\": 0.5,\n      \"power\": 0.36,\n      \"rating\": \"D\",\n      \"time\": 450,\n      \"symbol\": \"Int_LifeSupport_Size1_Class2\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 1,\n      \"cost\": 3230,\n      \"edID\": 128064140,\n      \"eddbID\": 998,\n      \"grp\": \"ls\",\n      \"id\": \"l2\",\n      \"integrity\": 40,\n      \"mass\": 1.3,\n      \"power\": 0.4,\n      \"rating\": \"C\",\n      \"time\": 600,\n      \"symbol\": \"Int_LifeSupport_Size1_Class3\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 1,\n      \"cost\": 8080,\n      \"edID\": 128064141,\n      \"eddbID\": 999,\n      \"grp\": \"ls\",\n      \"id\": \"l1\",\n      \"integrity\": 44,\n      \"mass\": 2,\n      \"power\": 0.44,\n      \"rating\": \"B\",\n      \"time\": 900,\n      \"symbol\": \"Int_LifeSupport_Size1_Class4\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    },\n    {\n      \"boot\": 1,\n      \"class\": 1,\n      \"cost\": 20200,\n      \"edID\": 128064142,\n      \"eddbID\": 1000,\n      \"grp\": \"ls\",\n      \"id\": \"l0\",\n      \"integrity\": 48,\n      \"mass\": 1.3,\n      \"power\": 0.48,\n      \"rating\": \"A\",\n      \"time\": 1500,\n      \"symbol\": \"Int_LifeSupport_Size1_Class5\",\n      \"ukName\": \"Life Support\",\n      \"ukDiscript\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/standard/planetary_approach_suite.json",
    "content": "{\n  \"pas\": [\n    {\n      \"class\": 1,\n      \"cost\": 500,\n      \"edID\": 128672317,\n      \"eddbID\": 1538,\n      \"grp\": \"pas\",\n      \"id\": \"PA\",\n      \"mass\": 0,\n      \"power\": 0,\n      \"rating\": \"I\",\n      \"symbol\": \"Int_PlanetApproachSuite\",\n      \"ukName\": \"Planetary Approach Suite\",\n      \"ukDiscript\": \"The required Thruster modifications, sensor package and avionics to allow a ship to fly effectively in close proximity to planets.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/standard/power_distributor.json",
    "content": "{\n  \"pd\": [\n    {\n      \"class\": 8,\n      \"cost\": 697580,\n      \"edID\": 128064213,\n      \"eddbID\": 1071,\n      \"engcap\": 32,\n      \"engrate\": 3.2,\n      \"grp\": \"pd\",\n      \"id\": \"dD\",\n      \"integrity\": 135,\n      \"mass\": 160,\n      \"power\": 0.64,\n      \"rating\": \"E\",\n      \"syscap\": 32,\n      \"sysrate\": 3.2,\n      \"wepcap\": 48,\n      \"weprate\": 4.8,\n      \"symbol\": \"Int_PowerDistributor_Size8_Class1\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 8,\n      \"cost\": 1743960,\n      \"edID\": 128064214,\n      \"eddbID\": 1072,\n      \"engcap\": 36,\n      \"engrate\": 3.6,\n      \"grp\": \"pd\",\n      \"id\": \"dC\",\n      \"integrity\": 120,\n      \"mass\": 64,\n      \"power\": 0.72,\n      \"rating\": \"D\",\n      \"syscap\": 36,\n      \"sysrate\": 3.6,\n      \"wepcap\": 54,\n      \"weprate\": 5.4,\n      \"symbol\": \"Int_PowerDistributor_Size8_Class2\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 8,\n      \"cost\": 4359900,\n      \"edID\": 128064215,\n      \"eddbID\": 1073,\n      \"engcap\": 40,\n      \"engrate\": 4,\n      \"grp\": \"pd\",\n      \"id\": \"dB\",\n      \"integrity\": 150,\n      \"mass\": 160,\n      \"power\": 0.8,\n      \"rating\": \"C\",\n      \"syscap\": 40,\n      \"sysrate\": 4,\n      \"wepcap\": 60,\n      \"weprate\": 6,\n      \"symbol\": \"Int_PowerDistributor_Size8_Class3\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 8,\n      \"cost\": 10899760,\n      \"edID\": 128064216,\n      \"eddbID\": 1074,\n      \"engcap\": 44,\n      \"engrate\": 4.4,\n      \"grp\": \"pd\",\n      \"id\": \"dA\",\n      \"integrity\": 180,\n      \"mass\": 256,\n      \"power\": 0.88,\n      \"rating\": \"B\",\n      \"syscap\": 44,\n      \"sysrate\": 4.4,\n      \"wepcap\": 66,\n      \"weprate\": 6.6,\n      \"symbol\": \"Int_PowerDistributor_Size8_Class4\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 8,\n      \"cost\": 27249390,\n      \"edID\": 128064217,\n      \"eddbID\": 1075,\n      \"engcap\": 48,\n      \"engrate\": 4.8,\n      \"grp\": \"pd\",\n      \"id\": \"dz\",\n      \"integrity\": 165,\n      \"mass\": 160,\n      \"power\": 0.96,\n      \"rating\": \"A\",\n      \"syscap\": 48,\n      \"sysrate\": 4.8,\n      \"wepcap\": 72,\n      \"weprate\": 7.2,\n      \"symbol\": \"Int_PowerDistributor_Size8_Class5\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 249140,\n      \"edID\": 128064208,\n      \"eddbID\": 1066,\n      \"engcap\": 27,\n      \"engrate\": 2.6,\n      \"grp\": \"pd\",\n      \"id\": \"dy\",\n      \"integrity\": 118,\n      \"mass\": 80,\n      \"power\": 0.59,\n      \"rating\": \"E\",\n      \"syscap\": 27,\n      \"sysrate\": 2.6,\n      \"wepcap\": 41,\n      \"weprate\": 4.1,\n      \"symbol\": \"Int_PowerDistributor_Size7_Class1\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 622840,\n      \"edID\": 128064209,\n      \"eddbID\": 1067,\n      \"engcap\": 31,\n      \"engrate\": 3,\n      \"grp\": \"pd\",\n      \"id\": \"dx\",\n      \"integrity\": 105,\n      \"mass\": 32,\n      \"power\": 0.67,\n      \"rating\": \"D\",\n      \"syscap\": 31,\n      \"sysrate\": 3,\n      \"wepcap\": 46,\n      \"weprate\": 4.6,\n      \"symbol\": \"Int_PowerDistributor_Size7_Class2\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 1557110,\n      \"edID\": 128064210,\n      \"eddbID\": 1068,\n      \"engcap\": 34,\n      \"engrate\": 3.3,\n      \"grp\": \"pd\",\n      \"id\": \"dw\",\n      \"integrity\": 131,\n      \"mass\": 80,\n      \"power\": 0.74,\n      \"rating\": \"C\",\n      \"syscap\": 34,\n      \"sysrate\": 3.3,\n      \"wepcap\": 51,\n      \"weprate\": 5.1,\n      \"symbol\": \"Int_PowerDistributor_Size7_Class3\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 3892770,\n      \"edID\": 128064211,\n      \"eddbID\": 1069,\n      \"engcap\": 37,\n      \"engrate\": 3.6,\n      \"grp\": \"pd\",\n      \"id\": \"dv\",\n      \"integrity\": 157,\n      \"mass\": 128,\n      \"power\": 0.81,\n      \"rating\": \"B\",\n      \"syscap\": 37,\n      \"sysrate\": 3.6,\n      \"wepcap\": 56,\n      \"weprate\": 5.6,\n      \"symbol\": \"Int_PowerDistributor_Size7_Class4\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 9731930,\n      \"edID\": 128064212,\n      \"eddbID\": 1070,\n      \"engcap\": 41,\n      \"engrate\": 4,\n      \"grp\": \"pd\",\n      \"id\": \"du\",\n      \"integrity\": 144,\n      \"mass\": 80,\n      \"power\": 0.89,\n      \"rating\": \"A\",\n      \"syscap\": 41,\n      \"sysrate\": 4,\n      \"wepcap\": 61,\n      \"weprate\": 6.1,\n      \"symbol\": \"Int_PowerDistributor_Size7_Class5\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 6,\n      \"cost\": 88980,\n      \"edID\": 128064203,\n      \"eddbID\": 1061,\n      \"engcap\": 23,\n      \"engrate\": 2.2,\n      \"grp\": \"pd\",\n      \"id\": \"dt\",\n      \"integrity\": 102,\n      \"mass\": 40,\n      \"power\": 0.54,\n      \"rating\": \"E\",\n      \"syscap\": 23,\n      \"sysrate\": 2.2,\n      \"wepcap\": 34,\n      \"weprate\": 3.4,\n      \"symbol\": \"Int_PowerDistributor_Size6_Class1\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 6,\n      \"cost\": 222440,\n      \"edID\": 128064204,\n      \"eddbID\": 1062,\n      \"engcap\": 26,\n      \"engrate\": 2.4,\n      \"grp\": \"pd\",\n      \"id\": \"ds\",\n      \"integrity\": 90,\n      \"mass\": 16,\n      \"power\": 0.61,\n      \"rating\": \"D\",\n      \"syscap\": 26,\n      \"sysrate\": 2.4,\n      \"wepcap\": 38,\n      \"weprate\": 3.9,\n      \"symbol\": \"Int_PowerDistributor_Size6_Class2\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 6,\n      \"cost\": 556110,\n      \"edID\": 128064205,\n      \"eddbID\": 1063,\n      \"engcap\": 29,\n      \"engrate\": 2.7,\n      \"grp\": \"pd\",\n      \"id\": \"dr\",\n      \"integrity\": 113,\n      \"mass\": 40,\n      \"power\": 0.68,\n      \"rating\": \"C\",\n      \"syscap\": 29,\n      \"sysrate\": 2.7,\n      \"wepcap\": 42,\n      \"weprate\": 4.3,\n      \"symbol\": \"Int_PowerDistributor_Size6_Class3\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 6,\n      \"cost\": 1390280,\n      \"edID\": 128064206,\n      \"eddbID\": 1064,\n      \"engcap\": 32,\n      \"engrate\": 3,\n      \"grp\": \"pd\",\n      \"id\": \"dq\",\n      \"integrity\": 136,\n      \"mass\": 64,\n      \"power\": 0.75,\n      \"rating\": \"B\",\n      \"syscap\": 32,\n      \"sysrate\": 3,\n      \"wepcap\": 46,\n      \"weprate\": 4.7,\n      \"symbol\": \"Int_PowerDistributor_Size6_Class4\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 6,\n      \"cost\": 3475690,\n      \"edID\": 128064207,\n      \"eddbID\": 1065,\n      \"engcap\": 35,\n      \"engrate\": 3.2,\n      \"grp\": \"pd\",\n      \"id\": \"dp\",\n      \"integrity\": 124,\n      \"mass\": 40,\n      \"power\": 0.82,\n      \"rating\": \"A\",\n      \"syscap\": 35,\n      \"sysrate\": 3.2,\n      \"wepcap\": 50,\n      \"weprate\": 5.2,\n      \"symbol\": \"Int_PowerDistributor_Size6_Class5\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 31780,\n      \"edID\": 128064198,\n      \"eddbID\": 1056,\n      \"engcap\": 19,\n      \"engrate\": 1.7,\n      \"grp\": \"pd\",\n      \"id\": \"do\",\n      \"integrity\": 86,\n      \"mass\": 20,\n      \"power\": 0.5,\n      \"rating\": \"E\",\n      \"syscap\": 19,\n      \"sysrate\": 1.7,\n      \"wepcap\": 27,\n      \"weprate\": 2.9,\n      \"symbol\": \"Int_PowerDistributor_Size5_Class1\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 79440,\n      \"edID\": 128064199,\n      \"eddbID\": 1057,\n      \"engcap\": 22,\n      \"engrate\": 1.9,\n      \"grp\": \"pd\",\n      \"id\": \"dn\",\n      \"integrity\": 77,\n      \"mass\": 8,\n      \"power\": 0.56,\n      \"rating\": \"D\",\n      \"syscap\": 22,\n      \"sysrate\": 1.9,\n      \"wepcap\": 31,\n      \"weprate\": 3.2,\n      \"symbol\": \"Int_PowerDistributor_Size5_Class2\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 198610,\n      \"edID\": 128064200,\n      \"eddbID\": 1058,\n      \"engcap\": 24,\n      \"engrate\": 2.1,\n      \"grp\": \"pd\",\n      \"id\": \"dm\",\n      \"integrity\": 96,\n      \"mass\": 20,\n      \"power\": 0.62,\n      \"rating\": \"C\",\n      \"syscap\": 24,\n      \"sysrate\": 2.1,\n      \"wepcap\": 34,\n      \"weprate\": 3.6,\n      \"symbol\": \"Int_PowerDistributor_Size5_Class3\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 496530,\n      \"edID\": 128064201,\n      \"eddbID\": 1059,\n      \"engcap\": 26,\n      \"engrate\": 2.3,\n      \"grp\": \"pd\",\n      \"id\": \"dl\",\n      \"integrity\": 115,\n      \"mass\": 32,\n      \"power\": 0.68,\n      \"rating\": \"B\",\n      \"syscap\": 26,\n      \"sysrate\": 2.3,\n      \"wepcap\": 37,\n      \"weprate\": 4,\n      \"symbol\": \"Int_PowerDistributor_Size5_Class4\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 1241320,\n      \"edID\": 128064202,\n      \"eddbID\": 1060,\n      \"engcap\": 29,\n      \"engrate\": 2.5,\n      \"grp\": \"pd\",\n      \"id\": \"dk\",\n      \"integrity\": 106,\n      \"mass\": 20,\n      \"power\": 0.74,\n      \"rating\": \"A\",\n      \"syscap\": 29,\n      \"sysrate\": 2.5,\n      \"wepcap\": 41,\n      \"weprate\": 4.3,\n      \"symbol\": \"Int_PowerDistributor_Size5_Class5\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 4,\n      \"cost\": 11350,\n      \"edID\": 128064193,\n      \"eddbID\": 1051,\n      \"engcap\": 15,\n      \"engrate\": 1.3,\n      \"grp\": \"pd\",\n      \"id\": \"dj\",\n      \"integrity\": 72,\n      \"mass\": 10,\n      \"power\": 0.45,\n      \"rating\": \"E\",\n      \"syscap\": 15,\n      \"sysrate\": 1.3,\n      \"wepcap\": 22,\n      \"weprate\": 2.3,\n      \"symbol\": \"Int_PowerDistributor_Size4_Class1\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 4,\n      \"cost\": 28370,\n      \"edID\": 128064194,\n      \"eddbID\": 1052,\n      \"engcap\": 17,\n      \"engrate\": 1.4,\n      \"grp\": \"pd\",\n      \"id\": \"di\",\n      \"integrity\": 64,\n      \"mass\": 4,\n      \"power\": 0.5,\n      \"rating\": \"D\",\n      \"syscap\": 17,\n      \"sysrate\": 1.4,\n      \"wepcap\": 24,\n      \"weprate\": 2.6,\n      \"symbol\": \"Int_PowerDistributor_Size4_Class2\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 4,\n      \"cost\": 70930,\n      \"edID\": 128064195,\n      \"eddbID\": 1053,\n      \"engcap\": 19,\n      \"engrate\": 1.6,\n      \"grp\": \"pd\",\n      \"id\": \"dh\",\n      \"integrity\": 80,\n      \"mass\": 10,\n      \"power\": 0.56,\n      \"rating\": \"C\",\n      \"syscap\": 19,\n      \"sysrate\": 1.6,\n      \"wepcap\": 27,\n      \"weprate\": 2.9,\n      \"symbol\": \"Int_PowerDistributor_Size4_Class3\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 4,\n      \"cost\": 177330,\n      \"edID\": 128064196,\n      \"eddbID\": 1054,\n      \"engcap\": 21,\n      \"engrate\": 1.8,\n      \"grp\": \"pd\",\n      \"id\": \"dg\",\n      \"integrity\": 96,\n      \"mass\": 16,\n      \"power\": 0.62,\n      \"rating\": \"B\",\n      \"syscap\": 21,\n      \"sysrate\": 1.8,\n      \"wepcap\": 30,\n      \"weprate\": 3.2,\n      \"symbol\": \"Int_PowerDistributor_Size4_Class4\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 4,\n      \"cost\": 443330,\n      \"edID\": 128064197,\n      \"eddbID\": 1055,\n      \"engcap\": 23,\n      \"engrate\": 1.9,\n      \"grp\": \"pd\",\n      \"id\": \"df\",\n      \"integrity\": 88,\n      \"mass\": 10,\n      \"power\": 0.67,\n      \"rating\": \"A\",\n      \"syscap\": 23,\n      \"sysrate\": 1.9,\n      \"wepcap\": 32,\n      \"weprate\": 3.5,\n      \"symbol\": \"Int_PowerDistributor_Size4_Class5\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 4050,\n      \"edID\": 128064188,\n      \"eddbID\": 1046,\n      \"engcap\": 12,\n      \"engrate\": 0.9,\n      \"grp\": \"pd\",\n      \"id\": \"de\",\n      \"integrity\": 58,\n      \"mass\": 5,\n      \"power\": 0.4,\n      \"rating\": \"E\",\n      \"syscap\": 12,\n      \"sysrate\": 0.9,\n      \"wepcap\": 16,\n      \"weprate\": 1.8,\n      \"symbol\": \"Int_PowerDistributor_Size3_Class1\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 10130,\n      \"edID\": 128064189,\n      \"eddbID\": 1047,\n      \"engcap\": 14,\n      \"engrate\": 1,\n      \"grp\": \"pd\",\n      \"id\": \"dd\",\n      \"integrity\": 51,\n      \"mass\": 2,\n      \"power\": 0.45,\n      \"rating\": \"D\",\n      \"syscap\": 14,\n      \"sysrate\": 1,\n      \"wepcap\": 18,\n      \"weprate\": 2.1,\n      \"symbol\": \"Int_PowerDistributor_Size3_Class2\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 25330,\n      \"edID\": 128064190,\n      \"eddbID\": 1048,\n      \"engcap\": 15,\n      \"engrate\": 1.1,\n      \"grp\": \"pd\",\n      \"id\": \"dc\",\n      \"integrity\": 64,\n      \"mass\": 5,\n      \"power\": 0.5,\n      \"rating\": \"C\",\n      \"syscap\": 15,\n      \"sysrate\": 1.1,\n      \"wepcap\": 20,\n      \"weprate\": 2.3,\n      \"symbol\": \"Int_PowerDistributor_Size3_Class3\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 63330,\n      \"edID\": 128064191,\n      \"eddbID\": 1049,\n      \"engcap\": 17,\n      \"engrate\": 1.2,\n      \"grp\": \"pd\",\n      \"id\": \"db\",\n      \"integrity\": 77,\n      \"mass\": 8,\n      \"power\": 0.55,\n      \"rating\": \"B\",\n      \"syscap\": 17,\n      \"sysrate\": 1.2,\n      \"wepcap\": 22,\n      \"weprate\": 2.5,\n      \"symbol\": \"Int_PowerDistributor_Size3_Class4\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 158330,\n      \"edID\": 128064192,\n      \"eddbID\": 1050,\n      \"engcap\": 18,\n      \"engrate\": 1.3,\n      \"grp\": \"pd\",\n      \"id\": \"da\",\n      \"integrity\": 70,\n      \"mass\": 5,\n      \"power\": 0.6,\n      \"rating\": \"A\",\n      \"syscap\": 18,\n      \"sysrate\": 1.3,\n      \"wepcap\": 24,\n      \"weprate\": 2.8,\n      \"symbol\": \"Int_PowerDistributor_Size3_Class5\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 2,\n      \"cost\": 1450,\n      \"edID\": 128064183,\n      \"eddbID\": 1041,\n      \"engcap\": 10,\n      \"engrate\": 0.6,\n      \"grp\": \"pd\",\n      \"id\": \"d9\",\n      \"integrity\": 46,\n      \"mass\": 2.5,\n      \"power\": 0.36,\n      \"rating\": \"E\",\n      \"syscap\": 10,\n      \"sysrate\": 0.6,\n      \"wepcap\": 12,\n      \"weprate\": 1.4,\n      \"symbol\": \"Int_PowerDistributor_Size2_Class1\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 2,\n      \"cost\": 3620,\n      \"edID\": 128064184,\n      \"eddbID\": 1042,\n      \"engcap\": 11,\n      \"engrate\": 0.6,\n      \"grp\": \"pd\",\n      \"id\": \"d8\",\n      \"integrity\": 41,\n      \"mass\": 1,\n      \"power\": 0.41,\n      \"rating\": \"D\",\n      \"syscap\": 11,\n      \"sysrate\": 0.6,\n      \"wepcap\": 14,\n      \"weprate\": 1.6,\n      \"symbol\": \"Int_PowerDistributor_Size2_Class2\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 2,\n      \"cost\": 9050,\n      \"edID\": 128064185,\n      \"eddbID\": 1043,\n      \"engcap\": 12,\n      \"engrate\": 0.7,\n      \"grp\": \"pd\",\n      \"id\": \"d7\",\n      \"integrity\": 51,\n      \"mass\": 2.5,\n      \"power\": 0.45,\n      \"rating\": \"C\",\n      \"syscap\": 12,\n      \"sysrate\": 0.7,\n      \"wepcap\": 15,\n      \"weprate\": 1.8,\n      \"symbol\": \"Int_PowerDistributor_Size2_Class3\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 2,\n      \"cost\": 22620,\n      \"edID\": 128064186,\n      \"eddbID\": 1044,\n      \"engcap\": 13,\n      \"engrate\": 0.8,\n      \"grp\": \"pd\",\n      \"id\": \"d6\",\n      \"integrity\": 61,\n      \"mass\": 4,\n      \"power\": 0.5,\n      \"rating\": \"B\",\n      \"syscap\": 13,\n      \"sysrate\": 0.8,\n      \"wepcap\": 17,\n      \"weprate\": 2,\n      \"symbol\": \"Int_PowerDistributor_Size2_Class4\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 2,\n      \"cost\": 56550,\n      \"edID\": 128064187,\n      \"eddbID\": 1045,\n      \"engcap\": 14,\n      \"engrate\": 0.8,\n      \"grp\": \"pd\",\n      \"id\": \"d5\",\n      \"integrity\": 56,\n      \"mass\": 2.5,\n      \"power\": 0.54,\n      \"rating\": \"A\",\n      \"syscap\": 14,\n      \"sysrate\": 0.8,\n      \"wepcap\": 18,\n      \"weprate\": 2.2,\n      \"symbol\": \"Int_PowerDistributor_Size2_Class5\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 1,\n      \"cost\": 520,\n      \"edID\": 128064178,\n      \"eddbID\": 1036,\n      \"engcap\": 8,\n      \"engrate\": 0.4,\n      \"grp\": \"pd\",\n      \"id\": \"d4\",\n      \"integrity\": 46,\n      \"mass\": 1.3,\n      \"power\": 0.32,\n      \"rating\": \"E\",\n      \"syscap\": 8,\n      \"sysrate\": 0.4,\n      \"wepcap\": 10,\n      \"weprate\": 1.2,\n      \"symbol\": \"Int_PowerDistributor_Size1_Class1\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 1,\n      \"cost\": 1290,\n      \"edID\": 128064179,\n      \"eddbID\": 1037,\n      \"engcap\": 9,\n      \"engrate\": 0.5,\n      \"grp\": \"pd\",\n      \"id\": \"d3\",\n      \"integrity\": 41,\n      \"mass\": 0.5,\n      \"power\": 0.36,\n      \"rating\": \"D\",\n      \"syscap\": 9,\n      \"sysrate\": 0.5,\n      \"wepcap\": 11,\n      \"weprate\": 1.4,\n      \"symbol\": \"Int_PowerDistributor_Size1_Class2\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 1,\n      \"cost\": 3230,\n      \"edID\": 128064180,\n      \"eddbID\": 1038,\n      \"engcap\": 10,\n      \"engrate\": 0.5,\n      \"grp\": \"pd\",\n      \"id\": \"d2\",\n      \"integrity\": 51,\n      \"mass\": 1.3,\n      \"power\": 0.4,\n      \"rating\": \"C\",\n      \"syscap\": 10,\n      \"sysrate\": 0.5,\n      \"wepcap\": 12,\n      \"weprate\": 1.5,\n      \"symbol\": \"Int_PowerDistributor_Size1_Class3\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 1,\n      \"cost\": 8080,\n      \"edID\": 128064181,\n      \"eddbID\": 1039,\n      \"engcap\": 11,\n      \"engrate\": 0.6,\n      \"grp\": \"pd\",\n      \"id\": \"d1\",\n      \"integrity\": 61,\n      \"mass\": 2,\n      \"power\": 0.44,\n      \"rating\": \"B\",\n      \"syscap\": 11,\n      \"sysrate\": 0.6,\n      \"wepcap\": 13,\n      \"weprate\": 1.7,\n      \"symbol\": \"Int_PowerDistributor_Size1_Class4\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 1,\n      \"cost\": 20200,\n      \"edID\": 128064182,\n      \"eddbID\": 1040,\n      \"engcap\": 12,\n      \"engrate\": 0.6,\n      \"grp\": \"pd\",\n      \"id\": \"d0\",\n      \"integrity\": 56,\n      \"mass\": 1.3,\n      \"power\": 0.48,\n      \"rating\": \"A\",\n      \"syscap\": 12,\n      \"sysrate\": 0.6,\n      \"wepcap\": 14,\n      \"weprate\": 1.8,\n      \"symbol\": \"Int_PowerDistributor_Size1_Class5\",\n      \"ukName\": \"Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors.\"\n    },\n    {\n      \"class\": 1,\n      \"cost\": 40957,\n      \"edID\": 128833980,\n      \"eddbID\": 1040,\n      \"engcap\": 9,\n      \"engrate\": 0.8,\n      \"grp\": \"pd\",\n      \"id\": \"0T\",\n      \"integrity\": 56,\n      \"mass\": 1.4,\n      \"power\": 0.62,\n      \"rating\": \"A\",\n      \"syscap\": 10,\n      \"sysrate\": 0.8,\n      \"wepcap\": 10,\n      \"weprate\": 2.5,\n      \"name\": \"Guardian Power Distributor\",\n      \"symbol\": \"Int_GuardianPowerDistributor_Size1\",\n      \"ukName\": \"Guardian Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors. Enhanced with Guardian technology to speed up capacitor recharge rates, at the cost of smaller capacitors and increased heat generation. Also boosts overall power output of any power plant it is hooked into.\"\n    },\n    {\n      \"class\": 2,\n      \"cost\": 111600,\n      \"edID\": 128833981,\n      \"eddbID\": 1040,\n      \"engcap\": 9,\n      \"engrate\": 0.8,\n      \"grp\": \"pd\",\n      \"id\": \"0U\",\n      \"integrity\": 56,\n      \"mass\": 2.6,\n      \"power\": 0.73,\n      \"rating\": \"A\",\n      \"syscap\": 10,\n      \"sysrate\": 0.8,\n      \"wepcap\": 10,\n      \"weprate\": 2.5,\n      \"name\": \"Guardian Power Distributor\",\n      \"symbol\": \"Int_GuardianPowerDistributor_Size2\",\n      \"ukName\": \"Guardian Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors. Enhanced with Guardian technology to speed up capacitor recharge rates, at the cost of smaller capacitors and increased heat generation. Also boosts overall power output of any power plant it is hooked into.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 311365,\n      \"edID\": 128833982,\n      \"eddbID\": 1040,\n      \"engcap\": 14,\n      \"engrate\": 1.7,\n      \"grp\": \"pd\",\n      \"id\": \"0X\",\n      \"integrity\": 56,\n      \"mass\": 5.25,\n      \"power\": 0.78,\n      \"rating\": \"A\",\n      \"syscap\": 14,\n      \"sysrate\": 1.7,\n      \"wepcap\": 13,\n      \"weprate\": 3.1,\n      \"name\": \"Guardian Power Distributor\",\n      \"symbol\": \"Int_GuardianPowerDistributor_Size3\",\n      \"ukName\": \"Guardian Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors. Enhanced with Guardian technology to speed up capacitor recharge rates, at the cost of smaller capacitors and increased heat generation. Also boosts overall power output of any power plant it is hooked into.\"\n    },\n    {\n      \"class\": 4,\n      \"cost\": 868708,\n      \"edID\": 128833983,\n      \"eddbID\": 1040,\n      \"engcap\": 17,\n      \"engrate\": 2.5,\n      \"grp\": \"pd\",\n      \"id\": \"3I\",\n      \"integrity\": 56,\n      \"mass\": 10.5,\n      \"power\": 0.87,\n      \"rating\": \"A\",\n      \"syscap\": 14,\n      \"sysrate\": 1.7,\n      \"wepcap\": 22,\n      \"weprate\": 4.9,\n      \"name\": \"Guardian Power Distributor\",\n      \"symbol\": \"Int_GuardianPowerDistributor_Size4\",\n      \"ukName\": \"Guardian Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors. Enhanced with Guardian technology to speed up capacitor recharge rates, at the cost of smaller capacitors and increased heat generation. Also boosts overall power output of any power plant it is hooked into.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 2423690,\n      \"edID\": 128833984,\n      \"eddbID\": 1040,\n      \"engcap\": 22,\n      \"engrate\": 3.3,\n      \"grp\": \"pd\",\n      \"id\": \"2Z\",\n      \"integrity\": 56,\n      \"mass\": 21,\n      \"power\": 0.96,\n      \"rating\": \"A\",\n      \"syscap\": 22,\n      \"sysrate\": 3.3,\n      \"wepcap\": 29,\n      \"weprate\": 6,\n      \"name\": \"Guardian Power Distributor\",\n      \"symbol\": \"Int_GuardianPowerDistributor_Size5\",\n      \"ukName\": \"Guardian Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors. Enhanced with Guardian technology to speed up capacitor recharge rates, at the cost of smaller capacitors and increased heat generation. Also boosts overall power output of any power plant it is hooked into.\"\n    },\n    {\n      \"class\": 6,\n      \"cost\": 6762091,\n      \"edID\": 128833985,\n      \"eddbID\": 1040,\n      \"engcap\": 26,\n      \"engrate\": 4.2,\n      \"grp\": \"pd\",\n      \"id\": \"3T\",\n      \"integrity\": 56,\n      \"mass\": 42,\n      \"power\": 1.07,\n      \"rating\": \"A\",\n      \"syscap\": 26,\n      \"sysrate\": 4.2,\n      \"wepcap\": 35,\n      \"weprate\": 7.3,\n      \"name\": \"Guardian Power Distributor\",\n      \"symbol\": \"Int_GuardianPowerDistributor_Size6\",\n      \"ukName\": \"Guardian Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors. Enhanced with Guardian technology to speed up capacitor recharge rates, at the cost of smaller capacitors and increased heat generation. Also boosts overall power output of any power plant it is hooked into.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 18866235,\n      \"edID\": 128833986,\n      \"eddbID\": 1040,\n      \"engcap\": 31,\n      \"engrate\": 5.2,\n      \"grp\": \"pd\",\n      \"id\": \"3H\",\n      \"integrity\": 56,\n      \"mass\": 84,\n      \"power\": 1.16,\n      \"rating\": \"A\",\n      \"syscap\": 31,\n      \"sysrate\": 5.2,\n      \"wepcap\": 43,\n      \"weprate\": 8.5,\n      \"name\": \"Guardian Power Distributor\",\n      \"symbol\": \"Int_GuardianPowerDistributor_Size7\",\n      \"ukName\": \"Guardian Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors. Enhanced with Guardian technology to speed up capacitor recharge rates, at the cost of smaller capacitors and increased heat generation. Also boosts overall power output of any power plant it is hooked into.\"\n    },\n    {\n      \"class\": 8,\n      \"cost\": 52636793,\n      \"edID\": 128833987,\n      \"eddbID\": 1040,\n      \"engcap\": 36,\n      \"engrate\": 6.2,\n      \"grp\": \"pd\",\n      \"id\": \"3G\",\n      \"integrity\": 56,\n      \"mass\": 168,\n      \"power\": 1.25,\n      \"rating\": \"A\",\n      \"syscap\": 36,\n      \"sysrate\": 6.2,\n      \"wepcap\": 50,\n      \"weprate\": 10.1,\n      \"name\": \"Guardian Power Distributor\",\n      \"symbol\": \"Int_GuardianPowerDistributor_Size8\",\n      \"ukName\": \"Guardian Power Distributor\",\n      \"ukDiscript\": \"Distribution system for ENG, SYS and WEP capacitors. Enhanced with Guardian technology to speed up capacitor recharge rates, at the cost of smaller capacitors and increased heat generation. Also boosts overall power output of any power plant it is hooked into.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/standard/power_plant.json",
    "content": "{\n  \"pp\": [\n    {\n      \"class\": 8,\n      \"cost\": 2007240,\n      \"edID\": 128064063,\n      \"eddbID\": 921,\n      \"eff\": 1,\n      \"grp\": \"pp\",\n      \"id\": \"py\",\n      \"integrity\": 135,\n      \"mass\": 160,\n      \"pgen\": 24,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_Powerplant_Size8_Class1\",\n      \"ukName\": \"Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules.\"\n    },\n    {\n      \"class\": 8,\n      \"cost\": 6021720,\n      \"edID\": 128064064,\n      \"eddbID\": 922,\n      \"eff\": 0.75,\n      \"grp\": \"pp\",\n      \"id\": \"px\",\n      \"integrity\": 120,\n      \"mass\": 64,\n      \"pgen\": 27,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_Powerplant_Size8_Class2\",\n      \"ukName\": \"Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules.\"\n    },\n    {\n      \"class\": 8,\n      \"cost\": 18065170,\n      \"edID\": 128064065,\n      \"eddbID\": 923,\n      \"eff\": 0.5,\n      \"grp\": \"pp\",\n      \"id\": \"pw\",\n      \"integrity\": 150,\n      \"mass\": 80,\n      \"pgen\": 30,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_Powerplant_Size8_Class3\",\n      \"ukName\": \"Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules.\"\n    },\n    {\n      \"class\": 8,\n      \"cost\": 54195500,\n      \"edID\": 128064066,\n      \"eddbID\": 924,\n      \"eff\": 0.45,\n      \"grp\": \"pp\",\n      \"id\": \"pv\",\n      \"integrity\": 180,\n      \"mass\": 128,\n      \"pgen\": 33,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_Powerplant_Size8_Class4\",\n      \"ukName\": \"Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules.\"\n    },\n    {\n      \"class\": 8,\n      \"cost\": 162586490,\n      \"edID\": 128064067,\n      \"eddbID\": 925,\n      \"eff\": 0.4,\n      \"grp\": \"pp\",\n      \"id\": \"pu\",\n      \"integrity\": 165,\n      \"mass\": 80,\n      \"pgen\": 36,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_Powerplant_Size8_Class5\",\n      \"ukName\": \"Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 633200,\n      \"edID\": 128064058,\n      \"eddbID\": 916,\n      \"eff\": 1,\n      \"grp\": \"pp\",\n      \"id\": \"pt\",\n      \"integrity\": 118,\n      \"mass\": 80,\n      \"pgen\": 20,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_Powerplant_Size7_Class1\",\n      \"ukName\": \"Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 1899600,\n      \"edID\": 128064059,\n      \"eddbID\": 917,\n      \"eff\": 0.75,\n      \"grp\": \"pp\",\n      \"id\": \"ps\",\n      \"integrity\": 105,\n      \"mass\": 32,\n      \"pgen\": 22.5,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_Powerplant_Size7_Class2\",\n      \"ukName\": \"Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 5698790,\n      \"edID\": 128064060,\n      \"eddbID\": 918,\n      \"eff\": 0.5,\n      \"grp\": \"pp\",\n      \"id\": \"pr\",\n      \"integrity\": 131,\n      \"mass\": 40,\n      \"pgen\": 25,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_Powerplant_Size7_Class3\",\n      \"ukName\": \"Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 17096370,\n      \"edID\": 128064061,\n      \"eddbID\": 919,\n      \"eff\": 0.45,\n      \"grp\": \"pp\",\n      \"id\": \"pq\",\n      \"integrity\": 157,\n      \"mass\": 64,\n      \"pgen\": 27.5,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_Powerplant_Size7_Class4\",\n      \"ukName\": \"Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 51289110,\n      \"edID\": 128064062,\n      \"eddbID\": 920,\n      \"eff\": 0.4,\n      \"grp\": \"pp\",\n      \"id\": \"pp\",\n      \"integrity\": 144,\n      \"mass\": 40,\n      \"pgen\": 30,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_Powerplant_Size7_Class5\",\n      \"ukName\": \"Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules.\"\n    },\n    {\n      \"class\": 6,\n      \"cost\": 199750,\n      \"edID\": 128064053,\n      \"eddbID\": 911,\n      \"eff\": 1,\n      \"grp\": \"pp\",\n      \"id\": \"po\",\n      \"integrity\": 102,\n      \"mass\": 40,\n      \"pgen\": 16.8,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_Powerplant_Size6_Class1\",\n      \"ukName\": \"Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules.\"\n    },\n    {\n      \"class\": 6,\n      \"cost\": 599240,\n      \"edID\": 128064054,\n      \"eddbID\": 912,\n      \"eff\": 0.75,\n      \"grp\": \"pp\",\n      \"id\": \"pn\",\n      \"integrity\": 90,\n      \"mass\": 16,\n      \"pgen\": 18.9,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_Powerplant_Size6_Class2\",\n      \"ukName\": \"Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules.\"\n    },\n    {\n      \"class\": 6,\n      \"cost\": 1797730,\n      \"edID\": 128064055,\n      \"eddbID\": 913,\n      \"eff\": 0.5,\n      \"grp\": \"pp\",\n      \"id\": \"pm\",\n      \"integrity\": 113,\n      \"mass\": 20,\n      \"pgen\": 21,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_Powerplant_Size6_Class3\",\n      \"ukName\": \"Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules.\"\n    },\n    {\n      \"class\": 6,\n      \"cost\": 5393180,\n      \"edID\": 128064056,\n      \"eddbID\": 914,\n      \"eff\": 0.45,\n      \"grp\": \"pp\",\n      \"id\": \"pl\",\n      \"integrity\": 136,\n      \"mass\": 32,\n      \"pgen\": 23.1,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_Powerplant_Size6_Class4\",\n      \"ukName\": \"Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules.\"\n    },\n    {\n      \"class\": 6,\n      \"cost\": 16179530,\n      \"edID\": 128064057,\n      \"eddbID\": 915,\n      \"eff\": 0.4,\n      \"grp\": \"pp\",\n      \"id\": \"pk\",\n      \"integrity\": 124,\n      \"mass\": 20,\n      \"pgen\": 25.2,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_Powerplant_Size6_Class5\",\n      \"ukName\": \"Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 63010,\n      \"edID\": 128064048,\n      \"eddbID\": 906,\n      \"eff\": 1,\n      \"grp\": \"pp\",\n      \"id\": \"pj\",\n      \"integrity\": 86,\n      \"mass\": 20,\n      \"pgen\": 13.6,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_Powerplant_Size5_Class1\",\n      \"ukName\": \"Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 189040,\n      \"edID\": 128064049,\n      \"eddbID\": 907,\n      \"eff\": 0.75,\n      \"grp\": \"pp\",\n      \"id\": \"pi\",\n      \"integrity\": 77,\n      \"mass\": 8,\n      \"pgen\": 15.3,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_Powerplant_Size5_Class2\",\n      \"ukName\": \"Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 567110,\n      \"edID\": 128064050,\n      \"eddbID\": 908,\n      \"eff\": 0.5,\n      \"grp\": \"pp\",\n      \"id\": \"ph\",\n      \"integrity\": 96,\n      \"mass\": 10,\n      \"pgen\": 17,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_Powerplant_Size5_Class3\",\n      \"ukName\": \"Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 1701320,\n      \"edID\": 128064051,\n      \"eddbID\": 909,\n      \"eff\": 0.45,\n      \"grp\": \"pp\",\n      \"id\": \"pg\",\n      \"integrity\": 114,\n      \"mass\": 16,\n      \"pgen\": 18.7,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_Powerplant_Size5_Class4\",\n      \"ukName\": \"Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 5103950,\n      \"edID\": 128064052,\n      \"eddbID\": 910,\n      \"eff\": 0.4,\n      \"grp\": \"pp\",\n      \"id\": \"pf\",\n      \"integrity\": 106,\n      \"mass\": 10,\n      \"pgen\": 20.4,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_Powerplant_Size5_Class5\",\n      \"ukName\": \"Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules.\"\n    },\n    {\n      \"class\": 4,\n      \"cost\": 19880,\n      \"edID\": 128064043,\n      \"eddbID\": 901,\n      \"eff\": 1,\n      \"grp\": \"pp\",\n      \"id\": \"pe\",\n      \"integrity\": 72,\n      \"mass\": 10,\n      \"pgen\": 10.4,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_Powerplant_Size4_Class1\",\n      \"ukName\": \"Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules.\"\n    },\n    {\n      \"class\": 4,\n      \"cost\": 59630,\n      \"edID\": 128064044,\n      \"eddbID\": 902,\n      \"eff\": 0.75,\n      \"grp\": \"pp\",\n      \"id\": \"pd\",\n      \"integrity\": 64,\n      \"mass\": 4,\n      \"pgen\": 11.7,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_Powerplant_Size4_Class2\",\n      \"ukName\": \"Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules.\"\n    },\n    {\n      \"class\": 4,\n      \"cost\": 178900,\n      \"edID\": 128064045,\n      \"eddbID\": 903,\n      \"eff\": 0.5,\n      \"grp\": \"pp\",\n      \"id\": \"pc\",\n      \"integrity\": 80,\n      \"mass\": 5,\n      \"pgen\": 13,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_Powerplant_Size4_Class3\",\n      \"ukName\": \"Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules.\"\n    },\n    {\n      \"class\": 4,\n      \"cost\": 536690,\n      \"edID\": 128064046,\n      \"eddbID\": 904,\n      \"eff\": 0.45,\n      \"grp\": \"pp\",\n      \"id\": \"pb\",\n      \"integrity\": 96,\n      \"mass\": 8,\n      \"pgen\": 14.3,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_Powerplant_Size4_Class4\",\n      \"ukName\": \"Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules.\"\n    },\n    {\n      \"class\": 4,\n      \"cost\": 1610080,\n      \"edID\": 128064047,\n      \"eddbID\": 905,\n      \"eff\": 0.4,\n      \"grp\": \"pp\",\n      \"id\": \"pa\",\n      \"integrity\": 88,\n      \"mass\": 5,\n      \"pgen\": 15.6,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_Powerplant_Size4_Class5\",\n      \"ukName\": \"Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 6270,\n      \"edID\": 128064038,\n      \"eddbID\": 896,\n      \"eff\": 1,\n      \"grp\": \"pp\",\n      \"id\": \"p9\",\n      \"integrity\": 58,\n      \"mass\": 5,\n      \"pgen\": 8,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_Powerplant_Size3_Class1\",\n      \"ukName\": \"Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 18810,\n      \"edID\": 128064039,\n      \"eddbID\": 897,\n      \"eff\": 0.75,\n      \"grp\": \"pp\",\n      \"id\": \"p8\",\n      \"integrity\": 51,\n      \"mass\": 2,\n      \"pgen\": 9,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_Powerplant_Size3_Class2\",\n      \"ukName\": \"Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 56440,\n      \"edID\": 128064040,\n      \"eddbID\": 898,\n      \"eff\": 0.5,\n      \"grp\": \"pp\",\n      \"id\": \"p7\",\n      \"integrity\": 64,\n      \"mass\": 2.5,\n      \"pgen\": 10,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_Powerplant_Size3_Class3\",\n      \"ukName\": \"Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 169300,\n      \"edID\": 128064041,\n      \"eddbID\": 899,\n      \"eff\": 0.45,\n      \"grp\": \"pp\",\n      \"id\": \"p6\",\n      \"integrity\": 77,\n      \"mass\": 4,\n      \"pgen\": 11,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_Powerplant_Size3_Class4\",\n      \"ukName\": \"Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 507910,\n      \"edID\": 128064042,\n      \"eddbID\": 900,\n      \"eff\": 0.4,\n      \"grp\": \"pp\",\n      \"id\": \"p5\",\n      \"integrity\": 70,\n      \"mass\": 2.5,\n      \"pgen\": 12,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_Powerplant_Size3_Class5\",\n      \"ukName\": \"Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules.\"\n    },\n    {\n      \"class\": 2,\n      \"cost\": 1980,\n      \"edID\": 128064033,\n      \"eddbID\": 891,\n      \"eff\": 1,\n      \"grp\": \"pp\",\n      \"id\": \"p4\",\n      \"integrity\": 46,\n      \"mass\": 2.5,\n      \"pgen\": 6.4,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_Powerplant_Size2_Class1\",\n      \"ukName\": \"Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules.\"\n    },\n    {\n      \"class\": 2,\n      \"cost\": 5930,\n      \"edID\": 128064034,\n      \"eddbID\": 892,\n      \"eff\": 0.75,\n      \"grp\": \"pp\",\n      \"id\": \"p3\",\n      \"integrity\": 41,\n      \"mass\": 1,\n      \"pgen\": 7.2,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_Powerplant_Size2_Class2\",\n      \"ukName\": \"Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules.\"\n    },\n    {\n      \"class\": 2,\n      \"cost\": 17800,\n      \"edID\": 128064035,\n      \"eddbID\": 893,\n      \"eff\": 0.5,\n      \"grp\": \"pp\",\n      \"id\": \"p2\",\n      \"integrity\": 51,\n      \"mass\": 1.3,\n      \"pgen\": 8,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_Powerplant_Size2_Class3\",\n      \"ukName\": \"Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules.\"\n    },\n    {\n      \"class\": 2,\n      \"cost\": 53410,\n      \"edID\": 128064036,\n      \"eddbID\": 894,\n      \"eff\": 0.45,\n      \"grp\": \"pp\",\n      \"id\": \"p1\",\n      \"integrity\": 61,\n      \"mass\": 2,\n      \"pgen\": 8.8,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_Powerplant_Size2_Class4\",\n      \"ukName\": \"Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules.\"\n    },\n    {\n      \"class\": 2,\n      \"cost\": 160220,\n      \"edID\": 128064037,\n      \"eddbID\": 895,\n      \"eff\": 0.4,\n      \"grp\": \"pp\",\n      \"id\": \"p0\",\n      \"integrity\": 56,\n      \"mass\": 1.3,\n      \"pgen\": 9.6,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_Powerplant_Size2_Class5\",\n      \"ukName\": \"Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules.\"\n    },\n    {\n      \"class\": 2,\n      \"cost\": 192165,\n      \"edID\": 128833988,\n      \"eddbID\": 895,\n      \"eff\": 0.5,\n      \"grp\": \"pp\",\n      \"id\": \"0A\",\n      \"integrity\": 56,\n      \"mass\": 1.5,\n      \"pgen\": 12.7,\n      \"rating\": \"A\",\n      \"name\": \"Guardian Hybrid Power Plant\",\n      \"symbol\": \"Int_GuardianPowerplant_Size2\",\n      \"ukName\": \"Guardian Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules. Enhanced with Guardian technology to produce greater power output, at the cost of heat generated and mass.\"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 576493,\n      \"edID\": 128833989,\n      \"eddbID\": 895,\n      \"eff\": 0.5,\n      \"grp\": \"pp\",\n      \"id\": \"0B\",\n      \"integrity\": 70,\n      \"mass\": 2.9,\n      \"pgen\": 15.8,\n      \"rating\": \"A\",\n      \"name\": \"Guardian Hybrid Power Plant\",\n      \"symbol\": \"Int_GuardianPowerplant_Size3\",\n      \"ukName\": \"Guardian Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules. Enhanced with Guardian technology to produce greater power output, at the cost of heat generated and mass.\"\n    },\n    {\n      \"class\": 4,\n      \"cost\": 1729480,\n      \"edID\": 128833990,\n      \"eddbID\": 895,\n      \"eff\": 0.5,\n      \"grp\": \"pp\",\n      \"id\": \"0C\",\n      \"integrity\": 88,\n      \"mass\": 5.9,\n      \"pgen\": 20.6,\n      \"rating\": \"A\",\n      \"name\": \"Guardian Hybrid Power Plant\",\n      \"symbol\": \"Int_GuardianPowerplant_Size4\",\n      \"ukName\": \"Guardian Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules. Enhanced with Guardian technology to produce greater power output, at the cost of heat generated and mass.\"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 5188441,\n      \"edID\": 128833991,\n      \"eddbID\": 895,\n      \"eff\": 0.5,\n      \"grp\": \"pp\",\n      \"id\": \"0D\",\n      \"integrity\": 106,\n      \"mass\": 11.7,\n      \"pgen\": 26.9,\n      \"rating\": \"A\",\n      \"name\": \"Guardian Hybrid Power Plant\",\n      \"symbol\": \"Int_GuardianPowerplant_Size5\",\n      \"ukName\": \"Guardian Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules. Enhanced with Guardian technology to produce greater power output, at the cost of heat generated and mass.\"\n    },\n    {\n      \"class\": 6,\n      \"cost\": 15565317,\n      \"edID\": 128833992,\n      \"eddbID\": 895,\n      \"eff\": 0.5,\n      \"grp\": \"pp\",\n      \"id\": \"0E\",\n      \"integrity\": 124,\n      \"mass\": 23.4,\n      \"pgen\": 33.3,\n      \"rating\": \"A\",\n      \"name\": \"Guardian Hybrid Power Plant\",\n      \"symbol\": \"Int_GuardianPowerplant_Size6\",\n      \"ukName\": \"Guardian Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules. Enhanced with Guardian technology to produce greater power output, at the cost of heat generated and mass.\"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 46695951,\n      \"edID\": 128833993,\n      \"eddbID\": 895,\n      \"eff\": 0.5,\n      \"grp\": \"pp\",\n      \"id\": \"0F\",\n      \"integrity\": 144,\n      \"mass\": 46.8,\n      \"pgen\": 39.6,\n      \"rating\": \"A\",\n      \"name\": \"Guardian Hybrid Power Plant\",\n      \"symbol\": \"Int_GuardianPowerplant_Size7\",\n      \"ukName\": \"Guardian Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules. Enhanced with Guardian technology to produce greater power output, at the cost of heat generated and mass.\"\n    },\n    {\n      \"class\": 8,\n      \"cost\": 140087850,\n      \"edID\": 128833994,\n      \"eddbID\": 895,\n      \"eff\": 0.5,\n      \"grp\": \"pp\",\n      \"id\": \"0G\",\n      \"integrity\": 165,\n      \"mass\": 93.6,\n      \"pgen\": 47.5,\n      \"rating\": \"A\",\n      \"name\": \"Guardian Hybrid Power Plant\",\n      \"symbol\": \"Int_GuardianPowerplant_Size8\",\n      \"ukName\": \"Guardian Power Plant\",\n      \"ukDiscript\": \"Consumes fuel to power all ship modules. Enhanced with Guardian technology to produce greater power output, at the cost of heat generated and mass.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/standard/sensors.json",
    "content": "{\n  \"s\": [\n    {\n      \"angle\": 30,\n      \"class\": 8,\n      \"cost\": 697580,\n      \"edID\": 128064253,\n      \"eddbID\": 1111,\n      \"grp\": \"s\",\n      \"id\": \"sy\",\n      \"integrity\": 135,\n      \"mass\": 160,\n      \"power\": 0.55,\n      \"range\": 5.12,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_Sensors_Size8_Class1\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 8,\n      \"cost\": 1743960,\n      \"edID\": 128064254,\n      \"eddbID\": 1112,\n      \"grp\": \"s\",\n      \"id\": \"sx\",\n      \"integrity\": 120,\n      \"mass\": 64,\n      \"power\": 0.62,\n      \"range\": 5.76,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_Sensors_Size8_Class2\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 8,\n      \"cost\": 4359900,\n      \"edID\": 128064255,\n      \"eddbID\": 1113,\n      \"grp\": \"s\",\n      \"id\": \"sw\",\n      \"integrity\": 150,\n      \"mass\": 160,\n      \"power\": 0.69,\n      \"range\": 6.4,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_Sensors_Size8_Class3\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 8,\n      \"cost\": 10899760,\n      \"edID\": 128064256,\n      \"eddbID\": 1114,\n      \"grp\": \"s\",\n      \"id\": \"sv\",\n      \"integrity\": 180,\n      \"mass\": 256,\n      \"power\": 1.14,\n      \"range\": 7.04,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_Sensors_Size8_Class4\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 8,\n      \"cost\": 27249390,\n      \"edID\": 128064257,\n      \"eddbID\": 1115,\n      \"grp\": \"s\",\n      \"id\": \"su\",\n      \"integrity\": 165,\n      \"mass\": 160,\n      \"power\": 2.07,\n      \"range\": 7.68,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_Sensors_Size8_Class5\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 7,\n      \"cost\": 249140,\n      \"edID\": 128064248,\n      \"eddbID\": 1106,\n      \"grp\": \"s\",\n      \"id\": \"sD\",\n      \"integrity\": 118,\n      \"mass\": 80,\n      \"power\": 0.47,\n      \"range\": 4.96,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_Sensors_Size7_Class1\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 7,\n      \"cost\": 622840,\n      \"edID\": 128064249,\n      \"eddbID\": 1107,\n      \"grp\": \"s\",\n      \"id\": \"sC\",\n      \"integrity\": 105,\n      \"mass\": 32,\n      \"power\": 0.53,\n      \"range\": 5.58,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_Sensors_Size7_Class2\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 7,\n      \"cost\": 1557110,\n      \"edID\": 128064250,\n      \"eddbID\": 1108,\n      \"grp\": \"s\",\n      \"id\": \"sB\",\n      \"integrity\": 131,\n      \"mass\": 80,\n      \"power\": 0.59,\n      \"range\": 6.2,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_Sensors_Size7_Class3\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 7,\n      \"cost\": 3892770,\n      \"edID\": 128064251,\n      \"eddbID\": 1109,\n      \"grp\": \"s\",\n      \"id\": \"sA\",\n      \"integrity\": 157,\n      \"mass\": 128,\n      \"power\": 0.97,\n      \"range\": 6.82,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_Sensors_Size7_Class4\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 7,\n      \"cost\": 9731930,\n      \"edID\": 128064252,\n      \"eddbID\": 1110,\n      \"grp\": \"s\",\n      \"id\": \"sz\",\n      \"integrity\": 144,\n      \"mass\": 80,\n      \"power\": 1.77,\n      \"range\": 7.44,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_Sensors_Size7_Class5\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 6,\n      \"cost\": 88980,\n      \"edID\": 128064243,\n      \"eddbID\": 1101,\n      \"grp\": \"s\",\n      \"id\": \"st\",\n      \"integrity\": 102,\n      \"mass\": 40,\n      \"power\": 0.4,\n      \"range\": 4.8,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_Sensors_Size6_Class1\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 6,\n      \"cost\": 222440,\n      \"edID\": 128064244,\n      \"eddbID\": 1102,\n      \"grp\": \"s\",\n      \"id\": \"ss\",\n      \"integrity\": 90,\n      \"mass\": 16,\n      \"power\": 0.45,\n      \"range\": 5.4,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_Sensors_Size6_Class2\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 6,\n      \"cost\": 556110,\n      \"edID\": 128064245,\n      \"eddbID\": 1103,\n      \"grp\": \"s\",\n      \"id\": \"sr\",\n      \"integrity\": 113,\n      \"mass\": 40,\n      \"power\": 0.5,\n      \"range\": 6,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_Sensors_Size6_Class3\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 6,\n      \"cost\": 1390280,\n      \"edID\": 128064246,\n      \"eddbID\": 1104,\n      \"grp\": \"s\",\n      \"id\": \"sq\",\n      \"integrity\": 136,\n      \"mass\": 64,\n      \"power\": 0.83,\n      \"range\": 6.6,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_Sensors_Size6_Class4\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 6,\n      \"cost\": 3475690,\n      \"edID\": 128064247,\n      \"eddbID\": 1105,\n      \"grp\": \"s\",\n      \"id\": \"sp\",\n      \"integrity\": 124,\n      \"mass\": 40,\n      \"power\": 1.5,\n      \"range\": 7.2,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_Sensors_Size6_Class5\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 5,\n      \"cost\": 31780,\n      \"edID\": 128064238,\n      \"eddbID\": 1096,\n      \"grp\": \"s\",\n      \"id\": \"so\",\n      \"integrity\": 86,\n      \"mass\": 20,\n      \"power\": 0.33,\n      \"range\": 4.64,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_Sensors_Size5_Class1\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 5,\n      \"cost\": 79440,\n      \"edID\": 128064239,\n      \"eddbID\": 1097,\n      \"grp\": \"s\",\n      \"id\": \"sn\",\n      \"integrity\": 77,\n      \"mass\": 8,\n      \"power\": 0.37,\n      \"range\": 5.22,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_Sensors_Size5_Class2\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 5,\n      \"cost\": 198610,\n      \"edID\": 128064240,\n      \"eddbID\": 1098,\n      \"grp\": \"s\",\n      \"id\": \"sm\",\n      \"integrity\": 96,\n      \"mass\": 20,\n      \"power\": 0.41,\n      \"range\": 5.8,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_Sensors_Size5_Class3\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 5,\n      \"cost\": 496530,\n      \"edID\": 128064241,\n      \"eddbID\": 1099,\n      \"grp\": \"s\",\n      \"id\": \"sl\",\n      \"integrity\": 115,\n      \"mass\": 32,\n      \"power\": 0.68,\n      \"range\": 6.38,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_Sensors_Size5_Class4\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 5,\n      \"cost\": 1241320,\n      \"edID\": 128064242,\n      \"eddbID\": 1100,\n      \"grp\": \"s\",\n      \"id\": \"sk\",\n      \"integrity\": 106,\n      \"mass\": 20,\n      \"power\": 1.23,\n      \"range\": 6.96,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_Sensors_Size5_Class5\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 4,\n      \"cost\": 11350,\n      \"edID\": 128064233,\n      \"eddbID\": 1091,\n      \"grp\": \"s\",\n      \"id\": \"sj\",\n      \"integrity\": 72,\n      \"mass\": 10,\n      \"power\": 0.27,\n      \"range\": 4.48,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_Sensors_Size4_Class1\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 4,\n      \"cost\": 28370,\n      \"edID\": 128064234,\n      \"eddbID\": 1092,\n      \"grp\": \"s\",\n      \"id\": \"si\",\n      \"integrity\": 64,\n      \"mass\": 4,\n      \"power\": 0.31,\n      \"range\": 5.04,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_Sensors_Size4_Class2\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 4,\n      \"cost\": 70930,\n      \"edID\": 128064235,\n      \"eddbID\": 1093,\n      \"grp\": \"s\",\n      \"id\": \"sh\",\n      \"integrity\": 80,\n      \"mass\": 10,\n      \"power\": 0.34,\n      \"range\": 5.6,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_Sensors_Size4_Class3\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 4,\n      \"cost\": 177330,\n      \"edID\": 128064236,\n      \"eddbID\": 1094,\n      \"grp\": \"s\",\n      \"id\": \"sg\",\n      \"integrity\": 96,\n      \"mass\": 16,\n      \"power\": 0.56,\n      \"range\": 6.16,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_Sensors_Size4_Class4\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 4,\n      \"cost\": 443330,\n      \"edID\": 128064237,\n      \"eddbID\": 1095,\n      \"grp\": \"s\",\n      \"id\": \"sf\",\n      \"integrity\": 88,\n      \"mass\": 10,\n      \"power\": 1.02,\n      \"range\": 6.72,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_Sensors_Size4_Class5\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 3,\n      \"cost\": 4050,\n      \"edID\": 128064228,\n      \"eddbID\": 1086,\n      \"grp\": \"s\",\n      \"id\": \"se\",\n      \"integrity\": 58,\n      \"mass\": 5,\n      \"power\": 0.22,\n      \"range\": 4.32,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_Sensors_Size3_Class1\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 3,\n      \"cost\": 10130,\n      \"edID\": 128064229,\n      \"eddbID\": 1087,\n      \"grp\": \"s\",\n      \"id\": \"sd\",\n      \"integrity\": 51,\n      \"mass\": 2,\n      \"power\": 0.25,\n      \"range\": 4.86,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_Sensors_Size3_Class2\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 3,\n      \"cost\": 25330,\n      \"edID\": 128064230,\n      \"eddbID\": 1088,\n      \"grp\": \"s\",\n      \"id\": \"sc\",\n      \"integrity\": 64,\n      \"mass\": 5,\n      \"power\": 0.28,\n      \"range\": 5.4,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_Sensors_Size3_Class3\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 3,\n      \"cost\": 63330,\n      \"edID\": 128064231,\n      \"eddbID\": 1089,\n      \"grp\": \"s\",\n      \"id\": \"sb\",\n      \"integrity\": 77,\n      \"mass\": 8,\n      \"power\": 0.46,\n      \"range\": 5.94,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_Sensors_Size3_Class4\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 3,\n      \"cost\": 158330,\n      \"edID\": 128064232,\n      \"eddbID\": 1090,\n      \"grp\": \"s\",\n      \"id\": \"sa\",\n      \"integrity\": 70,\n      \"mass\": 5,\n      \"power\": 0.84,\n      \"range\": 6.48,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_Sensors_Size3_Class5\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 2,\n      \"cost\": 1450,\n      \"edID\": 128064223,\n      \"eddbID\": 1081,\n      \"grp\": \"s\",\n      \"id\": \"s9\",\n      \"integrity\": 46,\n      \"mass\": 2.5,\n      \"power\": 0.18,\n      \"range\": 4.16,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_Sensors_Size2_Class1\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 2,\n      \"cost\": 3620,\n      \"edID\": 128064224,\n      \"eddbID\": 1082,\n      \"grp\": \"s\",\n      \"id\": \"s8\",\n      \"integrity\": 41,\n      \"mass\": 1,\n      \"power\": 0.21,\n      \"range\": 4.68,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_Sensors_Size2_Class2\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 2,\n      \"cost\": 9050,\n      \"edID\": 128064225,\n      \"eddbID\": 1083,\n      \"grp\": \"s\",\n      \"id\": \"s7\",\n      \"integrity\": 51,\n      \"mass\": 2.5,\n      \"power\": 0.23,\n      \"range\": 5.2,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_Sensors_Size2_Class3\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 2,\n      \"cost\": 22620,\n      \"edID\": 128064226,\n      \"eddbID\": 1084,\n      \"grp\": \"s\",\n      \"id\": \"s6\",\n      \"integrity\": 61,\n      \"mass\": 4,\n      \"power\": 0.38,\n      \"range\": 5.72,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_Sensors_Size2_Class4\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 2,\n      \"cost\": 56550,\n      \"edID\": 128064227,\n      \"eddbID\": 1085,\n      \"grp\": \"s\",\n      \"id\": \"s5\",\n      \"integrity\": 56,\n      \"mass\": 2.5,\n      \"power\": 0.69,\n      \"range\": 6.24,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_Sensors_Size2_Class5\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 1,\n      \"cost\": 520,\n      \"edID\": 128064218,\n      \"eddbID\": 1076,\n      \"grp\": \"s\",\n      \"id\": \"s4\",\n      \"integrity\": 46,\n      \"mass\": 1.3,\n      \"power\": 0.16,\n      \"range\": 4,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_Sensors_Size1_Class1\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 1,\n      \"cost\": 1290,\n      \"edID\": 128064219,\n      \"eddbID\": 1077,\n      \"grp\": \"s\",\n      \"id\": \"s3\",\n      \"integrity\": 41,\n      \"mass\": 0.5,\n      \"power\": 0.18,\n      \"range\": 4.5,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_Sensors_Size1_Class2\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 1,\n      \"cost\": 3230,\n      \"edID\": 128064220,\n      \"eddbID\": 1078,\n      \"grp\": \"s\",\n      \"id\": \"s2\",\n      \"integrity\": 51,\n      \"mass\": 1.3,\n      \"power\": 0.2,\n      \"range\": 5,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_Sensors_Size1_Class3\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 1,\n      \"cost\": 8080,\n      \"edID\": 128064221,\n      \"eddbID\": 1079,\n      \"grp\": \"s\",\n      \"id\": \"s1\",\n      \"integrity\": 61,\n      \"mass\": 2,\n      \"power\": 0.33,\n      \"range\": 5.5,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_Sensors_Size1_Class4\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    },\n    {\n      \"angle\": 30,\n      \"class\": 1,\n      \"cost\": 20200,\n      \"edID\": 128064222,\n      \"eddbID\": 1080,\n      \"grp\": \"s\",\n      \"id\": \"s0\",\n      \"integrity\": 56,\n      \"mass\": 1.3,\n      \"power\": 0.6,\n      \"range\": 6,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_Sensors_Size1_Class5\",\n      \"ukName\": \"Sensors\",\n      \"ukDiscript\": \"Standard suite providing basic detection, identification and targeting capabilities.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/modules/standard/thrusters.json",
    "content": "{\n  \"t\": [\n    {\n      \"class\": 8,\n      \"cost\": 2007240,\n      \"edID\": 128064098,\n      \"eddbID\": 956,\n      \"grp\": \"t\",\n      \"id\": \"ty\",\n      \"integrity\": 135,\n      \"mass\": 160,\n      \"maxmass\": 3360,\n      \"maxmul\": 1.03,\n      \"minmass\": 1120,\n      \"minmul\": 0.83,\n      \"optmass\": 2240,\n      \"optmul\": 1,\n      \"power\": 7.2,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_Engine_Size8_Class1\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Normal-space propulsion system. \"\n    },\n    {\n      \"class\": 8,\n      \"cost\": 6021720,\n      \"edID\": 128064099,\n      \"eddbID\": 957,\n      \"grp\": \"t\",\n      \"id\": \"tx\",\n      \"integrity\": 120,\n      \"mass\": 64,\n      \"maxmass\": 3780,\n      \"maxmul\": 1.06,\n      \"minmass\": 1260,\n      \"minmul\": 0.86,\n      \"optmass\": 2520,\n      \"optmul\": 1,\n      \"power\": 8.1,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_Engine_Size8_Class2\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Normal-space propulsion system. \"\n    },\n    {\n      \"class\": 8,\n      \"cost\": 18065170,\n      \"edID\": 128064100,\n      \"eddbID\": 958,\n      \"grp\": \"t\",\n      \"id\": \"tw\",\n      \"integrity\": 150,\n      \"mass\": 160,\n      \"maxmass\": 4200,\n      \"maxmul\": 1.1,\n      \"minmass\": 1400,\n      \"minmul\": 0.9,\n      \"optmass\": 2800,\n      \"optmul\": 1,\n      \"power\": 9,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_Engine_Size8_Class3\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Normal-space propulsion system. \"\n    },\n    {\n      \"class\": 8,\n      \"cost\": 54195500,\n      \"edID\": 128064101,\n      \"eddbID\": 959,\n      \"grp\": \"t\",\n      \"id\": \"tv\",\n      \"integrity\": 180,\n      \"mass\": 256,\n      \"maxmass\": 4620,\n      \"maxmul\": 1.13,\n      \"minmass\": 1540,\n      \"minmul\": 0.93,\n      \"optmass\": 3080,\n      \"optmul\": 1,\n      \"power\": 9.9,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_Engine_Size8_Class4\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Normal-space propulsion system. \"\n    },\n    {\n      \"class\": 8,\n      \"cost\": 162586490,\n      \"edID\": 128064102,\n      \"eddbID\": 960,\n      \"grp\": \"t\",\n      \"id\": \"tu\",\n      \"integrity\": 165,\n      \"mass\": 160,\n      \"maxmass\": 5040,\n      \"maxmul\": 1.16,\n      \"minmass\": 1680,\n      \"minmul\": 0.96,\n      \"optmass\": 3360,\n      \"optmul\": 1,\n      \"power\": 10.8,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_Engine_Size8_Class5\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Normal-space propulsion system. \"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 633200,\n      \"edID\": 128064093,\n      \"eddbID\": 951,\n      \"grp\": \"t\",\n      \"id\": \"tt\",\n      \"integrity\": 118,\n      \"mass\": 80,\n      \"maxmass\": 2160,\n      \"maxmul\": 1.03,\n      \"minmass\": 720,\n      \"minmul\": 0.83,\n      \"optmass\": 1440,\n      \"optmul\": 1,\n      \"power\": 6.08,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_Engine_Size7_Class1\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Normal-space propulsion system. \"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 1899600,\n      \"edID\": 128064094,\n      \"eddbID\": 952,\n      \"grp\": \"t\",\n      \"id\": \"ts\",\n      \"integrity\": 105,\n      \"mass\": 32,\n      \"maxmass\": 2430,\n      \"maxmul\": 1.06,\n      \"minmass\": 810,\n      \"minmul\": 0.86,\n      \"optmass\": 1620,\n      \"optmul\": 1,\n      \"power\": 6.84,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_Engine_Size7_Class2\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Normal-space propulsion system. \"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 5698790,\n      \"edID\": 128064095,\n      \"eddbID\": 953,\n      \"grp\": \"t\",\n      \"id\": \"tr\",\n      \"integrity\": 131,\n      \"mass\": 80,\n      \"maxmass\": 2700,\n      \"maxmul\": 1.1,\n      \"minmass\": 900,\n      \"minmul\": 0.9,\n      \"optmass\": 1800,\n      \"optmul\": 1,\n      \"power\": 7.6,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_Engine_Size7_Class3\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Normal-space propulsion system. \"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 17096370,\n      \"edID\": 128064096,\n      \"eddbID\": 954,\n      \"grp\": \"t\",\n      \"id\": \"tq\",\n      \"integrity\": 157,\n      \"mass\": 128,\n      \"maxmass\": 2970,\n      \"maxmul\": 1.13,\n      \"minmass\": 990,\n      \"minmul\": 0.93,\n      \"optmass\": 1980,\n      \"optmul\": 1,\n      \"power\": 8.36,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_Engine_Size7_Class4\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Normal-space propulsion system. \"\n    },\n    {\n      \"class\": 7,\n      \"cost\": 51289110,\n      \"edID\": 128064097,\n      \"eddbID\": 955,\n      \"grp\": \"t\",\n      \"id\": \"tp\",\n      \"integrity\": 144,\n      \"mass\": 80,\n      \"maxmass\": 3240,\n      \"maxmul\": 1.16,\n      \"minmass\": 1080,\n      \"minmul\": 0.96,\n      \"optmass\": 2160,\n      \"optmul\": 1,\n      \"power\": 9.12,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_Engine_Size7_Class5\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Normal-space propulsion system. \"\n    },\n    {\n      \"class\": 6,\n      \"cost\": 199750,\n      \"edID\": 128064088,\n      \"eddbID\": 946,\n      \"grp\": \"t\",\n      \"id\": \"to\",\n      \"integrity\": 102,\n      \"mass\": 40,\n      \"maxmass\": 1440,\n      \"maxmul\": 1.03,\n      \"minmass\": 480,\n      \"minmul\": 0.83,\n      \"optmass\": 960,\n      \"optmul\": 1,\n      \"power\": 5.04,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_Engine_Size6_Class1\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Normal-space propulsion system. \"\n    },\n    {\n      \"class\": 6,\n      \"cost\": 599240,\n      \"edID\": 128064089,\n      \"eddbID\": 947,\n      \"grp\": \"t\",\n      \"id\": \"tn\",\n      \"integrity\": 90,\n      \"mass\": 16,\n      \"maxmass\": 1620,\n      \"maxmul\": 1.06,\n      \"minmass\": 540,\n      \"minmul\": 0.86,\n      \"optmass\": 1080,\n      \"optmul\": 1,\n      \"power\": 5.67,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_Engine_Size6_Class2\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Normal-space propulsion system. \"\n    },\n    {\n      \"class\": 6,\n      \"cost\": 1797730,\n      \"edID\": 128064090,\n      \"eddbID\": 948,\n      \"grp\": \"t\",\n      \"id\": \"tm\",\n      \"integrity\": 113,\n      \"mass\": 40,\n      \"maxmass\": 1800,\n      \"maxmul\": 1.1,\n      \"minmass\": 600,\n      \"minmul\": 0.9,\n      \"optmass\": 1200,\n      \"optmul\": 1,\n      \"power\": 6.3,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_Engine_Size6_Class3\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Normal-space propulsion system. \"\n    },\n    {\n      \"class\": 6,\n      \"cost\": 5393180,\n      \"edID\": 128064091,\n      \"eddbID\": 949,\n      \"grp\": \"t\",\n      \"id\": \"tl\",\n      \"integrity\": 136,\n      \"mass\": 64,\n      \"maxmass\": 1980,\n      \"maxmul\": 1.13,\n      \"minmass\": 660,\n      \"minmul\": 0.93,\n      \"optmass\": 1320,\n      \"optmul\": 1,\n      \"power\": 6.93,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_Engine_Size6_Class4\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Normal-space propulsion system. \"\n    },\n    {\n      \"class\": 6,\n      \"cost\": 16179530,\n      \"edID\": 128064092,\n      \"eddbID\": 950,\n      \"grp\": \"t\",\n      \"id\": \"tk\",\n      \"integrity\": 124,\n      \"mass\": 40,\n      \"maxmass\": 2160,\n      \"maxmul\": 1.16,\n      \"minmass\": 720,\n      \"minmul\": 0.96,\n      \"optmass\": 1440,\n      \"optmul\": 1,\n      \"power\": 7.56,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_Engine_Size6_Class5\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Normal-space propulsion system. \"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 63010,\n      \"edID\": 128064083,\n      \"eddbID\": 941,\n      \"grp\": \"t\",\n      \"id\": \"tj\",\n      \"integrity\": 86,\n      \"mass\": 20,\n      \"maxmass\": 840,\n      \"maxmul\": 1.03,\n      \"minmass\": 280,\n      \"minmul\": 0.83,\n      \"optmass\": 560,\n      \"optmul\": 1,\n      \"power\": 4.08,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_Engine_Size5_Class1\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Normal-space propulsion system. \"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 189040,\n      \"edID\": 128064084,\n      \"eddbID\": 942,\n      \"grp\": \"t\",\n      \"id\": \"ti\",\n      \"integrity\": 77,\n      \"mass\": 8,\n      \"maxmass\": 945,\n      \"maxmul\": 1.06,\n      \"minmass\": 315,\n      \"minmul\": 0.86,\n      \"optmass\": 630,\n      \"optmul\": 1,\n      \"power\": 4.59,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_Engine_Size5_Class2\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Normal-space propulsion system. \"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 567110,\n      \"edID\": 128064085,\n      \"eddbID\": 943,\n      \"grp\": \"t\",\n      \"id\": \"th\",\n      \"integrity\": 96,\n      \"mass\": 20,\n      \"maxmass\": 1050,\n      \"maxmul\": 1.1,\n      \"minmass\": 350,\n      \"minmul\": 0.9,\n      \"optmass\": 700,\n      \"optmul\": 1,\n      \"power\": 5.1,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_Engine_Size5_Class3\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Normal-space propulsion system. \"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 1701320,\n      \"edID\": 128064086,\n      \"eddbID\": 944,\n      \"grp\": \"t\",\n      \"id\": \"tg\",\n      \"integrity\": 115,\n      \"mass\": 32,\n      \"maxmass\": 1155,\n      \"maxmul\": 1.13,\n      \"minmass\": 385,\n      \"minmul\": 0.93,\n      \"optmass\": 770,\n      \"optmul\": 1,\n      \"power\": 5.61,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_Engine_Size5_Class4\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Normal-space propulsion system. \"\n    },\n    {\n      \"class\": 5,\n      \"cost\": 5103950,\n      \"edID\": 128064087,\n      \"eddbID\": 945,\n      \"grp\": \"t\",\n      \"id\": \"tf\",\n      \"integrity\": 106,\n      \"mass\": 20,\n      \"maxmass\": 1260,\n      \"maxmul\": 1.16,\n      \"minmass\": 420,\n      \"minmul\": 0.96,\n      \"optmass\": 840,\n      \"optmul\": 1,\n      \"power\": 6.12,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_Engine_Size5_Class5\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Normal-space propulsion system. \"\n    },\n    {\n      \"class\": 4,\n      \"cost\": 19880,\n      \"edID\": 128064078,\n      \"eddbID\": 936,\n      \"grp\": \"t\",\n      \"id\": \"te\",\n      \"integrity\": 72,\n      \"mass\": 10,\n      \"maxmass\": 420,\n      \"maxmul\": 1.03,\n      \"minmass\": 140,\n      \"minmul\": 0.83,\n      \"optmass\": 280,\n      \"optmul\": 1,\n      \"power\": 3.28,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_Engine_Size4_Class1\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Normal-space propulsion system. \"\n    },\n    {\n      \"class\": 4,\n      \"cost\": 59630,\n      \"edID\": 128064079,\n      \"eddbID\": 937,\n      \"grp\": \"t\",\n      \"id\": \"td\",\n      \"integrity\": 64,\n      \"mass\": 4,\n      \"maxmass\": 472.5,\n      \"maxmul\": 1.06,\n      \"minmass\": 157.5,\n      \"minmul\": 0.86,\n      \"optmass\": 315,\n      \"optmul\": 1,\n      \"power\": 3.69,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_Engine_Size4_Class2\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Normal-space propulsion system. \"\n    },\n    {\n      \"class\": 4,\n      \"cost\": 178900,\n      \"edID\": 128064080,\n      \"eddbID\": 938,\n      \"grp\": \"t\",\n      \"id\": \"tc\",\n      \"integrity\": 80,\n      \"mass\": 10,\n      \"maxmass\": 525,\n      \"maxmul\": 1.1,\n      \"minmass\": 175,\n      \"minmul\": 0.9,\n      \"optmass\": 350,\n      \"optmul\": 1,\n      \"power\": 4.1,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_Engine_Size4_Class3\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Normal-space propulsion system. \"\n    },\n    {\n      \"class\": 4,\n      \"cost\": 536690,\n      \"edID\": 128064081,\n      \"eddbID\": 939,\n      \"grp\": \"t\",\n      \"id\": \"tb\",\n      \"integrity\": 96,\n      \"mass\": 16,\n      \"maxmass\": 577.5,\n      \"maxmul\": 1.13,\n      \"minmass\": 192.5,\n      \"minmul\": 0.93,\n      \"optmass\": 385,\n      \"optmul\": 1,\n      \"power\": 4.51,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_Engine_Size4_Class4\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Normal-space propulsion system. \"\n    },\n    {\n      \"class\": 4,\n      \"cost\": 1610080,\n      \"edID\": 128064082,\n      \"eddbID\": 940,\n      \"grp\": \"t\",\n      \"id\": \"ta\",\n      \"integrity\": 88,\n      \"mass\": 10,\n      \"maxmass\": 630,\n      \"maxmul\": 1.16,\n      \"minmass\": 210,\n      \"minmul\": 0.96,\n      \"optmass\": 420,\n      \"optmul\": 1,\n      \"power\": 4.92,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_Engine_Size4_Class5\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Normal-space propulsion system. \"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 6270,\n      \"edID\": 128064073,\n      \"eddbID\": 931,\n      \"grp\": \"t\",\n      \"id\": \"t9\",\n      \"integrity\": 58,\n      \"mass\": 5,\n      \"maxmass\": 120,\n      \"maxmul\": 1.03,\n      \"minmass\": 40,\n      \"minmul\": 0.83,\n      \"optmass\": 80,\n      \"optmul\": 1,\n      \"power\": 2.48,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_Engine_Size3_Class1\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Normal-space propulsion system. \"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 18810,\n      \"edID\": 128064074,\n      \"eddbID\": 932,\n      \"grp\": \"t\",\n      \"id\": \"t8\",\n      \"integrity\": 51,\n      \"mass\": 2,\n      \"maxmass\": 135,\n      \"maxmul\": 1.06,\n      \"minmass\": 45,\n      \"minmul\": 0.86,\n      \"optmass\": 90,\n      \"optmul\": 1,\n      \"power\": 2.79,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_Engine_Size3_Class2\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Normal-space propulsion system. \"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 56440,\n      \"edID\": 128064075,\n      \"eddbID\": 933,\n      \"grp\": \"t\",\n      \"id\": \"t7\",\n      \"integrity\": 64,\n      \"mass\": 5,\n      \"maxmass\": 150,\n      \"maxmul\": 1.1,\n      \"minmass\": 50,\n      \"minmul\": 0.9,\n      \"optmass\": 100,\n      \"optmul\": 1,\n      \"power\": 3.1,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_Engine_Size3_Class3\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Normal-space propulsion system. \"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 169300,\n      \"edID\": 128064076,\n      \"eddbID\": 934,\n      \"grp\": \"t\",\n      \"id\": \"t6\",\n      \"integrity\": 77,\n      \"mass\": 8,\n      \"maxmass\": 165,\n      \"maxmul\": 1.13,\n      \"minmass\": 55,\n      \"minmul\": 0.93,\n      \"optmass\": 110,\n      \"optmul\": 1,\n      \"power\": 3.41,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_Engine_Size3_Class4\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Normal-space propulsion system. \"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 507910,\n      \"edID\": 128064077,\n      \"eddbID\": 935,\n      \"grp\": \"t\",\n      \"id\": \"t5\",\n      \"integrity\": 72,\n      \"mass\": 5,\n      \"maxmass\": 180,\n      \"maxmul\": 1.16,\n      \"minmass\": 60,\n      \"minmul\": 0.96,\n      \"optmass\": 120,\n      \"optmul\": 1,\n      \"power\": 3.72,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_Engine_Size3_Class5\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Normal-space propulsion system. \"\n    },\n    {\n      \"class\": 2,\n      \"cost\": 1980,\n      \"edID\": 128064068,\n      \"eddbID\": 926,\n      \"grp\": \"t\",\n      \"id\": \"t4\",\n      \"integrity\": 46,\n      \"mass\": 2.5,\n      \"maxmass\": 72,\n      \"maxmul\": 1.03,\n      \"minmass\": 24,\n      \"minmul\": 0.83,\n      \"optmass\": 48,\n      \"optmul\": 1,\n      \"power\": 2,\n      \"rating\": \"E\",\n      \"symbol\": \"Int_Engine_Size2_Class1\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Normal-space propulsion system. \"\n    },\n    {\n      \"class\": 2,\n      \"cost\": 5930,\n      \"edID\": 128064069,\n      \"eddbID\": 927,\n      \"grp\": \"t\",\n      \"id\": \"t3\",\n      \"integrity\": 41,\n      \"mass\": 1,\n      \"maxmass\": 81,\n      \"maxmul\": 1.06,\n      \"minmass\": 27,\n      \"minmul\": 0.86,\n      \"optmass\": 54,\n      \"optmul\": 1,\n      \"power\": 2.25,\n      \"rating\": \"D\",\n      \"symbol\": \"Int_Engine_Size2_Class2\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Normal-space propulsion system. \"\n    },\n    {\n      \"class\": 2,\n      \"cost\": 17800,\n      \"edID\": 128064070,\n      \"eddbID\": 928,\n      \"grp\": \"t\",\n      \"id\": \"t2\",\n      \"integrity\": 51,\n      \"mass\": 2.5,\n      \"maxmass\": 90,\n      \"maxmul\": 1.1,\n      \"minmass\": 30,\n      \"minmul\": 0.9,\n      \"optmass\": 60,\n      \"optmul\": 1,\n      \"power\": 2.5,\n      \"rating\": \"C\",\n      \"symbol\": \"Int_Engine_Size2_Class3\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Normal-space propulsion system. \"\n    },\n    {\n      \"class\": 2,\n      \"cost\": 53410,\n      \"edID\": 128064071,\n      \"eddbID\": 929,\n      \"grp\": \"t\",\n      \"id\": \"t1\",\n      \"integrity\": 61,\n      \"mass\": 4,\n      \"maxmass\": 99,\n      \"maxmul\": 1.13,\n      \"minmass\": 33,\n      \"minmul\": 0.93,\n      \"optmass\": 66,\n      \"optmul\": 1,\n      \"power\": 2.75,\n      \"rating\": \"B\",\n      \"symbol\": \"Int_Engine_Size2_Class4\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Normal-space propulsion system. \"\n    },\n    {\n      \"class\": 2,\n      \"cost\": 160220,\n      \"edID\": 128064072,\n      \"eddbID\": 930,\n      \"grp\": \"t\",\n      \"id\": \"t0\",\n      \"integrity\": 56,\n      \"mass\": 2.5,\n      \"maxmass\": 108,\n      \"maxmul\": 1.16,\n      \"minmass\": 36,\n      \"minmul\": 0.96,\n      \"optmass\": 72,\n      \"optmul\": 1,\n      \"power\": 3,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_Engine_Size2_Class5\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Normal-space propulsion system. \"\n    },\n    {\n      \"class\": 3,\n      \"cost\": 5103950,\n      \"edID\": 128682013,\n      \"eddbID\": 1548,\n      \"grp\": \"t\",\n      \"id\": \"tz\",\n      \"integrity\": 55,\n      \"mass\": 5,\n      \"maxmass\": 200,\n      \"maxmul\": 1.367,\n      \"maxmulacceleration\": 1.2,\n      \"maxmulrotation\": 1.3,\n      \"maxmulspeed\": 1.6,\n      \"minmass\": 70,\n      \"minmul\": 0.9,\n      \"minmulacceleration\": 0.9,\n      \"minmulrotation\": 0.9,\n      \"minmulspeed\": 0.9,\n      \"name\": \"Enhanced Performance\",\n      \"optmass\": 90,\n      \"optmul\": 1.15,\n      \"optmulacceleration\": 1.1,\n      \"optmulrotation\": 1.1,\n      \"optmulspeed\": 1.25,\n      \"power\": 5,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_Engine_Size3_Class5_Fast\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Enhanced performance normal-space propulsion system.\"\n    },\n    {\n      \"class\": 2,\n      \"cost\": 1610080,\n      \"edID\": 128682014,\n      \"eddbID\": 1547,\n      \"grp\": \"t\",\n      \"id\": \"u0\",\n      \"integrity\": 40,\n      \"mass\": 2.5,\n      \"maxmass\": 120,\n      \"maxmul\": 1.367,\n      \"maxmulacceleration\": 1.2,\n      \"maxmulrotation\": 1.3,\n      \"maxmulspeed\": 1.6,\n      \"minmass\": 50,\n      \"minmul\": 0.9,\n      \"minmulacceleration\": 0.9,\n      \"minmulrotation\": 0.9,\n      \"minmulspeed\": 0.9,\n      \"name\": \"Enhanced Performance\",\n      \"optmass\": 60,\n      \"optmul\": 1.15,\n      \"optmulacceleration\": 1.1,\n      \"optmulrotation\": 1.1,\n      \"optmulspeed\": 1.25,\n      \"power\": 4,\n      \"rating\": \"A\",\n      \"symbol\": \"Int_Engine_Size2_Class5_Fast\",\n      \"ukName\": \"Thrusters\",\n      \"ukDiscript\": \"Enhanced performance normal-space propulsion system.\"\n    }\n  ]\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/adder.json",
    "content": "{\n  \"adder\": {\n    \"edID\": 128049267,\n    \"eddbID\": 1,\n    \"properties\": {\n      \"name\": \"Adder\",\n      \"manufacturer\": \"Zorgon Peterson\",\n      \"class\": 1,\n      \"hullCost\": 40000,\n      \"speed\": 220,\n      \"boost\": 320,\n      \"boostEnergy\": 9,\n      \"heatCapacity\": 170,\n      \"baseShieldStrength\": 60,\n      \"baseArmour\": 90,\n      \"hardness\": 35,\n      \"hullMass\": 35,\n      \"masslock\": 7,\n      \"pipSpeed\": 0.13636363636364,\n      \"pitch\": 38,\n      \"roll\": 100,\n      \"yaw\": 14,\n      \"crew\": 2,\n      \"reserveFuelCapacity\": 0.36\n    },\n    \"retailCost\": 87810,\n    \"bulkheads\": [\n      {\n        \"id\": \"BC\",\n        \"edID\": 128049268,\n        \"eddbID\": 753,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"BD\",\n        \"edID\": 128049269,\n        \"eddbID\": 754,\n        \"grp\": \"bh\",\n        \"cost\": 35120,\n        \"mass\": 3,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"BE\",\n        \"edID\": 128049270,\n        \"eddbID\": 755,\n        \"grp\": \"bh\",\n        \"cost\": 79030,\n        \"mass\": 5,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"BF\",\n        \"edID\": 128049271,\n        \"eddbID\": 756,\n        \"grp\": \"bh\",\n        \"cost\": 186770,\n        \"mass\": 5,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"BG\",\n        \"edID\": 128049272,\n        \"eddbID\": 757,\n        \"grp\": \"bh\",\n        \"cost\": 206960,\n        \"mass\": 5,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        3,\n        3,\n        3,\n        1,\n        2,\n        3,\n        3\n      ],\n      \"hardpoints\": [\n        2,\n        1,\n        1,\n        0,\n        0\n      ],\n      \"internal\": [\n        3,\n        3,\n        2,\n        2,\n        1,\n        1,\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"3E\",\n        \"3E\",\n        \"3E\",\n        \"1E\",\n        \"2E\",\n        \"3E\",\n        \"3C\"\n      ],\n      \"hardpoints\": [\n        0,\n        17,\n        17,\n        0,\n        0\n      ],\n      \"internal\": [\n        \"01\",\n        \"44\",\n        \"00\",\n        0,\n        \"\",\n        0,\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/alliance_challenger.json",
    "content": "{\n  \"alliance_challenger\": {\n    \"edID\": 128816588,\n    \"eddbID\": 34,\n    \"properties\": {\n      \"name\": \"Alliance Challenger\",\n      \"manufacturer\": \"Lakon\",\n      \"class\": 2,\n      \"hullCost\": 28041035,\n      \"speed\": 204,\n      \"boost\": 310,\n      \"boostEnergy\": 19,\n      \"heatCapacity\": 316,\n      \"baseShieldStrength\": 220,\n      \"baseArmour\": 300,\n      \"hardness\": 65,\n      \"hullMass\": 450,\n      \"masslock\": 13,\n      \"pipSpeed\": 0.088709677419355,\n      \"pitch\": 32,\n      \"roll\": 90,\n      \"yaw\": 16,\n      \"crew\": 2,\n      \"reserveFuelCapacity\": 0.77\n    },\n    \"retailCost\": 30472265,\n    \"requirements\": {\n      \"horizons\": true\n    },\n    \"bulkheads\": [\n      {\n        \"id\": \"0K\",\n        \"edID\": 128816590,\n        \"eddbID\": 1650,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"0P\",\n        \"edID\": 128816591,\n        \"eddbID\": 1651,\n        \"grp\": \"bh\",\n        \"cost\": 6803170,\n        \"mass\": 40,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"0Q\",\n        \"edID\": 128816592,\n        \"eddbID\": 1652,\n        \"grp\": \"bh\",\n        \"cost\": 15307134,\n        \"mass\": 78,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"0R\",\n        \"edID\": 128816593,\n        \"eddbID\": 1653,\n        \"grp\": \"bh\",\n        \"cost\": 36175859,\n        \"mass\": 78,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"0S\",\n        \"edID\": 128816594,\n        \"eddbID\": 1654,\n        \"grp\": \"bh\",\n        \"cost\": 40087682,\n        \"mass\": 78,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        6,\n        6,\n        5,\n        5,\n        6,\n        4,\n        4\n      ],\n      \"hardpoints\": [\n        3,\n        2,\n        2,\n        2,\n        1,\n        1,\n        1,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        6,\n        6,\n        3,\n        3,\n        2,\n        2,\n        {\n          \"class\": 4,\n          \"name\": \"Military\",\n          \"eligible\": {\n            \"mahr\": 1,\n            \"hr\": 1,\n            \"scb\": 1,\n            \"mrp\": 1,\n            \"gsrp\": 1,\n            \"gmrp\": 1,\n            \"ghrp\": 1\n          }\n        },\n        {\n          \"class\": 4,\n          \"name\": \"Military\",\n          \"eligible\": {\n            \"mahr\": 1,\n            \"hr\": 1,\n            \"scb\": 1,\n            \"mrp\": 1,\n            \"gsrp\": 1,\n            \"gmrp\": 1,\n            \"ghrp\": 1\n          }\n        },\n        {\n          \"class\": 4,\n          \"name\": \"Military\",\n          \"eligible\": {\n            \"mahr\": 1,\n            \"hr\": 1,\n            \"scb\": 1,\n            \"mrp\": 1,\n            \"gsrp\": 1,\n            \"gmrp\": 1,\n            \"ghrp\": 1\n          }\n        },\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"6E\",\n        \"6E\",\n        \"5E\",\n        \"5E\",\n        \"6E\",\n        \"4E\",\n        \"4C\"\n      ],\n      \"hardpoints\": [\n        17,\n        0,\n        17,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        \"04\",\n        \"4j\",\n        \"01\",\n        \"01\",\n        \"\",\n        \"\",\n        \"\",\n        \"\",\n        \"\",\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/alliance_chieftain.json",
    "content": "{\n  \"alliance_chieftain\": {\n    \"edID\": 128816574,\n    \"eddbID\": 33,\n    \"properties\": {\n      \"name\": \"Alliance Chieftain\",\n      \"manufacturer\": \"Lakon\",\n      \"class\": 2,\n      \"hullCost\": 18182883,\n      \"speed\": 230,\n      \"boost\": 330,\n      \"boostEnergy\": 19,\n      \"baseShieldStrength\": 200,\n      \"heatCapacity\": 289,\n      \"baseArmour\": 280,\n      \"hardness\": 65,\n      \"hullMass\": 400,\n      \"masslock\": 13,\n      \"pipSpeed\": 0.08695652173913,\n      \"pitch\": 39,\n      \"roll\": 92,\n      \"yaw\": 16,\n      \"crew\": 2,\n      \"reserveFuelCapacity\": 0.77\n    },\n    \"retailCost\": 19382252,\n    \"requirements\": {\n      \"horizons\": true\n    },\n    \"bulkheads\": [\n      {\n        \"id\": \"CI\",\n        \"edID\": 128816576,\n        \"eddbID\": 1640,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"CJ\",\n        \"edID\": 128816577,\n        \"eddbID\": 1641,\n        \"grp\": \"bh\",\n        \"cost\": 6803170,\n        \"mass\": 40,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"CK\",\n        \"edID\": 128816578,\n        \"eddbID\": 1642,\n        \"grp\": \"bh\",\n        \"cost\": 15307134,\n        \"mass\": 78,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"CL\",\n        \"edID\": 128816579,\n        \"eddbID\": 1643,\n        \"grp\": \"bh\",\n        \"cost\": 36175859,\n        \"mass\": 78,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"CM\",\n        \"edID\": 128816580,\n        \"eddbID\": 1644,\n        \"grp\": \"bh\",\n        \"cost\": 40087682,\n        \"mass\": 78,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        6,\n        6,\n        5,\n        5,\n        6,\n        4,\n        4\n      ],\n      \"hardpoints\": [\n        3,\n        3,\n        2,\n        1,\n        1,\n        1,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        6,\n        5,\n        4,\n        2,\n        2,\n        {\n          \"class\": 4,\n          \"name\": \"Military\",\n          \"eligible\": {\n            \"mahr\": 1,\n            \"hr\": 1,\n            \"scb\": 1,\n            \"mrp\": 1,\n            \"gsrp\": 1,\n            \"gmrp\": 1,\n            \"ghrp\": 1\n          }\n        },\n        {\n          \"class\": 4,\n          \"name\": \"Military\",\n          \"eligible\": {\n            \"mahr\": 1,\n            \"hr\": 1,\n            \"scb\": 1,\n            \"mrp\": 1,\n            \"gsrp\": 1,\n            \"gmrp\": 1,\n            \"ghrp\": 1\n          }\n        },\n        {\n          \"class\": 4,\n          \"name\": \"Military\",\n          \"eligible\": {\n            \"mahr\": 1,\n            \"hr\": 1,\n            \"scb\": 1,\n            \"mrp\": 1,\n            \"gsrp\": 1,\n            \"gmrp\": 1,\n            \"ghrp\": 1\n          }\n        },\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"6E\",\n        \"6E\",\n        \"5E\",\n        \"5E\",\n        \"6E\",\n        \"4E\",\n        \"4C\"\n      ],\n      \"hardpoints\": [\n        17,\n        0,\n        17,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        \"04\",\n        \"4e\",\n        \"02\",\n        \"\",\n        \"\",\n        \"\",\n        \"\",\n        \"\",\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/alliance_crusader.json",
    "content": "{\n  \"alliance_crusader\": {\n    \"edID\": 128816581,\n    \"eddbID\": 36,\n    \"properties\": {\n      \"name\": \"Alliance Crusader\",\n      \"manufacturer\": \"Lakon\",\n      \"class\": 2,\n      \"hullCost\": 22866341,\n      \"speed\": 180,\n      \"boost\": 300,\n      \"boostEnergy\": 19,\n      \"baseShieldStrength\": 200,\n      \"baseArmour\": 300,\n      \"heatCapacity\": 316,\n      \"hardness\": 65,\n      \"hullMass\": 500,\n      \"masslock\": 13,\n      \"fighterHangars\": true,\n      \"pipSpeed\": 0.15833333333333,\n      \"pitch\": 32,\n      \"roll\": 80,\n      \"yaw\": 16,\n      \"crew\": 3,\n      \"reserveFuelCapacity\": 0.77\n    },\n    \"retailCost\": 19382252,\n    \"requirements\": {\n      \"horizons\": true\n    },\n    \"bulkheads\": [\n      {\n        \"id\": \"3U\",\n        \"edID\": 128816583,\n        \"eddbID\": 1659,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"3V\",\n        \"edID\": 128816584,\n        \"eddbID\": 1660,\n        \"grp\": \"bh\",\n        \"cost\": 6803170,\n        \"mass\": 40,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"3W\",\n        \"edID\": 128816585,\n        \"eddbID\": 1661,\n        \"grp\": \"bh\",\n        \"cost\": 15307134,\n        \"mass\": 78,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"3X\",\n        \"edID\": 128816586,\n        \"eddbID\": 1662,\n        \"grp\": \"bh\",\n        \"cost\": 36175859,\n        \"mass\": 78,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"3Z\",\n        \"edID\": 128816587,\n        \"eddbID\": 1663,\n        \"grp\": \"bh\",\n        \"cost\": 40087682,\n        \"mass\": 78,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        6,\n        6,\n        5,\n        5,\n        6,\n        4,\n        4\n      ],\n      \"hardpoints\": [\n        3,\n        2,\n        2,\n        1,\n        1,\n        1,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        6,\n        5,\n        3,\n        3,\n        2,\n        2,\n        {\n          \"class\": 4,\n          \"name\": \"Military\",\n          \"eligible\": {\n            \"mahr\": 1,\n            \"hr\": 1,\n            \"scb\": 1,\n            \"mrp\": 1,\n            \"gsrp\": 1,\n            \"gmrp\": 1,\n            \"ghrp\": 1\n          }\n        },\n        {\n          \"class\": 4,\n          \"name\": \"Military\",\n          \"eligible\": {\n            \"mahr\": 1,\n            \"hr\": 1,\n            \"scb\": 1,\n            \"mrp\": 1,\n            \"gsrp\": 1,\n            \"gmrp\": 1,\n            \"ghrp\": 1\n          }\n        },\n        {\n          \"class\": 4,\n          \"name\": \"Military\",\n          \"eligible\": {\n            \"mahr\": 1,\n            \"hr\": 1,\n            \"scb\": 1,\n            \"mrp\": 1,\n            \"gsrp\": 1,\n            \"gmrp\": 1,\n            \"ghrp\": 1\n          }\n        },\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"6E\",\n        \"6E\",\n        \"5E\",\n        \"5E\",\n        \"6E\",\n        \"4E\",\n        \"4C\"\n      ],\n      \"hardpoints\": [\n        17,\n        0,\n        17,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        \"04\",\n        \"4e\",\n        \"02\",\n        \"\",\n        \"\",\n        \"\",\n        \"\",\n        \"\",\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/anaconda.json",
    "content": "{\n  \"anaconda\": {\n    \"edID\": 128049363,\n    \"eddbID\": 2,\n    \"properties\": {\n      \"name\": \"Anaconda\",\n      \"manufacturer\": \"Faulcon DeLacy\",\n      \"class\": 3,\n      \"hullCost\": 141889930,\n      \"speed\": 180,\n      \"boost\": 240,\n      \"boostEnergy\": 27,\n      \"baseShieldStrength\": 350,\n      \"baseArmour\": 525,\n      \"heatCapacity\": 334,\n      \"hardness\": 65,\n      \"hullMass\": 400,\n      \"masslock\": 23,\n      \"pipSpeed\": 0.13888888888889,\n      \"fighterHangars\": true,\n      \"pitch\": 25,\n      \"roll\": 60,\n      \"yaw\": 10,\n      \"crew\": 3,\n      \"reserveFuelCapacity\": 1.07\n    },\n    \"retailCost\": 146969450,\n    \"bulkheads\": [\n      {\n        \"id\": \"bT\",\n        \"edID\": 128049364,\n        \"eddbID\": 818,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"bU\",\n        \"edID\": 128049365,\n        \"eddbID\": 819,\n        \"grp\": \"bh\",\n        \"cost\": 58787780,\n        \"mass\": 30,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"bV\",\n        \"edID\": 128049366,\n        \"eddbID\": 820,\n        \"grp\": \"bh\",\n        \"cost\": 132272510,\n        \"mass\": 60,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"bW\",\n        \"edID\": 128049367,\n        \"eddbID\": 821,\n        \"grp\": \"bh\",\n        \"cost\": 312604020,\n        \"mass\": 60,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"bX\",\n        \"edID\": 128049368,\n        \"eddbID\": 822,\n        \"grp\": \"bh\",\n        \"cost\": 346407000,\n        \"mass\": 60,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        8,\n        7,\n        6,\n        5,\n        8,\n        8,\n        5\n      ],\n      \"hardpoints\": [\n        4,\n        3,\n        3,\n        3,\n        2,\n        2,\n        1,\n        1,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        7,\n        6,\n        6,\n        6,\n        5,\n        5,\n        5,\n        {\n          \"class\": 5,\n          \"name\": \"Military\",\n          \"eligible\": {\n            \"mahr\": 1,\n            \"hr\": 1,\n            \"scb\": 1,\n            \"mrp\": 1,\n            \"gsrp\": 1,\n            \"gmrp\": 1,\n            \"ghrp\": 1\n          }\n        },\n        4,\n        4,\n        4,\n        2,\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"8E\",\n        \"7E\",\n        \"6E\",\n        \"5E\",\n        \"8E\",\n        \"8E\",\n        \"5C\"\n      ],\n      \"hardpoints\": [\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        17,\n        17,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        \"05\",\n        \"04\",\n        \"4j\",\n        0,\n        \"03\",\n        0,\n        0,\n        0,\n        0,\n        0,\n        \"\",\n        \"00\",\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/asp.json",
    "content": "{\n  \"asp\": {\n    \"edID\": 128049303,\n    \"eddbID\": 3,\n    \"properties\": {\n      \"name\": \"Asp Explorer\",\n      \"manufacturer\": \"Lakon\",\n      \"class\": 2,\n      \"hullCost\": 6135660,\n      \"speed\": 250,\n      \"boost\": 340,\n      \"boostEnergy\": 13,\n      \"baseShieldStrength\": 140,\n      \"heatCapacity\": 272,\n      \"baseArmour\": 210,\n      \"hardness\": 52,\n      \"hullMass\": 280,\n      \"masslock\": 11,\n      \"pipSpeed\": 0.13,\n      \"pitch\": 38,\n      \"roll\": 100,\n      \"yaw\": 10,\n      \"crew\": 2,\n      \"reserveFuelCapacity\": 0.63\n    },\n    \"retailCost\": 6661150,\n    \"bulkheads\": [\n      {\n        \"id\": \"BH\",\n        \"edID\": 128049304,\n        \"eddbID\": 778,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"BI\",\n        \"edID\": 128049305,\n        \"eddbID\": 779,\n        \"grp\": \"bh\",\n        \"cost\": 2664460,\n        \"mass\": 21,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"BJ\",\n        \"edID\": 128049306,\n        \"eddbID\": 780,\n        \"grp\": \"bh\",\n        \"cost\": 5995040,\n        \"mass\": 42,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"BK\",\n        \"edID\": 128049307,\n        \"eddbID\": 781,\n        \"grp\": \"bh\",\n        \"cost\": 14168270,\n        \"mass\": 42,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"BL\",\n        \"edID\": 128049308,\n        \"eddbID\": 782,\n        \"grp\": \"bh\",\n        \"cost\": 15700340,\n        \"mass\": 42,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        5,\n        5,\n        5,\n        4,\n        4,\n        5,\n        5\n      ],\n      \"hardpoints\": [\n        2,\n        2,\n        1,\n        1,\n        1,\n        1,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        6,\n        5,\n        3,\n        3,\n        3,\n        2,\n        2,\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"5E\",\n        \"5E\",\n        \"5E\",\n        \"4E\",\n        \"4E\",\n        \"5E\",\n        \"5C\"\n      ],\n      \"hardpoints\": [\n        0,\n        0,\n        17,\n        17,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        \"04\",\n        \"4e\",\n        \"01\",\n        0,\n        0,\n        \"00\",\n        \"\",\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/asp_scout.json",
    "content": "{\n  \"asp_scout\": {\n    \"edID\": 128672276,\n    \"eddbID\": 24,\n    \"properties\": {\n      \"name\": \"Asp Scout\",\n      \"manufacturer\": \"Lakon\",\n      \"class\": 2,\n      \"hullCost\": 3818240,\n      \"speed\": 220,\n      \"boost\": 300,\n      \"boostEnergy\": 13,\n      \"baseShieldStrength\": 120,\n      \"heatCapacity\": 210,\n      \"baseArmour\": 180,\n      \"hardness\": 52,\n      \"hullMass\": 150,\n      \"masslock\": 8,\n      \"pipSpeed\": 0.125,\n      \"pitch\": 40,\n      \"roll\": 110,\n      \"yaw\": 15,\n      \"crew\": 2,\n      \"reserveFuelCapacity\": 0.47\n    },\n    \"retailCost\": 3961150,\n    \"bulkheads\": [\n      {\n        \"id\": \"c1\",\n        \"edID\": 128672278,\n        \"eddbID\": 1503,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"c2\",\n        \"edID\": 128672279,\n        \"eddbID\": 1504,\n        \"grp\": \"bh\",\n        \"cost\": 1584460,\n        \"mass\": 21,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"c3\",\n        \"edID\": 128672280,\n        \"eddbID\": 1505,\n        \"grp\": \"bh\",\n        \"cost\": 3565040,\n        \"mass\": 42,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"c4\",\n        \"edID\": 128672281,\n        \"eddbID\": 1506,\n        \"grp\": \"bh\",\n        \"cost\": 8425380,\n        \"mass\": 42,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"c5\",\n        \"edID\": 128672282,\n        \"eddbID\": 1507,\n        \"grp\": \"bh\",\n        \"cost\": 9336440,\n        \"mass\": 42,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        4,\n        4,\n        4,\n        3,\n        4,\n        4,\n        4\n      ],\n      \"hardpoints\": [\n        2,\n        2,\n        1,\n        1,\n        0,\n        0\n      ],\n      \"internal\": [\n        5,\n        4,\n        3,\n        3,\n        2,\n        2,\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"4E\",\n        \"4E\",\n        \"4E\",\n        \"3E\",\n        \"4E\",\n        \"4E\",\n        \"4C\"\n      ],\n      \"hardpoints\": [\n        0,\n        0,\n        17,\n        17,\n        0,\n        0\n      ],\n      \"internal\": [\n        \"02\",\n        \"02\",\n        \"44\",\n        0,\n        0,\n        0,\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/beluga.json",
    "content": "{\n  \"beluga\": {\n    \"edID\": 128049345,\n    \"eddbID\": 30,\n    \"properties\": {\n      \"name\": \"Beluga Liner\",\n      \"manufacturer\": \"Saud Kruger\",\n      \"class\": 3,\n      \"hullCost\": 79654610,\n      \"speed\": 200,\n      \"boost\": 280,\n      \"boostEnergy\": 19,\n      \"baseShieldStrength\": 280,\n      \"heatCapacity\": 283,\n      \"baseArmour\": 280,\n      \"hardness\": 60,\n      \"hullMass\": 950,\n      \"masslock\": 18,\n      \"pipSpeed\": 0.1125,\n      \"luxuryCabins\": true,\n      \"fighterHangars\": true,\n      \"pitch\": 25,\n      \"roll\": 60,\n      \"yaw\": 17,\n      \"crew\": 3,\n      \"reserveFuelCapacity\": 0.81\n    },\n    \"retailCost\": 84532770,\n    \"requirements\": {\n      \"horizons\": true\n    },\n    \"bulkheads\": [\n      {\n        \"id\": \"cl\",\n        \"edID\": 128049346,\n        \"eddbID\": 1554,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"cm\",\n        \"edID\": 128049347,\n        \"eddbID\": 1555,\n        \"grp\": \"bh\",\n        \"cost\": 33813120,\n        \"mass\": 83,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"cn\",\n        \"edID\": 128049348,\n        \"eddbID\": 1556,\n        \"grp\": \"bh\",\n        \"cost\": 76079500,\n        \"mass\": 165,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"co\",\n        \"edID\": 128049349,\n        \"eddbID\": 1557,\n        \"grp\": \"bh\",\n        \"cost\": 179801200,\n        \"mass\": 165,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"cp\",\n        \"edID\": 128049350,\n        \"eddbID\": 1558,\n        \"grp\": \"bh\",\n        \"cost\": 199243730,\n        \"mass\": 165,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        6,\n        7,\n        7,\n        8,\n        6,\n        5,\n        7\n      ],\n      \"hardpoints\": [\n        2,\n        2,\n        2,\n        2,\n        2,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        6,\n        6,\n        6,\n        6,\n        5,\n        5,\n        4,\n        3,\n        3,\n        3,\n        3,\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"6E\",\n        \"7E\",\n        \"7E\",\n        \"8E\",\n        \"6E\",\n        \"5E\",\n        \"7C\"\n      ],\n      \"hardpoints\": [\n        17,\n        17,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        \"4j\",\n        \"04\",\n        \"mi\",\n        \"mi\",\n        \"mg\",\n        \"mg\",\n        \"02\",\n        \"01\",\n        0,\n        0,\n        \"\",\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/cobra_mk_iii.json",
    "content": "{\n  \"cobra_mk_iii\": {\n    \"edID\": 128049279,\n    \"eddbID\": 4,\n    \"properties\": {\n      \"name\": \"Cobra Mk III\",\n      \"manufacturer\": \"Faulcon DeLacy\",\n      \"class\": 1,\n      \"hullCost\": 205800,\n      \"speed\": 280,\n      \"boost\": 400,\n      \"boostEnergy\": 10,\n      \"baseShieldStrength\": 80,\n      \"baseArmour\": 120,\n      \"heatCapacity\": 225,\n      \"hardness\": 35,\n      \"hullMass\": 180,\n      \"masslock\": 8,\n      \"pipSpeed\": 0.125,\n      \"pitch\": 40,\n      \"roll\": 100,\n      \"yaw\": 10,\n      \"crew\": 2,\n      \"reserveFuelCapacity\": 0.49\n    },\n    \"retailCost\": 349720,\n    \"bulkheads\": [\n      {\n        \"id\": \"bk\",\n        \"edID\": 128049280,\n        \"eddbID\": 763,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"bl\",\n        \"edID\": 128049281,\n        \"eddbID\": 764,\n        \"grp\": \"bh\",\n        \"cost\": 151890,\n        \"mass\": 14,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"bm\",\n        \"edID\": 128049282,\n        \"eddbID\": 765,\n        \"grp\": \"bh\",\n        \"cost\": 341750,\n        \"mass\": 27,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"bn\",\n        \"edID\": 128049283,\n        \"eddbID\": 766,\n        \"grp\": \"bh\",\n        \"cost\": 797410,\n        \"mass\": 27,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"bo\",\n        \"edID\": 128049284,\n        \"eddbID\": 767,\n        \"grp\": \"bh\",\n        \"cost\": 895000,\n        \"mass\": 27,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        4,\n        4,\n        4,\n        3,\n        3,\n        3,\n        4\n      ],\n      \"hardpoints\": [\n        2,\n        2,\n        1,\n        1,\n        0,\n        0\n      ],\n      \"internal\": [\n        4,\n        4,\n        4,\n        2,\n        2,\n        2,\n        1,\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"4E\",\n        \"4E\",\n        \"4E\",\n        \"3E\",\n        \"3E\",\n        \"3E\",\n        \"4C\"\n      ],\n      \"hardpoints\": [\n        17,\n        17,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        \"02\",\n        \"02\",\n        \"49\",\n        \"00\",\n        0,\n        \"\",\n        0,\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/cobra_mk_iv.json",
    "content": "{\n  \"cobra_mk_iv\": {\n    \"edID\": 128672262,\n    \"eddbID\": 29,\n    \"properties\": {\n      \"name\": \"Cobra Mk IV\",\n      \"manufacturer\": \"Faulcon DeLacy\",\n      \"class\": 1,\n      \"hullCost\": 603740,\n      \"speed\": 200,\n      \"boost\": 300,\n      \"boostEnergy\": 10,\n      \"baseShieldStrength\": 120,\n      \"heatCapacity\": 228,\n      \"baseArmour\": 120,\n      \"hardness\": 35,\n      \"hullMass\": 210,\n      \"masslock\": 8,\n      \"pipSpeed\": 0.125,\n      \"pitch\": 30,\n      \"roll\": 90,\n      \"yaw\": 10,\n      \"crew\": 2,\n      \"reserveFuelCapacity\": 0.51\n    },\n    \"retailCost\": 747660,\n    \"requirements\": {\n      \"horizonsEarlyAdoption\": true\n    },\n    \"bulkheads\": [\n      {\n        \"id\": \"cg\",\n        \"edID\": 128672264,\n        \"eddbID\": 1518,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"ch\",\n        \"edID\": 128672265,\n        \"eddbID\": 1519,\n        \"grp\": \"bh\",\n        \"cost\": 305890,\n        \"mass\": 14,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"ci\",\n        \"edID\": 128672266,\n        \"eddbID\": 1520,\n        \"grp\": \"bh\",\n        \"cost\": 688250,\n        \"mass\": 27,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"cj\",\n        \"edID\": 128672267,\n        \"eddbID\": 1521,\n        \"grp\": \"bh\",\n        \"cost\": 1605910,\n        \"mass\": 27,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"ck\",\n        \"edID\": 128672268,\n        \"eddbID\": 1522,\n        \"grp\": \"bh\",\n        \"cost\": 1802440,\n        \"mass\": 27,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        4,\n        4,\n        4,\n        3,\n        3,\n        3,\n        4\n      ],\n      \"hardpoints\": [\n        2,\n        2,\n        1,\n        1,\n        1,\n        0,\n        0\n      ],\n      \"internal\": [\n        4,\n        4,\n        4,\n        4,\n        3,\n        3,\n        2,\n        2,\n        1,\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"4E\",\n        \"4E\",\n        \"4E\",\n        \"3E\",\n        \"3E\",\n        \"3E\",\n        \"4C\"\n      ],\n      \"hardpoints\": [\n        17,\n        17,\n        0,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        \"02\",\n        \"02\",\n        \"49\",\n        0,\n        0,\n        0,\n        \"00\",\n        \"\",\n        0,\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/diamondback_explorer.json",
    "content": "{\n  \"diamondback_explorer\": {\n    \"edID\": 128671831,\n    \"eddbID\": 5,\n    \"properties\": {\n      \"name\": \"Diamondback Explorer\",\n      \"manufacturer\": \"Lakon\",\n      \"class\": 1,\n      \"hullCost\": 1635700,\n      \"speed\": 260,\n      \"boost\": 340,\n      \"boostEnergy\": 13,\n      \"baseShieldStrength\": 150,\n      \"baseArmour\": 150,\n      \"hardness\": 42,\n      \"heatCapacity\": 351,\n      \"hullMass\": 260,\n      \"masslock\": 10,\n      \"pipSpeed\": 0.098214285714286,\n      \"pitch\": 35,\n      \"roll\": 90,\n      \"yaw\": 13,\n      \"crew\": 1,\n      \"reserveFuelCapacity\": 0.52\n    },\n    \"retailCost\": 1894760,\n    \"bulkheads\": [\n      {\n        \"id\": \"ba\",\n        \"edID\": 128671832,\n        \"eddbID\": 1456,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"bb\",\n        \"edID\": 128671833,\n        \"eddbID\": 1457,\n        \"grp\": \"bh\",\n        \"cost\": 800000,\n        \"mass\": 23,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"bc\",\n        \"edID\": 128671834,\n        \"eddbID\": 1458,\n        \"grp\": \"bh\",\n        \"cost\": 1800000,\n        \"mass\": 47,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"bd\",\n        \"edID\": 128671835,\n        \"eddbID\": 1459,\n        \"grp\": \"bh\",\n        \"cost\": 4200000,\n        \"mass\": 26,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"be\",\n        \"edID\": 128671836,\n        \"eddbID\": 1460,\n        \"grp\": \"bh\",\n        \"cost\": 4714000,\n        \"mass\": 47,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        4,\n        4,\n        5,\n        3,\n        4,\n        3,\n        5\n      ],\n      \"hardpoints\": [\n        3,\n        2,\n        2,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        4,\n        4,\n        3,\n        3,\n        2,\n        2,\n        1,\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"4E\",\n        \"4E\",\n        \"5E\",\n        \"3E\",\n        \"4E\",\n        \"3E\",\n        \"5C\"\n      ],\n      \"hardpoints\": [\n        0,\n        17,\n        17,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        \"49\",\n        \"02\",\n        \"01\",\n        0,\n        \"\",\n        0,\n        0,\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/diamondback_scout.json",
    "content": "{\n  \"diamondback\": {\n    \"edID\": 128671217,\n    \"eddbID\": 6,\n    \"properties\": {\n      \"name\": \"Diamondback Scout\",\n      \"manufacturer\": \"Lakon\",\n      \"class\": 1,\n      \"hullCost\": 461340,\n      \"speed\": 280,\n      \"boost\": 380,\n      \"boostEnergy\": 10,\n      \"baseShieldStrength\": 120,\n      \"baseArmour\": 120,\n      \"hardness\": 40,\n      \"heatCapacity\": 346,\n      \"hullMass\": 170,\n      \"masslock\": 8,\n      \"pipSpeed\": 0.096153846153846,\n      \"pitch\": 42,\n      \"roll\": 100,\n      \"yaw\": 15,\n      \"crew\": 1,\n      \"reserveFuelCapacity\": 0.49\n    },\n    \"retailCost\": 564330,\n    \"bulkheads\": [\n      {\n        \"id\": \"b5\",\n        \"edID\": 128671218,\n        \"eddbID\": 1384,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"b6\",\n        \"edID\": 128671219,\n        \"eddbID\": 1385,\n        \"grp\": \"bh\",\n        \"cost\": 225700,\n        \"mass\": 13,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"b7\",\n        \"edID\": 128671220,\n        \"eddbID\": 1386,\n        \"grp\": \"bh\",\n        \"cost\": 507900,\n        \"mass\": 26,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"b8\",\n        \"edID\": 128671221,\n        \"eddbID\": 1387,\n        \"grp\": \"bh\",\n        \"cost\": 1185100,\n        \"mass\": 26,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"b9\",\n        \"edID\": 128671222,\n        \"eddbID\": 1388,\n        \"grp\": \"bh\",\n        \"cost\": 1330100,\n        \"mass\": 26,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        4,\n        4,\n        4,\n        2,\n        3,\n        2,\n        4\n      ],\n      \"hardpoints\": [\n        2,\n        2,\n        1,\n        1,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        3,\n        3,\n        3,\n        2,\n        1,\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"4E\",\n        \"4E\",\n        \"4E\",\n        \"2E\",\n        \"3E\",\n        \"2E\",\n        \"4C\"\n      ],\n      \"hardpoints\": [\n        17,\n        17,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        \"44\",\n        0,\n        0,\n        \"\",\n        0,\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/dolphin.json",
    "content": "{\n  \"dolphin\": {\n    \"edID\": 128049291,\n    \"eddbID\": 31,\n    \"properties\": {\n      \"name\": \"Dolphin\",\n      \"manufacturer\": \"Saud Kruger\",\n      \"class\": 1,\n      \"hullCost\": 1115330,\n      \"speed\": 250,\n      \"boost\": 350,\n      \"boostEnergy\": 10,\n      \"baseShieldStrength\": 110,\n      \"baseArmour\": 110,\n      \"hardness\": 35,\n      \"hullMass\": 140,\n      \"heatCapacity\": 165,\n      \"masslock\": 9,\n      \"pipSpeed\": 0.13,\n      \"luxuryCabins\": true,\n      \"pitch\": 30,\n      \"roll\": 100,\n      \"yaw\": 20,\n      \"crew\": 1,\n      \"reserveFuelCapacity\": 0.5\n    },\n    \"retailCost\": 1337330,\n    \"requirements\": {\n      \"horizons\": true\n    },\n    \"bulkheads\": [\n      {\n        \"id\": \"cq\",\n        \"edID\": 128049292,\n        \"eddbID\": 1589,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"cr\",\n        \"edID\": 128049293,\n        \"eddbID\": 1590,\n        \"grp\": \"bh\",\n        \"cost\": 534940,\n        \"mass\": 32,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"cs\",\n        \"edID\": 128049294,\n        \"eddbID\": 1591,\n        \"grp\": \"bh\",\n        \"cost\": 1203600,\n        \"mass\": 63,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"ct\",\n        \"edID\": 128049295,\n        \"eddbID\": 1592,\n        \"grp\": \"bh\",\n        \"cost\": 2808390,\n        \"mass\": 63,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"cu\",\n        \"edID\": 128049296,\n        \"eddbID\": 1593,\n        \"grp\": \"bh\",\n        \"cost\": 3152080,\n        \"mass\": 63,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        4,\n        5,\n        4,\n        4,\n        3,\n        3,\n        4\n      ],\n      \"hardpoints\": [\n        1,\n        1,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        5,\n        4,\n        4,\n        3,\n        2,\n        2,\n        2,\n        1,\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"4E\",\n        \"5E\",\n        \"4E\",\n        \"4E\",\n        \"3E\",\n        \"3E\",\n        \"4C\"\n      ],\n      \"hardpoints\": [\n        17,\n        17,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        \"md\",\n        \"02\",\n        \"49\",\n        \"01\",\n        \"00\",\n        0,\n        \"\",\n        0,\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/eagle.json",
    "content": "{\n  \"eagle\": {\n    \"edID\": 128049255,\n    \"eddbID\": 7,\n    \"properties\": {\n      \"name\": \"Eagle\",\n      \"manufacturer\": \"Core Dynamics\",\n      \"class\": 1,\n      \"hullCost\": 10440,\n      \"speed\": 240,\n      \"boost\": 350,\n      \"boostEnergy\": 8,\n      \"baseShieldStrength\": 60,\n      \"baseArmour\": 40,\n      \"hardness\": 28,\n      \"hullMass\": 50,\n      \"heatCapacity\": 165,\n      \"masslock\": 6,\n      \"pipSpeed\": 0.0625,\n      \"pitch\": 50,\n      \"roll\": 120,\n      \"yaw\": 18,\n      \"crew\": 1,\n      \"reserveFuelCapacity\": 0.34\n    },\n    \"retailCost\": 44800,\n    \"bulkheads\": [\n      {\n        \"id\": \"bY\",\n        \"edID\": 128049256,\n        \"eddbID\": 743,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"bZ\",\n        \"edID\": 128049257,\n        \"eddbID\": 744,\n        \"grp\": \"bh\",\n        \"cost\": 26880,\n        \"mass\": 4,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"B0\",\n        \"edID\": 128049258,\n        \"eddbID\": 745,\n        \"grp\": \"bh\",\n        \"cost\": 90050,\n        \"mass\": 8,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"B1\",\n        \"edID\": 128049259,\n        \"eddbID\": 746,\n        \"grp\": \"bh\",\n        \"cost\": 140090,\n        \"mass\": 8,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"B2\",\n        \"edID\": 128049260,\n        \"eddbID\": 747,\n        \"grp\": \"bh\",\n        \"cost\": 150390,\n        \"mass\": 8,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        2,\n        3,\n        3,\n        1,\n        2,\n        2,\n        2\n      ],\n      \"hardpoints\": [\n        1,\n        1,\n        1,\n        0\n      ],\n      \"internal\": [\n        3,\n        2,\n        {\n          \"class\": 2,\n          \"name\": \"Military\",\n          \"eligible\": {\n            \"mahr\": 1,\n            \"hr\": 1,\n            \"scb\": 1,\n            \"mrp\": 1,\n            \"gsrp\": 1,\n            \"gmrp\": 1,\n            \"ghrp\": 1\n          }\n        },\n        1,\n        1,\n        1,\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"2E\",\n        \"3E\",\n        \"3E\",\n        \"1E\",\n        \"2E\",\n        \"2E\",\n        \"2C\"\n      ],\n      \"hardpoints\": [\n        17,\n        17,\n        0,\n        0\n      ],\n      \"internal\": [\n        \"44\",\n        \"00\",\n        0,\n        \"\",\n        0,\n        0,\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/federal_assault_ship.json",
    "content": "{\n  \"federal_assault_ship\": {\n    \"edID\": 128672145,\n    \"eddbID\": 8,\n    \"properties\": {\n      \"name\": \"Federal Assault Ship\",\n      \"manufacturer\": \"Core Dynamics\",\n      \"class\": 2,\n      \"hullCost\": 19072000,\n      \"speed\": 210,\n      \"boost\": 350,\n      \"boostEnergy\": 19,\n      \"baseShieldStrength\": 200,\n      \"baseArmour\": 300,\n      \"hardness\": 60,\n      \"hullMass\": 480,\n      \"heatCapacity\": 286,\n      \"masslock\": 14,\n      \"pipSpeed\": 0.071428571428571,\n      \"pitch\": 38,\n      \"roll\": 90,\n      \"yaw\": 19,\n      \"crew\": 2,\n      \"reserveFuelCapacity\": 0.72\n    },\n    \"retailCost\": 19814210,\n    \"requirements\": {\n      \"federationRank\": 5\n    },\n    \"bulkheads\": [\n      {\n        \"id\": \"bz\",\n        \"edID\": 128672147,\n        \"eddbID\": 1466,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"bA\",\n        \"edID\": 128672148,\n        \"eddbID\": 1467,\n        \"grp\": \"bh\",\n        \"cost\": 7925680,\n        \"mass\": 44,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"bB\",\n        \"edID\": 128672149,\n        \"eddbID\": 1468,\n        \"grp\": \"bh\",\n        \"cost\": 17832780,\n        \"mass\": 87,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"bC\",\n        \"edID\": 128672150,\n        \"eddbID\": 1469,\n        \"grp\": \"bh\",\n        \"cost\": 42144810,\n        \"mass\": 87,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"bD\",\n        \"edID\": 128672151,\n        \"eddbID\": 1470,\n        \"grp\": \"bh\",\n        \"cost\": 46702080,\n        \"mass\": 87,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        6,\n        6,\n        5,\n        5,\n        6,\n        4,\n        4\n      ],\n      \"hardpoints\": [\n        3,\n        3,\n        2,\n        2,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        5,\n        5,\n        4,\n        {\n          \"class\": 4,\n          \"name\": \"Military\",\n          \"eligible\": {\n            \"mahr\": 1,\n            \"hr\": 1,\n            \"scb\": 1,\n            \"mrp\": 1,\n            \"gsrp\": 1,\n            \"gmrp\": 1,\n            \"ghrp\": 1\n          }\n        },\n        {\n          \"class\": 4,\n          \"name\": \"Military\",\n          \"eligible\": {\n            \"mahr\": 1,\n            \"hr\": 1,\n            \"scb\": 1,\n            \"mrp\": 1,\n            \"gsrp\": 1,\n            \"gmrp\": 1,\n            \"ghrp\": 1\n          }\n        },\n        3,\n        2,\n        2,\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"6E\",\n        \"6E\",\n        \"5E\",\n        \"5E\",\n        \"6E\",\n        \"4E\",\n        \"4C\"\n      ],\n      \"hardpoints\": [\n        0,\n        0,\n        17,\n        17,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        \"4e\",\n        \"03\",\n        \"02\",\n        0,\n        0,\n        \"02\",\n        0,\n        0,\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/federal_corvette.json",
    "content": "{\n  \"federal_corvette\": {\n    \"edID\": 128049369,\n    \"eddbID\": 25,\n    \"properties\": {\n      \"name\": \"Federal Corvette\",\n      \"manufacturer\": \"Core Dynamics\",\n      \"class\": 3,\n      \"hullCost\": 182589570,\n      \"speed\": 200,\n      \"boost\": 260,\n      \"boostEnergy\": 27,\n      \"baseShieldStrength\": 555,\n      \"baseArmour\": 370,\n      \"hardness\": 70,\n      \"hullMass\": 900,\n      \"masslock\": 24,\n      \"heatCapacity\": 333,\n      \"pipSpeed\": 0.125,\n      \"fighterHangars\": true,\n      \"pitch\": 28,\n      \"roll\": 75,\n      \"yaw\": 8,\n      \"crew\": 3,\n      \"reserveFuelCapacity\": 1.13\n    },\n    \"retailCost\": 187969450,\n    \"requirements\": {\n      \"federationRank\": 12\n    },\n    \"bulkheads\": [\n      {\n        \"id\": \"BW\",\n        \"edID\": 128049370,\n        \"eddbID\": 1498,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"BX\",\n        \"edID\": 128049371,\n        \"eddbID\": 1499,\n        \"grp\": \"bh\",\n        \"cost\": 75187790,\n        \"mass\": 30,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"BY\",\n        \"edID\": 128049372,\n        \"eddbID\": 1500,\n        \"grp\": \"bh\",\n        \"cost\": 169172510,\n        \"mass\": 60,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"BZ\",\n        \"edID\": 128049373,\n        \"eddbID\": 1501,\n        \"grp\": \"bh\",\n        \"cost\": 399811020,\n        \"mass\": 60,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"c0\",\n        \"edID\": 128049374,\n        \"eddbID\": 1502,\n        \"grp\": \"bh\",\n        \"cost\": 443044000,\n        \"mass\": 60,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        8,\n        7,\n        6,\n        5,\n        8,\n        8,\n        5\n      ],\n      \"hardpoints\": [\n        4,\n        4,\n        3,\n        2,\n        2,\n        1,\n        1,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        7,\n        7,\n        7,\n        6,\n        6,\n        5,\n        5,\n        {\n          \"class\": 5,\n          \"name\": \"Military\",\n          \"eligible\": {\n            \"mahr\": 1,\n            \"hr\": 1,\n            \"scb\": 1,\n            \"mrp\": 1,\n            \"gsrp\": 1,\n            \"gmrp\": 1,\n            \"ghrp\": 1\n          }\n        },\n        {\n          \"class\": 5,\n          \"name\": \"Military\",\n          \"eligible\": {\n            \"mahr\": 1,\n            \"hr\": 1,\n            \"scb\": 1,\n            \"mrp\": 1,\n            \"gsrp\": 1,\n            \"gmrp\": 1,\n            \"ghrp\": 1\n          }\n        },\n        4,\n        4,\n        3,\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"8E\",\n        \"7E\",\n        \"6E\",\n        \"5E\",\n        \"8E\",\n        \"8E\",\n        \"5C\"\n      ],\n      \"hardpoints\": [\n        0,\n        0,\n        0,\n        17,\n        17,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        \"4o\",\n        \"05\",\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        \"02\",\n        \"01\",\n        \"\",\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/federal_dropship.json",
    "content": "{\n  \"federal_dropship\": {\n    \"edID\": 128049321,\n    \"eddbID\": 9,\n    \"properties\": {\n      \"name\": \"Federal Dropship\",\n      \"manufacturer\": \"Core Dynamics\",\n      \"class\": 2,\n      \"hullCost\": 13469990,\n      \"speed\": 180,\n      \"boost\": 300,\n      \"boostEnergy\": 19,\n      \"baseShieldStrength\": 200,\n      \"baseArmour\": 300,\n      \"hardness\": 60,\n      \"hullMass\": 580,\n      \"heatCapacity\": 331,\n      \"masslock\": 14,\n      \"pipSpeed\": 0.11111111111111,\n      \"pitch\": 30,\n      \"roll\": 80,\n      \"yaw\": 14,\n      \"crew\": 2,\n      \"reserveFuelCapacity\": 0.83\n    },\n    \"retailCost\": 14314210,\n    \"requirements\": {\n      \"federationRank\": 3\n    },\n    \"bulkheads\": [\n      {\n        \"id\": \"bE\",\n        \"edID\": 128049322,\n        \"eddbID\": 793,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"bF\",\n        \"edID\": 128049323,\n        \"eddbID\": 794,\n        \"grp\": \"bh\",\n        \"cost\": 5725680,\n        \"mass\": 44,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"bG\",\n        \"edID\": 128049324,\n        \"eddbID\": 795,\n        \"grp\": \"bh\",\n        \"cost\": 12882780,\n        \"mass\": 87,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"bH\",\n        \"edID\": 128049325,\n        \"eddbID\": 796,\n        \"grp\": \"bh\",\n        \"cost\": 30446310,\n        \"mass\": 87,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"bI\",\n        \"edID\": 128049326,\n        \"eddbID\": 797,\n        \"grp\": \"bh\",\n        \"cost\": 33738580,\n        \"mass\": 87,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        6,\n        6,\n        5,\n        5,\n        6,\n        4,\n        4\n      ],\n      \"hardpoints\": [\n        3,\n        2,\n        2,\n        2,\n        2,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        6,\n        5,\n        5,\n        4,\n        {\n          \"class\": 4,\n          \"name\": \"Military\",\n          \"eligible\": {\n            \"mahr\": 1,\n            \"hr\": 1,\n            \"scb\": 1,\n            \"mrp\": 1,\n            \"gsrp\": 1,\n            \"gmrp\": 1,\n            \"ghrp\": 1\n          }\n        },\n        {\n          \"class\": 4,\n          \"name\": \"Military\",\n          \"eligible\": {\n            \"mahr\": 1,\n            \"hr\": 1,\n            \"scb\": 1,\n            \"mrp\": 1,\n            \"gsrp\": 1,\n            \"gmrp\": 1,\n            \"ghrp\": 1\n          }\n        },\n        3,\n        3,\n        2,\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"6E\",\n        \"6E\",\n        \"5E\",\n        \"5E\",\n        \"6E\",\n        \"4E\",\n        \"4C\"\n      ],\n      \"hardpoints\": [\n        0,\n        17,\n        17,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        \"04\",\n        \"03\",\n        \"4e\",\n        \"02\",\n        0,\n        0,\n        0,\n        0,\n        \"\",\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/federal_gunship.json",
    "content": "{\n  \"federal_gunship\": {\n    \"edID\": 128672152,\n    \"eddbID\": 10,\n    \"properties\": {\n      \"name\": \"Federal Gunship\",\n      \"manufacturer\": \"Core Dynamics\",\n      \"class\": 2,\n      \"hullCost\": 34774790,\n      \"speed\": 170,\n      \"boost\": 280,\n      \"boostEnergy\": 23,\n      \"baseShieldStrength\": 250,\n      \"baseArmour\": 350,\n      \"hardness\": 60,\n      \"hullMass\": 580,\n      \"heatCapacity\": 325,\n      \"masslock\": 14,\n      \"pipSpeed\": 0.10294117647059,\n      \"fighterHangars\": true,\n      \"pitch\": 25,\n      \"roll\": 80,\n      \"yaw\": 18,\n      \"crew\": 2,\n      \"reserveFuelCapacity\": 0.82\n    },\n    \"retailCost\": 35814210,\n    \"requirements\": {\n      \"federationRank\": 7\n    },\n    \"bulkheads\": [\n      {\n        \"id\": \"bJ\",\n        \"edID\": 128672154,\n        \"eddbID\": 1471,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"bK\",\n        \"edID\": 128672155,\n        \"eddbID\": 1472,\n        \"grp\": \"bh\",\n        \"cost\": 14325690,\n        \"mass\": 44,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"bL\",\n        \"edID\": 128672156,\n        \"eddbID\": 1473,\n        \"grp\": \"bh\",\n        \"cost\": 32232790,\n        \"mass\": 87,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"bM\",\n        \"edID\": 128672157,\n        \"eddbID\": 1474,\n        \"grp\": \"bh\",\n        \"cost\": 76176810,\n        \"mass\": 87,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"bN\",\n        \"edID\": 128672158,\n        \"eddbID\": 1475,\n        \"grp\": \"bh\",\n        \"cost\": 84414090,\n        \"mass\": 87,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        6,\n        6,\n        5,\n        5,\n        7,\n        5,\n        4\n      ],\n      \"hardpoints\": [\n        3,\n        2,\n        2,\n        2,\n        2,\n        1,\n        1,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        6,\n        6,\n        5,\n        {\n          \"class\": 4,\n          \"name\": \"Military\",\n          \"eligible\": {\n            \"mahr\": 1,\n            \"hr\": 1,\n            \"scb\": 1,\n            \"mrp\": 1,\n            \"gsrp\": 1,\n            \"gmrp\": 1,\n            \"ghrp\": 1\n          }\n        },\n        {\n          \"class\": 4,\n          \"name\": \"Military\",\n          \"eligible\": {\n            \"mahr\": 1,\n            \"hr\": 1,\n            \"scb\": 1,\n            \"mrp\": 1,\n            \"gsrp\": 1,\n            \"gmrp\": 1,\n            \"ghrp\": 1\n          }\n        },\n        {\n          \"class\": 4,\n          \"name\": \"Military\",\n          \"eligible\": {\n            \"mahr\": 1,\n            \"hr\": 1,\n            \"scb\": 1,\n            \"mrp\": 1,\n            \"gsrp\": 1,\n            \"gmrp\": 1,\n            \"ghrp\": 1\n          }\n        },\n        2,\n        2,\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"6E\",\n        \"6E\",\n        \"5E\",\n        \"5E\",\n        \"7E\",\n        \"5E\",\n        \"4C\"\n      ],\n      \"hardpoints\": [\n        0,\n        17,\n        17,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        0,\n        \"4j\",\n        \"03\",\n        0,\n        0,\n        0,\n        0,\n        \"\",\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/fer_de_lance.json",
    "content": "{\n  \"fer_de_lance\": {\n    \"edID\": 128049351,\n    \"eddbID\": 11,\n    \"properties\": {\n      \"name\": \"Fer-de-Lance\",\n      \"manufacturer\": \"Zorgon Peterson\",\n      \"class\": 2,\n      \"hullCost\": 51232230,\n      \"speed\": 260,\n      \"boost\": 350,\n      \"boostEnergy\": 19,\n      \"baseShieldStrength\": 300,\n      \"baseArmour\": 225,\n      \"hardness\": 70,\n      \"hullMass\": 250,\n      \"heatCapacity\": 224,\n      \"masslock\": 12,\n      \"pipSpeed\": 0.038461538461538,\n      \"pitch\": 38,\n      \"roll\": 90,\n      \"yaw\": 12,\n      \"crew\": 2,\n      \"reserveFuelCapacity\": 0.67\n    },\n    \"retailCost\": 51567040,\n    \"bulkheads\": [\n      {\n        \"id\": \"Bd\",\n        \"edID\": 128049352,\n        \"eddbID\": 813,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"Be\",\n        \"edID\": 128049353,\n        \"eddbID\": 814,\n        \"grp\": \"bh\",\n        \"cost\": 20626820,\n        \"mass\": 19,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"Bf\",\n        \"edID\": 128049354,\n        \"eddbID\": 815,\n        \"grp\": \"bh\",\n        \"cost\": 46410340,\n        \"mass\": 38,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"Bg\",\n        \"edID\": 128049355,\n        \"eddbID\": 816,\n        \"grp\": \"bh\",\n        \"cost\": 109683090,\n        \"mass\": 38,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"Bh\",\n        \"edID\": 128049356,\n        \"eddbID\": 817,\n        \"grp\": \"bh\",\n        \"cost\": 121543510,\n        \"mass\": 38,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        6,\n        5,\n        4,\n        4,\n        6,\n        4,\n        3\n      ],\n      \"hardpoints\": [\n        4,\n        2,\n        2,\n        2,\n        2,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        5,\n        4,\n        4,\n        2,\n        1,\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"5E\",\n        \"5E\",\n        \"4E\",\n        \"4E\",\n        \"6E\",\n        \"4E\",\n        \"3C\"\n      ],\n      \"hardpoints\": [\n        0,\n        17,\n        17,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        \"03\",\n        \"49\",\n        \"02\",\n        0,\n        \"\",\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/hauler.json",
    "content": "{\n  \"hauler\": {\n    \"edID\": 128049261,\n    \"eddbID\": 12,\n    \"properties\": {\n      \"name\": \"Hauler\",\n      \"manufacturer\": \"Zorgon Peterson\",\n      \"class\": 1,\n      \"hullCost\": 29790,\n      \"speed\": 200,\n      \"boost\": 300,\n      \"boostEnergy\": 7,\n      \"baseShieldStrength\": 50,\n      \"baseArmour\": 100,\n      \"hardness\": 20,\n      \"heatCapacity\": 123,\n      \"hullMass\": 14,\n      \"masslock\": 6,\n      \"pipSpeed\": 0.1625,\n      \"pitch\": 36,\n      \"roll\": 100,\n      \"yaw\": 14,\n      \"crew\": 1,\n      \"reserveFuelCapacity\": 0.25\n    },\n    \"retailCost\": 52720,\n    \"bulkheads\": [\n      {\n        \"id\": \"Bi\",\n        \"edID\": 128049262,\n        \"eddbID\": 748,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"Bj\",\n        \"edID\": 128049263,\n        \"eddbID\": 749,\n        \"grp\": \"bh\",\n        \"cost\": 42180,\n        \"mass\": 1,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"Bk\",\n        \"edID\": 128049264,\n        \"eddbID\": 750,\n        \"grp\": \"bh\",\n        \"cost\": 185050,\n        \"mass\": 2,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"Bl\",\n        \"edID\": 128049265,\n        \"eddbID\": 751,\n        \"grp\": \"bh\",\n        \"cost\": 270300,\n        \"mass\": 2,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"Bm\",\n        \"edID\": 128049266,\n        \"eddbID\": 752,\n        \"grp\": \"bh\",\n        \"cost\": 282420,\n        \"mass\": 2,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        2,\n        2,\n        2,\n        1,\n        1,\n        1,\n        2\n      ],\n      \"hardpoints\": [\n        1,\n        0,\n        0\n      ],\n      \"internal\": [\n        3,\n        3,\n        2,\n        1,\n        1,\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"2E\",\n        \"2E\",\n        \"2E\",\n        \"1E\",\n        \"1E\",\n        \"1E\",\n        \"2C\"\n      ],\n      \"hardpoints\": [\n        17,\n        0,\n        0\n      ],\n      \"internal\": [\n        \"01\",\n        \"01\",\n        \"3v\",\n        \"\",\n        0,\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/imperial_clipper.json",
    "content": "{\n  \"imperial_clipper\": {\n    \"edID\": 128049315,\n    \"eddbID\": 13,\n    \"properties\": {\n      \"name\": \"Imperial Clipper\",\n      \"manufacturer\": \"Gutamaya\",\n      \"class\": 3,\n      \"hullCost\": 21077780,\n      \"speed\": 300,\n      \"boost\": 380,\n      \"boostEnergy\": 19,\n      \"baseShieldStrength\": 180,\n      \"baseArmour\": 270,\n      \"hardness\": 60,\n      \"hullMass\": 400,\n      \"masslock\": 12,\n      \"heatCapacity\": 304,\n      \"pipSpeed\": 0.1,\n      \"pitch\": 40,\n      \"roll\": 80,\n      \"yaw\": 18,\n      \"crew\": 2,\n      \"reserveFuelCapacity\": 0.74\n    },\n    \"retailCost\": 22296860,\n    \"requirements\": {\n      \"empireRank\": 7\n    },\n    \"bulkheads\": [\n      {\n        \"id\": \"bp\",\n        \"edID\": 128049316,\n        \"eddbID\": 788,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"bq\",\n        \"edID\": 128049317,\n        \"eddbID\": 789,\n        \"grp\": \"bh\",\n        \"cost\": 8918340,\n        \"mass\": 30,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"br\",\n        \"edID\": 128049318,\n        \"eddbID\": 790,\n        \"grp\": \"bh\",\n        \"cost\": 20066270,\n        \"mass\": 60,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"bs\",\n        \"edID\": 128049319,\n        \"eddbID\": 791,\n        \"grp\": \"bh\",\n        \"cost\": 47423290,\n        \"mass\": 60,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"bt\",\n        \"edID\": 128049320,\n        \"eddbID\": 792,\n        \"grp\": \"bh\",\n        \"cost\": 52551340,\n        \"mass\": 60,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        6,\n        6,\n        5,\n        5,\n        6,\n        5,\n        4\n      ],\n      \"hardpoints\": [\n        3,\n        3,\n        2,\n        2,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        7,\n        6,\n        4,\n        4,\n        3,\n        3,\n        2,\n        2,\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"6E\",\n        \"6E\",\n        \"5E\",\n        \"5E\",\n        \"6E\",\n        \"5E\",\n        \"4C\"\n      ],\n      \"hardpoints\": [\n        0,\n        0,\n        17,\n        17,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        \"05\",\n        \"4j\",\n        \"02\",\n        0,\n        0,\n        0,\n        \"00\",\n        \"\",\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/imperial_courier.json",
    "content": "{\n  \"imperial_courier\": {\n    \"edID\": 128671223,\n    \"eddbID\": 14,\n    \"properties\": {\n      \"name\": \"Imperial Courier\",\n      \"manufacturer\": \"Gutamaya\",\n      \"class\": 1,\n      \"hullCost\": 2481550,\n      \"speed\": 280,\n      \"boost\": 380,\n      \"boostEnergy\": 10,\n      \"baseShieldStrength\": 200,\n      \"baseArmour\": 80,\n      \"hardness\": 30,\n      \"hullMass\": 35,\n      \"masslock\": 7,\n      \"heatCapacity\": 230,\n      \"pipSpeed\": 0.053571428571429,\n      \"pitch\": 38,\n      \"roll\": 90,\n      \"yaw\": 16,\n      \"crew\": 1,\n      \"reserveFuelCapacity\": 0.41\n    },\n    \"retailCost\": 2542930,\n    \"requirements\": {\n      \"empireRank\": 3\n    },\n    \"bulkheads\": [\n      {\n        \"id\": \"bf\",\n        \"edID\": 128671224,\n        \"eddbID\": 1389,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"bg\",\n        \"edID\": 128671225,\n        \"eddbID\": 1390,\n        \"grp\": \"bh\",\n        \"cost\": 1017200,\n        \"mass\": 4,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"bh\",\n        \"edID\": 128671226,\n        \"eddbID\": 1391,\n        \"grp\": \"bh\",\n        \"cost\": 2288600,\n        \"mass\": 8,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"bi\",\n        \"edID\": 128671227,\n        \"eddbID\": 1392,\n        \"grp\": \"bh\",\n        \"cost\": 5408800,\n        \"mass\": 8,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"bj\",\n        \"edID\": 128671228,\n        \"eddbID\": 1393,\n        \"grp\": \"bh\",\n        \"cost\": 5993700,\n        \"mass\": 8,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        4,\n        3,\n        3,\n        1,\n        3,\n        2,\n        3\n      ],\n      \"hardpoints\": [\n        2,\n        2,\n        2,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        3,\n        3,\n        2,\n        2,\n        2,\n        1,\n        1,\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"4E\",\n        \"3E\",\n        \"3E\",\n        \"1E\",\n        \"3E\",\n        \"2E\",\n        \"3C\"\n      ],\n      \"hardpoints\": [\n        17,\n        17,\n        0,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        \"01\",\n        \"01\",\n        \"3v\",\n        \"00\",\n        \"00\",\n        \"\",\n        0,\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/imperial_cutter.json",
    "content": "{\n  \"imperial_cutter\": {\n    \"edID\": 128049375,\n    \"eddbID\": 26,\n    \"properties\": {\n      \"name\": \"Imperial Cutter\",\n      \"manufacturer\": \"Gutamaya\",\n      \"class\": 3,\n      \"hullCost\": 199926890,\n      \"speed\": 200,\n      \"boost\": 320,\n      \"boostEnergy\": 23,\n      \"baseShieldStrength\": 600,\n      \"baseArmour\": 400,\n      \"hardness\": 70,\n      \"hullMass\": 1100,\n      \"heatCapacity\": 327,\n      \"masslock\": 27,\n      \"pipSpeed\": 0.05,\n      \"fighterHangars\": true,\n      \"pitch\": 18,\n      \"roll\": 45,\n      \"yaw\": 8,\n      \"crew\": 3,\n      \"reserveFuelCapacity\": 1.16\n    },\n    \"retailCost\": 208969450,\n    \"requirements\": {\n      \"empireRank\": 12\n    },\n    \"bulkheads\": [\n      {\n        \"id\": \"BR\",\n        \"edID\": 128049376,\n        \"eddbID\": 1493,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"BS\",\n        \"edID\": 128049377,\n        \"eddbID\": 1494,\n        \"grp\": \"bh\",\n        \"cost\": 83587790,\n        \"mass\": 30,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"BT\",\n        \"edID\": 128049378,\n        \"eddbID\": 1495,\n        \"grp\": \"bh\",\n        \"cost\": 188072510,\n        \"mass\": 60,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"BU\",\n        \"edID\": 128049379,\n        \"eddbID\": 1496,\n        \"grp\": \"bh\",\n        \"cost\": 444478020,\n        \"mass\": 60,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"BV\",\n        \"edID\": 128049380,\n        \"eddbID\": 1497,\n        \"grp\": \"bh\",\n        \"cost\": 492541000,\n        \"mass\": 60,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        8,\n        8,\n        7,\n        7,\n        7,\n        7,\n        6\n      ],\n      \"hardpoints\": [\n        4,\n        3,\n        3,\n        2,\n        2,\n        2,\n        2,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        8,\n        8,\n        6,\n        6,\n        6,\n        5,\n        5,\n        {\n          \"class\": 5,\n          \"name\": \"Military\",\n          \"eligible\": {\n            \"mahr\": 1,\n            \"hr\": 1,\n            \"scb\": 1,\n            \"mrp\": 1,\n            \"gsrp\": 1,\n            \"gmrp\": 1,\n            \"ghrp\": 1\n          }\n        },\n        {\n          \"class\": 5,\n          \"name\": \"Military\",\n          \"eligible\": {\n            \"mahr\": 1,\n            \"hr\": 1,\n            \"scb\": 1,\n            \"mrp\": 1,\n            \"gsrp\": 1,\n            \"gmrp\": 1,\n            \"ghrp\": 1\n          }\n        },\n        4,\n        3,\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"8E\",\n        \"8E\",\n        \"7E\",\n        \"7E\",\n        \"7E\",\n        \"7E\",\n        \"6C\"\n      ],\n      \"hardpoints\": [\n        0,\n        0,\n        0,\n        17,\n        17,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        \"4t\",\n        \"06\",\n        \"04\",\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        \"01\",\n        \"\",\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/imperial_eagle.json",
    "content": "{\n  \"imperial_eagle\": {\n    \"edID\": 128672138,\n    \"eddbID\": 15,\n    \"properties\": {\n      \"name\": \"Imperial Eagle\",\n      \"manufacturer\": \"Gutamaya\",\n      \"class\": 1,\n      \"hullCost\": 72180,\n      \"speed\": 300,\n      \"boost\": 400,\n      \"boostEnergy\": 8,\n      \"baseShieldStrength\": 80,\n      \"baseArmour\": 60,\n      \"hardness\": 28,\n      \"heatCapacity\": 163,\n      \"hullMass\": 50,\n      \"masslock\": 6,\n      \"pipSpeed\": 0.075,\n      \"pitch\": 40,\n      \"roll\": 100,\n      \"yaw\": 15,\n      \"crew\": 1,\n      \"reserveFuelCapacity\": 0.37\n    },\n    \"retailCost\": 110830,\n    \"bulkheads\": [\n      {\n        \"id\": \"bu\",\n        \"edID\": 128672140,\n        \"eddbID\": 1461,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"bv\",\n        \"edID\": 128672141,\n        \"eddbID\": 1462,\n        \"grp\": \"bh\",\n        \"cost\": 66500,\n        \"mass\": 4,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"bw\",\n        \"edID\": 128672142,\n        \"eddbID\": 1463,\n        \"grp\": \"bh\",\n        \"cost\": 222760,\n        \"mass\": 8,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"bx\",\n        \"edID\": 128672143,\n        \"eddbID\": 1464,\n        \"grp\": \"bh\",\n        \"cost\": 346550,\n        \"mass\": 8,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"by\",\n        \"edID\": 128672144,\n        \"eddbID\": 1465,\n        \"grp\": \"bh\",\n        \"cost\": 372040,\n        \"mass\": 8,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        3,\n        3,\n        3,\n        1,\n        2,\n        2,\n        2\n      ],\n      \"hardpoints\": [\n        2,\n        1,\n        1,\n        0\n      ],\n      \"internal\": [\n        3,\n        2,\n        {\n          \"class\": 2,\n          \"name\": \"Military\",\n          \"eligible\": {\n            \"mahr\": 1,\n            \"hr\": 1,\n            \"scb\": 1,\n            \"mrp\": 1,\n            \"gsrp\": 1,\n            \"gmrp\": 1,\n            \"ghrp\": 1\n          }\n        },\n        1,\n        1,\n        1,\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"3E\",\n        \"3E\",\n        \"3E\",\n        \"1E\",\n        \"2E\",\n        \"2E\",\n        \"2C\"\n      ],\n      \"hardpoints\": [\n        0,\n        17,\n        17,\n        0\n      ],\n      \"internal\": [\n        \"44\",\n        \"00\",\n        0,\n        \"\",\n        0,\n        0,\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/keelback.json",
    "content": "{\n  \"keelback\": {\n    \"edID\": 128672269,\n    \"eddbID\": 27,\n    \"properties\": {\n      \"name\": \"Keelback\",\n      \"manufacturer\": \"Lakon\",\n      \"class\": 2,\n      \"hullCost\": 2943870,\n      \"speed\": 200,\n      \"boost\": 300,\n      \"boostEnergy\": 10,\n      \"baseShieldStrength\": 135,\n      \"baseArmour\": 270,\n      \"hardness\": 45,\n      \"heatCapacity\": 215,\n      \"hullMass\": 180,\n      \"masslock\": 8,\n      \"pipSpeed\": 0.1375,\n      \"fighterHangars\": true,\n      \"pitch\": 27,\n      \"roll\": 100,\n      \"yaw\": 15,\n      \"crew\": 2,\n      \"reserveFuelCapacity\": 0.39\n    },\n    \"retailCost\": 3126150,\n    \"bulkheads\": [\n      {\n        \"id\": \"cb\",\n        \"edID\": 128672271,\n        \"eddbID\": 1513,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"cc\",\n        \"edID\": 128672272,\n        \"eddbID\": 1514,\n        \"grp\": \"bh\",\n        \"cost\": 1250460,\n        \"mass\": 12,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"cd\",\n        \"edID\": 128672273,\n        \"eddbID\": 1515,\n        \"grp\": \"bh\",\n        \"cost\": 2813540,\n        \"mass\": 23,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"ce\",\n        \"edID\": 128672274,\n        \"eddbID\": 1516,\n        \"grp\": \"bh\",\n        \"cost\": 6649330,\n        \"mass\": 23,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"cf\",\n        \"edID\": 128672275,\n        \"eddbID\": 1517,\n        \"grp\": \"bh\",\n        \"cost\": 7368340,\n        \"mass\": 23,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        4,\n        4,\n        4,\n        1,\n        3,\n        2,\n        4\n      ],\n      \"hardpoints\": [\n        2,\n        2,\n        1,\n        1,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        5,\n        5,\n        4,\n        3,\n        2,\n        2,\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"4E\",\n        \"4E\",\n        \"4E\",\n        \"1E\",\n        \"3E\",\n        \"2E\",\n        \"4C\"\n      ],\n      \"hardpoints\": [\n        0,\n        0,\n        17,\n        17,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        \"03\",\n        \"03\",\n        \"02\",\n        \"44\",\n        \"00\",\n        \"\",\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/krait_mkii.json",
    "content": "{\n  \"krait_mkii\": {\n    \"edID\": 128816567,\n    \"eddbID\": 35,\n    \"properties\": {\n      \"name\": \"Krait Mk II\",\n      \"manufacturer\": \"Faulcon DeLacy\",\n      \"class\": 2,\n      \"hullCost\": 42409425,\n      \"speed\": 240,\n      \"boost\": 330,\n      \"boostEnergy\": 13,\n      \"baseShieldStrength\": 220,\n      \"heatCapacity\": 300,\n      \"baseArmour\": 220,\n      \"hardness\": 55,\n      \"hullMass\": 320,\n      \"masslock\": 16,\n      \"pipSpeed\": 0.09375,\n      \"fighterHangars\": true,\n      \"pitch\": 26,\n      \"roll\": 90,\n      \"yaw\": 10,\n      \"crew\": 3,\n      \"reserveFuelCapacity\": 0.63\n    },\n    \"retailCost\": 45814205,\n    \"bulkheads\": [\n      {\n        \"id\": \"2T\",\n        \"edID\": 128816569,\n        \"eddbID\": 1645,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"2U\",\n        \"edID\": 128816570,\n        \"eddbID\": 1646,\n        \"grp\": \"bh\",\n        \"cost\": 22791270,\n        \"mass\": 36,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"2V\",\n        \"edID\": 128816571,\n        \"eddbID\": 1647,\n        \"grp\": \"bh\",\n        \"cost\": 51280360,\n        \"mass\": 67,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"2W\",\n        \"edID\": 128816572,\n        \"eddbID\": 1648,\n        \"grp\": \"bh\",\n        \"cost\": 121192590,\n        \"mass\": 67,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"2X\",\n        \"edID\": 128816573,\n        \"eddbID\": 1649,\n        \"grp\": \"bh\",\n        \"cost\": 134297570,\n        \"mass\": 67,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        7,\n        6,\n        5,\n        4,\n        7,\n        6,\n        5\n      ],\n      \"hardpoints\": [\n        3,\n        3,\n        3,\n        2,\n        2,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        6,\n        6,\n        5,\n        5,\n        4,\n        3,\n        3,\n        2,\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"7E\",\n        \"6E\",\n        \"5E\",\n        \"4E\",\n        \"7E\",\n        \"6E\",\n        \"5C\"\n      ],\n      \"hardpoints\": [\n        0,\n        0,\n        0,\n        17,\n        17,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        \"4j\",\n        \"04\",\n        \"04\",\n        \"03\",\n        0,\n        \"\",\n        0,\n        \"00\",\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/krait_phantom.json",
    "content": "{\n  \"krait_phantom\": {\n    \"edID\": 128839281,\n    \"eddbID\": 37,\n    \"properties\": {\n      \"name\": \"Krait Phantom\",\n      \"manufacturer\": \"Faulcon DeLacy\",\n      \"class\": 2,\n      \"hullCost\": 35589214,\n      \"speed\": 250,\n      \"boost\": 350,\n      \"heatCapacity\": 300,\n      \"boostEnergy\": 13,\n      \"baseShieldStrength\": 200,\n      \"baseArmour\": 180,\n      \"hardness\": 60,\n      \"hullMass\": 270,\n      \"masslock\": 14,\n      \"pipSpeed\": 0.09,\n      \"pitch\": 26,\n      \"roll\": 90,\n      \"yaw\": 10,\n      \"crew\": 2,\n      \"reserveFuelCapacity\": 0.63\n    },\n    \"retailCost\": 37472254,\n    \"bulkheads\": [\n      {\n        \"id\": \"3B\",\n        \"edID\": 128839283,\n        \"eddbID\": 1768,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"3C\",\n        \"edID\": 128839284,\n        \"eddbID\": 1769,\n        \"grp\": \"bh\",\n        \"cost\": 22791270,\n        \"mass\": 26,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"3D\",\n        \"edID\": 128839285,\n        \"eddbID\": 1770,\n        \"grp\": \"bh\",\n        \"cost\": 51280360,\n        \"mass\": 53,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"3E\",\n        \"edID\": 128839286,\n        \"eddbID\": 1771,\n        \"grp\": \"bh\",\n        \"cost\": 121192590,\n        \"mass\": 53,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"3F\",\n        \"edID\": 128839287,\n        \"eddbID\": 1772,\n        \"grp\": \"bh\",\n        \"cost\": 134297570,\n        \"mass\": 53,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        7,\n        6,\n        5,\n        4,\n        7,\n        6,\n        5\n      ],\n      \"hardpoints\": [\n        3,\n        3,\n        2,\n        2,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        6,\n        5,\n        5,\n        5,\n        3,\n        3,\n        3,\n        2,\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"7E\",\n        \"6E\",\n        \"5E\",\n        \"4E\",\n        \"7E\",\n        \"6E\",\n        \"5C\"\n      ],\n      \"hardpoints\": [\n        0,\n        0,\n        \"17\",\n        \"17\",\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        \"4j\",\n        \"04\",\n        \"04\",\n        \"04\",\n        0,\n        \"\",\n        0,\n        \"00\",\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/mamba.json",
    "content": "{\n  \"mamba\": {\n    \"edID\": 128915979,\n    \"eddbID\": 38,\n    \"properties\": {\n      \"name\": \"Mamba\",\n      \"manufacturer\": \"Zorgon Peterson\",\n      \"class\": 2,\n      \"hullCost\": 55866341,\n      \"speed\": 310,\n      \"boost\": 380,\n      \"boostEnergy\": 17,\n      \"baseShieldStrength\": 270,\n      \"heatCapacity\": 165,\n      \"baseArmour\": 230,\n      \"hardness\": 70,\n      \"hullMass\": 250,\n      \"masslock\": 12,\n      \"pipSpeed\": 0.056451612903226,\n      \"pitch\": 27,\n      \"roll\": 80,\n      \"yaw\": 10,\n      \"crew\": 2,\n      \"reserveFuelCapacity\": 0.5\n    },\n    \"retailCost\": 55867041,\n    \"bulkheads\": [\n      {\n        \"id\": \"1A\",\n        \"edID\": 128915981,\n        \"eddbID\": 1798,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"1B\",\n        \"edID\": 128915982,\n        \"eddbID\": 1799,\n        \"grp\": \"bh\",\n        \"cost\": 20626820,\n        \"mass\": 19,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"1C\",\n        \"edID\": 128915983,\n        \"eddbID\": 1800,\n        \"grp\": \"bh\",\n        \"cost\": 46410340,\n        \"mass\": 38,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"1D\",\n        \"edID\": 128915984,\n        \"eddbID\": 1801,\n        \"grp\": \"bh\",\n        \"cost\": 109683090,\n        \"mass\": 38,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"3A\",\n        \"edID\": 128915985,\n        \"eddbID\": 1802,\n        \"grp\": \"bh\",\n        \"cost\": 121543510,\n        \"mass\": 38,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        6,\n        5,\n        4,\n        4,\n        6,\n        4,\n        3\n      ],\n      \"hardpoints\": [\n        4,\n        3,\n        3,\n        1,\n        1,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        5,\n        4,\n        3,\n        2,\n        2,\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"6E\",\n        \"5E\",\n        \"4E\",\n        \"4E\",\n        \"6E\",\n        \"4E\",\n        \"3C\"\n      ],\n      \"hardpoints\": [\n        0,\n        0,\n        0,\n        \"17\",\n        \"17\",\n        0,\n        0,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        \"03\",\n        \"49\",\n        \"01\",\n        0,\n        0,\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/orca.json",
    "content": "{\n  \"orca\": {\n    \"edID\": 128049327,\n    \"eddbID\": 16,\n    \"properties\": {\n      \"name\": \"Orca\",\n      \"manufacturer\": \"Saud Kruger\",\n      \"class\": 3,\n      \"hullCost\": 47790590,\n      \"speed\": 300,\n      \"boost\": 380,\n      \"boostEnergy\": 16,\n      \"baseShieldStrength\": 220,\n      \"baseArmour\": 220,\n      \"heatCapacity\": 262,\n      \"hardness\": 55,\n      \"hullMass\": 290,\n      \"masslock\": 16,\n      \"pipSpeed\": 0.083333333333333,\n      \"luxuryCabins\": true,\n      \"pitch\": 25,\n      \"roll\": 55,\n      \"yaw\": 18,\n      \"crew\": 2,\n      \"reserveFuelCapacity\": 0.79\n    },\n    \"retailCost\": 48539900,\n    \"bulkheads\": [\n      {\n        \"id\": \"BM\",\n        \"edID\": 128049328,\n        \"eddbID\": 798,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"BN\",\n        \"edID\": 128049329,\n        \"eddbID\": 799,\n        \"grp\": \"bh\",\n        \"cost\": 19415950,\n        \"mass\": 21,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"BO\",\n        \"edID\": 128049330,\n        \"eddbID\": 800,\n        \"grp\": \"bh\",\n        \"cost\": 43685900,\n        \"mass\": 87,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"BP\",\n        \"edID\": 128049331,\n        \"eddbID\": 801,\n        \"grp\": \"bh\",\n        \"cost\": 103244340,\n        \"mass\": 87,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"BQ\",\n        \"edID\": 128049332,\n        \"eddbID\": 802,\n        \"grp\": \"bh\",\n        \"cost\": 114408510,\n        \"mass\": 87,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        5,\n        6,\n        5,\n        6,\n        5,\n        4,\n        5\n      ],\n      \"hardpoints\": [\n        3,\n        2,\n        2,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        6,\n        5,\n        5,\n        5,\n        4,\n        3,\n        2,\n        2,\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"5E\",\n        \"6E\",\n        \"5E\",\n        \"6E\",\n        \"5E\",\n        \"4E\",\n        \"5C\"\n      ],\n      \"hardpoints\": [\n        0,\n        17,\n        17,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        \"me\",\n        \"mc\",\n        \"03\",\n        \"4e\",\n        \"02\",\n        0,\n        0,\n        \"\",\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/python.json",
    "content": "{\n  \"python\": {\n    \"edID\": 128049339,\n    \"eddbID\": 17,\n    \"properties\": {\n      \"name\": \"Python\",\n      \"manufacturer\": \"Faulcon DeLacy\",\n      \"class\": 2,\n      \"hullCost\": 55171380,\n      \"speed\": 230,\n      \"boost\": 300,\n      \"boostEnergy\": 23,\n      \"baseShieldStrength\": 260,\n      \"baseArmour\": 260,\n      \"heatCapacity\": 300,\n      \"hardness\": 65,\n      \"hullMass\": 350,\n      \"masslock\": 17,\n      \"pipSpeed\": 0.097826086956522,\n      \"pitch\": 29,\n      \"roll\": 90,\n      \"yaw\": 10,\n      \"crew\": 2,\n      \"reserveFuelCapacity\": 0.83\n    },\n    \"retailCost\": 56978180,\n    \"bulkheads\": [\n      {\n        \"id\": \"bO\",\n        \"edID\": 128049340,\n        \"eddbID\": 808,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"bP\",\n        \"edID\": 128049341,\n        \"eddbID\": 809,\n        \"grp\": \"bh\",\n        \"cost\": 22791270,\n        \"mass\": 26,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"bQ\",\n        \"edID\": 128049342,\n        \"eddbID\": 810,\n        \"grp\": \"bh\",\n        \"cost\": 51280360,\n        \"mass\": 53,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"bR\",\n        \"edID\": 128049343,\n        \"eddbID\": 811,\n        \"grp\": \"bh\",\n        \"cost\": 121192590,\n        \"mass\": 53,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"bS\",\n        \"edID\": 128049344,\n        \"eddbID\": 812,\n        \"grp\": \"bh\",\n        \"cost\": 134297570,\n        \"mass\": 53,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        7,\n        6,\n        5,\n        4,\n        7,\n        6,\n        5\n      ],\n      \"hardpoints\": [\n        3,\n        3,\n        3,\n        2,\n        2,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        6,\n        6,\n        6,\n        5,\n        5,\n        4,\n        3,\n        3,\n        2,\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"7E\",\n        \"6E\",\n        \"5E\",\n        \"4E\",\n        \"7E\",\n        \"6E\",\n        \"5C\"\n      ],\n      \"hardpoints\": [\n        0,\n        0,\n        0,\n        17,\n        17,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        \"04\",\n        \"04\",\n        \"4j\",\n        \"03\",\n        0,\n        0,\n        0,\n        \"00\",\n        \"\",\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/sidewinder.json",
    "content": "{\n  \"sidewinder\": {\n    \"edID\": 128049249,\n    \"eddbID\": 18,\n    \"properties\": {\n      \"name\": \"Sidewinder\",\n      \"manufacturer\": \"Faulcon DeLacy\",\n      \"class\": 1,\n      \"hullCost\": 4070,\n      \"speed\": 220,\n      \"boost\": 320,\n      \"boostEnergy\": 7,\n      \"heatCapacity\": 140,\n      \"baseShieldStrength\": 40,\n      \"baseArmour\": 60,\n      \"hardness\": 20,\n      \"hullMass\": 25,\n      \"masslock\": 6,\n      \"pipSpeed\": 0.13636363636364,\n      \"pitch\": 42,\n      \"roll\": 110,\n      \"yaw\": 16,\n      \"crew\": 1,\n      \"reserveFuelCapacity\": 0.3\n    },\n    \"retailCost\": 32000,\n    \"bulkheads\": [\n      {\n        \"id\": \"b0\",\n        \"edID\": 128049250,\n        \"eddbID\": 738,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"b1\",\n        \"edID\": 128049251,\n        \"eddbID\": 739,\n        \"grp\": \"bh\",\n        \"cost\": 25600,\n        \"mass\": 2,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"b2\",\n        \"edID\": 128049252,\n        \"eddbID\": 740,\n        \"grp\": \"bh\",\n        \"cost\": 80320,\n        \"mass\": 4,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"b3\",\n        \"edID\": 128049253,\n        \"eddbID\": 741,\n        \"grp\": \"bh\",\n        \"cost\": 132060,\n        \"mass\": 4,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"b4\",\n        \"edID\": 128049254,\n        \"eddbID\": 742,\n        \"grp\": \"bh\",\n        \"cost\": 139420,\n        \"mass\": 4,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        2,\n        2,\n        2,\n        1,\n        1,\n        1,\n        1\n      ],\n      \"hardpoints\": [\n        1,\n        1,\n        0,\n        0\n      ],\n      \"internal\": [\n        2,\n        2,\n        1,\n        1,\n        1,\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"2E\",\n        \"2E\",\n        \"2E\",\n        \"1E\",\n        \"1E\",\n        \"1E\",\n        \"1C\"\n      ],\n      \"hardpoints\": [\n        18,\n        18,\n        0,\n        0\n      ],\n      \"internal\": [\n        \"3v\",\n        \"01\",\n        \"\",\n        0,\n        0,\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/type_10_defender.json",
    "content": "{\n  \"type_10_defender\": {\n    \"edID\": 128785619,\n    \"eddbID\": 32,\n    \"properties\": {\n      \"name\": \"Type-10 Defender\",\n      \"manufacturer\": \"Lakon\",\n      \"class\": 3,\n      \"hullCost\": 121454652,\n      \"speed\": 179,\n      \"boost\": 219,\n      \"boostEnergy\": 19,\n      \"baseShieldStrength\": 320,\n      \"baseArmour\": 580,\n      \"hardness\": 75,\n      \"hullMass\": 1200,\n      \"heatCapacity\": 335,\n      \"masslock\": 26,\n      \"pipSpeed\": 0.041666666666667,\n      \"fighterHangars\": true,\n      \"pitch\": 20,\n      \"roll\": 20,\n      \"yaw\": 8,\n      \"crew\": 3,\n      \"reserveFuelCapacity\": 0.77\n    },\n    \"retailCost\": 124755342,\n    \"bulkheads\": [\n      {\n        \"id\": \"1Q\",\n        \"edID\": 128785621,\n        \"eddbID\": 1627,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"1R\",\n        \"edID\": 128785622,\n        \"eddbID\": 1628,\n        \"grp\": \"bh\",\n        \"cost\": 49902137,\n        \"mass\": 75,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"1S\",\n        \"edID\": 128785623,\n        \"eddbID\": 1629,\n        \"grp\": \"bh\",\n        \"cost\": 112279807,\n        \"mass\": 150,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"1T\",\n        \"edID\": 128785624,\n        \"eddbID\": 1630,\n        \"grp\": \"bh\",\n        \"cost\": 265354612,\n        \"mass\": 150,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"1U\",\n        \"edID\": 128785625,\n        \"eddbID\": 1631,\n        \"grp\": \"bh\",\n        \"cost\": 294048342,\n        \"mass\": 150,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        8,\n        7,\n        7,\n        5,\n        7,\n        4,\n        6\n      ],\n      \"hardpoints\": [\n        3,\n        3,\n        3,\n        3,\n        2,\n        2,\n        2,\n        1,\n        1,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        8,\n        7,\n        6,\n        5,\n        4,\n        4,\n        3,\n        3,\n        2,\n        {\n          \"class\": 5,\n          \"name\": \"Military\",\n          \"eligible\": {\n            \"mahr\": 1,\n            \"hr\": 1,\n            \"scb\": 1,\n            \"mrp\": 1,\n            \"gsrp\": 1,\n            \"gmrp\": 1,\n            \"ghrp\": 1\n          }\n        },\n        {\n          \"class\": 5,\n          \"name\": \"Military\",\n          \"eligible\": {\n            \"hr\": 1,\n            \"scb\": 1,\n            \"mrp\": 1,\n            \"gsrp\": 1,\n            \"gmrp\": 1,\n            \"ghrp\": 1\n          }\n        },\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"6E\",\n        \"7E\",\n        \"6E\",\n        \"5E\",\n        \"7E\",\n        \"4E\",\n        \"6C\"\n      ],\n      \"hardpoints\": [\n        0,\n        0,\n        0,\n        0,\n        17,\n        17,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        \"06\",\n        \"05\",\n        \"4j\",\n        \"03\",\n        \"02\",\n        0,\n        \"01\",\n        0,\n        \"\",\n        0,\n        0,\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/type_6_transporter.json",
    "content": "{\n  \"type_6_transporter\": {\n    \"edID\": 128049285,\n    \"eddbID\": 19,\n    \"properties\": {\n      \"name\": \"Type-6 Transporter\",\n      \"manufacturer\": \"Lakon\",\n      \"class\": 2,\n      \"hullCost\": 865790,\n      \"speed\": 220,\n      \"boost\": 350,\n      \"heatCapacity\": 179,\n      \"boostEnergy\": 10,\n      \"baseShieldStrength\": 90,\n      \"baseArmour\": 180,\n      \"hardness\": 35,\n      \"hullMass\": 155,\n      \"masslock\": 8,\n      \"pipSpeed\": 0.14772727272727,\n      \"pitch\": 30,\n      \"roll\": 100,\n      \"yaw\": 17,\n      \"crew\": 1,\n      \"reserveFuelCapacity\": 0.39\n    },\n    \"retailCost\": 1045950,\n    \"bulkheads\": [\n      {\n        \"id\": \"Bn\",\n        \"edID\": 128049286,\n        \"eddbID\": 768,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"Bo\",\n        \"edID\": 128049287,\n        \"eddbID\": 769,\n        \"grp\": \"bh\",\n        \"cost\": 418380,\n        \"mass\": 12,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"Bp\",\n        \"edID\": 128049288,\n        \"eddbID\": 770,\n        \"grp\": \"bh\",\n        \"cost\": 941350,\n        \"mass\": 23,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"Bq\",\n        \"edID\": 128049289,\n        \"eddbID\": 771,\n        \"grp\": \"bh\",\n        \"cost\": 2224730,\n        \"mass\": 23,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"Br\",\n        \"edID\": 128049290,\n        \"eddbID\": 772,\n        \"grp\": \"bh\",\n        \"cost\": 2465290,\n        \"mass\": 23,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        3,\n        4,\n        4,\n        2,\n        3,\n        2,\n        4\n      ],\n      \"hardpoints\": [\n        1,\n        1,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        5,\n        5,\n        4,\n        4,\n        3,\n        2,\n        2,\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"3E\",\n        \"4E\",\n        \"4E\",\n        \"2E\",\n        \"3E\",\n        \"2E\",\n        \"4C\"\n      ],\n      \"hardpoints\": [\n        17,\n        17,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        \"03\",\n        \"03\",\n        \"02\",\n        \"02\",\n        \"44\",\n        \"00\",\n        \"\",\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/type_7_transport.json",
    "content": "{\n  \"type_7_transport\": {\n    \"edID\": 128049297,\n    \"eddbID\": 20,\n    \"properties\": {\n      \"name\": \"Type-7 Transporter\",\n      \"manufacturer\": \"Lakon\",\n      \"class\": 3,\n      \"hullCost\": 16780510,\n      \"speed\": 180,\n      \"heatCapacity\": 226,\n      \"boost\": 300,\n      \"boostEnergy\": 10,\n      \"baseShieldStrength\": 155,\n      \"baseArmour\": 340,\n      \"hardness\": 54,\n      \"hullMass\": 350,\n      \"masslock\": 10,\n      \"pipSpeed\": 0.16666666666667,\n      \"pitch\": 22,\n      \"roll\": 60,\n      \"yaw\": 22,\n      \"crew\": 1,\n      \"reserveFuelCapacity\": 0.52\n    },\n    \"retailCost\": 17472260,\n    \"bulkheads\": [\n      {\n        \"id\": \"Bs\",\n        \"edID\": 128049298,\n        \"eddbID\": 773,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"Bt\",\n        \"edID\": 128049299,\n        \"eddbID\": 774,\n        \"grp\": \"bh\",\n        \"cost\": 6988900,\n        \"mass\": 32,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"Bu\",\n        \"edID\": 128049300,\n        \"eddbID\": 775,\n        \"grp\": \"bh\",\n        \"cost\": 15725030,\n        \"mass\": 63,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"Bv\",\n        \"edID\": 128049301,\n        \"eddbID\": 776,\n        \"grp\": \"bh\",\n        \"cost\": 37163480,\n        \"mass\": 63,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"Bw\",\n        \"edID\": 128049302,\n        \"eddbID\": 777,\n        \"grp\": \"bh\",\n        \"cost\": 41182100,\n        \"mass\": 63,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        5,\n        5,\n        5,\n        4,\n        4,\n        3,\n        5\n      ],\n      \"hardpoints\": [\n        1,\n        1,\n        1,\n        1,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        6,\n        6,\n        6,\n        5,\n        5,\n        5,\n        3,\n        3,\n        2,\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"4E\",\n        \"5E\",\n        \"5E\",\n        \"4E\",\n        \"3E\",\n        \"3E\",\n        \"5C\"\n      ],\n      \"hardpoints\": [\n        17,\n        17,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        \"04\",\n        \"04\",\n        \"04\",\n        \"03\",\n        \"03\",\n        \"49\",\n        0,\n        0,\n        \"\",\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/type_9_heavy.json",
    "content": "{\n  \"type_9_heavy\": {\n    \"edID\": 128049333,\n    \"eddbID\": 21,\n    \"properties\": {\n      \"name\": \"Type-9 Heavy\",\n      \"manufacturer\": \"Lakon\",\n      \"class\": 3,\n      \"hullCost\": 72076730,\n      \"speed\": 130,\n      \"boost\": 200,\n      \"boostEnergy\": 19,\n      \"heatCapacity\": 289,\n      \"baseShieldStrength\": 240,\n      \"baseArmour\": 480,\n      \"hardness\": 65,\n      \"hullMass\": 850,\n      \"masslock\": 16,\n      \"pipSpeed\": 0.17307692307692,\n      \"fighterHangars\": true,\n      \"pitch\": 20,\n      \"roll\": 20,\n      \"yaw\": 8,\n      \"crew\": 3,\n      \"reserveFuelCapacity\": 0.77\n    },\n    \"retailCost\": 76555840,\n    \"bulkheads\": [\n      {\n        \"id\": \"Bx\",\n        \"edID\": 128049334,\n        \"eddbID\": 803,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"By\",\n        \"edID\": 128049335,\n        \"eddbID\": 804,\n        \"grp\": \"bh\",\n        \"cost\": 30622340,\n        \"mass\": 75,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"Bz\",\n        \"edID\": 128049336,\n        \"eddbID\": 805,\n        \"grp\": \"bh\",\n        \"cost\": 68900260,\n        \"mass\": 150,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"BA\",\n        \"edID\": 128049337,\n        \"eddbID\": 806,\n        \"grp\": \"bh\",\n        \"cost\": 162834280,\n        \"mass\": 150,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"BB\",\n        \"edID\": 128049338,\n        \"eddbID\": 807,\n        \"grp\": \"bh\",\n        \"cost\": 180442120,\n        \"mass\": 150,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        6,\n        7,\n        6,\n        5,\n        6,\n        4,\n        6\n      ],\n      \"hardpoints\": [\n        2,\n        2,\n        2,\n        1,\n        1,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        8,\n        8,\n        7,\n        6,\n        5,\n        4,\n        4,\n        3,\n        3,\n        2,\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"6E\",\n        \"7E\",\n        \"6E\",\n        \"5E\",\n        \"6E\",\n        \"4E\",\n        \"6C\"\n      ],\n      \"hardpoints\": [\n        17,\n        17,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        \"06\",\n        \"06\",\n        \"05\",\n        \"4j\",\n        \"03\",\n        \"02\",\n        0,\n        \"01\",\n        0,\n        \"\",\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/viper.json",
    "content": "{\n  \"viper\": {\n    \"edID\": 128049273,\n    \"eddbID\": 22,\n    \"properties\": {\n      \"name\": \"Viper\",\n      \"manufacturer\": \"Faulcon DeLacy\",\n      \"class\": 1,\n      \"hullCost\": 95900,\n      \"speed\": 320,\n      \"boost\": 400,\n      \"boostEnergy\": 10,\n      \"baseShieldStrength\": 105,\n      \"baseArmour\": 70,\n      \"hardness\": 35,\n      \"hullMass\": 50,\n      \"heatCapacity\": 195,\n      \"masslock\": 7,\n      \"pipSpeed\": 0.09375,\n      \"pitch\": 35,\n      \"roll\": 90,\n      \"yaw\": 15,\n      \"crew\": 1,\n      \"reserveFuelCapacity\": 0.41\n    },\n    \"retailCost\": 142930,\n    \"bulkheads\": [\n      {\n        \"id\": \"B3\",\n        \"edID\": 128049274,\n        \"eddbID\": 758,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"B4\",\n        \"edID\": 128049275,\n        \"eddbID\": 759,\n        \"grp\": \"bh\",\n        \"cost\": 57170,\n        \"mass\": 5,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"B5\",\n        \"edID\": 128049276,\n        \"eddbID\": 760,\n        \"grp\": \"bh\",\n        \"cost\": 128640,\n        \"mass\": 9,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"B6\",\n        \"edID\": 128049277,\n        \"eddbID\": 761,\n        \"grp\": \"bh\",\n        \"cost\": 304010,\n        \"mass\": 9,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"B7\",\n        \"edID\": 128049278,\n        \"eddbID\": 762,\n        \"grp\": \"bh\",\n        \"cost\": 336890,\n        \"mass\": 9,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        3,\n        3,\n        3,\n        2,\n        3,\n        3,\n        2\n      ],\n      \"hardpoints\": [\n        2,\n        2,\n        1,\n        1,\n        0,\n        0\n      ],\n      \"internal\": [\n        3,\n        3,\n        {\n          \"class\": 3,\n          \"name\": \"Military\",\n          \"eligible\": {\n            \"mahr\": 1,\n            \"hr\": 1,\n            \"scb\": 1,\n            \"mrp\": 1,\n            \"gsrp\": 1,\n            \"gmrp\": 1,\n            \"ghrp\": 1\n          }\n        },\n        2,\n        1,\n        1,\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"3E\",\n        \"3E\",\n        \"3E\",\n        \"2E\",\n        \"3E\",\n        \"3E\",\n        \"2C\"\n      ],\n      \"hardpoints\": [\n        17,\n        17,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        \"01\",\n        \"44\",\n        0,\n        0,\n        \"\",\n        0,\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/viper_mk_iv.json",
    "content": "{\n  \"viper_mk_iv\": {\n    \"edID\": 128672255,\n    \"eddbID\": 28,\n    \"properties\": {\n      \"name\": \"Viper Mk IV\",\n      \"manufacturer\": \"Faulcon DeLacy\",\n      \"class\": 1,\n      \"hullCost\": 310220,\n      \"speed\": 270,\n      \"boost\": 340,\n      \"boostEnergy\": 10,\n      \"baseShieldStrength\": 150,\n      \"baseArmour\": 150,\n      \"hardness\": 35,\n      \"hullMass\": 190,\n      \"heatCapacity\": 209,\n      \"masslock\": 7,\n      \"pipSpeed\": 0.087962962962963,\n      \"pitch\": 30,\n      \"roll\": 90,\n      \"yaw\": 12,\n      \"crew\": 1,\n      \"reserveFuelCapacity\": 0.46\n    },\n    \"retailCost\": 437930,\n    \"bulkheads\": [\n      {\n        \"id\": \"c6\",\n        \"edID\": 128672257,\n        \"eddbID\": 1508,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"c7\",\n        \"edID\": 128672258,\n        \"eddbID\": 1509,\n        \"grp\": \"bh\",\n        \"cost\": 175180,\n        \"mass\": 5,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"c8\",\n        \"edID\": 128672259,\n        \"eddbID\": 1510,\n        \"grp\": \"bh\",\n        \"cost\": 394140,\n        \"mass\": 9,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"c9\",\n        \"edID\": 128672260,\n        \"eddbID\": 1511,\n        \"grp\": \"bh\",\n        \"cost\": 931490,\n        \"mass\": 9,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"ca\",\n        \"edID\": 128672261,\n        \"eddbID\": 1512,\n        \"grp\": \"bh\",\n        \"cost\": 1033210,\n        \"mass\": 9,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        4,\n        4,\n        4,\n        2,\n        3,\n        3,\n        4\n      ],\n      \"hardpoints\": [\n        2,\n        2,\n        1,\n        1,\n        0,\n        0\n      ],\n      \"internal\": [\n        4,\n        4,\n        3,\n        {\n          \"class\": 3,\n          \"name\": \"Military\",\n          \"eligible\": {\n            \"mahr\": 1,\n            \"hr\": 1,\n            \"scb\": 1,\n            \"mrp\": 1,\n            \"gsrp\": 1,\n            \"gmrp\": 1,\n            \"ghrp\": 1\n          }\n        },\n        2,\n        2,\n        1,\n        1,\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"4E\",\n        \"4E\",\n        \"4E\",\n        \"2E\",\n        \"3E\",\n        \"3E\",\n        \"4C\"\n      ],\n      \"hardpoints\": [\n        0,\n        0,\n        17,\n        17,\n        0,\n        0\n      ],\n      \"internal\": [\n        \"02\",\n        \"02\",\n        \"44\",\n        0,\n        \"00\",\n        0,\n        \"\",\n        0,\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/coriolis/ships/vulture.json",
    "content": "{\n  \"vulture\": {\n    \"edID\": 128049309,\n    \"eddbID\": 23,\n    \"properties\": {\n      \"name\": \"Vulture\",\n      \"manufacturer\": \"Core Dynamics\",\n      \"class\": 1,\n      \"hullCost\": 4689640,\n      \"speed\": 210,\n      \"boost\": 340,\n      \"boostEnergy\": 16,\n      \"baseShieldStrength\": 240,\n      \"baseArmour\": 160,\n      \"heatCapacity\": 237,\n      \"hardness\": 55,\n      \"hullMass\": 230,\n      \"masslock\": 10,\n      \"pipSpeed\": 0.023809523809524,\n      \"pitch\": 42,\n      \"roll\": 110,\n      \"yaw\": 17,\n      \"crew\": 2,\n      \"reserveFuelCapacity\": 0.57\n    },\n    \"retailCost\": 4925620,\n    \"bulkheads\": [\n      {\n        \"id\": \"B8\",\n        \"edID\": 128049310,\n        \"eddbID\": 783,\n        \"grp\": \"bh\",\n        \"cost\": 0,\n        \"mass\": 0,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 0.8\n      },\n      {\n        \"id\": \"B9\",\n        \"edID\": 128049311,\n        \"eddbID\": 784,\n        \"grp\": \"bh\",\n        \"cost\": 1970250,\n        \"mass\": 17,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 1.52\n      },\n      {\n        \"id\": \"Ba\",\n        \"edID\": 128049312,\n        \"eddbID\": 785,\n        \"grp\": \"bh\",\n        \"cost\": 4433050,\n        \"mass\": 35,\n        \"causres\": 0,\n        \"explres\": -0.4,\n        \"kinres\": -0.2,\n        \"thermres\": 0,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"Bb\",\n        \"edID\": 128049313,\n        \"eddbID\": 786,\n        \"grp\": \"bh\",\n        \"cost\": 10476780,\n        \"mass\": 35,\n        \"causres\": 0,\n        \"explres\": -0.5,\n        \"kinres\": -0.75,\n        \"thermres\": 0.5,\n        \"hullboost\": 2.5\n      },\n      {\n        \"id\": \"Bc\",\n        \"edID\": 128049314,\n        \"eddbID\": 787,\n        \"grp\": \"bh\",\n        \"cost\": 11609670,\n        \"mass\": 35,\n        \"causres\": 0,\n        \"explres\": 0.2,\n        \"kinres\": 0.25,\n        \"thermres\": -0.4,\n        \"hullboost\": 2.5\n      }\n    ],\n    \"slots\": {\n      \"standard\": [\n        4,\n        5,\n        4,\n        3,\n        5,\n        4,\n        3\n      ],\n      \"hardpoints\": [\n        3,\n        3,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        5,\n        {\n          \"class\": 5,\n          \"name\": \"Military\",\n          \"eligible\": {\n            \"mahr\": 1,\n            \"hr\": 1,\n            \"scb\": 1,\n            \"mrp\": 1,\n            \"gsrp\": 1,\n            \"gmrp\": 1,\n            \"ghrp\": 1\n          }\n        },\n        4,\n        2,\n        1,\n        1,\n        1,\n        1\n      ]\n    },\n    \"defaults\": {\n      \"standard\": [\n        \"4E\",\n        \"5E\",\n        \"4E\",\n        \"3E\",\n        \"5E\",\n        \"4E\",\n        \"3C\"\n      ],\n      \"hardpoints\": [\n        17,\n        17,\n        0,\n        0,\n        0,\n        0\n      ],\n      \"internal\": [\n        \"4e\",\n        0,\n        \"02\",\n        0,\n        0,\n        \"\",\n        0,\n        0\n      ]\n    }\n  }\n}\n"
  },
  {
    "path": "resources/data/edcd/fdevids/How to determine MatTrader and Broker type",
    "content": "How to determine material trader and technology broker type by the station economies in simple pseudocode:\n\nMaterial trader type:\nIF (primary_economy == \"hightech\" OR primary_economy == \"military\") trader_type = \"Encoded\";\nIF (primary_economy == \"extraction\" OR primary_economy == \"refinery\") trader_type = \"Raw material\";\nIF (primary_economy == \"industrial\") trader_type = \"Manufactured\";\nIF (secondary_economy == \"hightech\" OR secondary_economy == \"military\") trader_type = \"Encoded\";\nIF (secondary_economy == \"extraction\" OR secondary_economy == \"refinery\") trader_type = \"Raw material\";\nIF (secondary_economy == \"industrial\") trader_type = \"Manufactured\";\n\nTech broker type:\nIF (primary_economy == \"hightech\") broker_type = \"Guardian\";\nIF (primary_economy == \"industrial\") broker_type = \"Human\"; // human may be set as a default and it is not needed\nIF (secondary_economy == \"hightech\") broker_type = \"Guardian\";\nIF (secondary_economy != null AND secondary_economy != \"hightech\") broker_type = \"Human\"; // needs a confirmation\n"
  },
  {
    "path": "resources/data/edcd/fdevids/commodity.csv",
    "content": "id,symbol,category,name\n128049152,Platinum,Metals,Platinum\n128049153,Palladium,Metals,Palladium\n128049154,Gold,Metals,Gold\n128049155,Silver,Metals,Silver\n128049156,Bertrandite,Minerals,Bertrandite\n128049157,Indite,Minerals,Indite\n128049158,Gallite,Minerals,Gallite\n128049159,Coltan,Minerals,Coltan\n128049160,Uraninite,Minerals,Uraninite\n128049161,Lepidolite,Minerals,Lepidolite\n128049162,Cobalt,Metals,Cobalt\n128049163,Rutile,Minerals,Rutile\n128049165,Bauxite,Minerals,Bauxite\n128049166,Water,Chemicals,Water\n128049168,Beryllium,Metals,Beryllium\n128049169,Indium,Metals,Indium\n128049170,Gallium,Metals,Gallium\n128049171,Tantalum,Metals,Tantalum\n128049172,Uranium,Metals,Uranium\n128049173,Lithium,Metals,Lithium\n128049174,Titanium,Metals,Titanium\n128049175,Copper,Metals,Copper\n128049176,Aluminium,Metals,Aluminium\n128049177,Algae,Foods,Algae\n128049178,FruitAndVegetables,Foods,Fruit and Vegetables\n128049180,Grain,Foods,Grain\n128049182,Animalmeat,Foods,Animal Meat\n128049183,Fish,Foods,Fish\n128049184,FoodCartridges,Foods,Food Cartridges\n128049185,SyntheticMeat,Foods,Synthetic Meat\n128049188,Tea,Foods,Tea\n128049189,Coffee,Foods,Coffee\n128049190,Leather,Textiles,Leather\n128049191,NaturalFabrics,Textiles,Natural Fabrics\n128049193,SyntheticFabrics,Textiles,Synthetic Fabrics\n128049197,Polymers,Industrial Materials,Polymers\n128049199,Semiconductors,Industrial Materials,Semiconductors\n128049200,Superconductors,Industrial Materials,Superconductors\n128049202,HydrogenFuel,Chemicals,Hydrogen Fuel\n128049203,MineralOil,Chemicals,Mineral Oil\n128049204,Explosives,Chemicals,Explosives\n128049205,Pesticides,Chemicals,Pesticides\n128049208,AgriculturalMedicines,Medicines,Agri-Medicines\n128049209,PerformanceEnhancers,Medicines,Performance Enhancers\n128049210,BasicMedicines,Medicines,Basic Medicines\n128049212,BasicNarcotics,Legal Drugs,Narcotics\n128049213,Tobacco,Legal Drugs,Tobacco\n128049214,Beer,Legal Drugs,Beer\n128049215,Wine,Legal Drugs,Wine\n128049216,Liquor,Legal Drugs,Liquor\n128049217,PowerGenerators,Machinery,Power Generators\n128049218,WaterPurifiers,Machinery,Water Purifiers\n128049220,HeliostaticFurnaces,Machinery,Microbial Furnaces\n128049221,MineralExtractors,Machinery,Mineral Extractors\n128049222,CropHarvesters,Machinery,Crop Harvesters\n128049223,MarineSupplies,Machinery,Marine Equipment\n128049225,ComputerComponents,Technology,Computer Components\n128049226,HazardousEnvironmentSuits,Technology,H.E. Suits\n128049227,Robotics,Technology,Robotics\n128049228,AutoFabricators,Technology,Auto-Fabricators\n128049229,AnimalMonitors,Technology,Animal Monitors\n128049230,AquaponicSystems,Technology,Aquaponic Systems\n128049231,AdvancedCatalysers,Technology,Advanced Catalysers\n128049232,TerrainEnrichmentSystems,Technology,Land Enrichment Systems\n128049233,PersonalWeapons,Weapons,Personal Weapons\n128049234,BattleWeapons,Weapons,Battle Weapons\n128049235,ReactiveArmour,Weapons,Reactive Armour\n128049236,NonLethalWeapons,Weapons,Non-Lethal Weapons\n128049238,DomesticAppliances,Consumer Items,Domestic Appliances\n128049240,ConsumerTechnology,Consumer Items,Consumer Technology\n128049241,Clothing,Consumer Items,Clothing\n128049243,Slaves,Slavery,Slaves\n128049244,Biowaste,Waste,Biowaste\n128049245,ToxicWaste,Waste,Toxic Waste\n128049246,ChemicalWaste,Waste,Chemical Waste\n128049248,Scrap,Waste,Scrap\n128049669,ProgenitorCells,Medicines,Progenitor Cells\n128049670,CombatStabilisers,Medicines,Combat Stabilisers\n128049671,ResonatingSeparators,Technology,Resonating Separators\n128049672,BioReducingLichen,Technology,Bioreducing Lichen\n128064028,AtmosphericExtractors,Machinery,Atmospheric Processors\n128066403,Drones,NonMarketable,Limpets\n128666752,USSCargoBlackBox,Salvage,Black Box\n128666754,USSCargoTradeData,Salvage,Trade Data\n128666755,USSCargoMilitaryPlans,Salvage,Military Plans\n128666756,USSCargoAncientArtefact,Salvage,Ancient Artefact\n128666757,USSCargoRareArtwork,Salvage,Rare Artwork\n128666758,USSCargoExperimentalChemicals,Salvage,Experimental Chemicals\n128666759,USSCargoRebelTransmissions,Salvage,Rebel Transmissions\n128666760,USSCargoPrototypeTech,Salvage,Prototype Tech\n128666761,USSCargoTechnicalBlueprints,Salvage,Technical Blueprints\n128667728,ImperialSlaves,Slavery,Imperial Slaves\n128668547,UnknownArtifact,Salvage,Thargoid Sensor\n128668548,AiRelics,Salvage,AI Relics\n128668549,Hafnium178,Metals,Hafnium 178\n128668550,Painite,Minerals,Painite\n128668551,Antiquities,Salvage,Antiquities\n128668552,MilitaryIntelligence,Salvage,Military Intelligence\n128671118,Osmium,Metals,Osmium\n128671443,SAP8CoreContainer,Salvage,SAP 8 Core Container\n128671444,TrinketsOfFortune,Consumer Items,Trinkets of Hidden Fortune\n128672123,WreckageComponents,Salvage,Wreckage Components\n128672124,EncriptedDataStorage,Salvage,Encrypted Data Storage\n128672125,OccupiedCryoPod,Salvage,Occupied Escape Pod\n128672126,PersonalEffects,Salvage,Personal Effects\n128672127,ComercialSamples,Salvage,Commercial Samples\n128672128,TacticalData,Salvage,Tactical Data\n128672129,AssaultPlans,Salvage,Assault Plans\n128672130,EncryptedCorrespondence,Salvage,Encrypted Correspondence\n128672131,DiplomaticBag,Salvage,Diplomatic Bag\n128672132,ScientificResearch,Salvage,Scientific Research\n128672133,ScientificSamples,Salvage,Scientific Samples\n128672134,PoliticalPrisoner,Salvage,Political Prisoners\n128672135,Hostage,Salvage,Hostages\n128672136,LargeExplorationDataCash,Salvage,Large Survey Data Cache\n128672137,SmallExplorationDataCash,Salvage,Small Survey Data Cache\n128672159,AntiqueJewellery,Salvage,Antique Jewellery\n128672160,PreciousGems,Salvage,Precious Gems\n128672161,EarthRelics,Salvage,Earth Relics\n128672162,GeneBank,Salvage,Gene Bank\n128672163,TimeCapsule,Salvage,Time Capsule\n128672294,Cryolite,Minerals,Cryolite\n128672295,Goslarite,Minerals,Goslarite\n128672296,Moissanite,Minerals,Moissanite\n128672297,Pyrophyllite,Minerals,Pyrophyllite\n128672298,Lanthanum,Metals,Lanthanum\n128672299,Thallium,Metals,Thallium\n128672300,Bismuth,Metals,Bismuth\n128672301,Thorium,Metals,Thorium\n128672302,CeramicComposites,Industrial Materials,Ceramic Composites\n128672303,SyntheticReagents,Chemicals,Synthetic Reagents\n128672304,NerveAgents,Chemicals,Nerve Agents\n128672305,SurfaceStabilisers,Chemicals,Surface Stabilisers\n128672306,BootlegLiquor,Legal Drugs,Bootleg Liquor\n128672307,GeologicalEquipment,Machinery,Geological Equipment\n128672308,ThermalCoolingUnits,Machinery,Thermal Cooling Units\n128672309,BuildingFabricators,Machinery,Building Fabricators\n128672310,MuTomImager,Technology,Muon Imager\n128672311,StructuralRegulators,Technology,Structural Regulators\n128672312,Landmines,Weapons,Landmines\n128672313,SkimerComponents,Machinery,Skimmer Components\n128672314,EvacuationShelter,Consumer Items,Evacuation Shelter\n128672315,GeologicalSamples,Salvage,Geological Samples\n128672701,MetaAlloys,Industrial Materials,Meta-Alloys\n128672775,Taaffeite,Minerals,Taaffeite\n128672776,Jadeite,Minerals,Jadeite\n128672810,UnstableDataCore,Salvage,Unstable Data Core\n128672811,DamagedEscapePod,Salvage,Damaged Escape Pod\n128673845,Praseodymium,Metals,Praseodymium\n128673846,Bromellite,Minerals,Bromellite\n128673847,Samarium,Metals,Samarium\n128673848,LowTemperatureDiamond,Minerals,Low Temperature Diamonds\n128673850,HydrogenPeroxide,Chemicals,Hydrogen Peroxide\n128673851,LiquidOxygen,Chemicals,Liquid oxygen\n128673852,MethanolMonohydrateCrystals,Minerals,Methanol Monohydrate Crystals\n128673853,LithiumHydroxide,Minerals,Lithium Hydroxide\n128673854,MethaneClathrate,Minerals,Methane Clathrate\n128673855,InsulatingMembrane,Industrial Materials,Insulating Membrane\n128673856,CMMComposite,Industrial Materials,CMM Composite\n128673857,CoolingHoses,Industrial Materials,Micro-weave Cooling Hoses\n128673858,NeofabricInsulation,Industrial Materials,Neofabric Insulation\n128673859,ArticulationMotors,Machinery,Articulation Motors\n128673860,HNShockMount,Machinery,HN Shock Mount\n128673861,EmergencyPowerCells,Machinery,Emergency Power Cells\n128673862,PowerConverter,Machinery,Power Converter\n128673863,PowerGridAssembly,Machinery,Energy Grid Assembly\n128673864,PowerTransferConduits,Machinery,Power Transfer Bus\n128673865,RadiationBaffle,Machinery,Radiation Baffle\n128673866,ExhaustManifold,Machinery,Exhaust Manifold\n128673867,ReinforcedMountingPlate,Machinery,Reinforced Mounting Plate\n128673868,HeatsinkInterlink,Machinery,Heatsink Interlink\n128673869,MagneticEmitterCoil,Machinery,Magnetic Emitter Coil\n128673870,ModularTerminals,Machinery,Modular Terminals\n128673871,Nanobreakers,Technology,Nanobreakers\n128673872,TelemetrySuite,Technology,Telemetry Suite\n128673873,MicroControllers,Technology,Micro Controllers\n128673874,IonDistributor,Machinery,Ion Distributor\n128673875,DiagnosticSensor,Technology,Hardware Diagnostic Sensor\n128673876,UnknownArtifact2,Salvage,Thargoid Probe\n128682044,ConductiveFabrics,Textiles,Conductive Fabrics\n128682045,MilitaryGradeFabrics,Textiles,Military Grade Fabrics\n128682046,AdvancedMedicines,Medicines,Advanced Medicines\n128682047,MedicalDiagnosticEquipment,Technology,Medical Diagnostic Equipment\n128682048,SurvivalEquipment,Consumer Items,Survival Equipment\n128682049,DataCore,Salvage,Data Core\n128682051,MysteriousIdol,Salvage,Mysterious Idol\n128682052,ProhibitedResearchMaterials,Salvage,Prohibited Research Materials\n128682053,AntimatterContainmentUnit,Salvage,Antimatter Containment Unit\n128682054,SpacePioneerRelics,Salvage,Space Pioneer Relics\n128682055,FossilRemnants,Salvage,Fossil Remnants\n128732183,AncientRelic,Salvage,Guardian Relic\n128732184,AncientOrb,Salvage,Guardian Orb\n128732185,AncientCasket,Salvage,Guardian Casket\n128732186,AncientTablet,Salvage,Guardian Tablet\n128732187,AncientUrn,Salvage,Guardian Urn\n128732188,AncientTotem,Salvage,Guardian Totem\n128737287,UnknownResin,Salvage,Thargoid Resin\n128737288,UnknownBiologicalMatter,Salvage,Thargoid Biological Matter\n128737289,UnknownTechnologySamples,Salvage,Thargoid Technology Samples\n128740752,UnknownArtifact3,Salvage,Thargoid Link\n128793127,ThargoidHeart,Salvage,Thargoid Heart\n128793128,ThargoidTissueSampleType1,Salvage,Thargoid Cyclops Tissue Sample\n128793129,ThargoidTissueSampleType2,Salvage,Thargoid Basilisk Tissue Sample\n128793130,ThargoidTissueSampleType3,Salvage,Thargoid Medusa Tissue Sample\n128824468,ThargoidScoutTissueSample,Salvage,Thargoid Scout Tissue Sample\n128888499,AncientKey,Salvage,Ancient Key\n128902652,ThargoidTissueSampleType4,Salvage,Thargoid Hydra Tissue Sample\n128922517,M_TissueSample_Fluid,Salvage,Mollusc Fluid\n128922518,M_TissueSample_Soft,Salvage,Mollusc Soft Tissue\n128922519,M_TissueSample_Nerves,Salvage,Mollusc Brain Tissue\n128922520,S_TissueSample_Cells,Salvage,Pod Core Tissue\n128922521,S_TissueSample_Surface,Salvage,Pod Dead Tissue\n128922522,S_TissueSample_Core,Salvage,Pod Surface Tissue\n128922523,P_ParticulateSample,Salvage,Anomaly Particles\n128922781,S9_TissueSample_Shell,Salvage,Pod Tissue\n128922782,M3_TissueSample_Membrane,Salvage,Mollusc Membrane\n128922783,M3_TissueSample_Mycelium,Salvage,Mollusc Mycelium\n128922784,M3_TissueSample_Spores,Salvage,Mollusc Spores\n128922785,S6_TissueSample_Mesoglea,Salvage,Pod Mesoglea\n128922786,S6_TissueSample_Cells,Salvage,Pod Outer Tissue\n128922787,S6_TissueSample_Coenosarc,Salvage,Pod Shell Tissue\n128924325,Rhodplumsite,Minerals,Rhodplumsite\n128924326,Serendibite,Minerals,Serendibite\n128924327,Monazite,Minerals,Monazite\n128924328,Musgravite,Minerals,Musgravite\n128924329,Benitoite,Minerals,Benitoite\n128924330,Grandidierite,Minerals,Grandidierite\n128924331,Alexandrite,Minerals,Alexandrite\n128924332,Opal,Minerals,Void Opals\n128924333,RockforthFertiliser,Chemicals,Rockforth Fertiliser\n128924334,AgronomicTreatment,Chemicals,Agronomic Treatment\n128961249,Tritium,Chemicals,Tritium\n128983059,OnionHeadC,Legal Drugs,Onionhead Gamma Strain\n129015433,AncientRelicTG,Salvage,Unclassified Relic\n129019258,ThargoidTissueSampleType5,Salvage,Thargoid Orthrus Tissue Sample\n129019259,ThargoidGeneratorTissueSample,Salvage,Caustic Tissue Sample\n129022087,UnocuppiedEscapePod,Salvage,Unoccupied Escape Pod\n129022395,ThargoidTissueSampleType6,Salvage,Thargoid Glaive Tissue Sample\n129022396,ThargoidTissueSampleType7,Salvage,Thargoid Scythe Tissue Sample\n129022398,ThargoidTissueSampleType9a,Salvage,Titan Deep Tissue Sample\n129022399,ThargoidTissueSampleType9b,Salvage,Titan Tissue Sample\n129022400,ThargoidTissueSampleType9c,Salvage,Titan Partial Tissue Sample\n129022402,ThargoidTissueSampleType10a,Salvage,Titan Maw Deep Tissue Sample\n129022403,ThargoidTissueSampleType10b,Salvage,Titan Maw Tissue Sample\n129022404,ThargoidTissueSampleType10c,Salvage,Titan Maw Partial Tissue Sample\n129022405,UnknownSack,Salvage,Protective Membrane Scrap\n129022406,ThargoidPod,Salvage,Xenobiological Prison Pod\n129022407,CoralSap,Salvage,Coral Sap\n129022408,UnknownMineral,Salvage,Impure Spire Mineral\n129022409,UnknownRefinedMineral,Salvage,Semi-Refined Spire Mineral\n129030459,ThargoidTitanDriveComponent,Salvage,Titan Drive Component\n129030460,ThargoidCystSpecimen,Salvage,Cyst Specimen\n129030461,ThargoidBoneFragments,Salvage,Bone Fragments\n129030462,ThargoidOrganSample,Salvage,Organ Sample\n129031238,Steel,Metals,Steel\n129031327,Haematite,Minerals,Haematite"
  },
  {
    "path": "resources/data/edcd/fdevids/crimes.csv",
    "content": "id\nassault\ncollidedAtSpeedInNoFireZone\ncollidedAtSpeedInNoFireZone_hulldamage\ndockingMajorBlockingAirlock\ndockingMajorTresspass\ndockingMinorBlockingAirlock\ndockingMinorBlockingLandingPad\ndockingMinorTresspass\ndumpingNearStation\nfireInNoFireZone\nmurder\n"
  },
  {
    "path": "resources/data/edcd/fdevids/dockingdeniedreasons.csv",
    "content": "id\nActiveFighter\nDistance\nHostile\nNoSpace\nOffences\nTooLarge\n"
  },
  {
    "path": "resources/data/edcd/fdevids/economy.csv",
    "content": "id,name\n$economy_Agri;,Agriculture\n$economy_Colony;,Colony\n$economy_Extraction;,Extraction\n$economy_HighTech;,High Tech\n$economy_Industrial;,Industrial\n$economy_Military;,Military\n$economy_None;,None\n$economy_Refinery;,Refinery\n$economy_Service;,Service\n$economy_Terraforming;,Terraforming\n$economy_Tourism;,Tourism\n$economy_Prison;,Prison\n$economy_Damaged;,Damaged\n$economy_Rescue;,Rescue\n$economy_Repair;,Repair\n$economy_Carrier;,Private Enterprise\n"
  },
  {
    "path": "resources/data/edcd/fdevids/engineers.csv",
    "content": "id,system_address,market_id,name\n300000,3932277478114,128673927,Didi Vatermann\n300010,1109989017963,128674183,Bill Turner\n300030,4481966019282,128674695,Broo Tarquin\n300040,2827992680811,128674951,The Sarge\n300050,6131367744226,128675207,Zacariah Nemo\n300080,1458309141194,128675975,Liz Ryder\n300090,1733321102034,128676231,Hera Tani\n300100,6681123623626,128676487,Felicity Farseer\n300110,3790082132323,128676743,Ram Tah\n300120,4305444669811,128676999,Lei Cheung\n300130,12274907287851,128677255,Petra Olmanova\n300140,10477373803,128677511,Colonel Bris Dekker\n300150,48996147307082,128677767,Marsha Hicks\n300160,3107241104074,128678023,Elvira Martuuk\n300180,5031654888146,128678535,The Dweller\n300200,121569805492,128679047,Marco Qwent\n300210,24859942069665,128679303,Selene Jean\n300220,113573366131,128679559,Professor Palin\n300230,3932277478106,128679815,Lori Jameson\n300250,4481899074282,128680327,Juri Ishmaak\n300260,3107576681170,128680583,Tod 'The Blaster' McQuinn\n300270,164098653,128680839,Tiana Fortune\n300280,66038577537618,128681095,Mel Brandon\n300290,11887629902418,128681351,Etienne Dorn\n300300,594676730147,128954244,Chloe Sedesi\n400001,7268024067513,128972903,Jude Navarro\n400002,5068464399785,128973159,Domino Green\n400003,7269634614689,128973415,Hero Ferrari\n400004,2827975936355,128973671,Kit Fowler\n400005,2832832893634,128973927,Wellington Beck\n400006,3721329101171,128974183,Terra Velasquez\n400007,16065190962585,128974439,Uma Laszlo\n400008,8879744226018,128974695,Oden Geiger\n400009,670686455169,128974951,Yarden Bond\n400010,71536135676490,128986843,Baltanos\n400011,38001031029322,128987099,Eleanor Bresa\n400012,59166629864010,128986587,Rosa Dayette\n400013,13736779007129,128987355,Yi Shen\n"
  },
  {
    "path": "resources/data/edcd/fdevids/factionstate.csv",
    "content": "id,name\nNone,None\nBoom,Boom\nBust,Bust\nCivilUnrest,Civil Unrest\nCivilWar,Civil War\nElection,Election\nExpansion,Expansion\nFamine,Famine\nInvestment,Investment\nLockdown,Lockdown\nOutbreak,Outbreak\nRetreat,Retreat\nWar,War\nCivilLiberty,Civil Liberty\nPirateAttack,Pirate Attack\nBlight,Blight\nDrought,Drought\nInfrastructureFailure,Infrastructure Failure\nNaturalDisaster,Natural Disaster\nPublicHoliday,Public Holiday\nTerrorism,Terrorist Attack\nColdWar,Cold War\nColonisation,Colonisation\nHistoricEvent,Historic Event\nRevolution,Revolution\nTechnologicalLeap,Technological Leap\nTradeWar,Trade War\n"
  },
  {
    "path": "resources/data/edcd/fdevids/government.csv",
    "content": "id,name\n$government_Anarchy;,Anarchy\n$government_Communism;,Communism\n$government_Confederacy;,Confederacy\n$government_Cooperative;,Cooperative\n$government_Corporate;,Corporate\n$government_Democracy;,Democracy\n$government_Dictatorship;,Dictatorship\n$government_Feudal;,Feudal\n$government_Imperial;,Imperial\n$government_None;,None\n$government_Patronage;,Patronage\n$government_PrisonColony;,Prison Colony\n$government_Theocracy;,Theocracy\n$government_Engineer;,Engineer\n$government_Carrier;,Private Ownership\n"
  },
  {
    "path": "resources/data/edcd/fdevids/happiness.csv",
    "content": "id,name\n$Faction_HappinessBand1;,Elated\n$Faction_HappinessBand2;,Happy\n$Faction_HappinessBand3;,Discontented\n$Faction_HappinessBand4;,Unhappy\n$Faction_HappinessBand5;,Despondent\n"
  },
  {
    "path": "resources/data/edcd/fdevids/material.csv",
    "content": "id,symbol,rarity,type,category,name\n128672318,Iron,1,Raw,4,Iron\n128672319,Nickel,1,Raw,5,Nickel\n128672320,Tin,3,Raw,4,Tin\n128672321,Zinc,2,Raw,4,Zinc\n128672322,Carbon,1,Raw,1,Carbon\n128672323,Sulphur,1,Raw,3,Sulphur\n128672324,Phosphorus,1,Raw,2,Phosphorus\n128672325,Manganese,2,Raw,3,Manganese\n128672326,Selenium,4,Raw,4,Selenium\n128672327,Chromium,2,Raw,2,Chromium\n128672328,Vanadium,2,Raw,1,Vanadium\n128672329,Germanium,2,Raw,5,Germanium\n128672330,Cadmium,3,Raw,3,Cadmium\n128672331,Tungsten,3,Raw,5,Tungsten\n128672332,Arsenic,2,Raw,6,Arsenic\n128672333,Molybdenum,3,Raw,2,Molybdenum\n128672334,Niobium,3,Raw,1,Niobium\n128672335,Zirconium,2,Raw,7,Zirconium\n128672336,Mercury,3,Raw,6,Mercury\n128672337,Yttrium,4,Raw,1,Yttrium\n128672338,Tellurium,4,Raw,5,Tellurium\n128672339,Polonium,4,Raw,6,Polonium\n128672340,Technetium,4,Raw,2,Technetium\n128672341,Ruthenium,4,Raw,3,Ruthenium\n128672342,Antimony,4,Raw,7,Antimony\n128673877,GridResistors,1,Manufactured,Capacitors,Grid Resistors\n128673878,CrystalShards,1,Manufactured,Crystals,Crystal Shards\n128673879,TemperedAlloys,1,Manufactured,Thermic,Tempered Alloys\n128673880,BasicConductors,1,Manufactured,Conductive,Basic Conductors\n128673881,MechanicalScrap,1,Manufactured,Mechanical Components,Mechanical Scrap\n128673882,HeatConductionWiring,1,Manufactured,Heat,Heat Conduction Wiring\n128673883,WornShieldEmitters,1,Manufactured,Shielding,Worn Shield Emitters\n128673884,CompactComposites,1,Manufactured,Composite,Compact Composites\n128673885,SalvagedAlloys,1,Manufactured,Alloys,Salvaged Alloys\n128673886,ChemicalStorageUnits,1,Manufactured,Chemical,Chemical Storage Units\n128673887,HybridCapacitors,2,Manufactured,Capacitors,Hybrid Capacitors\n128673888,UncutFocusCrystals,2,Manufactured,Crystals,Flawed Focus Crystals\n128673889,HeatResistantCeramics,2,Manufactured,Thermic,Heat Resistant Ceramics\n128673890,ConductiveComponents,2,Manufactured,Conductive,Conductive Components\n128673891,MechanicalEquipment,2,Manufactured,Mechanical Components,Mechanical Equipment\n128673892,HeatDispersionPlate,2,Manufactured,Heat,Heat Dispersion Plate\n128673893,ShieldEmitters,2,Manufactured,Shielding,Shield Emitters\n128673894,FilamentComposites,2,Manufactured,Composite,Filament Composites\n128673895,GalvanisingAlloys,2,Manufactured,Alloys,Galvanising Alloys\n128673896,ChemicalProcessors,2,Manufactured,Chemical,Chemical Processors\n128673897,ElectrochemicalArrays,3,Manufactured,Capacitors,Electrochemical Arrays\n128673898,FocusCrystals,3,Manufactured,Crystals,Focus Crystals\n128673899,PrecipitatedAlloys,3,Manufactured,Thermic,Precipitated Alloys\n128673900,ConductiveCeramics,3,Manufactured,Conductive,Conductive Ceramics\n128673901,MechanicalComponents,3,Manufactured,Mechanical Components,Mechanical Components\n128673902,HeatExchangers,3,Manufactured,Heat,Heat Exchangers\n128673903,ShieldingSensors,3,Manufactured,Shielding,Shielding Sensors\n128673904,HighDensityComposites,3,Manufactured,Composite,High Density Composites\n128673905,PhaseAlloys,3,Manufactured,Alloys,Phase Alloys\n128673906,ChemicalDistillery,3,Manufactured,Chemical,Chemical Distillery\n128673907,PolymerCapacitors,4,Manufactured,Capacitors,Polymer Capacitors\n128673908,RefinedFocusCrystals,4,Manufactured,Crystals,Refined Focus Crystals\n128673909,ThermicAlloys,4,Manufactured,Thermic,Thermic Alloys\n128673910,ConductivePolymers,4,Manufactured,Conductive,Conductive Polymers\n128673911,ConfigurableComponents,4,Manufactured,Mechanical Components,Configurable Components\n128673912,HeatVanes,4,Manufactured,Heat,Heat Vanes\n128673913,CompoundShielding,4,Manufactured,Shielding,Compound Shielding\n128673914,FedProprietaryComposites,4,Manufactured,Composite,Proprietary Composites\n128673915,ProtoLightAlloys,4,Manufactured,Alloys,Proto Light Alloys\n128673916,ChemicalManipulators,4,Manufactured,Chemical,Chemical Manipulators\n128673917,MilitarySupercapacitors,5,Manufactured,Capacitors,Military Supercapacitors\n128673918,ExquisiteFocusCrystals,5,Manufactured,Crystals,Exquisite Focus Crystals\n128673919,MilitaryGradeAlloys,5,Manufactured,Thermic,Military Grade Alloys\n128673920,BiotechConductors,5,Manufactured,Conductive,Biotech Conductors\n128673921,ImprovisedComponents,5,Manufactured,Mechanical Components,Improvised Components\n128673922,ProtoHeatRadiators,5,Manufactured,Heat,Proto Heat Radiators\n128673923,ImperialShielding,5,Manufactured,Shielding,Imperial Shielding\n128673924,FedCoreComposites,5,Manufactured,Composite,Core Dynamics Composites\n128673925,ProtoRadiolicAlloys,5,Manufactured,Alloys,Proto Radiolic Alloys\n128673926,PharmaceuticalIsolators,5,Manufactured,Chemical,Pharmaceutical Isolators\n128681610,LegacyFirmware,1,Encoded,Encoded Firmware,Specialised Legacy Firmware\n128681611,EncryptedFiles,1,Encoded,Encryption Files,Unusual Encrypted Files\n128681612,BulkScanData,1,Encoded,Data Archives,Anomalous Bulk Scan Data\n128681613,DisruptedWakeEchoes,1,Encoded,Wake Scans,Atypical Disrupted Wake Echoes\n128681614,ScrambledEmissionData,1,Encoded,Emission Data,Exceptional Scrambled Emission Data\n128681615,ShieldCycleRecordings,1,Encoded,Shield Data,Distorted Shield Cycle Recordings\n128681616,ConsumerFirmware,2,Encoded,Encoded Firmware,Modified Consumer Firmware\n128681617,EncryptionCodes,2,Encoded,Encryption Files,Tagged Encryption Codes\n128681618,ScanArchives,2,Encoded,Data Archives,Unidentified Scan Archives\n128681619,FSDTelemetry,2,Encoded,Wake Scans,Anomalous FSD Telemetry\n128681620,ArchivedEmissionData,2,Encoded,Emission Data,Irregular Emission Data\n128681621,ShieldSoakAnalysis,2,Encoded,Shield Data,Inconsistent Shield Soak Analysis\n128681622,IndustrialFirmware,3,Encoded,Encoded Firmware,Cracked Industrial Firmware\n128681623,SymmetricKeys,3,Encoded,Encryption Files,Open Symmetric Keys\n128681624,ScanDatabanks,3,Encoded,Data Archives,Classified Scan Databanks\n128681625,WakeSolutions,3,Encoded,Wake Scans,Strange Wake Solutions\n128681626,EmissionData,3,Encoded,Emission Data,Unexpected Emission Data\n128681627,ShieldDensityReports,3,Encoded,Shield Data,Untypical Shield Scans \n128681628,SecurityFirmware,4,Encoded,Encoded Firmware,Security Firmware Patch\n128681629,EncryptionArchives,4,Encoded,Encryption Files,Atypical Encryption Archives\n128681630,EncodedScanData,4,Encoded,Data Archives,Divergent Scan Data\n128681631,HyperspaceTrajectories,4,Encoded,Wake Scans,Eccentric Hyperspace Trajectories\n128681632,DecodedEmissionData,4,Encoded,Emission Data,Decoded Emission Data\n128681633,ShieldPatternAnalysis,4,Encoded,Shield Data,Aberrant Shield Pattern Analysis\n128681634,EmbeddedFirmware,5,Encoded,Encoded Firmware,Modified Embedded Firmware\n128681635,AdaptiveEncryptors,5,Encoded,Encryption Files,Adaptive Encryptors Capture\n128681636,ClassifiedScanData,5,Encoded,Data Archives,Classified Scan Fragment\n128681637,DataminedWake,5,Encoded,Wake Scans,Datamined Wake Exceptions\n128681638,CompactEmissionsData,5,Encoded,Emission Data,Abnormal Compact Emissions Data\n128681639,ShieldFrequencyData,5,Encoded,Shield Data,Peculiar Shield Frequency Data\n128681640,UnknownEnergySource,5,Manufactured,None,Sensor Fragment\n128731669,UnknownShipSignature,3,Encoded,None,Thargoid Ship Signature\n128731670,UnknownWakeData,4,Encoded,None,Thargoid Wake Data\n128732197,AncientLanguageData,4,Encoded,None,Pattern Delta Obelisk Data\n128732198,AncientBiologicalData,4,Encoded,None,Pattern Alpha Obelisk Data\n128732199,AncientCulturalData,4,Encoded,None,Pattern Beta Obelisk Data\n128732200,AncientHistoricalData,4,Encoded,None,Pattern Gamma Obelisk Data\n128732201,AncientTechnologicalData,4,Encoded,None,Pattern Epsilon Obelisk Data\n128737280,TG_CompositionData,3,Encoded,None,Thargoid Material Composition Data\n128737281,TG_ResidueData,4,Encoded,None,Thargoid Residue Data\n128737282,TG_StructuralData,2,Encoded,None,Thargoid Structural Data\n128737283,UnknownCarapace,2,Manufactured,None,Thargoid Carapace\n128737284,UnknownEnergyCell,3,Manufactured,None,Thargoid Energy Cell\n128737285,UnknownOrganicCircuitry,5,Manufactured,None,Thargoid Organic Circuitry\n128737286,UnknownTechnologyComponents,4,Manufactured,None,Thargoid Technological Components\n128737287,TG_BioMechanicalConduits,3,Manufactured,None,Bio-Mechanical Conduits\n128793132,TG_PropulsionElement,5,Manufactured,None,Propulsion Elements\n128793133,TG_WeaponParts,4,Manufactured,None,Weapon Parts\n128793134,TG_WreckageComponents,3,Manufactured,None,Wreckage Components\n128793135,TG_ShipFlightData,3,Encoded,None,Ship Flight Data\n128793136,TG_ShipSystemsData,4,Encoded,None,Ship Systems Data\n128815023,Guardian_PowerCell,1,Manufactured,None,Guardian Power Cell\n128815024,Guardian_PowerConduit,2,Manufactured,None,Guardian Power Conduit\n128815025,Guardian_TechComponent,3,Manufactured,None,Guardian Technology Component\n128815026,Guardian_Sentinel_WeaponParts,3,Manufactured,None,Guardian Sentinel Weapon Parts\n128815027,Guardian_Sentinel_WreckageComponents,1,Manufactured,None,Guardian Sentinel Wreckage Components\n128815028,Guardian_WeaponBlueprint,4,Encoded,None,Guardian Weapon Blueprint Segment\n128815029,Guardian_ModuleBlueprint,4,Encoded,None,Guardian Module Blueprint Segment\n128815030,Guardian_VesselBlueprint,5,Encoded,None,Guardian Vessel Blueprint Segment\n128837857,Rhenium,1,Raw,6,Rhenium\n128850245,Lead,1,Raw,7,Lead\n128850246,Boron,3,Raw,7,Boron\n"
  },
  {
    "path": "resources/data/edcd/fdevids/microresources.csv",
    "content": "id,symbol,category,English name\n?,bypass,Consumable,E-Breach\n?,largecapacitypowerregulator,Item,Power Regulator\n?,chemicalinventory,Data,Chemical Inventory\n?,dutyrota,Data,Duty Rota\n?,evacuationprotocols,Data,Evacuation Protocols\n?,explorationjournals,Data,Exploration Journals\n?,factionnews,Data,Faction News\n?,financialprojections,Data,Financial Projections\n?,salesrecords,Data,Sales Records\n?,unionmembership,Data,Union Membership\n?,compactlibrary,Item,Compact Library\n?,infinity,Item,infinity\n?,insightentertainmentsuite,Item,Insight Entertainment Suite\n?,lazarus,Item,lazarus\n?,energycell,Consumable,Energy Cell\n?,healthpack,Consumable,Medkit\n?,universaltranslator,Item,Universal Translator\n?,biochemicalagent,Item,Biochemical Agent\n?,degradedpowerregulator,Item,Degraded Power Regulator\n?,hush,Item,hush\n?,maintenancelogs,Data,Maintenance Logs\n?,patrolroutes,Data,Patrol Routes\n?,push,Item,push\n?,settlementdefenceplans,Data,Settlement Defence Plans\n?,surveilleancelogs,Data,Surveillance Logs\n?,syntheticpathogen,Item,Synthetic Pathogen\n?,buildingschematic,Item,Building Schematic\n?,operationalmanual,Data,Operational Manual\n?,blacklistdata,Data,Blacklist Data\n?,insight,Item,insight\n?,airqualityreports,Data,Air Quality Reports\n?,employeedirectory,Data,Employee Directory\n?,factionassociates,Data,Faction Associates\n?,meetingminutes,Data,Meeting Minutes\n?,multimediaentertainment,Data,Multimedia Entertainment\n?,networkaccesshistory,Data,Network Access History\n?,purchaserecords,Data,Purchase Records\n?,radioactivitydata,Data,Radioactivity Data\n?,residentialdirectory,Data,Residential Directory\n?,shareholderinformation,Data,Shareholder Information\n?,travelpermits,Data,Travel Permits\n?,accidentlogs,Data,Accident Logs\n?,campaignplans,Data,Campaign Plans\n?,combattrainingmaterial,Data,Combat Training Material\n?,internalcorrespondence,Data,Internal Correspondence\n?,payrollinformation,Data,Payroll Information\n?,personallogs,Data,Personal Logs\n?,weaponinventory,Data,Weapon Inventory\n?,atmosphericdata,Data,Atmospheric Data\n?,topographicalsurveys,Data,Topographical Surveys\n?,literaryfiction,Data,Literary Fiction\n?,reactoroutputreview,Data,Reactor Output Review\n?,nextofkinrecords,Data,Next of Kin Records\n?,purchaserequests,Data,Purchase Requests\n?,taxrecords,Data,Tax Records\n?,visitorregister,Data,Visitor Register\n?,pharmaceuticalpatents,Data,Pharmaceutical Patents\n?,vaccineresearch,Data,Vaccine Research\n?,virologydata,Data,Virology Data\n?,vaccinationrecords,Data,Vaccination Records\n?,censusdata,Data,Census Data\n?,geographicaldata,Data,Geographical Data\n?,mineralsurvey,Data,Mineral Survey\n?,chemicalformulae,Data,Chemical Formulae\n?,amm_grenade_frag,Consumable,Frag Grenade\n?,amm_grenade_emp,Consumable,Shield Disruptor\n?,amm_grenade_shield,Consumable,Shield Projector\n?,chemicalexperimentdata,Data,Chemical Experiment Data\n?,chemicalpatents,Data,Chemical Patents\n?,productionreports,Data,Production Reports\n?,productionschedule,Data,Production Schedule\n?,bloodtestresults,Data,Blood Test Results\n?,combatantperformance,Data,Combatant Performance\n?,troopdeploymentrecords,Data,Troop Deployment Records\n?,catmedia,Data,Cat Media\n?,employeegeneticdata,Data,Employee Genetic Data\n?,factiondonatorlist,Data,Faction Donator List\n?,nocdata,Data,NOC Data\n?,trueformfossil,Item,True Form Fossil\n"
  },
  {
    "path": "resources/data/edcd/fdevids/outfitting.csv",
    "content": "id,symbol,category,name,mount,guidance,ship,class,rating,entitlement\n128049250,SideWinder_Armour_Grade1,standard,Lightweight Alloy,,,Sidewinder,1,I,\n128049251,SideWinder_Armour_Grade2,standard,Reinforced Alloy,,,Sidewinder,1,I,\n128049252,SideWinder_Armour_Grade3,standard,Military Grade Composite,,,Sidewinder,1,I,\n128049253,SideWinder_Armour_Mirrored,standard,Mirrored Surface Composite,,,Sidewinder,1,I,\n128049254,SideWinder_Armour_Reactive,standard,Reactive Surface Composite,,,Sidewinder,1,I,\n128049256,Eagle_Armour_Grade1,standard,Lightweight Alloy,,,Eagle,1,I,\n128049257,Eagle_Armour_Grade2,standard,Reinforced Alloy,,,Eagle,1,I,\n128049258,Eagle_Armour_Grade3,standard,Military Grade Composite,,,Eagle,1,I,\n128049259,Eagle_Armour_Mirrored,standard,Mirrored Surface Composite,,,Eagle,1,I,\n128049260,Eagle_Armour_Reactive,standard,Reactive Surface Composite,,,Eagle,1,I,\n128049262,Hauler_Armour_Grade1,standard,Lightweight Alloy,,,Hauler,1,I,\n128049263,Hauler_Armour_Grade2,standard,Reinforced Alloy,,,Hauler,1,I,\n128049264,Hauler_Armour_Grade3,standard,Military Grade Composite,,,Hauler,1,I,\n128049265,Hauler_Armour_Mirrored,standard,Mirrored Surface Composite,,,Hauler,1,I,\n128049266,Hauler_Armour_Reactive,standard,Reactive Surface Composite,,,Hauler,1,I,\n128049268,Adder_Armour_Grade1,standard,Lightweight Alloy,,,Adder,1,I,\n128049269,Adder_Armour_Grade2,standard,Reinforced Alloy,,,Adder,1,I,\n128049270,Adder_Armour_Grade3,standard,Military Grade Composite,,,Adder,1,I,\n128049271,Adder_Armour_Mirrored,standard,Mirrored Surface Composite,,,Adder,1,I,\n128049272,Adder_Armour_Reactive,standard,Reactive Surface Composite,,,Adder,1,I,\n128049274,Viper_Armour_Grade1,standard,Lightweight Alloy,,,Viper MkIII,1,I,\n128049275,Viper_Armour_Grade2,standard,Reinforced Alloy,,,Viper MkIII,1,I,\n128049276,Viper_Armour_Grade3,standard,Military Grade Composite,,,Viper MkIII,1,I,\n128049277,Viper_Armour_Mirrored,standard,Mirrored Surface Composite,,,Viper MkIII,1,I,\n128049278,Viper_Armour_Reactive,standard,Reactive Surface Composite,,,Viper MkIII,1,I,\n128049280,CobraMkIII_Armour_Grade1,standard,Lightweight Alloy,,,Cobra MkIII,1,I,\n128049281,CobraMkIII_Armour_Grade2,standard,Reinforced Alloy,,,Cobra MkIII,1,I,\n128049282,CobraMkIII_Armour_Grade3,standard,Military Grade Composite,,,Cobra MkIII,1,I,\n128049283,CobraMkIII_Armour_Mirrored,standard,Mirrored Surface Composite,,,Cobra MkIII,1,I,\n128049284,CobraMkIII_Armour_Reactive,standard,Reactive Surface Composite,,,Cobra MkIII,1,I,\n128049286,Type6_Armour_Grade1,standard,Lightweight Alloy,,,Type-6 Transporter,1,I,\n128049287,Type6_Armour_Grade2,standard,Reinforced Alloy,,,Type-6 Transporter,1,I,\n128049288,Type6_Armour_Grade3,standard,Military Grade Composite,,,Type-6 Transporter,1,I,\n128049289,Type6_Armour_Mirrored,standard,Mirrored Surface Composite,,,Type-6 Transporter,1,I,\n128049290,Type6_Armour_Reactive,standard,Reactive Surface Composite,,,Type-6 Transporter,1,I,\n128049292,Dolphin_Armour_Grade1,standard,Lightweight Alloy,,,Dolphin,1,I,\n128049293,Dolphin_Armour_Grade2,standard,Reinforced Alloy,,,Dolphin,1,I,\n128049294,Dolphin_Armour_Grade3,standard,Military Grade Composite,,,Dolphin,1,I,\n128049295,Dolphin_Armour_Mirrored,standard,Mirrored Surface Composite,,,Dolphin,1,I,\n128049296,Dolphin_Armour_Reactive,standard,Reactive Surface Composite,,,Dolphin,1,I,\n128049298,Type7_Armour_Grade1,standard,Lightweight Alloy,,,Type-7 Transporter,1,I,\n128049299,Type7_Armour_Grade2,standard,Reinforced Alloy,,,Type-7 Transporter,1,I,\n128049300,Type7_Armour_Grade3,standard,Military Grade Composite,,,Type-7 Transporter,1,I,\n128049301,Type7_Armour_Mirrored,standard,Mirrored Surface Composite,,,Type-7 Transporter,1,I,\n128049302,Type7_Armour_Reactive,standard,Reactive Surface Composite,,,Type-7 Transporter,1,I,\n128049304,Asp_Armour_Grade1,standard,Lightweight Alloy,,,Asp Explorer,1,I,\n128049305,Asp_Armour_Grade2,standard,Reinforced Alloy,,,Asp Explorer,1,I,\n128049306,Asp_Armour_Grade3,standard,Military Grade Composite,,,Asp Explorer,1,I,\n128049307,Asp_Armour_Mirrored,standard,Mirrored Surface Composite,,,Asp Explorer,1,I,\n128049308,Asp_Armour_Reactive,standard,Reactive Surface Composite,,,Asp Explorer,1,I,\n128049310,Vulture_Armour_Grade1,standard,Lightweight Alloy,,,Vulture,1,I,\n128049311,Vulture_Armour_Grade2,standard,Reinforced Alloy,,,Vulture,1,I,\n128049312,Vulture_Armour_Grade3,standard,Military Grade Composite,,,Vulture,1,I,\n128049313,Vulture_Armour_Mirrored,standard,Mirrored Surface Composite,,,Vulture,1,I,\n128049314,Vulture_Armour_Reactive,standard,Reactive Surface Composite,,,Vulture,1,I,\n128049316,Empire_Trader_Armour_Grade1,standard,Lightweight Alloy,,,Imperial Clipper,1,I,\n128049317,Empire_Trader_Armour_Grade2,standard,Reinforced Alloy,,,Imperial Clipper,1,I,\n128049318,Empire_Trader_Armour_Grade3,standard,Military Grade Composite,,,Imperial Clipper,1,I,\n128049319,Empire_Trader_Armour_Mirrored,standard,Mirrored Surface Composite,,,Imperial Clipper,1,I,\n128049320,Empire_Trader_Armour_Reactive,standard,Reactive Surface Composite,,,Imperial Clipper,1,I,\n128049322,Federation_Dropship_Armour_Grade1,standard,Lightweight Alloy,,,Federal Dropship,1,I,\n128049323,Federation_Dropship_Armour_Grade2,standard,Reinforced Alloy,,,Federal Dropship,1,I,\n128049324,Federation_Dropship_Armour_Grade3,standard,Military Grade Composite,,,Federal Dropship,1,I,\n128049325,Federation_Dropship_Armour_Mirrored,standard,Mirrored Surface Composite,,,Federal Dropship,1,I,\n128049326,Federation_Dropship_Armour_Reactive,standard,Reactive Surface Composite,,,Federal Dropship,1,I,\n128049328,Orca_Armour_Grade1,standard,Lightweight Alloy,,,Orca,1,I,\n128049329,Orca_Armour_Grade2,standard,Reinforced Alloy,,,Orca,1,I,\n128049330,Orca_Armour_Grade3,standard,Military Grade Composite,,,Orca,1,I,\n128049331,Orca_Armour_Mirrored,standard,Mirrored Surface Composite,,,Orca,1,I,\n128049332,Orca_Armour_Reactive,standard,Reactive Surface Composite,,,Orca,1,I,\n128049334,Type9_Armour_Grade1,standard,Lightweight Alloy,,,Type-9 Heavy,1,I,\n128049335,Type9_Armour_Grade2,standard,Reinforced Alloy,,,Type-9 Heavy,1,I,\n128049336,Type9_Armour_Grade3,standard,Military Grade Composite,,,Type-9 Heavy,1,I,\n128049337,Type9_Armour_Mirrored,standard,Mirrored Surface Composite,,,Type-9 Heavy,1,I,\n128049338,Type9_Armour_Reactive,standard,Reactive Surface Composite,,,Type-9 Heavy,1,I,\n128049340,Python_Armour_Grade1,standard,Lightweight Alloy,,,Python,1,I,\n128049341,Python_Armour_Grade2,standard,Reinforced Alloy,,,Python,1,I,\n128049342,Python_Armour_Grade3,standard,Military Grade Composite,,,Python,1,I,\n128049343,Python_Armour_Mirrored,standard,Mirrored Surface Composite,,,Python,1,I,\n128049344,Python_Armour_Reactive,standard,Reactive Surface Composite,,,Python,1,I,\n128049346,BelugaLiner_Armour_Grade1,standard,Lightweight Alloy,,,Beluga Liner,1,I,\n128049347,BelugaLiner_Armour_Grade2,standard,Reinforced Alloy,,,Beluga Liner,1,I,\n128049348,BelugaLiner_Armour_Grade3,standard,Military Grade Composite,,,Beluga Liner,1,I,\n128049349,BelugaLiner_Armour_Mirrored,standard,Mirrored Surface Composite,,,Beluga Liner,1,I,\n128049350,BelugaLiner_Armour_Reactive,standard,Reactive Surface Composite,,,Beluga Liner,1,I,\n128049352,FerDeLance_Armour_Grade1,standard,Lightweight Alloy,,,Fer-de-Lance,1,I,\n128049353,FerDeLance_Armour_Grade2,standard,Reinforced Alloy,,,Fer-de-Lance,1,I,\n128049354,FerDeLance_Armour_Grade3,standard,Military Grade Composite,,,Fer-de-Lance,1,I,\n128049355,FerDeLance_Armour_Mirrored,standard,Mirrored Surface Composite,,,Fer-de-Lance,1,I,\n128049356,FerDeLance_Armour_Reactive,standard,Reactive Surface Composite,,,Fer-de-Lance,1,I,\n128049364,Anaconda_Armour_Grade1,standard,Lightweight Alloy,,,Anaconda,1,I,\n128049365,Anaconda_Armour_Grade2,standard,Reinforced Alloy,,,Anaconda,1,I,\n128049366,Anaconda_Armour_Grade3,standard,Military Grade Composite,,,Anaconda,1,I,\n128049367,Anaconda_Armour_Mirrored,standard,Mirrored Surface Composite,,,Anaconda,1,I,\n128049368,Anaconda_Armour_Reactive,standard,Reactive Surface Composite,,,Anaconda,1,I,\n128049370,Federation_Corvette_Armour_Grade1,standard,Lightweight Alloy,,,Federal Corvette,1,I,\n128049371,Federation_Corvette_Armour_Grade2,standard,Reinforced Alloy,,,Federal Corvette,1,I,\n128049372,Federation_Corvette_Armour_Grade3,standard,Military Grade Composite,,,Federal Corvette,1,I,\n128049373,Federation_Corvette_Armour_Mirrored,standard,Mirrored Surface Composite,,,Federal Corvette,1,I,\n128049374,Federation_Corvette_Armour_Reactive,standard,Reactive Surface Composite,,,Federal Corvette,1,I,\n128049376,Cutter_Armour_Grade1,standard,Lightweight Alloy,,,Imperial Cutter,1,I,\n128049377,Cutter_Armour_Grade2,standard,Reinforced Alloy,,,Imperial Cutter,1,I,\n128049378,Cutter_Armour_Grade3,standard,Military Grade Composite,,,Imperial Cutter,1,I,\n128049379,Cutter_Armour_Mirrored,standard,Mirrored Surface Composite,,,Imperial Cutter,1,I,\n128049380,Cutter_Armour_Reactive,standard,Reactive Surface Composite,,,Imperial Cutter,1,I,\n128049381,Hpt_PulseLaser_Fixed_Small,hardpoint,Pulse Laser,Fixed,,,1,F,\n128049382,Hpt_PulseLaser_Fixed_Medium,hardpoint,Pulse Laser,Fixed,,,2,E,\n128049383,Hpt_PulseLaser_Fixed_Large,hardpoint,Pulse Laser,Fixed,,,3,D,\n128049384,Hpt_PulseLaser_Fixed_Huge,hardpoint,Pulse Laser,Fixed,,,4,A,\n128049385,Hpt_PulseLaser_Gimbal_Small,hardpoint,Pulse Laser,Gimballed,,,1,G,\n128049386,Hpt_PulseLaser_Gimbal_Medium,hardpoint,Pulse Laser,Gimballed,,,2,F,\n128049387,Hpt_PulseLaser_Gimbal_Large,hardpoint,Pulse Laser,Gimballed,,,3,E,\n128049388,Hpt_PulseLaser_Turret_Small,hardpoint,Pulse Laser,Turreted,,,1,G,\n128049389,Hpt_PulseLaser_Turret_Medium,hardpoint,Pulse Laser,Turreted,,,2,F,\n128049390,Hpt_PulseLaser_Turret_Large,hardpoint,Pulse Laser,Turreted,,,3,F,\n128049400,Hpt_PulseLaserBurst_Fixed_Small,hardpoint,Burst Laser,Fixed,,,1,F,\n128049401,Hpt_PulseLaserBurst_Fixed_Medium,hardpoint,Burst Laser,Fixed,,,2,E,\n128049402,Hpt_PulseLaserBurst_Fixed_Large,hardpoint,Burst Laser,Fixed,,,3,D,\n128049403,Hpt_PulseLaserBurst_Fixed_Huge,hardpoint,Burst Laser,Fixed,,,4,E,\n128049404,Hpt_PulseLaserBurst_Gimbal_Small,hardpoint,Burst Laser,Gimballed,,,1,G,\n128049405,Hpt_PulseLaserBurst_Gimbal_Medium,hardpoint,Burst Laser,Gimballed,,,2,F,\n128049406,Hpt_PulseLaserBurst_Gimbal_Large,hardpoint,Burst Laser,Gimballed,,,3,E,\n128049407,Hpt_PulseLaserBurst_Turret_Small,hardpoint,Burst Laser,Turreted,,,1,G,\n128049408,Hpt_PulseLaserBurst_Turret_Medium,hardpoint,Burst Laser,Turreted,,,2,F,\n128049409,Hpt_PulseLaserBurst_Turret_Large,hardpoint,Burst Laser,Turreted,,,3,E,\n128049428,Hpt_BeamLaser_Fixed_Small,hardpoint,Beam Laser,Fixed,,,1,E,\n128049429,Hpt_BeamLaser_Fixed_Medium,hardpoint,Beam Laser,Fixed,,,2,D,\n128049430,Hpt_BeamLaser_Fixed_Large,hardpoint,Beam Laser,Fixed,,,3,C,\n128049431,Hpt_BeamLaser_Fixed_Huge,hardpoint,Beam Laser,Fixed,,,4,A,\n128049432,Hpt_BeamLaser_Gimbal_Small,hardpoint,Beam Laser,Gimballed,,,1,E,\n128049433,Hpt_BeamLaser_Gimbal_Medium,hardpoint,Beam Laser,Gimballed,,,2,D,\n128049434,Hpt_BeamLaser_Gimbal_Large,hardpoint,Beam Laser,Gimballed,,,3,C,\n128049435,Hpt_BeamLaser_Turret_Small,hardpoint,Beam Laser,Turreted,,,1,F,\n128049436,Hpt_BeamLaser_Turret_Medium,hardpoint,Beam Laser,Turreted,,,2,E,\n128049437,Hpt_BeamLaser_Turret_Large,hardpoint,Beam Laser,Turreted,,,3,D,\n128049438,Hpt_Cannon_Fixed_Small,hardpoint,Cannon,Fixed,,,1,D,\n128049439,Hpt_Cannon_Fixed_Medium,hardpoint,Cannon,Fixed,,,2,D,\n128049440,Hpt_Cannon_Fixed_Large,hardpoint,Cannon,Fixed,,,3,C,\n128049441,Hpt_Cannon_Fixed_Huge,hardpoint,Cannon,Fixed,,,4,B,\n128049442,Hpt_Cannon_Gimbal_Small,hardpoint,Cannon,Gimballed,,,1,E,\n128049443,Hpt_Cannon_Gimbal_Medium,hardpoint,Cannon,Gimballed,,,2,D,\n128049444,Hpt_Cannon_Gimbal_Huge,hardpoint,Cannon,Gimballed,,,4,B,\n128049445,Hpt_Cannon_Turret_Small,hardpoint,Cannon,Turreted,,,1,F,\n128049446,Hpt_Cannon_Turret_Medium,hardpoint,Cannon,Turreted,,,2,E,\n128049447,Hpt_Cannon_Turret_Large,hardpoint,Cannon,Turreted,,,3,D,\n128049448,Hpt_Slugshot_Fixed_Small,hardpoint,Fragment Cannon,Fixed,,,1,E,\n128049449,Hpt_Slugshot_Fixed_Medium,hardpoint,Fragment Cannon,Fixed,,,2,A,\n128049450,Hpt_Slugshot_Fixed_Large,hardpoint,Fragment Cannon,Fixed,,,3,C,\n128049451,Hpt_Slugshot_Gimbal_Small,hardpoint,Fragment Cannon,Gimballed,,,1,E,\n128049452,Hpt_Slugshot_Gimbal_Medium,hardpoint,Fragment Cannon,Gimballed,,,2,D,\n128049453,Hpt_Slugshot_Turret_Small,hardpoint,Fragment Cannon,Turreted,,,1,E,\n128049454,Hpt_Slugshot_Turret_Medium,hardpoint,Fragment Cannon,Turreted,,,2,D,\n128049455,Hpt_MultiCannon_Fixed_Small,hardpoint,Multi-Cannon,Fixed,,,1,F,\n128049456,Hpt_MultiCannon_Fixed_Medium,hardpoint,Multi-Cannon,Fixed,,,2,E,\n128049457,Hpt_MultiCannon_Fixed_Large,hardpoint,Multi-Cannon,Fixed,,,3,C,\n128049458,Hpt_MultiCannon_Fixed_Huge,hardpoint,Multi-Cannon,Fixed,,,4,A,\n128049459,Hpt_MultiCannon_Gimbal_Small,hardpoint,Multi-Cannon,Gimballed,,,1,G,\n128049460,Hpt_MultiCannon_Gimbal_Medium,hardpoint,Multi-Cannon,Gimballed,,,2,F,\n128049461,Hpt_MultiCannon_Gimbal_Large,hardpoint,Multi-Cannon,Gimballed,,,3,C,\n128049462,Hpt_MultiCannon_Turret_Small,hardpoint,Multi-Cannon,Turreted,,,1,G,\n128049463,Hpt_MultiCannon_Turret_Medium,hardpoint,Multi-Cannon,Turreted,,,2,F,\n128049464,Hpt_MultiCannon_Turret_Large,hardpoint,Multi-Cannon,Turreted,,,3,E,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128049465,Hpt_PlasmaAccelerator_Fixed_Medium,hardpoint,Plasma Accelerator,Fixed,,,2,C,\n128049466,Hpt_PlasmaAccelerator_Fixed_Large,hardpoint,Plasma Accelerator,Fixed,,,3,B,\n128049467,Hpt_PlasmaAccelerator_Fixed_Huge,hardpoint,Plasma Accelerator,Fixed,,,4,A,\n128049488,Hpt_Railgun_Fixed_Small,hardpoint,Rail Gun,Fixed,,,1,D,\n128049489,Hpt_Railgun_Fixed_Medium,hardpoint,Rail Gun,Fixed,,,2,B,\n128049492,Hpt_BasicMissileRack_Fixed_Small,hardpoint,Seeker Missile Rack,Fixed,Seeker,,1,B,\n128049493,Hpt_BasicMissileRack_Fixed_Medium,hardpoint,Seeker Missile Rack,Fixed,Seeker,,2,B,\n128049494,Hpt_BasicMissileRack_Fixed_Large,hardpoint,Seeker Missile Rack,Fixed,Seeker,,3,A,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128049500,Hpt_MineLauncher_Fixed_Small,hardpoint,Mine Launcher,Fixed,,,1,I,\n128049501,Hpt_MineLauncher_Fixed_Medium,hardpoint,Mine Launcher,Fixed,,,2,I,\n128049509,Hpt_AdvancedTorpPylon_Fixed_Small,hardpoint,Torpedo Pylon,Fixed,Seeker,,1,I,\n128049510,Hpt_AdvancedTorpPylon_Fixed_Medium,hardpoint,Torpedo Pylon,Fixed,Seeker,,2,I,\n128049511,Hpt_AdvancedTorpPylon_Fixed_Large,hardpoint,Torpedo Pylon,Fixed,Seeker,,3,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128049513,Hpt_ChaffLauncher_Tiny,utility,Chaff Launcher,,,,0,I,\n128049516,Hpt_ElectronicCountermeasure_Tiny,utility,Electronic Countermeasure,,,,0,F,\n128049519,Hpt_HeatSinkLauncher_Turret_Tiny,utility,Heat Sink Launcher,,,,0,I,\n128049522,Hpt_PlasmaPointDefence_Turret_Tiny,utility,Point Defence,,,,0,I,\n128049525,Hpt_MiningLaser_Fixed_Small,hardpoint,Mining Laser,Fixed,,,1,D,\n128049526,Hpt_MiningLaser_Fixed_Medium,hardpoint,Mining Laser,Fixed,,,2,D,\n128049549,Int_DockingComputer_Standard,internal,Standard Docking Computer,,,,1,E,\n128064033,Int_Powerplant_Size2_Class1,standard,Power Plant,,,,2,E,\n128064034,Int_Powerplant_Size2_Class2,standard,Power Plant,,,,2,D,\n128064035,Int_Powerplant_Size2_Class3,standard,Power Plant,,,,2,C,\n128064036,Int_Powerplant_Size2_Class4,standard,Power Plant,,,,2,B,\n128064037,Int_Powerplant_Size2_Class5,standard,Power Plant,,,,2,A,\n128064038,Int_Powerplant_Size3_Class1,standard,Power Plant,,,,3,E,\n128064039,Int_Powerplant_Size3_Class2,standard,Power Plant,,,,3,D,\n128064040,Int_Powerplant_Size3_Class3,standard,Power Plant,,,,3,C,\n128064041,Int_Powerplant_Size3_Class4,standard,Power Plant,,,,3,B,\n128064042,Int_Powerplant_Size3_Class5,standard,Power Plant,,,,3,A,\n128064043,Int_Powerplant_Size4_Class1,standard,Power Plant,,,,4,E,\n128064044,Int_Powerplant_Size4_Class2,standard,Power Plant,,,,4,D,\n128064045,Int_Powerplant_Size4_Class3,standard,Power Plant,,,,4,C,\n128064046,Int_Powerplant_Size4_Class4,standard,Power Plant,,,,4,B,\n128064047,Int_Powerplant_Size4_Class5,standard,Power Plant,,,,4,A,\n128064048,Int_Powerplant_Size5_Class1,standard,Power Plant,,,,5,E,\n128064049,Int_Powerplant_Size5_Class2,standard,Power Plant,,,,5,D,\n128064050,Int_Powerplant_Size5_Class3,standard,Power Plant,,,,5,C,\n128064051,Int_Powerplant_Size5_Class4,standard,Power Plant,,,,5,B,\n128064052,Int_Powerplant_Size5_Class5,standard,Power Plant,,,,5,A,\n128064053,Int_Powerplant_Size6_Class1,standard,Power Plant,,,,6,E,\n128064054,Int_Powerplant_Size6_Class2,standard,Power Plant,,,,6,D,\n128064055,Int_Powerplant_Size6_Class3,standard,Power Plant,,,,6,C,\n128064056,Int_Powerplant_Size6_Class4,standard,Power Plant,,,,6,B,\n128064057,Int_Powerplant_Size6_Class5,standard,Power Plant,,,,6,A,\n128064058,Int_Powerplant_Size7_Class1,standard,Power Plant,,,,7,E,\n128064059,Int_Powerplant_Size7_Class2,standard,Power Plant,,,,7,D,\n128064060,Int_Powerplant_Size7_Class3,standard,Power Plant,,,,7,C,\n128064061,Int_Powerplant_Size7_Class4,standard,Power Plant,,,,7,B,\n128064062,Int_Powerplant_Size7_Class5,standard,Power Plant,,,,7,A,\n128064063,Int_Powerplant_Size8_Class1,standard,Power Plant,,,,8,E,\n128064064,Int_Powerplant_Size8_Class2,standard,Power Plant,,,,8,D,\n128064065,Int_Powerplant_Size8_Class3,standard,Power Plant,,,,8,C,\n128064066,Int_Powerplant_Size8_Class4,standard,Power Plant,,,,8,B,\n128064067,Int_Powerplant_Size8_Class5,standard,Power Plant,,,,8,A,\n128064068,Int_Engine_Size2_Class1,standard,Thrusters,,,,2,E,\n128064069,Int_Engine_Size2_Class2,standard,Thrusters,,,,2,D,\n128064070,Int_Engine_Size2_Class3,standard,Thrusters,,,,2,C,\n128064071,Int_Engine_Size2_Class4,standard,Thrusters,,,,2,B,\n128064072,Int_Engine_Size2_Class5,standard,Thrusters,,,,2,A,\n128064073,Int_Engine_Size3_Class1,standard,Thrusters,,,,3,E,\n128064074,Int_Engine_Size3_Class2,standard,Thrusters,,,,3,D,\n128064075,Int_Engine_Size3_Class3,standard,Thrusters,,,,3,C,\n128064076,Int_Engine_Size3_Class4,standard,Thrusters,,,,3,B,\n128064077,Int_Engine_Size3_Class5,standard,Thrusters,,,,3,A,\n128064078,Int_Engine_Size4_Class1,standard,Thrusters,,,,4,E,\n128064079,Int_Engine_Size4_Class2,standard,Thrusters,,,,4,D,\n128064080,Int_Engine_Size4_Class3,standard,Thrusters,,,,4,C,\n128064081,Int_Engine_Size4_Class4,standard,Thrusters,,,,4,B,\n128064082,Int_Engine_Size4_Class5,standard,Thrusters,,,,4,A,\n128064083,Int_Engine_Size5_Class1,standard,Thrusters,,,,5,E,\n128064084,Int_Engine_Size5_Class2,standard,Thrusters,,,,5,D,\n128064085,Int_Engine_Size5_Class3,standard,Thrusters,,,,5,C,\n128064086,Int_Engine_Size5_Class4,standard,Thrusters,,,,5,B,\n128064087,Int_Engine_Size5_Class5,standard,Thrusters,,,,5,A,\n128064088,Int_Engine_Size6_Class1,standard,Thrusters,,,,6,E,\n128064089,Int_Engine_Size6_Class2,standard,Thrusters,,,,6,D,\n128064090,Int_Engine_Size6_Class3,standard,Thrusters,,,,6,C,\n128064091,Int_Engine_Size6_Class4,standard,Thrusters,,,,6,B,\n128064092,Int_Engine_Size6_Class5,standard,Thrusters,,,,6,A,\n128064093,Int_Engine_Size7_Class1,standard,Thrusters,,,,7,E,\n128064094,Int_Engine_Size7_Class2,standard,Thrusters,,,,7,D,\n128064095,Int_Engine_Size7_Class3,standard,Thrusters,,,,7,C,\n128064096,Int_Engine_Size7_Class4,standard,Thrusters,,,,7,B,\n128064097,Int_Engine_Size7_Class5,standard,Thrusters,,,,7,A,\n128064098,Int_Engine_Size8_Class1,standard,Thrusters,,,,8,E,\n128064099,Int_Engine_Size8_Class2,standard,Thrusters,,,,8,D,\n128064100,Int_Engine_Size8_Class3,standard,Thrusters,,,,8,C,\n128064101,Int_Engine_Size8_Class4,standard,Thrusters,,,,8,B,\n128064102,Int_Engine_Size8_Class5,standard,Thrusters,,,,8,A,\n128064103,Int_Hyperdrive_Size2_Class1,standard,Frame Shift Drive,,,,2,E,\n128064104,Int_Hyperdrive_Size2_Class2,standard,Frame Shift Drive,,,,2,D,\n128064105,Int_Hyperdrive_Size2_Class3,standard,Frame Shift Drive,,,,2,C,\n128064106,Int_Hyperdrive_Size2_Class4,standard,Frame Shift Drive,,,,2,B,\n128064107,Int_Hyperdrive_Size2_Class5,standard,Frame Shift Drive,,,,2,A,\n128064108,Int_Hyperdrive_Size3_Class1,standard,Frame Shift Drive,,,,3,E,\n128064109,Int_Hyperdrive_Size3_Class2,standard,Frame Shift Drive,,,,3,D,\n128064110,Int_Hyperdrive_Size3_Class3,standard,Frame Shift Drive,,,,3,C,\n128064111,Int_Hyperdrive_Size3_Class4,standard,Frame Shift Drive,,,,3,B,\n128064112,Int_Hyperdrive_Size3_Class5,standard,Frame Shift Drive,,,,3,A,\n128064113,Int_Hyperdrive_Size4_Class1,standard,Frame Shift Drive,,,,4,E,\n128064114,Int_Hyperdrive_Size4_Class2,standard,Frame Shift Drive,,,,4,D,\n128064115,Int_Hyperdrive_Size4_Class3,standard,Frame Shift Drive,,,,4,C,\n128064116,Int_Hyperdrive_Size4_Class4,standard,Frame Shift Drive,,,,4,B,\n128064117,Int_Hyperdrive_Size4_Class5,standard,Frame Shift Drive,,,,4,A,\n128064118,Int_Hyperdrive_Size5_Class1,standard,Frame Shift Drive,,,,5,E,\n128064119,Int_Hyperdrive_Size5_Class2,standard,Frame Shift Drive,,,,5,D,\n128064120,Int_Hyperdrive_Size5_Class3,standard,Frame Shift Drive,,,,5,C,\n128064121,Int_Hyperdrive_Size5_Class4,standard,Frame Shift Drive,,,,5,B,\n128064122,Int_Hyperdrive_Size5_Class5,standard,Frame Shift Drive,,,,5,A,\n128064123,Int_Hyperdrive_Size6_Class1,standard,Frame Shift Drive,,,,6,E,\n128064124,Int_Hyperdrive_Size6_Class2,standard,Frame Shift Drive,,,,6,D,\n128064125,Int_Hyperdrive_Size6_Class3,standard,Frame Shift Drive,,,,6,C,\n128064126,Int_Hyperdrive_Size6_Class4,standard,Frame Shift Drive,,,,6,B,\n128064127,Int_Hyperdrive_Size6_Class5,standard,Frame Shift Drive,,,,6,A,\n128064128,Int_Hyperdrive_Size7_Class1,standard,Frame Shift Drive,,,,7,E,\n128064129,Int_Hyperdrive_Size7_Class2,standard,Frame Shift Drive,,,,7,D,\n128064130,Int_Hyperdrive_Size7_Class3,standard,Frame Shift Drive,,,,7,C,\n128064131,Int_Hyperdrive_Size7_Class4,standard,Frame Shift Drive,,,,7,B,\n128064132,Int_Hyperdrive_Size7_Class5,standard,Frame Shift Drive,,,,7,A,\n128064133,Int_Hyperdrive_Size8_Class1,standard,Frame Shift Drive,,,,8,E,\n128064134,Int_Hyperdrive_Size8_Class2,standard,Frame Shift Drive,,,,8,D,\n128064135,Int_Hyperdrive_Size8_Class3,standard,Frame Shift Drive,,,,8,C,\n128064136,Int_Hyperdrive_Size8_Class4,standard,Frame Shift Drive,,,,8,B,\n128064137,Int_Hyperdrive_Size8_Class5,standard,Frame Shift Drive,,,,8,A,\n128064138,Int_LifeSupport_Size1_Class1,standard,Life Support,,,,1,E,\n128064139,Int_LifeSupport_Size1_Class2,standard,Life Support,,,,1,D,\n128064140,Int_LifeSupport_Size1_Class3,standard,Life Support,,,,1,C,\n128064141,Int_LifeSupport_Size1_Class4,standard,Life Support,,,,1,B,\n128064142,Int_LifeSupport_Size1_Class5,standard,Life Support,,,,1,A,\n128064143,Int_LifeSupport_Size2_Class1,standard,Life Support,,,,2,E,\n128064144,Int_LifeSupport_Size2_Class2,standard,Life Support,,,,2,D,\n128064145,Int_LifeSupport_Size2_Class3,standard,Life Support,,,,2,C,\n128064146,Int_LifeSupport_Size2_Class4,standard,Life Support,,,,2,B,\n128064147,Int_LifeSupport_Size2_Class5,standard,Life Support,,,,2,A,\n128064148,Int_LifeSupport_Size3_Class1,standard,Life Support,,,,3,E,\n128064149,Int_LifeSupport_Size3_Class2,standard,Life Support,,,,3,D,\n128064150,Int_LifeSupport_Size3_Class3,standard,Life Support,,,,3,C,\n128064151,Int_LifeSupport_Size3_Class4,standard,Life Support,,,,3,B,\n128064152,Int_LifeSupport_Size3_Class5,standard,Life Support,,,,3,A,\n128064153,Int_LifeSupport_Size4_Class1,standard,Life Support,,,,4,E,\n128064154,Int_LifeSupport_Size4_Class2,standard,Life Support,,,,4,D,\n128064155,Int_LifeSupport_Size4_Class3,standard,Life Support,,,,4,C,\n128064156,Int_LifeSupport_Size4_Class4,standard,Life Support,,,,4,B,\n128064157,Int_LifeSupport_Size4_Class5,standard,Life Support,,,,4,A,\n128064158,Int_LifeSupport_Size5_Class1,standard,Life Support,,,,5,E,\n128064159,Int_LifeSupport_Size5_Class2,standard,Life Support,,,,5,D,\n128064160,Int_LifeSupport_Size5_Class3,standard,Life Support,,,,5,C,\n128064161,Int_LifeSupport_Size5_Class4,standard,Life Support,,,,5,B,\n128064162,Int_LifeSupport_Size5_Class5,standard,Life Support,,,,5,A,\n128064163,Int_LifeSupport_Size6_Class1,standard,Life Support,,,,6,E,\n128064164,Int_LifeSupport_Size6_Class2,standard,Life Support,,,,6,D,\n128064165,Int_LifeSupport_Size6_Class3,standard,Life Support,,,,6,C,\n128064166,Int_LifeSupport_Size6_Class4,standard,Life Support,,,,6,B,\n128064167,Int_LifeSupport_Size6_Class5,standard,Life Support,,,,6,A,\n128064168,Int_LifeSupport_Size7_Class1,standard,Life Support,,,,7,E,\n128064169,Int_LifeSupport_Size7_Class2,standard,Life Support,,,,7,D,\n128064170,Int_LifeSupport_Size7_Class3,standard,Life Support,,,,7,C,\n128064171,Int_LifeSupport_Size7_Class4,standard,Life Support,,,,7,B,\n128064172,Int_LifeSupport_Size7_Class5,standard,Life Support,,,,7,A,\n128064173,Int_LifeSupport_Size8_Class1,standard,Life Support,,,,8,E,\n128064174,Int_LifeSupport_Size8_Class2,standard,Life Support,,,,8,D,\n128064175,Int_LifeSupport_Size8_Class3,standard,Life Support,,,,8,C,\n128064176,Int_LifeSupport_Size8_Class4,standard,Life Support,,,,8,B,\n128064177,Int_LifeSupport_Size8_Class5,standard,Life Support,,,,8,A,\n128064178,Int_PowerDistributor_Size1_Class1,standard,Power Distributor,,,,1,E,\n128064179,Int_PowerDistributor_Size1_Class2,standard,Power Distributor,,,,1,D,\n128064180,Int_PowerDistributor_Size1_Class3,standard,Power Distributor,,,,1,C,\n128064181,Int_PowerDistributor_Size1_Class4,standard,Power Distributor,,,,1,B,\n128064182,Int_PowerDistributor_Size1_Class5,standard,Power Distributor,,,,1,A,\n128064183,Int_PowerDistributor_Size2_Class1,standard,Power Distributor,,,,2,E,\n128064184,Int_PowerDistributor_Size2_Class2,standard,Power Distributor,,,,2,D,\n128064185,Int_PowerDistributor_Size2_Class3,standard,Power Distributor,,,,2,C,\n128064186,Int_PowerDistributor_Size2_Class4,standard,Power Distributor,,,,2,B,\n128064187,Int_PowerDistributor_Size2_Class5,standard,Power Distributor,,,,2,A,\n128064188,Int_PowerDistributor_Size3_Class1,standard,Power Distributor,,,,3,E,\n128064189,Int_PowerDistributor_Size3_Class2,standard,Power Distributor,,,,3,D,\n128064190,Int_PowerDistributor_Size3_Class3,standard,Power Distributor,,,,3,C,\n128064191,Int_PowerDistributor_Size3_Class4,standard,Power Distributor,,,,3,B,\n128064192,Int_PowerDistributor_Size3_Class5,standard,Power Distributor,,,,3,A,\n128064193,Int_PowerDistributor_Size4_Class1,standard,Power Distributor,,,,4,E,\n128064194,Int_PowerDistributor_Size4_Class2,standard,Power Distributor,,,,4,D,\n128064195,Int_PowerDistributor_Size4_Class3,standard,Power Distributor,,,,4,C,\n128064196,Int_PowerDistributor_Size4_Class4,standard,Power Distributor,,,,4,B,\n128064197,Int_PowerDistributor_Size4_Class5,standard,Power Distributor,,,,4,A,\n128064198,Int_PowerDistributor_Size5_Class1,standard,Power Distributor,,,,5,E,\n128064199,Int_PowerDistributor_Size5_Class2,standard,Power Distributor,,,,5,D,\n128064200,Int_PowerDistributor_Size5_Class3,standard,Power Distributor,,,,5,C,\n128064201,Int_PowerDistributor_Size5_Class4,standard,Power Distributor,,,,5,B,\n128064202,Int_PowerDistributor_Size5_Class5,standard,Power Distributor,,,,5,A,\n128064203,Int_PowerDistributor_Size6_Class1,standard,Power Distributor,,,,6,E,\n128064204,Int_PowerDistributor_Size6_Class2,standard,Power Distributor,,,,6,D,\n128064205,Int_PowerDistributor_Size6_Class3,standard,Power Distributor,,,,6,C,\n128064206,Int_PowerDistributor_Size6_Class4,standard,Power Distributor,,,,6,B,\n128064207,Int_PowerDistributor_Size6_Class5,standard,Power Distributor,,,,6,A,\n128064208,Int_PowerDistributor_Size7_Class1,standard,Power Distributor,,,,7,E,\n128064209,Int_PowerDistributor_Size7_Class2,standard,Power Distributor,,,,7,D,\n128064210,Int_PowerDistributor_Size7_Class3,standard,Power Distributor,,,,7,C,\n128064211,Int_PowerDistributor_Size7_Class4,standard,Power Distributor,,,,7,B,\n128064212,Int_PowerDistributor_Size7_Class5,standard,Power Distributor,,,,7,A,\n128064213,Int_PowerDistributor_Size8_Class1,standard,Power Distributor,,,,8,E,\n128064214,Int_PowerDistributor_Size8_Class2,standard,Power Distributor,,,,8,D,\n128064215,Int_PowerDistributor_Size8_Class3,standard,Power Distributor,,,,8,C,\n128064216,Int_PowerDistributor_Size8_Class4,standard,Power Distributor,,,,8,B,\n128064217,Int_PowerDistributor_Size8_Class5,standard,Power Distributor,,,,8,A,\n128064218,Int_Sensors_Size1_Class1,standard,Sensors,,,,1,E,\n128064219,Int_Sensors_Size1_Class2,standard,Sensors,,,,1,D,\n128064220,Int_Sensors_Size1_Class3,standard,Sensors,,,,1,C,\n128064221,Int_Sensors_Size1_Class4,standard,Sensors,,,,1,B,\n128064222,Int_Sensors_Size1_Class5,standard,Sensors,,,,1,A,\n128064223,Int_Sensors_Size2_Class1,standard,Sensors,,,,2,E,\n128064224,Int_Sensors_Size2_Class2,standard,Sensors,,,,2,D,\n128064225,Int_Sensors_Size2_Class3,standard,Sensors,,,,2,C,\n128064226,Int_Sensors_Size2_Class4,standard,Sensors,,,,2,B,\n128064227,Int_Sensors_Size2_Class5,standard,Sensors,,,,2,A,\n128064228,Int_Sensors_Size3_Class1,standard,Sensors,,,,3,E,\n128064229,Int_Sensors_Size3_Class2,standard,Sensors,,,,3,D,\n128064230,Int_Sensors_Size3_Class3,standard,Sensors,,,,3,C,\n128064231,Int_Sensors_Size3_Class4,standard,Sensors,,,,3,B,\n128064232,Int_Sensors_Size3_Class5,standard,Sensors,,,,3,A,\n128064233,Int_Sensors_Size4_Class1,standard,Sensors,,,,4,E,\n128064234,Int_Sensors_Size4_Class2,standard,Sensors,,,,4,D,\n128064235,Int_Sensors_Size4_Class3,standard,Sensors,,,,4,C,\n128064236,Int_Sensors_Size4_Class4,standard,Sensors,,,,4,B,\n128064237,Int_Sensors_Size4_Class5,standard,Sensors,,,,4,A,\n128064238,Int_Sensors_Size5_Class1,standard,Sensors,,,,5,E,\n128064239,Int_Sensors_Size5_Class2,standard,Sensors,,,,5,D,\n128064240,Int_Sensors_Size5_Class3,standard,Sensors,,,,5,C,\n128064241,Int_Sensors_Size5_Class4,standard,Sensors,,,,5,B,\n128064242,Int_Sensors_Size5_Class5,standard,Sensors,,,,5,A,\n128064243,Int_Sensors_Size6_Class1,standard,Sensors,,,,6,E,\n128064244,Int_Sensors_Size6_Class2,standard,Sensors,,,,6,D,\n128064245,Int_Sensors_Size6_Class3,standard,Sensors,,,,6,C,\n128064246,Int_Sensors_Size6_Class4,standard,Sensors,,,,6,B,\n128064247,Int_Sensors_Size6_Class5,standard,Sensors,,,,6,A,\n128064248,Int_Sensors_Size7_Class1,standard,Sensors,,,,7,E,\n128064249,Int_Sensors_Size7_Class2,standard,Sensors,,,,7,D,\n128064250,Int_Sensors_Size7_Class3,standard,Sensors,,,,7,C,\n128064251,Int_Sensors_Size7_Class4,standard,Sensors,,,,7,B,\n128064252,Int_Sensors_Size7_Class5,standard,Sensors,,,,7,A,\n128064253,Int_Sensors_Size8_Class1,standard,Sensors,,,,8,E,\n128064254,Int_Sensors_Size8_Class2,standard,Sensors,,,,8,D,\n128064255,Int_Sensors_Size8_Class3,standard,Sensors,,,,8,C,\n128064256,Int_Sensors_Size8_Class4,standard,Sensors,,,,8,B,\n128064257,Int_Sensors_Size8_Class5,standard,Sensors,,,,8,A,\n128064258,Int_ShieldGenerator_Size1_Class1,internal,Shield Generator,,,,1,E,\n128064259,Int_ShieldGenerator_Size1_Class2,internal,Shield Generator,,,,1,D,\n128064260,Int_ShieldGenerator_Size1_Class3,internal,Shield Generator,,,,1,C,\n128064262,Int_ShieldGenerator_Size1_Class5,internal,Shield Generator,,,,1,A,\n128064263,Int_ShieldGenerator_Size2_Class1,internal,Shield Generator,,,,2,E,\n128064264,Int_ShieldGenerator_Size2_Class2,internal,Shield Generator,,,,2,D,\n128064265,Int_ShieldGenerator_Size2_Class3,internal,Shield Generator,,,,2,C,\n128064266,Int_ShieldGenerator_Size2_Class4,internal,Shield Generator,,,,2,B,\n128064267,Int_ShieldGenerator_Size2_Class5,internal,Shield Generator,,,,2,A,\n128064268,Int_ShieldGenerator_Size3_Class1,internal,Shield Generator,,,,3,E,\n128064269,Int_ShieldGenerator_Size3_Class2,internal,Shield Generator,,,,3,D,\n128064270,Int_ShieldGenerator_Size3_Class3,internal,Shield Generator,,,,3,C,\n128064271,Int_ShieldGenerator_Size3_Class4,internal,Shield Generator,,,,3,B,\n128064272,Int_ShieldGenerator_Size3_Class5,internal,Shield Generator,,,,3,A,\n128064273,Int_ShieldGenerator_Size4_Class1,internal,Shield Generator,,,,4,E,\n128064274,Int_ShieldGenerator_Size4_Class2,internal,Shield Generator,,,,4,D,\n128064275,Int_ShieldGenerator_Size4_Class3,internal,Shield Generator,,,,4,C,\n128064276,Int_ShieldGenerator_Size4_Class4,internal,Shield Generator,,,,4,B,\n128064277,Int_ShieldGenerator_Size4_Class5,internal,Shield Generator,,,,4,A,\n128064278,Int_ShieldGenerator_Size5_Class1,internal,Shield Generator,,,,5,E,\n128064279,Int_ShieldGenerator_Size5_Class2,internal,Shield Generator,,,,5,D,\n128064280,Int_ShieldGenerator_Size5_Class3,internal,Shield Generator,,,,5,C,\n128064281,Int_ShieldGenerator_Size5_Class4,internal,Shield Generator,,,,5,B,\n128064282,Int_ShieldGenerator_Size5_Class5,internal,Shield Generator,,,,5,A,\n128064283,Int_ShieldGenerator_Size6_Class1,internal,Shield Generator,,,,6,E,\n128064284,Int_ShieldGenerator_Size6_Class2,internal,Shield Generator,,,,6,D,\n128064285,Int_ShieldGenerator_Size6_Class3,internal,Shield Generator,,,,6,C,\n128064286,Int_ShieldGenerator_Size6_Class4,internal,Shield Generator,,,,6,B,\n128064287,Int_ShieldGenerator_Size6_Class5,internal,Shield Generator,,,,6,A,\n128064288,Int_ShieldGenerator_Size7_Class1,internal,Shield Generator,,,,7,E,\n128064289,Int_ShieldGenerator_Size7_Class2,internal,Shield Generator,,,,7,D,\n128064290,Int_ShieldGenerator_Size7_Class3,internal,Shield Generator,,,,7,C,\n128064291,Int_ShieldGenerator_Size7_Class4,internal,Shield Generator,,,,7,B,\n128064292,Int_ShieldGenerator_Size7_Class5,internal,Shield Generator,,,,7,A,\n128064293,Int_ShieldGenerator_Size8_Class1,internal,Shield Generator,,,,8,E,\n128064294,Int_ShieldGenerator_Size8_Class2,internal,Shield Generator,,,,8,D,\n128064295,Int_ShieldGenerator_Size8_Class3,internal,Shield Generator,,,,8,C,\n128064296,Int_ShieldGenerator_Size8_Class4,internal,Shield Generator,,,,8,B,\n128064297,Int_ShieldGenerator_Size8_Class5,internal,Shield Generator,,,,8,A,\n128064298,Int_ShieldCellBank_Size1_Class1,internal,Shield Cell Bank,,,,1,E,\n128064299,Int_ShieldCellBank_Size1_Class2,internal,Shield Cell Bank,,,,1,D,\n128064300,Int_ShieldCellBank_Size1_Class3,internal,Shield Cell Bank,,,,1,C,\n128064301,Int_ShieldCellBank_Size1_Class4,internal,Shield Cell Bank,,,,1,B,\n128064302,Int_ShieldCellBank_Size1_Class5,internal,Shield Cell Bank,,,,1,A,\n128064303,Int_ShieldCellBank_Size2_Class1,internal,Shield Cell Bank,,,,2,E,\n128064304,Int_ShieldCellBank_Size2_Class2,internal,Shield Cell Bank,,,,2,D,\n128064305,Int_ShieldCellBank_Size2_Class3,internal,Shield Cell Bank,,,,2,C,\n128064306,Int_ShieldCellBank_Size2_Class4,internal,Shield Cell Bank,,,,2,B,\n128064307,Int_ShieldCellBank_Size2_Class5,internal,Shield Cell Bank,,,,2,A,\n128064308,Int_ShieldCellBank_Size3_Class1,internal,Shield Cell Bank,,,,3,E,\n128064309,Int_ShieldCellBank_Size3_Class2,internal,Shield Cell Bank,,,,3,D,\n128064310,Int_ShieldCellBank_Size3_Class3,internal,Shield Cell Bank,,,,3,C,\n128064311,Int_ShieldCellBank_Size3_Class4,internal,Shield Cell Bank,,,,3,B,\n128064312,Int_ShieldCellBank_Size3_Class5,internal,Shield Cell Bank,,,,3,A,\n128064313,Int_ShieldCellBank_Size4_Class1,internal,Shield Cell Bank,,,,4,E,\n128064314,Int_ShieldCellBank_Size4_Class2,internal,Shield Cell Bank,,,,4,D,\n128064315,Int_ShieldCellBank_Size4_Class3,internal,Shield Cell Bank,,,,4,C,\n128064316,Int_ShieldCellBank_Size4_Class4,internal,Shield Cell Bank,,,,4,B,\n128064317,Int_ShieldCellBank_Size4_Class5,internal,Shield Cell Bank,,,,4,A,\n128064318,Int_ShieldCellBank_Size5_Class1,internal,Shield Cell Bank,,,,5,E,\n128064319,Int_ShieldCellBank_Size5_Class2,internal,Shield Cell Bank,,,,5,D,\n128064320,Int_ShieldCellBank_Size5_Class3,internal,Shield Cell Bank,,,,5,C,\n128064321,Int_ShieldCellBank_Size5_Class4,internal,Shield Cell Bank,,,,5,B,\n128064322,Int_ShieldCellBank_Size5_Class5,internal,Shield Cell Bank,,,,5,A,\n128064323,Int_ShieldCellBank_Size6_Class1,internal,Shield Cell Bank,,,,6,E,\n128064324,Int_ShieldCellBank_Size6_Class2,internal,Shield Cell Bank,,,,6,D,\n128064325,Int_ShieldCellBank_Size6_Class3,internal,Shield Cell Bank,,,,6,C,\n128064326,Int_ShieldCellBank_Size6_Class4,internal,Shield Cell Bank,,,,6,B,\n128064327,Int_ShieldCellBank_Size6_Class5,internal,Shield Cell Bank,,,,6,A,\n128064328,Int_ShieldCellBank_Size7_Class1,internal,Shield Cell Bank,,,,7,E,\n128064329,Int_ShieldCellBank_Size7_Class2,internal,Shield Cell Bank,,,,7,D,\n128064330,Int_ShieldCellBank_Size7_Class3,internal,Shield Cell Bank,,,,7,C,\n128064331,Int_ShieldCellBank_Size7_Class4,internal,Shield Cell Bank,,,,7,B,\n128064332,Int_ShieldCellBank_Size7_Class5,internal,Shield Cell Bank,,,,7,A,\n128064333,Int_ShieldCellBank_Size8_Class1,internal,Shield Cell Bank,,,,8,E,\n128064334,Int_ShieldCellBank_Size8_Class2,internal,Shield Cell Bank,,,,8,D,\n128064335,Int_ShieldCellBank_Size8_Class3,internal,Shield Cell Bank,,,,8,C,\n128064336,Int_ShieldCellBank_Size8_Class4,internal,Shield Cell Bank,,,,8,B,\n128064337,Int_ShieldCellBank_Size8_Class5,internal,Shield Cell Bank,,,,8,A,\n128064338,Int_CargoRack_Size1_Class1,internal,Cargo Rack,,,,1,E,\n128064339,Int_CargoRack_Size2_Class1,internal,Cargo Rack,,,,2,E,\n128064340,Int_CargoRack_Size3_Class1,internal,Cargo Rack,,,,3,E,\n128064341,Int_CargoRack_Size4_Class1,internal,Cargo Rack,,,,4,E,\n128064342,Int_CargoRack_Size5_Class1,internal,Cargo Rack,,,,5,E,\n128064343,Int_CargoRack_Size6_Class1,internal,Cargo Rack,,,,6,E,\n128064344,Int_CargoRack_Size7_Class1,internal,Cargo Rack,,,,7,E,\n128064345,Int_CargoRack_Size8_Class1,internal,Cargo Rack,,,,8,E,\n128064346,Int_FuelTank_Size1_Class3,standard,Fuel Tank,,,,1,C,\n128064347,Int_FuelTank_Size2_Class3,standard,Fuel Tank,,,,2,C,\n128064348,Int_FuelTank_Size3_Class3,standard,Fuel Tank,,,,3,C,\n128064349,Int_FuelTank_Size4_Class3,standard,Fuel Tank,,,,4,C,\n128064350,Int_FuelTank_Size5_Class3,standard,Fuel Tank,,,,5,C,\n128064351,Int_FuelTank_Size6_Class3,standard,Fuel Tank,,,,6,C,\n128064352,Int_FuelTank_Size7_Class3,standard,Fuel Tank,,,,7,C,\n128064353,Int_FuelTank_Size8_Class3,standard,Fuel Tank,,,,8,C,\n128066402,Int_DroneControl_ResourceSiphon,internal,Limpet Control,,,,1,I,\n128066532,Int_DroneControl_ResourceSiphon_Size1_Class1,internal,Hatch Breaker Limpet Controller,,,,1,E,\n128066533,Int_DroneControl_ResourceSiphon_Size1_Class2,internal,Hatch Breaker Limpet Controller,,,,1,D,\n128066534,Int_DroneControl_ResourceSiphon_Size1_Class3,internal,Hatch Breaker Limpet Controller,,,,1,C,\n128066535,Int_DroneControl_ResourceSiphon_Size1_Class4,internal,Hatch Breaker Limpet Controller,,,,1,B,\n128066536,Int_DroneControl_ResourceSiphon_Size1_Class5,internal,Hatch Breaker Limpet Controller,,,,1,A,\n128066537,Int_DroneControl_ResourceSiphon_Size3_Class1,internal,Hatch Breaker Limpet Controller,,,,3,E,\n128066538,Int_DroneControl_ResourceSiphon_Size3_Class2,internal,Hatch Breaker Limpet Controller,,,,3,D,\n128066539,Int_DroneControl_ResourceSiphon_Size3_Class3,internal,Hatch Breaker Limpet Controller,,,,3,C,\n128066540,Int_DroneControl_ResourceSiphon_Size3_Class4,internal,Hatch Breaker Limpet Controller,,,,3,B,\n128066541,Int_DroneControl_ResourceSiphon_Size3_Class5,internal,Hatch Breaker Limpet Controller,,,,3,A,\n128066542,Int_DroneControl_ResourceSiphon_Size5_Class1,internal,Hatch Breaker Limpet Controller,,,,5,E,\n128066543,Int_DroneControl_ResourceSiphon_Size5_Class2,internal,Hatch Breaker Limpet Controller,,,,5,D,\n128066544,Int_DroneControl_ResourceSiphon_Size5_Class3,internal,Hatch Breaker Limpet Controller,,,,5,C,\n128066545,Int_DroneControl_ResourceSiphon_Size5_Class4,internal,Hatch Breaker Limpet Controller,,,,5,B,\n128066546,Int_DroneControl_ResourceSiphon_Size5_Class5,internal,Hatch Breaker Limpet Controller,,,,5,A,\n128066547,Int_DroneControl_ResourceSiphon_Size7_Class1,internal,Hatch Breaker Limpet Controller,,,,7,E,\n128066548,Int_DroneControl_ResourceSiphon_Size7_Class2,internal,Hatch Breaker Limpet Controller,,,,7,D,\n128066549,Int_DroneControl_ResourceSiphon_Size7_Class3,internal,Hatch Breaker Limpet Controller,,,,7,C,\n128066550,Int_DroneControl_ResourceSiphon_Size7_Class4,internal,Hatch Breaker Limpet Controller,,,,7,B,\n128066551,Int_DroneControl_ResourceSiphon_Size7_Class5,internal,Hatch Breaker Limpet Controller,,,,7,A,\n128662520,Hpt_CargoScanner_Size0_Class1,utility,Cargo Scanner,,,,0,E,\n128662521,Hpt_CargoScanner_Size0_Class2,utility,Cargo Scanner,,,,0,D,\n128662522,Hpt_CargoScanner_Size0_Class3,utility,Cargo Scanner,,,,0,C,\n128662523,Hpt_CargoScanner_Size0_Class4,utility,Cargo Scanner,,,,0,B,\n128662524,Hpt_CargoScanner_Size0_Class5,utility,Cargo Scanner,,,,0,A,\n128662525,Hpt_CloudScanner_Size0_Class1,utility,Frame Shift Wake Scanner,,,,0,E,\n128662526,Hpt_CloudScanner_Size0_Class2,utility,Frame Shift Wake Scanner,,,,0,D,\n128662527,Hpt_CloudScanner_Size0_Class3,utility,Frame Shift Wake Scanner,,,,0,C,\n128662528,Hpt_CloudScanner_Size0_Class4,utility,Frame Shift Wake Scanner,,,,0,B,\n128662529,Hpt_CloudScanner_Size0_Class5,utility,Frame Shift Wake Scanner,,,,0,A,\n128662530,Hpt_CrimeScanner_Size0_Class1,utility,Kill Warrant Scanner,,,,0,E,\n128662531,Hpt_CrimeScanner_Size0_Class2,utility,Kill Warrant Scanner,,,,0,D,\n128662532,Hpt_CrimeScanner_Size0_Class3,utility,Kill Warrant Scanner,,,,0,C,\n128662533,Hpt_CrimeScanner_Size0_Class4,utility,Kill Warrant Scanner,,,,0,B,\n128662534,Hpt_CrimeScanner_Size0_Class5,utility,Kill Warrant Scanner,,,,0,A,\n128662535,Int_StellarBodyDiscoveryScanner_Standard,internal,Basic Discovery Scanner,,,,1,E,removed\n128663560,Int_StellarBodyDiscoveryScanner_Intermediate,internal,Intermediate Discovery Scanner,,,,1,D,removed\n128663561,Int_StellarBodyDiscoveryScanner_Advanced,internal,Advanced Discovery Scanner,,,,1,C,removed\n128666634,Int_DetailedSurfaceScanner_Tiny,internal,Detailed Surface Scanner,,,,1,I,\n128666635,Int_PowerPlant_Size2_Class1_free,standard,Power Plant,,,,2,E,\n128666636,Int_Engine_Size2_Class1_free,standard,Thrusters,,,,2,E,\n128666637,Int_Hyperdrive_Size2_Class1_free,standard,Frame Shift Drive,,,,2,E,\n128666638,Int_LifeSupport_Size1_Class1_free,standard,Life Support,,,,1,E,\n128666639,Int_PowerDistributor_Size1_Class1_free,standard,Power Distributor,,,,1,E,\n128666640,Int_Sensors_Size1_Class1_free,standard,Sensors,,,,1,E,\n128666641,Int_ShieldGenerator_Size2_Class1_free,internal,Shield Generator,,,,2,E,\n128666642,Int_StellarBodyDiscoveryScanner_Standard_free,internal,Basic Discovery Scanner,,,,1,E,\n128666643,Int_CargoRack_Size2_Class1_free,internal,Cargo Rack,,,,2,E,\n128666644,Int_FuelScoop_Size1_Class1,internal,Fuel Scoop,,,,1,E,\n128666645,Int_FuelScoop_Size2_Class1,internal,Fuel Scoop,,,,2,E,\n128666646,Int_FuelScoop_Size3_Class1,internal,Fuel Scoop,,,,3,E,\n128666647,Int_FuelScoop_Size4_Class1,internal,Fuel Scoop,,,,4,E,\n128666648,Int_FuelScoop_Size5_Class1,internal,Fuel Scoop,,,,5,E,\n128666649,Int_FuelScoop_Size6_Class1,internal,Fuel Scoop,,,,6,E,\n128666650,Int_FuelScoop_Size7_Class1,internal,Fuel Scoop,,,,7,E,\n128666651,Int_FuelScoop_Size8_Class1,internal,Fuel Scoop,,,,8,E,\n128666652,Int_FuelScoop_Size1_Class2,internal,Fuel Scoop,,,,1,D,\n128666653,Int_FuelScoop_Size2_Class2,internal,Fuel Scoop,,,,2,D,\n128666654,Int_FuelScoop_Size3_Class2,internal,Fuel Scoop,,,,3,D,\n128666655,Int_FuelScoop_Size4_Class2,internal,Fuel Scoop,,,,4,D,\n128666656,Int_FuelScoop_Size5_Class2,internal,Fuel Scoop,,,,5,D,\n128666657,Int_FuelScoop_Size6_Class2,internal,Fuel Scoop,,,,6,D,\n128666658,Int_FuelScoop_Size7_Class2,internal,Fuel Scoop,,,,7,D,\n128666659,Int_FuelScoop_Size8_Class2,internal,Fuel Scoop,,,,8,D,\n128666660,Int_FuelScoop_Size1_Class3,internal,Fuel Scoop,,,,1,C,\n128666661,Int_FuelScoop_Size2_Class3,internal,Fuel Scoop,,,,2,C,\n128666662,Int_FuelScoop_Size3_Class3,internal,Fuel Scoop,,,,3,C,\n128666663,Int_FuelScoop_Size4_Class3,internal,Fuel Scoop,,,,4,C,\n128666664,Int_FuelScoop_Size5_Class3,internal,Fuel Scoop,,,,5,C,\n128666665,Int_FuelScoop_Size6_Class3,internal,Fuel Scoop,,,,6,C,\n128666666,Int_FuelScoop_Size7_Class3,internal,Fuel Scoop,,,,7,C,\n128666667,Int_FuelScoop_Size8_Class3,internal,Fuel Scoop,,,,8,C,\n128666668,Int_FuelScoop_Size1_Class4,internal,Fuel Scoop,,,,1,B,\n128666669,Int_FuelScoop_Size2_Class4,internal,Fuel Scoop,,,,2,B,\n128666670,Int_FuelScoop_Size3_Class4,internal,Fuel Scoop,,,,3,B,\n128666671,Int_FuelScoop_Size4_Class4,internal,Fuel Scoop,,,,4,B,\n128666672,Int_FuelScoop_Size5_Class4,internal,Fuel Scoop,,,,5,B,\n128666673,Int_FuelScoop_Size6_Class4,internal,Fuel Scoop,,,,6,B,\n128666674,Int_FuelScoop_Size7_Class4,internal,Fuel Scoop,,,,7,B,\n128666675,Int_FuelScoop_Size8_Class4,internal,Fuel Scoop,,,,8,B,\n128666676,Int_FuelScoop_Size1_Class5,internal,Fuel Scoop,,,,1,A,\n128666677,Int_FuelScoop_Size2_Class5,internal,Fuel Scoop,,,,2,A,\n128666678,Int_FuelScoop_Size3_Class5,internal,Fuel Scoop,,,,3,A,\n128666679,Int_FuelScoop_Size4_Class5,internal,Fuel Scoop,,,,4,A,\n128666680,Int_FuelScoop_Size5_Class5,internal,Fuel Scoop,,,,5,A,\n128666681,Int_FuelScoop_Size6_Class5,internal,Fuel Scoop,,,,6,A,\n128666682,Int_FuelScoop_Size7_Class5,internal,Fuel Scoop,,,,7,A,\n128666683,Int_FuelScoop_Size8_Class5,internal,Fuel Scoop,,,,8,A,\n128666684,Int_Refinery_Size1_Class1,internal,Refinery,,,,1,E,\n128666685,Int_Refinery_Size2_Class1,internal,Refinery,,,,2,E,\n128666686,Int_Refinery_Size3_Class1,internal,Refinery,,,,3,E,\n128666687,Int_Refinery_Size4_Class1,internal,Refinery,,,,4,E,\n128666688,Int_Refinery_Size1_Class2,internal,Refinery,,,,1,D,\n128666689,Int_Refinery_Size2_Class2,internal,Refinery,,,,2,D,\n128666690,Int_Refinery_Size3_Class2,internal,Refinery,,,,3,D,\n128666691,Int_Refinery_Size4_Class2,internal,Refinery,,,,4,D,\n128666692,Int_Refinery_Size1_Class3,internal,Refinery,,,,1,C,\n128666693,Int_Refinery_Size2_Class3,internal,Refinery,,,,2,C,\n128666694,Int_Refinery_Size3_Class3,internal,Refinery,,,,3,C,\n128666695,Int_Refinery_Size4_Class3,internal,Refinery,,,,4,C,\n128666696,Int_Refinery_Size1_Class4,internal,Refinery,,,,1,B,\n128666697,Int_Refinery_Size2_Class4,internal,Refinery,,,,2,B,\n128666698,Int_Refinery_Size3_Class4,internal,Refinery,,,,3,B,\n128666699,Int_Refinery_Size4_Class4,internal,Refinery,,,,4,B,\n128666700,Int_Refinery_Size1_Class5,internal,Refinery,,,,1,A,\n128666701,Int_Refinery_Size2_Class5,internal,Refinery,,,,2,A,\n128666702,Int_Refinery_Size3_Class5,internal,Refinery,,,,3,A,\n128666703,Int_Refinery_Size4_Class5,internal,Refinery,,,,4,A,\n128666704,Int_FSDInterdictor_Size1_Class1,internal,Frame Shift Drive Interdictor,,,,1,E,\n128666705,Int_FSDInterdictor_Size2_Class1,internal,Frame Shift Drive Interdictor,,,,2,E,\n128666706,Int_FSDInterdictor_Size3_Class1,internal,Frame Shift Drive Interdictor,,,,3,E,\n128666707,Int_FSDInterdictor_Size4_Class1,internal,Frame Shift Drive Interdictor,,,,4,E,\n128666708,Int_FSDInterdictor_Size1_Class2,internal,Frame Shift Drive Interdictor,,,,1,D,\n128666709,Int_FSDInterdictor_Size2_Class2,internal,Frame Shift Drive Interdictor,,,,2,D,\n128666710,Int_FSDInterdictor_Size3_Class2,internal,Frame Shift Drive Interdictor,,,,3,D,\n128666711,Int_FSDInterdictor_Size4_Class2,internal,Frame Shift Drive Interdictor,,,,4,D,\n128666712,Int_FSDInterdictor_Size1_Class3,internal,Frame Shift Drive Interdictor,,,,1,C,\n128666713,Int_FSDInterdictor_Size2_Class3,internal,Frame Shift Drive Interdictor,,,,2,C,\n128666714,Int_FSDInterdictor_Size3_Class3,internal,Frame Shift Drive Interdictor,,,,3,C,\n128666715,Int_FSDInterdictor_Size4_Class3,internal,Frame Shift Drive Interdictor,,,,4,C,\n128666716,Int_FSDInterdictor_Size1_Class4,internal,Frame Shift Drive Interdictor,,,,1,B,\n128666717,Int_FSDInterdictor_Size2_Class4,internal,Frame Shift Drive Interdictor,,,,2,B,\n128666718,Int_FSDInterdictor_Size3_Class4,internal,Frame Shift Drive Interdictor,,,,3,B,\n128666719,Int_FSDInterdictor_Size4_Class4,internal,Frame Shift Drive Interdictor,,,,4,B,\n128666720,Int_FSDInterdictor_Size1_Class5,internal,Frame Shift Drive Interdictor,,,,1,A,\n128666721,Int_FSDInterdictor_Size2_Class5,internal,Frame Shift Drive Interdictor,,,,2,A,\n128666722,Int_FSDInterdictor_Size3_Class5,internal,Frame Shift Drive Interdictor,,,,3,A,\n128666723,Int_FSDInterdictor_Size4_Class5,internal,Frame Shift Drive Interdictor,,,,4,A,\n128666724,Hpt_DumbfireMissileRack_Fixed_Small,hardpoint,Missile Rack,Fixed,Dumbfire,,1,B,\n128666725,Hpt_DumbfireMissileRack_Fixed_Medium,hardpoint,Missile Rack,Fixed,Dumbfire,,2,B,\n128667018,Int_FuelTank_Size1_Class3_free,standard,Fuel Tank,,,,1,C,\n128667598,Int_Repairer_Size1_Class1,internal,Auto Field-Maintenance Unit,,,,1,E,\n128667599,Int_Repairer_Size2_Class1,internal,Auto Field-Maintenance Unit,,,,2,E,\n128667600,Int_Repairer_Size3_Class1,internal,Auto Field-Maintenance Unit,,,,3,E,\n128667601,Int_Repairer_Size4_Class1,internal,Auto Field-Maintenance Unit,,,,4,E,\n128667602,Int_Repairer_Size5_Class1,internal,Auto Field-Maintenance Unit,,,,5,E,\n128667603,Int_Repairer_Size6_Class1,internal,Auto Field-Maintenance Unit,,,,6,E,\n128667604,Int_Repairer_Size7_Class1,internal,Auto Field-Maintenance Unit,,,,7,E,\n128667605,Int_Repairer_Size8_Class1,internal,Auto Field-Maintenance Unit,,,,8,E,\n128667606,Int_Repairer_Size1_Class2,internal,Auto Field-Maintenance Unit,,,,1,D,\n128667607,Int_Repairer_Size2_Class2,internal,Auto Field-Maintenance Unit,,,,2,D,\n128667608,Int_Repairer_Size3_Class2,internal,Auto Field-Maintenance Unit,,,,3,D,\n128667609,Int_Repairer_Size4_Class2,internal,Auto Field-Maintenance Unit,,,,4,D,\n128667610,Int_Repairer_Size5_Class2,internal,Auto Field-Maintenance Unit,,,,5,D,\n128667611,Int_Repairer_Size6_Class2,internal,Auto Field-Maintenance Unit,,,,6,D,\n128667612,Int_Repairer_Size7_Class2,internal,Auto Field-Maintenance Unit,,,,7,D,\n128667613,Int_Repairer_Size8_Class2,internal,Auto Field-Maintenance Unit,,,,8,D,\n128667614,Int_Repairer_Size1_Class3,internal,Auto Field-Maintenance Unit,,,,1,C,\n128667615,Int_Repairer_Size2_Class3,internal,Auto Field-Maintenance Unit,,,,2,C,\n128667616,Int_Repairer_Size3_Class3,internal,Auto Field-Maintenance Unit,,,,3,C,\n128667617,Int_Repairer_Size4_Class3,internal,Auto Field-Maintenance Unit,,,,4,C,\n128667618,Int_Repairer_Size5_Class3,internal,Auto Field-Maintenance Unit,,,,5,C,\n128667619,Int_Repairer_Size6_Class3,internal,Auto Field-Maintenance Unit,,,,6,C,\n128667620,Int_Repairer_Size7_Class3,internal,Auto Field-Maintenance Unit,,,,7,C,\n128667621,Int_Repairer_Size8_Class3,internal,Auto Field-Maintenance Unit,,,,8,C,\n128667622,Int_Repairer_Size1_Class4,internal,Auto Field-Maintenance Unit,,,,1,B,\n128667623,Int_Repairer_Size2_Class4,internal,Auto Field-Maintenance Unit,,,,2,B,\n128667624,Int_Repairer_Size3_Class4,internal,Auto Field-Maintenance Unit,,,,3,B,\n128667625,Int_Repairer_Size4_Class4,internal,Auto Field-Maintenance Unit,,,,4,B,\n128667626,Int_Repairer_Size5_Class4,internal,Auto Field-Maintenance Unit,,,,5,B,\n128667627,Int_Repairer_Size6_Class4,internal,Auto Field-Maintenance Unit,,,,6,B,\n128667628,Int_Repairer_Size7_Class4,internal,Auto Field-Maintenance Unit,,,,7,B,\n128667629,Int_Repairer_Size8_Class4,internal,Auto Field-Maintenance Unit,,,,8,B,\n128667630,Int_Repairer_Size1_Class5,internal,Auto Field-Maintenance Unit,,,,1,A,\n128667631,Int_Repairer_Size2_Class5,internal,Auto Field-Maintenance Unit,,,,2,A,\n128667632,Int_Repairer_Size3_Class5,internal,Auto Field-Maintenance Unit,,,,3,A,\n128667633,Int_Repairer_Size4_Class5,internal,Auto Field-Maintenance Unit,,,,4,A,\n128667634,Int_Repairer_Size5_Class5,internal,Auto Field-Maintenance Unit,,,,5,A,\n128667635,Int_Repairer_Size6_Class5,internal,Auto Field-Maintenance Unit,,,,6,A,\n128667636,Int_Repairer_Size7_Class5,internal,Auto Field-Maintenance Unit,,,,7,A,\n128667637,Int_Repairer_Size8_Class5,internal,Auto Field-Maintenance Unit,,,,8,A,\n128668532,Hpt_ShieldBooster_Size0_Class1,utility,Shield Booster,,,,0,E,\n128668533,Hpt_ShieldBooster_Size0_Class2,utility,Shield Booster,,,,0,D,\n128668534,Hpt_ShieldBooster_Size0_Class3,utility,Shield Booster,,,,0,C,\n128668535,Hpt_ShieldBooster_Size0_Class4,utility,Shield Booster,,,,0,B,\n128668536,Hpt_ShieldBooster_Size0_Class5,utility,Shield Booster,,,,0,A,\n128668537,Int_HullReinforcement_Size1_Class1,internal,Hull Reinforcement Package,,,,1,E,\n128668538,Int_HullReinforcement_Size1_Class2,internal,Hull Reinforcement Package,,,,1,D,\n128668539,Int_HullReinforcement_Size2_Class1,internal,Hull Reinforcement Package,,,,2,E,\n128668540,Int_HullReinforcement_Size2_Class2,internal,Hull Reinforcement Package,,,,2,D,\n128668541,Int_HullReinforcement_Size3_Class1,internal,Hull Reinforcement Package,,,,3,E,\n128668542,Int_HullReinforcement_Size3_Class2,internal,Hull Reinforcement Package,,,,3,D,\n128668543,Int_HullReinforcement_Size4_Class1,internal,Hull Reinforcement Package,,,,4,E,\n128668544,Int_HullReinforcement_Size4_Class2,internal,Hull Reinforcement Package,,,,4,D,\n128668545,Int_HullReinforcement_Size5_Class1,internal,Hull Reinforcement Package,,,,5,E,\n128668546,Int_HullReinforcement_Size5_Class2,internal,Hull Reinforcement Package,,,,5,D,\n128671120,Hpt_Cannon_Gimbal_Large,hardpoint,Cannon,Gimballed,,,3,C,\n128671218,DiamondBack_Armour_Grade1,standard,Lightweight Alloy,,,Diamondback Scout,1,I,\n128671219,DiamondBack_Armour_Grade2,standard,Reinforced Alloy,,,Diamondback Scout,1,I,\n128671220,DiamondBack_Armour_Grade3,standard,Military Grade Composite,,,Diamondback Scout,1,I,\n128671221,DiamondBack_Armour_Mirrored,standard,Mirrored Surface Composite,,,Diamondback Scout,1,I,\n128671222,DiamondBack_Armour_Reactive,standard,Reactive Surface Composite,,,Diamondback Scout,1,I,\n128671224,Empire_Courier_Armour_Grade1,standard,Lightweight Alloy,,,Imperial Courier,1,I,\n128671225,Empire_Courier_Armour_Grade2,standard,Reinforced Alloy,,,Imperial Courier,1,I,\n128671226,Empire_Courier_Armour_Grade3,standard,Military Grade Composite,,,Imperial Courier,1,I,\n128671227,Empire_Courier_Armour_Mirrored,standard,Mirrored Surface Composite,,,Imperial Courier,1,I,\n128671228,Empire_Courier_Armour_Reactive,standard,Reactive Surface Composite,,,Imperial Courier,1,I,\n128671229,Int_DroneControl_Collection_Size1_Class1,internal,Collector Limpet Controller,,,,1,E,\n128671230,Int_DroneControl_Collection_Size1_Class2,internal,Collector Limpet Controller,,,,1,D,\n128671231,Int_DroneControl_Collection_Size1_Class3,internal,Collector Limpet Controller,,,,1,C,\n128671232,Int_DroneControl_Collection_Size1_Class4,internal,Collector Limpet Controller,,,,1,B,\n128671233,Int_DroneControl_Collection_Size1_Class5,internal,Collector Limpet Controller,,,,1,A,\n128671234,Int_DroneControl_Collection_Size3_Class1,internal,Collector Limpet Controller,,,,3,E,\n128671235,Int_DroneControl_Collection_Size3_Class2,internal,Collector Limpet Controller,,,,3,D,\n128671236,Int_DroneControl_Collection_Size3_Class3,internal,Collector Limpet Controller,,,,3,C,\n128671237,Int_DroneControl_Collection_Size3_Class4,internal,Collector Limpet Controller,,,,3,B,\n128671238,Int_DroneControl_Collection_Size3_Class5,internal,Collector Limpet Controller,,,,3,A,\n128671239,Int_DroneControl_Collection_Size5_Class1,internal,Collector Limpet Controller,,,,5,E,\n128671240,Int_DroneControl_Collection_Size5_Class2,internal,Collector Limpet Controller,,,,5,D,\n128671241,Int_DroneControl_Collection_Size5_Class3,internal,Collector Limpet Controller,,,,5,C,\n128671242,Int_DroneControl_Collection_Size5_Class4,internal,Collector Limpet Controller,,,,5,B,\n128671243,Int_DroneControl_Collection_Size5_Class5,internal,Collector Limpet Controller,,,,5,A,\n128671244,Int_DroneControl_Collection_Size7_Class1,internal,Collector Limpet Controller,,,,7,E,\n128671245,Int_DroneControl_Collection_Size7_Class2,internal,Collector Limpet Controller,,,,7,D,\n128671246,Int_DroneControl_Collection_Size7_Class3,internal,Collector Limpet Controller,,,,7,C,\n128671247,Int_DroneControl_Collection_Size7_Class4,internal,Collector Limpet Controller,,,,7,B,\n128671248,Int_DroneControl_Collection_Size7_Class5,internal,Collector Limpet Controller,,,,7,A,\n128671249,Int_DroneControl_FuelTransfer_Size1_Class1,internal,Fuel Transfer Limpet Controller,,,,1,E,\n128671250,Int_DroneControl_FuelTransfer_Size1_Class2,internal,Fuel Transfer Limpet Controller,,,,1,D,\n128671251,Int_DroneControl_FuelTransfer_Size1_Class3,internal,Fuel Transfer Limpet Controller,,,,1,C,\n128671252,Int_DroneControl_FuelTransfer_Size1_Class4,internal,Fuel Transfer Limpet Controller,,,,1,B,\n128671253,Int_DroneControl_FuelTransfer_Size1_Class5,internal,Fuel Transfer Limpet Controller,,,,1,A,\n128671254,Int_DroneControl_FuelTransfer_Size3_Class1,internal,Fuel Transfer Limpet Controller,,,,3,E,\n128671255,Int_DroneControl_FuelTransfer_Size3_Class2,internal,Fuel Transfer Limpet Controller,,,,3,D,\n128671256,Int_DroneControl_FuelTransfer_Size3_Class3,internal,Fuel Transfer Limpet Controller,,,,3,C,\n128671257,Int_DroneControl_FuelTransfer_Size3_Class4,internal,Fuel Transfer Limpet Controller,,,,3,B,\n128671258,Int_DroneControl_FuelTransfer_Size3_Class5,internal,Fuel Transfer Limpet Controller,,,,3,A,\n128671259,Int_DroneControl_FuelTransfer_Size5_Class1,internal,Fuel Transfer Limpet Controller,,,,5,E,\n128671260,Int_DroneControl_FuelTransfer_Size5_Class2,internal,Fuel Transfer Limpet Controller,,,,5,D,\n128671261,Int_DroneControl_FuelTransfer_Size5_Class3,internal,Fuel Transfer Limpet Controller,,,,5,C,\n128671262,Int_DroneControl_FuelTransfer_Size5_Class4,internal,Fuel Transfer Limpet Controller,,,,5,B,\n128671263,Int_DroneControl_FuelTransfer_Size5_Class5,internal,Fuel Transfer Limpet Controller,,,,5,A,\n128671264,Int_DroneControl_FuelTransfer_Size7_Class1,internal,Fuel Transfer Limpet Controller,,,,7,E,\n128671265,Int_DroneControl_FuelTransfer_Size7_Class2,internal,Fuel Transfer Limpet Controller,,,,7,D,\n128671266,Int_DroneControl_FuelTransfer_Size7_Class3,internal,Fuel Transfer Limpet Controller,,,,7,C,\n128671267,Int_DroneControl_FuelTransfer_Size7_Class4,internal,Fuel Transfer Limpet Controller,,,,7,B,\n128671268,Int_DroneControl_FuelTransfer_Size7_Class5,internal,Fuel Transfer Limpet Controller,,,,7,A,\n128671269,Int_DroneControl_Prospector_Size1_Class1,internal,Prospector Limpet Controller,,,,1,E,\n128671270,Int_DroneControl_Prospector_Size1_Class2,internal,Prospector Limpet Controller,,,,1,D,\n128671271,Int_DroneControl_Prospector_Size1_Class3,internal,Prospector Limpet Controller,,,,1,C,\n128671272,Int_DroneControl_Prospector_Size1_Class4,internal,Prospector Limpet Controller,,,,1,B,\n128671273,Int_DroneControl_Prospector_Size1_Class5,internal,Prospector Limpet Controller,,,,1,A,\n128671274,Int_DroneControl_Prospector_Size3_Class1,internal,Prospector Limpet Controller,,,,3,E,\n128671275,Int_DroneControl_Prospector_Size3_Class2,internal,Prospector Limpet Controller,,,,3,D,\n128671276,Int_DroneControl_Prospector_Size3_Class3,internal,Prospector Limpet Controller,,,,3,C,\n128671277,Int_DroneControl_Prospector_Size3_Class4,internal,Prospector Limpet Controller,,,,3,B,\n128671278,Int_DroneControl_Prospector_Size3_Class5,internal,Prospector Limpet Controller,,,,3,A,\n128671279,Int_DroneControl_Prospector_Size5_Class1,internal,Prospector Limpet Controller,,,,5,E,\n128671280,Int_DroneControl_Prospector_Size5_Class2,internal,Prospector Limpet Controller,,,,5,D,\n128671281,Int_DroneControl_Prospector_Size5_Class3,internal,Prospector Limpet Controller,,,,5,C,\n128671282,Int_DroneControl_Prospector_Size5_Class4,internal,Prospector Limpet Controller,,,,5,B,\n128671283,Int_DroneControl_Prospector_Size5_Class5,internal,Prospector Limpet Controller,,,,5,A,\n128671284,Int_DroneControl_Prospector_Size7_Class1,internal,Prospector Limpet Controller,,,,7,E,\n128671285,Int_DroneControl_Prospector_Size7_Class2,internal,Prospector Limpet Controller,,,,7,D,\n128671286,Int_DroneControl_Prospector_Size7_Class3,internal,Prospector Limpet Controller,,,,7,C,\n128671287,Int_DroneControl_Prospector_Size7_Class4,internal,Prospector Limpet Controller,,,,7,B,\n128671288,Int_DroneControl_Prospector_Size7_Class5,internal,Prospector Limpet Controller,,,,7,A,\n128671321,Hpt_Slugshot_Gimbal_Large,hardpoint,Fragment Cannon,Gimballed,,,3,C,\n128671322,Hpt_Slugshot_Turret_Large,hardpoint,Fragment Cannon,Turreted,,,3,C,\n128671323,Int_ShieldGenerator_Size1_Class5_Strong,internal,Prismatic Shield Generator,,,,1,A,ELITE_SPECIFIC_V_POWER_100000\n128671324,Int_ShieldGenerator_Size2_Class5_Strong,internal,Prismatic Shield Generator,,,,2,A,ELITE_SPECIFIC_V_POWER_100000\n128671325,Int_ShieldGenerator_Size3_Class5_Strong,internal,Prismatic Shield Generator,,,,3,A,ELITE_SPECIFIC_V_POWER_100000\n128671326,Int_ShieldGenerator_Size4_Class5_Strong,internal,Prismatic Shield Generator,,,,4,A,ELITE_SPECIFIC_V_POWER_100000\n128671327,Int_ShieldGenerator_Size5_Class5_Strong,internal,Prismatic Shield Generator,,,,5,A,ELITE_SPECIFIC_V_POWER_100000\n128671328,Int_ShieldGenerator_Size6_Class5_Strong,internal,Prismatic Shield Generator,,,,6,A,ELITE_SPECIFIC_V_POWER_100000\n128671329,Int_ShieldGenerator_Size7_Class5_Strong,internal,Prismatic Shield Generator,,,,7,A,ELITE_SPECIFIC_V_POWER_100000\n128671330,Int_ShieldGenerator_Size8_Class5_Strong,internal,Prismatic Shield Generator,,,,8,A,ELITE_SPECIFIC_V_POWER_100000\n128671331,Int_ShieldGenerator_Size1_Class3_Fast,internal,Bi-Weave Shield Generator,,,,1,C,\n128671332,Int_ShieldGenerator_Size2_Class3_Fast,internal,Bi-Weave Shield Generator,,,,2,C,\n128671333,Int_ShieldGenerator_Size3_Class3_Fast,internal,Bi-Weave Shield Generator,,,,3,C,\n128671334,Int_ShieldGenerator_Size4_Class3_Fast,internal,Bi-Weave Shield Generator,,,,4,C,\n128671335,Int_ShieldGenerator_Size5_Class3_Fast,internal,Bi-Weave Shield Generator,,,,5,C,\n128671336,Int_ShieldGenerator_Size6_Class3_Fast,internal,Bi-Weave Shield Generator,,,,6,C,\n128671337,Int_ShieldGenerator_Size7_Class3_Fast,internal,Bi-Weave Shield Generator,,,,7,C,\n128671338,Int_ShieldGenerator_Size8_Class3_Fast,internal,Bi-Weave Shield Generator,,,,8,C,\n128671339,Hpt_PlasmaAccelerator_Fixed_Large_Advanced,hardpoint,Advanced Plasma Accelerator,Fixed,,,3,B,ELITE_SPECIFIC_V_POWER_100050\n128671340,Hpt_MiningLaser_Fixed_Small_Advanced,hardpoint,Mining Lance,Fixed,,,1,D,ELITE_SPECIFIC_V_POWER_100080\n128671341,Hpt_Railgun_Fixed_Medium_Burst,hardpoint,Imperial Hammer Rail Gun,Fixed,,,2,B,ELITE_SPECIFIC_V_POWER_100020\n128671342,Hpt_PulseLaser_Fixed_Medium_Disruptor,hardpoint,Pulse Disruptor Laser,Fixed,,,2,E,ELITE_SPECIFIC_V_POWER_100040\n128671343,Hpt_Slugshot_Fixed_Large_Range,hardpoint,Pacifier Frag-Cannon,Fixed,,,3,C,ELITE_SPECIFIC_V_POWER_100060\n128671344,Hpt_DrunkMissileRack_Fixed_Medium,hardpoint,Pack-Hound Missile Rack,Fixed,Swarm,,2,B,ELITE_SPECIFIC_V_POWER_100070\n128671345,Hpt_MultiCannon_Fixed_Small_Strong,hardpoint,Enforcer Cannon,Fixed,,,1,F,ELITE_SPECIFIC_V_POWER_100090\n128671346,Hpt_BeamLaser_Fixed_Small_Heat,hardpoint,Retributor Beam Laser,Fixed,,,1,E,ELITE_SPECIFIC_V_POWER_100010\n128671448,Hpt_MineLauncher_Fixed_Small_Impulse,hardpoint,Shock Mine Launcher,Fixed,,,1,I,\n128671449,Hpt_PulseLaserBurst_Fixed_Small_Scatter,hardpoint,Cytoscrambler Burst Laser,Fixed,,,1,F,ELITE_SPECIFIC_V_POWER_100100\n128671832,DiamondBackXL_Armour_Grade1,standard,Lightweight Alloy,,,Diamondback Explorer,1,I,\n128671833,DiamondBackXL_Armour_Grade2,standard,Reinforced Alloy,,,Diamondback Explorer,1,I,\n128671834,DiamondBackXL_Armour_Grade3,standard,Military Grade Composite,,,Diamondback Explorer,1,I,\n128671835,DiamondBackXL_Armour_Mirrored,standard,Mirrored Surface Composite,,,Diamondback Explorer,1,I,\n128671836,DiamondBackXL_Armour_Reactive,standard,Reactive Surface Composite,,,Diamondback Explorer,1,I,\n128672140,Empire_Eagle_Armour_Grade1,standard,Lightweight Alloy,,,Imperial Eagle,1,I,\n128672141,Empire_Eagle_Armour_Grade2,standard,Reinforced Alloy,,,Imperial Eagle,1,I,\n128672142,Empire_Eagle_Armour_Grade3,standard,Military Grade Composite,,,Imperial Eagle,1,I,\n128672143,Empire_Eagle_Armour_Mirrored,standard,Mirrored Surface Composite,,,Imperial Eagle,1,I,\n128672144,Empire_Eagle_Armour_Reactive,standard,Reactive Surface Composite,,,Imperial Eagle,1,I,\n128672147,Federation_Dropship_MkII_Armour_Grade1,standard,Lightweight Alloy,,,Federal Assault Ship,1,I,\n128672148,Federation_Dropship_MkII_Armour_Grade2,standard,Reinforced Alloy,,,Federal Assault Ship,1,I,\n128672149,Federation_Dropship_MkII_Armour_Grade3,standard,Military Grade Composite,,,Federal Assault Ship,1,I,\n128672150,Federation_Dropship_MkII_Armour_Mirrored,standard,Mirrored Surface Composite,,,Federal Assault Ship,1,I,\n128672151,Federation_Dropship_MkII_Armour_Reactive,standard,Reactive Surface Composite,,,Federal Assault Ship,1,I,\n128672154,Federation_Gunship_Armour_Grade1,standard,Lightweight Alloy,,,Federal Gunship,1,I,\n128672155,Federation_Gunship_Armour_Grade2,standard,Reinforced Alloy,,,Federal Gunship,1,I,\n128672156,Federation_Gunship_Armour_Grade3,standard,Military Grade Composite,,,Federal Gunship,1,I,\n128672157,Federation_Gunship_Armour_Mirrored,standard,Mirrored Surface Composite,,,Federal Gunship,1,I,\n128672158,Federation_Gunship_Armour_Reactive,standard,Reactive Surface Composite,,,Federal Gunship,1,I,\n128672257,Viper_MkIV_Armour_Grade1,standard,Lightweight Alloy,,,Viper MkIV,1,I,\n128672258,Viper_MkIV_Armour_Grade2,standard,Reinforced Alloy,,,Viper MkIV,1,I,\n128672259,Viper_MkIV_Armour_Grade3,standard,Military Grade Composite,,,Viper MkIV,1,I,\n128672260,Viper_MkIV_Armour_Mirrored,standard,Mirrored Surface Composite,,,Viper MkIV,1,I,\n128672261,Viper_MkIV_Armour_Reactive,standard,Reactive Surface Composite,,,Viper MkIV,1,I,\n128672264,CobraMkIV_Armour_Grade1,standard,Lightweight Alloy,,,Cobra MkIV,1,I,\n128672265,CobraMkIV_Armour_Grade2,standard,Reinforced Alloy,,,Cobra MkIV,1,I,\n128672266,CobraMkIV_Armour_Grade3,standard,Military Grade Composite,,,Cobra MkIV,1,I,\n128672267,CobraMkIV_Armour_Mirrored,standard,Mirrored Surface Composite,,,Cobra MkIV,1,I,\n128672268,CobraMkIV_Armour_Reactive,standard,Reactive Surface Composite,,,Cobra MkIV,1,I,\n128672271,Independant_Trader_Armour_Grade1,standard,Lightweight Alloy,,,Keelback,1,I,\n128672272,Independant_Trader_Armour_Grade2,standard,Reinforced Alloy,,,Keelback,1,I,\n128672273,Independant_Trader_Armour_Grade3,standard,Military Grade Composite,,,Keelback,1,I,\n128672274,Independant_Trader_Armour_Mirrored,standard,Mirrored Surface Composite,,,Keelback,1,I,\n128672275,Independant_Trader_Armour_Reactive,standard,Reactive Surface Composite,,,Keelback,1,I,\n128672278,Asp_Scout_Armour_Grade1,standard,Lightweight Alloy,,,Asp Scout,1,I,\n128672279,Asp_Scout_Armour_Grade2,standard,Reinforced Alloy,,,Asp Scout,1,I,\n128672280,Asp_Scout_Armour_Grade3,standard,Military Grade Composite,,,Asp Scout,1,I,\n128672281,Asp_Scout_Armour_Mirrored,standard,Mirrored Surface Composite,,,Asp Scout,1,I,\n128672282,Asp_Scout_Armour_Reactive,standard,Reactive Surface Composite,,,Asp Scout,1,I,\n128672288,Int_BuggyBay_Size2_Class1,internal,Planetary Vehicle Hangar,,,,2,H,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128672289,Int_BuggyBay_Size2_Class2,internal,Planetary Vehicle Hangar,,,,2,G,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128672290,Int_BuggyBay_Size4_Class1,internal,Planetary Vehicle Hangar,,,,4,H,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128672291,Int_BuggyBay_Size4_Class2,internal,Planetary Vehicle Hangar,,,,4,G,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128672292,Int_BuggyBay_Size6_Class1,internal,Planetary Vehicle Hangar,,,,6,H,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128672293,Int_BuggyBay_Size6_Class2,internal,Planetary Vehicle Hangar,,,,6,G,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128672317,Int_PlanetApproachSuite,internal,Planetary Approach Suite,,,,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128681641,Int_CorrosionProofCargoRack_Size1_Class1,internal,Corrosion Resistant Cargo Rack,,,,1,E,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128681992,Int_CorrosionProofCargoRack_Size1_Class2,internal,Corrosion Resistant Cargo Rack,,,,1,F,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128681994,Hpt_BeamLaser_Gimbal_Huge,hardpoint,Beam Laser,Gimballed,,,4,A,\n128681995,Hpt_PulseLaser_Gimbal_Huge,hardpoint,Pulse Laser,Gimballed,,,4,A,\n128681996,Hpt_MultiCannon_Gimbal_Huge,hardpoint,Multi-Cannon,Gimballed,,,4,A,\n128682013,Int_Engine_Size3_Class5_Fast,standard,Enhanced Performance Thrusters,,,,3,A,\n128682014,Int_Engine_Size2_Class5_Fast,standard,Enhanced Performance Thrusters,,,,2,A,\n128727920,Hpt_PulseLaserBurst_Gimbal_Huge,hardpoint,Burst Laser,Gimballed,,,4,E,\n128727922,Int_PassengerCabin_Size4_Class1,internal,Economy Class Passenger Cabin,,,,4,E,\n128727923,Int_PassengerCabin_Size4_Class2,internal,Business Class Passenger Cabin,,,,4,D,\n128727924,Int_PassengerCabin_Size4_Class3,internal,First Class Passenger Cabin,,,,4,C,\n128727925,Int_PassengerCabin_Size5_Class4,internal,Luxury Class Passenger Cabin,,,,5,B,\n128727926,Int_PassengerCabin_Size6_Class1,internal,Economy Class Passenger Cabin,,,,6,E,\n128727927,Int_PassengerCabin_Size6_Class2,internal,Business Class Passenger Cabin,,,,6,D,\n128727928,Int_PassengerCabin_Size6_Class3,internal,First Class Passenger Cabin,,,,6,C,\n128727929,Int_PassengerCabin_Size6_Class4,internal,Luxury Class Passenger Cabin,,,,6,B,\n128727930,Int_FighterBay_Size5_Class1,internal,Fighter Hangar,,,,5,D,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128727931,Int_FighterBay_Size6_Class1,internal,Fighter Hangar,,,,6,D,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128727932,Int_FighterBay_Size7_Class1,internal,Fighter Hangar,,,,7,D,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128732552,Hpt_DumbfireMissileRack_Fixed_Medium_Lasso,hardpoint,Rocket Propelled FSD Disruptor,Fixed,Dumbfire,,2,B,ELITE_SPECIFIC_V_POWER_100120\n128734690,Int_PassengerCabin_Size2_Class1,internal,Economy Class Passenger Cabin,,,,2,E,\n128734691,Int_PassengerCabin_Size3_Class1,internal,Economy Class Passenger Cabin,,,,3,E,\n128734692,Int_PassengerCabin_Size3_Class2,internal,Business Class Passenger Cabin,,,,3,D,\n128734693,Int_PassengerCabin_Size5_Class1,internal,Economy Class Passenger Cabin,,,,5,E,\n128734694,Int_PassengerCabin_Size5_Class2,internal,Business Class Passenger Cabin,,,,5,D,\n128734695,Int_PassengerCabin_Size5_Class3,internal,First Class Passenger Cabin,,,,5,C,\n128737270,Int_ModuleReinforcement_Size1_Class1,internal,Module Reinforcement Package,,,,1,E,\n128737271,Int_ModuleReinforcement_Size1_Class2,internal,Module Reinforcement Package,,,,1,D,\n128737272,Int_ModuleReinforcement_Size2_Class1,internal,Module Reinforcement Package,,,,2,E,\n128737273,Int_ModuleReinforcement_Size2_Class2,internal,Module Reinforcement Package,,,,2,D,\n128737274,Int_ModuleReinforcement_Size3_Class1,internal,Module Reinforcement Package,,,,3,E,\n128737275,Int_ModuleReinforcement_Size3_Class2,internal,Module Reinforcement Package,,,,3,D,\n128737276,Int_ModuleReinforcement_Size4_Class1,internal,Module Reinforcement Package,,,,4,E,\n128737277,Int_ModuleReinforcement_Size4_Class2,internal,Module Reinforcement Package,,,,4,D,\n128737278,Int_ModuleReinforcement_Size5_Class1,internal,Module Reinforcement Package,,,,5,E,\n128737279,Int_ModuleReinforcement_Size5_Class2,internal,Module Reinforcement Package,,,,5,D,\n128740819,Hpt_MiningLaser_Turret_Small,hardpoint,Mining Laser,Turreted,,,1,D,\n128740820,Hpt_MiningLaser_Turret_Medium,hardpoint,Mining Laser,Turreted,,,2,D,\n128771884,Hpt_AntiUnknownShutdown_Tiny,utility,Shutdown Field Neutraliser,,,,0,F,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128777327,Int_DroneControl_Repair_Size1_Class1,internal,Repair Limpet Controller,,,,1,E,\n128777328,Int_DroneControl_Repair_Size1_Class2,internal,Repair Limpet Controller,,,,1,D,\n128777329,Int_DroneControl_Repair_Size1_Class3,internal,Repair Limpet Controller,,,,1,C,\n128777330,Int_DroneControl_Repair_Size1_Class4,internal,Repair Limpet Controller,,,,1,B,\n128777331,Int_DroneControl_Repair_Size1_Class5,internal,Repair Limpet Controller,,,,1,A,\n128777332,Int_DroneControl_Repair_Size3_Class1,internal,Repair Limpet Controller,,,,3,E,\n128777333,Int_DroneControl_Repair_Size3_Class2,internal,Repair Limpet Controller,,,,3,D,\n128777334,Int_DroneControl_Repair_Size3_Class3,internal,Repair Limpet Controller,,,,3,C,\n128777335,Int_DroneControl_Repair_Size3_Class4,internal,Repair Limpet Controller,,,,3,B,\n128777336,Int_DroneControl_Repair_Size3_Class5,internal,Repair Limpet Controller,,,,3,A,\n128777337,Int_DroneControl_Repair_Size5_Class1,internal,Repair Limpet Controller,,,,5,E,\n128777338,Int_DroneControl_Repair_Size5_Class2,internal,Repair Limpet Controller,,,,5,D,\n128777339,Int_DroneControl_Repair_Size5_Class3,internal,Repair Limpet Controller,,,,5,C,\n128777340,Int_DroneControl_Repair_Size5_Class4,internal,Repair Limpet Controller,,,,5,B,\n128777341,Int_DroneControl_Repair_Size5_Class5,internal,Repair Limpet Controller,,,,5,A,\n128777342,Int_DroneControl_Repair_Size7_Class1,internal,Repair Limpet Controller,,,,7,E,\n128777343,Int_DroneControl_Repair_Size7_Class2,internal,Repair Limpet Controller,,,,7,D,\n128777344,Int_DroneControl_Repair_Size7_Class3,internal,Repair Limpet Controller,,,,7,C,\n128777345,Int_DroneControl_Repair_Size7_Class4,internal,Repair Limpet Controller,,,,7,B,\n128777346,Int_DroneControl_Repair_Size7_Class5,internal,Repair Limpet Controller,,,,7,A,\n128785621,Type9_Military_Armour_Grade1,standard,Lightweight Alloy,,,Type-10 Defender,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128785622,Type9_Military_Armour_Grade2,standard,Reinforced Alloy,,,Type-10 Defender,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128785623,Type9_Military_Armour_Grade3,standard,Military Grade Composite,,,Type-10 Defender,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128785624,Type9_Military_Armour_Mirrored,standard,Mirrored Surface Composite,,,Type-10 Defender,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128785625,Type9_Military_Armour_Reactive,standard,Reactive Surface Composite,,,Type-10 Defender,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128785626,Hpt_FlakMortar_Fixed_Medium,hardpoint,Remote Release Flak Launcher,Fixed,,,2,B,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128788699,Hpt_ATDumbfireMissile_Fixed_Medium,hardpoint,AX Missile Rack,Fixed,Dumbfire,,2,B,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128788700,Hpt_ATDumbfireMissile_Fixed_Large,hardpoint,AX Missile Rack,Fixed,Dumbfire,,3,A,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128788701,Hpt_ATMultiCannon_Fixed_Medium,hardpoint,AX Multi-Cannon,Fixed,,,2,E,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128788702,Hpt_ATMultiCannon_Fixed_Large,hardpoint,AX Multi-Cannon,Fixed,,,3,C,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128788704,Hpt_ATDumbfireMissile_Turret_Medium,hardpoint,AX Missile Rack,Turreted,Dumbfire,,2,B,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128788705,Hpt_ATDumbfireMissile_Turret_Large,hardpoint,AX Missile Rack,Turreted,Dumbfire,,3,A,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128793058,Hpt_FlakMortar_Turret_Medium,hardpoint,Remote Release Flak Launcher,Turreted,,,2,B,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128793059,Hpt_ATMultiCannon_Turret_Medium,hardpoint,AX Multi-Cannon,Turreted,,,2,F,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128793060,Hpt_ATMultiCannon_Turret_Large,hardpoint,AX Multi-Cannon,Turreted,,,3,E,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128793115,Hpt_XenoScanner_Basic_Tiny,utility,Xeno Scanner,,,,0,E,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128793116,Int_DroneControl_UnkVesselResearch,internal,Research Limpet Controller,,,,1,E,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128793117,Int_MetaAlloyHullReinforcement_Size1_Class1,internal,Meta Alloy Hull Reinforcement,,,,1,E,ELITE_HORIZONS_V_METAHULL\n128793118,Int_MetaAlloyHullReinforcement_Size1_Class2,internal,Meta Alloy Hull Reinforcement,,,,1,D,ELITE_HORIZONS_V_METAHULL\n128793119,Int_MetaAlloyHullReinforcement_Size2_Class1,internal,Meta Alloy Hull Reinforcement,,,,2,E,ELITE_HORIZONS_V_METAHULL\n128793120,Int_MetaAlloyHullReinforcement_Size2_Class2,internal,Meta Alloy Hull Reinforcement,,,,2,D,ELITE_HORIZONS_V_METAHULL\n128793121,Int_MetaAlloyHullReinforcement_Size3_Class1,internal,Meta Alloy Hull Reinforcement,,,,3,E,ELITE_HORIZONS_V_METAHULL\n128793122,Int_MetaAlloyHullReinforcement_Size3_Class2,internal,Meta Alloy Hull Reinforcement,,,,3,D,ELITE_HORIZONS_V_METAHULL\n128793123,Int_MetaAlloyHullReinforcement_Size4_Class1,internal,Meta Alloy Hull Reinforcement,,,,4,E,ELITE_HORIZONS_V_METAHULL\n128793124,Int_MetaAlloyHullReinforcement_Size4_Class2,internal,Meta Alloy Hull Reinforcement,,,,4,D,ELITE_HORIZONS_V_METAHULL\n128793125,Int_MetaAlloyHullReinforcement_Size5_Class1,internal,Meta Alloy Hull Reinforcement,,,,5,E,ELITE_HORIZONS_V_METAHULL\n128793126,Int_MetaAlloyHullReinforcement_Size5_Class2,internal,Meta Alloy Hull Reinforcement,,,,5,D,ELITE_HORIZONS_V_METAHULL\n128793941,Int_DroneControl_Decontamination_Size1_Class1,internal,Decontamination Limpet Controller,,,,1,E,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128793942,Int_DroneControl_Decontamination_Size3_Class1,internal,Decontamination Limpet Controller,,,,3,E,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128793943,Int_DroneControl_Decontamination_Size5_Class1,internal,Decontamination Limpet Controller,,,,5,E,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128793944,Int_DroneControl_Decontamination_Size7_Class1,internal,Decontamination Limpet Controller,,,,7,E,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128808878,Hpt_XenoScannerMk2_Basic_Tiny,utility,Unknown Xeno Scanner Mk II,,,,?,?,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128816569,Krait_MkII_Armour_Grade1,standard,Lightweight Alloy,,,Krait MkII,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128816570,Krait_MkII_Armour_Grade2,standard,Reinforced Alloy,,,Krait MkII,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128816571,Krait_MkII_Armour_Grade3,standard,Military Grade Composite,,,Krait MkII,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128816572,Krait_MkII_Armour_Mirrored,standard,Mirrored Surface Composite,,,Krait MkII,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128816573,Krait_MkII_Armour_Reactive,standard,Reactive Surface Composite,,,Krait MkII,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128816576,TypeX_Armour_Grade1,standard,Lightweight Alloy,,,Alliance Chieftain,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128816577,TypeX_Armour_Grade2,standard,Reinforced Alloy,,,Alliance Chieftain,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128816578,TypeX_Armour_Grade3,standard,Military Grade Composite,,,Alliance Chieftain,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128816579,TypeX_Armour_Mirrored,standard,Mirrored Surface Composite,,,Alliance Chieftain,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128816580,TypeX_Armour_Reactive,standard,Reactive Surface Composite,,,Alliance Chieftain,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128816583,TypeX_2_Armour_Grade1,standard,Lightweight Alloy,,,Alliance Crusader,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128816584,TypeX_2_Armour_Grade2,standard,Reinforced Alloy,,,Alliance Crusader,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128816585,TypeX_2_Armour_Grade3,standard,Military Grade Composite,,,Alliance Crusader,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128816586,TypeX_2_Armour_Mirrored,standard,Mirrored Surface Composite,,,Alliance Crusader,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128816587,TypeX_2_Armour_Reactive,standard,Reactive Surface Composite,,,Alliance Crusader,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128816590,TypeX_3_Armour_Grade1,standard,Lightweight Alloy,,,Alliance Challenger,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128816591,TypeX_3_Armour_Grade2,standard,Reinforced Alloy,,,Alliance Challenger,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128816592,TypeX_3_Armour_Grade3,standard,Military Grade Composite,,,Alliance Challenger,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128816593,TypeX_3_Armour_Mirrored,standard,Mirrored Surface Composite,,,Alliance Challenger,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128816594,TypeX_3_Armour_Reactive,standard,Reactive Surface Composite,,,Alliance Challenger,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128833687,Hpt_Guardian_GaussCannon_Fixed_Medium,hardpoint,Guardian Gauss Cannon,Fixed,,,2,B,ELITE_HORIZONS_V_GUARDIAN_GAUSS_FIXED_MEDIUM\n128833944,Int_CorrosionProofCargoRack_Size4_Class1,internal,Corrosion Resistant Cargo Rack,,,,4,E,ELITE_HORIZONS_V_CORROSIONCARGO_SIZE4\n128833945,Int_GuardianHullReinforcement_Size1_Class1,internal,Guardian Hull Reinforcement,,,,1,E,ELITE_HORIZONS_V_GUARDIAN_HULLREINFORCEMENT\n128833946,Int_GuardianHullReinforcement_Size1_Class2,internal,Guardian Hull Reinforcement,,,,1,D,ELITE_HORIZONS_V_GUARDIAN_HULLREINFORCEMENT\n128833947,Int_GuardianHullReinforcement_Size2_Class1,internal,Guardian Hull Reinforcement,,,,2,E,ELITE_HORIZONS_V_GUARDIAN_HULLREINFORCEMENT\n128833948,Int_GuardianHullReinforcement_Size2_Class2,internal,Guardian Hull Reinforcement,,,,2,D,ELITE_HORIZONS_V_GUARDIAN_HULLREINFORCEMENT\n128833949,Int_GuardianHullReinforcement_Size3_Class1,internal,Guardian Hull Reinforcement,,,,3,E,ELITE_HORIZONS_V_GUARDIAN_HULLREINFORCEMENT\n128833950,Int_GuardianHullReinforcement_Size3_Class2,internal,Guardian Hull Reinforcement,,,,3,D,ELITE_HORIZONS_V_GUARDIAN_HULLREINFORCEMENT\n128833951,Int_GuardianHullReinforcement_Size4_Class1,internal,Guardian Hull Reinforcement,,,,4,E,ELITE_HORIZONS_V_GUARDIAN_HULLREINFORCEMENT\n128833952,Int_GuardianHullReinforcement_Size4_Class2,internal,Guardian Hull Reinforcement,,,,4,D,ELITE_HORIZONS_V_GUARDIAN_HULLREINFORCEMENT\n128833953,Int_GuardianHullReinforcement_Size5_Class1,internal,Guardian Hull Reinforcement,,,,5,E,ELITE_HORIZONS_V_GUARDIAN_HULLREINFORCEMENT\n128833954,Int_GuardianHullReinforcement_Size5_Class2,internal,Guardian Hull Reinforcement,,,,5,D,ELITE_HORIZONS_V_GUARDIAN_HULLREINFORCEMENT\n128833955,Int_GuardianModuleReinforcement_Size1_Class1,internal,Guardian Module Reinforcement,,,,1,E,ELITE_HORIZONS_V_GUARDIAN_MODULEREINFORCEMENT\n128833956,Int_GuardianModuleReinforcement_Size1_Class2,internal,Guardian Module Reinforcement,,,,1,D,ELITE_HORIZONS_V_GUARDIAN_MODULEREINFORCEMENT\n128833957,Int_GuardianModuleReinforcement_Size2_Class1,internal,Guardian Module Reinforcement,,,,2,E,ELITE_HORIZONS_V_GUARDIAN_MODULEREINFORCEMENT\n128833958,Int_GuardianModuleReinforcement_Size2_Class2,internal,Guardian Module Reinforcement,,,,2,D,ELITE_HORIZONS_V_GUARDIAN_MODULEREINFORCEMENT\n128833959,Int_GuardianModuleReinforcement_Size3_Class1,internal,Guardian Module Reinforcement,,,,3,E,ELITE_HORIZONS_V_GUARDIAN_MODULEREINFORCEMENT\n128833960,Int_GuardianModuleReinforcement_Size3_Class2,internal,Guardian Module Reinforcement,,,,3,D,ELITE_HORIZONS_V_GUARDIAN_MODULEREINFORCEMENT\n128833961,Int_GuardianModuleReinforcement_Size4_Class1,internal,Guardian Module Reinforcement,,,,4,E,ELITE_HORIZONS_V_GUARDIAN_MODULEREINFORCEMENT\n128833962,Int_GuardianModuleReinforcement_Size4_Class2,internal,Guardian Module Reinforcement,,,,4,D,ELITE_HORIZONS_V_GUARDIAN_MODULEREINFORCEMENT\n128833963,Int_GuardianModuleReinforcement_Size5_Class1,internal,Guardian Module Reinforcement,,,,5,E,ELITE_HORIZONS_V_GUARDIAN_MODULEREINFORCEMENT\n128833964,Int_GuardianModuleReinforcement_Size5_Class2,internal,Guardian Module Reinforcement,,,,5,D,ELITE_HORIZONS_V_GUARDIAN_MODULEREINFORCEMENT\n128833965,Int_GuardianShieldReinforcement_Size1_Class1,internal,Guardian Shield Reinforcement,,,,1,E,ELITE_HORIZONS_V_GUARDIAN_SHIELDREINFORCEMENT\n128833966,Int_GuardianShieldReinforcement_Size1_Class2,internal,Guardian Shield Reinforcement,,,,1,D,ELITE_HORIZONS_V_GUARDIAN_SHIELDREINFORCEMENT\n128833967,Int_GuardianShieldReinforcement_Size2_Class1,internal,Guardian Shield Reinforcement,,,,2,E,ELITE_HORIZONS_V_GUARDIAN_SHIELDREINFORCEMENT\n128833968,Int_GuardianShieldReinforcement_Size2_Class2,internal,Guardian Shield Reinforcement,,,,2,D,ELITE_HORIZONS_V_GUARDIAN_SHIELDREINFORCEMENT\n128833969,Int_GuardianShieldReinforcement_Size3_Class1,internal,Guardian Shield Reinforcement,,,,3,E,ELITE_HORIZONS_V_GUARDIAN_SHIELDREINFORCEMENT\n128833970,Int_GuardianShieldReinforcement_Size3_Class2,internal,Guardian Shield Reinforcement,,,,3,D,ELITE_HORIZONS_V_GUARDIAN_SHIELDREINFORCEMENT\n128833971,Int_GuardianShieldReinforcement_Size4_Class1,internal,Guardian Shield Reinforcement,,,,4,E,ELITE_HORIZONS_V_GUARDIAN_SHIELDREINFORCEMENT\n128833972,Int_GuardianShieldReinforcement_Size4_Class2,internal,Guardian Shield Reinforcement,,,,4,D,ELITE_HORIZONS_V_GUARDIAN_SHIELDREINFORCEMENT\n128833973,Int_GuardianShieldReinforcement_Size5_Class1,internal,Guardian Shield Reinforcement,,,,5,E,ELITE_HORIZONS_V_GUARDIAN_SHIELDREINFORCEMENT\n128833974,Int_GuardianShieldReinforcement_Size5_Class2,internal,Guardian Shield Reinforcement,,,,5,D,ELITE_HORIZONS_V_GUARDIAN_SHIELDREINFORCEMENT\n128833975,Int_GuardianFSDBooster_Size1,internal,Guardian FSD Booster,,,,1,H,ELITE_HORIZONS_V_GUARDIAN_FSDBOOSTER\n128833976,Int_GuardianFSDBooster_Size2,internal,Guardian FSD Booster,,,,2,H,ELITE_HORIZONS_V_GUARDIAN_FSDBOOSTER\n128833977,Int_GuardianFSDBooster_Size3,internal,Guardian FSD Booster,,,,3,H,ELITE_HORIZONS_V_GUARDIAN_FSDBOOSTER\n128833978,Int_GuardianFSDBooster_Size4,internal,Guardian FSD Booster,,,,4,H,ELITE_HORIZONS_V_GUARDIAN_FSDBOOSTER\n128833979,Int_GuardianFSDBooster_Size5,internal,Guardian FSD Booster,,,,5,H,ELITE_HORIZONS_V_GUARDIAN_FSDBOOSTER\n128833980,Int_GuardianPowerDistributor_Size1,internal,Guardian Hybrid Power Distributor,,,,1,A,ELITE_HORIZONS_V_GUARDIAN_POWERDISTRIBUTOR\n128833981,Int_GuardianPowerDistributor_Size2,internal,Guardian Hybrid Power Distributor,,,,2,A,ELITE_HORIZONS_V_GUARDIAN_POWERDISTRIBUTOR\n128833982,Int_GuardianPowerDistributor_Size3,internal,Guardian Hybrid Power Distributor,,,,3,A,ELITE_HORIZONS_V_GUARDIAN_POWERDISTRIBUTOR\n128833983,Int_GuardianPowerDistributor_Size4,internal,Guardian Hybrid Power Distributor,,,,4,A,ELITE_HORIZONS_V_GUARDIAN_POWERDISTRIBUTOR\n128833984,Int_GuardianPowerDistributor_Size5,internal,Guardian Hybrid Power Distributor,,,,5,A,ELITE_HORIZONS_V_GUARDIAN_POWERDISTRIBUTOR\n128833985,Int_GuardianPowerDistributor_Size6,internal,Guardian Hybrid Power Distributor,,,,6,A,ELITE_HORIZONS_V_GUARDIAN_POWERDISTRIBUTOR\n128833986,Int_GuardianPowerDistributor_Size7,internal,Guardian Hybrid Power Distributor,,,,7,A,ELITE_HORIZONS_V_GUARDIAN_POWERDISTRIBUTOR\n128833987,Int_GuardianPowerDistributor_Size8,internal,Guardian Hybrid Power Distributor,,,,8,A,ELITE_HORIZONS_V_GUARDIAN_POWERDISTRIBUTOR\n128833988,Int_GuardianPowerplant_Size2,internal,Guardian Hybrid Power Plant,,,,2,A,ELITE_HORIZONS_V_GUARDIAN_POWERPLANT\n128833989,Int_GuardianPowerplant_Size3,internal,Guardian Hybrid Power Plant,,,,3,A,ELITE_HORIZONS_V_GUARDIAN_POWERPLANT\n128833990,Int_GuardianPowerplant_Size4,internal,Guardian Hybrid Power Plant,,,,4,A,ELITE_HORIZONS_V_GUARDIAN_POWERPLANT\n128833991,Int_GuardianPowerplant_Size5,internal,Guardian Hybrid Power Plant,,,,5,A,ELITE_HORIZONS_V_GUARDIAN_POWERPLANT\n128833992,Int_GuardianPowerplant_Size6,internal,Guardian Hybrid Power Plant,,,,6,A,ELITE_HORIZONS_V_GUARDIAN_POWERPLANT\n128833993,Int_GuardianPowerplant_Size7,internal,Guardian Hybrid Power Plant,,,,7,A,ELITE_HORIZONS_V_GUARDIAN_POWERPLANT\n128833994,Int_GuardianPowerplant_Size8,internal,Guardian Hybrid Power Plant,,,,8,A,ELITE_HORIZONS_V_GUARDIAN_POWERPLANT\n128833995,Hpt_CausticMissile_Fixed_Medium,hardpoint,Enzyme Missile Rack,Fixed,Dumbfire,,2,B,ELITE_HORIZONS_V_CAUSTIC_MEDIUM\n128833996,Hpt_FlechetteLauncher_Fixed_Medium,hardpoint,Remote Release Flechette Launcher,Fixed,,,2,B,ELITE_HORIZONS_V_FLECHETTE_FIXED_MEDIUM\n128833997,Hpt_FlechetteLauncher_Turret_Medium,hardpoint,Remote Release Flechette Launcher,Turreted,,,2,B,ELITE_HORIZONS_V_FLECHETTE_TURRET_MEDIUM\n128833998,Hpt_Guardian_PlasmaLauncher_Fixed_Medium,hardpoint,Guardian Plasma Charger,Fixed,,,2,B,ELITE_HORIZONS_V_GUARDIAN_PLASMA_FIXED_MEDIUM\n128833999,Hpt_Guardian_PlasmaLauncher_Turret_Medium,hardpoint,Guardian Plasma Charger,Turreted,,,2,E,ELITE_HORIZONS_V_GUARDIAN_PLASMA_TURRET_MEDIUM\n128834000,Hpt_Guardian_ShardCannon_Fixed_Medium,hardpoint,Guardian Shard Cannon,Fixed,,,2,A,ELITE_HORIZONS_V_GUARDIAN_SHARD_FIXED_MEDIUM\n128834001,Hpt_Guardian_ShardCannon_Turret_Medium,hardpoint,Guardian Shard Cannon,Turreted,,,2,D,ELITE_HORIZONS_V_GUARDIAN_SHARD_TURRET_MEDIUM\n128834002,Hpt_PlasmaShockCannon_Fixed_Medium,hardpoint,Shock Cannon,Fixed,,,2,D,ELITE_HORIZONS_V_PLASMASHOCK_FIXED_MEDIUM\n128834003,Hpt_PlasmaShockCannon_Gimbal_Medium,hardpoint,Shock Cannon,Gimballed,,,2,D,ELITE_HORIZONS_V_PLASMASHOCK_GIMBAL_MEDIUM\n128834004,Hpt_PlasmaShockCannon_Turret_Medium,hardpoint,Shock Cannon,Turreted,,,2,E,ELITE_HORIZONS_V_PLASMASHOCK_TURRET_MEDIUM\n128834778,Hpt_Guardian_ShardCannon_Fixed_Large,hardpoint,Guardian Shard Cannon,Fixed,,,3,C,ELITE_HORIZONS_V_GUARDIAN_SHARD_FIXED_LARGE\n128834779,Hpt_Guardian_ShardCannon_Turret_Large,hardpoint,Guardian Shard Cannon,Turreted,,,3,D,ELITE_HORIZONS_V_GUARDIAN_SHARD_TURRET_LARGE\n128834780,Hpt_PlasmaShockCannon_Fixed_Large,hardpoint,Shock Cannon,Fixed,,,3,C,ELITE_HORIZONS_V_PLASMASHOCK_FIXED_LARGE\n128834781,Hpt_PlasmaShockCannon_Gimbal_Large,hardpoint,Shock Cannon,Gimballed,,,3,C,ELITE_HORIZONS_V_PLASMASHOCK_GIMBAL_LARGE\n128834782,Hpt_PlasmaShockCannon_Turret_Large,hardpoint,Shock Cannon,Turreted,,,3,D,ELITE_HORIZONS_V_PLASMASHOCK_TURRET_LARGE\n128834783,Hpt_Guardian_PlasmaLauncher_Fixed_Large,hardpoint,Guardian Plasma Charger,Fixed,,,3,C,ELITE_HORIZONS_V_GUARDIAN_PLASMA_FIXED_LARGE\n128834784,Hpt_Guardian_PlasmaLauncher_Turret_Large,hardpoint,Guardian Plasma Charger,Turreted,,,3,D,ELITE_HORIZONS_V_GUARDIAN_PLASMA_TURRET_LARGE\n128837858,Int_DroneControl_Recon_Size1_Class1,internal,Recon Limpet Controller,,,,1,E,\n128839283,Krait_Light_Armour_Grade1,standard,Lightweight Alloy,,,Krait Phantom,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128839284,Krait_Light_Armour_Grade2,standard,Reinforced Alloy,,,Krait Phantom,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128839285,Krait_Light_Armour_Grade3,standard,Military Grade Composite,,,Krait Phantom,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128839286,Krait_Light_Armour_Mirrored,standard,Mirrored Surface Composite,,,Krait Phantom,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128839287,Krait_Light_Armour_Reactive,standard,Reactive Surface Composite,,,Krait Phantom,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128841592,Int_DroneControl_Recon_Size3_Class1,internal,Recon Limpet Controller,,,,3,E,\n128841593,Int_DroneControl_Recon_Size5_Class1,internal,Recon Limpet Controller,,,,5,E,\n128841594,Int_DroneControl_Recon_Size7_Class1,internal,Recon Limpet Controller,,,,7,E,\n128891602,Hpt_DumbfireMissileRack_Fixed_Large,hardpoint,Missile Rack,Fixed,Dumbfire,,3,A,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128891603,Hpt_PlasmaShockCannon_Turret_Small,hardpoint,Shock Cannon,Turreted,,,1,F,ELITE_HORIZONS_V_PLASMASHOCK_TURRET_SMALL\n128891604,Hpt_PlasmaShockCannon_Gimbal_Small,hardpoint,Shock Cannon,Gimballed,,,1,E,ELITE_HORIZONS_V_PLASMASHOCK_GIMBAL_SMALL\n128891605,Hpt_PlasmaShockCannon_Fixed_Small,hardpoint,Shock Cannon,Fixed,,,1,D,ELITE_HORIZONS_V_PLASMASHOCK_FIXED_SMALL\n128891606,Hpt_Guardian_PlasmaLauncher_Turret_Small,hardpoint,Guardian Plasma Charger,Turreted,,,1,F,ELITE_HORIZONS_V_GUARDIAN_PLASMA_TURRET_SMALL\n128891607,Hpt_Guardian_PlasmaLauncher_Fixed_Small,hardpoint,Guardian Plasma Charger,Fixed,,,1,D,ELITE_HORIZONS_V_GUARDIAN_PLASMA_FIXED_SMALL\n128891608,Hpt_Guardian_ShardCannon_Turret_Small,hardpoint,Guardian Shard Cannon,Turreted,,,1,F,ELITE_HORIZONS_V_GUARDIAN_SHARD_TURRET_SMALL\n128891609,Hpt_Guardian_ShardCannon_Fixed_Small,hardpoint,Guardian Shard Cannon,Fixed,,,1,D,ELITE_HORIZONS_V_GUARDIAN_SHARD_FIXED_SMALL\n128891610,Hpt_Guardian_GaussCannon_Fixed_Small,hardpoint,Guardian Gauss Cannon,Fixed,,,1,D,ELITE_HORIZONS_V_GUARDIAN_GAUSS_FIXED_SMALL\n128915454,Hpt_Mining_SubSurfDispMisle_Fixed_Small,hardpoint,Sub-Surface Displacement Missile,Fixed,Seeker,,1,B,\n128915455,Hpt_Mining_SubSurfDispMisle_Turret_Small,hardpoint,Sub-Surface Displacement Missile,Turreted,Seeker,,1,B,\n128915456,Hpt_Mining_SubSurfDispMisle_Fixed_Medium,hardpoint,Sub-Surface Displacement Missile,Fixed,Seeker,,2,B,\n128915457,Hpt_Mining_SubSurfDispMisle_Turret_Medium,hardpoint,Sub-Surface Displacement Missile,Turreted,Seeker,,2,B,\n128915458,Hpt_Mining_AbrBlstr_Fixed_Small,hardpoint,Abrasion Blaster,Fixed,,,1,D,\n128915459,Hpt_Mining_AbrBlstr_Turret_Small,hardpoint,Abrasion Blaster,Turreted,,,1,D,\n128915460,Hpt_Mining_SeismChrgWarhd_Fixed_Medium,hardpoint,Seismic Charge Launcher,Fixed,Seeker,,2,B,\n128915461,Hpt_Mining_SeismChrgWarhd_Turret_Medium,hardpoint,Seismic Charge Launcher,Turreted,Seeker,,2,B,\n128915718,Hpt_MRAScanner_Size0_Class1,utility,Pulse Wave Analyser,,,,0,E,\n128915719,Hpt_MRAScanner_Size0_Class2,utility,Pulse Wave Analyser,,,,0,D,\n128915720,Hpt_MRAScanner_Size0_Class3,utility,Pulse Wave Analyser,,,,0,C,\n128915721,Hpt_MRAScanner_Size0_Class4,utility,Pulse Wave Analyser,,,,0,B,\n128915722,Hpt_MRAScanner_Size0_Class5,utility,Pulse Wave Analyser,,,,0,A,\n128915981,Mamba_Armour_Grade1,standard,Lightweight Alloy,,,Mamba,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128915982,Mamba_Armour_Grade2,standard,Reinforced Alloy,,,Mamba,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128915983,Mamba_Armour_Grade3,standard,Military Grade Composite,,,Mamba,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128915984,Mamba_Armour_Mirrored,standard,Mirrored Surface Composite,,,Mamba,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128915985,Mamba_Armour_Reactive,standard,Reactive Surface Composite,,,Mamba,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128932273,Int_SupercruiseAssist,internal,Supercruise Assist,,,,1,E,\n128935155,Int_DockingComputer_Advanced,internal,Advanced Docking Computer,,,,1,E,\n128935980,Hpt_MultiCannon_Fixed_Medium_Advanced,hardpoint,Advanced Multi-Cannon,Fixed,,,2,E,\n128935981,Hpt_MultiCannon_Fixed_Small_Advanced,hardpoint,Advanced Multi-Cannon,Fixed,,,1,F,\n128935982,Hpt_DumbfireMissileRack_Fixed_Small_Advanced,hardpoint,Advanced Missile Rack,Fixed,Dumbfire,,1,B,\n128935983,Hpt_DumbfireMissileRack_Fixed_Medium_Advanced,hardpoint,Advanced Missile Rack,Fixed,Dumbfire,,2,B,\n128975719,Int_PlanetApproachSuite_Advanced,internal,Advanced Planetary Approach Suite,,,,1,I,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n129001921,Int_MultiDroneControl_Mining_Size3_Class1,internal,Mining Multi Limpet Controller,,,,3,E,\n129001922,Int_MultiDroneControl_Mining_Size3_Class3,internal,Mining Multi Limpet Controller,,,,3,C,\n129001923,Int_MultiDroneControl_Operations_Size3_Class3,internal,Operations Multi Limpet Controller,,,,3,C,\n129001924,Int_MultiDroneControl_Operations_Size3_Class4,internal,Operations Multi Limpet Controller,,,,3,B,\n129001925,Int_MultiDroneControl_Rescue_Size3_Class2,internal,Rescue Multi Limpet Controller,,,,3,D,\n129001926,Int_MultiDroneControl_Rescue_Size3_Class3,internal,Rescue Multi Limpet Controller,,,,3,C,\n129001927,Int_MultiDroneControl_Xeno_Size3_Class3,internal,Xeno Multi Limpet Controller,,,,3,C,\n129001928,Int_MultiDroneControl_Xeno_Size3_Class4,internal,Xeno Multi Limpet Controller,,,,3,B,\n129001929,Int_MultiDroneControl_Universal_Size7_Class3,internal,Universal Multi Limpet Controller,,,,7,C,\n129001930,Int_MultiDroneControl_Universal_Size7_Class5,internal,Universal Multi Limpet Controller,,,,7,A,\n"
  },
  {
    "path": "resources/data/edcd/fdevids/rare_commodity.csv",
    "content": "id,symbol,market_id,category,name\n128666746,EraninPearlWhisky,128001536,Legal Drugs,Eranin Pearl Whisky\n128666747,LavianBrandy,128106744,Legal Drugs,Lavian Brandy\n128667019,HIP10175BushMeat,3223234816,Foods,HIP 10175 Bush Meat\n128667020,AlbinoQuechuaMammoth,3222822912,Foods,Albino Quechua Mammoth Meat\n128667021,UtgaroarMillenialEggs,128037120,Foods,Utgaroar Millennial Eggs\n128667022,WitchhaulKobeBeef,3223358720,Foods,Witchhaul Kobe Beef\n128667023,KarsukiLocusts,3225028096,Foods,Karsuki Locusts\n128667024,GiantIrukamaSnails,3225345792,Foods,Giant Irukama Snails\n128667025,BaltahSineVacuumKrill,128088056,Foods,Baltah'sine Vacuum Krill\n128667026,CetiRabbits,3222560000,Foods,Ceti Rabbits\n128667027,KachiriginLeaches,3221595648,Medicines,Kachirigin Filter Leeches\n128667028,LyraeWeed,3226417152,Legal Drugs,Lyrae Weed\n128667029,OnionHead,128129272,Legal Drugs,Onionhead\n128667030,TarachTorSpice,128041984,Legal Drugs,Tarach Spice\n128667031,Wolf1301Fesh,128084984,Legal Drugs,Wolf Fesh\n128667032,BorasetaniPathogenetics,3229638400,Weapons,Borasetani Pathogenetics\n128667033,HIP118311Swarm,3223177472,Weapons,HIP 118311 Swarm\n128667034,KonggaAle,3226978048,Legal Drugs,Kongga Ale\n128667035,WuthieloKuFroth,3222155776,Legal Drugs,Wuthielo Ku Froth\n128667036,AlacarakmoSkinArt,3231373824,Consumer Items,Alacarakmo Skin Art\n128667037,EleuThermals,3230624768,Consumer Items,Eleu Thermals\n128667038,EshuUmbrellas,3222295552,Consumer Items,Eshu Umbrellas\n128667039,KaretiiCouture,3227333120,Consumer Items,Karetii Couture\n128667040,NjangariSaddles,3222416896,Consumer Items,Njangari Saddles\n128667041,AnyNaCoffee,3229880064,Foods,Any Na Coffee\n128667042,CD75CatCoffee,3228566016,Foods,CD-75 Kitten Brand Coffee\n128667043,GomanYauponCoffee,3224449792,Foods,Goman Yaupon Coffee\n128667044,VolkhabBeeDrones,3227831808,Machinery,Volkhab Bee Drones\n128667045,KinagoInstruments,3227394304,Consumer Items,Kinago Violins\n128667046,NgunaModernAntiques,3221538304,Consumer Items,Nguna Modern Antiques\n128667047,RajukruStoves,3227512320,Consumer Items,Rajukru Multi-Stoves\n128667048,TiolceWaste2PasteUnits,3224141312,Consumer Items,Tiolce Waste2Paste Units\n128667049,ChiEridaniMarinePaste,128128760,Foods,Chi Eridani Marine Paste\n128667050,EsusekuCaviar,3226919680,Foods,Esuseku Caviar\n128667051,LiveHecateSeaWorms,128042496,Foods,Live Hecate Sea Worms\n128667052,HelvetitjPearls,3231094528,Metals,Helvetitj Pearls\n128667053,HIP41181Squid,3227995392,Foods,HIP Proto-Squid\n128667054,CoquimSpongiformVictuals,3223832576,Foods,Coquim Spongiform Victuals\n128667055,AerialEdenApple,128083448,Foods,Eden Apples of Aerial\n128667056,NeritusBerries,3228206080,Foods,Neritus Berries\n128667057,OchoengChillies,3226719232,Foods,Ochoeng Chillies\n128667058,DeuringasTruffles,3229713408,Foods,Deuringas Truffles\n128667059,HR7221Wheat,3226170880,Foods,HR 7221 Wheat\n128667060,JarouaRice,3224698112,Foods,Jaroua Rice\n128667061,BelalansRayLeather,3223537152,Textiles,Belalans Ray Leather\n128667062,DamnaCarapaces,3227751936,Textiles,Damna Carapaces\n128667063,RapaBaoSnakeSkins,3222875648,Textiles,Rapa Bao Snake Skins\n128667064,VanayequiRhinoFur,3227289856,Textiles,Vanayequi Ceratomorpha Fur\n128667065,BastSnakeGin,128086776,Legal Drugs,Bast Snake Gin\n128667066,ThrutisCream,3226522368,Legal Drugs,Thrutis Cream\n128667067,WulpaHyperboreSystems,3221388032,Machinery,Wulpa Hyperbore Systems\n128667068,AganippeRush,128012800,Medicines,Aganippe Rush\n128667069,TerraMaterBloodBores,128051466,Medicines,Terra Mater Blood Bores\n128667070,HolvaDuellingBlades,3222713088,Weapons,Holva Duelling Blades\n128667071,KamorinHistoricWeapons,3221669632,Weapons,Kamorin Historic Weapons\n128667072,GilyaSignatureWeapons,3226857216,Weapons,Gilya Signature Weapons\n128667073,DeltaPhoenicisPalms,128045312,Chemicals,Delta Phoenicis Palms\n128667074,ToxandjiVirocide,3230258688,Chemicals,Toxandji Virocide\n128667075,XiheCompanions,3224133120,Technology,Xihe Biomorphic Companions\n128667076,SanumaMEAT,3230331136,Foods,Sanuma Decorative Meat\n128667077,EthgrezeTeaBuds,3229524992,Foods,Ethgreze Tea Buds\n128667078,CeremonialHeikeTea,3227417856,Foods,Ceremonial Heike Tea\n128667079,TanmarkTranquilTea,128057866,Foods,Tanmark Tranquil Tea\n128667080,AZCancriFormula42,3228400128,Technology,Az Cancri Formula 42\n128667081,KamitraCigars,3225450752,Legal Drugs,Kamitra Cigars\n128667082,RusaniOldSmokey,3229255680,Legal Drugs,Rusani Old Smokey\n128667083,YasoKondiLeaf,3223088640,Legal Drugs,Yaso Kondi Leaf\n128667084,ChateauDeAegaeon,3228416768,Legal Drugs,Chateau De Aegaeon\n128667085,WatersOfShintara,128666762,Medicines,Waters of Shintara\n128667668,OphiuchiExinoArtefacts,3228939264,Consumer Items,Ophiuch Exino Artefacts\n128667669,BakedGreebles,3229378560,Foods,Baked Greebles\n128667670,CetiAepyornisEgg,3222560256,Foods,Aepyornis Egg\n128667671,SaxonWine,3227986432,Legal Drugs,Saxon Wine\n128667672,CentauriMegaGin,3228728832,Legal Drugs,Centauri Mega Gin\n128667673,AnduligaFireWorks,3230243584,Consumer Items,Anduliga Fire Works\n128667674,BankiAmphibiousLeather,3228346112,Textiles,Banki Amphibious Leather\n128667675,CherbonesBloodCrystals,3229594624,Metals,Cherbones Blood Crystals\n128667676,MotronaExperienceJelly,3229750528,Legal Drugs,Motrona Experience Jelly\n128667677,GeawenDanceDust,3230954752,Legal Drugs,Geawen Dance Dust\n128667678,GerasianGueuzeBeer,3228047360,Legal Drugs,Gerasian Gueuze Beer\n128667679,HaidneBlackBrew,3226557696,Foods,Haiden Black Brew\n128667680,HavasupaiDreamCatcher,3221438976,Consumer Items,Havasupai Dream Catcher\n128667681,BurnhamBileDistillate,3230224384,Legal Drugs,Burnham Bile Distillate\n128667682,HIPOrganophosphates,3227036160,Chemicals,HIP Organophosphates\n128667683,JaradharrePuzzlebox,3230754816,Consumer Items,Jaradharre Puzzle Box\n128667684,KorroKungPellets,3228726272,Chemicals,Korro Kung Pellets\n128667685,LFTVoidExtractCoffee,3229028864,Foods,Void Extract Coffee\n128667686,HonestyPills,3229561344,Medicines,Honesty Pills\n128667687,NonEuclidianExotanks,3224135424,Machinery,Non Euclidian Exotanks\n128667688,LTTHyperSweet,3224166400,Foods,LTT Hyper Sweet\n128667689,MechucosHighTea,3228398848,Foods,Mechucos High Tea\n128667690,MedbStarlube,3228762368,Chemicals,Medb Starlube\n128667691,MokojingBeastFeast,3229612800,Foods,Mokojing Beast Feast\n128667692,MukusubiiChitinOs,3221719296,Foods,Mukusubii Chitin-os\n128667693,MulachiGiantFungus,3228892672,Foods,Mulachi Giant Fungus\n128667694,NgadandariFireOpals,3226127872,Metals,Ngadandari Fire Opals\n128667695,TiegfriesSynthSilk,3227726848,Textiles,Tiegfries Synth Silk\n128667696,UzumokuLowGWings,3226474496,Consumer Items,Uzumoku Low-G Wings\n128667697,VHerculisBodyRub,3228959232,Medicines,V Herculis Body Rub\n128667698,WheemeteWheatCakes,3225032704,Foods,Wheemete Wheat Cakes\n128667699,VegaSlimWeed,128149240,Medicines,Vega Slimweed\n128667700,AltairianSkin,128151032,Consumer Items,Altairian Skin\n128667701,PavonisEarGrubs,128117240,Legal Drugs,Pavonis Ear Grubs\n128667702,JotunMookah,128078840,Textiles,Jotun Mookah\n128667703,GiantVerrix,128121336,Machinery,Giant Verrix\n128667704,IndiBourbon,128118520,Legal Drugs,Indi Bourbon\n128667705,AroucaConventualSweets,128098040,Foods,Arouca Conventual Sweets\n128667706,TauriChimes,128134648,Consumer Items,Tauri Chimes\n128667707,ZeesszeAntGlue,128125432,Consumer Items,Zeessze Ant Grub Glue\n128667708,PantaaPrayerSticks,3228824064,Medicines,Pantaa Prayer Sticks\n128667709,FujinTea,128134392,Foods,Fujin Tea\n128667710,ChameleonCloth,3223418880,Textiles,Chameleon Cloth\n128667711,OrrerianViciousBrew,128166392,Foods,Orrerian Vicious Brew\n128667712,UszaianTreeGrub,128164856,Foods,Uszaian Tree Grub\n128667713,MomusBogSpaniel,128075256,Consumer Items,Momus Bog Spaniel\n128667714,DisoMaCorn,128161016,Foods,Diso Ma Corn\n128667715,LeestianEvilJuice,128639992,Legal Drugs,Leestian Evil Juice\n128667716,BlueMilk,128639992,Foods,Azure Milk\n128667717,AlienEggs,128164088,Consumer Items,Leathery Eggs\n128667718,AlyaBodilySoap,3221638400,Medicines,Alya Body Soap\n128667719,VidavantianLace,3231082240,Consumer Items,Vidavantian Lace\n128667760,TransgenicOnionHead,128057866,Legal Drugs,Lucan Onionhead\n128668017,JaquesQuinentianStill,128667761,Consumer Items,Jaques Quinentian Still\n128668018,SoontillRelics,3225348096,Consumer Items,Soontill Relics\n128671119,Advert1,3227172352,Consumer Items,Ultra-Compact Processor Prototypes\n128672121,TheHuttonMug,3228728832,Consumer Items,The Hutton Mug\n128672122,SothisCrystallineGold,128668557,Metals,Sothis Crystalline Gold\n128672316,MasterChefs,128123640,Slavery,Master Chefs\n128672431,PersonalGifts,3223105792,Salvage,Personal Gifts\n128672432,CrystallineSpheres,128059402,Salvage,Crystalline Spheres\n128672812,OnionHeadA,3226977024,Legal Drugs,Onionhead Alpha Strain\n128673069,OnionHeadB,3223027200,Legal Drugs,Onionhead Beta Strain\n128682050,GalacticTravelGuide,128673074,Salvage,Galactic Travel Guide\n128727921,AnimalEffigies,3228463360,Legal Drugs,Crom Silver Fesh\n128732551,ShansCharisOrchid,128107768,Consumer Items,Shan's Charis Orchid\n128748428,BuckyballBeerMats,128745551,Consumer Items,Buckyball Beer Mats\n128793113,HarmaSilverSeaRum,3221575424,Legal Drugs,Harma Silver Sea Rum\n128793114,PlatinumAloy,3223779840,Metals,Platinum Alloy\n128913661,Nanomedicines,3226651904,Medicines,Nanomedicines\n128922524,Duradrives,3223453184,Consumer Items,Duradrives\n128958679,ApaVietii,128958681,Legal Drugs,Apa Vietii\n129002574,ClassifiedExperimentalEquipment,128986325,Technology,Classified Experimental Equipment\n"
  },
  {
    "path": "resources/data/edcd/fdevids/rings.csv",
    "content": "id,name\neRingClass_Icy,Icy\neRingClass_Metalic,Metallic\neRingClass_MetalRich,Metal Rich\neRingClass_Rocky,Rocky\n"
  },
  {
    "path": "resources/data/edcd/fdevids/security.csv",
    "content": "id,name\n$GAlAXY_MAP_INFO_state_anarchy;,Anarchy\n$GALAXY_MAP_INFO_state_lawless;,Lawless\n$SYSTEM_SECURITY_high;,High\n$SYSTEM_SECURITY_low;,Low\n$SYSTEM_SECURITY_medium;,Medium\n"
  },
  {
    "path": "resources/data/edcd/fdevids/shipyard.csv",
    "content": "id,symbol,name,entitlement\n128049249,SideWinder,Sidewinder,\n128049255,Eagle,Eagle,\n128049261,Hauler,Hauler,\n128049267,Adder,Adder,\n128049273,Viper,Viper MkIII,\n128049279,CobraMkIII,Cobra MkIII,\n128049285,Type6,Type-6 Transporter,\n128049291,Dolphin,Dolphin,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128049297,Type7,Type-7 Transporter,\n128049303,Asp,Asp Explorer,\n128049309,Vulture,Vulture,\n128049315,Empire_Trader,Imperial Clipper,\n128049321,Federation_Dropship,Federal Dropship,\n128049327,Orca,Orca,\n128049333,Type9,Type-9 Heavy,\n128049339,Python,Python,\n128049345,BelugaLiner,Beluga Liner,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128049351,FerDeLance,Fer-de-Lance,\n128049363,Anaconda,Anaconda,\n128049369,Federation_Corvette,Federal Corvette,\n128049375,Cutter,Imperial Cutter,\n128671217,DiamondBack,Diamondback Scout,\n128671223,Empire_Courier,Imperial Courier,\n128671831,DiamondBackXL,Diamondback Explorer,\n128672138,Empire_Eagle,Imperial Eagle,\n128672145,Federation_Dropship_MkII,Federal Assault Ship,\n128672152,Federation_Gunship,Federal Gunship,\n128672255,Viper_MkIV,Viper MkIV,\n128672262,CobraMkIV,Cobra MkIV,ELITE_HORIZONS_V_COBRA_MK_IV_1000\n128672269,Independant_Trader,Keelback,\n128672276,Asp_Scout,Asp Scout,\n128785619,Type9_Military,Type-10 Defender,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128816567,Krait_MkII,Krait MkII,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128816574,TypeX,Alliance Chieftain,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128816581,TypeX_2,Alliance Crusader,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128816588,TypeX_3,Alliance Challenger,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128839281,Krait_Light,Krait Phantom,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n128915979,Mamba,Mamba,ELITE_HORIZONS_V_PLANETARY_LANDINGS\n"
  },
  {
    "path": "resources/data/edcd/fdevids/sku.csv",
    "content": "sku,requirement\nELITE_HORIZONS_V_CAUSTIC_MEDIUM,unlocked via Human Tech Broker\nELITE_HORIZONS_V_COBRA_MK_IV_1000,purchase base game and horizons before 5th Feb 2016 (PC) or 30th July 2016 (XBOX)\nELITE_HORIZONS_V_CORROSIONCARGO_SIZE4,unlocked via Human Tech Broker\nELITE_HORIZONS_V_FLECHETTE_FIXED_MEDIUM,unlocked via Human Tech Broker\nELITE_HORIZONS_V_FLECHETTE_TURRET_MEDIUM,unlocked via Human Tech Broker\nELITE_HORIZONS_V_GUARDIAN_FSDBOOSTER,unlocked via Guardian Tech Broker\nELITE_HORIZONS_V_GUARDIAN_GAUSS_FIXED_MEDIUM,unlocked via Guardian Tech Broker\nELITE_HORIZONS_V_GUARDIAN_GAUSS_FIXED_SMALL,unlocked via Guardian Tech Broker\nELITE_HORIZONS_V_GUARDIAN_HULLREINFORCEMENT,unlocked via Guardian Tech Broker\nELITE_HORIZONS_V_GUARDIAN_MODULEREINFORCEMENT,unlocked via Guardian Tech Broker\nELITE_HORIZONS_V_GUARDIAN_PLASMA_FIXED_LARGE,unlocked via Guardian Tech Broker\nELITE_HORIZONS_V_GUARDIAN_PLASMA_FIXED_MEDIUM,unlocked via Guardian Tech Broker\nELITE_HORIZONS_V_GUARDIAN_PLASMA_FIXED_SMALL,unlocked via Guardian Tech Broker\nELITE_HORIZONS_V_GUARDIAN_PLASMA_TURRET_LARGE,unlocked via Guardian Tech Broker\nELITE_HORIZONS_V_GUARDIAN_PLASMA_TURRET_MEDIUM,unlocked via Guardian Tech Broker\nELITE_HORIZONS_V_GUARDIAN_PLASMA_TURRET_SMALL,unlocked via Guardian Tech Broker\nELITE_HORIZONS_V_GUARDIAN_POWERDISTRIBUTOR,unlocked via Guardian Tech Broker\nELITE_HORIZONS_V_GUARDIAN_POWERPLANT,unlocked via Guardian Tech Broker\nELITE_HORIZONS_V_GUARDIAN_SHARD_FIXED_LARGE,unlocked via Guardian Tech Broker\nELITE_HORIZONS_V_GUARDIAN_SHARD_FIXED_MEDIUM,unlocked via Guardian Tech Broker\nELITE_HORIZONS_V_GUARDIAN_SHARD_FIXED_SMALL,unlocked via Guardian Tech Broker\nELITE_HORIZONS_V_GUARDIAN_SHARD_TURRET_LARGE,unlocked via Guardian Tech Broker\nELITE_HORIZONS_V_GUARDIAN_SHARD_TURRET_MEDIUM,unlocked via Guardian Tech Broker\nELITE_HORIZONS_V_GUARDIAN_SHARD_TURRET_SMALL,unlocked via Guardian Tech Broker\nELITE_HORIZONS_V_GUARDIAN_SHIELDREINFORCEMENT,unlocked via Guardian Tech Broker\nELITE_HORIZONS_V_METAHULL,unlocked via Human Tech Broker\nELITE_HORIZONS_V_PLANETARY_LANDINGS,purchase Horizons or Horizons Season Pass or Lifetime Expansion Pass\nELITE_HORIZONS_V_PLASMASHOCK_FIXED_LARGE,unlocked via Human Tech Broker\nELITE_HORIZONS_V_PLASMASHOCK_FIXED_MEDIUM,unlocked via Human Tech Broker\nELITE_HORIZONS_V_PLASMASHOCK_FIXED_SMALL,unlocked via Human Tech Broker\nELITE_HORIZONS_V_PLASMASHOCK_GIMBAL_LARGE,unlocked via Human Tech Broker\nELITE_HORIZONS_V_PLASMASHOCK_GIMBAL_MEDIUM,unlocked via Human Tech Broker\nELITE_HORIZONS_V_PLASMASHOCK_GIMBAL_SMALL,unlocked via Human Tech Broker\nELITE_HORIZONS_V_PLASMASHOCK_TURRET_LARGE,unlocked via Human Tech Broker\nELITE_HORIZONS_V_PLASMASHOCK_TURRET_MEDIUM,unlocked via Human Tech Broker\nELITE_HORIZONS_V_PLASMASHOCK_TURRET_SMALL,unlocked via Human Tech Broker\nELITE_SPECIFIC_V_POWER_100000,unlocked via allegiance to Aisling Duval power\nELITE_SPECIFIC_V_POWER_100010,unlocked via allegiance to Edmund Mahon power\nELITE_SPECIFIC_V_POWER_100020,unlocked via allegiance to Arissa Lavigny-Duval power\nELITE_SPECIFIC_V_POWER_100040,unlocked via allegiance to Felicia Winters power\nELITE_SPECIFIC_V_POWER_100050,unlocked via allegiance to Denton Patreus power\nELITE_SPECIFIC_V_POWER_100060,unlocked via allegiance to Zachary Hudson power\nELITE_SPECIFIC_V_POWER_100070,unlocked via allegiance to Li Yong-Rui power\nELITE_SPECIFIC_V_POWER_100080,unlocked via allegiance to Zemina Torval power\nELITE_SPECIFIC_V_POWER_100090,unlocked via allegiance to Pranav Antal power\nELITE_SPECIFIC_V_POWER_100100,unlocked via allegiance to Archon Delaine power\nELITE_SPECIFIC_V_POWER_100120,unlocked via allegiance to Yuri Grom power\n"
  },
  {
    "path": "resources/data/edcd/fdevids/superpower.csv",
    "content": "id,name\n$faction_Alliance;,Alliance\n$faction_Empire;,Empire\n$faction_Federation;,Federation\n$faction_Independent;,Independent\n$faction_none;,None\n$faction_Pirate;,Pirate\n"
  },
  {
    "path": "resources/data/edcd/fdevids/terraformingstate.csv",
    "content": "id,name\nTerraformable,Terraformable\nTerraformed,Terraformed\nTerraforming,Terraforming\n"
  },
  {
    "path": "resources/data/fandom/README.md",
    "content": "# README\n\nThis includes material from the Elite Dangerous wiki at Fandom and is licensed under the Creative Commons Attribution-Share Alike License.\n\n* https://elite-dangerous.fandom.com\n* https://www.fandom.com/licensing\n\nThe purpose of exporting this data is to be able to provide additional information inside ICARUS Terminal, such as context sensitive information about modules, equipment, items, factions, etc and to provide a glossary/codex.\n\nThis will be done with appropriate licensing information and credits / backlinks.\n\n## Exporting Data via API\n\nThis can be exported using the API via REST queries:\n\nhttps://elite-dangerous.fandom.com/api.php?action=query&list=allpages&aplimit=500&export=true&format=json\n\n## Data Dump via API\n\nThe Wiki Team have writen a python2 script to help with exporting data in bulk:\n\nhttps://github.com/WikiTeam/wikiteam/wiki/Tutorial\n\nTo use this script you will need to have Python v2 installed and install dependancies:\n\n    curl https://bootstrap.pypa.io/pip/2.7/get-pip.py --output get-pip.py\n    sudo python2 get-pip.py\n    pip2 install kitchen requests mwclient lxml\n\nNote: Some of the documentation on the offical site is wrong, this is an example of the correct way to use this script:\n\n    python2 dumpgenerator.py --api=https://elite-dangerous.fandom.com/api.php --xml --curonly --images --resume --delay=1\n\nThis will generate an XML dump of the site.\n\nThe text on this wiki is released under Creative Commons Attribution-Share Alike License."
  },
  {
    "path": "resources/data/fandom/dumpgenerator.py",
    "content": "#!/usr/bin/env python2\n# -*- coding: utf-8 -*-\n\n# dumpgenerator.py A generator of dumps for wikis\n# Copyright (C) 2011-2018 WikiTeam developers\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program.  If not, see <http://www.gnu.org/licenses/>.\n\n# To learn more, read the documentation:\n#     https://github.com/WikiTeam/wikiteam/wiki\n\ntry:\n    from kitchen.text.converters import getwriter, to_unicode\nexcept ImportError:\n    print \"Please install the kitchen module.\"\nimport cookielib\nimport cPickle\nimport datetime\nimport sys\ntry:\n    import argparse\nexcept ImportError:\n    print \"Please install the argparse module.\"\n    sys.exit(1)\nimport json\ntry:\n    from hashlib import md5\nexcept ImportError:             # Python 2.4 compatibility\n    from md5 import new as md5\nimport os\nimport re\nimport subprocess\ntry:\n    import requests\nexcept ImportError:\n    print \"Please install or update the Requests module.\"\n    sys.exit(1)\ntry:\n    import mwclient\nexcept ImportError:\n    print \"Please install the mwclient module if you want to use --xmlrevisions.\"\ntry:\n    from lxml import etree\n    from lxml.builder import E\nexcept ImportError:\n    print \"Please install the lxml module if you want to use --xmlrevisions.\"\nimport time\nimport urllib\ntry:\n    from urlparse import urlparse, urlunparse\nexcept ImportError:\n    from urllib.parse import urlparse, urlunparse\nUTF8Writer = getwriter('utf8')\nsys.stdout = UTF8Writer(sys.stdout)\n\n__VERSION__ = '0.4.0-alpha'  # major, minor, micro: semver.org\n\nclass PageMissingError(Exception):\n    def __init__(self, title, xml):\n        self.title = title\n        self.xml = xml\n    def __str__(self):\n        return \"page '%s' not found\" % self.title\n\nclass ExportAbortedError(Exception):\n    def __init__(self, index):\n        self.index = index\n    def __str__(self):\n        return \"Export from '%s' did not return anything.\" % self.index\n\ndef getVersion():\n    return(__VERSION__)\n\n\ndef truncateFilename(other={}, filename=''):\n    \"\"\" Truncate filenames when downloading images with large filenames \"\"\"\n    return filename[:other['filenamelimit']] + \\\n        md5(filename.encode('utf-8')).hexdigest() + '.' + filename.split('.')[-1]\n\n\ndef delay(config={}, session=None):\n    \"\"\" Add a delay if configured for that \"\"\"\n    if config['delay'] > 0:\n        print 'Sleeping... %d seconds...' % (config['delay'])\n        time.sleep(config['delay'])\n\n\ndef cleanHTML(raw=''):\n    \"\"\" Extract only the real wiki content and remove rubbish \"\"\"\n    \"\"\" This function is ONLY used to retrieve page titles and file names when no API is available \"\"\"\n    \"\"\" DO NOT use this function to extract page content \"\"\"\n    # different \"tags\" used by different MediaWiki versions to mark where\n    # starts and ends content\n    if re.search('<!-- bodytext -->', raw):\n        raw = raw.split('<!-- bodytext -->')[1].split('<!-- /bodytext -->')[0]\n    elif re.search('<!-- start content -->', raw):\n        raw = raw.split(\n            '<!-- start content -->')[1].split('<!-- end content -->')[0]\n    elif re.search('<!-- Begin Content Area -->', raw):\n        raw = raw.split(\n            '<!-- Begin Content Area -->')[1].split('<!-- End Content Area -->')[0]\n    elif re.search('<!-- content -->', raw):\n        raw = raw.split('<!-- content -->')[1].split('<!-- mw_content -->')[0]\n    elif re.search('<article id=\"WikiaMainContent\" class=\"WikiaMainContent\">', raw):\n        raw = raw.split('<article id=\"WikiaMainContent\" class=\"WikiaMainContent\">')[\n            1].split('</article>')[0]\n    elif re.search('<body class=', raw):\n        raw = raw.split('<body class=')[1].split(\n            '<div class=\"printfooter\">')[0]\n    else:\n        print raw[:250]\n        print 'This wiki doesn\\'t use marks to split content'\n        sys.exit()\n    return raw\n\n\ndef handleStatusCode(response):\n    statuscode = response.status_code\n    if statuscode >= 200 and statuscode < 300:\n        return\n\n    print \"HTTP Error %d.\" % statuscode\n    if statuscode >= 300 and statuscode < 400:\n        print \"Redirect should happen automatically: please report this as a bug.\"\n        print response.url\n\n    elif statuscode == 400:\n        print \"Bad Request: The wiki may be malfunctioning.\"\n        print \"Please try again later.\"\n        print response.url\n        sys.exit(1)\n\n    elif statuscode == 401 or statuscode == 403:\n        print \"Authentication required.\"\n        print \"Please use --user and --pass.\"\n        print response.url\n\n    elif statuscode == 404:\n        print \"Not found. Is Special:Export enabled for this wiki?\"\n        print response.url\n        sys.exit(1)\n\n    elif statuscode == 429 or (statuscode >= 500 and statuscode < 600):\n        print \"Server error, max retries exceeded.\"\n        print \"Please resume the dump later.\"\n        print response.url\n        sys.exit(1)\n\n\ndef getNamespacesScraper(config={}, session=None):\n    \"\"\" Hackishly gets the list of namespaces names and ids from the dropdown in the HTML of Special:AllPages \"\"\"\n    \"\"\" Function called if no API is available \"\"\"\n    namespaces = config['namespaces']\n    namespacenames = {0: ''}  # main is 0, no prefix\n    if namespaces:\n        r = session.post(\n            url=config['index'], params={'title': 'Special:Allpages'}, timeout=30)\n        raw = r.text\n        delay(config=config, session=session)\n\n        # [^>]*? to include selected=\"selected\"\n        m = re.compile(\n            r'<option [^>]*?value=\"(?P<namespaceid>\\d+)\"[^>]*?>(?P<namespacename>[^<]+)</option>').finditer(raw)\n        if 'all' in namespaces:\n            namespaces = []\n            for i in m:\n                namespaces.append(int(i.group(\"namespaceid\")))\n                namespacenames[int(i.group(\"namespaceid\"))] = i.group(\n                    \"namespacename\")\n        else:\n            # check if those namespaces really exist in this wiki\n            namespaces2 = []\n            for i in m:\n                if int(i.group(\"namespaceid\")) in namespaces:\n                    namespaces2.append(int(i.group(\"namespaceid\")))\n                    namespacenames[int(i.group(\"namespaceid\"))] = i.group(\n                        \"namespacename\")\n            namespaces = namespaces2\n    else:\n        namespaces = [0]\n\n    namespaces = list(set(namespaces))  # uniques\n    print '%d namespaces found' % (len(namespaces))\n    return namespaces, namespacenames\n\n\ndef getNamespacesAPI(config={}, session=None):\n    \"\"\" Uses the API to get the list of namespaces names and ids \"\"\"\n    namespaces = config['namespaces']\n    namespacenames = {0: ''}  # main is 0, no prefix\n    if namespaces:\n        r = session.get(\n            url=config['api'],\n            params={\n                'action': 'query',\n                'meta': 'siteinfo',\n                'siprop': 'namespaces',\n                'format': 'json'},\n            timeout=30\n        )\n        result = getJSON(r)\n        delay(config=config, session=session)\n        try:\n            nsquery = result['query']['namespaces']\n        except KeyError:\n            print \"Error: could not get namespaces from the API request.\"\n            print \"HTTP %d\" % r.status_code\n            print r.text\n            return None\n\n        if 'all' in namespaces:\n            namespaces = []\n            for i in nsquery.keys():\n                if int(i) < 0:  # -1: Special, -2: Media, excluding\n                    continue\n                namespaces.append(int(i))\n                namespacenames[int(i)] = nsquery[i]['*']\n        else:\n            # check if those namespaces really exist in this wiki\n            namespaces2 = []\n            for i in nsquery.keys():\n                bi = i\n                i = int(i)\n                if i < 0:  # -1: Special, -2: Media, excluding\n                    continue\n                if i in namespaces:\n                    namespaces2.append(i)\n                    namespacenames[i] = nsquery[bi]['*']\n            namespaces = namespaces2\n    else:\n        namespaces = [0]\n\n    namespaces = list(set(namespaces))  # uniques\n    print '%d namespaces found' % (len(namespaces))\n    return namespaces, namespacenames\n\n\ndef getPageTitlesAPI(config={}, session=None):\n    \"\"\" Uses the API to get the list of page titles \"\"\"\n    titles = []\n    namespaces, namespacenames = getNamespacesAPI(\n        config=config, session=session)\n    for namespace in namespaces:\n        if namespace in config['exnamespaces']:\n            print '    Skipping namespace = %d' % (namespace)\n            continue\n\n        c = 0\n        print '    Retrieving titles in the namespace %d' % (namespace)\n        apiurl = urlparse(config['api'])\n        site = mwclient.Site(apiurl.netloc, apiurl.path.replace(\"api.php\", \"\"), scheme=apiurl.scheme)\n        for page in site.allpages(namespace=namespace):\n            title = page.name\n            titles.append(title)\n            c += 1\n            yield title\n\n        if len(titles) != len(set(titles)):\n            print 'Probably a loop, switching to next namespace'\n            titles = list(set(titles))\n\n            delay(config=config, session=session)\n        print '    %d titles retrieved in the namespace %d' % (c, namespace)\n\ndef getPageTitlesScraper(config={}, session=None):\n    \"\"\" Scrape the list of page titles from Special:Allpages \"\"\"\n    titles = []\n    namespaces, namespacenames = getNamespacesScraper(\n        config=config, session=session)\n    for namespace in namespaces:\n        print '    Retrieving titles in the namespace', namespace\n        url = '%s?title=Special:Allpages&namespace=%s' % (\n            config['index'], namespace)\n        r = session.get(url=url, timeout=30)\n        raw = r.text\n        raw = cleanHTML(raw)\n\n        r_title = r'title=\"(?P<title>[^>]+)\">'\n        r_suballpages = ''\n        r_suballpages1 = r'&amp;from=(?P<from>[^>]+)&amp;to=(?P<to>[^>]+)\">'\n        r_suballpages2 = r'Special:Allpages/(?P<from>[^>]+)\">'\n        r_suballpages3 = r'&amp;from=(?P<from>[^>]+)\" title=\"[^>]+\">'\n        if re.search(r_suballpages1, raw):\n            r_suballpages = r_suballpages1\n        elif re.search(r_suballpages2, raw):\n            r_suballpages = r_suballpages2\n        elif re.search(r_suballpages3, raw):\n            r_suballpages = r_suballpages3\n        else:\n            pass  # perhaps no subpages\n\n        # Should be enought subpages on Special:Allpages\n        deep = 50\n        c = 0\n        oldfr = ''\n        checked_suballpages = []\n        rawacum = raw\n        while r_suballpages and re.search(r_suballpages, raw) and c < deep:\n            # load sub-Allpages\n            m = re.compile(r_suballpages).finditer(raw)\n            for i in m:\n                fr = i.group('from')\n                currfr = fr\n\n                if oldfr == currfr:\n                    # We are looping, exit the loop\n                    pass\n\n                if r_suballpages == r_suballpages1:\n                    to = i.group('to')\n                    name = '%s-%s' % (fr, to)\n                    url = '%s?title=Special:Allpages&namespace=%s&from=%s&to=%s' % (\n                        config['index'], namespace, fr, to)  # do not put urllib.quote in fr or to\n                # fix, esta regexp no carga bien todas? o falla el r_title en\n                # este tipo de subpag? (wikiindex)\n                elif r_suballpages == r_suballpages2:\n                    # clean &amp;namespace=\\d, sometimes happens\n                    fr = fr.split('&amp;namespace=')[0]\n                    name = fr\n                    url = '%s?title=Special:Allpages/%s&namespace=%s' % (\n                        config['index'], name, namespace)\n                elif r_suballpages == r_suballpages3:\n                    fr = fr.split('&amp;namespace=')[0]\n                    name = fr\n                    url = '%s?title=Special:Allpages&from=%s&namespace=%s' % (\n                        config['index'], name, namespace)\n\n\n\n                if name not in checked_suballpages:\n                    # to avoid reload dupe subpages links\n                    checked_suballpages.append(name)\n                    delay(config=config, session=session)\n                    r = session.get(url=url, timeout=10)\n                    #print 'Fetching URL: ', url\n                    raw = r.text\n                    raw = cleanHTML(raw)\n                    rawacum += raw  # merge it after removed junk\n                    print '    Reading', name, len(raw), 'bytes', \\\n                        len(re.findall(r_suballpages, raw)), 'subpages', \\\n                        len(re.findall(r_title, raw)), 'pages'\n\n                delay(config=config, session=session)\n            oldfr = currfr\n            c += 1\n\n        c = 0\n        m = re.compile(r_title).finditer(rawacum)\n        for i in m:\n            t = undoHTMLEntities(text=i.group('title'))\n            if not t.startswith('Special:'):\n                if t not in titles:\n                    titles.append(t)\n                    c += 1\n        print '    %d titles retrieved in the namespace %d' % (c, namespace)\n    return titles\n\n\ndef getPageTitles(config={}, session=None):\n    \"\"\" Get list of page titles \"\"\"\n    # http://en.wikipedia.org/wiki/Special:AllPages\n    # http://archiveteam.org/index.php?title=Special:AllPages\n    # http://www.wikanda.es/wiki/Especial:Todas\n    print 'Loading page titles from namespaces = %s' % (config['namespaces'] and ','.join([str(i) for i in config['namespaces']]) or 'None')\n    print 'Excluding titles from namespaces = %s' % (config['exnamespaces'] and ','.join([str(i) for i in config['exnamespaces']]) or 'None')\n\n    titles = []\n    if 'api' in config and config['api']:\n        try:\n            titles = getPageTitlesAPI(config=config, session=session)\n        except:\n            print \"Error: could not get page titles from the API\"\n            titles = getPageTitlesScraper(config=config, session=session)\n    elif 'index' in config and config['index']:\n        titles = getPageTitlesScraper(config=config, session=session)\n\n    titlesfilename = '%s-%s-titles.txt' % (\n        domain2prefix(config=config), config['date'])\n    titlesfile = open('%s/%s' % (config['path'], titlesfilename), 'wt')\n    c = 0\n    for title in titles:\n        titlesfile.write(title.encode('utf-8') + \"\\n\")\n        c += 1\n    # TODO: Sort to remove dupes? In CZ, Widget:AddThis appears two times:\n    # main namespace and widget namespace.\n    # We can use sort -u in UNIX, but is it worth it?\n    titlesfile.write(u'--END--\\n')\n    titlesfile.close()\n    print 'Titles saved at...', titlesfilename\n\n    print '%d page titles loaded' % (c)\n    return titlesfilename\n\ndef getImageNames(config={}, session=None):\n    \"\"\" Get list of image names \"\"\"\n\n    print 'Retrieving image filenames'\n    images = []\n    if 'api' in config and config['api']:\n        images = getImageNamesAPI(config=config, session=session)\n    elif 'index' in config and config['index']:\n        images = getImageNamesScraper(config=config, session=session)\n\n    # images = list(set(images)) # it is a list of lists\n    images.sort()\n\n    print '%d image names loaded' % (len(images))\n    return images\n\n\ndef getXMLHeader(config={}, session=None):\n    \"\"\" Retrieve a random page to extract XML headers (namespace info, etc) \"\"\"\n    # get the header of a random page, to attach it in the complete XML backup\n    # similar to: <mediawiki xmlns=\"http://www.mediawiki.org/xml/export-0.3/\"\n    # xmlns:x....\n    randomtitle = 'Main_Page'  # previously AMF5LKE43MNFGHKSDMRTJ\n    print config['api']\n    xml = ''\n    if config['xmlrevisions'] and config['api'] and config['api'].endswith(\"api.php\"):\n        try:\n            print 'Getting the XML header from the API'\n            # Export and exportnowrap exist from MediaWiki 1.15, allpages from 1.18\n            r = requests.get(config['api'] + '?action=query&export=1&exportnowrap=1&list=allpages&aplimit=1', timeout=10)\n            xml = r.text\n            # Otherwise try without exportnowrap, e.g. Wikia returns a blank page on 1.19\n            if not re.match(r\"\\s*<mediawiki\", xml):\n                r = requests.get(config['api'] + '?action=query&export=1&list=allpages&aplimit=1&format=json', timeout=10)\n                try:\n                    xml = r.json()['query']['export']['*']\n                except KeyError:\n                    pass\n            if not re.match(r\"\\s*<mediawiki\", xml):\n                # Do without a generator, use our usual trick of a random page title\n                r = requests.get(config['api'] + '?action=query&export=1&exportnowrap=1&titles=' + randomtitle, timeout=10)\n                xml = r.text\n            # Again try without exportnowrap\n            if not re.match(r\"\\s*<mediawiki\", xml):\n                r = requests.get(config['api'] + '?action=query&export=1&format=json&titles=' + randomtitle, timeout=10)\n                try:\n                    xml = r.json()['query']['export']['*']\n                except KeyError:\n                    pass\n        except requests.exceptions.RetryError:\n            pass\n\n    else:\n        try:\n            xml = \"\".join([x for x in getXMLPage(config=config, title=randomtitle, verbose=False, session=session)])\n        except PageMissingError as pme:\n            # The <page> does not exist. Not a problem, if we get the <siteinfo>.\n            xml = pme.xml\n        # Issue 26: Account for missing \"Special\" namespace.\n        # Hope the canonical special name has not been removed.\n        # http://albens73.fr/wiki/api.php?action=query&meta=siteinfo&siprop=namespacealiases\n        except ExportAbortedError:\n            try:\n                if config['api']:\n                    print \"Trying the local name for the Special namespace instead\"\n                    r = session.get(\n                    url=config['api'],\n                    params={\n                        'action': 'query',\n                        'meta': 'siteinfo',\n                        'siprop': 'namespaces',\n                        'format': 'json'},\n                    timeout=120\n                    )\n                    config['export'] = json.loads(r.text)['query']['namespaces']['-1']['*'] \\\n                        + ':Export'\n                    xml = \"\".join([x for x in getXMLPage(config=config, title=randomtitle, verbose=False, session=session)])\n            except PageMissingError as pme:\n                xml = pme.xml\n            except ExportAbortedError:\n                pass\n\n    header = xml.split('</mediawiki>')[0]\n    if not re.match(r\"\\s*<mediawiki\", xml):\n        if config['xmlrevisions']:\n            # Try again the old way\n            print 'Export test via the API failed. Wiki too old? Trying without xmlrevisions.'\n            config['xmlrevisions'] = False\n            header, config = getXMLHeader(config=config, session=session)\n        else:\n            print 'XML export on this wiki is broken, quitting.'\n            logerror(u'XML export on this wiki is broken, quitting.')\n            sys.exit()\n    return header, config\n\n\ndef getXMLFileDesc(config={}, title='', session=None):\n    \"\"\" Get XML for image description page \"\"\"\n    config['curonly'] = 1  # tricky to get only the most recent desc\n    return(\"\".join([x for x in getXMLPage( config=config, title=title, verbose=False, session=session)]))\n\n\ndef getUserAgent():\n    \"\"\" Return a cool user-agent to hide Python user-agent \"\"\"\n    useragents = [\n        # firefox\n        #'Mozilla/5.0 (X11; Linux x86_64; rv:72.0) Gecko/20100101 Firefox/72.0',\n        #'Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Firefox/68.0',\n        'Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0'\n    ]\n    return useragents[0]\n\n\ndef logerror(config={}, text=''):\n    \"\"\" Log error in file \"\"\"\n    if text:\n        with open('%s/errors.log' % (config['path']), 'a') as outfile:\n            output = u'%s: %s\\n' % (\n                datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S'), text)\n            outfile.write(output.encode('utf-8'))\n\n\ndef getXMLPageCore(headers={}, params={}, config={}, session=None):\n    \"\"\"  \"\"\"\n    # returns a XML containing params['limit'] revisions (or current only), ending in </mediawiki>\n    # if retrieving params['limit'] revisions fails, returns a current only version\n    # if all fail, returns the empty string\n    xml = ''\n    c = 0\n    maxseconds = 100  # max seconds to wait in a single sleeping\n    maxretries = config['retries']  # x retries and skip\n    increment = 20  # increment every retry\n\n    while not re.search(r'</mediawiki>', xml):\n        if c > 0 and c < maxretries:\n            wait = increment * c < maxseconds and increment * \\\n                c or maxseconds  # incremental until maxseconds\n            print '    In attempt %d, XML for \"%s\" is wrong. Waiting %d seconds and reloading...' %(c, params['pages'], wait)\n            time.sleep(wait)\n            # reducing server load requesting smallest chunks (if curonly then\n            # limit = 1 from mother function)\n            if params['limit'] > 1:\n                params['limit'] = params['limit'] / 2  # half\n        if c >= maxretries:\n            print '    We have retried %d times' % (c)\n            print '    MediaWiki error for \"%s\", network error or whatever...' % (params['pages'])\n            if config['failfast']:\n                print \"Exit, it will be for another time\"\n                sys.exit()\n            # If it's not already what we tried: our last chance, preserve only the last revision...\n            # config['curonly'] means that the whole dump is configured to save only the last,\n            # params['curonly'] should mean that we've already tried this\n            # fallback, because it's set by the following if and passed to\n            # getXMLPageCore\n            if not config['curonly'] and not 'curonly' in params:\n                print '    Trying to save only the last revision for this page...'\n                params['curonly'] = 1\n                logerror(\n                    config=config,\n                    text=u'Error while retrieving the full history of \"%s\". Trying to save only the last revision for this page' %\n                    (params['pages'])\n                )\n                return getXMLPageCore(\n                    headers=headers,\n                    params=params,\n                    config=config,\n                    session=session\n                )\n            else:\n                print '    Saving in the errors log, and skipping...'\n                logerror(\n                    config=config,\n                    text=u'Error while retrieving the last revision of \"%s\". Skipping.' %\n                    (params['pages']))\n                raise ExportAbortedError(config['index'])\n                return ''  # empty xml\n        # FIXME HANDLE HTTP Errors HERE\n        try:\n            r = session.post(url=config['index'], params=params, headers=headers, timeout=10)\n            handleStatusCode(r)\n            xml = fixBOM(r)\n        except requests.exceptions.ConnectionError as e:\n            print '    Connection error: %s'%(str(e[0]))\n            xml = ''\n        except requests.exceptions.ReadTimeout as e:\n            print '    Read timeout: %s'%(str(e[0]))\n            xml = ''       \n        c += 1\n\n    return xml\n\n\ndef getXMLPage(config={}, title='', verbose=True, session=None):\n    \"\"\" Get the full history (or current only) of a page \"\"\"\n\n    # if server errors occurs while retrieving the full page history, it may return [oldest OK versions] + last version, excluding middle revisions, so it would be partially truncated\n    # http://www.mediawiki.org/wiki/Manual_talk:Parameters_to_Special:Export#Parameters_no_longer_in_use.3F\n\n    limit = 1000\n    truncated = False\n    title_ = title\n    title_ = re.sub(' ', '_', title_)\n    # do not convert & into %26, title_ = re.sub('&', '%26', title_)\n    try:\n        params = {'title': config['export'], 'pages': title_, 'action': 'submit'}\n    except KeyError:\n        params = {'title': 'Special:Export', 'pages': title_, 'action': 'submit'}\n    if config['curonly']:\n        params['curonly'] = 1\n        params['limit'] = 1\n    else:\n        params['offset'] = '1'  # 1 always < 2000s\n        params['limit'] = limit\n    # in other case, do not set params['templates']\n    if 'templates' in config and config['templates']:\n        params['templates'] = 1\n\n    xml = getXMLPageCore(params=params, config=config, session=session)\n    if xml == \"\":\n        raise ExportAbortedError(config['index'])\n    if not \"</page>\" in xml:\n        raise PageMissingError(params['title'], xml)\n    else:\n        # strip these sha1s sums which keep showing up in the export and\n        # which are invalid for the XML schema (they only apply to\n        # revisions)\n        xml = re.sub(r'\\n\\s*<sha1>\\w+</sha1>\\s*\\n', r'\\n', xml)\n        xml = re.sub(r'\\n\\s*<sha1/>\\s*\\n', r'\\n', xml)\n\n    yield xml.split(\"</page>\")[0]\n\n    # if complete history, check if this page history has > limit edits, if so, retrieve all using offset if available\n    # else, warning about Special:Export truncating large page histories\n    r_timestamp = r'<timestamp>([^<]+)</timestamp>'\n\n    numberofedits = 0\n    numberofedits += len(re.findall(r_timestamp, xml))\n\n    # search for timestamps in xml to avoid analysing empty pages like\n    # Special:Allpages and the random one\n    if not config['curonly'] and re.search(r_timestamp, xml):\n        while not truncated and params['offset']:  # next chunk\n            # get the last timestamp from the acum XML\n            params['offset'] = re.findall(r_timestamp, xml)[-1]\n            try:\n                xml2 = getXMLPageCore(\n                    params=params, config=config, session=session)\n            except MemoryError:\n                print \"The page's history exceeds our memory, halving limit.\"\n                params['limit'] = params['limit'] / 2\n                continue\n\n            # are there more edits in this next XML chunk or no <page></page>?\n            if re.findall(r_timestamp, xml2):\n                if re.findall(r_timestamp, xml2)[-1] == params['offset']:\n                    # again the same XML, this wiki does not support params in\n                    # Special:Export, offer complete XML up to X edits (usually\n                    # 1000)\n                    print 'ATTENTION: This wiki does not allow some parameters in Special:Export, therefore pages with large histories may be truncated'\n                    truncated = True\n                    break\n                else:\n                    \"\"\"    </namespaces>\n                      </siteinfo>\n                      <page>\n                        <title>Main Page</title>\n                        <id>15580374</id>\n                        <restrictions>edit=sysop:move=sysop</restrictions> (?)\n                        <revision>\n                          <id>418009832</id>\n                          <timestamp>2011-03-09T19:57:06Z</timestamp>\n                          <contributor>\n                    \"\"\"\n                    # offset is OK in this wiki, merge with the previous chunk\n                    # of this page history and continue\n                    try:\n                        xml2 = xml2.split(\"</page>\")[0]\n                        yield '  <revision>' + ('<revision>'.join(xml2.split('<revision>')[1:]))\n                    except MemoryError:\n                        print \"The page's history exceeds our memory, halving limit.\"\n                        params['limit'] = params['limit'] / 2\n                        continue\n                    xml = xml2\n                    numberofedits += len(re.findall(r_timestamp, xml))\n            else:\n                params['offset'] = ''  # no more edits in this page history\n    yield \"</page>\\n\"\n\n    if verbose:\n        if (numberofedits == 1):\n           print '    %s, 1 edit' % (title.strip())\n        else:\n           print '    %s, %d edits' % (title.strip(), numberofedits)\n\n\ndef makeXmlPageFromRaw(xml):\n    \"\"\" Discard the metadata around a <page> element in <mediawiki> string\"\"\"\n    root = etree.XML(xml)\n    find = etree.XPath(\"//*[local-name() = 'page']\")\n    # The tag will inherit the namespace, like:\n    # <page xmlns=\"http://www.mediawiki.org/xml/export-0.10/\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    # FIXME: pretty_print doesn't seem to work, only adds a newline\n    return etree.tostring(find(root)[0], pretty_print=True)\n\n\ndef cleanXML(xml=''):\n    \"\"\" Trim redundant info from the XML however it comes \"\"\"\n    # do not touch XML codification, leave AS IS\n    if re.search(r'</siteinfo>\\n', xml):\n        xml = xml.split('</siteinfo>\\n')[1]\n    if re.search(r'</mediawiki>', xml):\n        xml = xml.split('</mediawiki>')[0]\n    return xml\n\n\ndef generateXMLDump(config={}, titles=[], start=None, session=None):\n    \"\"\" Generates a XML dump for a list of titles or from revision IDs \"\"\"\n    # TODO: titles is now unused.\n\n    header, config = getXMLHeader(config=config, session=session)\n    footer = '</mediawiki>\\n'  # new line at the end\n    xmlfilename = '%s-%s-%s.xml' % (domain2prefix(config=config),\n                                    config['date'],\n                                    config['curonly'] and 'current' or 'history')\n    xmlfile = ''\n    lock = True\n\n    if config['xmlrevisions']:\n        if start:\n            print(\"WARNING: will try to start the download from title: {}\".format(start))\n            xmlfile = open('%s/%s' % (config['path'], xmlfilename), 'a')\n        else:\n            print 'Retrieving the XML for every page from the beginning'\n            xmlfile = open('%s/%s' % (config['path'], xmlfilename), 'w')\n            xmlfile.write(header.encode('utf-8'))\n        try:\n            r_timestamp = r'<timestamp>([^<]+)</timestamp>'\n            for xml in getXMLRevisions(config=config, session=session, start=start):\n                numrevs = len(re.findall(r_timestamp, xml))\n                # Due to how generators work, it's expected this may be less\n                # TODO: get the page title and reuse the usual format \"X title, y edits\"\n                print \"        %d more revisions exported\" % numrevs\n                xml = cleanXML(xml=xml)\n                xmlfile.write(xml.encode('utf-8'))\n        except AttributeError as e:\n            print(e)\n            print \"This API library version is not working\"\n            sys.exit()\n    else:\n        print 'Retrieving the XML for every page from \"%s\"' % (start and start or 'start')\n        if start:\n            print \"Removing the last chunk of past XML dump: it is probably incomplete.\"\n            for i in reverse_readline('%s/%s' % (config['path'], xmlfilename), truncate=True):\n                pass\n        else:\n            # requested complete xml dump\n            lock = False\n            xmlfile = open('%s/%s' % (config['path'], xmlfilename), 'w')\n            xmlfile.write(header.encode('utf-8'))\n            xmlfile.close()\n\n        xmlfile = open('%s/%s' % (config['path'], xmlfilename), 'a')\n        c = 1\n        for title in readTitles(config, start):\n            if not title:\n                continue\n            if title == start:  # start downloading from start, included\n                lock = False\n            if lock:\n                continue\n            delay(config=config, session=session)\n            if c % 10 == 0:\n                print 'Downloaded %d pages' % (c)\n            try:\n                for xml in getXMLPage(config=config, title=title, session=session):\n                    xml = cleanXML(xml=xml)\n                    xmlfile.write(xml.encode('utf-8'))\n            except PageMissingError:\n                logerror(\n                    config=config,\n                    text=u'The page \"%s\" was missing in the wiki (probably deleted)' % title\n                )\n            # here, XML is a correct <page> </page> chunk or\n            # an empty string due to a deleted page (logged in errors log) or\n            # an empty string due to an error while retrieving the page from server\n            # (logged in errors log)\n            c += 1\n\n    xmlfile.write(footer)\n    xmlfile.close()\n    print 'XML dump saved at...', xmlfilename\n\ndef getXMLRevisions(config={}, session=None, allpages=False, start=None):\n    # FIXME: actually figure out the various strategies for each MediaWiki version\n    apiurl = urlparse(config['api'])\n    # FIXME: force the protocol we asked for! Or don't verify SSL if we asked HTTP?\n    # https://github.com/WikiTeam/wikiteam/issues/358\n    site = mwclient.Site(apiurl.netloc, apiurl.path.replace(\"api.php\", \"\"), scheme=apiurl.scheme)\n\n    if not 'all' in config['namespaces']:\n        namespaces = config['namespaces']\n    else:\n        namespaces, namespacenames = getNamespacesAPI(config=config, session=session)\n\n    try:\n        for namespace in namespaces:\n            print(\"Trying to export all revisions from namespace %s\" % namespace)\n            # arvgeneratexml exists but was deprecated in 1.26 (while arv is from 1.27?!)\n            arvparams = {\n                'action': 'query',\n                'list': 'allrevisions',\n                'arvlimit': 50,\n                'arvnamespace': namespace\n            }\n            if not config['curonly']:\n                # We have to build the XML manually...\n                # Skip flags, presumably needed to add <minor/> which is in the schema.\n                # Also missing: parentid and contentformat.\n                arvparams['arvprop'] = 'ids|timestamp|user|userid|size|sha1|contentmodel|comment|content'\n                print(\"Trying to get wikitext from the allrevisions API and to build the XML\")\n                while True:\n                    try:\n                        arvrequest = site.api(http_method=config['http_method'], **arvparams)\n                    except requests.exceptions.HTTPError as e:\n                        if e.response.status_code == 405 and config['http_method'] == \"POST\":\n                            print(\"POST request to the API failed, retrying with GET\")\n                            config['http_method'] = \"GET\"\n                            continue\n                    except requests.exceptions.ReadTimeout as err:\n                        # Hopefully temporary, just wait a bit and continue with the same request.\n                        # No point putting a limit to retries, we'd need to abort everything.\n                        # TODO: reuse the retry logic of the checkAPI phase? Or force mwclient\n                        # to use the retry adapter we use for our own requests session?\n                        print(\"ERROR: {}\".format(str(err)))\n                        print(\"Sleeping for 20 seconds\")\n                        time.sleep(20)\n                        continue\n\n                    for page in arvrequest['query']['allrevisions']:\n                        yield makeXmlFromPage(page)\n                    if 'continue' in arvrequest:\n                        arvparams['arvcontinue'] = arvrequest['continue']['arvcontinue']\n                    else:\n                        # End of continuation. We are done with this namespace.\n                        break\n\n            else:\n                # FIXME: this is not curonly, just different strategy to do all revisions\n                # Just cycle through revision IDs and use the XML as is\n                print(\"Trying to list the revisions and to export them one by one\")\n                # We only need the revision ID, all the rest will come from the raw export\n                arvparams['arvprop'] = 'ids'\n                try:\n                    arvrequest = site.api(http_method=config['http_method'], **arvparams)\n                except requests.exceptions.HTTPError as e:\n                    if e.response.status_code == 405 and config['http_method'] == \"POST\":\n                        print(\"POST request to the API failed, retrying with GET\")\n                        config['http_method'] = \"GET\"\n                        continue\n                exportparams = {\n                    'action': 'query',\n                    'export': '1',\n                }\n                # Skip the namespace if it's empty\n                if len(arvrequest['query']['allrevisions']) < 1:\n                    continue\n                # Repeat the arvrequest with new arvparams until done\n                while True:\n                    # Reset revision IDs from the previous batch from arv\n                    revids = []\n                    for page in arvrequest['query']['allrevisions']:\n                        for revision in page['revisions']:\n                            revids.append(str(revision['revid']))\n                    print \"        %d more revisions listed, until %s\" % (len(revids), revids[-1])\n\n                    # We can now get the XML for one revision at a time\n                    # FIXME: we can actually get them in batches as we used to\n                    # but need to figure out the continuation and avoid that the API\n                    # chooses to give us only the latest for each page\n                    for revid in revids:\n                        exportparams['revids'] = revid\n                        try:\n                            exportrequest = site.api(http_method=config['http_method'], **exportparams)\n                        except requests.exceptions.HTTPError as e:\n                            if e.response.status_code == 405 and config['http_method'] == \"POST\":\n                                print(\"POST request to the API failed, retrying with GET\")\n                                config['http_method'] = \"GET\"\n                                exportrequest = site.api(http_method=config['http_method'], **exportparams)\n\n                        # This gives us a self-standing <mediawiki> element\n                        # but we only need the inner <page>: we can live with\n                        # duplication and non-ordering of page titles, but the\n                        # repeated header is confusing and would not even be valid\n                        xml = exportrequest['query']['export']['*']\n                        yield makeXmlPageFromRaw(xml)\n                        \n                    if 'continue' in arvrequest:\n                        # Get the new ones\n                        arvparams['arvcontinue'] = arvrequest['continue']['arvcontinue']\n                        try:\n                            arvrequest = site.api(http_method=config['http_method'], **arvparams)\n                        except requests.exceptions.HTTPError as e:\n                            if e.response.status_code == 405 and config['http_method'] == \"POST\":\n                                print(\"POST request to the API failed, retrying with GET\")\n                                config['http_method'] = \"GET\"\n                                arvrequest = site.api(http_method=config['http_method'], **arvparams)\n                        except requests.exceptions.ReadTimeout as err:\n                            # As above\n                            print(\"ERROR: {}\".format(str(err)))\n                            print(\"Sleeping for 20 seconds\")\n                            time.sleep(20)\n                            # But avoid rewriting the same revisions\n                            arvrequest['query']['allrevisions'] = []\n                            continue\n                    else:\n                        # End of continuation. We are done with this namespace.\n                        break\n                    \n    except (KeyError, mwclient.errors.InvalidResponse) as e:\n        print(e)\n        # TODO: check whether the KeyError was really for a missing arv API\n        print \"Warning. Could not use allrevisions. Wiki too old?\"\n        if config['curonly']:\n            # The raw XML export in the API gets a title and gives the latest revision.\n            # We could also use the allpages API as generator but let's be consistent.\n            print(\"Getting titles to export the latest revision for each\")\n            c = 0\n            for title in readTitles(config, start=start):\n                # TODO: respect verbose flag, reuse output from getXMLPage\n                print(u'    {}'.format(title))\n                # TODO: as we're doing one page and revision at a time, we might\n                # as well use xml format and exportnowrap=1 to use the string of,\n                # XML as is, but need to check how well the library handles it.\n                exportparams = {\n                    'action': 'query',\n                    'titles': title,\n                    'export': '1',\n                }\n                try:\n                    exportrequest = site.api(http_method=config['http_method'], **exportparams)\n                except requests.exceptions.HTTPError as e:\n                    if e.response.status_code == 405 and config['http_method'] == \"POST\":\n                        print(\"POST request to the API failed, retrying with GET\")\n                        config['http_method'] = \"GET\"\n                        exportrequest = site.api(http_method=config['http_method'], **exportparams)\n\n                xml = exportrequest['query']['export']['*']\n                c += 1\n                if c % 10 == 0:\n                    print('Downloaded {} pages'.format(c))\n                # Because we got the fancy XML from the JSON format, clean it:\n                yield makeXmlPageFromRaw(xml)\n        else:\n            # This is the closest to what we usually do with Special:Export:\n            # take one title at a time and try to get all revisions exported.\n            # It differs from the allrevisions method because it actually needs\n            # to be input the page titles; otherwise, the requests are similar.\n            # The XML needs to be made manually because the export=1 option\n            # refuses to return an arbitrary number of revisions (see above).\n            print(\"Getting titles to export all the revisions of each\")\n            c = 0\n            titlelist = []\n            # TODO: Decide a suitable number of a batched request. Careful:\n            # batched responses may not return all revisions.\n            for titlelist in readTitles(config, start=start, batch=False):\n                if type(titlelist) is not list:\n                    titlelist = [titlelist]\n                for title in titlelist:\n                    print(u'    {}'.format(title))\n                # Try and ask everything. At least on MediaWiki 1.16, uknown props are discarded:\n                # \"warnings\":{\"revisions\":{\"*\":\"Unrecognized values for parameter 'rvprop': userid, sha1, contentmodel\"}}}\n                pparams = {\n                    'action': 'query',\n                    'titles': '|'.join(titlelist),\n                    'prop': 'revisions',\n                    #'rvlimit': 50,\n                    'rvprop': 'ids|timestamp|user|userid|size|sha1|contentmodel|comment|content',\n                }\n                try:\n                    prequest = site.api(http_method=config['http_method'], **pparams)\n                except requests.exceptions.HTTPError as e:\n                    if e.response.status_code == 405 and config['http_method'] == \"POST\":\n                        print(\"POST request to the API failed, retrying with GET\")\n                        config['http_method'] = \"GET\"\n                        exportrequest = site.api(http_method=config['http_method'], **exportparams)\n                except mwclient.errors.InvalidResponse:\n                    logerror(\n                                config=config,\n                                text=u'Error: page inaccessible? Could not export page: %s' % (\"; \".join(titlelist))\n                            )\n                    continue\n\n                # Be ready to iterate if there is continuation.\n                while True:\n                    # Get the revision data returned by the API: prequest is the initial request\n                    # or the new one after continuation at the bottom of this while loop.\n                    # The array is called \"pages\" even if there's only one.\n                    try:\n                        pages = prequest['query']['pages']\n                    except KeyError:\n                        logerror(\n                                config=config,\n                                text=u'Error: page inaccessible? Could not export page: %s' % (\"; \".join(titlelist))\n                            )\n                        break\n                    # Go through the data we got to build the XML.\n                    for pageid in pages:\n                        try:\n                            xml = makeXmlFromPage(pages[pageid])\n                            yield xml\n                        except PageMissingError:\n                            logerror(\n                                config=config,\n                                text=u'Error: empty revision from API. Could not export page: %s' % (\"; \".join(titlelist))\n                            )\n                            continue\n\n                    # Get next batch of revisions if there's more.\n                    if 'continue' in prequest.keys():\n                        print(\"Getting more revisions for the page\")\n                        for key, value in prequest['continue']:\n                            params[key] = value\n                    elif 'query-continue' in prequest.keys():\n                        rvstartid = prequest['query-continue']['revisions']['rvstartid']\n                        pparams['rvstartid'] = rvstartid\n                    else:\n                        break\n\n                    try:\n                        prequest = site.api(http_method=config['http_method'], **pparams)\n                    except requests.exceptions.HTTPError as e:\n                        if e.response.status_code == 405 and config['http_method'] == \"POST\":\n                            print(\"POST request to the API failed, retrying with GET\")\n                            config['http_method'] = \"GET\"\n                            prequest = site.api(http_method=config['http_method'], **pparams)\n\n                # We're done iterating for this title or titles.\n                c += len(titlelist)\n                # Reset for the next batch.\n                titlelist = []\n                if c % 10 == 0:\n                    print('Downloaded {} pages'.format(c))\n\n\n    except mwclient.errors.MwClientError as e:\n        print(e)\n        print \"This mwclient version seems not to work for us. Exiting.\"\n        sys.exit()\n\ndef makeXmlFromPage(page):\n    \"\"\" Output an XML document as a string from a page as in the API JSON \"\"\"\n    try:\n        p = E.page(\n                E.title(to_unicode(page['title'])),\n                E.ns(to_unicode(page['ns'])),\n                E.id(to_unicode(page['pageid'])),\n        )\n        for rev in page['revisions']:\n            # Older releases like MediaWiki 1.16 do not return all fields.\n            if 'userid' in rev:\n                userid = rev['userid']\n            else:\n                userid = 0\n            if 'size' in rev:\n                size = rev['size']\n            else:\n                size = 0\n            revision = E.revision(\n                E.id(to_unicode(rev['revid'])),\n                E.timestamp(rev['timestamp']),\n                E.text(to_unicode(rev['*']), space=\"preserve\", bytes=to_unicode(size)),\n            )\n            # The username may be deleted/suppressed\n            if 'user' in rev:\n                revision.append(E.contributor(\n                        E.username(to_unicode(rev['user'])),\n                        E.id(to_unicode(userid)),\n                ))\n            else:\n                revision.append(E.contributor(deleted=\"deleted\"))\n            if 'comment' in rev:\n                revision.append(E.comment(to_unicode(rev['comment'])))\n            if 'contentmodel' in rev:\n                revision.append(E.model(rev['contentmodel']))\n            # Sometimes a missing parentid is not replaced with a 0 as it should.\n            if 'parentid' in rev:\n                revision.append(E.parentid(to_unicode(rev['parentid'])))\n            # The sha1 may not have been backfilled on older wikis or lack for other reasons (Wikia).\n            if 'sha1' in rev:\n                revision.append(E.sha1(rev['sha1']))\n            p.append(revision)\n    except KeyError as e:\n        print(e)\n        raise PageMissingError(page['title'], e)\n    return etree.tostring(p, pretty_print=True, encoding='unicode')\n\ndef readTitles(config={}, start=None, batch=False):\n    \"\"\" Read title list from a file, from the title \"start\" \"\"\"\n\n    titlesfilename = '%s-%s-titles.txt' % (\n        domain2prefix(config=config), config['date'])\n    titlesfile = open('%s/%s' % (config['path'], titlesfilename), 'r')\n\n    titlelist = []\n    seeking = False\n    if start:\n        seeking = True\n\n    with titlesfile as f:\n        for line in f:\n            title = line.decode(\"utf-8\").strip()\n            if title == '--END--':\n                break\n            elif seeking and title != start:\n                continue\n            elif seeking and title == start:\n                seeking = False\n\n            if not batch:\n                yield title\n            else:\n                titlelist.append(title)\n                if len(titlelist) < batch:\n                    continue\n                else:\n                    yield titlelist\n                    titlelist = []\n\ndef reverse_readline(filename, buf_size=8192, truncate=False):\n    \"\"\"a generator that returns the lines of a file in reverse order\"\"\"\n    # Original code by srohde, abdus_salam: cc by-sa 3.0\n    # http://stackoverflow.com/a/23646049/718903\n    with open(filename, 'r+') as fh:\n        segment = None\n        offset = 0\n        fh.seek(0, os.SEEK_END)\n        total_size = remaining_size = fh.tell()\n        while remaining_size > 0:\n            offset = min(total_size, offset + buf_size)\n            fh.seek(-offset, os.SEEK_END)\n            buffer = fh.read(min(remaining_size, buf_size))\n            remaining_size -= buf_size\n            lines = buffer.split('\\n')\n            # the first line of the buffer is probably not a complete line so\n            # we'll save it and append it to the last line of the next buffer\n            # we read\n            if segment is not None:\n                # if the previous chunk starts right from the beginning of line\n                # do not concat the segment to the last line of new chunk\n                # instead, yield the segment first \n                if buffer[-1] is not '\\n':\n                    lines[-1] += segment\n                else:\n                    if truncate and '</page>' in segment:\n                        pages = buffer.split('</page>')\n                        fh.seek(-offset+buf_size-len(pages[-1]), os.SEEK_END)\n                        fh.truncate\n                        raise StopIteration\n                    else:\n                        yield segment\n            segment = lines[0]\n            for index in range(len(lines) - 1, 0, -1):\n                if truncate and '</page>' in segment:\n                    pages = buffer.split('</page>')\n                    fh.seek(-offset-len(pages[-1]), os.SEEK_END)\n                    fh.truncate\n                    raise StopIteration\n                else:\n                    yield lines[index]\n        yield segment\n\ndef saveImageNames(config={}, images=[], session=None):\n    \"\"\" Save image list in a file, including filename, url and uploader \"\"\"\n\n    imagesfilename = '%s-%s-images.txt' % (\n        domain2prefix(config=config), config['date'])\n    imagesfile = open('%s/%s' % (config['path'], imagesfilename), 'w')\n    imagesfile.write(\n        ('\\n'.join(\n            [\n                '%s\\t%s\\t%s' %\n                (filename,\n                 url,\n                 uploader) for filename,\n                url,\n                uploader in images]\n            ).encode('utf-8')\n         )\n    )\n    imagesfile.write('\\n--END--')\n    imagesfile.close()\n\n    print 'Image filenames and URLs saved at...', imagesfilename\n\n\ndef curateImageURL(config={}, url=''):\n    \"\"\" Returns an absolute URL for an image, adding the domain if missing \"\"\"\n\n    if 'index' in config and config['index']:\n        # remove from :// (http or https) until the first / after domain\n        domainalone = config['index'].split(\n            '://')[0] + '://' + config['index'].split('://')[1].split('/')[0]\n    elif 'api' in config and config['api']:\n        domainalone = config['api'].split(\n            '://')[0] + '://' + config['api'].split('://')[1].split('/')[0]\n    else:\n        print 'ERROR: no index nor API'\n        sys.exit()\n\n    if url.startswith('//'):  # Orain wikifarm returns URLs starting with //\n        url = u'%s:%s' % (domainalone.split('://')[0], url)\n    # is it a relative URL?\n    elif url[0] == '/' or (not url.startswith('http://') and not url.startswith('https://')):\n        if url[0] == '/':  # slash is added later\n            url = url[1:]\n        # concat http(s) + domain + relative url\n        url = u'%s/%s' % (domainalone, url)\n    url = undoHTMLEntities(text=url)\n    # url = urllib.unquote(url) #do not use unquote with url, it break some\n    # urls with odd chars\n    url = re.sub(' ', '_', url)\n\n    return url\n\n\ndef getImageNamesScraper(config={}, session=None):\n    \"\"\" Retrieve file list: filename, url, uploader \"\"\"\n\n    # (?<! http://docs.python.org/library/re.html\n    r_next = r'(?<!&amp;dir=prev)&amp;offset=(?P<offset>\\d+)&amp;'\n    images = []\n    offset = '29990101000000'  # january 1, 2999\n    limit = 5000\n    retries = config['retries']\n    while offset:\n        # 5000 overload some servers, but it is needed for sites like this with\n        # no next links\n        # http://www.memoryarchive.org/en/index.php?title=Special:Imagelist&sort=byname&limit=50&wpIlMatch=\n        r = session.post(\n            url=config['index'],\n            params={\n                'title': 'Special:Imagelist',\n                'limit': limit,\n                'offset': offset},\n            timeout=30)\n        raw = r.text\n        delay(config=config, session=session)\n        # delicate wiki\n        if re.search(\n                ur'(?i)(allowed memory size of \\d+ bytes exhausted|Call to a member function getURL)',\n                raw):\n            if limit > 10:\n                print 'Error: listing %d images in a chunk is not possible, trying tiny chunks' % (limit)\n                limit = limit / 10\n                continue\n            elif retries > 0:  # waste retries, then exit\n                retries -= 1\n                print 'Retrying...'\n                continue\n            else:\n                print 'No more retries, exit...'\n                break\n\n        raw = cleanHTML(raw)\n        # archiveteam 1.15.1 <td class=\"TablePager_col_img_name\"><a href=\"/index.php?title=File:Yahoovideo.jpg\" title=\"File:Yahoovideo.jpg\">Yahoovideo.jpg</a> (<a href=\"/images/2/2b/Yahoovideo.jpg\">file</a>)</td>\n        # wikanda 1.15.5 <td class=\"TablePager_col_img_user_text\"><a\n        # href=\"/w/index.php?title=Usuario:Fernandocg&amp;action=edit&amp;redlink=1\"\n        # class=\"new\" title=\"Usuario:Fernandocg (página no\n        # existe)\">Fernandocg</a></td>\n        r_images1 = r'(?im)<td class=\"TablePager_col_img_name\"><a href[^>]+title=\"[^:>]+:(?P<filename>[^>]+)\">[^<]+</a>[^<]+<a href=\"(?P<url>[^>]+/[^>/]+)\">[^<]+</a>[^<]+</td>\\s*<td class=\"TablePager_col_img_user_text\"><a[^>]+>(?P<uploader>[^<]+)</a></td>'\n        # wikijuegos 1.9.5\n        # http://softwarelibre.uca.es/wikijuegos/Especial:Imagelist old\n        # mediawiki version\n        r_images2 = r'(?im)<td class=\"TablePager_col_links\"><a href[^>]+title=\"[^:>]+:(?P<filename>[^>]+)\">[^<]+</a>[^<]+<a href=\"(?P<url>[^>]+/[^>/]+)\">[^<]+</a></td>\\s*<td class=\"TablePager_col_img_timestamp\">[^<]+</td>\\s*<td class=\"TablePager_col_img_name\">[^<]+</td>\\s*<td class=\"TablePager_col_img_user_text\"><a[^>]+>(?P<uploader>[^<]+)</a></td>'\n        # gentoowiki 1.18\n        r_images3 = r'(?im)<td class=\"TablePager_col_img_name\"><a[^>]+title=\"[^:>]+:(?P<filename>[^>]+)\">[^<]+</a>[^<]+<a href=\"(?P<url>[^>]+)\">[^<]+</a>[^<]+</td><td class=\"TablePager_col_thumb\"><a[^>]+><img[^>]+></a></td><td class=\"TablePager_col_img_size\">[^<]+</td><td class=\"TablePager_col_img_user_text\"><a[^>]+>(?P<uploader>[^<]+)</a></td>'\n        # http://www.memoryarchive.org/en/index.php?title=Special:Imagelist&sort=byname&limit=50&wpIlMatch=\n        # (<a href=\"/en/Image:109_0923.JPG\" title=\"Image:109 0923.JPG\">desc</a>) <a href=\"/en/upload/c/cd/109_0923.JPG\">109 0923.JPG</a> . . 885,713 bytes . . <a href=\"/en/User:Bfalconer\" title=\"User:Bfalconer\">Bfalconer</a> . . 18:44, 17 November 2005<br />\n        r_images4 = r'(?im)<a href=[^>]+ title=\"[^:>]+:(?P<filename>[^>]+)\">[^<]+</a>[^<]+<a href=\"(?P<url>[^>]+)\">[^<]+</a>[^<]+<a[^>]+>(?P<uploader>[^<]+)</a>'\n        r_images5 = (\n            r'(?im)<td class=\"TablePager_col_img_name\">\\s*<a href[^>]*?>(?P<filename>[^>]+)</a>\\s*\\(<a href=\"(?P<url>[^>]+)\">[^<]*?</a>\\s*\\)\\s*</td>\\s*'\n            '<td class=\"TablePager_col_thumb\">[^\\n\\r]*?</td>\\s*'\n            '<td class=\"TablePager_col_img_size\">[^<]*?</td>\\s*'\n            '<td class=\"TablePager_col_img_user_text\">\\s*(<a href=\"[^>]*?\" title=\"[^>]*?\">)?(?P<uploader>[^<]+?)(</a>)?\\s*</td>')\n\n        # Select the regexp that returns more results\n        regexps = [r_images1, r_images2, r_images3, r_images4, r_images5]\n        count = 0\n        i = 0\n        regexp_best = 0\n        for regexp in regexps:\n            if len(re.findall(regexp, raw)) > count:\n                count = len(re.findall(regexp, raw))\n                regexp_best = i\n            i += 1\n        m = re.compile(regexps[regexp_best]).finditer(raw)\n\n        # Iter the image results\n        for i in m:\n            url = i.group('url')\n            url = curateImageURL(config=config, url=url)\n            filename = re.sub('_', ' ', i.group('filename'))\n            filename = undoHTMLEntities(text=filename)\n            filename = urllib.unquote(filename)\n            uploader = re.sub('_', ' ', i.group('uploader'))\n            uploader = undoHTMLEntities(text=uploader)\n            uploader = urllib.unquote(uploader)\n            images.append([filename, url, uploader])\n            # print filename, url\n\n        if re.search(r_next, raw):\n            new_offset = re.findall(r_next, raw)[0]\n            # Avoid infinite loop\n            if new_offset != offset:\n                offset = new_offset\n                retries += 5  # add more retries if we got a page with offset\n            else:\n                offset = ''\n        else:\n            offset = ''\n\n    if (len(images) == 1):\n        print '    Found 1 image'\n    else:\n        print '    Found %d images' % (len(images))\n\n    images.sort()\n    return images\n\n\ndef getImageNamesAPI(config={}, session=None):\n    \"\"\" Retrieve file list: filename, url, uploader \"\"\"\n    oldAPI = False\n    aifrom = '!'\n    images = []\n    while aifrom:\n        sys.stderr.write('.')  # progress\n        params = {\n            'action': 'query',\n            'list': 'allimages',\n            'aiprop': 'url|user',\n            'aifrom': aifrom,\n            'format': 'json',\n            'ailimit': 50}\n        # FIXME Handle HTTP Errors HERE\n        r = session.get(url=config['api'], params=params, timeout=30)\n        handleStatusCode(r)\n        jsonimages = getJSON(r)\n        delay(config=config, session=session)\n\n        if 'query' in jsonimages:\n            aifrom = ''\n            if 'query-continue' in jsonimages and 'allimages' in jsonimages[\n                    'query-continue']:\n                if 'aicontinue' in jsonimages['query-continue']['allimages']:\n                    aifrom = jsonimages[\n                        'query-continue']['allimages']['aicontinue']\n                elif 'aifrom' in jsonimages['query-continue']['allimages']:\n                    aifrom = jsonimages[\n                        'query-continue']['allimages']['aifrom']\n            elif 'continue' in jsonimages:\n                if 'aicontinue' in jsonimages['continue']:\n                    aifrom = jsonimages['continue']['aicontinue']\n                elif 'aifrom' in jsonimages['continue']:\n                    aifrom = jsonimages['continue']['aifrom']\n            # print aifrom\n\n            for image in jsonimages['query']['allimages']:\n                url = image['url']\n                url = curateImageURL(config=config, url=url)\n                # encoding to ascii is needed to work around this horrible bug:\n                # http://bugs.python.org/issue8136\n                if 'api' in config and ('.wikia.' in config['api'] or '.fandom.com' in config['api']):\n                    #to avoid latest?cb=20120816112532 in filenames\n                    filename = unicode(urllib.unquote((re.sub('_', ' ', url.split('/')[-3])).encode('ascii', 'ignore')), 'utf-8')\n                else:\n                    filename = unicode(urllib.unquote((re.sub('_', ' ', url.split('/')[-1])).encode('ascii', 'ignore')), 'utf-8')\n                uploader = re.sub('_', ' ', image['user'])\n                images.append([filename, url, uploader])\n        else:\n            oldAPI = True\n            break\n\n    if oldAPI:\n        gapfrom = '!'\n        images = []\n        while gapfrom:\n            sys.stderr.write('.')  # progress\n            # Some old APIs doesn't have allimages query\n            # In this case use allpages (in nm=6) as generator for imageinfo\n            # Example:\n            # http://minlingo.wiki-site.com/api.php?action=query&generator=allpages&gapnamespace=6\n            # &gaplimit=500&prop=imageinfo&iiprop=user|url&gapfrom=!\n            params = {\n                'action': 'query',\n                'generator': 'allpages',\n                'gapnamespace': 6,\n                'gaplimit': 50,\n                'gapfrom': gapfrom,\n                'prop': 'imageinfo',\n                'iiprop': 'user|url',\n                'format': 'json'}\n            # FIXME Handle HTTP Errors HERE\n            r = session.get(url=config['api'], params=params, timeout=30)\n            handleStatusCode(r)\n            jsonimages = getJSON(r)\n            delay(config=config, session=session)\n\n            if 'query' in jsonimages:\n                gapfrom = ''\n                if 'query-continue' in jsonimages and 'allpages' in jsonimages[\n                        'query-continue']:\n                    if 'gapfrom' in jsonimages['query-continue']['allpages']:\n                        gapfrom = jsonimages[\n                            'query-continue']['allpages']['gapfrom']\n                # print gapfrom\n                # print jsonimages['query']\n\n                for image, props in jsonimages['query']['pages'].items():\n                    url = props['imageinfo'][0]['url']\n                    url = curateImageURL(config=config, url=url)\n\n                    tmp_filename = ':'.join(props['title'].split(':')[1:])\n\n                    filename = re.sub('_', ' ', tmp_filename)\n                    uploader = re.sub('_', ' ', props['imageinfo'][0]['user'])\n                    images.append([filename, url, uploader])\n            else:\n                # if the API doesn't return query data, then we're done\n                break\n\n    if (len(images) == 1):\n        print '    Found 1 image'\n    else:\n        print '    Found %d images' % (len(images))\n\n    return images\n\n\ndef undoHTMLEntities(text=''):\n    \"\"\" Undo some HTML codes \"\"\"\n\n    # i guess only < > & \" ' need conversion\n    # http://www.w3schools.com/html/html_entities.asp\n    text = re.sub('&lt;', '<', text)\n    text = re.sub('&gt;', '>', text)\n    text = re.sub('&amp;', '&', text)\n    text = re.sub('&quot;', '\"', text)\n    text = re.sub('&#039;', '\\'', text)\n\n    return text\n\n\ndef generateImageDump(config={}, other={}, images=[], start='', session=None):\n    \"\"\" Save files and descriptions using a file list \"\"\"\n\n    # fix use subdirectories md5\n    print 'Retrieving images from \"%s\"' % (start and start or 'start')\n    imagepath = '%s/images' % (config['path'])\n    if not os.path.isdir(imagepath):\n        print 'Creating \"%s\" directory' % (imagepath)\n        os.makedirs(imagepath)\n\n    c = 0\n    lock = True\n    if not start:\n        lock = False\n    for filename, url, uploader in images:\n        if filename == start:  # start downloading from start (included)\n            lock = False\n        if lock:\n            continue\n        delay(config=config, session=session)\n\n        # saving file\n        # truncate filename if length > 100 (100 + 32 (md5) = 132 < 143 (crash\n        # limit). Later .desc is added to filename, so better 100 as max)\n        filename2 = urllib.unquote(filename)\n        if len(filename2) > other['filenamelimit']:\n            # split last . (extension) and then merge\n            filename2 = truncateFilename(other=other, filename=filename2)\n            print 'Filename is too long, truncating. Now it is:', filename2\n        filename3 = u'%s/%s' % (imagepath, filename2)\n        imagefile = open(filename3, 'wb')\n\n        r = session.head(url=url, allow_redirects=True)\n        original_url_redirected = len(r.history) > 0\n\n        if original_url_redirected:\n            #print 'Site is redirecting us to: ', r.url\n            original_url = url\n            url = r.url\n\n        r = session.get(url=url, allow_redirects=False)\n\n        # Try to fix a broken HTTP to HTTPS redirect\n        if r.status_code ==  404 and  original_url_redirected:\n           if original_url.split(\"://\")[0] == \"http\" and url.split(\"://\")[0] == \"https\":\n              url = 'https://' + original_url.split(\"://\")[1]\n              #print 'Maybe a broken http to https redirect, trying ', url\n              r = session.get(url=url, allow_redirects=False)\n\n        if r.status_code ==  404:\n              logerror(\n                  config=config,\n                  text=u'File %s at URL %s is missing' % (filename2,url))\n\n        imagefile.write(r.content)\n        imagefile.close()\n        # saving description if any\n        try:\n            title = u'Image:%s' % (filename)\n            if config['xmlrevisions'] and config['api'] and config['api'].endswith(\"api.php\"):\n                r = session.get(config['api'] + u\"?action=query&export&exportnowrap&titles=%s\" % title)\n                xmlfiledesc = r.text\n            else:\n                xmlfiledesc = getXMLFileDesc(\n                    config=config,\n                    title=title,\n                    session=session)  # use Image: for backwards compatibility\n        except PageMissingError:\n            xmlfiledesc = ''\n            logerror(\n                config=config,\n                text=u'The page \"%s\" was missing in the wiki (probably deleted)' % (title.decode('utf-8'))\n            )\n\n        f = open('%s/%s.desc' % (imagepath, filename2), 'w')\n        # <text xml:space=\"preserve\" bytes=\"36\">Banner featuring SG1, SGA, SGU teams</text>\n        if not re.search(r'</page>', xmlfiledesc):\n            # failure when retrieving desc? then save it as empty .desc\n            xmlfiledesc = ''\n\n        # Fixup the XML\n        if xmlfiledesc is not '' and not re.search(r'</mediawiki>', xmlfiledesc):\n            xmlfiledesc += '</mediawiki>'\n\n        f.write(xmlfiledesc.encode('utf-8'))\n        f.close()\n        delay(config=config, session=session)\n        c += 1\n        if c % 10 == 0:\n            print '    Downloaded %d images' % (c)\n\n    print 'Downloaded %d images' % (c)\n\n\ndef saveLogs(config={}, session=None):\n    \"\"\" Save Special:Log \"\"\"\n    # get all logs from Special:Log\n    \"\"\"parse\n    <select name='type'>\n    <option value=\"block\">Bloqueos de usuarios</option>\n    <option value=\"rights\">Cambios de perfil de usuario</option>\n    <option value=\"protect\" selected=\"selected\">Protecciones de páginas</option>\n    <option value=\"delete\">Registro de borrados</option>\n    <option value=\"newusers\">Registro de creación de usuarios</option>\n    <option value=\"merge\">Registro de fusiones</option>\n    <option value=\"import\">Registro de importaciones</option>\n    <option value=\"patrol\">Registro de revisiones</option>\n    <option value=\"move\">Registro de traslados</option>\n    <option value=\"upload\">Subidas de archivos</option>\n    <option value=\"\">Todos los registros</option>\n    </select>\n    \"\"\"\n    delay(config=config, session=session)\n\n\ndef domain2prefix(config={}, session=None):\n    \"\"\" Convert domain name to a valid prefix filename. \"\"\"\n\n    # At this point, both api and index are supposed to be defined\n    domain = ''\n    if config['api']:\n        domain = config['api']\n    elif config['index']:\n        domain = config['index']\n\n    domain = domain.lower()\n    domain = re.sub(r'(https?://|www\\.|/index\\.php.*|/api\\.php.*)', '', domain)\n    domain = re.sub(r'/', '_', domain)\n    domain = re.sub(r'\\.', '', domain)\n    domain = re.sub(r'[^A-Za-z0-9]', '_', domain)\n\n    return domain\n\n\ndef loadConfig(config={}, configfilename=''):\n    \"\"\" Load config file \"\"\"\n\n    try:\n        with open('%s/%s' % (config['path'], configfilename), 'r') as infile:\n            config = cPickle.load(infile)\n    except:\n        print 'There is no config file. we can\\'t resume. Start a new dump.'\n        sys.exit()\n\n    return config\n\n\ndef saveConfig(config={}, configfilename=''):\n    \"\"\" Save config file \"\"\"\n\n    with open('%s/%s' % (config['path'], configfilename), 'w') as outfile:\n        cPickle.dump(config, outfile)\n\n\ndef welcome():\n    message = ''\n    \"\"\" Opening message \"\"\"\n    message += \"#\" * 73\n    message += \"\"\"\n# Welcome to DumpGenerator %s by WikiTeam (GPL v3)                   #\n# More info at: https://github.com/WikiTeam/wikiteam                    #\"\"\" % (getVersion())\n    message += \"\\n\"\n    message += \"#\" * 73\n    message += \"\\n\"\n    message += ''\n    message += \"\\n\"\n    message += \"#\" * 73\n    message += \"\\n\"\n    message += \"# Copyright (C) 2011-%d WikiTeam developers                           #\\n\" % (datetime.datetime.now().year)\n    message += \"\"\"\n# This program is free software: you can redistribute it and/or modify  #\n# it under the terms of the GNU General Public License as published by  #\n# the Free Software Foundation, either version 3 of the License, or     #\n# (at your option) any later version.                                   #\n#                                                                       #\n# This program is distributed in the hope that it will be useful,       #\n# but WITHOUT ANY WARRANTY; without even the implied warranty of        #\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         #\n# GNU General Public License for more details.                          #\n#                                                                       #\n# You should have received a copy of the GNU General Public License     #\n# along with this program.  If not, see <http://www.gnu.org/licenses/>. #\"\"\"\n    message += \"\\n\"\n    message += \"#\" * 73\n    message += \"\\n\"\n    message += ''\n\n    return message\n\n\ndef bye():\n    \"\"\" Closing message \"\"\"\n    print \"---> Congratulations! Your dump is complete <---\"\n    print \"If you found any bug, report a new issue here: https://github.com/WikiTeam/wikiteam/issues\"\n    print \"If this is a public wiki, please, consider publishing this dump. Do it yourself as explained in https://github.com/WikiTeam/wikiteam/wiki/Tutorial#Publishing_the_dump or contact us at https://github.com/WikiTeam/wikiteam\"\n    print \"Good luck! Bye!\"\n\n\ndef getParameters(params=[]):\n    if not params:\n        params = sys.argv\n\n    parser = argparse.ArgumentParser(description='')\n\n    # General params\n    parser.add_argument(\n        '-v', '--version', action='version', version=getVersion())\n    parser.add_argument(\n        '--cookies', metavar=\"cookies.txt\", help=\"path to a cookies.txt file\")\n    parser.add_argument(\n        '--delay',\n        metavar=5,\n        default=0,\n        type=float,\n        help=\"adds a delay (in seconds)\")\n    parser.add_argument(\n        '--retries',\n        metavar=5,\n        default=5,\n        help=\"Maximum number of retries for \")\n    parser.add_argument('--path', help='path to store wiki dump at')\n    parser.add_argument(\n        '--resume',\n        action='store_true',\n        help='resumes previous incomplete dump (requires --path)')\n    parser.add_argument('--force', action='store_true', help='')\n    parser.add_argument(\n        '--user', help='Username if authentication is required.')\n    parser.add_argument(\n        '--pass',\n        dest='password',\n        help='Password if authentication is required.')\n\n    # URL params\n    groupWikiOrAPIOrIndex = parser.add_argument_group()\n    groupWikiOrAPIOrIndex.add_argument(\n        'wiki',\n        default='',\n        nargs='?',\n        help=\"URL to wiki (e.g. http://wiki.domain.org)\")\n    groupWikiOrAPIOrIndex.add_argument(\n        '--api',\n        help=\"URL to API (e.g. http://wiki.domain.org/w/api.php)\")\n    groupWikiOrAPIOrIndex.add_argument(\n        '--index',\n        help=\"URL to index.php (e.g. http://wiki.domain.org/w/index.php)\")\n\n    # Download params\n    groupDownload = parser.add_argument_group(\n        'Data to download',\n        'What info download from the wiki')\n    groupDownload.add_argument(\n        '--xml',\n        action='store_true',\n        help=\"generates a full history XML dump (--xml --curonly for current revisions only)\")\n    groupDownload.add_argument('--curonly', action='store_true',\n        help='store only the current version of pages')\n    groupDownload.add_argument('--xmlrevisions', action='store_true',\n                               help='download all revisions from an API generator. MediaWiki 1.27+ only.')\n    groupDownload.add_argument(\n        '--images', action='store_true', help=\"generates an image dump\")\n    groupDownload.add_argument(\n        '--namespaces',\n        metavar=\"1,2,3\",\n        help='comma-separated value of namespaces to include (all by default)')\n    groupDownload.add_argument(\n        '--exnamespaces',\n        metavar=\"1,2,3\",\n        help='comma-separated value of namespaces to exclude')\n\n    # Meta info params\n    groupMeta = parser.add_argument_group(\n        'Meta info',\n        'What meta info to retrieve from the wiki')\n    groupMeta.add_argument(\n        '--get-wiki-engine',\n        action='store_true',\n        help=\"returns the wiki engine\")\n    groupMeta.add_argument(\n        '--failfast',\n        action='store_true',\n        help=\"Avoid resuming, discard failing wikis quickly. Useful only for mass downloads.\")\n\n    args = parser.parse_args()\n    # print args\n\n    # Don't mix download params and meta info params\n    if (args.xml or args.images) and \\\n            (args.get_wiki_engine):\n        print 'ERROR: Don\\'t mix download params and meta info params'\n        parser.print_help()\n        sys.exit(1)\n\n    # No download params and no meta info params? Exit\n    if (not args.xml and not args.images) and \\\n            (not args.get_wiki_engine):\n        print 'ERROR: Use at least one download param or meta info param'\n        parser.print_help()\n        sys.exit(1)\n\n    # Execute meta info params\n    if args.wiki:\n        if args.get_wiki_engine:\n            print getWikiEngine(url=args.wiki)\n            sys.exit()\n\n    # Create session\n    cj = cookielib.MozillaCookieJar()\n    if args.cookies:\n        cj.load(args.cookies)\n        print 'Using cookies from %s' % args.cookies\n\n    session = requests.Session()\n    try:\n        from requests.packages.urllib3.util.retry import Retry\n        from requests.adapters import HTTPAdapter\n        # Courtesy datashaman https://stackoverflow.com/a/35504626\n        __retries__ = Retry(total=5,\n                        backoff_factor=2,\n                        status_forcelist=[500, 502, 503, 504])\n        session.mount('https://', HTTPAdapter(max_retries=__retries__))\n        session.mount('http://', HTTPAdapter(max_retries=__retries__))\n    except:\n        # Our urllib3/requests is too old\n        pass\n    session.cookies = cj\n    session.headers.update({'User-Agent': getUserAgent()})\n    if args.user and args.password:\n        session.auth = (args.user, args.password)\n\n    # check URLs\n    for url in [args.api, args.index, args.wiki]:\n        if url and (not url.startswith('http://') and not url.startswith('https://')):\n            print url\n            print 'ERROR: URLs must start with http:// or https://\\n'\n            parser.print_help()\n            sys.exit(1)\n\n    # Get API and index and verify\n    api = args.api and args.api or ''\n    index = args.index and args.index or ''\n    if api == '' or index == '':\n        if args.wiki:\n            if getWikiEngine(args.wiki) == 'MediaWiki':\n                api2, index2 = mwGetAPIAndIndex(args.wiki)\n                if not api:\n                    api = api2\n                if not index:\n                    index = index2\n            else:\n                print 'ERROR: Unsupported wiki. Wiki engines supported are: MediaWiki'\n                sys.exit(1)\n        else:\n            if api == '':\n                pass\n            elif index == '':\n                index = '/'.join(api.split('/')[:-1]) + '/index.php'\n\n    # print api\n    # print index\n    index2 = None\n\n    if api:\n        check, checkedapi = checkRetryAPI(api, args.retries, args.xmlrevisions, session)\n\n    if api and check:\n        # Replace the index URL we got from the API check\n        index2 = check[1]\n        api = checkedapi\n        print 'API is OK: ' + checkedapi\n    else:\n        if index and not args.wiki:\n            print 'API not available. Trying with index.php only.'\n            args.api = None\n        else:\n            print 'Error in API. Please, provide a correct path to API'\n            sys.exit(1)\n\n    if index and checkIndex(\n            index=index,\n            cookies=args.cookies,\n            session=session):\n        print 'index.php is OK'\n    else:\n        index = index2\n        if index and index.startswith('//'):\n            index = args.wiki.split('//')[0] + index\n        if index and checkIndex(\n                index=index,\n                cookies=args.cookies,\n                session=session):\n            print 'index.php is OK'\n        else:\n            try:\n                index = '/'.join(index.split('/')[:-1])\n            except AttributeError:\n                index = None\n            if index and checkIndex(\n                    index=index,\n                    cookies=args.cookies,\n                    session=session):\n                print 'index.php is OK'\n            else:\n                print 'Error in index.php.'\n                if not args.xmlrevisions:\n                    print 'Please, provide a correct path to index.php or use --xmlrevisions. Terminating.'\n                    sys.exit(1)\n\n    # check user and pass (one requires both)\n    if (args.user and not args.password) or (args.password and not args.user):\n        print 'ERROR: Both --user and --pass are required for authentication.'\n        parser.print_help()\n        sys.exit(1)\n\n    namespaces = ['all']\n    exnamespaces = []\n    # Process namespace inclusions\n    if args.namespaces:\n        # fix, why - ?  and... --namespaces= all with a space works?\n        if re.search(\n                r'[^\\d, \\-]',\n                args.namespaces) and args.namespaces.lower() != 'all':\n            print \"Invalid namespace values.\\nValid format is integer(s) separated by commas\"\n            sys.exit()\n        else:\n            ns = re.sub(' ', '', args.namespaces)\n            if ns.lower() == 'all':\n                namespaces = ['all']\n            else:\n                namespaces = [int(i) for i in ns.split(',')]\n\n    # Process namespace exclusions\n    if args.exnamespaces:\n        if re.search(r'[^\\d, \\-]', args.exnamespaces):\n            print \"Invalid namespace values.\\nValid format is integer(s) separated by commas\"\n            sys.exit(1)\n        else:\n            ns = re.sub(' ', '', args.exnamespaces)\n            if ns.lower() == 'all':\n                print 'You cannot exclude all namespaces.'\n                sys.exit(1)\n            else:\n                exnamespaces = [int(i) for i in ns.split(',')]\n\n    # --curonly requires --xml\n    if args.curonly and not args.xml:\n        print \"--curonly requires --xml\\n\"\n        parser.print_help()\n        sys.exit(1)\n\n    config = {\n        'curonly': args.curonly,\n        'date': datetime.datetime.now().strftime('%Y%m%d'),\n        'api': api,\n        'failfast': args.failfast,\n        'http_method': \"POST\",\n        'index': index,\n        'images': args.images,\n        'logs': False,\n        'xml': args.xml,\n        'xmlrevisions': args.xmlrevisions,\n        'namespaces': namespaces,\n        'exnamespaces': exnamespaces,\n        'path': args.path and os.path.normpath(args.path) or '',\n        'cookies': args.cookies or '',\n        'delay': args.delay,\n        'retries': int(args.retries),\n    }\n\n    other = {\n        'resume': args.resume,\n        'filenamelimit': 100,  # do not change\n        'force': args.force,\n        'session': session\n    }\n\n    # calculating path, if not defined by user with --path=\n    if not config['path']:\n        config['path'] = './%s-%s-wikidump' % (domain2prefix(config=config, session=session), config['date'])\n\n    return config, other\n\n\ndef checkRetryAPI(api=None, retries=5, apiclient=False, session=None):\n    \"\"\" Call checkAPI and mwclient if necessary \"\"\"\n    retry = 0\n    retrydelay = 20\n    check = None\n    while retry < retries:\n        try:\n            check = checkAPI(api, session=session)\n            break\n        except requests.exceptions.ConnectionError as e:\n            print 'Connection error: %s'%(str(e))\n            retry += 1\n            print \"Start retry attempt %d in %d seconds.\"%(retry+1, retrydelay)\n            time.sleep(retrydelay)\n\n    if check and apiclient:\n        apiurl = urlparse(api)\n        try:\n            site = mwclient.Site(apiurl.netloc, apiurl.path.replace(\"api.php\", \"\"), scheme=apiurl.scheme)\n        except KeyError:\n            # Probably KeyError: 'query'\n            if apiurl.scheme == \"https\":\n                newscheme = \"http\"\n                api = api.replace(\"https://\", \"http://\")\n            else:\n                newscheme = \"https\"\n                api = api.replace(\"http://\", \"https://\")\n            print(\"WARNING: The provided API URL did not work with mwclient. Switched protocol to: {}\".format(newscheme))\n\n            try:\n                site = mwclient.Site(apiurl.netloc, apiurl.path.replace(\"api.php\", \"\"), scheme=newscheme)\n            except KeyError:\n                check = False\n\n    return check, api\n\ndef checkAPI(api=None, session=None):\n    \"\"\" Checking API availability \"\"\"\n    global cj\n    # handle redirects\n    for i in range(4):\n        print 'Checking API...', api\n        r = session.get(\n            url=api,\n            params={\n                'action': 'query',\n                'meta': 'siteinfo',\n                'format': 'json'},\n            timeout=30\n        )\n        if r.status_code == 200:\n            break\n        elif r.status_code < 400:\n            p = r.url\n            api = urlunparse([p.scheme, p.netloc, p.path, '', '', ''])\n        elif r.status_code > 400:\n            print \"MediaWiki API URL not found or giving error: HTTP %d\" % r.status_code\n            return False\n    if \"MediaWiki API is not enabled for this site.\" in r.text:\n        return False\n    try:\n        result = getJSON(r)\n        index = None\n        if result:\n            try:\n                index = result['query']['general']['server'] + \\\n                    result['query']['general']['script']\n                return ( True, index, api )\n            except KeyError:\n                print \"MediaWiki API seems to work but returned no index URL\"\n                return (True, None, api)\n    except ValueError:\n        print repr(r.text)\n        print \"MediaWiki API returned data we could not parse\"\n        return False\n    return False\n\n\ndef checkIndex(index=None, cookies=None, session=None):\n    \"\"\" Checking index.php availability \"\"\"\n    r = session.post(url=index, data={'title': 'Special:Version'}, timeout=30)\n    if r.status_code >= 400:\n        print(\"ERROR: The wiki returned status code HTTP {}\".format(r.status_code))\n        return False\n    raw = r.text\n    print 'Checking index.php...', index\n    # Workaround for issue 71\n    if re.search(\n            r'(Special:Badtitle</a>|class=\"permissions-errors\"|\"wgCanonicalSpecialPageName\":\"Badtitle\"|Login Required</h1>)',\n            raw) and not cookies:\n        print \"ERROR: This wiki requires login and we are not authenticated\"\n        return False\n    if re.search(\n            r'(page-Index_php|\"wgPageName\":\"Index.php\"|\"firstHeading\"><span dir=\"auto\">Index.php</span>)',\n            raw):\n        print \"Looks like the page called Index.php, not index.php itself\"\n        return False\n    if re.search(\n            r'(This wiki is powered by|<h2 id=\"mw-version-license\">|meta name=\"generator\" content=\"MediaWiki)',\n            raw):\n        return True\n    return False\n\n\ndef removeIP(raw=''):\n    \"\"\" Remove IP from HTML comments <!-- --> \"\"\"\n\n    raw = re.sub(r'\\d+\\.\\d+\\.\\d+\\.\\d+', '0.0.0.0', raw)\n    # http://www.juniper.net/techpubs/software/erx/erx50x/swconfig-routing-vol1/html/ipv6-config5.html\n    # weird cases as :: are not included\n    raw = re.sub(\n        r'(?i)[\\da-f]{0,4}:[\\da-f]{0,4}:[\\da-f]{0,4}:[\\da-f]{0,4}:[\\da-f]{0,4}:[\\da-f]{0,4}:[\\da-f]{0,4}:[\\da-f]{0,4}',\n        '0:0:0:0:0:0:0:0',\n        raw)\n\n    return raw\n\n\ndef getJSON(request):\n    \"\"\"Strip Unicode BOM\"\"\"\n    if request.text.startswith(u'\\ufeff'):\n        request.encoding = 'utf-8-sig'\n    try:\n        return request.json()\n    except:\n        # Maybe an older API version which did not return correct JSON\n        return {}\n\n\ndef fixBOM(request):\n    \"\"\"Strip Unicode BOM\"\"\"\n    if request.text.startswith(u'\\ufeff'):\n        request.encoding = 'utf-8-sig'\n    return request.text\n\n\ndef checkXMLIntegrity(config={}, titles=[], session=None):\n    \"\"\" Check XML dump integrity, to detect broken XML chunks \"\"\"\n    return\n\n    print 'Verifying dump...'\n    checktitles = 0\n    checkpageopen = 0\n    checkpageclose = 0\n    checkrevisionopen = 0\n    checkrevisionclose = 0\n    for line in file(\n            '%s/%s-%s-%s.xml' %\n            (config['path'],\n             domain2prefix(\n                config=config,\n                session=session),\n                config['date'],\n                config['curonly'] and 'current' or 'history'),\n            'r').read().splitlines():\n        if \"<revision>\" in line:\n            checkrevisionopen += 1\n        elif \"</revision>\" in line:\n            checkrevisionclose += 1\n        elif \"<page>\" in line:\n            checkpageopen += 1\n        elif \"</page>\" in line:\n            checkpageclose += 1\n        elif \"<title>\" in line:\n            checktitles += 1\n        else:\n            continue\n    if (checktitles == checkpageopen and checktitles == checkpageclose and checkrevisionopen == checkrevisionclose):\n        pass\n    else:\n        print 'XML dump seems to be corrupted.'\n        reply = ''\n        if config['failfast']:\n            reply = 'yes'\n        while reply.lower() not in ['yes', 'y', 'no', 'n']:\n            reply = raw_input('Regenerate a new dump ([yes, y], [no, n])? ')\n        if reply.lower() in ['yes', 'y']:\n            generateXMLDump(config=config, titles=titles, session=session)\n        elif reply.lower() in ['no', 'n']:\n            print 'Not generating a new dump.'\n\n\ndef createNewDump(config={}, other={}):\n    images = []\n    print 'Trying generating a new dump into a new directory...'\n    if config['xml']:\n        getPageTitles(config=config, session=other['session'])\n        titles=readTitles(config)\n        generateXMLDump(config=config, titles=titles, session=other['session'])\n        checkXMLIntegrity(\n            config=config,\n            titles=titles,\n            session=other['session'])\n    if config['images']:\n        images += getImageNames(config=config, session=other['session'])\n        saveImageNames(config=config, images=images, session=other['session'])\n        generateImageDump(\n            config=config,\n            other=other,\n            images=images,\n            session=other['session'])\n    if config['logs']:\n        saveLogs(config=config, session=other['session'])\n\n\ndef resumePreviousDump(config={}, other={}):\n    images = []\n    print 'Resuming previous dump process...'\n    if config['xml']:\n        titles=readTitles(config)\n        try:\n            lasttitles = reverse_readline('%s/%s-%s-titles.txt' %\n                ( config['path'],\n                domain2prefix( config=config, session=other['session'] ),\n                config['date'])\n                )\n            lasttitle=lasttitles.next()\n            if lasttitle == '':\n                lasttitle=lasttitles.next()\n        except:\n            lasttitle = ''  # probably file does not exists\n        if lasttitle == '--END--':\n            # titles list is complete\n            print 'Title list was completed in the previous session'\n        else:\n            print 'Title list is incomplete. Reloading...'\n            # do not resume, reload, to avoid inconsistencies, deleted pages or\n            # so\n            getPageTitles(config=config, session=other['session'])\n\n        # checking xml dump\n        xmliscomplete = False\n        lastxmltitle = None\n        try:\n            f = reverse_readline(\n                '%s/%s-%s-%s.xml' %\n                (config['path'],\n                 domain2prefix(\n                    config=config,\n                    session=other['session']),\n                    config['date'],\n                    config['curonly'] and 'current' or 'history'),\n                )\n            for l in f:\n                if l == '</mediawiki>':\n                    # xml dump is complete\n                    xmliscomplete = True\n                    break\n\n                xmltitle = re.search(r'<title>([^<]+)</title>', l)\n                if xmltitle:\n                    lastxmltitle = undoHTMLEntities(text=xmltitle.group(1))\n                    break\n        except:\n            pass  # probably file does not exists\n\n        if xmliscomplete:\n            print 'XML dump was completed in the previous session'\n        elif lastxmltitle:\n            # resuming...\n            print 'Resuming XML dump from \"%s\"' % (lastxmltitle)\n            titles = readTitles(config, start=lastxmltitle)\n            generateXMLDump(\n                config=config,\n                titles=titles,\n                start=lastxmltitle,\n                session=other['session'])\n        else:\n            # corrupt? only has XML header?\n            print 'XML is corrupt? Regenerating...'\n            titles = readTitles(config)\n            generateXMLDump(\n                config=config, titles=titles, session=other['session'])\n\n    if config['images']:\n        # load images\n        lastimage = ''\n        try:\n            f = open(\n                '%s/%s-%s-images.txt' %\n                (config['path'],\n                 domain2prefix(\n                    config=config),\n                    config['date']),\n                'r')\n            raw = unicode(f.read(), 'utf-8').strip()\n            lines = raw.split('\\n')\n            for l in lines:\n                if re.search(r'\\t', l):\n                    images.append(l.split('\\t'))\n            lastimage = lines[-1]\n            f.close()\n        except:\n            pass  # probably file does not exists\n        if lastimage == u'--END--':\n            print 'Image list was completed in the previous session'\n        else:\n            print 'Image list is incomplete. Reloading...'\n            # do not resume, reload, to avoid inconsistencies, deleted images or\n            # so\n            images = getImageNames(config=config, session=other['session'])\n            saveImageNames(config=config, images=images)\n        # checking images directory\n        listdir = []\n        try:\n            listdir = os.listdir('%s/images' % (config['path']))\n        except:\n            pass  # probably directory does not exist\n        listdir.sort()\n        complete = True\n        lastfilename = ''\n        lastfilename2 = ''\n        c = 0\n        for filename, url, uploader in images:\n            lastfilename2 = lastfilename\n            # return always the complete filename, not the truncated\n            lastfilename = filename\n            filename2 = filename\n            if len(filename2) > other['filenamelimit']:\n                filename2 = truncateFilename(other=other, filename=filename2)\n            if filename2 not in listdir:\n                complete = False\n                break\n            c += 1\n        print '%d images were found in the directory from a previous session' % (c)\n        if complete:\n            # image dump is complete\n            print 'Image dump was completed in the previous session'\n        else:\n            # we resume from previous image, which may be corrupted (or missing\n            # .desc)  by the previous session ctrl-c or abort\n            generateImageDump(\n                config=config,\n                other=other,\n                images=images,\n                start=lastfilename2,\n                session=other['session'])\n\n    if config['logs']:\n        # fix\n        pass\n\n\ndef saveSpecialVersion(config={}, session=None):\n    \"\"\" Save Special:Version as .html, to preserve extensions details \"\"\"\n\n    if os.path.exists('%s/Special:Version.html' % (config['path'])):\n        print 'Special:Version.html exists, do not overwrite'\n    else:\n        print 'Downloading Special:Version with extensions and other related info'\n        r = session.post(\n            url=config['index'], params={'title': 'Special:Version'}, timeout=10)\n        raw = r.text\n        delay(config=config, session=session)\n        raw = removeIP(raw=raw)\n        with open('%s/Special:Version.html' % (config['path']), 'w') as outfile:\n            outfile.write(raw.encode('utf-8'))\n\n\ndef saveIndexPHP(config={}, session=None):\n    \"\"\" Save index.php as .html, to preserve license details available at the botom of the page \"\"\"\n\n    if os.path.exists('%s/index.html' % (config['path'])):\n        print 'index.html exists, do not overwrite'\n    else:\n        print 'Downloading index.php (Main Page) as index.html'\n        r = session.post(url=config['index'], params={}, timeout=10)\n        raw = r.text\n        delay(config=config, session=session)\n        raw = removeIP(raw=raw)\n        with open('%s/index.html' % (config['path']), 'w') as outfile:\n            outfile.write(raw.encode('utf-8'))\n\ndef saveSiteInfo(config={}, session=None):\n    \"\"\" Save a file with site info \"\"\"\n\n    if config['api']:\n        if os.path.exists('%s/siteinfo.json' % (config['path'])):\n            print 'siteinfo.json exists, do not overwrite'\n        else:\n            print 'Downloading site info as siteinfo.json'\n\n            # MediaWiki 1.13+\n            r = session.get(\n                url=config['api'],\n                params={\n                    'action': 'query',\n                    'meta': 'siteinfo',\n                    'siprop': 'general|namespaces|statistics|dbrepllag|interwikimap|namespacealiases|specialpagealiases|usergroups|extensions|skins|magicwords|fileextensions|rightsinfo',\n                    'sinumberingroup': 1,\n                    'format': 'json'},\n                timeout=10)\n            # MediaWiki 1.11-1.12\n            if not 'query' in getJSON(r):\n                r = session.get(\n                    url=config['api'],\n                    params={\n                        'action': 'query',\n                        'meta': 'siteinfo',\n                        'siprop': 'general|namespaces|statistics|dbrepllag|interwikimap',\n                        'format': 'json'},\n                    timeout=10)\n            # MediaWiki 1.8-1.10\n            if not 'query' in getJSON(r):\n                r = session.get(\n                    url=config['api'],\n                    params={\n                        'action': 'query',\n                        'meta': 'siteinfo',\n                        'siprop': 'general|namespaces',\n                        'format': 'json'},\n                    timeout=10)\n            result = getJSON(r)\n            delay(config=config, session=session)\n            with open('%s/siteinfo.json' % (config['path']), 'w') as outfile:\n                outfile.write(json.dumps(result, indent=4, sort_keys=True))\n\n\ndef avoidWikimediaProjects(config={}, other={}):\n    \"\"\" Skip Wikimedia projects and redirect to the dumps website \"\"\"\n\n    # notice about wikipedia dumps\n    url = ''\n    if config['api']:\n        url = url + config['api']\n    if config['index']:\n        url = url + config['index']\n    if re.findall(\n            r'(?i)(wikipedia|wikisource|wiktionary|wikibooks|wikiversity|wikimedia|wikispecies|wikiquote|wikinews|wikidata|wikivoyage)\\.org',\n            url):\n        print 'PLEASE, DO NOT USE THIS SCRIPT TO DOWNLOAD WIKIMEDIA PROJECTS!'\n        print 'Download the dumps from http://dumps.wikimedia.org'\n        if not other['force']:\n            print 'Thanks!'\n            sys.exit()\n\n\ndef getWikiEngine(url=''):\n    \"\"\" Returns the wiki engine of a URL, if known \"\"\"\n\n    session = requests.Session()\n    session.headers.update({'User-Agent': getUserAgent()})\n    r = session.post(url=url, timeout=30)\n    if r.status_code == 405 or r.text == '':\n        r = session.get(url=url, timeout=120)\n    result = r.text\n\n    wikiengine = 'Unknown'\n    if re.search(\n            ur'(?im)(<meta name=\"generator\" content=\"DokuWiki)|dokuwiki__site',\n            result):\n        wikiengine = 'DokuWiki'\n    elif re.search(ur'(?im)(alt=\"Powered by MediaWiki\"|<meta name=\"generator\" content=\"MediaWiki)', result):\n        wikiengine = 'MediaWiki'\n    elif re.search(ur'(?im)(>MoinMoin Powered</a>|<option value=\"LocalSiteMap\">)', result):\n        wikiengine = 'MoinMoin'\n    elif re.search(ur'(?im)(twikiCurrentTopicLink|twikiCurrentWebHomeLink|twikiLink)', result):\n        wikiengine = 'TWiki'\n    elif re.search(ur'(?im)(<!--PageHeaderFmt-->)', result):\n        wikiengine = 'PmWiki'\n    elif re.search(ur'(?im)(<meta name=\"generator\" content=\"PhpWiki|<meta name=\"PHPWIKI_VERSION)', result):\n        wikiengine = 'PhpWiki'\n    elif re.search(ur'(?im)(<meta name=\"generator\" content=\"Tiki Wiki|Powered by <a href=\"http://(www\\.)?tiki\\.org\"| id=\"tiki-(top|main)\")', result):\n        wikiengine = 'TikiWiki'\n    elif re.search(ur'(?im)(foswikiNoJs|<meta name=\"foswiki\\.|foswikiTable|foswikiContentFooter)', result):\n        wikiengine = 'FosWiki'\n    elif re.search(ur'(?im)(<meta http-equiv=\"powered by\" content=\"MojoMojo)', result):\n        wikiengine = 'MojoMojo'\n    elif re.search(ur'(?im)(id=\"xwiki(content|nav_footer|platformversion|docinfo|maincontainer|data)|/resources/js/xwiki/xwiki|XWiki\\.webapppath)', result):\n        wikiengine = 'XWiki'\n    elif re.search(ur'(?im)(<meta id=\"confluence-(base-url|context-path)\")', result):\n        wikiengine = 'Confluence'\n    elif re.search(ur'(?im)(<meta name=\"generator\" content=\"Banana Dance)', result):\n        wikiengine = 'Banana Dance'\n    elif re.search(ur'(?im)(Wheeled by <a class=\"external-link\" href=\"http://www\\.wagn\\.org\">|<body id=\"wagn\">)', result):\n        wikiengine = 'Wagn'\n    elif re.search(ur'(?im)(<meta name=\"generator\" content=\"MindTouch)', result):\n        wikiengine = 'MindTouch'  # formerly DekiWiki\n    elif re.search(ur'(?im)(<div class=\"wikiversion\">\\s*(<p>)?JSPWiki|xmlns:jspwiki=\"http://www\\.jspwiki\\.org\")', result):\n        wikiengine = 'JSPWiki'\n    elif re.search(ur'(?im)(Powered by:?\\s*(<br ?/>)?\\s*<a href=\"http://kwiki\\.org\">|\\bKwikiNavigation\\b)', result):\n        wikiengine = 'Kwiki'\n    elif re.search(ur'(?im)(Powered by <a href=\"http://www\\.anwiki\\.com\")', result):\n        wikiengine = 'Anwiki'\n    elif re.search(ur'(?im)(<meta name=\"generator\" content=\"Aneuch|is powered by <em>Aneuch</em>|<!-- start of Aneuch markup -->)', result):\n        wikiengine = 'Aneuch'\n    elif re.search(ur'(?im)(<meta name=\"generator\" content=\"bitweaver)', result):\n        wikiengine = 'bitweaver'\n    elif re.search(ur'(?im)(powered by <a href=\"[^\"]*\\bzwiki.org(/[^\"]*)?\">)', result):\n        wikiengine = 'Zwiki'\n    # WakkaWiki forks\n    elif re.search(ur'(?im)(<meta name=\"generator\" content=\"WikkaWiki|<a class=\"ext\" href=\"(http://wikka\\.jsnx\\.com/|http://wikkawiki\\.org/)\">)', result):\n        wikiengine = 'WikkaWiki'  # formerly WikkaWakkaWiki\n    elif re.search(ur'(?im)(<meta name=\"generator\" content=\"CoMa Wiki)', result):\n        wikiengine = 'CoMaWiki'\n    elif re.search(ur'(?im)(Fonctionne avec <a href=\"http://www\\.wikini\\.net)', result):\n        wikiengine = 'WikiNi'\n    elif re.search(ur'(?im)(Powered by <a href=\"[^\"]*CitiWiki\">CitiWiki</a>)', result):\n        wikiengine = 'CitiWiki'\n    elif re.search(ur'(?im)(Powered by <a href=\"http://wackowiki\\.com/|title=\"WackoWiki\")', result):\n        wikiengine = 'WackoWiki'\n    elif re.search(ur'(?im)(Powered by <a href=\"http://www\\.wakkawiki\\.com)', result):\n        # This may not work for heavily modded/themed installations, e.g.\n        # http://operawiki.info/\n        wikiengine = 'WakkaWiki'\n    # Custom wikis used by wiki farms\n    elif re.search(ur'(?im)(var wikispaces_page|<div class=\"WikispacesContent)', result):\n        wikiengine = 'Wikispaces'\n    elif re.search(ur'(?im)(Powered by <a href=\"http://www\\.wikidot\\.com\">|wikidot-privacy-button-hovertip|javascript:WIKIDOT\\.page)', result):\n        wikiengine = 'Wikidot'\n    elif re.search(ur'(?im)(IS_WETPAINT_USER|wetpaintLoad|WPC-bodyContentContainer)', result):\n        wikiengine = 'Wetpaint'\n    elif re.search(ur'(?im)(<div id=\"footer-pbwiki\">|ws-nav-search|PBinfo *= *{)', result):\n        # formerly PBwiki\n        wikiengine = 'PBworks'\n    # if wikiengine == 'Unknown': print result\n\n    return wikiengine\n\n\ndef mwGetAPIAndIndex(url=''):\n    \"\"\" Returns the MediaWiki API and Index.php \"\"\"\n\n    api = ''\n    index = ''\n    session = requests.Session()\n    session.headers.update({'User-Agent': getUserAgent()})\n    r = session.post(url=url, timeout=120)\n    result = r.text\n\n    # API\n    m = re.findall(\n        ur'(?im)<\\s*link\\s*rel=\"EditURI\"\\s*type=\"application/rsd\\+xml\"\\s*href=\"([^>]+?)\\?action=rsd\"\\s*/\\s*>',\n        result)\n    if m:\n        api = m[0]\n        if api.startswith('//'):  # gentoo wiki\n            api = url.split('//')[0] + api\n    else:\n        pass  # build API using index and check it\n\n    # Index.php\n    m = re.findall(\n        ur'<li id=\"ca-viewsource\"[^>]*?>\\s*(?:<span>)?\\s*<a href=\"([^\\?]+?)\\?',\n        result)\n    if m:\n        index = m[0]\n    else:\n        m = re.findall(\n            ur'<li id=\"ca-history\"[^>]*?>\\s*(?:<span>)?\\s*<a href=\"([^\\?]+?)\\?',\n            result)\n        if m:\n            index = m[0]\n    if index:\n        if index.startswith('/'):\n            index = '/'.join(api.split('/')[:-1]) + '/' + index.split('/')[-1]\n    else:\n        if api:\n            if len(\n                re.findall(\n                    ur'/index\\.php5\\?',\n                    result)) > len(\n                re.findall(\n                    ur'/index\\.php\\?',\n                    result)):\n                index = '/'.join(api.split('/')[:-1]) + '/index.php5'\n            else:\n                index = '/'.join(api.split('/')[:-1]) + '/index.php'\n\n    return api, index\n\n\ndef main(params=[]):\n    \"\"\" Main function \"\"\"\n    configfilename = 'config.txt'\n    config, other = getParameters(params=params)\n    avoidWikimediaProjects(config=config, other=other)\n\n    print welcome()\n    print 'Analysing %s' % (config['api'] and config['api'] or config['index'])\n\n    # creating path or resuming if desired\n    c = 2\n    # to avoid concat blabla-2, blabla-2-3, and so on...\n    originalpath = config['path']\n    # do not enter if resume is requested from begining\n    while not other['resume'] and os.path.isdir(config['path']):\n        print '\\nWarning!: \"%s\" path exists' % (config['path'])\n        reply = ''\n        if config['failfast']:\n            retry = 'yes'\n        while reply.lower() not in ['yes', 'y', 'no', 'n']:\n            reply = raw_input(\n                'There is a dump in \"%s\", probably incomplete.\\nIf you choose resume, to avoid conflicts, the parameters you have chosen in the current session will be ignored\\nand the parameters available in \"%s/%s\" will be loaded.\\nDo you want to resume ([yes, y], [no, n])? ' %\n                (config['path'],\n                 config['path'],\n                    configfilename))\n        if reply.lower() in ['yes', 'y']:\n            if not os.path.isfile('%s/%s' % (config['path'], configfilename)):\n                print 'No config file found. I can\\'t resume. Aborting.'\n                sys.exit()\n            print 'You have selected: YES'\n            other['resume'] = True\n            break\n        elif reply.lower() in ['no', 'n']:\n            print 'You have selected: NO'\n            other['resume'] = False\n        config['path'] = '%s-%d' % (originalpath, c)\n        print 'Trying to use path \"%s\"...' % (config['path'])\n        c += 1\n\n    if other['resume']:\n        print 'Loading config file...'\n        config = loadConfig(config=config, configfilename=configfilename)\n    else:\n        os.mkdir(config['path'])\n        saveConfig(config=config, configfilename=configfilename)\n\n    if other['resume']:\n        resumePreviousDump(config=config, other=other)\n    else:\n        createNewDump(config=config, other=other)\n\n    saveIndexPHP(config=config, session=other['session'])\n    saveSpecialVersion(config=config, session=other['session'])\n    saveSiteInfo(config=config, session=other['session'])\n    bye()\n\nif __name__ == \"__main__\":\n    main()"
  },
  {
    "path": "resources/data/fandom/elite_dangerousfandomcom-20220527-wikidump/config.txt",
    "content": "(dp1\nS'xml'\np2\nI01\nsS'index'\np3\nS'https://elite-dangerous.fandom.com/index.php'\np4\nsS'cookies'\np5\nS''\nsS'logs'\np6\nI00\nsS'xmlrevisions'\np7\nI00\nsS'curonly'\np8\nI01\nsS'exnamespaces'\np9\n(lp10\nsS'delay'\np11\nF1\nsS'images'\np12\nI01\nsS'api'\np13\nS'https://elite-dangerous.fandom.com/api.php'\np14\nsS'http_method'\np15\nS'POST'\np16\nsS'namespaces'\np17\n(lp18\nS'all'\np19\nasS'date'\np20\nS'20220527'\np21\nsS'path'\np22\nS'./elite_dangerousfandomcom-20220527-wikidump'\np23\nsS'retries'\np24\nI5\nsS'failfast'\np25\nI00\ns."
  },
  {
    "path": "resources/data/fandom/elite_dangerousfandomcom-20220527-wikidump/elite_dangerousfandomcom-20220527-titles.txt",
    "content": "(307261) 2002 MS4\n17 Draconis\n39 Tauri\n3D Food Printer\n78 Ursae Majoris\n90482 Orcus\nACS Overwatch\nACT\nAFM Refill\nAI Relics\nARX\nATR\nAX Combat Logs\nAX Conflict Zone\nAX Missile Rack\nAX Multi-cannon\nAX Xeno Scanner\nAZB2/H002255/SC-01\nAZ Cancri Formula 42\nA Lavigny-Duval\nAanya Gupta\nAaron Whyte\nAberrant Shield Pattern Analysis\nAbnormal Compact Emissions Data\nAbrasion Blaster\nAccess Corridor\nAccident Logs\nAchenar\nAchenar/Capitol\nAchenar/Dawes Hub\nAchenar 6d\nAcheron\nAchievements\nAchilles' Altar\nAchilles's Altar\nAchilles Corporation\nAchilles Robotics\nAckwada\nAcronyms & Slang\nAcropolis\nActive Power Source\nAdalyn Cross\nAdam Woods\nAdamastor\nAdaptive Encryptors Capture\nAdded Melee Damage\nAdder\nAden Tanner\nAdmiral Brice\nAdmiral Kirby\nAdmiral Kracer\nAdmiral Maxton Price\nAdmiral O'Brien\nAdmiral Tanner\nAdmiral Vincent\nAdmiral Yorke\nAdmiral of the Fleet\nAdvanced Catalysers\nAdvanced Discovery Scanner\nAdvanced Docking Computer\nAdvanced Medicines\nAdvanced Missile Rack\nAdvanced Multi-cannon\nAdvanced Planetary Approach Suite\nAdvanced Plasma Accelerator\nAdvanced Tactical Responders\nAdvanced Tactical Response\nAdvocacy\nAegis\nAegis Core\nAegis Research\nAepyornis Egg\nAerogel\nAffiliated Counter-Terrorism unit\nAganippe Rush\nAgri-Medicines\nAgricultural Process Sample\nAgricultural Vessel\nAgronomic Treatment\nAinsley Niven\nAir Quality Reports\nAisling Duval\nAlacarakmo Skin Art\nAlba Tesreau\nAlberto Gereon\nAlbino Quechua Mammoth Meat\nAlcor\nAld\nAldebaran\nAleoida\nAlexandria\nAlexandrite\nAlexei Keel\nAlexei de la Vega\nAlfred Jeffress\nAlfred Ulyanov\nAlgae\nAlgreb Loren\nAlien Crash Site\nAlien Structure\nAlien growths\nAlioth\nAlioth/Donaldson\nAlioth/Turner's World\nAlliance\nAlliance-Sirius strategic defence pact\nAlliance Assembly\nAlliance Challenger\nAlliance Chieftain\nAlliance Crusader\nAlliance Defence Force\nAlliance Festival of Culture\nAlliance Interpol\nAlliance Office of Diplomatic Relations\nAlliance Prime Minister\nAlliance Salvage Guild\nAlliance Tribune\nAlliance of Independent Systems\nAllied Medical Industries\nAllied Police Forces\nAlpha Centauri\nAlpha Centauri/Eden\nAlpha Centauri/Hutton Orbital\nAlpha Centauri/Proxima Centauri\nAltair\nAltairian Skin\nAluminium\nAlya Body Soap\nAmbassador\nAmmo Capacity Chaff Launcher\nAmmo Capacity Heat Sink Launcher\nAmmo Capacity Point Defence\nAmmonia World\nAmphora Plant\nAmrita Ross\nAmundsen Terminal\nAna Quin\nAnaconda\nAnaconda Graveyard\nAnalysis Mode\nAnarchy\nAncient Artefact\nAncient Artifacts\nAncient Casket\nAncient Data Terminal\nAncient Key\nAncient Obelisk\nAncient Orb\nAncient Relic\nAncient Ruins\nAncient Tablet\nAncient Totem\nAncient Urn\nAnders Blaine\nAndrew Bailey\nAndroid\nAndroids\nAndromeda\nAndromedaries\nAnduliga Fire Works\nAnemone\nAnemones\nAngela Corcoran\nAngled Plating\nAnimal Meat\nAnimal Monitors\nAnomalous Bulk Scan Data\nAnomalous FSD Telemetry\nAnomaly Particles\nAntares\nAntares Incident\nAnthony Corvus\nAnti-xeno superweapon\nAnti gravity\nAntimatter Containment Unit\nAntimony\nAntique Jewellery\nAntiquities\nAnton Lagorio\nAntonia Madison\nAny Na Coffee\nApa Vietii\nApex Interstellar Transport\nApril Update\nAquaponic Systems\nAquila's Halo\nArastin Delacroix\nArc Cutter\nArcadian Stream\nArchon Delaine\nArcturus\nArena\nArgent's Claim\nAriane's Pride\nArissa\nArissa Lavigny\nArissa Lavigny-Duval\nAristide Lavigny\nAristide de Lavigny\nArmed Revolt\nArmor\nArmour Hardness\nArmour Pierce Rating\nArmour Rating\nArmoured Power Plant\nArouca Conventual Sweets\nArque\nArsenic\nArt of Elite Dangerous\nArtemis Suit\nArticulation Motors\nArtificial Gravity\nArtificial Structure\nArtificial intelligence\nArx\nAsellus Primus\nAsp\nAsp Explorer\nAsp MkII\nAsp Mk II\nAsp Scout\nAssassin\nAssault Plans\nAssets\nAster Pod\nAster Tree\nAsteria Point\nAsteroid Base\nAsteroid Miner\nAsteroids\nAstrid Minerva-Duval\nAstrogator Tours\nAsura\nAtmospheric Data\nAtmospheric Landings\nAtmospheric Processors\nAtticus Obellan Duval\nAttilius Orbital\nAtypical Disrupted Wake Echoes\nAtypical Encryption Archives\nAudio Logs\nAudio Masking\nAugust Exodus - Jaunt to Jaques\nAugustus Brenquith\nAuto Fabricators\nAuto Field-Maintenance Unit\nAuto Loader\nAutomated Mining Extractor\nAutonomy\nAva Cornelius\nAzeban City\nAzimuth Biochemicals\nAzure Milk\nBackground Simulation\nBackground simulation\nBacterium\nBai Zheng\nBaked Greebles\nBallistics Data\nBaltah'sine Vacuum Krill\nBaltanos\nBanana Nebula NGC 3199\nBank of Zaonce\nBanki Amphbious Leather\nBanki Amphibious Leather\nBankruptcy\nBark Mound\nBark Mounds\nBarnabas Cole\nBarnacle\nBarnacle Seeds\nBarnacles\nBarnard's Loop\nBartender\nBarycenter\nBarycentre\nBasic Conductors\nBasic Discovery Scanner\nBasic Medicines\nBasilisk Variant\nBasking\nBast Snake Gin\nBattle Weapons\nBattle of Achenar\nBattlecruiser\nBattleship\nBauxite\nBeagle Point\nBeagle Point/Beagle Point 2\nBeagle Point Expedition\nBeam Laser\nBedaho\nBeer\nBeginners' Zone\nBelalans Ray Leather\nBell Mollusc\nBeluga Liner\nBenitoite\nBenjamin Chester\nBertrandite\nBeryllium\nBeta-3 Tucani\nBeta Hydri\nBetelgeuse\nBethany Blake\nBexley Prince\nBeyond\nBgs\nBi-Weave Shield Generator\nBigSix\nBill Turner\nBinary star\nBio-Mechanical Conduits\nBiochemical Agent\nBiodome\nBiological Sample\nBiological Weapon Data\nBiometric Data\nBioreducing Lichen\nBiotech Conductors\nBiowaste\nBirthright Wars\nBismuth\nBlack Box\nBlack Flight\nBlack Holes\nBlack Market\nBlack market\nBlacklist Data\nBlackshadow Productions\nBlast Block\nBlast Resistant Armour\nBlast Resistant Hull Reinforcement Package\nBlast Resistant Shield Booster\nBleia Sector Theory\nBlight\nBlock a Player\nBlood Test Results\nBlue Epaulets\nBlue Epaulettes\nBlue Milk\nBlue Viper Club Clan Dredger\nBonespire Publishing\nBonus Weekend\nBoost Speed\nBootleg Liquor\nBootleg liquor\nBorasetani Pathogenetics\nBoron\nBoss Cells\nBounty\nBounty Hunter\nBounty Hunting\nBounty Voucher\nBounty hunter\nBrad Mitchell\nBrain Tree\nBrain Trees\nBrendan Paul Darius\nBrestla\nBrewer Corp\nBrewer Corporation\nBrice\nBridging the Gap\nBright Sentinel\nBrightlight Training\nBris Dekker\nBromellite\nBronzite Chondrite\nBroo Tarquin\nBryanna Blanco\nBubble Nebula\nBucky Ball Beer Mats\nBuckyball Racing Club\nBuilding Fabricators\nBuilding Schematic\nBulb Mollusc\nBulk Cargo Ship\nBulk Cruiser\nBulkheads\nBullet Mollusc\nBulletin Board\nBulletin Board/Types\nBureau of Galactic Legal Affairs\nBurnham Bile Distillate\nBurst Laser\nButterfly Nebula NGC 2346\nCD-43 11917\nCD-43 11917/Attilius Orbital\nCD-75 Kitten Brand Coffee\nCMM Composite\nCOVAS\nCQC\nCQC Championship\nCQC Championship/Eagle Loadouts\nCQC Championship/F63 Condor Loadouts\nCQC Championship/Imperial Fighter Loadouts\nCQC Championship/Loadout 1\nCQC Championship/Loadout 2\nCQC Championship/Loadout 3\nCQC Championship/Loadout 4\nCQC Championship/Loadout 4 (beta)\nCQC Championship/Loadouts\nCQC Championship/Loadouts/Loadout 1\nCQC Championship/Loadouts/Loadout 2\nCQC Championship/Loadouts/Loadout 3\nCQC Championship/Loadouts/Loadout 4 (beta)\nCQC Championship/Modules\nCQC Championship/Ship loadouts\nCQC Championship/Sidewinder Loadouts\nCQC Championship/Weapons\nCQC tournament\nCactoida\nCadmium\nCaine-Massey\nCaine-Massey Mining Company\nCaine Massey\nCakers\nCalcite Plate\nCalifornia Nebula\nCalifornium\nCambridge\nCamera suite\nCampaign Plans\nCanister\nCannister\nCannon\nCanonn Interstellar Research Group\nCanopus\nCanyons\nCapital\nCapital Ship\nCapital Ship Dock\nCapital Ships\nCapitol\nCapitol (city)\nCapsule Mollusc\nCaptain Danvers\nCarbon\nCarbon Fibre Plating\nCarcosa\nCargo Canister\nCargo Cannister\nCargo Hatch\nCargo Rack\nCargo Rack (Wreckage)\nCargo Scanner\nCargo Scoop\nCarl Simmons\nCarrier\nCarrier Construction Dock\nCarter Armstrong\nCasey Kilpatrick\nCaspian Leopold\nCassia Carvalho\nCast Fossil\nCat's Paw Nebula NGC 6334\nCat Media\nCatherine Carlisle\nCave Nebula\nCedrik Stone\nCeeckia ZQ-L c24-0\nCemiess\nCemiess/Emerald\nCensus Data\nCentauri Mega Gin\nCeramic Composites\nCerberus Plague\nCeremonial Comms\nCeremonial Heike Tea\nCesare Lavigny\nCeti Rabbits\nChae-Won Lee\nChaff\nChaff Launcher\nChalice Pod\nChallenger\nChameleon Cloth\nChancellor\nChannel 07\nCharge Enhanced Power Distributor\nChat\nChat Commands\nChateau De Aegaeon\nCheckpoint\nChemical Catalyst\nChemical Distillery\nChemical Experiment Data\nChemical Formulae\nChemical Inventory\nChemical Manipulators\nChemical Patents\nChemical Process Sample\nChemical Processors\nChemical Sample\nChemical Storage Units\nChemical Superbase\nChemical Waste\nChemical Weapon Data\nCherbones Blood Crystals\nChi Eridani Marine Paste\nChieftain\nChildren of Tothos\nChloe Sedesi\nChris Gregory\nChromium\nChurch of the Eternal Void\nCircuit Board\nCircuit Switch\nCitizen\nCivil Servants\nCivil war\nClassic Entertainment\nClassified Experimental Equipment\nClassified Scan Databanks\nClassified Scan Fragment\nClayakarma\nClean Thrusters\nClient\nClinical Trial Records\nCloning\nClose Encounters Corps\nClose Quarter Combat\nClose Quarter Combat Championship\nClose Quarters Combat\nClose Quarters Combat/Ship loadouts\nClose Quarters Combat/Weapons\nClothing\nCluster Capacitors\nCluster Compound\nClypeus\nCoalition for Legalisation\nCoalsack Nebula\nCobalt\nCobra\nCobra Mk. III\nCobra Mk. IV\nCobra MkIII\nCobra MkIV\nCobra Mk III\nCobra Mk IV\nCocktail Recipes\nCodex\nCoffee\nCollared Pod\nCollective\nCollector Drone\nCollector Limpet Controller\nColm Tornquist\nColonel Bris Dekker\nColonia\nColonia Bridge\nColonia Connection Highway\nColonia Council\nColonia Expansion Initiative\nColonia Region\nColtan\nCombat\nCombat Aftermath\nCombat Bond\nCombat Bond Voucher\nCombat Bonds\nCombat Logging\nCombat Mode\nCombat Movement Speed\nCombat Stabilisers\nCombat Training Material\nCombatant Performance\nComet\nCommand Capital\nCommander\nCommander Chronicles\nCommander Creator\nCommerce\nCommercial Samples\nCommodities\nCommodities/Supply and Demand\nCommodities Market\nCommodity\nComms\nCommunications\nCommunity Expeditions\nCommunity Goal\nCommunity Goals\nCompact Composites\nCompact Library\nCompass\nComponents\nComposition Scanner\nCompound Shielding\nCompression-Liquefied Gas\nCompromised Carrier Signal\nCompromised Nav Beacon\nComputer Components\nConcha\nConcordant Sequence\nConcourse\nConda\nConductive Ceramics\nConductive Components\nConductive Fabrics\nConductive Polymers\nConfigurable Components\nConflict History\nConflict Zone\nConflict Zone (On Foot)\nConflict Zone (Signal Source)\nConflux\nCongressman\nCongressman/List\nCongressmen\nConrad Sterling\nConstantia Torval\nConstanza Noguera\nConstellation\nConstellations\nConstruct\nConstructs\nConsuela Knight\nConsumables\nConsumer Technology\nContainment Missile\nConvoy Beacon\nConvoy Dispersal Pattern\nCopper\nCoquim Spongiform Victuals\nCora Shaw\nCordova Group\nCordycep Growth\nCore Dynamics\nCore Dynamics Composites\nCore Enterprises\nCore Systems\nCorentin Delacroix\nCorinne Macintyre\nCoriolis\nCoriolis Station\nCornelius-Lasky Convention\nCorporation\nCorporations\nCorrosion Resistant Cargo Rack\nCorrosive Shell\nCorvette\nCosmetic\nCosmic State\nCostada Voyager\nCouncil Member\nCouncil of Admirals\nCouncillor\nCountries\nCountry\nCourier\nCqc tournament\nCrab Nebula\nCracked Industrial Firmware\nCrash Site\nCrash Site (On Foot)\nCrashed Thargoid Ship\nCraters\nCredits\nCrescent Nebula\nCrew\nCrime & Punishment\nCrime Sweep\nCriminal Records\nCrimson State Group\nCritical Injury\nCrom\nCrom Silver Fesh\nCrop Harvesters\nCrop Yield Analysis\nCruise Ship\nCrusader\nCryolite\nCrystal Shards\nCrystalline Cluster\nCrystalline Fragments\nCrystalline Shard\nCrystalline Spheres\nCubeo\nCulinary Recipes\nCuthrick Delaney\nCutter\nCyborg\nCyborgs\nCyclops Variant\nCynthia Sideris\nCytoscrambler\nDBE\nDBS\nDG090\nDSS\nDamage Falloff\nDamage Resistance\nDamaged Escape Pod\nDamna Carapaces\nDamon Clarke\nDangerous Games\nDanvers\nDark Wheel\nDarkwater Inc\nData\nData Core\nData Link Scanner\nData Point\nData Point Intel\nData Point Intel Package\nData link scanner\nData point\nData points\nData tower\nDatamined Wake Exceptions\nDav's Hope\nDav Stott\nDavid Braben\nDawes Hub\nDaxton Sung\nDazzle Shell\nDeLacy Spin Ionic MV\nDeath\nDebris Field\nDebug Camera\nDecember Update\nDeciat\nDecoded Emission Data\nDecontamination Limpet Controller\nDeep Charge\nDeep Mantle Sample\nDeep Plating\nDeep Space\nDefence Turrets\nDegraded Emissions\nDegraded Power Regulator\nDelfina Dominguez\nDelines\nDelphi\nDelphine Dumont\nDelta Pavonis\nDelta Phoenicis Palms\nDenton Patreus\nDesign Decision Forum\nDetailed Surface Scanner\nDetention Centre\nDeuringas Truffles\nDevelopment Plans\nDiamondback\nDiamondback Explorer\nDiamondback Scout\nDidi Vatermann\nDigital Designs\nDionysus\nDiplomatic Bag\nDirty Thrusters\nDiscounts\nDiscovery Scanner\nDiso\nDiso Ma Corn\nDispersal Field\nDistant Worlds\nDistant Worlds Expedition\nDistant Worlds II\nDistorted Shield Cycle Recordings\nDistress Beacon\nDistress Call\nDivergent Scan Data\nDocking\nDocking Bay\nDocking Computer\nDolphin\nDomestic Appliances\nDomestic Counter-Terrorism Act\nDominator Suit\nDomino Green\nDonaldson\nDouble Braced\nDouble Shot Weapon\nDrag Drives\nDrag Munition\nDrag Munitions\nDrake-Class Carrier\nDredger\nDredger Clans\nDrive Assist\nDrive Distributors\nDrive Strengthening\nDromi\nDrone\nDrone System\nDrones\nDrug\nDryman's Point\nDukes of Mikunn\nDumbbell Nebula\nDuradrive\nDuradrives\nDurius\nDuty Rota\nDuval\nDylan Sylke\nE-Breach\nE-Type Anomaly\nED:AGF\nED:BRITISH\nED:CHEAT\nED:CHEATING\nED:DISPUTE\nED:FC\nED:FDTOS\nED:FUTURE\nED:GROUPS\nED:NAS\nED:PLAYERG\nED:POLICIES\nED:POLICY\nED:PROFANITY\nED:SHAME\nED:SHAMING\nED:SPECULATE\nED:SPELLING\nED:SWEAR\nED:SWEARING\nED:UTP\nEG Pilots\nEIC\nEMP Grenade\nEX7\nEagle\nEagle's Landing\nEagle Eye\nEagle Mk. II\nEagle Mk. III\nEagle MkII\nEagle Mk II\nEagle Nebula\nEarle Pittman\nEarth\nEarth-like World\nEarth-like world\nEarth Relics\nEast India Company\nEccentric Hyperspace Trajectories\nEconomic Boom\nEconomic Bust\nEden\nEden Apples Of Aerial\nEdgar Santiago\nEdmund Mahon\nEdmund Pierce\nEdward Lewis\nEdwin Espinosa\nEfficient Beam Laser\nEfficient Burst Laser\nEfficient Cannon\nEfficient Multi-cannon\nEfficient Plasma Accelerator\nEfficient Pulse Laser\nEfficient Weapon\nEffie Ratling\nElaine Boyd\nElana Lorax\nEleanor Bresa\nElection\nElectricae\nElectrical Fuse\nElectrical Wiring\nElectrochemical Arrays\nElectromagnet\nElectronic Countermeasure\nElephant's Trunk Nebula\nEleu Thermals\nElevate\nElijah Beck\nElite\nElite: And Here The Wheel\nElite: Dangerous\nElite: Dangerous FAQ\nElite: Dangerous Horizons\nElite: Dangerous Wiki\nElite: Lave Revolution\nElite: Legacy\nElite: Mostly Harmless\nElite: Reclamation\nElite: The Dark Wheel\nElite Dangerous\nElite Dangerous: Arena\nElite Dangerous: Beyond\nElite Dangerous: Docking is Difficult\nElite Dangerous: Horizons\nElite Dangerous: Nemorensis\nElite Dangerous: Odyssey\nElite Dangerous: Premonition\nElite Dangerous: The Next Era\nElite Dangerous: Wanted\nElite Dangerous Battle Cards\nElite Dangerous FAQ\nElite Dangerous Fansites\nElite Dangerous Kickstarter\nElite Dangerous Merchandise\nElite Dangerous Music\nElite Dangerous Newsletter\nElite Dangerous Reception and Awards\nElite Dangerous Role Playing Game\nElite Dangerous Timeline\nElite Dangerous Timeline/34th century\nElite Dangerous Wiki\nElite Encounters RPG\nElite Timeline\nElite Universe\nElite logo\nElite series\nElite universe\nEliza Fernandez\nElizabeth Perez\nEloise Winterstone\nElvira Martuuk\nElysian Shore\nEmerald\nEmerald Treaty\nEmergency Power Cells\nEmil Costada\nEmissive Munitions\nEmmerich Koenig\nEmotes\nEmperor\nEmperor's Dawn\nEmperor's Grace\nEmperors Dawn\nEmpire\nEmpire/Ranks\nEmpire Day\nEmployee Directory\nEmployee Expenses\nEmployee Genetic Data\nEmployee History\nEmpyrean Straits\nEncoded Emissions\nEncoded Materials\nEncrypted Correspondence\nEncrypted Data Storage\nEncrypted Memory Chip\nEndincite\nEnergy Cell\nEnergy Grid Assembly\nEnergylink\nEnforcer Cannon\nEngine Focused Power Distributor\nEngineers\nEnhanced Interrogation Recordings\nEnhanced Low Power Shield Generator\nEnhanced Performance Thrusters\nEnhanced Tracking\nEnzyme Missile Rack\nEol Prou RS-T d3-94\nEotienses\nEotienses A 3\nEpinephrine\nEpoxy Adhesive\nEpsilon Eridani\nEpsilon Eridani/New California\nEpsilon Indi\nEquipment\nEranin\nEranin Pearl Whisky\nErasmus Talbot\nErik Gunnarson\nErin Sangster\nErnesto Rios\nErrant Marches\nError code\nEshu Umbrellas\nEskimo Nebula\nEspionage Material\nEsuseku Caviar\nEta Carinae\nEta Cassiopeiae\nEthan Naylor\nEthan Takahashi\nEthgreze Tea Buds\nEthos\nEtienne Dorn\nEudaemon Anchorage\nEugene Cooper\nEuryale\nEurybia\nEvacuation Protocols\nEvacuation Shelter\nEvent\nEvents\nEverichon\nExbeur\nExceptional Scrambled Emission Data\nExhaust Manifold\nExobiologist\nExopod\nExpanded Capture Arc Frame Shift Drive Interdictor\nExpanded Probe Scanning Radius Scanner\nExperimental Chemicals\nExperimental Effect\nExperimental Habitat\nExperimental effect\nExphiay\nExphiay Bankers' Ball\nExploration Journals\nExplorer\nExplorer's Anchorage\nExplosives\nExplosives Munitions\nExquisite Focus Crystals\nExtra Ammo Capacity\nExtra Backpack Capacity\nExtraction Yield Data\nEye on Achenar\nF63 Condor\nFAQ\nFDL\nFSD\nFSD Injection\nFSD Interdictor\nFSD Interrupt\nFSD Supercharging\nFSD Wake\nFSS Scanner\nFacece\nFaction Associates\nFaction Donator List\nFaction News\nFaction State\nFactions\nFairfax Vision\nFamine\nFansites\nFar God cult\nFarragut\nFarragut-Class Battle Cruiser\nFarragut Battle Cruiser\nFast Charge\nFast Scan Detailed Surface Scanner\nFast Scan Scanner\nFaster Boot Sequence Frame Shift Drive\nFaster Handling\nFaster Shield Regen\nFaulcon DeLacy\nFazia Silva\nFdL\nFed\nFederal\nFederal-Imperial Treaty\nFederal Accord\nFederal Assault Ship\nFederal Attorney's Office\nFederal Cabinet\nFederal Citizen\nFederal Commerce Authority\nFederal Congress\nFederal Corvette\nFederal Criminal Investigations\nFederal Diplomatic Corps\nFederal Dropship\nFederal Dropship Mk. II\nFederal Dropship Mk II\nFederal Fighter\nFederal Flight Control\nFederal Free Press\nFederal Grand Lottery\nFederal Gunship\nFederal High Court\nFederal Intelligence Agency\nFederal Justice Department\nFederal Navy\nFederal Navy Engineering Corps\nFederal President\nFederal Rebellion of 3307\nFederal Security Service\nFederal Times\nFederal Transport Safety Administration\nFederal president\nFederation\nFederation/Ranks\nFederation/Ships\nFederation Presidential Inauguration\nFederation of Star Systems\nFederation of the United States\nFeedback Cascade\nFehu\nFelicia Winters\nFelicity Farseer\nFelix Novantico\nFemi Dakarai\nFer-de-Lance\nFer de Lance\nFergus Cassidy\nFetus Nebula\nFiction\nFiction Resources\nFighter Bay\nFighter Hangar\nFighter Hanger\nFilament Composites\nFinancial Projections\nFine\nFirst Guardian Civil War\nFirst Thargoid War\nFish\nFisher's Rest\nFixed\nFlame Nebula\nFlawed Focus Crystals\nFleet Carrier\nFleet Carrier Update\nFleet Carriers Update\nFleet Registry\nFlight Assist\nFlight Model\nFlight Suit\nFlint Lafosse\nFlorence Lavigny\nFlow Control\nFocus Crystals\nFocused Weapon\nFodder\nFontaine\nFonticulua\nFood Cartridges\nForce Block\nForce Shell\nForester's Choice\nFormidine Rift\nFormidine Rift Mystery\nFormorian Frontier\nFort Asch\nFort Bradley\nFortune-Class Carrier\nFossil Remnants\nFounders World\nFrag Grenade\nFragment Cannon\nFrame Shift Drive\nFrame Shift Drive Housing\nFrame Shift Drive Interdictor\nFrame Shift Drive Wake\nFrame Shift Wake Scanner\nFrameshift\nFrameshift Drive\nFrameshift Wake Scanner\nFrancesca Wolfe\nFreagle\nFrederick Yamamoto\nFreighter 3\nFreya Taine\nFriendship Drive\nFrontier: Elite II\nFrontier: First Encounters\nFrontier Developments\nFrontier Expo\nFrontline Solutions\nFruit and Vegetables\nFrutexa\nFsd\nFuel\nFuel Rats\nFuel Scoop\nFuel Tank\nFuel Transfer Drone\nFuel Transfer Limpet Controller\nFujin Tea\nFull Spectrum System Scanner\nFull System Scanner\nFumaroles\nFumerola\nFuneral Ship\nFungal Life\nFungal life growths\nFungoida\nFurther Stories Of Life On The Frontier\nG-Meds\nGCS Sarasvati\nGU-97\nGabriel De Luca\nGabriel Vox\nGabriella Mastopolos\nGagarin Gate\nGalCop\nGalNet\nGalNet/3300/August\nGalNet/3300/December\nGalNet/3300/July\nGalNet/3300/October\nGalNet/3300/September\nGalNet/3301/April\nGalNet/3301/August\nGalNet/3301/December\nGalNet/3301/February\nGalNet/3301/January\nGalNet/3301/July\nGalNet/3301/June\nGalNet/3301/March\nGalNet/3301/May\nGalNet/3301/November\nGalNet/3301/October\nGalNet/3301/September\nGalNet/3302/April\nGalNet/3302/August\nGalNet/3302/December\nGalNet/3302/February\nGalNet/3302/January\nGalNet/3302/July\nGalNet/3302/June\nGalNet/3302/March\nGalNet/3302/May\nGalNet/3302/November\nGalNet/3302/October\nGalNet/3302/September\nGalNet/3303/April\nGalNet/3303/August\nGalNet/3303/December\nGalNet/3303/February\nGalNet/3303/January\nGalNet/3303/July\nGalNet/3303/June\nGalNet/3303/March\nGalNet/3303/May\nGalNet/3303/November\nGalNet/3303/October\nGalNet/3303/September\nGalNet/3304/April\nGalNet/3304/August\nGalNet/3304/December\nGalNet/3304/February\nGalNet/3304/January\nGalNet/3304/July\nGalNet/3304/June\nGalNet/3304/March\nGalNet/3304/May\nGalNet/3304/November\nGalNet/3304/October\nGalNet/3304/September\nGalNet/3305/April\nGalNet/3305/August\nGalNet/3305/December\nGalNet/3305/February\nGalNet/3305/January\nGalNet/3305/July\nGalNet/3305/June\nGalNet/3305/March\nGalNet/3305/May\nGalNet/3305/November\nGalNet/3305/October\nGalNet/3305/September\nGalNet/3306/December\nGalNet/3306/January\nGalNet/3306/June\nGalNet/3306/November\nGalNet/3306/October\nGalNet/3306/September\nGalNet/3307/April\nGalNet/3307/August\nGalNet/3307/December\nGalNet/3307/February\nGalNet/3307/January\nGalNet/3307/July\nGalNet/3307/June\nGalNet/3307/March\nGalNet/3307/May\nGalNet/3307/November\nGalNet/3307/October\nGalNet/3307/September\nGalNet/3308/April\nGalNet/3308/February\nGalNet/3308/January\nGalNet/3308/March\nGalNet Articles of April 3301\nGalNet Articles of March 3301\nGalactic Centre\nGalactic Cooperative\nGalactic Cooperative Chief Executive Officer\nGalactic Insurance Company\nGalactic Interfaith Commune\nGalactic Logistics\nGalactic Mechanics Union\nGalactic Plane\nGalactic Power Standing\nGalactic Regions\nGalactic Standing\nGalactic Summit\nGalactic Superpower\nGalactic Travel Guides\nGalactic regions\nGalaxy\nGalaxy Map\nGalcop\nGallite\nGallium\nGalnet\nGalnet Articles From the Year 3300\nGalnet Articles of February 3301\nGalnet Articles of January 3301\nGalvanising Alloys\nGame Mode\nGan Romero\nGandharvi\nGarden City\nGarrett Kline\nGas Giant\nGas Vents\nGateway\nGaylen Trasken Duval\nGeawen Dance Dust\nGene Bank\nGene Sequencing Data\nGeneration Ship\nGeneration Ships\nGeneration ship\nGeneration ships\nGenerator\nGenetic Repair Meds\nGenetic Research\nGenetic Sample\nGenetic Sampler\nGenetic engineering\nGenevieve Kane\nGeographical Data\nGeological Data\nGeological Equipment\nGeological Samples\nGeological Survey 23B\nGeological phenomena\nGeorge Fallside\nGeorge Varma\nGeorgio Algeria\nGerasian Gueuze Beer\nGermanium\nGethin Okonkwo\nGeysers\nGhost Ship\nGianna Tachibana\nGiant Irukama Snails\nGiant Verrix\nGibson Kincaid\nGilya Signature Weapons\nGimbal\nGino Borstein\nGiryak\nGiya Mastopolos\nGlide\nGlobe Mollusc\nGnosis\nGo West\nGold\nGold Rush\nGoman Yaupon Coffee\nGoods\nGoslarite\nGourd Mollusc\nGovernment\nGrain\nGrand Day Out\nGrandidierite\nGrant Keller\nGraphene\nGraphics Mods\nGravity\nGreat Annihilator\nGreat Battle of Liberation\nGreater Range\nGrid Resistors\nGriefers\nGryph Jones\nGu-97\nGuardian\nGuardian-Thargoid War\nGuardian Beacon\nGuardian Casket\nGuardian Frame Shift Drive Booster\nGuardian Gauss Cannon\nGuardian Hull Reinforcement Package\nGuardian Hybrid Power Distributor\nGuardian Hybrid Power Plant\nGuardian Module Blueprint Fragment\nGuardian Module Blueprint Segment\nGuardian Module Reinforcement Package\nGuardian Orb\nGuardian Plasma Charger\nGuardian Power Cell\nGuardian Power Conduit\nGuardian Relic\nGuardian Sentinel\nGuardian Sentinel Weapon Parts\nGuardian Sentinel Wreckage Components\nGuardian Shard Cannon\nGuardian Shield Reinforcement Package\nGuardian Starship Blueprint Fragment\nGuardian Starship Blueprint Segment\nGuardian Structure\nGuardian Tablet\nGuardian Technology Component\nGuardian Totem\nGuardian Urn\nGuardian Vessel Blueprint Fragment\nGuardian Vessel Blueprint Segment\nGuardian Weapon Blueprint Fragment\nGuardian Weapon Blueprint Segment\nGuardian Wreckage Components\nGuardians\nGuinevere Lavigny\nGutamaya\nGwendolyn Nash\nGyre Pod\nGyre Tree\nH.E. Suits\nHIP 10175 Bush Meat\nHIP 118311 Swarm\nHIP 22460\nHIP 22550\nHIP 54530\nHIP Organophosphates\nHIP Proto-Squid\nHN Shock Mount\nHOTAS Key Bindings\nHR 7221 Wheat\nHUD\nHUD/Center\nHUD/Down\nHUD/Left\nHUD/Odyssey\nHUD/Right\nHUD Color Editor\nHabitat Ring\nHabitation Ring\nHadrian Augustus Duval\nHafnium 178\nHaiden Black Brew\nHaidne Black Brew\nHall of Martyrs\nHandheld Weapon\nHandheld Weapons\nHans Walden\nHappy Haulers\nHardpoint\nHardpoints\nHardware Diagnostic Sensor\nHarlan Turk\nHarlow Nassry\nHarma\nHarma Silver Sea Rum\nHarold Duval\nHarper Vargas\nHatch Breaker Drone\nHatch Breaker Limpet Controller\nHauler\nHaumea\nHavasupai Dream Catcher\nHawking's Gap\nHayley Sorokin\nHazardous Resource Extraction Site\nHeadshot Damage\nHealth Monitor\nHeart and Soul Nebulae\nHeat\nHeat Conduction Wiring\nHeat Dispersion Plate\nHeat Exchangers\nHeat Resistant Ceramics\nHeat Sink\nHeat Sink Launcher\nHeat Vanes\nHeat Vents\nHeatsink\nHeatsink Interlink\nHeatsink Launcher\nHeavy Duty Armour\nHeavy Duty Hull Reinforcement Package\nHeavy Duty Shield Booster\nHector Jansen\nHector Mordanticus Duval\nHelena Stone\nHeliostatic Furnaces\nHelix\nHelix Nebula\nHelvetitj Pearls\nHender Saik Duval\nHengist Duval\nHenson Duval\nHera Tani\nHerculean Machines\nHero Ferrari\nHesketh Duval\nHesperus\nHi'iaka\nHi-Cap\nHieronymous\nHieronymus Delta\nHigh Capacity Weapon\nHigh Charge Capacity Power Distributor\nHigh Density Composites\nHigh Grade Emissions\nHigh Velocity Munitions\nHigh Yield Shell\nHighliner Antares\nHillary Depot\nHimari Grey\nHind Nebula\nHip Proto-Squid\nHodack\nHoliday\nHolloway Bioscience Institute\nHolloway Bioscience Research Facility 15\nHolo-Me\nHolo-Screen Advert\nHologram\nHolovid\nHolva Duelling Blades\nHonesty Pills\nHorizons\nHors\nHorsehead Nebula\nHostage\nHotspot\nHouse of Duval\nHowlett, Caine and Calvert\nHudson\nHudson Contravention\nHuge Hardpoint\nHugo Kelemen\nHull Reinforcement Package\nHuman\nHumans\nHush\nHutton Mug\nHutton Orbital\nHybrid Capacitors\nHydrogen Fuel\nHydrogen Peroxide\nHydroponic Data\nHyford's Cache\nHyperdiction\nHyperdrive\nHyperspace\nIC 405 Flaming Star Nebula\nIISS\nINRA\nI Sola Prospect\nIan Bell\nIce Crystal\nIce Field\nIllegal Goods\nIllegal Salvage\nImogen Gabrielini\nImogen Luciana\nImogen le Ray\nImp\nImpact Site\nImperator\nImperial\nImperial Citizen\nImperial Clipper\nImperial Courier\nImperial Court\nImperial Cutter\nImperial Diplomatic Corps\nImperial Dynamics\nImperial Eagle\nImperial Family\nImperial Fighter\nImperial Flight Operations Bureau\nImperial Guard\nImperial Hammer\nImperial Herald\nImperial Intelligence\nImperial Intelligence Security Service\nImperial Intelligence Service\nImperial Internal Security Service\nImperial Museum of Culture\nImperial Navy\nImperial Palace\nImperial Science Academy\nImperial Senate\nImperial Senator\nImperial Senators\nImperial Shielding\nImperial Slave Association\nImperial Slavers Association\nImperial Slavery\nImperial Slaves\nImperial Wedding\nImproved Battery Capacity\nImproved Hip Fire Accuracy\nImproved Jump Assist\nImprovised Components\nInSight\nInSight Data Bank\nInSight Entertainment Suite\nInSight Hub\nInauguration Day\nIncendiary Rounds\nIncident Logs\nIncident Report\nInconsistent Shield Soak Analysis\nIncreased Air Reserves\nIncreased Range Frame Shift Drive\nIncreased Sprint Duration\nIncursion\nIndependent\nIndependent Commission for Market Equality\nIndependent Defence Agency\nIndependent Fighter\nIndependent System\nIndependent Systems\nIndi Bourbon\nIndite\nIndium\nInertia Canister\nInertial Impact\nInfested\nInfinity\nInfluence\nInfluence Projections\nInner Orion-Perseus Conflux\nInner Orion Spur\nInner Scutum-Centaurus Arm\nInorganic Contaminant\nInstallation\nInstallations\nInstance\nInsulating Membrane\nInsurance costs\nInter Astra\nInterdiction\nIntergalactic Naval Reserve Arm\nIntermediate Discovery Scanner\nInternal Compartment\nInternal Correspondence\nInternal Security Service\nInterpol\nInterrogation Recordings\nInterstellar Association for Agriculture\nInterstellar Factor\nInterstellar Factors\nInterstellar Health Organisation\nInterstellar Initiative\nInterview Recordings\nIon Battery\nIon Disruptor\nIon Distributor\nIonised Gas\nIrfan Karim\nIron\nIrregular Emission Data\nIrregular Markers\nIsaac Gellan\nIshmael Palin\nIsinor\nIsolde Rochester\nItorilleta\nIzanami\nJackson's Lighthouse\nJacob Harris\nJacob Morales\nJade Sanderlyn\nJadeite\nJameelah Griffin\nJameson Memorial\nJameson family\nJan Sandoval\nJanuary Update\nJaques\nJaques Quinentian Still\nJaques Station\nJaradharre Puzzle Box\nJarah Kael\nJarl Toredo\nJaroua Rice\nJasmina Halsey\nJavelin\nJean-Christophe Lyon\nJed Trager\nJellyfish Nebula\nJenna Fairfax\nJenson Zanetti\nJeremy Tann\nJerome Archer\nJettison Cargo\nJick Nackson Enterprises\nJim Croft\nJob Applications\nJohann Fleischer\nJohn Jameson\nJohn Tyburn\nJokers' Deck\nJonathon Forester\nJordan Rochester\nJotun\nJotun Mookah\nJourdain\nJournalism\nJuanita Bishop\nJude Navarro\nJump range\nJupiter\nJupiter's Wrath\nJupiter Division\nJupiter Rochester\nJuri Ishmaak\nJurisdiction\nK-Type Anomaly\nKWS\nKachirigin Filter Leeches\nKaeso Mordanticus\nKahina Tijani Loren\nKaley Orenn\nKamadhenu\nKamitra Cigars\nKamorin Historic Weapons\nKappa Fornacis\nKaretii Couture\nKarl Nerva\nKarleen Troy\nKarma AR-50\nKarma C-44\nKarma L-6\nKarma P-15\nKarsuki Locusts\nKashyapa\nKatrien Rook\nKausalya\nKavanagh Spaceframes Ltd\nKay Kilbride\nKay Ross\nKay Volantyne\nKayode Tau\nKazien Vantris\nKeelback\nKelvin Masters\nKepler's Crest\nKessler City\nKey People\nKhun\nKickstarter\nKill Warrant Scanner\nKinago Violins\nKinematic Armaments\nKinetic Armaments\nKinetic Resistant Armour\nKinetic Resistant Hull Reinforcement Package\nKinetic Resistant Shield Booster\nKinetic Resistant Shield Generator\nKingsley Cordova\nKioko McGrath\nKirby\nKit Fowler\nKlaxian\nKnowledge Base\nKompromat\nKongga Ale\nKoro Kung Pellets\nKorro Kung Pellets\nKracer\nKrait\nKrait MkI\nKrait MkII\nKrait Mk I\nKrait Mk II\nKrait Phantom\nKristine Lasky\nKuiper belt\nKuk\nKumo Crew\nKuwemaki\nL-Type Anomaly\nLBN 623\nLEP\nLHS 3447\nLP 98-132\nLTT 198\nLTT 874\nLTT Hyper Sweet\nLTT Hypersweet\nLXE\nLagoon Nebula\nLagrange Cloud\nLakon\nLakon Spaceways\nLakon Type-6\nLakon Type-6 Transporter\nLakon Type-7\nLakon Type-9 Heavy\nLakon Type 6\nLakon Type 7\nLakon Type 9\nLaksak\nLana Berkovich\nLana Sigrid\nLance\nLand Enrichment Systems\nLanding Gear\nLanding Pad\nLandmine\nLandmines\nLanthanum\nLarge Calibre Munitions\nLarge Survey Data Cache\nLargest Stars\nLattice Mineral Sphere\nLaurence Oldham\nLava Spout\nLave\nLave/Lave Station\nLave/Planet Lave\nLave Radio\nLave Station\nLavecon\nLavian Brandy\nLavigny's Legion\nLavigny family\nLayered Plating\nLazarus\nLea Tantaga\nLead\nLeague of Reparation\nLeather\nLeathery Eggs\nLeesti\nLeestian Evil Juice\nLegal Salvage\nLei Cheung\nLeland Pettigrew\nLembava\nLena Ravenhill\nLeo Magnus\nLeon Banerjee\nLeonard Nimoy Station\nLepidolite\nLewis Chapman\nLexi October\nLi Qin Jao\nLi Qing Jao\nLi Yong-Rui\nLife Support\nLifetime Expansion Pass\nLightweight Alloys\nLightweight Armour\nLightweight Hull Reinforcement Package\nLightweight Module\nLightweight Sensors\nLightweight Weapon\nLilith Galloway\nLimpet\nLimpet Controller\nLimpet Controller/Collector\nLimpet Controller/Decontamination\nLimpet Controller/Fuel Transferer\nLimpet Controller/Hatch Breaker\nLimpet Controller/Prospector\nLimpet Controller/Recon\nLimpet Controller/Repair\nLimpet Controller/Research\nLing Lang\nLiquid Oxygen\nLiquor\nLishan Abara\nList of Rare Commodities\nList of minor factions\nListening Post\nListening post\nLiterary Fiction\nLithium\nLithium Hydroxide\nLive Hecate Sea Worms\nLivery\nLiz Ryder\nLloyd Hardacre\nLo-Draw\nLoadout\nLoan\nLoitering\nLondon\nLondon Treaty\nLong Range Beam Laser\nLong Range Burst Laser\nLong Range Cannon\nLong Range Detailed Surface Scanner\nLong Range Frame Shift Drive Interdictor\nLong Range Multi-cannon\nLong Range Plasma Accelerator\nLong Range Pulse Laser\nLong Range Rail Gun\nLong Range Scanner\nLong Range Sensors\nLong Range Weapon\nLorcan Scordato\nLords of Restoration\nLore\nLori Jameson\nLoric Trander\nLos\nLow Temperature Diamonds\nLow emissions Power Plant\nLucan Onion Head\nLucan Onionhead\nLucas Vincent\nLuchtaine\nLuciano Prestigio Giovanni\nLucifer Device\nLucius Lavigny\nLucretia Roche-Duval\nLugh\nLuyten's Star\nLuyten 347-14\nLycan Moon Mining\nLyra's Song\nLyrae Weed\nMacArthur Mining Ltd\nMaddox Hurd\nMadelyn Teague\nMadoc Evander\nMagazine Size\nMagnetic Emitter Coil\nMahon\nMahon Research Base\nMaia\nMailslot\nMain Page\nMaintenance Logs\nMajestic-Class Interdictor\nMajestic Class Interdictor\nMajor Faction\nMakemake\nMamba\nMamba Light\nMammon\nManganese\nManifest Scanner\nManticore\nManticore Executioner\nManticore Intimidator\nManticore Oppressor\nManticore Tormentor\nManufactured Materials\nManufacturing Instructions\nMaps\nMara Klatt\nMarcan Rayger\nMarco Qwent\nMarcus Macmillan\nMare Somnia\nMarine Equipment\nMark Allen\nMarket Economy\nMarko Susimetsä\nMarlin Duval\nMarlin Standard\nMarlinism\nMarlinist Colonies\nMarlinist Constabulary\nMarlinist Consulate\nMarlinist refugee crisis\nMarlon Royce\nMars\nMars High\nMars Tribune\nMarsha Hicks\nMartian Relic\nMass Jump\nMass Lock\nMass Lock Factor\nMass Lock Munitions\nMass Manager\nMassey Haulage\nMaster Chefs\nMastopolis Mining\nMastopolos Mining\nMastopolos family\nMaterial\nMaterial Trader\nMaterials\nMatthew Florianz\nMaverick Suit\nMavia Kain\nMaximilian North\nMaximillian Wrekcht\nMaxton Price\nMbooni\nMechanical Components\nMechanical Equipment\nMechanical Scrap\nMechucos High Tea\nMedb Starlube\nMedical Diagnostic Equipment\nMedical Records\nMedkit\nMeene\nMeeting Minutes\nMega Corporation\nMegaship\nMegaships\nMel Brandon\nMemory Chip\nMercenary\nMercury\nMeredith's Dream\nMeredith Argent\nMerits\nMerlin\nMerope\nMesosiderite\nMessier 78\nMeta-Alloys\nMeta-alloys\nMetaDrive\nMetaDrive Inc.\nMeta Alloy Hull Reinforcement\nMetal-Rich Body\nMetal Coil\nMetallic Crystal\nMetallic Crystals\nMetallic Meteorite\nMetals\nMethane Clathrate\nMethanol Monohydrate Crystals\nMia Valencourt\nMic Turner\nMicah Whitefield\nMichael Brookes\nMicro-Weave Cooling Hoses\nMicro Controllers\nMicro Hydraulics\nMicro Probe\nMicro Supercapacitor\nMicro Thrusters\nMicro Transformer\nMicrobial Furnaces\nMicrobial Inhibitor\nMicroelectrode\nMikunn\nMilandu Okoro\nMilitary Compartment\nMilitary Grade Alloys\nMilitary Grade Composite\nMilitary Grade Fabrics\nMilitary Intelligence\nMilitary Plans\nMilitary Strike\nMilitary Supercapacitors\nMilky Way\nMilo Castile\nMind the Gap\nMine Launcher\nMiner\nMineral Extractors\nMineral Oil\nMineral Survey\nMinerals\nMinerva Centaurus Expedition\nMining\nMining Analytics\nMining Lance\nMining Laser\nMining Multi Limpet Controller\nMinor Faction\nMinor Factions\nMinor Wreckage\nMira Bukowski\nMirrored Surface Composite\nMissile Rack\nMissiles\nMission\nMission Board\nMission Board/Types\nMission Depot\nMission Target\nMission Types\nMissions\nMitterand Hollow\nModified Consumer Firmware\nModified Embedded Firmware\nModular Terminals\nModule\nModule Reinforcement Package\nModule Storage\nModule priority control\nModules\nMoissanite\nMokojing Beast Feast\nMollusc Brain Tissue\nMollusc Fluid\nMollusc Membrane\nMollusc Mycelium\nMollusc Soft Tissue\nMollusc Spores\nMolybdenum\nMomus Bog Spaniel\nMonazite\nMoney Matters\nMonkey Head Nebula\nMonstered\nMoon\nMoons\nMorag Halloran\nMorgan Unwin\nMosher\nMosher Industrial Equipment\nMotor\nMotrona Experience Jelly\nMountains\nMu Cephei\nMuang\nMudlark\nMukusubii Chitin-Os\nMulachi Giant Fungus\nMulti-Cannon\nMulti-Crew\nMulti-Limpet Controller\nMulti-Servos\nMulti-Weave\nMulti-cannon\nMulti Cannon\nMulticannon\nMulticrew\nMultimedia Entertainment\nMuon Imager\nMusgravite\nMusic of Elite Dangerous\nMussidaen Seed Pod\nMutagenic Catalyst\nMycoid\nMycoid Virus\nMysterious Idol\nNASA\nNGC 1333\nNGC 1360\nNGC 1514\nNGC 1999\nNGC 2392 Eskimo Nebula\nNGC 2467\nNGC 281\nNGC 3242\nNGC 5315\nNGC 5979\nNGC 6302\nNGC 6357\nNGC 6751\nNGC 6820\nNGC 7026\nNGC 7822\nNMLA\nNOC Data\nNakato Kaine\nNamarii\nNanobreakers\nNanomam\nNanomedicine\nNanomedicines\nNanomeds\nNanotechnology\nNaomi Landseer\nNarcotics\nNarwhal Liner\nNastrond\nNatural Fabrics\nNautilus-Class Carrier\nNav Beacon\nNavigation Beacon\nNebula\nNebulae\nNeedle Crystals\nNeo-Marlinism\nNeo-Marlinist Liberation Army\nNeofabric Insulation\nNeomedical Industries\nNeosalve Inc.\nNeptune\nNeritus Berries\nNerve Agents\nNestor Cartesius\nNetwork Access History\nNetwork Security Protocols\nNeutron Highway\nNew California\nNew Fresno\nNew Horizons\nNew Rossyth\nNew York\nNewly changed articles\nNews Feed\nNewsfeed\nNewton's Vault\nNext of Kin Records\nNgadandari Fire Opals\nNguna Modern Antiques\nNiamh Seutonia\nNickel\nNigel Smeaton\nNight Vision\nNight Vision (Modification)\nNikolas Glass\nNine Martyrs\nNiobium\nNisha Devi\nNjangari Saddles\nNoah Sharrow\nNoel Beaumont\nNoise Suppressor\nNon-Human Signal Source\nNon-Lethal Weapons\nNon Euclidian Exotanks\nNon Lethal Weapons\nNonhuman Signature\nNorma Arm\nNorma Expanse\nNormal Speed\nNorth America Nebula\nNotable Stellar Phenomena\nNotoriety\nNova Imperium\nNova Paresa\nNutritional Concentrate\nNvidia Geforce GTX Titan Black\nO'Brien\nOH\nOaken Point\nOberon Church\nObsidian Orbital\nOccupied CryoPod\nOccupied Escape Pod\nOcellus\nOchoeng Chillies\nOctahedral Pod\nOctavia Volkov\nOden Geiger\nOdin's Hold\nOdyssey\nOevasy SG-Y d0\nOffice of the Alliance President\nOlaf Smith\nOlav Redcourt\nOlban Hensard Duval\nOld Worlds\nOld Worlds Coalition\nOlgrea\nOlivier Tesreau\nOlwyn Kendrick\nOlympus Village\nOlympus Village University\nOmega Company\nOmega Grid\nOmega Nebula\nOn-going Development Of Horizons\nOn Foot\nOnion Head\nOnionhead\nOnionhead Alpha Strain\nOnionhead Beta Strain\nOnionhead Gamma Strain\nOpen Symmetric Keys\nOperation Davy Jones\nOperation Ida\nOperation Uranus\nOperational Manual\nOperations Multi Limpet Controller\nOphelia Kaufmann\nOphiuch Exino Artefacts\nOpinion Polls\nOptical Fibre\nOptical Lens\nOrange Sidewinder\nOrbis\nOrbital Cruise\nOrbital Junction\nOrca\nOrerve\nOresrian\nOrganic Structure\nOrganic Structures\nOrganic structure\nOrganic structures\nOrion-Cygnus Arm\nOrion Cygnus Arm\nOrion Independent University\nOrion Nebula\nOrion University\nOrrere\nOrrerian Vicious Brew\nOrrery\nOrrery System Map\nOscar Goldsun\nOsmium\nOsseus\nOtto Lombardo-Duval\nOut of the Darkness\nOutcrop\nOuter Arm\nOuter Orion-Perseus Conflux\nOuter Orion Spur\nOuter Scutum-Centaurus Arm\nOutfitting\nOutpost\nOvercharged Beam Laser\nOvercharged Burst Laser\nOvercharged Cannon\nOvercharged Fragment Cannon\nOvercharged Multi-cannon\nOvercharged Plasma Accelerator\nOvercharged Power Plant\nOvercharged Pulse Laser\nOvercharged Weapon\nOverload Munitions\nOverlook\nOversized\nOwen McKenna\nOxalis- rent a fleet carrier\nOxygenic Bacteria\nP-Type Anomaly\nPA\nPA912\nPH Neutraliser\nPLX 695\nPOI\nPSG\nPSM\nPacifier Frag-Cannon\nPack-Hound Missile Rack\nPack-hound Rack\nPainite\nPaint\nPal Vespasian\nPalin Institute\nPalladium\nPallaeni\nPantaa Prayer Sticks\nPanther Clipper\nPanther Clipper LX\nParasol Mollusc\nPareco\nParesa\nParesa News Network\nPassenger Cabin\nPassenger Carrier\nPathfinder Solutions\nPatience Middleton\nPatient History\nPatreus\nPatricia Spellman\nPatrol Routes\nPatron\nPattern Alpha Obelisk Data\nPattern Beta Obelisk Data\nPattern Delta Obelisk Data\nPattern Epsilon Obelisk Data\nPattern Gamma Obelisk Data\nPaul Baumann\nPavonis Ear Grubs\nPayroll Information\nPeculiar Shield Frequency Data\nPeduncle Pod\nPeduncle Pods\nPeduncle Tree\nPegasi Pirate War\nPegasi Sentinel\nPelican Nebula\nPencil Nebula NGC 2736\nPenelope Carver\nPenetrator Munitions\nPenetrator Payload\nPerdition\nPeregrina\nPerformance Enhancers\nPermit\nPermits\nPermits/Alliance\nPermits/Empire\nPermits/Federation\nPermits/Independent\nPermits/Local\nPermits/Region\nPermits/Uninhabited\nPersephone\nPerseus Arm\nPersonal Computer\nPersonal Documents\nPersonal Effects\nPersonal Gifts\nPersonal Logs\nPersonal Weapons\nPersonal weapons\nPesticides\nPeter Jameson\nPetra Olmanova\nPetra Torval\nPetrified Fossil\nPharmaceutical Isolators\nPharmaceutical Patents\nPharmasapien\nPhase Alloys\nPhasing Sequence\nPhekda\nPhloem Excretion\nPhosphorus\nPhoto Albums\nPi Mensae\nPiceous Cobble\nPilot\nPilot's Handbook\nPilot Ranks\nPilot Suits\nPilots' Federation District\nPilots Federation\nPilots Federation Rescue Rangers\nPilots Guide\nPioneer Supplies\nPipe Nebula\nPirate\nPirate Activity Detected\nPirates\nPlanet\nPlanet Lave\nPlanetary Approach Suite\nPlanetary Circumnavigation\nPlanetary Landings\nPlanetary Map\nPlanetary Outpost\nPlanetary Port\nPlanetary Ring Systems\nPlanetary Rings\nPlanetary Vehicle Hangar\nPlanets\nPlant Growth Charts\nPlasma Accelerator\nPlasma Accelerators\nPlasma Munitions\nPlasma Slug\nPlatinum\nPlatinum Alloy\nPlayer Minor Faction\nPlayer group\nPlayer groups\nPleiades\nPleiades Nebula\nPleiades Sector IR-W d1-55\nPluto\nPod Core Tissue\nPod Dead Tissue\nPod Mesoglea\nPod Outer Tissue\nPod Shell Tissue\nPod Surface Tissue\nPod Tissue\nPoint Defence\nPoint Defence Turret\nPoint Defense Turret\nPoint of Interest\nPoint of interest\nPoints of Interest\nPoints of interest\nPolevnic\nPolitical Affiliations\nPolitical Prisoner\nPollux\nPolo Harbour\nPolonium\nPolymer Capacitors\nPolymers\nPolyporous Growth\nPort Isabelle\nPower\nPower-specific module\nPower Converter\nPower Distributor\nPower Generators\nPower Plant\nPower Play\nPower Regulator\nPower Transfer Bus\nPowerplay\nPowerplay (bonds)\nPowerplay bonds\nPowers\nPraetorian Guard\nPranav Antal\nPraseodymium\nPratchett's Disc\nPre-Engineered\nPrecious Gems\nPrecipitated Alloys\nPresident\nPresident Halsey\nPresident of the Alliance\nPresident of the Federation\nPresidential Protection Detail\nPrime Minister\nPrime Minister of the Alliance\nPrism\nPrismatic Shield Generator\nPrison Ship\nPrisoner Logs\nPrivate Data Beacons\nProactive Detection Bureau\nProbe\nProcedural Cities\nProduction Reports\nProduction Schedule\nProfession\nProfessor Palin\nProfile Analyser\nProgenitor Cells\nProhibited Research Materials\nProject Dynasty\nProject Equinox\nProject Seraph\nPropaganda\nProprietary Composites\nPropulsion Elements\nProspector Drone\nProspector Limpet Controller\nProteus\nProto Heat Radiators\nProto Light Alloys\nProto Radiolic Alloys\nPrototype Tech\nProxima Centauri\nPulse Disruptor\nPulse Laser\nPulse Wave Analyser\nPurchase Records\nPurchase Requests\nPush\nPyrolytic Catalyst\nPyrophyllite\nPython\nQ-Type Anomalies\nQ-Type Anomaly\nQuadripartite Pod\nQuator\nQuenisset\nQuieter Footsteps\nQuince\nQuinn Damico\nRDX\nRES\nRaan Corsen\nRaces\nRachel Ziegler\nRacing\nRackham's Peak\nRackham Capital Investments\nRackham Ultratech Expo\nRadiant Canister\nRadiation Baffle\nRadio Sidewinder\nRadioactivity Data\nRadioplankton\nRail Gun\nRailgun\nRailgun Gun\nRajukru Multi-Stoves\nRam Tah\nRamesh Thorne\nRank\nRanks\nRapa Bao Snake Skins\nRapid Charge Shield Cell Bank\nRapid Fire Weapon\nRare Artwork\nRare Commodities\nRare Commodity\nRare Goods\nRare commodities\nRare commodity\nRare good\nRatings\nRaul Santorini\nRaw Materials\nRaxxla\nReactive Armour\nReactive Surface Composite\nReactor Output Review\nRebel Transmissions\nReboot and Repair\nRebuy\nRecent History\nRecepta\nRecon Limpet Controller\nRecycling Cells\nRecycling Logs\nRed Family\nRedeployment\nRedmond O'Hara\nReduced Tool Battery Consumption\nReel Mollusc\nRefined Focus Crystals\nRefinement Process Sample\nRefinery\nReflective Plating\nRegeneration Sequence\nReinforced Alloys\nReinforced Module\nReinforced Mounting Plate\nReinforced Shield Generator\nReinforced Thrusters\nReload Speed\nRemlok\nRemlok Suit\nRemote Release Flak Launcher\nRemote Release Flechette Launcher\nRemote Workshop\nReorte\nRepair Limpet Controller\nRepublic of Achenar\nReputation\nReputations\nRescue Multi Limpet Controller\nRescue Ship\nRescue Team\nRescue Vessel\nResearch Limpet Controller\nReserved Compartment\nResidential Directory\nResistance Augmented Shield Booster\nResistance Pocket\nResonant Separators\nResonating Separators\nResource Extraction Site\nRespawn\nRetributor\nReverberating Cascade\nRewired\nRex Whitlock\nReynhardt Intellisys\nRhea\nRhenium\nRhiannon Grady\nRhino\nRhizome Pod\nRho Ophiuchi\nRhodplumsite\nRicardo Bentonio\nRichard Morgan\nRiedquat\nRigel\nRiri McAllister\nRishi Antal\nRisk Assessments\nRobot\nRobotics\nRobots\nRochelle Karim\nRochester family\nRockforth Corporation\nRockforth Fertiliser\nRocky Ice World\nRohini\nRoland Holloway\nRoleplaying\nRoles\nRonan Brock\nRonan Roscoe\nRory Webster\nRosa Dayette\nRosaline Merden\nRosette Nebula\nRoss 128\nRoss Projectiles\nRouncival\nRoy Casimir\nRunning Man Nebula\nRusani Old Smokey\nRuthenium\nRutile\nRyker's Hope\nS4 Sentry\nS4 ‘Sentry’ skimmer\nS5LM Guardian\nS5LM ‘Guardian’ skimmer\nS9 Goliath\nS9 ‘Goliath’ skimmer\nSAP 8 Core Container\nSIN Broker\nSOC\nSPVFA\nSRV\nSRV Ammo Restock\nSRV Refuel\nSRV Repair\nSacaqawea Space Port\nSacrosanct\nSadiq Kessler\nSadler's Song\nSadr Region\nSaeed McNamara\nSafeguard Interstellar\nSagittarius-Carina Arm\nSagittarius A*\nSagittarius Eye\nSalacia\nSales Records\nSalome\nSalomé\nSalvage\nSalvageable Wreckage\nSalvaged Alloys\nSalvation\nSamarium\nSan Francisco\nSandro Sammarco\nSanguineous Rim\nSanuma Decorative Meat\nSap 8 Core Container\nSaskia Landau\nSatellite\nSaturn\nSaud Kruger\nSaxon Wine\nScanner\nScarab\nScavenger\nScb\nScenario Missions\nScience Vessel\nScientific Research\nScientific Samples\nScope\nScorpio DeVorrow\nScorpion\nScout\nScramble Spectrum\nScrambler\nScrap\nScreening Shell\nScrivener College\nScutum-Sagittarii Conflux\nScythe of Panem\nSeagull Nebula\nSearch And Rescue Agent\nSearch and Rescue\nSearch and Rescue Agent\nSearch and Rescue Patrol\nSecond Guardian Civil War\nSecond Thargoid War\nSecurity Expenses\nSecurity Firmware Patch\nSecurity Forces\nSecurity Plans\nSedna\nSeed Geneology\nSeeker Missile Rack\nSeismic Charge Launcher\nSelene Jean\nSelenium\nSelf-destruct\nSelf Destruct\nSemiconductors\nSenate\nSenate House\nSenator\nSenator/List\nSenators\nSensor Fragment\nSensors\nSentient Machines\nSeptember Update\nSerendibite\nSerene Harbour\nSettlement\nSettlement Assault Plans\nSettlement Defence Plans\nShadow President\nShan's Charis Orchid\nShans Charis Orchid\nShapley 1\nShareholder Information\nShenve\nShield\nShield Booster\nShield Cell\nShield Cell Bank\nShield Disruptor\nShield Emitters\nShield Generator\nShield Grenade\nShield Projector\nShielded Frame Shift Drive\nShielded Module\nShielded Power Distributor\nShielding Sensors\nShift-Lock Canister\nShinrarta Dezhra\nShinrarta Dezhra/Founders World\nShinrarta Dezhra/Jameson Memorial\nShip\nShip-Launched Fighters\nShip Canopy\nShip Destroyed\nShip Flight Data\nShip Interiors\nShip Kit\nShip Kits\nShip Launched Fighters\nShip Schematic\nShip Systems Data\nShip interior\nShip wreck\nShip wrecks\nShips\nShips (Update)\nShipwreck\nShipyard\nShock Cannon\nShock Mine Launcher\nShort Range Composition Scanner\nShort Range Weapon\nShutdown Field Neutraliser\nSidewinder\nSidewinder Mk. I\nSidewinder MkI\nSidewinder Mk I\nSidey\nSilent Running\nSilicate Crystal\nSilver\nSilvia Calhoon\nSim-Archive\nSima Kalhana\nSimguru Pranav Antal\nSimguru Rishi Antal\nSimion Petrescu\nSimone Leatrix\nSinclair Faraldo\nSinuous Tuber\nSirius\nSirius Corp\nSirius Corporation\nSirius Gov\nSirius Navy\nSirius Treaty\nSkimmer\nSkimmer Components\nSkimmers\nSlang\nSlaves\nSlush Fund Logs\nSmall Calibre Munitions\nSmall Hardpoint\nSmall Survey Data Cache\nSmart Rounds\nSmear Campaign Plans\nSmuggler\nSmuggling\nSnake Nebula\nSnake Sector species\nSocho\nSocial hub\nSofia Trevino\nSol\nSol/Ariel\nSol/Asteroid Belt\nSol/Callisto\nSol/Charon\nSol/Dione\nSol/Earth\nSol/Enceladus\nSol/Europa\nSol/Ganymede\nSol/Iapetus\nSol/Io\nSol/Jupiter\nSol/Mars\nSol/Mars High\nSol/Mercury\nSol/Moon\nSol/Neptune\nSol/Oberon\nSol/Pluto\nSol/Rhea\nSol/Saturn\nSol/Sol\nSol/Starship One\nSol/Tethys\nSol/Titan\nSol/Titania\nSol/Triton\nSol/Umbriel\nSol/Uranus\nSol/Venus\nSol Today\nSolar Eclipse\nSolar System\nSolar flare\nSolid Mineral Sphere\nSolomon Helios\nSonal Mishra\nSoontill\nSoontill Relics\nSothis\nSothis Crystalline Gold\nSound\nSource 2\nSpace Cow\nSpace Jellyfish\nSpace Lanes Cargo\nSpace Legs\nSpace Pioneer Relics\nSpace Pumpkins\nSpace Squid\nSpace Station\nSpace Stations\nSpaceflight One\nSpecialised Legacy Firmware\nSpecialised Shield Cell Bank\nSpecies\nSpectral Analysis Data\nSpeeding\nSpirograph Nebula\nSpyware\nSquadrons\nSquid Mollusc\nSquirrel's Nest Bar\nStability\nStandard Docking Computer\nStanislav Kruger\nStar\nStarCon\nStar Cluster\nStar Rise\nStar Systems\nStar system\nStarflight One\nStarport\nStars\nStarship Enterprises\nStarship Enterprises Corporation\nStarship One\nStation\nStatue of Liberty Nebula\nStealth\nSteel Castle Inc\nSteel Majesty\nStellar Activity Logs\nStellar Forge\nStellar flare\nSteve Kirby\nStinger-2\nStolen Goods\nStolon Pod\nStolon Tree\nStonewall Jammer\nStop Slavery Stupid\nStories Of Life On The Frontier\nStowed Reloading\nStrange Wake Solutions\nStratum\nStripped Down\nStructural Regulators\nStructures\nStuemeae FG-Y d7561\nSturdy Weapon\nSub-surface Displacement Missile\nSub-surface displacement missile\nSubject D-2\nSuit Recharge Socket\nSuit Schematic\nSuits\nSulphur\nSummerland\nSun\nSunrise\nSuper Capacitors\nSuper Conduits\nSuper Penetrator\nSuperconductors\nSupercruise\nSupercruise Assist\nSupermassive\nSupratech\nSurface Excavation\nSurface Outpost\nSurface Port\nSurface Ports\nSurface Recon Vehicle\nSurface Stabilisers\nSurveillance Equipment\nSurveillance Logs\nSurvey Vessel\nSurvival Equipment\nSusan Monroe\nSvetlana Zhukov\nSylvia Rockforth\nSynteini\nSynthesis\nSynthetic Fabrics\nSynthetic Genome\nSynthetic Meat\nSynthetic Pathogen\nSynthetic Reagents\nSynuefe EN-H d11-96\nSystem Authority Vessel\nSystem Focused Power Distributor\nSystem Map\nSystem Signal Sources\nT-Type Anomaly\nTBW Investments\nTK Aphelion\nTK Eclipse\nTK Zenith\nTaaffeite\nTabaldak\nTactical Data\nTactical Plans\nTagged Encryption Codes\nTahir West\nTaipan\nTaipan Fighter\nTaja Gavaris\nTakada\nTales from the Frontier\nTalitha Ambrose\nTamsin Taylor\nTanker\nTanmark Tranquil Tea\nTantalum\nTanya Blaine\nTanya Ramirez\nTarach Spice\nTarget Lock Breaker\nTarget Lock Buster\nTashmira Silva\nTau Ceti\nTau Ceti/Taylor Colony\nTau Ceti Journal\nTauri Chimes\nTaurus Dark Region\nTaurus Mining Ventures\nTax Records\nTaylor Colony\nTayo Maikori\nTea\nTeams\nTech Broker\nTechnetium\nTechnical Blueprints\nTechnology\nTechnology Broker\nTelemetry Suite\nTelepresence\nTellurium\nTempered Alloys\nTemple\nTenebrae\nTerra Mater\nTerra Mater Blood Bores\nTerra Velasquez\nTerraform\nTerraforming\nTerrain Enrichment Systems\nTerrestrial Planet\nTestament\nThallium\nThargoid\nThargoid Barnacle\nThargoid Barnacle Barb\nThargoid Basilisk Tissue Sample\nThargoid Biological Matter\nThargoid Carapace\nThargoid Conflict Zone\nThargoid Cyclops Tissue Sample\nThargoid Egg\nThargoid Energy Cell\nThargoid Heart\nThargoid Hydra Tissue Sample\nThargoid Incursion\nThargoid Interceptor\nThargoid Link\nThargoid Material Composition Data\nThargoid Medusa Tissue Sample\nThargoid Mothership\nThargoid Organic Circuitry\nThargoid Pod\nThargoid Probe\nThargoid Regent\nThargoid Residue Data\nThargoid Resin\nThargoid Scout\nThargoid Scout Tissue Sample\nThargoid Seedship\nThargoid Sensor\nThargoid Ship Signature\nThargoid Soldier\nThargoid Structural Data\nThargoid Surface Site\nThargoid Technological Components\nThargoid Technology Components\nThargoid Technology Samples\nThargoid Titan\nThargoid Wake Data\nThargoid Worker\nThargoid cult\nThargoids\nThargon\nThargon Swarm\nThe 9th Legion\nThe Abyss\nThe Bubble\nThe Cete\nThe Club\nThe Conduit\nThe Conduit (Megaship)\nThe Dark Wheel\nThe Diamondback\nThe Dionysus\nThe Dukes of Mikunn\nThe Dweller\nThe Emperor's Own\nThe Enclave\nThe Gnosis\nThe Golconda\nThe Hunter\nThe Hutton Mug\nThe Imperial Citizen\nThe Lounge\nThe Missing\nThe Phagos Clan Dredger\nThe Pilots Federation\nThe Prophet\nThe Sanctum\nThe Sarge\nThe Scourge\nThe Scriveners Clan Dredger\nThe Sovereign\nThe Tenebris\nThe Veils\nThe Void\nThe War for Lugh\nThe Zurara\nTheo Arcosta\nThermal Cascade\nThermal Conduit\nThermal Cooling Units\nThermal Resistant Armour\nThermal Resistant Hull Reinforcement Package\nThermal Resistant Shield Booster\nThermal Resistant Shield Generator\nThermal Shock\nThermal Spread\nThermal Vent\nThermic Alloys\nThermo Block\nTheta Seven\nThird Party Tools\nThomas Dorne\nThor's Helmet\nThorium\nThrusters\nThrutis Cream\nTiana Fortune\nTiegfries Synthsilk\nTilbery Construction\nTiliala\nTime Capsule\nTimeline\nTin\nTiolce Waste2Paste Units\nTionisla\nTir\nTitanium\nTitanium Plating\nTitus Torval\nTobacco\nTobias Wreaken\nTod \"The Blaster\" McQuinn\nTomas Turai\nTopographical Surveys\nTorc\nTorpedo Pylon\nTorus Mollusc\nTorval\nTorval-Mastopolos Mining\nTorval Mining Ltd\nTorval family\nTourist Beacon\nTourist Ship\nToxandji Virocide\nToxic Waste\nTrade Data\nTrade Dividend\nTrader\nTrading\nTransmitter\nTransport Safety Authority\nTrappist-1\nTrasken Duval II\nTrasken Duval III\nTravel Permits\nTreaty of Paresa\nTrent Delaney\nTrident\nTrifid Leaf\nTrifid Nebula\nTrinity Avon\nTrinkets of Hidden Fortune\nTritium\nTrojan Belt\nTroop Deployment Records\nTrophies\nTrouble Banking and Welfare Investments\nTrue Form Fossil\nTrumble\nTsu Annabelle Singh\nTube worm\nTubus\nTulimaq Buchanan\nTungsten\nTungsten Carbide\nTurner's World\nTurret\nTussock\nType-10 Defender\nType-6\nType-6 Transporter\nType-7\nType-7 Transport\nType-7 Transporter\nType-9\nType-9 Heavy\nType 7\nTyrell Biggs\nUSS\nUltra-Compact Processor Prototypes\nUma Laszlo\nUmbrella Mollusc\nUmbrella Molluscs\nUnchain\nUnexpected Emission Data\nUnidentified Scan Archives\nUnidentified Signal Source\nUnion Membership\nUnited States of the Americas\nUniversal Cartographics\nUniversal Galactic Time\nUniversal Language\nUniversal Multi Limpet Controller\nUniversal Translator\nUniverse\nUnknown Artefact\nUnknown Carapace\nUnknown Energy Cell\nUnknown Fragment\nUnknown Link\nUnknown Material Composition Data\nUnknown Organic Circuitry\nUnknown Probe\nUnknown Residue Data Analysis\nUnknown Ship\nUnknown Ship Signature\nUnknown Structural Data\nUnknown Structure Scan\nUnknown Technology Components\nUnknown Wake Data\nUnknown structure\nUnregistered Comms Beacon\nUnstable Data Core\nUntypical Shield Scans\nUnusual Encrypted Files\nUpaniklis\nUraninite\nUranium\nUranus\nUrsula Torquatus\nUszaa\nUszaian Tree Grub\nUtgaroar Millennial Eggs\nUtopia\nUtopixx Entertainment\nUzumoku Low-G Wings\nVIP Security Detail\nVV Cephei\nVY Canis Majoris\nV Herculis Body Rub\nVaccination Records\nVaccine Research\nValkyrie\nVan Maanen's Star\nVanadium\nVanayequi Ceratomorpha Fur\nVandermeer Corporation\nVanguard\nVanya Driscoll\nVarian Scott\nVarrwen Mako Brennus\nVega\nVega Line Shipping\nVega Slimweed\nVehicle Schematic\nVehicles\nVeil Nebula East\nVeil Nebula West\nVenus\nVerity Dexter\nVersion History\nVersion history\nVespine Transport Systems\nVictory-Class Carrier\nVidavantian Lace\nVincent\nViola Trask\nViolent Protest\nViper\nViper MkIII\nViper MkIV\nViper Mk III\nViper Mk IV\nVirology Data\nVirtual Reality\nVirus\nViscoelastic Polymer\nVisitor Register\nVista Genomics\nVitadyne Labs\nVodel\nVoid Extract Coffee\nVoid Heart\nVoid Opals\nVoid Rangers\nVoid Runners\nVolkhab Bee Drones\nVox Galactica\nVoyager 1\nVoyager 2\nVulcan Gate\nVulture\nWWIII\nWallglass Investigations Agency\nWalter Argent\nWar\nWar for Lugh\nWarkushanui\nWarzone\nWater\nWater Purifiers\nWater World\nWaters of Shintara\nWave Scanner\nWeapon\nWeapon Component\nWeapon Focused Power Distributor\nWeapon Inventory\nWeapon Parts\nWeapon Schematic\nWeapon Test Data\nWeapons\nWeapons Fire\nWedding Barge\nWellington Beck\nWells-class Carrier\nWheemete Wheat Cakes\nWhispering Plants\nWhite House\nWide Angle Detailed Surface Scanner\nWide Angle Scanner\nWide Angle Sensors\nWinder\nWine\nWing\nWing Missions\nWings\nWinking Cat\nWinters\nWitch\nWitch Head Nebula\nWitch space\nWitchhaul Kobe Beef\nWitchspace\nWolf 359\nWolf 397\nWolf Fesh\nWoods Haulage\nWorldCraft\nWorld War III\nWormhole\nWorn Shield Emitters\nWreaken Construction\nWreaken Corporation\nWreckage Components\nWreckage Components (Material)\nWregoe XQ-L c21-29\nWulpa Hyperbore Systems\nWuthielo Ku Froth\nWyrd\nXG7 Trident\nXG8 Javelin\nXG9 Lance\nXavier Luxury Entertainment\nXavier Malachai\nXelabara\nXeno-Defence Protocols\nXeno Multi Limpet Controller\nXeno Scanner\nXibalba\nXihe Biomorphic Companions\nXiona\nYarden Bond\nYaso Kondi Leaf\nYi Shen\nYorke\nYoru\nYttrium\nYuri Grom\nYuri Nakamura\nZac Antonaci\nZacariah Nemo\nZachary Hudson\nZachary Rackham\nZander Lachance\nZaonce\nZeessze Ant Grub Glue\nZemina Torval\nZende\nZinc\nZirconium\nZiva Eschel\nZorgon Peterson\nZorgon Peterson Hauler\nTalk:39 Tauri/@comment-91.125.221.236-20160708163554\nTalk:AI Relics/@comment-177.194.250.67-20170228092154\nTalk:AI Relics/@comment-26211383-20150813130852\nTalk:AI Relics/@comment-26211383-20150813130852/@comment-172.98.67.62-20160211011205\nTalk:AI Relics/@comment-26211383-20150813130852/@comment-26131393-20151124201452\nTalk:AI Relics/@comment-33547882-20170829130428\nTalk:AI Relics/@comment-73.226.78.200-20150827071819\nTalk:AI Relics/@comment-73.226.78.200-20150827071819/@comment-26959616-20151001205651\nTalk:AI Relics/@comment-73.226.78.200-20150827071819/@comment-37.230.22.117-20180519054751\nTalk:AI Relics/@comment-94.254.8.87-20161114184117\nTalk:ARX/@comment-108.16.7.231-20190914200137\nTalk:ARX/@comment-108.16.7.231-20190914200137/@comment-199.203.104.225-20190915091019\nTalk:ARX/@comment-108.16.7.231-20190914200137/@comment-213.68.126.83-20190918115447\nTalk:ARX/@comment-206.19.54.254-20190725170428\nTalk:ARX/@comment-206.19.54.254-20190725170428/@comment-73.229.225.13-20190918185733\nTalk:ARX/@comment-2604:6000:1517:8123:70F3:EFB9:189E:508A-20190921005518\nTalk:ARX/@comment-2604:6000:1517:8123:70F3:EFB9:189E:508A-20190921005518/@comment-101.184.8.108-20190924141048\nTalk:ARX/@comment-2604:6000:1517:8123:70F3:EFB9:189E:508A-20190921005518/@comment-37820584-20190925035636\nTalk:ARX/@comment-27838177-20200626164513\nTalk:ARX/@comment-8.20.190.2-20190917125840\nTalk:ARX/@comment-96.250.114.167-20190919054653\nTalk:ARX/@comment-96.250.114.167-20190919054653/@comment-27273957-20190919132952\nTalk:ARX/@comment-96.250.114.167-20190919054653/@comment-83.56.188.196-20190919125817\nTalk:ARX/@comment-96.250.114.167-20190919054653/@comment-96.250.114.167-20190920171913\nTalk:ARX/@comment-99.203.76.95-20190918190356\nTalk:AX Conflict Zone/@comment-212.197.190.77-20190305180452\nTalk:AX Conflict Zone/@comment-212.197.190.77-20190305180452/@comment-192.136.170.98-20190305192242\nTalk:AX Conflict Zone/@comment-78.21.151.26-20191122193616\nTalk:AX Conflict Zone/@comment-82.243.18.171-20190214232842\nTalk:AX Conflict Zone/@comment-82.243.18.171-20190214232842/@comment-70.80.240.232-20190222234548\nTalk:AX Missile Rack/@comment-216.26.209.4-20190219222744\nTalk:AX Missile Rack/@comment-216.26.209.4-20190219222744/@comment-192.136.170.98-20190220040942\nTalk:AX Missile Rack/@comment-216.26.209.4-20190219222744/@comment-99.203.11.75-20190219232556\nTalk:AX Missile Rack/@comment-2406:E006:44E0:1:F02B:B78D:E6DE:3615-20170929094430\nTalk:AX Missile Rack/@comment-2406:E006:44E0:1:F02B:B78D:E6DE:3615-20170929094430/@comment-189.32.28.226-20190225013932\nTalk:AX Missile Rack/@comment-2406:E006:44E0:1:F02B:B78D:E6DE:3615-20170929094430/@comment-26810597-20170929192708\nTalk:AX Missile Rack/@comment-2406:E006:44E0:1:F02B:B78D:E6DE:3615-20170929094430/@comment-44180665-20200312184942\nTalk:AX Missile Rack/@comment-2607:FB90:7224:370:0:4B:1CD9:2201-20171001072301\nTalk:AX Missile Rack/@comment-2A02:C7F:C3F:4200:C0ED:6E1B:1D45:6843-20171114202149\nTalk:AX Missile Rack/@comment-32.212.131.1-20171006215302\nTalk:AX Missile Rack/@comment-37811603-20181230142217\nTalk:AX Missile Rack/@comment-86.5.2.2-20170929215800\nTalk:AX Multi-cannon/@comment-108.234.143.191-20180815044512\nTalk:AX Multi-cannon/@comment-108.234.143.191-20180815044512/@comment-192.136.170.98-20181209213811\nTalk:AX Multi-cannon/@comment-108.234.143.191-20180815044512/@comment-2001:5B0:4BC1:7268:E56F:96D1:25CA:89A8-20190426071534\nTalk:AX Multi-cannon/@comment-108.234.143.191-20180815044512/@comment-2001:5B0:4BC2:6C20:0:FF:FEBD:63F2-20181209194339\nTalk:AX Multi-cannon/@comment-108.234.143.191-20180815044512/@comment-90.200.46.38-20181123021255\nTalk:AX Multi-cannon/@comment-108.234.143.191-20180815044512/@comment-90.200.46.38-20181123021522\nTalk:AX Multi-cannon/@comment-2001:5B0:4BC1:7268:E56F:96D1:25CA:89A8-20190426070244\nTalk:AX Multi-cannon/@comment-2001:5B0:4BC1:7268:E56F:96D1:25CA:89A8-20190426070244/@comment-2001:5B0:4BC1:7268:E56F:96D1:25CA:89A8-20190426071827\nTalk:AX Multi-cannon/@comment-212.90.155.106-20191118115051\nTalk:AX Multi-cannon/@comment-216.128.101.83-20171018051240\nTalk:AX Multi-cannon/@comment-2601:80:C003:5080:5D51:3DC5:16D4:6D5E-20180406194648\nTalk:AX Multi-cannon/@comment-2601:80:C003:5080:5D51:3DC5:16D4:6D5E-20180406194648/@comment-50.126.116.115-20180422085652\nTalk:AX Multi-cannon/@comment-32.212.131.1-20171006215206\nTalk:AX Multi-cannon/@comment-32.212.131.1-20171006215206/@comment-2406:E000:420F:1:C817:4A21:4AB7:DCD9-20180318002436\nTalk:AX Multi-cannon/@comment-32.212.131.1-20171006215206/@comment-2606:A000:7A03:9000:5445:1457:D46F:5ECB-20180301093430\nTalk:AX Multi-cannon/@comment-32.212.131.1-20171006215206/@comment-37.201.127.188-20171226142759\nTalk:AX Multi-cannon/@comment-32.212.131.1-20171006215206/@comment-50.126.116.115-20180422090239\nTalk:AX Multi-cannon/@comment-32.212.131.1-20171006215206/@comment-86.52.85.36-20180616040859\nTalk:AX Multi-cannon/@comment-32.212.131.1-20171006215206/@comment-95.145.56.165-20171007231008\nTalk:AX Multi-cannon/@comment-32.212.131.1-20171006215206/@comment-99.241.5.214-20180122201531\nTalk:AX Multi-cannon/@comment-44180665-20200312185257\nTalk:AX Multi-cannon/@comment-50.126.116.115-20180130112642\nTalk:AX Multi-cannon/@comment-90.216.211.211-20171012183000\nTalk:AX Multi-cannon/@comment-90.216.211.211-20171012183000/@comment-80.41.79.15-20171218152859\nTalk:AX Xeno Scanner/@comment-104.173.79.196-20180820010256\nTalk:AX Xeno Scanner/@comment-104.173.79.196-20180820012059\nTalk:AX Xeno Scanner/@comment-104.173.79.196-20180820020529\nTalk:AX Xeno Scanner/@comment-104.173.79.196-20180820020529/@comment-90.252.247.71-20190410085916\nTalk:AX Xeno Scanner/@comment-104.173.79.196-20180820020806\nTalk:AX Xeno Scanner/@comment-159.205.245.170-20191221083045\nTalk:AX Xeno Scanner/@comment-212.197.190.77-20190305233639\nTalk:AX Xeno Scanner/@comment-212.197.190.77-20190305233639/@comment-82.41.62.93-20190309144734\nTalk:AX Xeno Scanner/@comment-2601:185:8301:C870:5526:A931:5281:FE82-20190323180747\nTalk:AX Xeno Scanner/@comment-2605:6000:5714:CD00:AD92:3F27:9558:7F95-20190416130747\nTalk:AX Xeno Scanner/@comment-2605:6000:5714:CD00:AD92:3F27:9558:7F95-20190416130747/@comment-1640573-20190418192112\nTalk:AX Xeno Scanner/@comment-45289302-20200411191609\nTalk:AX Xeno Scanner/@comment-77.117.53.147-20180626223317\nTalk:AX Xeno Scanner/@comment-77.6.98.49-20171012155829\nTalk:AX Xeno Scanner/@comment-89.228.200.201-20171009181601\nTalk:AX Xeno Scanner/@comment-89.228.200.201-20171009181601/@comment-46.5.98.25-20171011133239\nTalk:AX Xeno Scanner/@comment-92.8.32.124-20180114134550\nTalk:AX Xeno Scanner/@comment-95.90.230.216-20191013215538\nTalk:AX Xeno Scanner/@comment-95.90.230.216-20191013215538/@comment-2003:DB:F70F:D663:FD26:6138:73D4:6FC7-20200209201920\nTalk:AZ Cancri Formula 42/@comment-129.0.205.163-20191030181219\nTalk:AZ Cancri Formula 42/@comment-73.225.222.15-20170324072629\nTalk:AZ Cancri Formula 42/@comment-77.50.26.143-20160930213335\nTalk:Abnormal Compact Emissions Data/@comment-4.35.166.18-20180517215826\nTalk:Abrasion Blaster/@comment-68.131.125.90-20190606225818\nTalk:Abrasion Blaster/@comment-68.131.125.90-20190606225818/@comment-44180665-20200419173415\nTalk:Access Corridor/@comment-26247073-20150704132840\nTalk:Access Corridor/@comment-79.244.25.163-20150401173117\nTalk:Achenar/@comment-176.249.62.114-20170825123337\nTalk:Achenar/@comment-176.249.62.114-20170825123337/@comment-32843761-20180514023641\nTalk:Achenar/@comment-176.249.62.114-20170825123337/@comment-90.200.46.38-20181105160614\nTalk:Achenar/@comment-185.60.120.42-20150417140319\nTalk:Achenar/@comment-188.126.169.196-20150515014618\nTalk:Achenar/@comment-26372902-20151216155252\nTalk:Achenar/@comment-26372902-20151216155252/@comment-137.28.109.125-20151218194441\nTalk:Achenar/@comment-26372902-20151216155252/@comment-176.249.62.114-20170825122846\nTalk:Achenar/@comment-26372902-20151216155252/@comment-26372902-20151216223335\nTalk:Achenar/@comment-26372902-20151216155252/@comment-26372902-20151222185410\nTalk:Achenar/@comment-26372902-20151216155252/@comment-26372902-20151222195025\nTalk:Achenar/@comment-26372902-20151216155252/@comment-27311754-20151222193112\nTalk:Achenar/@comment-26372902-20151216155252/@comment-63.64.75.10-20151216222631\nTalk:Achenar/@comment-26372902-20151216155252/@comment-71.233.88.91-20160718232909\nTalk:Achenar/@comment-26537865-20150804051926\nTalk:Achenar/@comment-26537865-20150804051926/@comment-189.68.132.40-20160801214511\nTalk:Achenar/@comment-26537865-20150804051926/@comment-199.202.104.234-20150814211354\nTalk:Achenar/@comment-26642794-20190408112302\nTalk:Achenar/@comment-26642794-20190408112302/@comment-192.136.170.30-20190408172029\nTalk:Achenar/@comment-27092762-20170914135842\nTalk:Achenar/@comment-27115814-20151211193727\nTalk:Achenar/@comment-27115814-20151211193727/@comment-2001:8003:55AC:CD00:8CD8:36DF:A89C:46F4-20180309125658\nTalk:Achenar/@comment-27115814-20151211193727/@comment-2602:306:CE29:B0D0:1D7E:65A0:C9A1:E3E-20190903093508\nTalk:Achenar/@comment-27115814-20151211193727/@comment-27034370-20160107080311\nTalk:Achenar/@comment-27115814-20151211193727/@comment-4912452-20200225044245\nTalk:Achenar/@comment-27115814-20151211193727/@comment-82.2.74.231-20170216013416\nTalk:Achenar/@comment-5471809-20180417042135\nTalk:Achenar/@comment-5471809-20180417042135/@comment-142.113.238.253-20200130021036\nTalk:Achenar/@comment-771847-20170728025839\nTalk:Achenar/@comment-771847-20170728025839/@comment-176.249.62.114-20170825123701\nTalk:Achenar/@comment-771847-20170728025839/@comment-24.8.43.218-20170826025421\nTalk:Achenar/@comment-82.3.188.41-20160421184830\nTalk:Achenar/@comment-86.157.77.155-20150416205242\nTalk:Achenar/@comment-88.195.183.220-20161125143020\nTalk:Achenar/@comment-95.160.156.129-20190224112209\nTalk:Achenar/@comment-95.91.228.181-20160229035544\nTalk:Acronyms & Slang/@comment-108.28.34.105-20180108022024\nTalk:Acronyms & Slang/@comment-2605:A000:161A:4494:581D:BA4C:B0C:DE4C-20180723180558\nTalk:Acronyms & Slang/@comment-2605:A000:161A:4494:581D:BA4C:B0C:DE4C-20180723180558/@comment-67.169.176.250-20180724021013\nTalk:Acronyms & Slang/@comment-37407952-20181115104414\nTalk:Acronyms & Slang/@comment-46920279-20200918084517\nTalk:Acronyms & Slang/@comment-50.152.35.117-20150110150551\nTalk:Acronyms & Slang/@comment-50.152.35.117-20150110150551/@comment-4968814-20150110184238\nTalk:Acronyms & Slang/@comment-77.22.179.35-20180515181741\nTalk:Acronyms & Slang/@comment-82.13.94.242-20180312013134\nTalk:Acronyms & Slang/@comment-90.200.49.195-20181211162354\nTalk:Acronyms & Slang/@comment-90.200.49.195-20181211162740\nTalk:Acronyms & Slang/@comment-90.200.49.195-20181211162740/@comment-192.136.170.98-20181211211647\nTalk:Acronyms & Slang/@comment-90.200.49.195-20181211162740/@comment-90.200.49.195-20181211211819\nTalk:Acronyms & Slang/@comment-90.200.49.195-20181211162740/@comment-90.200.49.195-20181212163027\nTalk:Acropolis/@comment-72.89.45.33-20180919165517\nTalk:Adaptive Encryptors Capture/@comment-157.107.3.61-20180208204701\nTalk:Adaptive Encryptors Capture/@comment-157.107.3.61-20180208204701/@comment-83.113.227.251-20180408125338\nTalk:Adaptive Encryptors Capture/@comment-82.11.81.188-20180805164752\nTalk:Adaptive Encryptors Capture/@comment-82.11.81.188-20180805164752/@comment-2601:603:7F:A827:F9AA:68CD:8578:7A29-20181129071224\nTalk:Adder/@comment-107.205.176.217-20151019202815\nTalk:Adder/@comment-107.205.176.217-20151019202815/@comment-150.208.129.188-20170120140339\nTalk:Adder/@comment-108.219.88.255-20141228121234\nTalk:Adder/@comment-121.75.9.61-20150502014748\nTalk:Adder/@comment-121.75.9.61-20150502014748/@comment-118.93.125.86-20150731193341\nTalk:Adder/@comment-121.75.9.61-20150502014748/@comment-209.147.144.17-20150503223642\nTalk:Adder/@comment-121.75.9.61-20150502014748/@comment-26116574-20150523212156\nTalk:Adder/@comment-121.75.9.61-20150502014748/@comment-62.163.31.7-20160123163023\nTalk:Adder/@comment-121.75.9.61-20150502014748/@comment-71.231.50.26-20160711044158\nTalk:Adder/@comment-121.75.9.61-20150502014748/@comment-78.96.65.97-20160804150109\nTalk:Adder/@comment-121.75.9.61-20150502014748/@comment-9472148-20150722191845\nTalk:Adder/@comment-122.58.31.187-20141229101304\nTalk:Adder/@comment-122.58.31.187-20141229101304/@comment-118.93.125.86-20150731193520\nTalk:Adder/@comment-128.150.82.189-20150618153107\nTalk:Adder/@comment-129.89.104.180-20141221174941\nTalk:Adder/@comment-137.186.179.68-20141218044320\nTalk:Adder/@comment-137.186.179.68-20141218044320/@comment-60.242.49.52-20141219121920\nTalk:Adder/@comment-138.226.68.16-20141217211908\nTalk:Adder/@comment-145.53.195.156-20141225142207\nTalk:Adder/@comment-150.208.129.188-20170329141426\nTalk:Adder/@comment-150.208.129.188-20170329143806\nTalk:Adder/@comment-156.3.54.202-20150427153657\nTalk:Adder/@comment-156.3.54.202-20150427153657/@comment-107.220.149.130-20150712054934\nTalk:Adder/@comment-156.3.54.202-20150427153657/@comment-118.93.125.86-20150731193422\nTalk:Adder/@comment-156.3.54.202-20150427153657/@comment-156.3.54.202-20150427153801\nTalk:Adder/@comment-156.3.54.202-20150427153657/@comment-169.204.228.90-20150508170134\nTalk:Adder/@comment-156.3.54.202-20150427153657/@comment-173.55.173.227-20150601052509\nTalk:Adder/@comment-156.3.54.203-20150428162025\nTalk:Adder/@comment-156.3.54.204-20150428212832\nTalk:Adder/@comment-156.3.54.204-20150915162752\nTalk:Adder/@comment-170.211.150.62-20180207212307\nTalk:Adder/@comment-173.25.0.217-20141215202855\nTalk:Adder/@comment-173.25.0.217-20141215202855/@comment-71.95.100.70-20141221054246\nTalk:Adder/@comment-178.201.119.229-20141211091057\nTalk:Adder/@comment-178.201.119.229-20141211091057/@comment-108.15.76.2-20141213014259\nTalk:Adder/@comment-178.201.119.229-20141211091057/@comment-194.127.8.30-20141212153910\nTalk:Adder/@comment-178.201.119.229-20141211091057/@comment-60.241.212.29-20141213105712\nTalk:Adder/@comment-178.201.119.229-20141211091057/@comment-85.70.18.52-20141219113401\nTalk:Adder/@comment-187.2.245.102-20170213171230\nTalk:Adder/@comment-187.2.245.102-20170213171230/@comment-192.136.161.52-20170213231618\nTalk:Adder/@comment-191.33.9.89-20150417223008\nTalk:Adder/@comment-191.33.9.89-20150417223008/@comment-143.81.103.35-20160109013508\nTalk:Adder/@comment-191.33.9.89-20150417223008/@comment-24.184.128.45-20150812031108\nTalk:Adder/@comment-191.33.9.89-20150417223008/@comment-26391992-20151212224505\nTalk:Adder/@comment-191.33.9.89-20150417223008/@comment-83.162.210.172-20151212204524\nTalk:Adder/@comment-206.47.100.175-20151004172810\nTalk:Adder/@comment-206.47.100.175-20151004172810/@comment-74.51.220.27-20160914170921\nTalk:Adder/@comment-213.172.91.229-20141228083549\nTalk:Adder/@comment-213.249.232.33-20141212051006\nTalk:Adder/@comment-216.252.21.238-20191119214645\nTalk:Adder/@comment-216.252.21.238-20191119214645/@comment-45771967-20200612200448\nTalk:Adder/@comment-216.252.21.238-20191119214645/@comment-82.1.203.26-20200101162004\nTalk:Adder/@comment-24471699-20140302174116\nTalk:Adder/@comment-24471699-20140302174116/@comment-98.170.240.244-20141225083203\nTalk:Adder/@comment-2601:980:8080:C4B0:D414:26D7:E3C6:F8C5-20170813002426\nTalk:Adder/@comment-2601:980:8080:C4B0:D414:26D7:E3C6:F8C5-20170813002426/@comment-187.145.10.167-20180305050354\nTalk:Adder/@comment-26048696-20150127222157\nTalk:Adder/@comment-26292233-20150408191159\nTalk:Adder/@comment-26391992-20151121215221\nTalk:Adder/@comment-26391992-20151121215221/@comment-192.136.172.239-20160216125836\nTalk:Adder/@comment-26391992-20151121215221/@comment-89.114.86.0-20160601215657\nTalk:Adder/@comment-2A02:8084:A5BF:B100:408D:8895:AD5F:4134-20180514133434\nTalk:Adder/@comment-30669064-20200812160245\nTalk:Adder/@comment-3243078-20160630044937\nTalk:Adder/@comment-46.146.29.91-20141211135203\nTalk:Adder/@comment-60.231.230.155-20141213132126\nTalk:Adder/@comment-60.231.230.155-20141213132140\nTalk:Adder/@comment-60.231.230.155-20141213132140/@comment-67.165.239.95-20141222072748\nTalk:Adder/@comment-60.231.230.155-20141213132140/@comment-67.191.15.203-20141214082248\nTalk:Adder/@comment-65.83.142.236-20141212044244\nTalk:Adder/@comment-66.229.135.252-20141223163833\nTalk:Adder/@comment-69.146.78.63-20150331140047\nTalk:Adder/@comment-69.146.78.63-20150331140047/@comment-192.136.161.52-20170105170505\nTalk:Adder/@comment-69.146.78.63-20150331140047/@comment-217.19.28.60-20170105160337\nTalk:Adder/@comment-73.181.253.52-20141223140632\nTalk:Adder/@comment-73.197.149.198-20141230200815\nTalk:Adder/@comment-73.197.149.198-20141230200815/@comment-4968814-20150106195517\nTalk:Adder/@comment-73.197.149.198-20141230200815/@comment-73.197.149.198-20150107083735\nTalk:Adder/@comment-73.37.55.91-20141229102023\nTalk:Adder/@comment-73.37.55.91-20141229102023/@comment-12138097-20141229195620\nTalk:Adder/@comment-73.37.55.91-20141229102023/@comment-178.84.5.249-20150121020532\nTalk:Adder/@comment-73.37.55.91-20141229102023/@comment-4968814-20141229192054\nTalk:Adder/@comment-73.37.55.91-20141229102023/@comment-5733253-20150121065744\nTalk:Adder/@comment-73.37.55.91-20141229102023/@comment-71.21.3.159-20150120235915\nTalk:Adder/@comment-73.37.55.91-20141229102023/@comment-74.136.143.56-20141231224219\nTalk:Adder/@comment-74.15.235.67-20150406195407\nTalk:Adder/@comment-75.109.81.198-20141224143251\nTalk:Adder/@comment-77.237.111.72-20150405164345\nTalk:Adder/@comment-78.92.110.189-20180624121057\nTalk:Adder/@comment-79.164.31.61-20141229222821\nTalk:Adder/@comment-81.101.97.103-20150109023638\nTalk:Adder/@comment-81.5.201.126-20181023072203\nTalk:Adder/@comment-86.160.8.191-20141226224558\nTalk:Adder/@comment-86.173.64.205-20150122215012\nTalk:Adder/@comment-86.173.64.205-20150122215012/@comment-50.38.32.124-20150325234414\nTalk:Adder/@comment-90.200.49.195-20181220004117\nTalk:Adder/@comment-90.200.49.195-20181220004117/@comment-192.136.170.98-20181222041952\nTalk:Adder/@comment-91.64.211.22-20141215080439\nTalk:Adder/@comment-92.16.38.248-20150106194707\nTalk:Adder/@comment-92.16.38.248-20150106194707/@comment-4968814-20150106195232\nTalk:Adder/@comment-92.16.38.248-20150106194707/@comment-92.16.38.248-20150107203133\nTalk:Adder/@comment-93.137.22.203-20160413102540\nTalk:Adder/@comment-94.12.31.80-20170724000916\nTalk:Adder/@comment-94.134.71.25-20141222050711\nTalk:Adder/@comment-94.134.71.25-20141222050711/@comment-46.59.13.53-20141223095219\nTalk:Adder/@comment-94.134.71.25-20141222050711/@comment-77.48.149.29-20141223061955\nTalk:Adder/@comment-94.134.71.25-20141222050711/@comment-87.115.203.10-20141223153803\nTalk:Adder/@comment-98.225.98.174-20150625050521\nTalk:Adder/@comment-98.225.98.174-20150625050521/@comment-174.47.79.70-20151202234249\nTalk:Adder/@comment-98.225.98.174-20150625050521/@comment-217.19.28.60-20170105160442\nTalk:Adder/@comment-98.239.139.216-20150124041739\nTalk:Adder/@comment-98.239.48.227-20150224231218\nTalk:Adder/@comment-98.244.151.22-20150629134113\nTalk:Adder/@comment-99.103.7.16-20141219185347\nTalk:Admiral/@comment-100.15.52.76-20180314213117\nTalk:Admiral/@comment-100.15.52.76-20180314213117/@comment-2600:1700:AC00:A970:306F:3CB3:48C5:681E-20180316134610\nTalk:Admiral/@comment-100.15.52.76-20180314213117/@comment-45.224.26.97-20190219120030\nTalk:Admiral/@comment-100.15.52.76-20180314213117/@comment-50.100.128.58-20180316173836\nTalk:Admiral/@comment-100.15.52.76-20180314213117/@comment-73.165.180.42-20180412140231\nTalk:Admiral/@comment-159.191.163.201-20180308221024\nTalk:Admiral/@comment-159.191.163.201-20180308221024/@comment-71.178.184.122-20180312173444\nTalk:Admiral/@comment-188.218.99.172-20180313142000\nTalk:Admiral/@comment-217.104.28.102-20190114125627\nTalk:Admiral/@comment-217.104.28.102-20190114125627/@comment-184.22.136.188-20190725212433\nTalk:Admiral/@comment-217.104.28.102-20190114125627/@comment-192.136.170.98-20190114202220\nTalk:Admiral/@comment-217.104.28.102-20190114125627/@comment-73.209.152.39-20191118072417\nTalk:Admiral/@comment-217.104.28.102-20190114125627/@comment-91.127.192.80-20191005142748\nTalk:Admiral/@comment-2A00:23C4:3412:DB00:80A1:605C:3A6E:42D3-20180621091517\nTalk:Admiral/@comment-2A00:23C4:3412:DB00:80A1:605C:3A6E:42D3-20180621091517/@comment-121.74.223.153-20180817065519\nTalk:Admiral/@comment-2A00:23C4:3412:DB00:80A1:605C:3A6E:42D3-20180621091517/@comment-199.47.254.156-20180820151201\nTalk:Admiral/@comment-2A00:23C4:3412:DB00:80A1:605C:3A6E:42D3-20180621091517/@comment-35.133.56.197-20180830054024\nTalk:Admiral/@comment-34848132-20180301140555\nTalk:Admiral/@comment-34848132-20180301140555/@comment-137.222.245.51-20190111120340\nTalk:Admiral/@comment-34848132-20180301140555/@comment-192.136.161.33-20180302041135\nTalk:Admiral/@comment-34848132-20180301140555/@comment-192.136.170.98-20190111191526\nTalk:Admiral/@comment-34848132-20180301140555/@comment-50.100.128.58-20180316173949\nTalk:Admiral/@comment-45.33.136.89-20190107172118\nTalk:Admiral/@comment-70.177.12.3-20181210164215\nTalk:Admiral/@comment-70.177.12.3-20181210164215/@comment-37811603-20190103061743\nTalk:Admiral/@comment-70.177.12.3-20181210164215/@comment-73.9.11.216-20190104224458\nTalk:Admiral/@comment-94.175.141.128-20190108073712\nTalk:Admiral of the Fleet/@comment-2601:281:C080:5F3:4C45:52A7:34C3:22B0-20180312045547\nTalk:Admiral of the Fleet/@comment-2601:281:C080:5F3:4C45:52A7:34C3:22B0-20180312045547/@comment-30928085-20180312063509\nTalk:Advanced Docking Computer/@comment-202.74.39.238-20190429000922\nTalk:Advanced Docking Computer/@comment-202.74.39.238-20190429000922/@comment-206.19.54.254-20190709223411\nTalk:Advanced Docking Computer/@comment-219.249.93.208-20190720061704\nTalk:Advanced Docking Computer/@comment-219.249.93.208-20190720061704/@comment-46169441-20200623184451\nTalk:Advanced Docking Computer/@comment-219.249.93.208-20190720061704/@comment-67.214.29.13-20190803025641\nTalk:Advanced Docking Computer/@comment-37.14.145.203-20191224163754\nTalk:Advanced Docking Computer/@comment-64.47.145.66-20190908033347\nTalk:Advanced Docking Computer/@comment-64.47.145.66-20190908033347/@comment-37.14.145.203-20191225005015\nTalk:Advanced Medicines/@comment-87.201.202.34-20191014090707\nTalk:Advanced Missile Rack/@comment-37820584-20190924084515\nTalk:Advanced Missile Rack/@comment-37820584-20190924084515/@comment-193.116.203.232-20190925081407\nTalk:Advanced Missile Rack/@comment-43763297-20200304074824\nTalk:Advanced Missile Rack/@comment-43763297-20200304074824/@comment-27941085-20200619105901\nTalk:Advanced Missile Rack/@comment-43763297-20200304074824/@comment-27941085-20200629025036\nTalk:Advanced Missile Rack/@comment-43763297-20200304074824/@comment-45131285-20200304084623\nTalk:Advanced Missile Rack/@comment-43763297-20200304074824/@comment-45131285-20200316224713\nTalk:Advanced Missile Rack/@comment-44356134-20191108142136\nTalk:Advanced Missile Rack/@comment-45131285-20200304052935\nTalk:Advanced Missile Rack/@comment-45131285-20200304052935/@comment-45162450-20200304073320\nTalk:Advanced Multi-cannon/@comment-108.234.143.191-20190711124754\nTalk:Advanced Multi-cannon/@comment-80.236.236.137-20190609152338\nTalk:Advanced Multi-cannon/@comment-80.236.236.137-20190609152338/@comment-2A02:C7F:5E83:3F00:85CD:401F:D209:2E12-20190621115438\nTalk:Advanced Multi-cannon/@comment-80.236.236.137-20190609152338/@comment-2A02:C7F:5E83:3F00:85CD:401F:D209:2E12-20190621115845\nTalk:Advanced Multi-cannon/@comment-90.201.253.73-20190702155929\nTalk:Advanced Multi-cannon/@comment-90.201.253.73-20190702155929/@comment-27941085-20191126044728\nTalk:Advanced Plasma Accelerator/@comment-173.79.41.36-20180614200157\nTalk:Advanced Plasma Accelerator/@comment-173.79.41.36-20180614200157/@comment-192.136.163.15-20180617141144\nTalk:Advanced Plasma Accelerator/@comment-2003:EE:C70F:FAF4:64CD:5610:9ED2:2B77-20191107190146\nTalk:Advanced Plasma Accelerator/@comment-2003:EE:C70F:FAF4:64CD:5610:9ED2:2B77-20191107190146/@comment-27941085-20191124233609\nTalk:Advanced Plasma Accelerator/@comment-213.249.133.2-20180308144203\nTalk:Advanced Plasma Accelerator/@comment-213.249.133.2-20180308144203/@comment-195.117.107.158-20180913154921\nTalk:Advanced Plasma Accelerator/@comment-213.249.133.2-20180308144203/@comment-2605:E000:1319:C142:D18B:958B:CB51:8C04-20180329175902\nTalk:Advanced Plasma Accelerator/@comment-213.249.133.2-20180308144203/@comment-90.200.46.38-20181121171648\nTalk:Advanced Plasma Accelerator/@comment-2602:306:CE29:B0D0:55DA:FB68:7DF9:4C05-20191014051358\nTalk:Advanced Plasma Accelerator/@comment-44180665-20200520112022\nTalk:Advanced Plasma Accelerator/@comment-88.156.226.166-20150807000002\nTalk:Advanced Plasma Accelerator/@comment-88.156.226.166-20150807000002/@comment-71.125.245.12-20150809212444\nTalk:Advanced Tactical Response/@comment-188.195.99.10-20180127001729\nTalk:Advanced Tactical Response/@comment-188.195.99.10-20180127001729/@comment-170.185.126.17-20191106212835\nTalk:Advanced Tactical Response/@comment-192.245.50.52-20180129181408\nTalk:Advanced Tactical Response/@comment-192.245.50.52-20180129181408/@comment-189.232.26.63-20180731193052\nTalk:Advanced Tactical Response/@comment-192.245.50.52-20180129181408/@comment-32843761-20180528205950\nTalk:Advanced Tactical Response/@comment-192.245.50.52-20180129181408/@comment-98.201.192.97-20180528174740\nTalk:Advanced Tactical Response/@comment-2001:48F8:1012:3D:C8A:5EB9:3A63:73B0-20200209221412\nTalk:Advanced Tactical Response/@comment-206.74.17.157-20180126050607\nTalk:Advanced Tactical Response/@comment-206.74.17.157-20180126050607/@comment-170.185.126.17-20191106213019\nTalk:Advanced Tactical Response/@comment-206.74.17.157-20180126050607/@comment-52.206.255.166-20180406153034\nTalk:Advanced Tactical Response/@comment-209.134.39.154-20180120033100\nTalk:Advanced Tactical Response/@comment-209.134.39.154-20180120033100/@comment-125.237.1.45-20180122010421\nTalk:Advanced Tactical Response/@comment-209.134.39.154-20180120033100/@comment-170.185.126.17-20191106213223\nTalk:Advanced Tactical Response/@comment-209.134.39.154-20180120033100/@comment-176.198.246.134-20180308224513\nTalk:Advanced Tactical Response/@comment-2600:1700:DCB0:CC40:183B:6FB4:C4EC:277B-20180723132523\nTalk:Advanced Tactical Response/@comment-2600:1700:DCB0:CC40:183B:6FB4:C4EC:277B-20180723132523/@comment-2600:1700:DCB0:CC40:183B:6FB4:C4EC:277B-20180723132604\nTalk:Advanced Tactical Response/@comment-2600:8805:3800:220:55F1:43FF:5EC3:C4B5-20190329022202\nTalk:Advanced Tactical Response/@comment-2600:8805:3800:220:55F1:43FF:5EC3:C4B5-20190329022202/@comment-44180665-20200504160618\nTalk:Advanced Tactical Response/@comment-2604:2D80:C02A:9179:717A:2A5C:9EDE:AEF2-20180402065758\nTalk:Advanced Tactical Response/@comment-3220797-20200523030624\nTalk:Advanced Tactical Response/@comment-34259865-20180117030042\nTalk:Advanced Tactical Response/@comment-44180665-20200504161411\nTalk:Advanced Tactical Response/@comment-87.91.32.69-20190804140630\nTalk:Aegis/@comment-176.78.158.9-20190505175039\nTalk:Aegis/@comment-176.78.158.9-20190505175039/@comment-37746153-20190702211303\nTalk:Aegis/@comment-176.78.158.9-20190505175039/@comment-46834437-20200908141555\nTalk:Aegis/@comment-2600:1014:B120:601E:897A:240B:F78E:C577-20180626064810\nTalk:Aegis/@comment-2A00:23C1:74C9:5000:68CA:1903:8B3A:2CAF-20190421062624\nTalk:Aepyornis Egg/@comment-77.50.26.143-20160814203104\nTalk:Aganippe Rush/@comment-109.151.0.76-20170712235726\nTalk:Aganippe Rush/@comment-184.153.186.55-20181217011540\nTalk:Aganippe Rush/@comment-187.67.3.61-20180112015530\nTalk:Aganippe Rush/@comment-2602:306:8386:9030:7CC8:B1E3:958F:ABE4-20171003050824\nTalk:Agri-Medicines/@comment-71.119.87.114-20150515221958\nTalk:Agri-Medicines/@comment-89.73.219.205-20141223184250\nTalk:Aisling Duval/@comment-106.69.249.101-20161019184330\nTalk:Aisling Duval/@comment-106.69.249.101-20161019184330/@comment-2606:A000:404E:A000:505D:292E:5656:86A1-20180118003405\nTalk:Aisling Duval/@comment-106.69.249.101-20161019184330/@comment-30204622-20170131214233\nTalk:Aisling Duval/@comment-106.69.249.101-20161019184330/@comment-38815805-20200521141953\nTalk:Aisling Duval/@comment-106.69.249.101-20161019184330/@comment-41.114.112.11-20180827092401\nTalk:Aisling Duval/@comment-109.158.200.117-20150529232256\nTalk:Aisling Duval/@comment-109.158.200.117-20150529232256/@comment-83.251.235.63-20150606175751\nTalk:Aisling Duval/@comment-109.81.208.16-20191122042139\nTalk:Aisling Duval/@comment-160.3.38.154-20190424001308\nTalk:Aisling Duval/@comment-172.74.44.60-20150623050534\nTalk:Aisling Duval/@comment-192.91.173.36-20150701184239\nTalk:Aisling Duval/@comment-192.91.173.36-20150701184239/@comment-26599825-20150719195947\nTalk:Aisling Duval/@comment-192.91.173.36-20150701184239/@comment-26757228-20150719145537\nTalk:Aisling Duval/@comment-192.91.173.36-20150701184239/@comment-4052334-20160815224049\nTalk:Aisling Duval/@comment-192.91.173.36-20150701184239/@comment-49.147.129.226-20170129130422\nTalk:Aisling Duval/@comment-192.91.173.36-20150701184239/@comment-98.14.0.13-20150930191702\nTalk:Aisling Duval/@comment-194.98.70.140-20150608124925\nTalk:Aisling Duval/@comment-194.98.70.140-20150608124925/@comment-178.172.239.241-20150616102558\nTalk:Aisling Duval/@comment-195.221.155.11-20151103084458\nTalk:Aisling Duval/@comment-2003:CB:5BDB:3D00:855B:B430:C7A:CF63-20180304131225\nTalk:Aisling Duval/@comment-213.127.233.19-20170414161510\nTalk:Aisling Duval/@comment-24.255.174.30-20150604041251\nTalk:Aisling Duval/@comment-24.255.174.30-20150604041251/@comment-67.171.253.40-20150606211821\nTalk:Aisling Duval/@comment-24740282-20180313102602\nTalk:Aisling Duval/@comment-2602:306:CE29:B0D0:5148:3E6C:3019:AFBF-20191012062930\nTalk:Aisling Duval/@comment-2602:306:CE29:B0D0:7DA3:3D92:FE5B:DAA7-20190904031403\nTalk:Aisling Duval/@comment-2602:306:CE29:B0D0:7DA3:3D92:FE5B:DAA7-20190904031403/@comment-34004391-20200316115603\nTalk:Aisling Duval/@comment-2602:306:CE29:B0D0:7DA3:3D92:FE5B:DAA7-20190904031403/@comment-43403081-20200329012813\nTalk:Aisling Duval/@comment-26471347-20150606173703\nTalk:Aisling Duval/@comment-26471347-20150606173703/@comment-90.221.134.174-20150607014124\nTalk:Aisling Duval/@comment-27019965-20150926083921\nTalk:Aisling Duval/@comment-27311754-20151219001957\nTalk:Aisling Duval/@comment-27311754-20151219001957/@comment-26009169-20151219014934\nTalk:Aisling Duval/@comment-27311754-20151219001957/@comment-4052334-20160815223947\nTalk:Aisling Duval/@comment-27311754-20151219001957/@comment-58.161.150.184-20171119010145\nTalk:Aisling Duval/@comment-28094360-20160330211157\nTalk:Aisling Duval/@comment-28094360-20160330211157/@comment-2003:EE:570C:8900:882B:61B:9094:E421-20180217001126\nTalk:Aisling Duval/@comment-28094360-20160330211157/@comment-50.65.88.14-20170413231504\nTalk:Aisling Duval/@comment-2A01:CB19:E:A300:B934:B528:D36D:EFE9-20190419131143\nTalk:Aisling Duval/@comment-31745571-20170415084259\nTalk:Aisling Duval/@comment-37936506-20181226173145\nTalk:Aisling Duval/@comment-46.36.156.151-20150625175211\nTalk:Aisling Duval/@comment-46207745-20200628114522\nTalk:Aisling Duval/@comment-58.6.250.110-20181227095713\nTalk:Aisling Duval/@comment-58.6.250.110-20181227095713/@comment-33202525-20181227205848\nTalk:Aisling Duval/@comment-69.125.156.220-20150529010956\nTalk:Aisling Duval/@comment-69.125.156.220-20150529010956/@comment-92.74.230.108-20150617164332\nTalk:Aisling Duval/@comment-69.125.156.220-20150606191120\nTalk:Aisling Duval/@comment-69.125.156.220-20150606191120/@comment-69.125.156.220-20150606191138\nTalk:Aisling Duval/@comment-80.187.100.227-20150619054959\nTalk:Aisling Duval/@comment-80.187.100.227-20150619054959/@comment-173.29.224.36-20151105060620\nTalk:Aisling Duval/@comment-80.187.100.227-20150619054959/@comment-40053436-20190706184022\nTalk:Aisling Duval/@comment-80.223.182.194-20150627100207\nTalk:Aisling Duval/@comment-80.223.182.194-20150627100207/@comment-2602:306:CE29:B0D0:BC10:DF08:A369:D9BD-20191018054811\nTalk:Aisling Duval/@comment-80.223.182.194-20150627100207/@comment-27092762-20170115104828\nTalk:Aisling Duval/@comment-80.223.182.194-20150627100207/@comment-41.114.112.11-20180827093136\nTalk:Aisling Duval/@comment-80.223.182.194-20150627100207/@comment-66.58.168.34-20150825073640\nTalk:Aisling Duval/@comment-80.223.182.194-20150627100207/@comment-77.49.78.188-20151009172857\nTalk:Aisling Duval/@comment-81.243.24.99-20150610232200\nTalk:Aisling Duval/@comment-89.101.97.130-20160201152439\nTalk:Aisling Duval/@comment-90.222.125.73-20160320121044\nTalk:Albino Quechua Mammoth Meat/@comment-77.50.26.143-20160814203254\nTalk:Aldebaran/@comment-4030403-20171116090033\nTalk:Alexandrite/@comment-2003:C1:8F42:6F00:A528:499D:C2AA:D987-20200207192306\nTalk:Alexandrite/@comment-2003:C1:8F42:6F00:A528:499D:C2AA:D987-20200207192306/@comment-2A02:C7F:3669:3000:61FD:3191:1320:A091-20200210211238\nTalk:Alien Crash Site/@comment-108.16.36.43-20161104160508\nTalk:Alien Crash Site/@comment-108.16.36.43-20161104160508/@comment-108.16.36.43-20161104222744\nTalk:Alien Crash Site/@comment-108.16.36.43-20161104160508/@comment-192.136.161.52-20161104163250\nTalk:Alien Crash Site/@comment-108.16.36.43-20161104160508/@comment-28878527-20170107142906\nTalk:Alien Crash Site/@comment-108.16.36.43-20161104160508/@comment-28878527-20170107150129\nTalk:Alien Crash Site/@comment-108.16.36.43-20161104160508/@comment-28878527-20170107155810\nTalk:Alien Crash Site/@comment-108.16.36.43-20161104160508/@comment-82.31.165.217-20170107142050\nTalk:Alien Crash Site/@comment-108.16.36.43-20161104160508/@comment-82.31.165.217-20170107160721\nTalk:Alien Crash Site/@comment-145.132.121.77-20180322210325\nTalk:Alien Crash Site/@comment-152.26.178.25-20171023185706\nTalk:Alien Crash Site/@comment-152.26.178.25-20171023185706/@comment-192.136.161.33-20171023201600\nTalk:Alien Crash Site/@comment-152.26.178.25-20171023185706/@comment-2601:2C1:200:1A40:7551:8347:D541:F416-20171115032002\nTalk:Alien Crash Site/@comment-152.26.178.25-20171023185706/@comment-88.115.180.195-20171118122641\nTalk:Alien Crash Site/@comment-212.60.33.220-20161213214538\nTalk:Alien Crash Site/@comment-212.60.33.220-20161213214538/@comment-212.60.33.220-20161213220009\nTalk:Alien Crash Site/@comment-41.13.80.11-20180713124915\nTalk:Alien Crash Site/@comment-41.13.80.11-20180713124915/@comment-41.13.80.11-20180713124938\nTalk:Alien Crash Site/@comment-41.13.80.11-20180713124915/@comment-41.13.80.11-20180713125014\nTalk:Alien Crash Site/@comment-41.13.80.11-20180713124915/@comment-41.13.80.11-20180713125053\nTalk:Alien Crash Site/@comment-41.13.80.11-20180713124915/@comment-41.13.80.11-20180713125158\nTalk:Alien Crash Site/@comment-41.13.80.11-20180713124915/@comment-41.13.80.11-20180713125237\nTalk:Alien Crash Site/@comment-41.13.80.11-20180713124915/@comment-41.13.80.11-20180713125301\nTalk:Alien Crash Site/@comment-41.13.80.11-20180713124915/@comment-41.13.80.11-20180713125345\nTalk:Alien Crash Site/@comment-41.13.80.11-20180713124915/@comment-41.13.80.11-20180713125450\nTalk:Alien Crash Site/@comment-41.13.80.11-20180713124915/@comment-41.13.80.11-20180713125703\nTalk:Alien Crash Site/@comment-41.13.80.11-20180713124915/@comment-41.13.80.11-20180713125841\nTalk:Alien Crash Site/@comment-41.13.80.11-20180713124915/@comment-41.13.80.11-20180713130032\nTalk:Alien Crash Site/@comment-41.13.80.11-20180713124915/@comment-41.13.80.11-20180713130129\nTalk:Alien Crash Site/@comment-77.250.232.60-20170505200205\nTalk:Alien Crash Site/@comment-82.31.165.217-20170107160605\nTalk:Alioth/@comment-121.210.33.50-20180214025106\nTalk:Alioth/@comment-121.210.33.50-20180214025106/@comment-46707274-20200823180323\nTalk:Alioth/@comment-172.127.158.139-20170115203451\nTalk:Alioth/@comment-172.127.158.139-20170115203451/@comment-121.210.33.50-20180214025229\nTalk:Alioth/@comment-172.127.158.139-20170115203451/@comment-27717086-20170308042608\nTalk:Alioth/@comment-172.127.158.139-20170115203451/@comment-34004391-20180101185006\nTalk:Alioth/@comment-81.175.232.78-20150504161530\nTalk:Alioth/@comment-81.175.232.78-20150504161530/@comment-26009169-20150504170528\nTalk:Alliance/@comment-12.5.54.135-20151019145830\nTalk:Alliance/@comment-141.70.82.221-20170126135824\nTalk:Alliance/@comment-24.50.5.91-20150606020527\nTalk:Alliance/@comment-24.50.5.91-20150606020527/@comment-125.237.6.217-20170517084425\nTalk:Alliance/@comment-24.50.5.91-20150606020527/@comment-209.41.116.254-20150610044709\nTalk:Alliance/@comment-24740282-20180314030051\nTalk:Alliance/@comment-24740282-20180314030932\nTalk:Alliance/@comment-25985607-20150303163958\nTalk:Alliance/@comment-25985607-20150303163958/@comment-12138097-20150303204254\nTalk:Alliance/@comment-25985607-20150303163958/@comment-82.2.18.76-20150312223347\nTalk:Alliance/@comment-26210945-20151027005735\nTalk:Alliance/@comment-26210945-20151027005735/@comment-26361572-20151213232948\nTalk:Alliance/@comment-26210945-20151027005735/@comment-27032150-20151029121147\nTalk:Alliance/@comment-26247073-20150421014418\nTalk:Alliance/@comment-31.54.76.98-20180214192704\nTalk:Alliance/@comment-31.54.76.98-20180214192704/@comment-30928085-20180214200320\nTalk:Alliance/@comment-31.54.76.98-20180214192704/@comment-90.200.46.38-20181126141446\nTalk:Alliance/@comment-45677112-20200523154658\nTalk:Alliance/@comment-49.199.237.214-20190902202405\nTalk:Alliance/@comment-49.199.237.214-20190902202405/@comment-26810597-20190903000558\nTalk:Alliance/@comment-71.17.32.210-20180110041548\nTalk:Alliance/@comment-71.21.3.159-20150125202230\nTalk:Alliance/@comment-72.23.86.21-20161129115536\nTalk:Alliance/@comment-75.143.74.69-20170607163524\nTalk:Alliance/@comment-75.71.238.163-20150803130911\nTalk:Alliance/@comment-75.71.238.163-20150803130911/@comment-77.177.136.49-20150821125334\nTalk:Alliance/@comment-76.124.162.53-20150109002242\nTalk:Alliance/@comment-76.124.162.53-20150109002242/@comment-109.90.3.195-20150813231303\nTalk:Alliance/@comment-76.124.162.53-20150109002242/@comment-12138097-20150109010215\nTalk:Alliance/@comment-76.124.162.53-20150109002242/@comment-173.64.201.135-20151003074724\nTalk:Alliance/@comment-76.124.162.53-20150109002242/@comment-174.52.240.177-20150716223259\nTalk:Alliance/@comment-76.124.162.53-20150109002242/@comment-46.5.43.190-20150216222435\nTalk:Alliance/@comment-76.124.162.53-20150109002242/@comment-65.201.202.66-20150121175527\nTalk:Alliance/@comment-76.124.162.53-20150109002242/@comment-70.187.151.32-20150906143304\nTalk:Alliance/@comment-76.124.162.53-20150109002242/@comment-90.52.182.72-20150118213119\nTalk:Alliance/@comment-76.124.162.53-20150109002242/@comment-98.196.181.135-20150126070317\nTalk:Alliance/@comment-80.57.68.43-20150104175254\nTalk:Alliance/@comment-86.178.95.33-20190212010040\nTalk:Alliance/@comment-86.178.95.33-20190212010040/@comment-30928085-20200525124808\nTalk:Alliance/@comment-86.85.209.235-20150211192308\nTalk:Alliance/@comment-86.85.209.235-20150211192308/@comment-85.166.108.253-20150417234729\nTalk:Alliance/@comment-86.85.209.235-20150211192308/@comment-94.1.65.7-20160404213126\nTalk:Alliance/@comment-91.152.193.52-20141230150633\nTalk:Alliance/@comment-91.152.193.52-20141230150633/@comment-38.104.125.162-20150107222950\nTalk:Alliance/@comment-91.152.193.52-20141230150633/@comment-71.95.100.70-20150109052812\nTalk:Alliance/@comment-95.90.192.30-20151024214600\nTalk:Alliance/@comment-95.90.192.30-20151024214600/@comment-198.105.28.77-20160904053248\nTalk:Alliance/@comment-95.90.192.30-20151024214600/@comment-86.139.41.81-20160614222808\nTalk:Alliance/@comment-95.91.228.104-20160308144016\nTalk:Alliance/@comment-95.91.228.104-20160308144016/@comment-93.197.149.148-20171010161225\nTalk:Alliance Challenger/@comment-166.137.143.52-20180629152812\nTalk:Alliance Challenger/@comment-166.137.143.52-20180629152812/@comment-166.109.224.51-20190531150943\nTalk:Alliance Challenger/@comment-192.136.163.15-20180611130608\nTalk:Alliance Challenger/@comment-192.136.163.15-20180611130608/@comment-189.232.26.63-20180716050115\nTalk:Alliance Challenger/@comment-192.136.163.15-20180611130608/@comment-192.136.163.15-20180613114021\nTalk:Alliance Challenger/@comment-192.136.163.15-20180611130608/@comment-2600:6C5D:6300:801:D4B8:7427:5BB8:30EC-20180625062155\nTalk:Alliance Challenger/@comment-192.136.163.15-20180611130608/@comment-2A01:CB04:12E:3B00:81E7:CCE6:FEDC:8A8-20180618215046\nTalk:Alliance Challenger/@comment-192.136.163.15-20180611130608/@comment-71.73.51.141-20180612214424\nTalk:Alliance Challenger/@comment-2600:1700:DCB0:CC40:24AB:3B2C:BE87:BECC-20190123185646\nTalk:Alliance Challenger/@comment-2600:1700:DCB0:CC40:24AB:3B2C:BE87:BECC-20190123185646/@comment-166.109.224.51-20190531151014\nTalk:Alliance Challenger/@comment-2600:1700:DCB0:CC40:24AB:3B2C:BE87:BECC-20190123185646/@comment-2600:1700:DCB0:CC40:CC3A:6E33:D33:170C-20190719174942\nTalk:Alliance Challenger/@comment-2600:1700:DCB0:CC40:24AB:3B2C:BE87:BECC-20190123185646/@comment-45677112-20200504181946\nTalk:Alliance Challenger/@comment-2600:1700:DCB0:CC40:A85E:807F:C669:5205-20180629224425\nTalk:Alliance Challenger/@comment-27402982-20190107113014\nTalk:Alliance Challenger/@comment-27402982-20190107113014/@comment-189.232.14.15-20190125014451\nTalk:Alliance Challenger/@comment-2A0A:A544:6A45:0:895D:E17D:55B2:9767-20180601215458\nTalk:Alliance Challenger/@comment-2A0A:A544:6A45:0:895D:E17D:55B2:9767-20180601215458/@comment-93.114.194.72-20180602200218\nTalk:Alliance Challenger/@comment-33952827-20180601102727\nTalk:Alliance Challenger/@comment-33952827-20180601102727/@comment-192.136.163.15-20180601131204\nTalk:Alliance Challenger/@comment-33952827-20180601102727/@comment-69.114.195.213-20180618162504\nTalk:Alliance Challenger/@comment-37464488-20181110121223\nTalk:Alliance Challenger/@comment-37938660-20190121193114\nTalk:Alliance Challenger/@comment-60.229.149.43-20180629173415\nTalk:Alliance Challenger/@comment-66.168.158.38-20180603183411\nTalk:Alliance Challenger/@comment-76.24.210.16-20180824215622\nTalk:Alliance Challenger/@comment-89.204.138.79-20180601104454\nTalk:Alliance Challenger/@comment-89.204.138.79-20180601104454/@comment-32843761-20180602183846\nTalk:Alliance Challenger/@comment-91.129.99.212-20180610114451\nTalk:Alliance Challenger/@comment-94.197.120.244-20180621123213\nTalk:Alliance Challenger/@comment-97.91.196.87-20180702025435\nTalk:Alliance Challenger/@comment-97.91.196.87-20180702025435/@comment-189.232.26.63-20180716045650\nTalk:Alliance Challenger/@comment-97.91.196.87-20180702025435/@comment-2600:1700:DCB0:CC40:3C95:B0CB:17FC:DEC0-20180720192619\nTalk:Alliance Challenger/@comment-97.91.196.87-20180702025435/@comment-2600:1700:DCB0:CC40:CC2A:A544:6D88:9B50-20180708144907\nTalk:Alliance Chieftain/@comment-100.4.84.50-20180125173059\nTalk:Alliance Chieftain/@comment-100.4.84.50-20180125173059/@comment-100.4.84.50-20180126000252\nTalk:Alliance Chieftain/@comment-100.4.84.50-20180125173059/@comment-64.113.173.176-20180125215453\nTalk:Alliance Chieftain/@comment-131.151.163.188-20180228003918\nTalk:Alliance Chieftain/@comment-131.151.163.188-20180228003918/@comment-216.164.232.183-20180301024434\nTalk:Alliance Chieftain/@comment-131.151.163.188-20180228003918/@comment-2600:1700:BDA0:AB20:75B1:215D:630E:3DBF-20180303142214\nTalk:Alliance Chieftain/@comment-131.151.163.188-20180228003918/@comment-2601:243:480:98D9:F840:6510:5CDA:1D33-20180307225746\nTalk:Alliance Chieftain/@comment-131.151.163.188-20180228003918/@comment-32843761-20180312032947\nTalk:Alliance Chieftain/@comment-14.200.123.76-20180120114456\nTalk:Alliance Chieftain/@comment-173.20.128.159-20180223024024\nTalk:Alliance Chieftain/@comment-174.47.116.221-20171009144753\nTalk:Alliance Chieftain/@comment-174.47.116.221-20171009144753/@comment-170.211.150.62-20171010202408\nTalk:Alliance Chieftain/@comment-185.104.185.78-20180119131730\nTalk:Alliance Chieftain/@comment-185.104.185.78-20180119131730/@comment-192.136.161.33-20180119134129\nTalk:Alliance Chieftain/@comment-185.104.185.78-20180119131730/@comment-86.20.122.182-20180120151032\nTalk:Alliance Chieftain/@comment-185.104.185.83-20180211025423\nTalk:Alliance Chieftain/@comment-185.104.185.83-20180211025423/@comment-170.211.150.62-20180227170637\nTalk:Alliance Chieftain/@comment-185.104.185.83-20180211025423/@comment-170.211.150.62-20180227170657\nTalk:Alliance Chieftain/@comment-185.104.185.83-20180211025423/@comment-170.211.150.62-20180227170707\nTalk:Alliance Chieftain/@comment-185.137.125.5-20190130234430\nTalk:Alliance Chieftain/@comment-187.145.25.159-20180126002745\nTalk:Alliance Chieftain/@comment-187.145.25.159-20180126002745/@comment-100.4.84.50-20180126021705\nTalk:Alliance Chieftain/@comment-187.145.25.159-20180126002745/@comment-170.211.150.62-20180227171031\nTalk:Alliance Chieftain/@comment-187.145.25.159-20180126002745/@comment-2601:243:480:98D9:86E:EAC:6687:764-20180302011351\nTalk:Alliance Chieftain/@comment-188.126.174.89-20180324152944\nTalk:Alliance Chieftain/@comment-188.126.174.89-20180324152944/@comment-32843761-20180327160044\nTalk:Alliance Chieftain/@comment-188.126.174.89-20180324152944/@comment-97.91.196.87-20180606172740\nTalk:Alliance Chieftain/@comment-188.2.22.207-20180304200007\nTalk:Alliance Chieftain/@comment-192.136.161.33-20171205213734\nTalk:Alliance Chieftain/@comment-192.136.161.33-20171205213734/@comment-178.74.56.139-20180125190506\nTalk:Alliance Chieftain/@comment-192.136.161.33-20171205213734/@comment-192.136.161.33-20171210215706\nTalk:Alliance Chieftain/@comment-192.136.161.33-20171205213734/@comment-2A02:C7F:3A12:EB00:989E:573F:FCE2:EBD7-20171210115343\nTalk:Alliance Chieftain/@comment-192.136.161.33-20171205213734/@comment-34360819-20180116102603\nTalk:Alliance Chieftain/@comment-192.136.161.33-20171205213734/@comment-98.102.88.66-20180119143453\nTalk:Alliance Chieftain/@comment-192.136.161.33-20180112154144\nTalk:Alliance Chieftain/@comment-192.136.161.33-20180118205114\nTalk:Alliance Chieftain/@comment-192.136.161.33-20180130185054\nTalk:Alliance Chieftain/@comment-192.245.50.52-20171116184044\nTalk:Alliance Chieftain/@comment-192.245.50.52-20171116184044/@comment-98.102.88.66-20180119143722\nTalk:Alliance Chieftain/@comment-193.191.248.132-20180703062347\nTalk:Alliance Chieftain/@comment-194.118.242.67-20180429213612\nTalk:Alliance Chieftain/@comment-194.118.242.67-20180429213612/@comment-90.200.46.38-20181108183217\nTalk:Alliance Chieftain/@comment-194.118.242.67-20180429213612/@comment-97.91.196.87-20180606165414\nTalk:Alliance Chieftain/@comment-194.29.236.70-20180115095059\nTalk:Alliance Chieftain/@comment-194.29.236.70-20180115095059/@comment-192.136.161.33-20180119164611\nTalk:Alliance Chieftain/@comment-194.29.236.70-20180115095059/@comment-34360819-20180116102225\nTalk:Alliance Chieftain/@comment-194.29.236.70-20180115095059/@comment-98.102.88.66-20180119143248\nTalk:Alliance Chieftain/@comment-2003:69:AF08:9800:AD97:8D54:7779:D994-20180130004514\nTalk:Alliance Chieftain/@comment-2003:69:AF08:9800:AD97:8D54:7779:D994-20180130004514/@comment-192.136.161.33-20180130042857\nTalk:Alliance Chieftain/@comment-2003:69:AF08:9800:AD97:8D54:7779:D994-20180130004514/@comment-2003:69:AF08:9800:AD97:8D54:7779:D994-20180130004657\nTalk:Alliance Chieftain/@comment-2003:69:AF08:9800:AD97:8D54:7779:D994-20180130004514/@comment-69.114.195.213-20181006224910\nTalk:Alliance Chieftain/@comment-201.53.134.93-20180122133232\nTalk:Alliance Chieftain/@comment-212.117.64.74-20171011065837\nTalk:Alliance Chieftain/@comment-212.117.64.74-20171011065837/@comment-34360819-20180116102837\nTalk:Alliance Chieftain/@comment-216.164.232.183-20171008005827\nTalk:Alliance Chieftain/@comment-216.164.232.183-20171008005827/@comment-216.164.232.183-20171024054511\nTalk:Alliance Chieftain/@comment-216.164.232.183-20171008005827/@comment-34360819-20180116103047\nTalk:Alliance Chieftain/@comment-216.164.232.183-20171008005827/@comment-46.5.98.25-20171008183732\nTalk:Alliance Chieftain/@comment-216.164.232.183-20171024054329\nTalk:Alliance Chieftain/@comment-216.164.232.183-20171024054329/@comment-12.104.14.151-20171030041348\nTalk:Alliance Chieftain/@comment-216.164.232.183-20171024054329/@comment-34360819-20180116102726\nTalk:Alliance Chieftain/@comment-216.164.232.183-20171024054329/@comment-98.102.88.66-20180119143817\nTalk:Alliance Chieftain/@comment-2600:8801:1907:4900:5899:8417:EA53:190B-20180114015449\nTalk:Alliance Chieftain/@comment-2600:8801:1907:4900:5899:8417:EA53:190B-20180114015449/@comment-2601:243:480:98D9:86E:EAC:6687:764-20180302011511\nTalk:Alliance Chieftain/@comment-2600:8801:1907:4900:5899:8417:EA53:190B-20180114015449/@comment-34360819-20180116102248\nTalk:Alliance Chieftain/@comment-2601:188:8280:9AA:8CD9:1E84:5716:3CFB-20180228015130\nTalk:Alliance Chieftain/@comment-2601:188:8280:9AA:8CD9:1E84:5716:3CFB-20180228015130/@comment-188.126.173.69-20180319143402\nTalk:Alliance Chieftain/@comment-2601:188:8280:9AA:8CD9:1E84:5716:3CFB-20180228015130/@comment-192.136.161.33-20180228041636\nTalk:Alliance Chieftain/@comment-2601:188:8280:9AA:8CD9:1E84:5716:3CFB-20180228015130/@comment-192.136.161.33-20180228181847\nTalk:Alliance Chieftain/@comment-2601:188:8280:9AA:8CD9:1E84:5716:3CFB-20180228015130/@comment-208.44.170.83-20180228170320\nTalk:Alliance Chieftain/@comment-2601:188:8280:9AA:8CD9:1E84:5716:3CFB-20180228015130/@comment-208.44.170.83-20180305165405\nTalk:Alliance Chieftain/@comment-2601:188:8280:9AA:8CD9:1E84:5716:3CFB-20180228015130/@comment-92.176.18.64-20180322140401\nTalk:Alliance Chieftain/@comment-2601:18C:CB00:3671:64D4:E99A:F722:521A-20190119001026\nTalk:Alliance Chieftain/@comment-2601:19B:4080:2B99:C5C2:8A3B:6DA2:FCBB-20171124164817\nTalk:Alliance Chieftain/@comment-2601:19B:4080:2B99:C5C2:8A3B:6DA2:FCBB-20171124164817/@comment-184.159.128.62-20171129151054\nTalk:Alliance Chieftain/@comment-2601:19B:4080:2B99:C5C2:8A3B:6DA2:FCBB-20171124164817/@comment-34360819-20180116102647\nTalk:Alliance Chieftain/@comment-2601:19B:4080:2B99:C5C2:8A3B:6DA2:FCBB-20171124164817/@comment-98.102.88.66-20180119143646\nTalk:Alliance Chieftain/@comment-2601:19B:4080:2B99:C5C2:8A3B:6DA2:FCBB-20171124164902\nTalk:Alliance Chieftain/@comment-2601:19B:4080:2B99:C5C2:8A3B:6DA2:FCBB-20171124164902/@comment-184.159.128.62-20171129151017\nTalk:Alliance Chieftain/@comment-2601:19B:4080:2B99:C5C2:8A3B:6DA2:FCBB-20171124164902/@comment-212.88.26.41-20171231003258\nTalk:Alliance Chieftain/@comment-2601:404:C300:D55:BD56:A95:723C:8042-20180121034314\nTalk:Alliance Chieftain/@comment-2601:404:C300:D55:BD56:A95:723C:8042-20180121034314/@comment-192.136.161.33-20180122173939\nTalk:Alliance Chieftain/@comment-2601:404:C300:D55:BD56:A95:723C:8042-20180121034314/@comment-83.87.168.215-20180122134909\nTalk:Alliance Chieftain/@comment-2601:680:C101:E013:908A:D831:9A1E:AA23-20180315232030\nTalk:Alliance Chieftain/@comment-2601:680:C101:E013:908A:D831:9A1E:AA23-20180315232030/@comment-188.126.173.69-20180319143303\nTalk:Alliance Chieftain/@comment-26262705-20171213002235\nTalk:Alliance Chieftain/@comment-26262705-20171213002235/@comment-34360819-20180116102458\nTalk:Alliance Chieftain/@comment-2A00:23C5:448C:8200:9D8:1B33:F6DB:13FB-20180304214749\nTalk:Alliance Chieftain/@comment-2A00:23C5:448C:8200:9D8:1B33:F6DB:13FB-20180304214749/@comment-2601:243:480:98D9:F840:6510:5CDA:1D33-20180307225645\nTalk:Alliance Chieftain/@comment-33823123-20180621120241\nTalk:Alliance Chieftain/@comment-33823123-20180621120241/@comment-25527827-20180621134621\nTalk:Alliance Chieftain/@comment-5.156.18.125-20180120134153\nTalk:Alliance Chieftain/@comment-5.156.18.125-20180120134153/@comment-178.74.56.139-20180125190332\nTalk:Alliance Chieftain/@comment-51.6.52.132-20180303125450\nTalk:Alliance Chieftain/@comment-51.6.52.132-20180303125450/@comment-209.142.140.50-20180322195457\nTalk:Alliance Chieftain/@comment-51.6.52.132-20180303125450/@comment-71.12.150.53-20180303235913\nTalk:Alliance Chieftain/@comment-62.201.126.237-20180227205046\nTalk:Alliance Chieftain/@comment-62.201.126.237-20180227205046/@comment-108.168.116.152-20180606191657\nTalk:Alliance Chieftain/@comment-62.201.126.237-20180227205046/@comment-2.104.118.225-20180227225649\nTalk:Alliance Chieftain/@comment-62.201.126.237-20180227205046/@comment-2.104.118.225-20180227230159\nTalk:Alliance Chieftain/@comment-62.201.126.237-20180227205046/@comment-2.206.61.151-20180227210358\nTalk:Alliance Chieftain/@comment-62.201.126.237-20180227205046/@comment-62.201.126.237-20180227211658\nTalk:Alliance Chieftain/@comment-62.201.126.237-20180227205046/@comment-62.201.126.237-20180227223757\nTalk:Alliance Chieftain/@comment-68.116.31.250-20180413165927\nTalk:Alliance Chieftain/@comment-68.116.31.250-20180413165927/@comment-25527827-20180621134829\nTalk:Alliance Chieftain/@comment-68.116.31.250-20180413165927/@comment-50.126.116.115-20180415064744\nTalk:Alliance Chieftain/@comment-68.116.31.250-20180413165927/@comment-69.114.195.213-20180620030025\nTalk:Alliance Chieftain/@comment-68.148.114.70-20180120204456\nTalk:Alliance Chieftain/@comment-68.197.23.46-20190526234956\nTalk:Alliance Chieftain/@comment-69.114.195.213-20180816023955\nTalk:Alliance Chieftain/@comment-69.114.195.213-20181006225535\nTalk:Alliance Chieftain/@comment-69.137.188.155-20180201103841\nTalk:Alliance Chieftain/@comment-69.137.188.155-20180201103841/@comment-104.158.246.147-20180224044456\nTalk:Alliance Chieftain/@comment-69.137.188.155-20180201103841/@comment-2601:243:480:98D9:F840:6510:5CDA:1D33-20180307225955\nTalk:Alliance Chieftain/@comment-69.137.188.155-20180201103841/@comment-33441314-20180301035714\nTalk:Alliance Chieftain/@comment-69.137.188.155-20180201103841/@comment-33936523-20180304172804\nTalk:Alliance Chieftain/@comment-69.137.188.155-20180201103841/@comment-68.184.110.81-20180222091400\nTalk:Alliance Chieftain/@comment-71.203.245.105-20171008231735\nTalk:Alliance Chieftain/@comment-71.203.245.105-20171008231735/@comment-34360819-20180116103020\nTalk:Alliance Chieftain/@comment-71.203.245.105-20171008231735/@comment-80.0.230.110-20180122202254\nTalk:Alliance Chieftain/@comment-71.203.245.105-20171008231735/@comment-84.44.191.124-20180112162345\nTalk:Alliance Chieftain/@comment-73.14.67.240-20171018135233\nTalk:Alliance Chieftain/@comment-73.14.67.240-20171018135233/@comment-25450485-20171130194230\nTalk:Alliance Chieftain/@comment-75.151.173.115-20171009121942\nTalk:Alliance Chieftain/@comment-75.151.173.115-20171009121942/@comment-34360819-20180116102913\nTalk:Alliance Chieftain/@comment-79.70.6.247-20190909205100\nTalk:Alliance Chieftain/@comment-84.247.138.222-20180130064313\nTalk:Alliance Chieftain/@comment-84.247.138.222-20180130064313/@comment-84.247.138.222-20180205193342\nTalk:Alliance Chieftain/@comment-84.247.138.222-20180206195223\nTalk:Alliance Chieftain/@comment-84.247.138.222-20180222105100\nTalk:Alliance Chieftain/@comment-85.203.13.39-20171015191408\nTalk:Alliance Chieftain/@comment-85.203.13.39-20171015191408/@comment-192.136.161.33-20171016114828\nTalk:Alliance Chieftain/@comment-86.159.64.225-20180125161643\nTalk:Alliance Chieftain/@comment-86.159.64.225-20180125161643/@comment-2A00:23C4:6181:3800:D905:F70E:6CF7:486E-20180125165154\nTalk:Alliance Chieftain/@comment-90.200.49.195-20181215131027\nTalk:Alliance Chieftain/@comment-90.200.49.195-20181215131027/@comment-188.243.119.180-20190116103329\nTalk:Alliance Chieftain/@comment-90.200.49.195-20181215131027/@comment-188.243.119.180-20190117143243\nTalk:Alliance Chieftain/@comment-90.200.49.195-20181215131027/@comment-192.136.170.98-20190117043224\nTalk:Alliance Chieftain/@comment-90.200.49.195-20181215131027/@comment-192.136.170.98-20190118155719\nTalk:Alliance Chieftain/@comment-90.200.49.195-20181215131027/@comment-68.197.23.46-20190527000239\nTalk:Alliance Chieftain/@comment-90.200.49.195-20181220004233\nTalk:Alliance Chieftain/@comment-90.200.49.195-20181220004233/@comment-63.103.169.4-20200113172108\nTalk:Alliance Chieftain/@comment-98.207.108.165-20180520173638\nTalk:Alliance Chieftain/@comment-98.207.108.165-20180520173638/@comment-188.26.32.239-20180813111349\nTalk:Alliance Chieftain/@comment-98.207.108.165-20180520173638/@comment-188.26.32.239-20180813143126\nTalk:Alliance Crusader/@comment-165.225.0.71-20181203080048\nTalk:Alliance Crusader/@comment-189.232.40.120-20200214232342\nTalk:Alliance Crusader/@comment-189.232.40.120-20200214232342/@comment-38514251-20200225112057\nTalk:Alliance Crusader/@comment-23.115.74.61-20180828144448\nTalk:Alliance Crusader/@comment-23.115.74.61-20180828144448/@comment-187.144.122.120-20180828152615\nTalk:Alliance Crusader/@comment-23.115.74.61-20180828144448/@comment-187.144.122.120-20180829072806\nTalk:Alliance Crusader/@comment-23.115.74.61-20180828144448/@comment-189.232.22.1-20180828224721\nTalk:Alliance Crusader/@comment-23.115.74.61-20180828144448/@comment-23.115.74.61-20180828183450\nTalk:Alliance Crusader/@comment-24.159.43.54-20180930072447\nTalk:Alliance Crusader/@comment-24.159.43.54-20180930072447/@comment-189.232.88.255-20181113074537\nTalk:Alliance Crusader/@comment-24.159.43.54-20180930072447/@comment-25527827-20181011213404\nTalk:Alliance Crusader/@comment-24.159.43.54-20180930072447/@comment-2A02:2788:9E5:F768:20EB:B4E2:76C2:4DE7-20181011172725\nTalk:Alliance Crusader/@comment-24.159.43.54-20180930072447/@comment-70.249.189.124-20181016143106\nTalk:Alliance Crusader/@comment-24.4.245.228-20181023004159\nTalk:Alliance Crusader/@comment-2600:1700:DCB0:CC40:43B:DFFB:BFFE:B751-20190519094109\nTalk:Alliance Crusader/@comment-2600:8804:1201:B900:9574:1B43:7F98:58F8-20191002135117\nTalk:Alliance Crusader/@comment-27164624-20180831024314\nTalk:Alliance Crusader/@comment-27164624-20180831024314/@comment-189.232.88.255-20181113074953\nTalk:Alliance Crusader/@comment-4616657-20180825161713\nTalk:Alliance Crusader/@comment-4616657-20180825161713/@comment-76.24.210.16-20180825172803\nTalk:Alliance Crusader/@comment-50.27.30.149-20180828174127\nTalk:Alliance Crusader/@comment-69.114.195.213-20180829031514\nTalk:Alliance Crusader/@comment-69.114.195.213-20180829031514/@comment-187.144.122.120-20180829072901\nTalk:Alliance Crusader/@comment-69.114.195.213-20180829031514/@comment-189.232.108.141-20180907053046\nTalk:Alliance Crusader/@comment-69.114.195.213-20180829031514/@comment-2001:5B0:4BD5:DD10:0:FF:FEBD:63F2-20181115181831\nTalk:Alliance Crusader/@comment-69.114.195.213-20180829031514/@comment-2001:5B0:4BD5:DD10:0:FF:FEBD:63F2-20181115182605\nTalk:Alliance Crusader/@comment-69.114.195.213-20180829031514/@comment-70.249.189.124-20181016143459\nTalk:Alliance Crusader/@comment-69.114.195.213-20180926210404\nTalk:Alliance Crusader/@comment-76.191.74.236-20180828153039\nTalk:Alliance Crusader/@comment-76.24.210.16-20180823224807\nTalk:Alliance Crusader/@comment-76.24.210.16-20180823224807/@comment-76.24.210.16-20180824124524\nTalk:Alliance Crusader/@comment-76.24.210.16-20180823224807/@comment-76.24.210.16-20180824201209\nTalk:Alliance Crusader/@comment-76.24.210.16-20180824124831\nTalk:Alliance Crusader/@comment-76.24.210.16-20180824124831/@comment-100.2.78.49-20180828181021\nTalk:Alliance Crusader/@comment-76.24.210.16-20180824124831/@comment-166.137.125.16-20180824231259\nTalk:Alliance Crusader/@comment-76.24.210.16-20180824124831/@comment-187.144.122.120-20180829073748\nTalk:Alliance Crusader/@comment-76.24.210.16-20180824124831/@comment-189.232.108.141-20180907064957\nTalk:Alliance Crusader/@comment-76.24.210.16-20180824124831/@comment-189.232.22.1-20180828223159\nTalk:Alliance Defence Force/@comment-50.205.203.131-20181030175728\nTalk:Alliance Festival of Culture/@comment-138.246.2.254-20190729124033\nTalk:Alliance Festival of Culture/@comment-138.246.2.254-20190729124033/@comment-104.53.166.54-20190818195424\nTalk:Alliance Festival of Culture/@comment-138.246.2.254-20190729124033/@comment-189.132.96.212-20190815031301\nTalk:Alliance Festival of Culture/@comment-79.79.97.99-20190826024026\nTalk:Alliance Festival of Culture/@comment-82.69.22.8-20190830161557\nTalk:Alpha Centauri/@comment-207.161.12.173-20181110232556\nTalk:Alpha Centauri/@comment-207.161.12.173-20181111220954\nTalk:Alpha Centauri/@comment-213.251.230.57-20170721214944\nTalk:Alpha Centauri/@comment-31094186-20171228175655\nTalk:Alpha Centauri/@comment-89.204.137.212-20171127021625\nTalk:Alpha Centauri/@comment-974025-20180208204150\nTalk:Altair/@comment-2602:306:CE29:B0D0:D843:E477:F58:DA4C-20190927082233\nTalk:Altairian Skin/@comment-68.110.93.194-20150702025531\nTalk:Altairian Skin/@comment-70.81.129.24-20151021131108\nTalk:Altairian Skin/@comment-77.50.26.143-20160930210209\nTalk:Alya Body Soap/@comment-2A02:C7F:3E17:6D00:2C51:B134:6636:AB81-20180323111601\nTalk:Alya Body Soap/@comment-77.50.26.143-20160814211312\nTalk:Ammo Capacity Heat Sink Launcher/@comment-33405632-20180309181716\nTalk:Ammo Capacity Heat Sink Launcher/@comment-33405632-20180309181716/@comment-2A02:C7F:9C76:D00:986E:70E5:C2DA:7D6-20180713222934\nTalk:Ammo Capacity Heat Sink Launcher/@comment-33405632-20180309181716/@comment-47008249-20200928153434\nTalk:Ammo Capacity Point Defence/@comment-168.121.127.250-20180914032713\nTalk:Ammo Capacity Point Defence/@comment-168.121.127.250-20180914032713/@comment-2601:246:102:1B07:C1FE:3B62:1684:657E-20181029213148\nTalk:Amundsen Terminal/@comment-47.227.177.250-20190929183025\nTalk:Amundsen Terminal/@comment-47.227.177.250-20190929183025/@comment-34004391-20200417082720\nTalk:Anaconda/@comment-104.173.64.40-20150801014856\nTalk:Anaconda/@comment-108.47.237.140-20151008224046\nTalk:Anaconda/@comment-108.47.237.140-20151008224046/@comment-204.112.29.249-20151206215341\nTalk:Anaconda/@comment-108.47.237.140-20151008224046/@comment-4986699-20151103093403\nTalk:Anaconda/@comment-108.47.237.140-20151008224046/@comment-91.154.94.135-20151024140847\nTalk:Anaconda/@comment-109.75.18.244-20150127102655\nTalk:Anaconda/@comment-118.93.126.234-20150127004018\nTalk:Anaconda/@comment-122.57.114.143-20140817112036\nTalk:Anaconda/@comment-122.57.114.143-20140817112036/@comment-6033893-20140817115203\nTalk:Anaconda/@comment-122.57.114.143-20140817112036/@comment-80.1.60.38-20150307163157\nTalk:Anaconda/@comment-122.57.114.143-20140817112036/@comment-82.38.246.95-20150601124048\nTalk:Anaconda/@comment-123.211.237.121-20141227103809\nTalk:Anaconda/@comment-124.169.187.134-20150116060348\nTalk:Anaconda/@comment-124.177.113.24-20150620192423\nTalk:Anaconda/@comment-124.177.113.24-20150620192423/@comment-179.210.36.73-20150901104344\nTalk:Anaconda/@comment-124.177.113.24-20150620192423/@comment-26537865-20150808044854\nTalk:Anaconda/@comment-124.177.113.24-20150620192423/@comment-85.177.78.181-20150621153450\nTalk:Anaconda/@comment-137.175.204.31-20160830012448\nTalk:Anaconda/@comment-137.175.204.31-20160830012448/@comment-137.175.204.31-20160830152953\nTalk:Anaconda/@comment-137.175.204.31-20160830012448/@comment-2155082-20160830045718\nTalk:Anaconda/@comment-156.3.54.203-20150428162817\nTalk:Anaconda/@comment-156.3.54.203-20150428162817/@comment-108.59.70.246-20151219035804\nTalk:Anaconda/@comment-156.3.54.203-20150428162817/@comment-109.130.5.15-20150812154753\nTalk:Anaconda/@comment-156.3.54.203-20150504191923\nTalk:Anaconda/@comment-156.3.54.203-20150507200914\nTalk:Anaconda/@comment-156.3.54.203-20150601163910\nTalk:Anaconda/@comment-156.3.54.203-20150601163910/@comment-4900524-20150626231310\nTalk:Anaconda/@comment-156.3.54.203-20150608210848\nTalk:Anaconda/@comment-156.3.54.203-20150909190308\nTalk:Anaconda/@comment-156.3.54.203-20150909190308/@comment-26391992-20151220110601\nTalk:Anaconda/@comment-156.3.54.203-20150915145748\nTalk:Anaconda/@comment-156.3.54.203-20150915145748/@comment-156.3.54.203-20150916145844\nTalk:Anaconda/@comment-156.3.54.203-20150915145748/@comment-156.3.54.204-20150915190701\nTalk:Anaconda/@comment-156.3.54.203-20150915145748/@comment-26391992-20150915162212\nTalk:Anaconda/@comment-156.3.54.203-20150915145748/@comment-26391992-20150916100227\nTalk:Anaconda/@comment-156.3.54.204-20150921161307\nTalk:Anaconda/@comment-156.3.54.204-20150921161307/@comment-156.3.54.205-20150925173728\nTalk:Anaconda/@comment-156.3.54.204-20150921161307/@comment-24.27.36.71-20151031045401\nTalk:Anaconda/@comment-156.3.54.204-20150921161307/@comment-73.1.55.15-20151105020420\nTalk:Anaconda/@comment-159.203.17.168-20160731025509\nTalk:Anaconda/@comment-165.91.12.235-20150924025313\nTalk:Anaconda/@comment-168.20.244.9-20150331220050\nTalk:Anaconda/@comment-168.20.244.9-20150331220050/@comment-75.80.141.189-20150409215059\nTalk:Anaconda/@comment-173.183.133.158-20150927012958\nTalk:Anaconda/@comment-173.55.173.227-20150512041505\nTalk:Anaconda/@comment-173.55.173.227-20150512041505/@comment-156.3.54.203-20150527200157\nTalk:Anaconda/@comment-173.55.173.227-20150512041505/@comment-202.36.179.81-20150515011702\nTalk:Anaconda/@comment-173.55.173.227-20150512041505/@comment-26537865-20150809052713\nTalk:Anaconda/@comment-173.55.173.227-20150512041505/@comment-72.241.143.238-20150523104540\nTalk:Anaconda/@comment-173.55.173.227-20150513045500\nTalk:Anaconda/@comment-173.55.173.227-20150513045500/@comment-26537865-20150808184323\nTalk:Anaconda/@comment-173.55.173.227-20150513045500/@comment-50.24.177.60-20150801045217\nTalk:Anaconda/@comment-173.80.93.74-20151228220707\nTalk:Anaconda/@comment-173.80.93.74-20151228220707/@comment-200.113.32.182-20160105144508\nTalk:Anaconda/@comment-173.80.93.74-20151228220707/@comment-73.70.58.201-20151230080711\nTalk:Anaconda/@comment-173.80.93.74-20151228220707/@comment-73.70.58.201-20151230080807\nTalk:Anaconda/@comment-173.80.93.74-20151228220707/@comment-73.70.58.201-20151230081115\nTalk:Anaconda/@comment-173.80.93.74-20151228220707/@comment-9472148-20160129230830\nTalk:Anaconda/@comment-175.156.139.49-20150802023301\nTalk:Anaconda/@comment-175.156.139.49-20150802023301/@comment-73.1.55.15-20151105020807\nTalk:Anaconda/@comment-176.221.77.250-20171228105029\nTalk:Anaconda/@comment-177.158.7.235-20150914182300\nTalk:Anaconda/@comment-178.10.29.2-20151215094926\nTalk:Anaconda/@comment-178.10.29.2-20151215094926/@comment-72.241.143.238-20151222143421\nTalk:Anaconda/@comment-178.10.29.2-20151215094926/@comment-73.3.176.85-20151216231209\nTalk:Anaconda/@comment-178.10.29.2-20151215094926/@comment-73.3.176.85-20151216231309\nTalk:Anaconda/@comment-178.10.29.2-20151215094926/@comment-73.3.176.85-20151216231713\nTalk:Anaconda/@comment-178.10.29.2-20151215094926/@comment-84.192.14.107-20151221102517\nTalk:Anaconda/@comment-179.186.0.119-20150918135339\nTalk:Anaconda/@comment-179.186.0.119-20150918135339/@comment-156.3.54.204-20150921161021\nTalk:Anaconda/@comment-179.186.0.119-20150918135339/@comment-73.1.55.15-20151105020444\nTalk:Anaconda/@comment-185.37.87.177-20150513074256\nTalk:Anaconda/@comment-188.177.3.159-20141224010209\nTalk:Anaconda/@comment-192.136.174.139-20160217130615\nTalk:Anaconda/@comment-192.136.174.139-20160217130615/@comment-108.41.120.242-20160222113514\nTalk:Anaconda/@comment-192.136.174.139-20160217130615/@comment-192.136.175.219-20160222122424\nTalk:Anaconda/@comment-192.136.174.139-20160217130615/@comment-26391992-20160217165627\nTalk:Anaconda/@comment-192.136.174.139-20160217130615/@comment-27115814-20160415151608\nTalk:Anaconda/@comment-192.136.174.139-20160217130615/@comment-50.43.32.65-20160713035727\nTalk:Anaconda/@comment-2.31.35.239-20160326160441\nTalk:Anaconda/@comment-2.31.35.239-20160326160441/@comment-167655-20160430071016\nTalk:Anaconda/@comment-2.31.35.239-20160326160441/@comment-2.31.35.189-20160410181847\nTalk:Anaconda/@comment-2.31.35.239-20160326160441/@comment-27115814-20160330204730\nTalk:Anaconda/@comment-200.113.32.182-20160120192157\nTalk:Anaconda/@comment-2001:B011:BC03:1108:B13D:6056:FDCB:226C-20190913031416\nTalk:Anaconda/@comment-2001:B011:BC03:1108:B13D:6056:FDCB:226C-20190913031416/@comment-45048729-20200429045620\nTalk:Anaconda/@comment-2001:B011:BC03:1108:B13D:6056:FDCB:226C-20190913031416/@comment-85.192.70.113-20190925142103\nTalk:Anaconda/@comment-202.138.12.126-20150603045852\nTalk:Anaconda/@comment-202.138.12.126-20150603045852/@comment-104.173.64.40-20150802064302\nTalk:Anaconda/@comment-202.138.12.126-20150603045852/@comment-124.177.113.24-20150620192713\nTalk:Anaconda/@comment-202.138.12.126-20150603045852/@comment-26009169-20150603091543\nTalk:Anaconda/@comment-212.193.78.163-20160309121932\nTalk:Anaconda/@comment-212.37.122.192-20191026182036\nTalk:Anaconda/@comment-212.56.108.22-20190113215242\nTalk:Anaconda/@comment-212.56.108.22-20190113215242/@comment-160.3.38.154-20190409194158\nTalk:Anaconda/@comment-212.56.108.22-20190113215242/@comment-170.185.126.17-20191106185946\nTalk:Anaconda/@comment-212.56.108.22-20190113215242/@comment-192.136.170.30-20190410030509\nTalk:Anaconda/@comment-212.56.108.22-20190113215242/@comment-192.136.172.169-20190506124947\nTalk:Anaconda/@comment-212.56.108.22-20190113215242/@comment-2600:100D:B10A:38F2:2040:D888:533:6F12-20190430042804\nTalk:Anaconda/@comment-212.56.108.22-20190113215242/@comment-2600:6C5D:6300:DDC:ED79:D118:2FCA:AA5D-20190506033658\nTalk:Anaconda/@comment-212.56.108.22-20190113215242/@comment-37171230-20190128210453\nTalk:Anaconda/@comment-2155082-20161106010302\nTalk:Anaconda/@comment-216.8.164.195-20140808034255\nTalk:Anaconda/@comment-216.8.164.195-20140808034255/@comment-68.3.91.76-20140810035446\nTalk:Anaconda/@comment-216.8.164.195-20140808034255/@comment-79.223.40.32-20140812233856\nTalk:Anaconda/@comment-216.8.164.195-20140808034255/@comment-83.31.106.190-20150220144544\nTalk:Anaconda/@comment-217.32.219.178-20150910164822\nTalk:Anaconda/@comment-2182702-20200612020401\nTalk:Anaconda/@comment-2251437-20180510043327\nTalk:Anaconda/@comment-2251437-20180510043327/@comment-170.185.126.17-20191106190940\nTalk:Anaconda/@comment-2251437-20180510043327/@comment-192.136.161.33-20180511131003\nTalk:Anaconda/@comment-2251437-20180510043327/@comment-192.136.170.98-20190313195918\nTalk:Anaconda/@comment-2251437-20180510043327/@comment-65.79.1.66-20190227152739\nTalk:Anaconda/@comment-2251437-20180510043327/@comment-69.114.195.213-20180816024829\nTalk:Anaconda/@comment-2251437-20180510043327/@comment-74.249.118.26-20190313174615\nTalk:Anaconda/@comment-2251437-20180510043327/@comment-87.123.231.140-20180703120541\nTalk:Anaconda/@comment-24.159.43.54-20181128052703\nTalk:Anaconda/@comment-24.159.43.54-20181128052703/@comment-192.136.170.98-20190227182314\nTalk:Anaconda/@comment-24.159.43.54-20181128052703/@comment-37171230-20190128210539\nTalk:Anaconda/@comment-24.159.43.54-20181128052703/@comment-45677112-20200523152359\nTalk:Anaconda/@comment-24.159.43.54-20181128052703/@comment-50.201.158.82-20190227152613\nTalk:Anaconda/@comment-24.159.43.54-20181128052703/@comment-85.12.78.234-20200207111950\nTalk:Anaconda/@comment-24.217.33.40-20200207025354\nTalk:Anaconda/@comment-24.242.111.9-20170208073614\nTalk:Anaconda/@comment-24.242.111.9-20170208073614/@comment-28273515-20171109181819\nTalk:Anaconda/@comment-24097990-20160204160200\nTalk:Anaconda/@comment-24097990-20160204160200/@comment-74.112.244.13-20160223053425\nTalk:Anaconda/@comment-24097990-20160204160200/@comment-88.80.251.245-20160206094702\nTalk:Anaconda/@comment-24099849-20151004214439\nTalk:Anaconda/@comment-24099849-20151004214439/@comment-108.47.237.140-20151008224121\nTalk:Anaconda/@comment-24099849-20151004214439/@comment-134.129.203.28-20151021163439\nTalk:Anaconda/@comment-24099849-20151004214439/@comment-24099849-20151020094136\nTalk:Anaconda/@comment-24099849-20151004214439/@comment-25411947-20151117235517\nTalk:Anaconda/@comment-24099849-20151004214439/@comment-25450485-20151011190744\nTalk:Anaconda/@comment-24099849-20151004214439/@comment-4986699-20151021193715\nTalk:Anaconda/@comment-24099849-20151004214439/@comment-4986699-20151028085601\nTalk:Anaconda/@comment-24099849-20151004214439/@comment-70.30.82.255-20151028014732\nTalk:Anaconda/@comment-24530384-20151117200000\nTalk:Anaconda/@comment-24530384-20151117200000/@comment-50.27.102.157-20151229012757\nTalk:Anaconda/@comment-24530384-20151117200000/@comment-89.176.178.22-20160118203129\nTalk:Anaconda/@comment-24530384-20151117200000/@comment-91.231.24.73-20151205194349\nTalk:Anaconda/@comment-24810544-20150619003522\nTalk:Anaconda/@comment-24810544-20150619003522/@comment-108.242.216.67-20150808065636\nTalk:Anaconda/@comment-24810544-20150619003522/@comment-200.113.32.182-20150925192400\nTalk:Anaconda/@comment-24810544-20150619003522/@comment-26420537-20150620024952\nTalk:Anaconda/@comment-24810544-20150619003522/@comment-26537865-20150711152340\nTalk:Anaconda/@comment-24810544-20150619003522/@comment-82.30.236.238-20150625201330\nTalk:Anaconda/@comment-24810544-20150619003522/@comment-95.220.110.113-20150704172141\nTalk:Anaconda/@comment-25450485-20150913182813\nTalk:Anaconda/@comment-25450485-20150913182813/@comment-156.3.54.203-20150915145824\nTalk:Anaconda/@comment-25450485-20150913182813/@comment-73.1.55.15-20151105020543\nTalk:Anaconda/@comment-25450485-20150914103827\nTalk:Anaconda/@comment-25450485-20150916165008\nTalk:Anaconda/@comment-25450485-20150916165008/@comment-156.3.54.204-20150921161136\nTalk:Anaconda/@comment-25450485-20150916165008/@comment-26951902-20150916215633\nTalk:Anaconda/@comment-25992270-20150202192906\nTalk:Anaconda/@comment-25992270-20150202192906/@comment-24.20.226.246-20150202212741\nTalk:Anaconda/@comment-25992270-20150202192906/@comment-26009169-20150202193051\nTalk:Anaconda/@comment-25992270-20150202192906/@comment-67.172.68.198-20150408003300\nTalk:Anaconda/@comment-2600:6C5D:6300:801:E99D:3B8A:91A7:39A5-20180315032555\nTalk:Anaconda/@comment-26306474-20150514014514\nTalk:Anaconda/@comment-26361572-20150501191005\nTalk:Anaconda/@comment-26391992-20160310093611\nTalk:Anaconda/@comment-26391992-20160310093611/@comment-4986699-20160617071541\nTalk:Anaconda/@comment-26391992-20160310093611/@comment-73.76.27.83-20160511202604\nTalk:Anaconda/@comment-26391992-20160310093611/@comment-94.234.38.145-20160617063117\nTalk:Anaconda/@comment-26454645-20150913225902\nTalk:Anaconda/@comment-26537865-20150711153416\nTalk:Anaconda/@comment-26537865-20150711153416/@comment-194.9.234.11-20150720183009\nTalk:Anaconda/@comment-26537865-20150711153416/@comment-71.20.209.25-20150726014916\nTalk:Anaconda/@comment-26537865-20150711153416/@comment-9472148-20150722192108\nTalk:Anaconda/@comment-26537865-20150808235710\nTalk:Anaconda/@comment-26810344-20150722212708\nTalk:Anaconda/@comment-26810344-20150722212708/@comment-156.3.54.203-20150909190452\nTalk:Anaconda/@comment-26810344-20150722212708/@comment-192.182.188.165-20150725155124\nTalk:Anaconda/@comment-26810344-20150722212708/@comment-26391992-20150915100002\nTalk:Anaconda/@comment-26810344-20160705171949\nTalk:Anaconda/@comment-26810344-20160705171949/@comment-9472148-20160707164431\nTalk:Anaconda/@comment-26937315-20151025023233\nTalk:Anaconda/@comment-26937315-20151025023233/@comment-27115814-20151116194005\nTalk:Anaconda/@comment-26937315-20151025023233/@comment-67.1.191.215-20151114012642\nTalk:Anaconda/@comment-27034370-20160104113052\nTalk:Anaconda/@comment-27034370-20160104113052/@comment-209.52.10.218-20160110000554\nTalk:Anaconda/@comment-27034370-20160104113052/@comment-213.104.129.236-20160127154526\nTalk:Anaconda/@comment-27115814-20151028153557\nTalk:Anaconda/@comment-27115814-20151028153557/@comment-169.244.51.180-20151206001759\nTalk:Anaconda/@comment-27115814-20151028153557/@comment-173.250.160.217-20151130202839\nTalk:Anaconda/@comment-27115814-20151028153557/@comment-200.113.32.182-20151113200102\nTalk:Anaconda/@comment-27115814-20151028153557/@comment-26391992-20151117230121\nTalk:Anaconda/@comment-27115814-20151028153557/@comment-26391992-20151125105930\nTalk:Anaconda/@comment-27115814-20151028153557/@comment-26391992-20151127141846\nTalk:Anaconda/@comment-27115814-20151028153557/@comment-26599825-20151206110213\nTalk:Anaconda/@comment-27115814-20151028153557/@comment-27034370-20160104111731\nTalk:Anaconda/@comment-27115814-20151028153557/@comment-27115814-20151116193527\nTalk:Anaconda/@comment-27115814-20151028153557/@comment-27115814-20151118155736\nTalk:Anaconda/@comment-27115814-20151028153557/@comment-27115814-20151128075921\nTalk:Anaconda/@comment-27115814-20151028153557/@comment-4986699-20151125120932\nTalk:Anaconda/@comment-27115814-20151028153557/@comment-4986699-20151206155814\nTalk:Anaconda/@comment-27115814-20151028153557/@comment-4986699-20160104115306\nTalk:Anaconda/@comment-27115814-20151028153557/@comment-74.74.176.116-20151206054051\nTalk:Anaconda/@comment-27190931-20160131073538\nTalk:Anaconda/@comment-28209324-20160430141838\nTalk:Anaconda/@comment-2A02:908:697:CE40:E85E:1589:5DBA:55B1-20180322120534\nTalk:Anaconda/@comment-30491393-20170309142540\nTalk:Anaconda/@comment-30491393-20170309142540/@comment-150.208.129.188-20170406191651\nTalk:Anaconda/@comment-30491393-20170309142540/@comment-2003:CB:63C1:D55A:8CAF:5C6F:4990:411F-20181208212535\nTalk:Anaconda/@comment-30491393-20170309142540/@comment-50.65.89.52-20170325184328\nTalk:Anaconda/@comment-31.52.45.250-20150330185542\nTalk:Anaconda/@comment-31.52.45.250-20150330185542/@comment-174.93.58.169-20150401231334\nTalk:Anaconda/@comment-38.95.109.67-20160728210557\nTalk:Anaconda/@comment-38.95.109.67-20160728210557/@comment-159.203.4.199-20160729050935\nTalk:Anaconda/@comment-38.95.109.67-20160728210557/@comment-2155082-20160729034931\nTalk:Anaconda/@comment-38.95.109.67-20160728210557/@comment-2155082-20160729184537\nTalk:Anaconda/@comment-38.95.109.67-20160728210557/@comment-38.95.109.67-20160728210632\nTalk:Anaconda/@comment-43982350-20200904205003\nTalk:Anaconda/@comment-45587726-20200730231501\nTalk:Anaconda/@comment-45587726-20200730231501/@comment-33493166-20200810014807\nTalk:Anaconda/@comment-45587726-20200730231501/@comment-46713262-20200824104002\nTalk:Anaconda/@comment-4638275-20170126213025\nTalk:Anaconda/@comment-4638275-20170126213025/@comment-2155082-20170126215639\nTalk:Anaconda/@comment-4638275-20170126213025/@comment-24599330-20170127060052\nTalk:Anaconda/@comment-4638275-20170126213025/@comment-31510018-20170313075250\nTalk:Anaconda/@comment-4638275-20170126213025/@comment-5959508-20170126215735\nTalk:Anaconda/@comment-4660871-20160603071526\nTalk:Anaconda/@comment-4660871-20160603071526/@comment-2155082-20160604001546\nTalk:Anaconda/@comment-4660871-20160603071526/@comment-4660871-20160604021705\nTalk:Anaconda/@comment-5.18.84.105-20141217175728\nTalk:Anaconda/@comment-5.18.84.105-20141217175728/@comment-26232861-20150322121145\nTalk:Anaconda/@comment-5.18.84.105-20141217175728/@comment-31.217.106.136-20150415155814\nTalk:Anaconda/@comment-5016083-20150128183924\nTalk:Anaconda/@comment-5016083-20150128183924/@comment-24.19.28.2-20150130004525\nTalk:Anaconda/@comment-5016083-20150128183924/@comment-24.19.28.2-20150131111203\nTalk:Anaconda/@comment-5016083-20150128183924/@comment-5016083-20150130054551\nTalk:Anaconda/@comment-5016083-20150128183924/@comment-76.18.220.223-20150216151952\nTalk:Anaconda/@comment-51.148.96.243-20191002125612\nTalk:Anaconda/@comment-51.148.96.243-20191002125612/@comment-45677112-20200523152111\nTalk:Anaconda/@comment-65.186.66.167-20160221192621\nTalk:Anaconda/@comment-66.162.11.146-20160421195244\nTalk:Anaconda/@comment-66.162.11.146-20160421195244/@comment-27115814-20160425164333\nTalk:Anaconda/@comment-66.162.11.146-20160421195244/@comment-50.170.117.254-20160608010110\nTalk:Anaconda/@comment-66.162.11.146-20160421195323\nTalk:Anaconda/@comment-66.162.11.146-20160421195323/@comment-68.36.47.66-20160428021809\nTalk:Anaconda/@comment-66.191.253.76-20160725162816\nTalk:Anaconda/@comment-67.21.153.142-20170421170729\nTalk:Anaconda/@comment-67.21.153.142-20170421170729/@comment-2601:243:480:98D9:FCC1:F627:367E:82C7-20180226013737\nTalk:Anaconda/@comment-67.81.171.112-20140806222807\nTalk:Anaconda/@comment-67.81.171.112-20140806222807/@comment-71.95.100.70-20150109051338\nTalk:Anaconda/@comment-67.81.171.112-20140806222807/@comment-91.125.153.117-20150315182100\nTalk:Anaconda/@comment-68.108.126.81-20151212010421\nTalk:Anaconda/@comment-68.13.96.223-20150520021336\nTalk:Anaconda/@comment-68.13.96.223-20150520021336/@comment-156.3.54.203-20150520155404\nTalk:Anaconda/@comment-68.13.96.223-20150520021336/@comment-156.3.54.203-20150527200628\nTalk:Anaconda/@comment-68.13.96.223-20150520021336/@comment-156.3.54.203-20150602214620\nTalk:Anaconda/@comment-68.13.96.223-20150520021336/@comment-26419093-20150520224220\nTalk:Anaconda/@comment-68.13.96.223-20150520021336/@comment-72.241.143.238-20150523104434\nTalk:Anaconda/@comment-68.13.96.223-20150520021336/@comment-72.241.143.238-20150605234326\nTalk:Anaconda/@comment-68.235.233.164-20150523204628\nTalk:Anaconda/@comment-68.235.233.164-20150523204628/@comment-156.3.54.203-20150601164027\nTalk:Anaconda/@comment-68.235.233.164-20150523204628/@comment-26537865-20150808130626\nTalk:Anaconda/@comment-68.235.233.164-20150523204628/@comment-74.193.159.230-20150530080244\nTalk:Anaconda/@comment-68.53.40.192-20150119053213\nTalk:Anaconda/@comment-68.53.40.192-20150119053213/@comment-118.93.126.234-20150127004040\nTalk:Anaconda/@comment-70.127.191.90-20170111042306\nTalk:Anaconda/@comment-70.127.191.90-20170111042306/@comment-2155082-20170111044950\nTalk:Anaconda/@comment-70.127.191.90-20170111042306/@comment-5959508-20170111152108\nTalk:Anaconda/@comment-70.127.191.90-20170111042306/@comment-70.127.191.90-20170111201443\nTalk:Anaconda/@comment-70.185.53.16-20191016231225\nTalk:Anaconda/@comment-70.191.166.223-20141231063051\nTalk:Anaconda/@comment-70.191.166.223-20141231063051/@comment-5.198.43.13-20150102230446\nTalk:Anaconda/@comment-70.199.128.44-20150116080210\nTalk:Anaconda/@comment-70.199.128.44-20150116080210/@comment-118.93.126.234-20150127004201\nTalk:Anaconda/@comment-70.199.128.44-20150116080210/@comment-46.162.118.82-20150116200709\nTalk:Anaconda/@comment-70.199.128.44-20150116080210/@comment-50.38.245.253-20150120013607\nTalk:Anaconda/@comment-70.199.128.44-20150116080210/@comment-67.181.93.38-20150120010519\nTalk:Anaconda/@comment-70.199.67.230-20150108104541\nTalk:Anaconda/@comment-70.210.67.241-20160705213454\nTalk:Anaconda/@comment-70.210.67.241-20160705213454/@comment-2155082-20160706034758\nTalk:Anaconda/@comment-71.233.88.91-20160725130439\nTalk:Anaconda/@comment-71.233.88.91-20160725130439/@comment-27032150-20160725141043\nTalk:Anaconda/@comment-71.233.88.91-20160725130439/@comment-70.191.82.171-20160910064211\nTalk:Anaconda/@comment-71.51.37.51-20150316042631\nTalk:Anaconda/@comment-71.51.37.51-20150316042631/@comment-174.22.224.172-20150316080652\nTalk:Anaconda/@comment-71.51.37.51-20150316042631/@comment-174.22.224.172-20150317212034\nTalk:Anaconda/@comment-71.51.37.51-20150316042631/@comment-174.93.58.169-20150401231832\nTalk:Anaconda/@comment-71.51.37.51-20150316042631/@comment-26009169-20150316123037\nTalk:Anaconda/@comment-71.8.139.216-20161009175755\nTalk:Anaconda/@comment-71.8.139.216-20161009175755/@comment-109.50.239.24-20180310150847\nTalk:Anaconda/@comment-71.8.139.216-20161009175755/@comment-170.185.126.17-20191106191255\nTalk:Anaconda/@comment-71.8.139.216-20161009175755/@comment-2001:14BA:21F5:EA00:1090:3BDC:DC8B:2548-20181128193322\nTalk:Anaconda/@comment-71.8.139.216-20161009175755/@comment-45.27.137.105-20180506185610\nTalk:Anaconda/@comment-71.8.139.216-20161009175755/@comment-78.152.206.11-20190530162745\nTalk:Anaconda/@comment-71.8.139.216-20161009175755/@comment-94.234.39.174-20170106024512\nTalk:Anaconda/@comment-71.95.100.70-20141229215601\nTalk:Anaconda/@comment-71.95.100.70-20141229215601/@comment-176.213.115.43-20150110003430\nTalk:Anaconda/@comment-71.95.100.70-20141229215601/@comment-204.236.115.240-20150103215528\nTalk:Anaconda/@comment-71.95.100.70-20141229215601/@comment-4968814-20150107184426\nTalk:Anaconda/@comment-71.95.100.70-20141229215601/@comment-67.8.161.24-20150107175913\nTalk:Anaconda/@comment-71.95.100.70-20141229215601/@comment-69.125.156.220-20150411083658\nTalk:Anaconda/@comment-71.95.100.70-20141229215601/@comment-71.95.100.70-20150109050935\nTalk:Anaconda/@comment-71.95.100.70-20141229215601/@comment-71.95.100.70-20150111010421\nTalk:Anaconda/@comment-71.95.100.70-20141229215601/@comment-91.125.153.117-20150315181507\nTalk:Anaconda/@comment-71.95.100.70-20150218204936\nTalk:Anaconda/@comment-71.95.100.70-20150218204936/@comment-174.93.58.169-20150401232014\nTalk:Anaconda/@comment-71.95.100.70-20150218204936/@comment-26411245-20150518111534\nTalk:Anaconda/@comment-71.95.100.70-20150218204936/@comment-71.95.100.70-20150218210122\nTalk:Anaconda/@comment-71.95.100.70-20150218204936/@comment-73.52.176.148-20150324173108\nTalk:Anaconda/@comment-72.231.240.219-20160802072754\nTalk:Anaconda/@comment-72.231.240.219-20160802072754/@comment-67.8.106.170-20160829160558\nTalk:Anaconda/@comment-72.241.147.127-20181121013810\nTalk:Anaconda/@comment-72.241.147.127-20181121013810/@comment-170.185.126.17-20191106190434\nTalk:Anaconda/@comment-72.241.147.127-20181121013810/@comment-47.28.207.14-20181125203411\nTalk:Anaconda/@comment-72.241.147.127-20181121013810/@comment-6187938-20190531184353\nTalk:Anaconda/@comment-72.241.147.127-20181121013810/@comment-74.249.118.26-20190313175630\nTalk:Anaconda/@comment-72.39.181.114-20160527160325\nTalk:Anaconda/@comment-72.39.181.114-20160527160325/@comment-192.136.173.19-20160527164550\nTalk:Anaconda/@comment-73.254.229.37-20180220050505\nTalk:Anaconda/@comment-75.130.23.188-20160202124152\nTalk:Anaconda/@comment-75.91.229.226-20160717034521\nTalk:Anaconda/@comment-77.110.42.57-20150715220952\nTalk:Anaconda/@comment-77.110.42.57-20150715220952/@comment-71.20.209.25-20150726014835\nTalk:Anaconda/@comment-77.125.253.227-20150410185052\nTalk:Anaconda/@comment-77.170.173.242-20150926180635\nTalk:Anaconda/@comment-77.170.173.242-20150926180635/@comment-134.129.203.28-20151021163722\nTalk:Anaconda/@comment-77.170.173.242-20150926180635/@comment-144.216.244.74-20151031223858\nTalk:Anaconda/@comment-77.170.173.242-20150926180635/@comment-156.3.54.206-20150928212011\nTalk:Anaconda/@comment-77.170.173.242-20150926180635/@comment-212.130.56.55-20151109144619\nTalk:Anaconda/@comment-77.170.173.242-20150926180635/@comment-25450485-20150928094706\nTalk:Anaconda/@comment-77.170.173.242-20150926180635/@comment-25450485-20150928141326\nTalk:Anaconda/@comment-77.170.173.242-20150926180635/@comment-4986699-20151101094550\nTalk:Anaconda/@comment-77.170.173.242-20150926180635/@comment-93.220.69.15-20150928114619\nTalk:Anaconda/@comment-77.170.173.242-20150926180635/@comment-93.220.69.15-20150928114741\nTalk:Anaconda/@comment-78.190.114.64-20190119034058\nTalk:Anaconda/@comment-78.190.114.64-20190119034058/@comment-2600:100D:B10A:38F2:E882:762A:9BD1:C4DD-20190501054100\nTalk:Anaconda/@comment-78.72.31.223-20150408023006\nTalk:Anaconda/@comment-79.114.220.55-20160830233046\nTalk:Anaconda/@comment-79.114.220.55-20160830233046/@comment-125.237.3.1-20161016043808\nTalk:Anaconda/@comment-79.114.220.55-20160830233046/@comment-170.185.126.17-20191106191640\nTalk:Anaconda/@comment-79.114.220.55-20160830233046/@comment-178.215.82.71-20160831191439\nTalk:Anaconda/@comment-79.114.220.55-20160830233046/@comment-178.215.82.71-20160831191642\nTalk:Anaconda/@comment-79.114.220.55-20160830233046/@comment-178.215.82.71-20160831191758\nTalk:Anaconda/@comment-79.114.220.55-20160830233046/@comment-192.136.161.248-20160831112839\nTalk:Anaconda/@comment-79.114.220.55-20160830233046/@comment-28774381-20161031152322\nTalk:Anaconda/@comment-79.114.220.55-20160830233046/@comment-80.188.214.177-20170111175720\nTalk:Anaconda/@comment-79.191.38.240-20160725152250\nTalk:Anaconda/@comment-79.44.106.115-20150730204227\nTalk:Anaconda/@comment-81.102.62.62-20140923134127\nTalk:Anaconda/@comment-81.102.62.62-20140923134127/@comment-128.172.35.24-20150114213602\nTalk:Anaconda/@comment-81.102.62.62-20140923134127/@comment-25249692-20140923145645\nTalk:Anaconda/@comment-81.102.62.62-20140923134127/@comment-25335609-20140923230516\nTalk:Anaconda/@comment-81.104.19.169-20150807224623\nTalk:Anaconda/@comment-81.141.86.148-20150923214601\nTalk:Anaconda/@comment-81.141.86.148-20150923214601/@comment-194.9.228.23-20151011035550\nTalk:Anaconda/@comment-81.141.86.148-20150923214601/@comment-2155082-20151009015400\nTalk:Anaconda/@comment-81.141.86.148-20150923214601/@comment-70.50.2.237-20150924024155\nTalk:Anaconda/@comment-81.141.86.148-20150923214601/@comment-73.1.55.15-20151105020309\nTalk:Anaconda/@comment-81.141.86.148-20150923214601/@comment-93.223.118.85-20151017200148\nTalk:Anaconda/@comment-82.0.145.148-20160202164236\nTalk:Anaconda/@comment-82.0.145.148-20160202164236/@comment-82.0.145.148-20160202164721\nTalk:Anaconda/@comment-82.25.92.103-20151022181816\nTalk:Anaconda/@comment-84.135.250.6-20150321111510\nTalk:Anaconda/@comment-84.135.250.6-20150321111510/@comment-26009169-20150321113143\nTalk:Anaconda/@comment-84.135.250.6-20150321111510/@comment-31.217.106.136-20150415155700\nTalk:Anaconda/@comment-84.135.250.6-20150321132801\nTalk:Anaconda/@comment-84.135.250.6-20150321132801/@comment-26009169-20150321141235\nTalk:Anaconda/@comment-84.172.217.81-20140809104850\nTalk:Anaconda/@comment-84.172.217.81-20140809104850/@comment-99.10.172.246-20140814230316\nTalk:Anaconda/@comment-84.178.26.71-20150702210416\nTalk:Anaconda/@comment-84.178.26.71-20150702210416/@comment-93.99.226.40-20150705103001\nTalk:Anaconda/@comment-84.178.26.71-20150702210416/@comment-93.99.226.40-20150705103349\nTalk:Anaconda/@comment-84.183.182.220-20190518220423\nTalk:Anaconda/@comment-84.183.182.220-20190518220423/@comment-176.241.72.203-20190724203641\nTalk:Anaconda/@comment-84.183.182.220-20190518220423/@comment-84.190.136.2-20190724130511\nTalk:Anaconda/@comment-84.250.76.92-20150117160445\nTalk:Anaconda/@comment-86.9.237.13-20160214220043\nTalk:Anaconda/@comment-86.9.237.13-20160214220043/@comment-26391992-20160215102244\nTalk:Anaconda/@comment-86.9.237.13-20160214220043/@comment-5959508-20160921080445\nTalk:Anaconda/@comment-86.9.237.13-20160214220043/@comment-99.61.20.65-20160921042944\nTalk:Anaconda/@comment-87.102.253.194-20171004153126\nTalk:Anaconda/@comment-87.102.253.194-20171004153126/@comment-170.211.241.25-20171005134030\nTalk:Anaconda/@comment-89.172.68.75-20160205234142\nTalk:Anaconda/@comment-89.172.68.75-20160205234142/@comment-89.172.68.75-20160205234252\nTalk:Anaconda/@comment-90.200.46.38-20181031172006\nTalk:Anaconda/@comment-90.200.46.38-20181031172006/@comment-98.4.135.63-20181110173415\nTalk:Anaconda/@comment-90.200.46.38-20181122230715\nTalk:Anaconda/@comment-90.200.46.38-20181122230715/@comment-184.53.1.60-20190426142511\nTalk:Anaconda/@comment-90.200.46.38-20181122230715/@comment-189.32.29.99-20190114161950\nTalk:Anaconda/@comment-90.200.46.38-20181122230715/@comment-2602:306:CE29:B0D0:448:5430:2F84:2A52-20190916010510\nTalk:Anaconda/@comment-90.200.46.38-20181122230715/@comment-71.12.82.44-20190413081025\nTalk:Anaconda/@comment-90.200.46.38-20181122230715/@comment-71.12.82.44-20190413081212\nTalk:Anaconda/@comment-90.200.46.38-20181122230715/@comment-75.106.89.114-20181123162320\nTalk:Anaconda/@comment-92.2.212.134-20151011153552\nTalk:Anaconda/@comment-92.2.212.134-20151011153552/@comment-123.2.157.105-20151018023256\nTalk:Anaconda/@comment-92.2.212.134-20151011153552/@comment-156.3.54.206-20151013172728\nTalk:Anaconda/@comment-92.2.212.134-20151011153552/@comment-200.113.32.182-20151021193140\nTalk:Anaconda/@comment-92.2.212.134-20151011153552/@comment-26391992-20151026214706\nTalk:Anaconda/@comment-92.2.212.134-20151011153552/@comment-26599825-20151014082220\nTalk:Anaconda/@comment-92.2.212.134-20151011153552/@comment-27115814-20151111065303\nTalk:Anaconda/@comment-92.2.212.134-20151011153552/@comment-37.189.169.197-20151019012700\nTalk:Anaconda/@comment-92.227.57.20-20151007234943\nTalk:Anaconda/@comment-93.125.49.21-20141229195326\nTalk:Anaconda/@comment-93.38.84.161-20150911174923\nTalk:Anaconda/@comment-93.38.84.161-20150911174923/@comment-200.113.32.182-20150925191913\nTalk:Anaconda/@comment-93.38.84.161-20150911174923/@comment-25450485-20150913135647\nTalk:Anaconda/@comment-93.38.84.161-20150911174923/@comment-26599825-20150911190154\nTalk:Anaconda/@comment-93.38.84.161-20150911174923/@comment-26599825-20150914075951\nTalk:Anaconda/@comment-93.38.84.161-20150911174923/@comment-26951902-20150916220037\nTalk:Anaconda/@comment-94.14.79.222-20150718164227\nTalk:Anaconda/@comment-94.14.79.222-20150718164227/@comment-103.226.94.62-20150722044424\nTalk:Anaconda/@comment-94.195.202.121-20161119125608\nTalk:Anaconda/@comment-94.195.202.121-20161119125608/@comment-173.172.165.176-20180504015926\nTalk:Anaconda/@comment-94.195.202.121-20161119125608/@comment-174.110.193.248-20170927185657\nTalk:Anaconda/@comment-94.195.202.121-20161119125608/@comment-24.20.104.8-20161218090057\nTalk:Anaconda/@comment-94.195.202.121-20161119125608/@comment-5959508-20161218133011\nTalk:Anaconda/@comment-94.79.174.218-20141230223030\nTalk:Anaconda/@comment-94.79.174.218-20150109231320\nTalk:Anaconda/@comment-94.79.174.218-20150109231320/@comment-94.79.174.218-20150109233822\nTalk:Anaconda/@comment-9472148-20160126231122\nTalk:Anaconda/@comment-96.54.247.38-20160301184743\nTalk:Anaconda/@comment-97.84.134.46-20160706213515\nTalk:Anaconda/@comment-97.84.134.46-20160706213515/@comment-2155082-20160707042221\nTalk:Anaconda/@comment-97.84.134.46-20160706213515/@comment-26009169-20160707163612\nTalk:Anaconda/@comment-97.84.134.46-20160706213515/@comment-26419093-20160706213755\nTalk:Anaconda/@comment-99.237.37.136-20160216014829\nTalk:Anaconda/@comment-99.237.37.136-20160216014829/@comment-89.88.48.115-20160512234307\nTalk:Anaconda Graveyard/@comment-198.29.54.21-20190602204435\nTalk:Anaconda Graveyard/@comment-198.29.54.21-20190602204435/@comment-113.52.47.4-20190801074921\nTalk:Anaconda Graveyard/@comment-198.29.54.21-20190602204435/@comment-142.118.170.240-20190630194841\nTalk:Anaconda Graveyard/@comment-198.29.54.21-20190602204435/@comment-159.220.74.6-20190613135842\nTalk:Anaconda Graveyard/@comment-198.29.54.21-20190602204435/@comment-2001:470:D850:1:D461:E032:8D37:2B53-20200113034844\nTalk:Anaconda Graveyard/@comment-198.29.54.21-20190602204435/@comment-30669064-20200830141545\nTalk:Anaconda Graveyard/@comment-2602:306:CE29:B0D0:448:5430:2F84:2A52-20190915231123\nTalk:Anaconda Graveyard/@comment-2602:306:CE29:B0D0:448:5430:2F84:2A52-20190915231123/@comment-27.78.231.77-20191017101849\nTalk:Anaconda Graveyard/@comment-2602:306:CE29:B0D0:448:5430:2F84:2A52-20190915231123/@comment-34614577-20200610075059\nTalk:Anaconda Graveyard/@comment-2602:306:CE29:B0D0:448:5430:2F84:2A52-20190915231123/@comment-45757871-20200511145249\nTalk:Anaconda Graveyard/@comment-2602:306:CE29:B0D0:448:5430:2F84:2A52-20190915231123/@comment-45757871-20200511210417\nTalk:Anaconda Graveyard/@comment-2A01:CB05:487:FE00:B0EA:262D:B025:F920-20181107195928\nTalk:Anaconda Graveyard/@comment-35650861-20180530174626\nTalk:Anaconda Graveyard/@comment-35650861-20180530174626/@comment-35716095-20180722165032\nTalk:Anaconda Graveyard/@comment-6187938-20181114023925\nTalk:Anaconda Graveyard/@comment-6187938-20181114023925/@comment-176.241.72.203-20190727231700\nTalk:Anaconda Graveyard/@comment-6187938-20181114023925/@comment-82.11.240.23-20190105151628\nTalk:Anaconda Graveyard/@comment-97.122.78.66-20180824172805\nTalk:Anaconda Graveyard/@comment-97.122.78.66-20180824172805/@comment-2001:4C4C:226C:500:78DD:CD5D:B547:CC0D-20180911203546\nTalk:Ancient Artefact/@comment-108.205.236.85-20180802045211\nTalk:Ancient Artefact/@comment-173.51.204.88-20160103094321\nTalk:Ancient Artefact/@comment-24.70.38.212-20150822183709\nTalk:Ancient Artefact/@comment-25440734-20150506113247\nTalk:Ancient Artefact/@comment-73.181.28.167-20160522043331\nTalk:Ancient Artefact/@comment-86.183.122.161-20150226000045\nTalk:Ancient Artefact/@comment-86.183.122.161-20150226000045/@comment-26362216-20150503095902\nTalk:Ancient Artefact/@comment-87.205.238.138-20161031220627\nTalk:Ancient Artefact/@comment-87.205.238.138-20161031220627/@comment-87.205.238.138-20161031221416\nTalk:Ancient Casket/@comment-195.99.43.96-20190130232941\nTalk:Ancient Data Terminal/@comment-173.18.229.118-20180904000331\nTalk:Ancient Data Terminal/@comment-2406:E000:420F:1:C08B:6EE:FA7E:31E1-20180322093408\nTalk:Ancient Data Terminal/@comment-2A01:4B00:E014:BC00:289E:9221:4E72:D2F-20190610220723\nTalk:Ancient Data Terminal/@comment-51.6.74.117-20180312114116\nTalk:Ancient Data Terminal/@comment-51.6.74.117-20180312114116/@comment-2A00:1370:812C:1BB1:5419:647E:1126:E8EB-20190530152843\nTalk:Ancient Data Terminal/@comment-51.6.74.117-20180312114116/@comment-2A01:E34:EF49:8B50:60D8:A59E:7067:13EB-20180316151029\nTalk:Ancient Data Terminal/@comment-51.6.74.117-20180312114116/@comment-59.167.50.145-20190612025354\nTalk:Ancient Data Terminal/@comment-51.6.74.117-20180312114116/@comment-65.215.93.238-20180723105913\nTalk:Ancient Data Terminal/@comment-51.6.74.117-20180312114116/@comment-73.3.47.101-20190224130736\nTalk:Ancient Data Terminal/@comment-78.11.246.175-20180314181005\nTalk:Ancient Data Terminal/@comment-82.148.166.56-20180708125651\nTalk:Ancient Data Terminal/@comment-82.32.59.48-20181213232428\nTalk:Ancient Key/@comment-203.220.44.184-20190707014950\nTalk:Ancient Key/@comment-34897782-20180902124649\nTalk:Ancient Key/@comment-34897782-20180902124649/@comment-2001:8003:A018:3C00:E8ED:CC62:128A:FA90-20191123050725\nTalk:Ancient Key/@comment-34897782-20180902124649/@comment-51.37.38.25-20190101032123\nTalk:Ancient Key/@comment-86.120.179.98-20190116171134\nTalk:Ancient Key/@comment-86.120.179.98-20190116171134/@comment-88.73.249.192-20190217120137\nTalk:Ancient Obelisk/@comment-37553595-20181118214140\nTalk:Ancient Obelisk/@comment-45587726-20200426003650\nTalk:Ancient Obelisk/@comment-45587726-20200426003650/@comment-1933852-20200605163608\nTalk:Ancient Orb/@comment-118.93.246.156-20180412014456\nTalk:Ancient Orb/@comment-118.93.246.156-20180412014456/@comment-178.221.73.76-20180415233959\nTalk:Ancient Orb/@comment-90.165.118.197-20190224111120\nTalk:Ancient Orb/@comment-90.165.118.197-20190224111120/@comment-210.246.62.132-20191120012410\nTalk:Ancient Ruins/@comment-162.244.200.14-20161122120643\nTalk:Ancient Ruins/@comment-162.244.200.14-20161122120643/@comment-25411947-20161122180156\nTalk:Ancient Ruins/@comment-173.27.168.208-20170113072357\nTalk:Ancient Ruins/@comment-192.153.117.58-20170604195120\nTalk:Ancient Ruins/@comment-217.215.8.123-20170209001217\nTalk:Ancient Ruins/@comment-217.215.8.123-20170209001217/@comment-217.215.8.123-20170209215026\nTalk:Ancient Ruins/@comment-217.215.8.123-20170209001217/@comment-82.40.25.154-20170209012904\nTalk:Ancient Ruins/@comment-34477084-20180126144404\nTalk:Ancient Ruins/@comment-38.113.96.18-20170214212718\nTalk:Ancient Ruins/@comment-38.113.96.18-20170214212718/@comment-96.32.150.249-20170226185239\nTalk:Ancient Ruins/@comment-38.113.96.18-20170306164459\nTalk:Ancient Ruins/@comment-69.143.193.241-20200122010149\nTalk:Ancient Ruins/@comment-80.216.86.128-20170117200337\nTalk:Ancient Ruins/@comment-87.164.191.100-20170116221405\nTalk:Ancient Ruins/@comment-87.164.191.100-20170116221405/@comment-217.215.8.123-20170209220320\nTalk:Ancient Ruins/@comment-99.240.213.147-20180304202827\nTalk:Ancient Ruins/@comment-99.240.213.147-20180304202827/@comment-99.240.213.147-20180304203046\nTalk:Ancient Tablet/@comment-94.253.221.230-20190802180816\nTalk:Ancient Urn/@comment-2601:189:C37F:9A42:C94B:5F47:87ED:5B2-20190804063742\nTalk:Android/@comment-2600:6C5E:6B80:5:70ED:14FB:139B:91E0-20180112205436\nTalk:Andromedaries/@comment-107.77.253.3-20190119004116\nTalk:Anduliga Fire Works/@comment-166.181.80.89-20171017193409\nTalk:Anduliga Fire Works/@comment-166.181.80.89-20171017193409/@comment-192.136.161.33-20171017194020\nTalk:Anduliga Fire Works/@comment-172.85.20.226-20171014034101\nTalk:Anduliga Fire Works/@comment-173.33.138.180-20160101040436\nTalk:Anduliga Fire Works/@comment-73.142.176.57-20150523195940\nTalk:Anduliga Fire Works/@comment-77.6.106.46-20171013075058\nTalk:Anduliga Fire Works/@comment-83.251.113.163-20160101232333\nTalk:Anemone/@comment-2003:EA:CF23:3800:E423:14C:F34E:E3DA-20180428225441\nTalk:Anemone/@comment-33226462-20181218051559\nTalk:Anomalous FSD Telemetry/@comment-1.136.104.182-20180817235156\nTalk:Antimony/@comment-159.146.52.204-20200204215633\nTalk:Antimony/@comment-159.146.52.204-20200204215753\nTalk:Antimony/@comment-2182702-20190925050612\nTalk:Antimony/@comment-2601:8C0:C200:D616:DDF5:8C70:4074:C04B-20180311221634\nTalk:Antimony/@comment-2601:8C0:C200:D616:DDF5:8C70:4074:C04B-20180311221634/@comment-124.149.219.201-20190112011656\nTalk:Antimony/@comment-96.244.93.58-20180417062740\nTalk:Antimony/@comment-96.244.93.58-20180417062740/@comment-2601:300:4301:86D4:41D5:E66F:9751:173B-20180826081028\nTalk:Apa Vietii/@comment-6120634-20191125204659\nTalk:Apa Vietii/@comment-6120634-20191125204659/@comment-78.97.84.174-20200131182515\nTalk:April Update/@comment-90.252.214.40-20190423181036\nTalk:April Update/@comment-96.250.114.167-20190905214404\nTalk:Archon Delaine/@comment-176.249.62.114-20170823184400\nTalk:Archon Delaine/@comment-176.249.62.114-20170823184400/@comment-176.249.62.114-20170823184805\nTalk:Archon Delaine/@comment-176.249.62.114-20170823184400/@comment-176.249.62.114-20170823185050\nTalk:Archon Delaine/@comment-176.249.62.114-20170823184400/@comment-24.254.170.239-20200107010704\nTalk:Archon Delaine/@comment-192.136.175.219-20160302201311\nTalk:Archon Delaine/@comment-192.136.175.219-20160302201311/@comment-104.235.51.45-20170213022845\nTalk:Archon Delaine/@comment-2602:306:CE29:B0D0:7DA3:3D92:FE5B:DAA7-20190904033238\nTalk:Archon Delaine/@comment-2602:306:CE29:B0D0:7DA3:3D92:FE5B:DAA7-20190904033238/@comment-45677112-20200726143520\nTalk:Archon Delaine/@comment-76.25.17.173-20151026173037\nTalk:Archon Delaine/@comment-76.25.17.173-20151026173037/@comment-27032150-20151029121443\nTalk:Archon Delaine/@comment-76.25.17.173-20151026173037/@comment-4030403-20171230044842\nTalk:Arissa Lavigny-Duval/@comment-160.3.141.17-20151012232529\nTalk:Arissa Lavigny-Duval/@comment-160.3.141.17-20151012232529/@comment-195.189.180.51-20151013183717\nTalk:Arissa Lavigny-Duval/@comment-176.78.158.9-20190505162216\nTalk:Arissa Lavigny-Duval/@comment-195.189.180.51-20151012232508\nTalk:Arissa Lavigny-Duval/@comment-207.190.125.19-20160103072701\nTalk:Arissa Lavigny-Duval/@comment-207.190.125.19-20160103072701/@comment-24740282-20180313102436\nTalk:Arissa Lavigny-Duval/@comment-207.190.125.19-20160103072701/@comment-27.33.134.126-20160220133711\nTalk:Arissa Lavigny-Duval/@comment-208.58.127.2-20150807165509\nTalk:Arissa Lavigny-Duval/@comment-208.58.127.2-20150807165509/@comment-194.25.30.9-20150921152302\nTalk:Arissa Lavigny-Duval/@comment-208.58.127.2-20150807165509/@comment-60.224.133.199-20150904124817\nTalk:Arissa Lavigny-Duval/@comment-208.58.127.2-20150807165509/@comment-87.113.91.172-20150828145936\nTalk:Arissa Lavigny-Duval/@comment-208.58.127.2-20150807165509/@comment-90.220.204.4-20151101153649\nTalk:Arissa Lavigny-Duval/@comment-2600:1700:F8C0:FB80:FC6D:2487:B7AC:D00F-20190521233916\nTalk:Arissa Lavigny-Duval/@comment-2600:1700:F8C0:FB80:FC6D:2487:B7AC:D00F-20190521233916/@comment-2602:306:CE29:B0D0:13E:F6E0:66E4:7C57-20190911034853\nTalk:Arissa Lavigny-Duval/@comment-2602:306:CE29:B0D0:7DA3:3D92:FE5B:DAA7-20190904033819\nTalk:Arissa Lavigny-Duval/@comment-2602:306:CE29:B0D0:FC44:15A0:3719:3FB4-20191012073457\nTalk:Arissa Lavigny-Duval/@comment-2A00:23C5:2913:6E00:53E:C77A:D394:228A-20190304225934\nTalk:Arissa Lavigny-Duval/@comment-2A00:23C5:2913:6E00:53E:C77A:D394:228A-20190304225934/@comment-192.136.170.98-20190305152021\nTalk:Arissa Lavigny-Duval/@comment-30393489-20170622163144\nTalk:Arissa Lavigny-Duval/@comment-30393489-20170622163144/@comment-30928085-20170724114123\nTalk:Arissa Lavigny-Duval/@comment-46.211.34.236-20151127173359\nTalk:Arissa Lavigny-Duval/@comment-46.211.34.236-20151127173359/@comment-1028741-20151205002712\nTalk:Arissa Lavigny-Duval/@comment-50.4.239.175-20160403234601\nTalk:Arissa Lavigny-Duval/@comment-66.102.9.18-20151024102821\nTalk:Arissa Lavigny-Duval/@comment-90.200.46.38-20181124165517\nTalk:Arissa Lavigny-Duval/@comment-92.17.185.172-20151010193805\nTalk:Arissa Lavigny-Duval/@comment-92.17.185.172-20151010193805/@comment-41.114.112.11-20180827103328\nTalk:Arissa Lavigny-Duval/@comment-92.17.185.172-20151010193805/@comment-94.211.213.90-20151012103458\nTalk:Armour Hardness/@comment-34642877-20200413143719\nTalk:Armour Hardness/@comment-90.200.46.38-20181114135929\nTalk:Armour Hardness/@comment-90.200.46.38-20181123024407\nTalk:Armour Hardness/@comment-90.200.46.38-20181123024407/@comment-192.136.170.98-20181127144600\nTalk:Armour Hardness/@comment-90.200.46.38-20181123024407/@comment-192.136.170.98-20181208182953\nTalk:Armour Hardness/@comment-90.200.46.38-20181123024407/@comment-192.136.170.98-20181212180005\nTalk:Armour Hardness/@comment-90.200.46.38-20181123024407/@comment-24.4.78.105-20181127043530\nTalk:Armour Hardness/@comment-90.200.46.38-20181123024407/@comment-90.200.49.195-20181208113038\nTalk:Armour Hardness/@comment-90.200.46.38-20181123024407/@comment-90.200.49.195-20181212164353\nTalk:Armoured Power Plant/@comment-2A02:908:1259:1F40:8D7F:9AF3:7DD6:2CE0-20190111132913\nTalk:Arque/@comment-44180665-20200617162019\nTalk:Arque/@comment-44180665-20200617162019/@comment-44180665-20200617162138\nTalk:Arsenic/@comment-115.64.60.234-20180421233734\nTalk:Arsenic/@comment-180.222.64.124-20160613013136\nTalk:Arsenic/@comment-192.136.174.182-20160614153015\nTalk:Arsenic/@comment-192.136.174.182-20160614153015/@comment-87.117.189.202-20160830075250\nTalk:Arsenic/@comment-192.136.174.182-20160614153015/@comment-98.144.247.241-20171012180831\nTalk:Arsenic/@comment-208.126.217.202-20160719042219\nTalk:Arsenic/@comment-24.228.248.215-20170123180504\nTalk:Arsenic/@comment-24.228.248.215-20170123180504/@comment-24.228.248.215-20170124183117\nTalk:Arsenic/@comment-24.228.248.215-20170123180504/@comment-24.228.248.215-20170124191453\nTalk:Arsenic/@comment-2602:306:32D4:F060:28F4:709E:27D8:A32F-20180119000447\nTalk:Arsenic/@comment-2602:306:32D4:F060:28F4:709E:27D8:A32F-20180119000447/@comment-2602:306:32D4:F060:28F4:709E:27D8:A32F-20180119000747\nTalk:Arsenic/@comment-2602:306:32D4:F060:28F4:709E:27D8:A32F-20180119000447/@comment-90.212.93.162-20190910150416\nTalk:Arsenic/@comment-29590738-20161106093411\nTalk:Arsenic/@comment-31.10.129.54-20160529145557\nTalk:Arsenic/@comment-31.10.129.54-20160529145557/@comment-50.190.113.228-20160529153222\nTalk:Arsenic/@comment-31.10.129.54-20160529145557/@comment-95.91.228.170-20160603214555\nTalk:Arsenic/@comment-45168772-20200305122031\nTalk:Arsenic/@comment-81.246.122.250-20200116085003\nTalk:Art of Elite Dangerous/@comment-1.136.104.182-20180818035104\nTalk:Asellus Primus/@comment-100.0.23.143-20190413165619\nTalk:Asellus Primus/@comment-100.0.23.143-20190413165619/@comment-49.177.243.240-20190424082754\nTalk:Asellus Primus/@comment-94.195.170.97-20170523161020\nTalk:Asp/@comment-27018552-20160105232537\nTalk:Asp/@comment-27018552-20160105232537/@comment-26009169-20160106005744\nTalk:Asp/@comment-86.7.24.53-20180928064255\nTalk:Asp Explorer/@comment-100.33.124.213-20141001180818\nTalk:Asp Explorer/@comment-100.33.124.213-20141001180818/@comment-63.115.40.56-20141001193817\nTalk:Asp Explorer/@comment-100.33.124.213-20141001180818/@comment-86.18.163.124-20141002103554\nTalk:Asp Explorer/@comment-104.245.77.23-20150317012521\nTalk:Asp Explorer/@comment-104.245.77.23-20150317012521/@comment-109.155.182.6-20150320104937\nTalk:Asp Explorer/@comment-104.245.77.23-20150317012521/@comment-156.3.54.203-20150429195624\nTalk:Asp Explorer/@comment-104.245.77.23-20150317012521/@comment-26116574-20150425001244\nTalk:Asp Explorer/@comment-128.104.6.11-20141006163625\nTalk:Asp Explorer/@comment-1441282-20150628000235\nTalk:Asp Explorer/@comment-1441282-20150628000235/@comment-173.30.5.165-20150902051811\nTalk:Asp Explorer/@comment-1441282-20150628000235/@comment-68.232.90.144-20150629032442\nTalk:Asp Explorer/@comment-1441282-20150628000235/@comment-72.241.143.238-20150629041721\nTalk:Asp Explorer/@comment-1441282-20150628000235/@comment-75.187.152.96-20151005033314\nTalk:Asp Explorer/@comment-150.208.129.188-20170329145118\nTalk:Asp Explorer/@comment-150.208.129.188-20170329145712\nTalk:Asp Explorer/@comment-156.3.54.202-20150427145536\nTalk:Asp Explorer/@comment-156.3.54.202-20150427145536/@comment-115.188.78.80-20150509233651\nTalk:Asp Explorer/@comment-156.3.54.202-20150427145536/@comment-156.3.54.203-20150429195424\nTalk:Asp Explorer/@comment-156.3.54.202-20150427145536/@comment-186.79.91.193-20150511073627\nTalk:Asp Explorer/@comment-156.3.54.202-20150427145536/@comment-202.36.179.100-20150428030107\nTalk:Asp Explorer/@comment-156.3.54.202-20150427145536/@comment-24.239.93.107-20150507052157\nTalk:Asp Explorer/@comment-156.3.54.202-20150427145536/@comment-24.56.62.151-20150514160018\nTalk:Asp Explorer/@comment-156.3.54.203-20150430144831\nTalk:Asp Explorer/@comment-156.3.54.203-20150430144831/@comment-88.85.155.146-20150502211511\nTalk:Asp Explorer/@comment-156.3.54.203-20150512144750\nTalk:Asp Explorer/@comment-156.3.54.203-20150512144750/@comment-156.3.54.203-20150513144814\nTalk:Asp Explorer/@comment-156.3.54.203-20150512144750/@comment-26361572-20150512222305\nTalk:Asp Explorer/@comment-156.3.54.203-20150520155018\nTalk:Asp Explorer/@comment-156.3.54.203-20150520155018/@comment-26420537-20150602133755\nTalk:Asp Explorer/@comment-156.3.54.203-20150520155018/@comment-26420537-20150607071951\nTalk:Asp Explorer/@comment-156.3.54.203-20150520155018/@comment-26420537-20150619115907\nTalk:Asp Explorer/@comment-156.3.54.203-20150520155018/@comment-72.241.143.238-20150605133617\nTalk:Asp Explorer/@comment-156.3.54.203-20150520155018/@comment-72.241.143.238-20150609114156\nTalk:Asp Explorer/@comment-156.3.54.203-20150520155018/@comment-72.241.143.238-20150629041903\nTalk:Asp Explorer/@comment-156.3.54.205-20150921195047\nTalk:Asp Explorer/@comment-156.3.54.205-20150921195047/@comment-156.3.54.204-20150922163255\nTalk:Asp Explorer/@comment-156.3.54.205-20150921195047/@comment-26419093-20150921230247\nTalk:Asp Explorer/@comment-156.3.54.205-20150921195047/@comment-87.249.20.162-20151015064710\nTalk:Asp Explorer/@comment-16235054-20150112165931\nTalk:Asp Explorer/@comment-1640573-20160101081251\nTalk:Asp Explorer/@comment-173.191.151.131-20151224083327\nTalk:Asp Explorer/@comment-173.191.151.131-20151224083327/@comment-50.170.117.254-20160222025750\nTalk:Asp Explorer/@comment-173.80.93.74-20160103235315\nTalk:Asp Explorer/@comment-173.80.93.74-20160103235315/@comment-147.69.129.150-20160229052333\nTalk:Asp Explorer/@comment-173.80.93.74-20160103235315/@comment-192.136.172.239-20160216170431\nTalk:Asp Explorer/@comment-174.125.3.168-20150926180058\nTalk:Asp Explorer/@comment-176.221.77.250-20171228104955\nTalk:Asp Explorer/@comment-176.249.62.114-20170826115730\nTalk:Asp Explorer/@comment-178.197.230.32-20150124065715\nTalk:Asp Explorer/@comment-178.197.230.32-20150124065715/@comment-26009169-20150129223749\nTalk:Asp Explorer/@comment-178.197.230.32-20150124065715/@comment-84.105.71.72-20150129223343\nTalk:Asp Explorer/@comment-192.136.161.248-20160816125737\nTalk:Asp Explorer/@comment-192.91.173.36-20150128185443\nTalk:Asp Explorer/@comment-198.23.71.119-20150104065808\nTalk:Asp Explorer/@comment-199.21.88.182-20151218090344\nTalk:Asp Explorer/@comment-2003:C6:C3D0:5D36:6496:6759:2F90:F82E-20170818170822\nTalk:Asp Explorer/@comment-203.104.11.24-20151110005751\nTalk:Asp Explorer/@comment-203.104.11.24-20151110005751/@comment-153.46.105.98-20151110103848\nTalk:Asp Explorer/@comment-203.104.11.24-20151110005751/@comment-50.111.20.236-20151218032627\nTalk:Asp Explorer/@comment-205.206.90.137-20141124042649\nTalk:Asp Explorer/@comment-205.206.90.137-20141124042649/@comment-109.208.58.139-20141124084809\nTalk:Asp Explorer/@comment-205.206.90.137-20141124042649/@comment-145.228.61.5-20141127090523\nTalk:Asp Explorer/@comment-205.206.90.137-20141124042649/@comment-86.28.229.13-20141130003801\nTalk:Asp Explorer/@comment-205.206.90.137-20141124042649/@comment-86.28.229.13-20141130003939\nTalk:Asp Explorer/@comment-205.206.90.137-20141124042649/@comment-98.183.81.72-20150122120041\nTalk:Asp Explorer/@comment-209.242.141.55-20151013181717\nTalk:Asp Explorer/@comment-209.242.141.55-20151013181717/@comment-27115814-20151202172028\nTalk:Asp Explorer/@comment-212.183.128.235-20141216221957\nTalk:Asp Explorer/@comment-212.183.128.235-20141216221957/@comment-151.224.91.240-20141220163345\nTalk:Asp Explorer/@comment-212.183.128.235-20141216221957/@comment-212.183.140.19-20141221223910\nTalk:Asp Explorer/@comment-213.118.129.55-20141004224433\nTalk:Asp Explorer/@comment-213.118.129.55-20141004224433/@comment-101.167.8.113-20141130074338\nTalk:Asp Explorer/@comment-213.118.129.55-20141004224433/@comment-109.189.56.160-20141109132605\nTalk:Asp Explorer/@comment-213.118.129.55-20141004224433/@comment-122.148.232.40-20141124110943\nTalk:Asp Explorer/@comment-213.118.129.55-20141004224433/@comment-217.121.218.161-20141011225241\nTalk:Asp Explorer/@comment-213.118.129.55-20141004224433/@comment-24.216.188.246-20141028205041\nTalk:Asp Explorer/@comment-213.118.129.55-20141004224433/@comment-25525232-20141012030604\nTalk:Asp Explorer/@comment-213.118.129.55-20141004224433/@comment-69.127.102.167-20141005041856\nTalk:Asp Explorer/@comment-24.38.130.34-20170319144531\nTalk:Asp Explorer/@comment-24.38.130.34-20170319144531/@comment-2600:6C5D:6300:801:E99D:3B8A:91A7:39A5-20180315043559\nTalk:Asp Explorer/@comment-24.38.130.34-20170319144531/@comment-5959508-20170319195438\nTalk:Asp Explorer/@comment-25411947-20150816224111\nTalk:Asp Explorer/@comment-25411947-20150816224111/@comment-173.30.5.165-20150902051654\nTalk:Asp Explorer/@comment-25411947-20150816224111/@comment-72.241.143.238-20150910002331\nTalk:Asp Explorer/@comment-25936827-20141229021920\nTalk:Asp Explorer/@comment-25942906-20141230175529\nTalk:Asp Explorer/@comment-25942906-20141230175529/@comment-172.56.26.117-20150119153402\nTalk:Asp Explorer/@comment-25942906-20141230175529/@comment-62.23.167.180-20150107093125\nTalk:Asp Explorer/@comment-2600:100D:B10A:38F2:2040:D888:533:6F12-20190430043115\nTalk:Asp Explorer/@comment-2602:306:CE29:B0D0:91A:13CE:35AA:4E20-20190916225021\nTalk:Asp Explorer/@comment-2602:306:CE29:B0D0:91A:13CE:35AA:4E20-20190916225021/@comment-2003:DB:F70F:D635:65A2:4594:34B4:B8D6-20200202211655\nTalk:Asp Explorer/@comment-26048696-20150203223908\nTalk:Asp Explorer/@comment-26048696-20150203223908/@comment-94.204.37.202-20150417180112\nTalk:Asp Explorer/@comment-26077237-20150205152803\nTalk:Asp Explorer/@comment-26077237-20150205152803/@comment-212.41.65.33-20150309170129\nTalk:Asp Explorer/@comment-26077237-20150205152803/@comment-26077237-20150206234542\nTalk:Asp Explorer/@comment-26077237-20150205152803/@comment-8256051-20150206120752\nTalk:Asp Explorer/@comment-26113847-20150221031512\nTalk:Asp Explorer/@comment-26346600-20150426134924\nTalk:Asp Explorer/@comment-26346600-20150426134924/@comment-156.3.54.203-20150429195451\nTalk:Asp Explorer/@comment-26346600-20150426134924/@comment-26361572-20150509230016\nTalk:Asp Explorer/@comment-26346600-20150426134924/@comment-85.182.140.170-20150821121559\nTalk:Asp Explorer/@comment-26362216-20150614032958\nTalk:Asp Explorer/@comment-26391992-20151231012849\nTalk:Asp Explorer/@comment-26391992-20151231012849/@comment-26391992-20160111110117\nTalk:Asp Explorer/@comment-26391992-20151231012849/@comment-4969595-20160102115505\nTalk:Asp Explorer/@comment-26420537-20150602134234\nTalk:Asp Explorer/@comment-26420537-20150602134234/@comment-156.3.54.203-20150604212706\nTalk:Asp Explorer/@comment-26420537-20150602134234/@comment-156.3.54.203-20150608212244\nTalk:Asp Explorer/@comment-26420537-20150602134234/@comment-26420537-20150602134324\nTalk:Asp Explorer/@comment-26420537-20150602134234/@comment-26420537-20150607071804\nTalk:Asp Explorer/@comment-26420537-20150602134234/@comment-26420537-20150619115706\nTalk:Asp Explorer/@comment-26454645-20150605225452\nTalk:Asp Explorer/@comment-26799362-20150721165341\nTalk:Asp Explorer/@comment-26810344-20150820180428\nTalk:Asp Explorer/@comment-26810344-20150820180428/@comment-26937315-20150829020254\nTalk:Asp Explorer/@comment-26810344-20150820180428/@comment-46.114.109.227-20150823233329\nTalk:Asp Explorer/@comment-26810344-20150820180428/@comment-72.241.143.238-20150824012326\nTalk:Asp Explorer/@comment-26810344-20150820180428/@comment-75.167.195.172-20150908075755\nTalk:Asp Explorer/@comment-26810344-20150909190508\nTalk:Asp Explorer/@comment-27115814-20151201015258\nTalk:Asp Explorer/@comment-27115814-20151201015258/@comment-50.111.20.236-20151218031420\nTalk:Asp Explorer/@comment-2A01:E35:39A8:B820:14D8:518E:86C5:9B75-20170731152844\nTalk:Asp Explorer/@comment-2A01:E35:39A8:B820:14D8:518E:86C5:9B75-20170731152844/@comment-192.136.161.6-20170731205742\nTalk:Asp Explorer/@comment-2A01:E35:39A8:B820:14D8:518E:86C5:9B75-20170731152844/@comment-192.136.161.6-20170801115713\nTalk:Asp Explorer/@comment-2A01:E35:39A8:B820:14D8:518E:86C5:9B75-20170731152844/@comment-2A01:E35:39A8:B820:79A3:D52:AAF2:B467-20170801084520\nTalk:Asp Explorer/@comment-2A01:E35:39A8:B820:14D8:518E:86C5:9B75-20170731152844/@comment-2A01:E35:39A8:B820:79A3:D52:AAF2:B467-20170801140241\nTalk:Asp Explorer/@comment-31.168.180.254-20170226154131\nTalk:Asp Explorer/@comment-33242737-20180116162022\nTalk:Asp Explorer/@comment-33242737-20180116162022/@comment-2600:6C5D:6300:801:E99D:3B8A:91A7:39A5-20180315043140\nTalk:Asp Explorer/@comment-34658829-20180423065316\nTalk:Asp Explorer/@comment-49.196.173.86-20190426171435\nTalk:Asp Explorer/@comment-49.255.202.34-20170829230945\nTalk:Asp Explorer/@comment-49.255.202.34-20170829230945/@comment-170.211.150.62-20171011151230\nTalk:Asp Explorer/@comment-51.148.96.243-20191002125010\nTalk:Asp Explorer/@comment-5151386-20161219201508\nTalk:Asp Explorer/@comment-5151386-20161219201508/@comment-192.136.161.33-20180202134438\nTalk:Asp Explorer/@comment-5151386-20161219201508/@comment-2601:585:8201:2F92:7974:BC4:F74B:201F-20180202112911\nTalk:Asp Explorer/@comment-63.115.40.56-20141001193910\nTalk:Asp Explorer/@comment-63.115.40.56-20141001193910/@comment-100.33.124.213-20141001215247\nTalk:Asp Explorer/@comment-63.115.40.56-20141001193910/@comment-100.33.124.213-20141001232150\nTalk:Asp Explorer/@comment-63.115.40.56-20141001193910/@comment-25335609-20141001220940\nTalk:Asp Explorer/@comment-63.115.40.56-20141001193910/@comment-75.100.175.2-20141007114007\nTalk:Asp Explorer/@comment-63.236.153.74-20180319233338\nTalk:Asp Explorer/@comment-63.236.153.74-20180319233338/@comment-192.136.161.33-20180320034713\nTalk:Asp Explorer/@comment-650095-20150109025714\nTalk:Asp Explorer/@comment-66.229.135.252-20141223164004\nTalk:Asp Explorer/@comment-66.249.81.43-20140607172728\nTalk:Asp Explorer/@comment-66.249.81.43-20140607172728/@comment-124.168.4.7-20150112041557\nTalk:Asp Explorer/@comment-67.149.240.15-20150402221105\nTalk:Asp Explorer/@comment-67.149.240.15-20150402221105/@comment-173.15.201.129-20150405045155\nTalk:Asp Explorer/@comment-67.149.240.15-20150402221105/@comment-188.174.188.124-20150414110554\nTalk:Asp Explorer/@comment-67.149.240.15-20150402221105/@comment-24.239.93.107-20150507052500\nTalk:Asp Explorer/@comment-67.149.240.15-20150402221105/@comment-26116574-20150425001031\nTalk:Asp Explorer/@comment-67.149.240.15-20150402221105/@comment-72.241.143.238-20150605133804\nTalk:Asp Explorer/@comment-67.174.164.203-20151017165353\nTalk:Asp Explorer/@comment-67.174.164.203-20151017165353/@comment-151.225.141.17-20151026212411\nTalk:Asp Explorer/@comment-67.174.164.203-20151017165353/@comment-86.1.61.9-20151030032736\nTalk:Asp Explorer/@comment-67.174.164.203-20151017165353/@comment-87.145.16.248-20151019173329\nTalk:Asp Explorer/@comment-67.181.93.38-20150116230139\nTalk:Asp Explorer/@comment-68.186.99.18-20150531045009\nTalk:Asp Explorer/@comment-68.186.99.18-20150531045009/@comment-68.186.99.18-20150531045241\nTalk:Asp Explorer/@comment-68.190.191.61-20160415021119\nTalk:Asp Explorer/@comment-70.249.189.124-20181221115523\nTalk:Asp Explorer/@comment-70.249.189.124-20181221115523/@comment-192.136.170.98-20181222041635\nTalk:Asp Explorer/@comment-70.30.83.108-20141226174106\nTalk:Asp Explorer/@comment-70.30.83.108-20141226174106/@comment-70.30.83.108-20141226174200\nTalk:Asp Explorer/@comment-71.14.212.34-20160229144009\nTalk:Asp Explorer/@comment-71.14.212.34-20160229144009/@comment-162.25.24.153-20160307161344\nTalk:Asp Explorer/@comment-71.14.212.34-20160229144009/@comment-192.136.161.33-20180202134134\nTalk:Asp Explorer/@comment-71.14.212.34-20160229144009/@comment-192.136.174.152-20160307163321\nTalk:Asp Explorer/@comment-71.14.212.34-20160229144009/@comment-2601:585:8201:2F92:7974:BC4:F74B:201F-20180202113519\nTalk:Asp Explorer/@comment-71.14.212.34-20160229144009/@comment-28465000-20160515114709\nTalk:Asp Explorer/@comment-72.241.143.238-20150609113215\nTalk:Asp Explorer/@comment-72.241.147.127-20181107020829\nTalk:Asp Explorer/@comment-72.241.147.127-20181107020829/@comment-90.200.46.38-20181108140010\nTalk:Asp Explorer/@comment-73.19.22.218-20151221021759\nTalk:Asp Explorer/@comment-74.96.68.238-20150405195542\nTalk:Asp Explorer/@comment-74.96.68.238-20150405195542/@comment-24.239.93.107-20150507052408\nTalk:Asp Explorer/@comment-74.96.68.238-20150405195542/@comment-25679378-20150417153033\nTalk:Asp Explorer/@comment-75.140.158.219-20151226042704\nTalk:Asp Explorer/@comment-75.183.83.3-20151025193642\nTalk:Asp Explorer/@comment-75.183.83.3-20151025193642/@comment-90.154.74.237-20151115120301\nTalk:Asp Explorer/@comment-76.190.209.67-20150101215339\nTalk:Asp Explorer/@comment-77.133.58.10-20160418192942\nTalk:Asp Explorer/@comment-78.147.92.130-20150906070818\nTalk:Asp Explorer/@comment-78.147.92.130-20150906070818/@comment-25450485-20150913134629\nTalk:Asp Explorer/@comment-78.147.92.130-20150906070818/@comment-72.241.143.238-20150910002156\nTalk:Asp Explorer/@comment-78.147.92.130-20150906070818/@comment-84.165.23.131-20151013030410\nTalk:Asp Explorer/@comment-78.147.92.130-20150906070818/@comment-94.9.91.98-20150906190948\nTalk:Asp Explorer/@comment-79.119.110.159-20151205184834\nTalk:Asp Explorer/@comment-79.119.110.159-20151205184834/@comment-50.111.206.178-20151213071048\nTalk:Asp Explorer/@comment-82.36.199.64-20141206030152\nTalk:Asp Explorer/@comment-83.252.196.54-20180512185844\nTalk:Asp Explorer/@comment-83.252.196.54-20180512185844/@comment-210.246.50.132-20180605001900\nTalk:Asp Explorer/@comment-83.252.196.54-20180512185844/@comment-26702911-20180521121840\nTalk:Asp Explorer/@comment-84.0.35.155-20141227200931\nTalk:Asp Explorer/@comment-84.0.35.155-20141227200931/@comment-202.177.218.75-20150114015916\nTalk:Asp Explorer/@comment-84.142.11.128-20150207201848\nTalk:Asp Explorer/@comment-84.142.11.128-20150207201848/@comment-26077237-20150212074426\nTalk:Asp Explorer/@comment-84.142.11.128-20150207201848/@comment-86.135.32.154-20150620122708\nTalk:Asp Explorer/@comment-85.105.100.25-20141229085631\nTalk:Asp Explorer/@comment-85.23.196.186-20150920102020\nTalk:Asp Explorer/@comment-85.23.196.186-20150920102020/@comment-114.96.172.141-20150930154842\nTalk:Asp Explorer/@comment-85.23.196.186-20150920102020/@comment-333814-20151023103553\nTalk:Asp Explorer/@comment-85.23.196.186-20150920102020/@comment-37.112.200.119-20151206041616\nTalk:Asp Explorer/@comment-85.23.196.186-20150920102020/@comment-46.11.15.106-20160108215204\nTalk:Asp Explorer/@comment-85.23.196.186-20150920102020/@comment-70.138.193.222-20151027193151\nTalk:Asp Explorer/@comment-85.23.196.186-20150920102020/@comment-81.149.33.239-20151026154625\nTalk:Asp Explorer/@comment-85.23.196.186-20150920102020/@comment-83.93.225.235-20151011093111\nTalk:Asp Explorer/@comment-85.23.196.186-20150920102020/@comment-85.108.145.195-20151029222853\nTalk:Asp Explorer/@comment-85.23.196.186-20150920102020/@comment-99.239.182.156-20151207080612\nTalk:Asp Explorer/@comment-85.253.173.110-20160225113602\nTalk:Asp Explorer/@comment-86.150.100.27-20141225230440\nTalk:Asp Explorer/@comment-86.154.20.48-20150315215921\nTalk:Asp Explorer/@comment-86.154.20.48-20150315215921/@comment-71.21.3.159-20150329040030\nTalk:Asp Explorer/@comment-86.169.44.90-20150105210316\nTalk:Asp Explorer/@comment-86.20.14.215-20150519112653\nTalk:Asp Explorer/@comment-86.20.14.215-20150519112653/@comment-26009169-20150519155627\nTalk:Asp Explorer/@comment-87.113.175.253-20180403162722\nTalk:Asp Explorer/@comment-87.113.175.253-20180403162722/@comment-150.107.173.187-20180702181311\nTalk:Asp Explorer/@comment-87.113.175.253-20180403162722/@comment-2600:6C40:7B80:3A:9892:F5A3:9F0E:E8D9-20180419040624\nTalk:Asp Explorer/@comment-87.113.175.253-20180403162722/@comment-2600:6C5D:6300:801:95FB:5034:44EC:D4C0-20181121230141\nTalk:Asp Explorer/@comment-87.113.175.253-20180403162722/@comment-34658829-20180423065129\nTalk:Asp Explorer/@comment-87.113.175.253-20180403162722/@comment-71.214.227.169-20180707061843\nTalk:Asp Explorer/@comment-87.113.175.253-20180403162722/@comment-74.249.112.106-20180921000431\nTalk:Asp Explorer/@comment-87.113.175.253-20180403162722/@comment-90.200.46.38-20181103211113\nTalk:Asp Explorer/@comment-87.242.159.65-20150102222152\nTalk:Asp Explorer/@comment-89.128.38.113-20180829154526\nTalk:Asp Explorer/@comment-89.128.38.113-20180829154526/@comment-30928085-20181007214715\nTalk:Asp Explorer/@comment-90.200.46.38-20181024104856\nTalk:Asp Explorer/@comment-90.200.46.38-20181024104856/@comment-90.200.46.38-20181024105746\nTalk:Asp Explorer/@comment-90.217.95.144-20160109235410\nTalk:Asp Explorer/@comment-90.217.95.144-20160109235410/@comment-27609722-20160114145406\nTalk:Asp Explorer/@comment-90.217.95.144-20160109235410/@comment-73.14.128.5-20170115235249\nTalk:Asp Explorer/@comment-90.217.95.144-20160109235410/@comment-99.236.0.91-20160112035039\nTalk:Asp Explorer/@comment-90.35.245.215-20160528014636\nTalk:Asp Explorer/@comment-90.35.245.215-20160528014636/@comment-192.136.161.248-20160820182201\nTalk:Asp Explorer/@comment-90.35.245.215-20160528014636/@comment-2601:585:8201:2F92:7974:BC4:F74B:201F-20180202113204\nTalk:Asp Explorer/@comment-90.35.245.215-20160528014636/@comment-71.114.112.105-20160820160127\nTalk:Asp Explorer/@comment-91.125.153.117-20150315185003\nTalk:Asp Explorer/@comment-91.125.153.117-20150315185003/@comment-156.3.54.203-20150429195712\nTalk:Asp Explorer/@comment-91.50.235.118-20141130155131\nTalk:Asp Explorer/@comment-91.67.22.246-20150101214124\nTalk:Asp Explorer/@comment-94.12.31.80-20170714185113\nTalk:Asp Explorer/@comment-94.12.31.80-20170714185113/@comment-176.249.62.114-20170826115518\nTalk:Asp Explorer/@comment-94.12.31.80-20170714185113/@comment-2604:2D80:8403:C35F:68FD:223B:B730:A357-20170727111021\nTalk:Asp Explorer/@comment-94.173.15.242-20141228004219\nTalk:Asp Explorer/@comment-94.189.160.96-20150102162320\nTalk:Asp Explorer/@comment-94.64.113.189-20141124124813\nTalk:Asp Explorer/@comment-94.79.174.218-20141230223047\nTalk:Asp Explorer/@comment-94.79.174.218-20150103215612\nTalk:Asp Explorer/@comment-94.79.174.218-20150103215612/@comment-108.236.149.14-20150127200638\nTalk:Asp Explorer/@comment-94.79.174.218-20150109231347\nTalk:Asp Explorer/@comment-94.79.174.218-20150109231347/@comment-71.123.142.45-20150306191644\nTalk:Asp Explorer/@comment-94.79.174.218-20150109231347/@comment-94.79.174.218-20150109233855\nTalk:Asp Explorer/@comment-9472148-20160108013010\nTalk:Asp Explorer/@comment-9472148-20160108013010/@comment-192.136.172.239-20160216170346\nTalk:Asp Explorer/@comment-9472148-20160108013010/@comment-66.191.253.76-20160725224811\nTalk:Asp Explorer/@comment-9472148-20160108013010/@comment-83.57.1.248-20160208110048\nTalk:Asp Explorer/@comment-9472148-20160108013010/@comment-9472148-20160128143451\nTalk:Asp Explorer/@comment-95.175.104.28-20160117211912\nTalk:Asp Explorer/@comment-95.175.104.28-20160117211912/@comment-81.18.89.62-20160130165655\nTalk:Asp Explorer/@comment-95.175.104.28-20160117211912/@comment-83.57.1.248-20160208110448\nTalk:Asp Explorer/@comment-95.175.104.28-20160117211912/@comment-83.57.1.248-20160208110543\nTalk:Asp Explorer/@comment-95.175.104.28-20160117211912/@comment-84.193.126.61-20170626225531\nTalk:Asp Explorer/@comment-96.231.135.31-20161015231845\nTalk:Asp Explorer/@comment-96.231.135.31-20161015231845/@comment-2155082-20161016035305\nTalk:Asp Explorer/@comment-96.250.114.167-20190919215431\nTalk:Asp Explorer/@comment-96.250.114.167-20190919215431/@comment-2003:DB:F70F:D635:65A2:4594:34B4:B8D6-20200202211358\nTalk:Asp Explorer/@comment-96.66.42.177-20170428181905\nTalk:Asp MkII/@comment-192.136.174.139-20160218170435\nTalk:Asp MkII/@comment-2003:C6:C3C8:C912:C976:8D8A:6CB8:8129-20170714152705\nTalk:Asp MkII/@comment-206.174.12.46-20150917172347\nTalk:Asp MkII/@comment-206.174.12.46-20150917172347/@comment-204.112.5.230-20151117132545\nTalk:Asp MkII/@comment-206.174.12.46-20150917172347/@comment-62.69.240.14-20191019183838\nTalk:Asp MkII/@comment-206.174.12.46-20150917172347/@comment-84.247.138.189-20151107025158\nTalk:Asp MkII/@comment-49.199.12.243-20161106115024\nTalk:Asp MkII/@comment-49.199.12.243-20161106115024/@comment-192.136.161.52-20161106144903\nTalk:Asp MkII/@comment-82.148.166.90-20151215225843\nTalk:Asp MkII/@comment-82.148.166.90-20151215225843/@comment-50.170.117.254-20160315115007\nTalk:Asp MkII/@comment-82.148.166.90-20151215225843/@comment-72.241.143.238-20151222200733\nTalk:Asp MkII/@comment-82.148.166.90-20151215225843/@comment-77.102.250.232-20170504152935\nTalk:Asp MkII/@comment-82.148.166.90-20151215225843/@comment-84.247.190.133-20160129215944\nTalk:Asp MkII/@comment-82.148.166.90-20151215225843/@comment-84.247.190.133-20160330032619\nTalk:Asp MkII/@comment-903860-20180912001152\nTalk:Asp MkII/@comment-93.143.32.90-20160412184715\nTalk:Asp Scout/@comment-109.221.8.190-20151230145348\nTalk:Asp Scout/@comment-120.144.54.250-20151020024455\nTalk:Asp Scout/@comment-120.144.54.250-20151020024455/@comment-82.226.121.139-20151020024846\nTalk:Asp Scout/@comment-151.228.209.213-20151210211354\nTalk:Asp Scout/@comment-151.228.209.213-20151210211354/@comment-184.75.223.203-20160116064722\nTalk:Asp Scout/@comment-151.228.209.213-20151210211354/@comment-184.75.223.203-20160116065010\nTalk:Asp Scout/@comment-151.228.209.213-20151210211354/@comment-67.1.181.13-20151220042423\nTalk:Asp Scout/@comment-151.228.209.213-20151210211354/@comment-71.233.88.91-20160615235948\nTalk:Asp Scout/@comment-173.191.151.131-20151224083211\nTalk:Asp Scout/@comment-173.191.151.131-20151224083211/@comment-25490957-20160118014240\nTalk:Asp Scout/@comment-173.191.151.131-20151224083211/@comment-50.159.152.180-20160103110804\nTalk:Asp Scout/@comment-173.191.151.131-20151224083211/@comment-71.233.88.91-20160615235834\nTalk:Asp Scout/@comment-174.60.126.10-20160807225508\nTalk:Asp Scout/@comment-174.60.126.10-20160807225508/@comment-150.208.129.188-20170406191550\nTalk:Asp Scout/@comment-174.60.126.10-20160807225508/@comment-68.197.23.46-20190621222350\nTalk:Asp Scout/@comment-174.60.126.10-20160807225508/@comment-87.178.125.192-20170613194655\nTalk:Asp Scout/@comment-185.26.182.27-20151127151232\nTalk:Asp Scout/@comment-185.26.182.27-20151127151232/@comment-185.26.182.38-20151128192715\nTalk:Asp Scout/@comment-185.26.182.27-20151127151232/@comment-185.26.182.38-20151204121456\nTalk:Asp Scout/@comment-185.26.182.27-20151127151232/@comment-2620:22:4000:E30:3F7F:59B1:4396:E475-20171220001507\nTalk:Asp Scout/@comment-185.26.182.27-20151127151232/@comment-26391992-20151203213141\nTalk:Asp Scout/@comment-185.26.182.27-20151127151232/@comment-72.194.70.33-20160116235833\nTalk:Asp Scout/@comment-185.26.182.27-20151127151232/@comment-73.1.55.15-20160109084123\nTalk:Asp Scout/@comment-185.26.182.27-20151127151232/@comment-74.112.36.106-20160125192944\nTalk:Asp Scout/@comment-185.26.182.27-20151127151232/@comment-86.188.28.51-20151128185323\nTalk:Asp Scout/@comment-192.136.174.152-20160307122709\nTalk:Asp Scout/@comment-192.136.174.152-20160309125756\nTalk:Asp Scout/@comment-192.136.174.152-20160309125756/@comment-192.136.174.182-20160621112542\nTalk:Asp Scout/@comment-192.136.174.152-20160309125756/@comment-50.170.117.254-20160613014816\nTalk:Asp Scout/@comment-192.136.174.152-20160309125756/@comment-71.233.88.91-20160615235637\nTalk:Asp Scout/@comment-192.136.174.152-20160309125756/@comment-73.92.128.115-20160621012222\nTalk:Asp Scout/@comment-196.204.160.79-20160331081940\nTalk:Asp Scout/@comment-196.204.160.79-20160331081940/@comment-192.136.175.137-20160503112035\nTalk:Asp Scout/@comment-196.204.160.79-20160331081940/@comment-24748124-20160502140610\nTalk:Asp Scout/@comment-196.204.160.79-20160331081940/@comment-68.197.23.46-20190621222746\nTalk:Asp Scout/@comment-196.204.160.79-20160331081940/@comment-68.41.87.66-20160502135829\nTalk:Asp Scout/@comment-196.204.160.79-20160331081940/@comment-71.233.88.91-20160615235614\nTalk:Asp Scout/@comment-196.204.160.79-20160331081940/@comment-73.205.52.98-20170202043211\nTalk:Asp Scout/@comment-2.126.247.125-20151024173142\nTalk:Asp Scout/@comment-2.126.247.125-20151024173142/@comment-73.151.104.224-20151101122046\nTalk:Asp Scout/@comment-200.113.32.182-20151111153645\nTalk:Asp Scout/@comment-207.161.162.186-20181203023915\nTalk:Asp Scout/@comment-212.161.30.62-20151218132950\nTalk:Asp Scout/@comment-212.161.30.62-20151218132950/@comment-26391992-20160113105749\nTalk:Asp Scout/@comment-212.161.30.62-20151218132950/@comment-80.120.62.34-20160113111053\nTalk:Asp Scout/@comment-212.59.37.193-20151119121808\nTalk:Asp Scout/@comment-212.59.37.193-20151119121808/@comment-212.59.37.193-20151123114234\nTalk:Asp Scout/@comment-212.59.37.193-20151119121808/@comment-26391992-20151122143533\nTalk:Asp Scout/@comment-212.59.37.193-20151119121808/@comment-27115814-20151120174906\nTalk:Asp Scout/@comment-212.59.37.193-20151119121808/@comment-27115814-20151207190327\nTalk:Asp Scout/@comment-212.59.37.193-20151119121808/@comment-77.7.187.201-20151121130352\nTalk:Asp Scout/@comment-2605:A000:161A:4494:C9E6:2329:A040:C4B5-20180712121417\nTalk:Asp Scout/@comment-26391992-20160309120544\nTalk:Asp Scout/@comment-26391992-20160309120544/@comment-192.136.174.152-20160309122531\nTalk:Asp Scout/@comment-26391992-20160309120544/@comment-37.201.193.125-20160326110950\nTalk:Asp Scout/@comment-27115814-20151112172518\nTalk:Asp Scout/@comment-27115814-20151120174954\nTalk:Asp Scout/@comment-33493166-20190812022141\nTalk:Asp Scout/@comment-37.201.191.239-20151114174441\nTalk:Asp Scout/@comment-37.201.191.239-20151114174441/@comment-212.59.37.193-20151120120453\nTalk:Asp Scout/@comment-37.201.191.239-20151114174441/@comment-37.201.193.125-20160326111822\nTalk:Asp Scout/@comment-37.201.191.239-20151114174441/@comment-71.233.88.91-20160616000119\nTalk:Asp Scout/@comment-67.139.51.110-20151023002020\nTalk:Asp Scout/@comment-67.139.51.110-20151023002020/@comment-151.225.213.103-20151027232719\nTalk:Asp Scout/@comment-67.139.51.110-20151023002020/@comment-27115814-20151027181031\nTalk:Asp Scout/@comment-67.139.51.110-20151023002020/@comment-27115814-20151030151211\nTalk:Asp Scout/@comment-67.139.51.110-20151023002020/@comment-71.233.88.91-20160616014533\nTalk:Asp Scout/@comment-67.139.51.110-20151023002020/@comment-73.151.104.224-20151101121346\nTalk:Asp Scout/@comment-73.1.55.15-20151116185520\nTalk:Asp Scout/@comment-73.1.55.15-20151116185520/@comment-73.1.55.15-20160109084324\nTalk:Asp Scout/@comment-78.233.125.224-20160103145452\nTalk:Asp Scout/@comment-78.233.125.224-20160103145452/@comment-143.81.103.35-20160121194148\nTalk:Asp Scout/@comment-78.233.125.224-20160103145452/@comment-67.11.244.118-20160117012140\nTalk:Asp Scout/@comment-78.233.125.224-20160103145452/@comment-9472148-20160203213014\nTalk:Asp Scout/@comment-78.233.125.224-20160103145452/@comment-99.237.37.136-20160215021501\nTalk:Asp Scout/@comment-81.139.192.2-20150918090234\nTalk:Asp Scout/@comment-81.139.192.2-20150918090234/@comment-156.3.54.204-20150918171412\nTalk:Asp Scout/@comment-81.139.192.2-20150918090234/@comment-70.177.9.11-20151008230225\nTalk:Asp Scout/@comment-81.139.192.2-20150918090234/@comment-73.1.55.15-20160109084618\nTalk:Asp Scout/@comment-84.247.138.189-20151108071637\nTalk:Asp Scout/@comment-84.247.138.189-20151108071637/@comment-101.183.242.79-20151210092150\nTalk:Asp Scout/@comment-84.247.138.189-20151108071637/@comment-73.151.104.224-20151109183817\nTalk:Asp Scout/@comment-84.247.138.189-20151108071637/@comment-82.148.166.90-20151207214521\nTalk:Asp Scout/@comment-92.239.222.180-20151226191139\nTalk:Asp Scout/@comment-95.90.240.212-20160317160141\nTalk:Asp Scout/@comment-95.90.240.212-20160317160141/@comment-2601:647:4C80:5690:3D7B:2158:1E57:2E4C-20170704234134\nTalk:Asp Scout/@comment-95.90.240.212-20160317160141/@comment-37.201.193.125-20160326110718\nTalk:Assassin/@comment-115.66.60.148-20150724141007\nTalk:Assassin/@comment-115.66.60.148-20150724141007/@comment-133748-20150724142033\nTalk:Assassin/@comment-115.66.60.148-20150724141007/@comment-26537865-20150804035356\nTalk:Assassin/@comment-115.66.60.148-20150724141007/@comment-50.201.158.110-20181017144013\nTalk:Assassin/@comment-115.66.60.148-20150724141007/@comment-83.31.108.72-20150811171714\nTalk:Assassin/@comment-120.20.1.25-20150720100807\nTalk:Assassin/@comment-120.20.1.25-20150720100807/@comment-133748-20150725031810\nTalk:Assassin/@comment-213.88.27.20-20150127171306\nTalk:Assassin/@comment-27315468-20151129135416\nTalk:Assassin/@comment-27315468-20151129135416/@comment-44787138-20200512115603\nTalk:Assassin/@comment-34641605-20180706212049\nTalk:Assassin/@comment-70.194.7.140-20150114005832\nTalk:Assassin/@comment-70.194.7.140-20150114005832/@comment-12138097-20150114013443\nTalk:Assassin/@comment-70.194.7.140-20150114005832/@comment-153.106.87.71-20150323182920\nTalk:Assassin/@comment-70.194.7.140-20150114005832/@comment-174.53.183.100-20150913183504\nTalk:Assassin/@comment-76.105.154.112-20160109095842\nTalk:Assassin/@comment-76.105.154.112-20160109095842/@comment-73.55.183.38-20160118161304\nTalk:Assassin/@comment-79.97.180.45-20150422225006\nTalk:Assassin/@comment-88.168.110.81-20150614195828\nTalk:Assassin/@comment-88.168.110.81-20150614195828/@comment-141.135.240.235-20170331222401\nTalk:Assassin/@comment-88.168.110.81-20150614195828/@comment-83.31.108.72-20150811171942\nTalk:Assassin/@comment-91.56.221.137-20150609192459\nTalk:Asteroid Base/@comment-106.154.20.98-20170418235911\nTalk:Asteroid Base/@comment-106.154.20.98-20170418235911/@comment-125.237.6.217-20170522082400\nTalk:Asteroid Base/@comment-106.154.38.63-20170415101546\nTalk:Asteroid Base/@comment-109.41.1.110-20181004075824\nTalk:Asteroid Base/@comment-109.41.1.110-20181004075824/@comment-75.147.8.109-20181210170116\nTalk:Asteroid Base/@comment-176.23.165.113-20170422210825\nTalk:Asteroid Base/@comment-176.23.165.113-20170422210825/@comment-176.23.165.113-20170422221803\nTalk:Asteroid Base/@comment-30496832-20170417235809\nTalk:Asteroid Base/@comment-30496832-20170417235809/@comment-108.173.199.63-20170418162111\nTalk:Asteroid Base/@comment-31942720-20170517182803\nTalk:Asteroid Base/@comment-31942720-20170517182803/@comment-192.136.161.52-20170518113432\nTalk:Asteroid Base/@comment-35650861-20180726151641\nTalk:Asteroid Base/@comment-37820584-20190512082603\nTalk:Asteroid Base/@comment-37820584-20190512082603/@comment-24.63.108.239-20190512121317\nTalk:Asteroid Base/@comment-5.86.187.118-20170415175729\nTalk:Asteroid Base/@comment-71.195.255.18-20171218080458\nTalk:Asteroid Base/@comment-79.199.64.10-20170423124239\nTalk:Asteroid Base/@comment-90.216.90.246-20170417092537\nTalk:Asteroid Base/@comment-96.2.150.188-20171204213854\nTalk:Asteroid Base/@comment-96.2.150.188-20171204220108\nTalk:Asteroid Miner/@comment-112.213.181.129-20190703100725\nTalk:Asteroid Miner/@comment-2601:280:8202:890:6150:FBF4:B01D:496B-20190701234814\nTalk:Asteroid Miner/@comment-2601:280:8202:890:6150:FBF4:B01D:496B-20190701234832\nTalk:Asteroid Miner/@comment-2601:280:8202:890:6150:FBF4:B01D:496B-20190701234850\nTalk:Atmospheric Landings/@comment-178.0.219.123-20180225025246\nTalk:Atmospheric Landings/@comment-193.172.253.22-20190205173652\nTalk:Atmospheric Landings/@comment-193.172.253.22-20190205173652/@comment-192.136.170.98-20190206211843\nTalk:Atmospheric Landings/@comment-217.169.61.164-20200108151316\nTalk:Atmospheric Landings/@comment-2607:FB90:4C37:258B:16FC:D3A0:B0CB:8DB1-20190828001932\nTalk:Atmospheric Landings/@comment-30669064-20200804211823\nTalk:Atmospheric Landings/@comment-33291897-20180222210908\nTalk:Atmospheric Landings/@comment-33493166-20200604034029\nTalk:Atmospheric Landings/@comment-37.113.227.110-20190125214248\nTalk:Atmospheric Landings/@comment-43495716-20200804220227\nTalk:Atmospheric Landings/@comment-45176657-20200604111124\nTalk:Atmospheric Landings/@comment-45677112-20200622175057\nTalk:Atmospheric Landings/@comment-65.32.140.69-20180318193844\nTalk:Atmospheric Landings/@comment-94.12.31.80-20170802000113\nTalk:Atmospheric Landings/@comment-94.12.31.80-20170802000113/@comment-86.3.178.138-20180922073909\nTalk:Atmospheric Landings/@comment-94.12.31.80-20170802000113/@comment-86.3.178.138-20180922073955\nTalk:Atmospheric Landings/@comment-94.12.31.80-20170802000113/@comment-94.54.100.211-20180812225324\nTalk:Atmospheric Processors/@comment-86.165.194.85-20160704180936\nTalk:Atypical Disrupted Wake Echoes/@comment-5151386-20170116222523\nTalk:Auto Field-Maintenance Unit/@comment-121.210.33.50-20180203141905\nTalk:Auto Field-Maintenance Unit/@comment-121.210.33.50-20180203141905/@comment-50.100.128.58-20180313214452\nTalk:Auto Field-Maintenance Unit/@comment-163.47.222.206-20141229023059\nTalk:Auto Field-Maintenance Unit/@comment-163.47.222.206-20141229023059/@comment-173.244.209.76-20170208101900\nTalk:Auto Field-Maintenance Unit/@comment-163.47.222.206-20141229023059/@comment-178.84.5.249-20150123213836\nTalk:Auto Field-Maintenance Unit/@comment-163.47.222.206-20141229023059/@comment-94.79.174.218-20150106160448\nTalk:Auto Field-Maintenance Unit/@comment-173.244.209.76-20170208100025\nTalk:Auto Field-Maintenance Unit/@comment-173.244.209.76-20170208100025/@comment-81.25.28.254-20180401164942\nTalk:Auto Field-Maintenance Unit/@comment-176.63.20.50-20160711183435\nTalk:Auto Field-Maintenance Unit/@comment-206.47.101.222-20151117190333\nTalk:Auto Field-Maintenance Unit/@comment-206.47.101.222-20151117190333/@comment-95.91.228.126-20160605141628\nTalk:Auto Field-Maintenance Unit/@comment-25450485-20150913121321\nTalk:Auto Field-Maintenance Unit/@comment-25450485-20150913121321/@comment-125.237.3.1-20161018070231\nTalk:Auto Field-Maintenance Unit/@comment-25450485-20150913121321/@comment-176.241.72.203-20190720172258\nTalk:Auto Field-Maintenance Unit/@comment-25450485-20150913121321/@comment-73.20.48.173-20170117044925\nTalk:Auto Field-Maintenance Unit/@comment-25450485-20150913121321/@comment-90.15.4.231-20170830101718\nTalk:Auto Field-Maintenance Unit/@comment-25916611-20141224041630\nTalk:Auto Field-Maintenance Unit/@comment-26391992-20151203213753\nTalk:Auto Field-Maintenance Unit/@comment-26391992-20151203213753/@comment-26391992-20160216224135\nTalk:Auto Field-Maintenance Unit/@comment-50.156.112.91-20150107044914\nTalk:Auto Field-Maintenance Unit/@comment-50.156.112.91-20150107044914/@comment-12.5.54.135-20151015145731\nTalk:Auto Field-Maintenance Unit/@comment-50.156.112.91-20150107044914/@comment-25450485-20151015215122\nTalk:Auto Field-Maintenance Unit/@comment-50.156.112.91-20150107044914/@comment-4968814-20150107185554\nTalk:Auto Field-Maintenance Unit/@comment-50.156.112.91-20150107044914/@comment-72.241.143.238-20150406090005\nTalk:Auto Field-Maintenance Unit/@comment-50.156.112.91-20150107044914/@comment-94.79.174.218-20150107071904\nTalk:Auto Field-Maintenance Unit/@comment-72.184.96.125-20160330230101\nTalk:Auto Field-Maintenance Unit/@comment-77.101.224.164-20141222152519\nTalk:Auto Field-Maintenance Unit/@comment-77.101.224.164-20141222152519/@comment-12138097-20150104062739\nTalk:Auto Field-Maintenance Unit/@comment-77.101.224.164-20141222152519/@comment-206.251.41.130-20150104023729\nTalk:Auto Field-Maintenance Unit/@comment-77.101.224.164-20141222152519/@comment-95.145.248.89-20150101010845\nTalk:Auto Field-Maintenance Unit/@comment-86.152.69.213-20150822134926\nTalk:Auto Field-Maintenance Unit/@comment-86.152.69.213-20150822134926/@comment-76.173.145.177-20150907015219\nTalk:Auto Field-Maintenance Unit/@comment-86.152.69.213-20150822134926/@comment-80.109.47.35-20160101203754\nTalk:Auto Field-Maintenance Unit/@comment-86.152.69.213-20150822134926/@comment-80.163.11.91-20160218161756\nTalk:Auto Field-Maintenance Unit/@comment-94.79.174.218-20150106160530\nTalk:Auto Field-Maintenance Unit/@comment-94.79.174.218-20150106160530/@comment-67.186.92.128-20150511062944\nTalk:Auto Field-Maintenance Unit/@comment-94.79.174.218-20150106161050\nTalk:Auto Field-Maintenance Unit/@comment-94.79.174.218-20150106161050/@comment-1250011-20150110001010\nTalk:Auto Field-Maintenance Unit/@comment-94.79.174.218-20150106161050/@comment-25992270-20150110123354\nTalk:Auto Field-Maintenance Unit/@comment-94.79.174.218-20150106161050/@comment-94.79.174.218-20150110000558\nTalk:Auto Field-Maintenance Unit/@comment-94.79.174.218-20150110001800\nTalk:Auto Field-Maintenance Unit/@comment-94.79.174.218-20150110001800/@comment-25992270-20150110142240\nTalk:Auto Field-Maintenance Unit/@comment-94.79.174.218-20150110161132\nTalk:Auto Field-Maintenance Unit/@comment-94.79.174.218-20150110161132/@comment-25992270-20150110161235\nTalk:Auto Loader/@comment-2001:5B0:4BD9:A5F0:0:FF:FEBD:63F2-20181014195314\nTalk:Auto Loader/@comment-2001:5B0:4BD9:A5F0:0:FF:FEBD:63F2-20181014195314/@comment-192.136.170.98-20181219182547\nTalk:Auto Loader/@comment-2001:5B0:4BD9:A5F0:0:FF:FEBD:63F2-20181014195314/@comment-90.200.49.195-20181219141559\nTalk:Auto Loader/@comment-87.140.82.191-20190326092752\nTalk:Automated Mining Extractor/@comment-104.184.108.56-20180613035030\nTalk:Automated Mining Extractor/@comment-2601:282:1080:4950:34F6:2A02:5A44:BEC3-20191201230328\nTalk:Automated Mining Extractor/@comment-39293979-20190428203825\nTalk:Automated Mining Extractor/@comment-91.115.122.133-20171021010122\nTalk:Automated Mining Extractor/@comment-93.185.17.212-20170610132956\nTalk:Automated Mining Extractor/@comment-93.185.17.212-20170610132956/@comment-203.7.83.88-20171011092101\nTalk:Automated Mining Extractor/@comment-93.185.17.212-20170610132956/@comment-76.25.66.137-20171120004543\nTalk:Automated Mining Extractor/@comment-93.185.17.212-20170610132956/@comment-87.128.14.118-20170816105927\nTalk:Azure Milk/@comment-2.96.163.98-20150226000623\nTalk:Azure Milk/@comment-2.96.163.98-20150226000623/@comment-147.194.22.179-20150227083353\nTalk:Azure Milk/@comment-71.83.162.87-20150302174621\nTalk:Azure Milk/@comment-77.50.26.143-20160814203440\nTalk:Background Simulation/@comment-184.145.125.101-20180611190012\nTalk:Background Simulation/@comment-78.194.13.113-20180730091413\nTalk:Background Simulation/@comment-85.26.234.172-20200115075046\nTalk:Background Simulation/@comment-93.175.160.25-20180223140908\nTalk:Background Simulation/@comment-93.175.160.25-20180223140908/@comment-2601:603:100:2127:85E4:7E76:FA03:5CF-20181106000442\nTalk:Bank of Zaonce/@comment-104.218.159.254-20180111213704\nTalk:Bank of Zaonce/@comment-2600:8801:882:1800:50B0:3B37:9B88:31CC-20200114214731\nTalk:Bank of Zaonce/@comment-78.72.31.223-20150408021346\nTalk:Bank of Zaonce/@comment-78.72.31.223-20150408021346/@comment-73.164.77.218-20170318160142\nTalk:Banki Amphibious Leather/@comment-65.51.205.72-20150414043204\nTalk:Bark Mound/@comment-2605:B100:135:FA19:901A:1666:7D3A:D034-20191005210042\nTalk:Barnabas Cole/@comment-185.116.112.76-20190329114322\nTalk:Barnacle Seeds/@comment-202.50.0.100-20160114190032\nTalk:Barnacle Seeds/@comment-202.50.0.100-20160114193144\nTalk:Barnacle Seeds/@comment-25411947-20160111223754\nTalk:Barnacle Seeds/@comment-25411947-20160111223754/@comment-202.50.5.100-20160112022941\nTalk:Barnacle Seeds/@comment-25411947-20160111223754/@comment-26009169-20160111224240\nTalk:Barnacle Seeds/@comment-26009169-20160110220425\nTalk:Barnacle Seeds/@comment-26009169-20160110220425/@comment-202.50.0.100-20160112183958\nTalk:Barnacle Seeds/@comment-26009169-20160110220425/@comment-202.50.5.100-20160110223656\nTalk:Barnacle Seeds/@comment-26009169-20160110220425/@comment-2155082-20160111042049\nTalk:Barnacle Seeds/@comment-26009169-20160110220425/@comment-26009169-20160110234106\nTalk:Barnacle Seeds/@comment-26009169-20160110220425/@comment-60.240.208.159-20160112092634\nTalk:Barnacle Seeds/@comment-26009169-20160110220425/@comment-60.240.208.159-20160112092849\nTalk:Barnard's Loop/@comment-6120634-20190716165543\nTalk:Basic Conductors/@comment-96.22.114.180-20180105181755\nTalk:Basic Conductors/@comment-96.22.114.180-20180105181849\nTalk:Basic Medicines/@comment-108.242.216.67-20150408185436\nTalk:Bast Snake Gin/@comment-98.127.122.221-20150218214810\nTalk:Bast Snake Gin/@comment-98.127.122.221-20150218214810/@comment-12138097-20150218222102\nTalk:Battle Weapons/@comment-181.194.163.16-20160101005920\nTalk:Battle Weapons/@comment-76.178.23.25-20150308165447\nTalk:Battle Weapons/@comment-76.178.23.25-20150308165447/@comment-76.178.23.25-20150308165638\nTalk:Battlecruiser/@comment-92.110.130.51-20190124233617\nTalk:Battlecruiser/@comment-92.110.130.51-20190124233617/@comment-92.110.130.51-20190124233747\nTalk:Beagle Point/@comment-2001:8003:5280:E200:9962:2707:C4A3:25D1-20190124050719\nTalk:Beagle Point/@comment-26894595-20170317200543\nTalk:Beagle Point/@comment-26894595-20170317200543/@comment-24.159.216.8-20170523162305\nTalk:Beagle Point/@comment-26894595-20170317200543/@comment-30928085-20170317203730\nTalk:Beagle Point/@comment-31178037-20170514171152\nTalk:Beagle Point/@comment-31178037-20170514171152/@comment-110.151.42.219-20181204213711\nTalk:Beagle Point/@comment-31178037-20170514171152/@comment-148.71.59.180-20190321162950\nTalk:Beagle Point/@comment-90.200.46.38-20181204235926\nTalk:Beagle Point/@comment-90.200.46.38-20181204235926/@comment-148.71.59.180-20190321162634\nTalk:Beam Laser/@comment-104.169.233.222-20151204114256\nTalk:Beam Laser/@comment-104.169.233.222-20151204114256/@comment-104.169.233.222-20151204114728\nTalk:Beam Laser/@comment-108.183.183.195-20150917203312\nTalk:Beam Laser/@comment-108.28.154.137-20150614231206\nTalk:Beam Laser/@comment-108.28.154.137-20150614231206/@comment-209.33.126.70-20150628041556\nTalk:Beam Laser/@comment-108.41.120.242-20151025020738\nTalk:Beam Laser/@comment-108.45.67.253-20160122172205\nTalk:Beam Laser/@comment-109.20.181.247-20150903100827\nTalk:Beam Laser/@comment-109.20.181.247-20150903100827/@comment-121.210.244.147-20150903114059\nTalk:Beam Laser/@comment-109.20.181.247-20150903100827/@comment-121.210.244.147-20150903212145\nTalk:Beam Laser/@comment-109.20.181.247-20150905112146\nTalk:Beam Laser/@comment-121.210.244.147-20150903212352\nTalk:Beam Laser/@comment-121.210.244.147-20150903212352/@comment-26987253-20150914223955\nTalk:Beam Laser/@comment-121.210.244.147-20150903212352/@comment-95.90.231.188-20150909084046\nTalk:Beam Laser/@comment-145.132.121.77-20150524204247\nTalk:Beam Laser/@comment-145.132.121.77-20150524204247/@comment-88.89.154.155-20150526055518\nTalk:Beam Laser/@comment-15.203.233.79-20150425110340\nTalk:Beam Laser/@comment-15.203.233.79-20150425114409\nTalk:Beam Laser/@comment-15.203.233.79-20150425114409/@comment-26009169-20150425121357\nTalk:Beam Laser/@comment-156.3.54.203-20150501145828\nTalk:Beam Laser/@comment-156.3.54.203-20150501145828/@comment-24503385-20150501151132\nTalk:Beam Laser/@comment-173.69.154.83-20170107163206\nTalk:Beam Laser/@comment-173.69.154.83-20170107163206/@comment-71.190.237.174-20170430202711\nTalk:Beam Laser/@comment-174.64.6.239-20150528191408\nTalk:Beam Laser/@comment-174.64.6.239-20150528191408/@comment-174.64.107.110-20150529191032\nTalk:Beam Laser/@comment-174.64.6.239-20150528191408/@comment-26362216-20150531221033\nTalk:Beam Laser/@comment-174.64.6.239-20150528191408/@comment-99.20.89.243-20150529054707\nTalk:Beam Laser/@comment-176.14.163.205-20150404103618\nTalk:Beam Laser/@comment-176.14.163.205-20150404103618/@comment-178.36.71.91-20150411161732\nTalk:Beam Laser/@comment-176.14.163.205-20150404103618/@comment-178.36.71.91-20150411162635\nTalk:Beam Laser/@comment-176.14.163.205-20150404103618/@comment-212.50.133.62-20150406165742\nTalk:Beam Laser/@comment-176.14.163.205-20150404103618/@comment-212.50.133.62-20150406174849\nTalk:Beam Laser/@comment-176.14.163.205-20150404103618/@comment-6493589-20150408223021\nTalk:Beam Laser/@comment-176.14.163.205-20150404103618/@comment-78.99.60.58-20150404132455\nTalk:Beam Laser/@comment-178.68.11.190-20150818175847\nTalk:Beam Laser/@comment-178.68.11.190-20150818175847/@comment-46.188.29.119-20150819122446\nTalk:Beam Laser/@comment-184.91.189.54-20150605011520\nTalk:Beam Laser/@comment-184.91.189.54-20150605011520/@comment-74.142.61.244-20150608233445\nTalk:Beam Laser/@comment-188.2.22.207-20180130154519\nTalk:Beam Laser/@comment-2.103.144.83-20150731001139\nTalk:Beam Laser/@comment-2.110.92.78-20151024155211\nTalk:Beam Laser/@comment-2.229.133.34-20150514205534\nTalk:Beam Laser/@comment-2003:DB:F70F:D6FE:51B3:393:A44E:B808-20200201202058\nTalk:Beam Laser/@comment-205.222.248.112-20141218134648\nTalk:Beam Laser/@comment-205.222.248.112-20141218134648/@comment-24.243.61.132-20141231032222\nTalk:Beam Laser/@comment-205.222.248.112-20141218134648/@comment-73.190.240.3-20141218195318\nTalk:Beam Laser/@comment-205.222.248.112-20141218134648/@comment-88.112.91.114-20141228163952\nTalk:Beam Laser/@comment-205.222.248.112-20141218134648/@comment-90.222.86.59-20150111015114\nTalk:Beam Laser/@comment-205.222.248.112-20141218134648/@comment-90.222.86.59-20150111015248\nTalk:Beam Laser/@comment-211.28.46.54-20150913040213\nTalk:Beam Laser/@comment-211.28.46.54-20150913040213/@comment-220.244.4.162-20150914002044\nTalk:Beam Laser/@comment-211.28.46.54-20150913040213/@comment-88.106.92.130-20150913140533\nTalk:Beam Laser/@comment-211.28.46.54-20150916041355\nTalk:Beam Laser/@comment-217.121.233.136-20141231202135\nTalk:Beam Laser/@comment-217.149.117.196-20160528165151\nTalk:Beam Laser/@comment-217.149.117.196-20160528165151/@comment-5.186.113.251-20160603191732\nTalk:Beam Laser/@comment-217.149.117.196-20160528165151/@comment-62.24.73.137-20160529174652\nTalk:Beam Laser/@comment-219.75.109.224-20150629191748\nTalk:Beam Laser/@comment-219.75.109.224-20150629191748/@comment-65.184.226.110-20150702070605\nTalk:Beam Laser/@comment-219.75.109.224-20150629191748/@comment-65.184.226.110-20150702181859\nTalk:Beam Laser/@comment-23.233.163.16-20150731085559\nTalk:Beam Laser/@comment-24.143.228.149-20150609013407\nTalk:Beam Laser/@comment-24.143.228.149-20150609013407/@comment-77.232.154.230-20150612192237\nTalk:Beam Laser/@comment-24.143.228.149-20150609013407/@comment-86.153.62.21-20150609191152\nTalk:Beam Laser/@comment-24.96.161.57-20150915061130\nTalk:Beam Laser/@comment-25450485-20170925094816\nTalk:Beam Laser/@comment-25450485-20170925094816/@comment-90.216.211.211-20171020183947\nTalk:Beam Laser/@comment-25992270-20150201232708\nTalk:Beam Laser/@comment-25992270-20150201232708/@comment-163.244.62.181-20150226085938\nTalk:Beam Laser/@comment-25992270-20150201232708/@comment-92.201.72.6-20150215105813\nTalk:Beam Laser/@comment-25992270-20150201232708/@comment-92.201.72.6-20150215112946\nTalk:Beam Laser/@comment-26005414-20150307222657\nTalk:Beam Laser/@comment-26306474-20150426220544\nTalk:Beam Laser/@comment-26306474-20150426220544/@comment-24503385-20150427205224\nTalk:Beam Laser/@comment-26306474-20150426220544/@comment-26306474-20150430135911\nTalk:Beam Laser/@comment-26491069-20150813143620\nTalk:Beam Laser/@comment-26491069-20150813143620/@comment-90.154.74.53-20150815114837\nTalk:Beam Laser/@comment-26599825-20150722131012\nTalk:Beam Laser/@comment-26599825-20150722131012/@comment-67.172.222.141-20150722202759\nTalk:Beam Laser/@comment-26987253-20150914223914\nTalk:Beam Laser/@comment-26987253-20150915115024\nTalk:Beam Laser/@comment-26987253-20150915131447\nTalk:Beam Laser/@comment-26987253-20151011125635\nTalk:Beam Laser/@comment-27653351-20160124013547\nTalk:Beam Laser/@comment-27653351-20160124013547/@comment-67.242.45.244-20160401091424\nTalk:Beam Laser/@comment-37.204.69.132-20150802154822\nTalk:Beam Laser/@comment-37.204.69.132-20150802154822/@comment-37.204.69.132-20150802213649\nTalk:Beam Laser/@comment-37.204.69.132-20150803181900\nTalk:Beam Laser/@comment-37.204.69.132-20150803181900/@comment-75.129.153.72-20150808030110\nTalk:Beam Laser/@comment-64.113.173.176-20150327224415\nTalk:Beam Laser/@comment-64.113.173.176-20150327224415/@comment-73.174.241.48-20150423055507\nTalk:Beam Laser/@comment-64.113.173.176-20150327224415/@comment-80.1.60.38-20150406215510\nTalk:Beam Laser/@comment-65.185.51.78-20150903000110\nTalk:Beam Laser/@comment-65.185.51.78-20150927095326\nTalk:Beam Laser/@comment-65.60.207.30-20150403025835\nTalk:Beam Laser/@comment-65.60.207.30-20150403025835/@comment-65.60.207.30-20150403025928\nTalk:Beam Laser/@comment-66.189.14.112-20150402225631\nTalk:Beam Laser/@comment-67.172.222.141-20150704044554\nTalk:Beam Laser/@comment-67.172.222.141-20150704044554/@comment-76.105.18.86-20150722060833\nTalk:Beam Laser/@comment-67.174.149.152-20150809060634\nTalk:Beam Laser/@comment-67.174.149.152-20150809060634/@comment-67.174.149.152-20150809060749\nTalk:Beam Laser/@comment-67.50.129.194-20150404073448\nTalk:Beam Laser/@comment-67.50.129.194-20150404073448/@comment-178.36.71.91-20150411164510\nTalk:Beam Laser/@comment-68.0.162.175-20151006065044\nTalk:Beam Laser/@comment-68.150.167.0-20151122021257\nTalk:Beam Laser/@comment-68.150.167.0-20151122021257/@comment-63.64.75.10-20151210213222\nTalk:Beam Laser/@comment-68.226.6.218-20150517010635\nTalk:Beam Laser/@comment-68.226.6.218-20150517010635/@comment-184.91.189.54-20150520053718\nTalk:Beam Laser/@comment-68.226.6.218-20150517010635/@comment-58.179.244.13-20150517134139\nTalk:Beam Laser/@comment-68.226.6.218-20150517010635/@comment-62.63.58.186-20150526093153\nTalk:Beam Laser/@comment-68.226.6.218-20150517010635/@comment-62.63.58.186-20150526095521\nTalk:Beam Laser/@comment-68.226.6.218-20150517010635/@comment-68.226.6.218-20150523004725\nTalk:Beam Laser/@comment-68.52.237.102-20150816051856\nTalk:Beam Laser/@comment-68.52.237.102-20150816051856/@comment-68.52.237.102-20150816075815\nTalk:Beam Laser/@comment-71.108.37.140-20150701024623\nTalk:Beam Laser/@comment-71.108.37.140-20150701024623/@comment-71.108.37.140-20150703060817\nTalk:Beam Laser/@comment-71.108.37.140-20150701024623/@comment-85.224.255.58-20150702140611\nTalk:Beam Laser/@comment-71.145.207.43-20150710060731\nTalk:Beam Laser/@comment-71.145.207.43-20150710060731/@comment-67.177.33.248-20150722195004\nTalk:Beam Laser/@comment-71.145.207.43-20150710060731/@comment-71.145.207.43-20150710060758\nTalk:Beam Laser/@comment-71.190.237.174-20170430202017\nTalk:Beam Laser/@comment-71.190.237.174-20170430202017/@comment-71.190.237.174-20170430212219\nTalk:Beam Laser/@comment-71.196.203.39-20150418081224\nTalk:Beam Laser/@comment-71.244.203.231-20150609230215\nTalk:Beam Laser/@comment-71.244.203.231-20150611214909\nTalk:Beam Laser/@comment-71.244.203.231-20150611214909/@comment-77.232.154.230-20150612192158\nTalk:Beam Laser/@comment-71.244.203.231-20150611214909/@comment-87.188.84.216-20150624165459\nTalk:Beam Laser/@comment-71.76.244.78-20150703011842\nTalk:Beam Laser/@comment-71.76.244.78-20150703011842/@comment-86.181.22.127-20150726080900\nTalk:Beam Laser/@comment-75.121.234.163-20150625060700\nTalk:Beam Laser/@comment-75.82.55.51-20150526052639\nTalk:Beam Laser/@comment-75.82.55.51-20150526052639/@comment-213.129.33.126-20150529141359\nTalk:Beam Laser/@comment-76.11.181.225-20151004071703\nTalk:Beam Laser/@comment-79.132.122.225-20150516110718\nTalk:Beam Laser/@comment-79.132.122.225-20150516110718/@comment-58.179.244.13-20150517131729\nTalk:Beam Laser/@comment-81.18.252.166-20150113105344\nTalk:Beam Laser/@comment-81.18.252.166-20150113105344/@comment-12138097-20150113112024\nTalk:Beam Laser/@comment-81.18.252.166-20150113105344/@comment-207.62.149.111-20150308062032\nTalk:Beam Laser/@comment-82.3.206.100-20150430074241\nTalk:Beam Laser/@comment-82.3.206.100-20150430074241/@comment-82.20.100.207-20150503141441\nTalk:Beam Laser/@comment-84.153.86.155-20150930173643\nTalk:Beam Laser/@comment-86.151.241.145-20150927145511\nTalk:Beam Laser/@comment-86.153.62.21-20150609203030\nTalk:Beam Laser/@comment-86.18.29.251-20150106151250\nTalk:Beam Laser/@comment-86.6.157.60-20150217112201\nTalk:Beam Laser/@comment-86.6.157.60-20150217112201/@comment-184.14.108.121-20150218232455\nTalk:Beam Laser/@comment-88.149.170.67-20150604013454\nTalk:Beam Laser/@comment-88.149.170.67-20150604013454/@comment-24.143.228.149-20150609011200\nTalk:Beam Laser/@comment-88.149.170.67-20150604013454/@comment-24.143.228.149-20150609011256\nTalk:Beam Laser/@comment-88.149.170.67-20150604013454/@comment-88.149.170.67-20150604013623\nTalk:Beam Laser/@comment-88.85.155.146-20150514123932\nTalk:Beam Laser/@comment-89.103.163.33-20150503153919\nTalk:Beam Laser/@comment-90.200.46.38-20181129222143\nTalk:Beam Laser/@comment-90.25.15.29-20150531194237\nTalk:Beam Laser/@comment-90.25.15.29-20150531194237/@comment-108.28.154.137-20150614002309\nTalk:Beam Laser/@comment-90.25.15.29-20150531194237/@comment-108.28.154.137-20150614002507\nTalk:Beam Laser/@comment-90.25.15.29-20150531194237/@comment-128.79.38.16-20150601194930\nTalk:Beam Laser/@comment-90.25.15.29-20150531194237/@comment-26362216-20150531225935\nTalk:Beam Laser/@comment-90.61.228.242-20150923231319\nTalk:Beam Laser/@comment-91.138.15.112-20150228233807\nTalk:Beam Laser/@comment-91.138.15.112-20150228233807/@comment-26177258-20150307011300\nTalk:Beam Laser/@comment-91.144.199.135-20150317102418\nTalk:Beam Laser/@comment-91.144.199.135-20150317102418/@comment-174.93.58.169-20150322080202\nTalk:Beam Laser/@comment-93.80.116.108-20150401202251\nTalk:Beam Laser/@comment-94.12.31.80-20170722145014\nTalk:Beam Laser/@comment-95.146.130.198-20151003211208\nTalk:Beam Laser/@comment-95.55.242.253-20150823091752\nTalk:Beam Laser/@comment-95.70.128.114-20190910123901\nTalk:Beam Laser/@comment-95.70.128.114-20190910123901/@comment-90.194.227.248-20190921221340\nTalk:Beam Laser/@comment-97.84.102.143-20150828114148\nTalk:Beam Laser/@comment-97.84.102.143-20150828114148/@comment-108.45.143.20-20150829110704\nTalk:Beam Laser/@comment-97.84.102.143-20150828114148/@comment-108.45.143.20-20150829220658\nTalk:Beam Laser/@comment-97.84.102.143-20150828114148/@comment-65.185.51.78-20150902073118\nTalk:Beam Laser/@comment-99.192.113.251-20150901172752\nTalk:Beer/@comment-156.3.54.203-20150909190001\nTalk:Beer/@comment-156.3.54.203-20150909190001/@comment-69.11.148.224-20160218044503\nTalk:Beer/@comment-156.3.54.203-20150909190001/@comment-95.91.228.199-20160623135451\nTalk:Belalans Ray Leather/@comment-77.50.26.143-20160814212141\nTalk:Bell Mollusc/@comment-32455860-20190505015302\nTalk:Beluga Liner/@comment-101.184.150.174-20160112030455\nTalk:Beluga Liner/@comment-101.184.150.174-20160112030455/@comment-192.136.172.239-20160210213334\nTalk:Beluga Liner/@comment-101.184.150.174-20160112030455/@comment-77.116.150.167-20160117161059\nTalk:Beluga Liner/@comment-101.184.150.174-20160112030455/@comment-95.148.174.33-20160205161126\nTalk:Beluga Liner/@comment-103.241.58.155-20150915035916\nTalk:Beluga Liner/@comment-103.241.58.155-20150915035916/@comment-156.3.54.203-20150915154432\nTalk:Beluga Liner/@comment-103.241.58.155-20150915035916/@comment-26391992-20150920142148\nTalk:Beluga Liner/@comment-103.241.58.155-20150915035916/@comment-50.73.242.166-20150922132412\nTalk:Beluga Liner/@comment-105.228.19.28-20160827190105\nTalk:Beluga Liner/@comment-108.209.190.156-20161019030446\nTalk:Beluga Liner/@comment-108.209.190.156-20161019030446/@comment-188.238.167.43-20161020132312\nTalk:Beluga Liner/@comment-108.209.190.156-20161019030446/@comment-84.119.93.33-20161027170104\nTalk:Beluga Liner/@comment-109.158.171.171-20160819114449\nTalk:Beluga Liner/@comment-109.252.110.164-20180115093245\nTalk:Beluga Liner/@comment-109.90.41.181-20161026134647\nTalk:Beluga Liner/@comment-109.90.41.181-20161026134647/@comment-206.75.19.54-20161102043736\nTalk:Beluga Liner/@comment-109.90.41.181-20161026134647/@comment-79.73.49.136-20161108104854\nTalk:Beluga Liner/@comment-114.198.15.81-20161112092831\nTalk:Beluga Liner/@comment-114.198.15.81-20161112092831/@comment-5959508-20170122112403\nTalk:Beluga Liner/@comment-120.144.54.250-20151015035648\nTalk:Beluga Liner/@comment-130.234.178.99-20170517022308\nTalk:Beluga Liner/@comment-130.234.178.99-20170517022308/@comment-192.195.66.3-20171003193113\nTalk:Beluga Liner/@comment-156.3.54.203-20150430145930\nTalk:Beluga Liner/@comment-161.97.140.8-20180305170406\nTalk:Beluga Liner/@comment-161.97.140.8-20180305170406/@comment-194.118.242.67-20180615092231\nTalk:Beluga Liner/@comment-161.97.140.8-20180305170406/@comment-194.118.242.67-20180615193018\nTalk:Beluga Liner/@comment-161.97.140.8-20180305170406/@comment-25527827-20180615225006\nTalk:Beluga Liner/@comment-176.221.77.250-20171228110159\nTalk:Beluga Liner/@comment-178.197.227.1-20170126152325\nTalk:Beluga Liner/@comment-178.197.227.1-20170126152325/@comment-5959508-20170126171059\nTalk:Beluga Liner/@comment-178.197.227.1-20170126152325/@comment-93.106.31.186-20170126153139\nTalk:Beluga Liner/@comment-188.238.155.231-20161029104922\nTalk:Beluga Liner/@comment-188.238.155.231-20161029104922/@comment-188.238.155.36-20161219181029\nTalk:Beluga Liner/@comment-188.238.155.231-20161029104922/@comment-28774381-20161216221001\nTalk:Beluga Liner/@comment-188.238.245.196-20160920150941\nTalk:Beluga Liner/@comment-188.238.245.196-20160920150941/@comment-159.224.131.168-20160920222150\nTalk:Beluga Liner/@comment-188.238.245.196-20160920150941/@comment-188.238.245.196-20160920175443\nTalk:Beluga Liner/@comment-188.238.245.196-20160920150941/@comment-208.180.216.168-20160920154815\nTalk:Beluga Liner/@comment-188.238.245.196-20160920150941/@comment-70.191.176.34-20160920155530\nTalk:Beluga Liner/@comment-192.136.161.248-20160818105425\nTalk:Beluga Liner/@comment-192.136.161.248-20160818105425/@comment-192.136.161.248-20160818191549\nTalk:Beluga Liner/@comment-192.136.161.248-20160818105425/@comment-27032150-20160818110350\nTalk:Beluga Liner/@comment-192.136.161.248-20160820195932\nTalk:Beluga Liner/@comment-192.136.161.248-20160820195932/@comment-109.158.171.171-20160825082657\nTalk:Beluga Liner/@comment-192.136.161.248-20160820195932/@comment-159.45.186.47-20160821175220\nTalk:Beluga Liner/@comment-192.136.161.248-20160820195932/@comment-202.59.241.67-20160824005812\nTalk:Beluga Liner/@comment-192.136.161.248-20160820195932/@comment-82.125.95.178-20160824131016\nTalk:Beluga Liner/@comment-192.136.161.248-20160820195932/@comment-85.247.81.152-20160820203111\nTalk:Beluga Liner/@comment-192.136.161.248-20160820195932/@comment-93.106.54.51-20160826103055\nTalk:Beluga Liner/@comment-192.136.161.33-20171117133755\nTalk:Beluga Liner/@comment-192.136.161.52-20161129121721\nTalk:Beluga Liner/@comment-192.136.161.52-20161129121721/@comment-192.136.161.52-20161129213553\nTalk:Beluga Liner/@comment-192.136.161.52-20161129121721/@comment-2155082-20161129181024\nTalk:Beluga Liner/@comment-192.182.136.100-20150603052816\nTalk:Beluga Liner/@comment-192.182.136.100-20150603052816/@comment-90.221.134.174-20150607012701\nTalk:Beluga Liner/@comment-193.128.72.93-20150324095925\nTalk:Beluga Liner/@comment-194.118.242.67-20180615225540\nTalk:Beluga Liner/@comment-202.50.5.100-20160830050042\nTalk:Beluga Liner/@comment-204.69.139.17-20180515152740\nTalk:Beluga Liner/@comment-204.69.139.17-20180515152740/@comment-90.200.46.38-20181030182130\nTalk:Beluga Liner/@comment-209.183.240.226-20180129195247\nTalk:Beluga Liner/@comment-217.121.218.161-20150611091512\nTalk:Beluga Liner/@comment-217.121.218.161-20150611091512/@comment-26116574-20150810181601\nTalk:Beluga Liner/@comment-24.183.224.105-20180507030510\nTalk:Beluga Liner/@comment-24.183.224.105-20180507030510/@comment-192.136.161.33-20180507033720\nTalk:Beluga Liner/@comment-24.183.224.105-20180507030510/@comment-192.136.161.33-20180511130830\nTalk:Beluga Liner/@comment-24.183.224.105-20180507030510/@comment-6187938-20180510200203\nTalk:Beluga Liner/@comment-24.183.224.105-20180507030510/@comment-66.168.158.38-20180603193302\nTalk:Beluga Liner/@comment-2600:6C67:487F:EC06:1CD1:AC42:10EA:EF88-20190430091911\nTalk:Beluga Liner/@comment-2600:6C67:487F:EC06:1CD1:AC42:10EA:EF88-20190430091911/@comment-6187938-20190531184938\nTalk:Beluga Liner/@comment-26044922-20150126070630\nTalk:Beluga Liner/@comment-26044922-20150126070630/@comment-203.217.30.55-20150202001036\nTalk:Beluga Liner/@comment-26044922-20150126070630/@comment-71.114.98.189-20150128171304\nTalk:Beluga Liner/@comment-26044922-20150126070630/@comment-75.190.165.103-20150415212945\nTalk:Beluga Liner/@comment-26044922-20150126070630/@comment-75.190.165.103-20150415213554\nTalk:Beluga Liner/@comment-26044922-20150126070630/@comment-90.198.69.26-20150207135657\nTalk:Beluga Liner/@comment-2606:A000:FBC7:100:7D7D:2216:4F1C:538B-20180712163209\nTalk:Beluga Liner/@comment-26391992-20160309142920\nTalk:Beluga Liner/@comment-26391992-20160309142920/@comment-26391992-20160309234103\nTalk:Beluga Liner/@comment-26391992-20160310092346\nTalk:Beluga Liner/@comment-27034370-20161114064457\nTalk:Beluga Liner/@comment-27034370-20161114064457/@comment-149.101.37.2-20170425230009\nTalk:Beluga Liner/@comment-27034370-20161114064457/@comment-5959508-20170122111839\nTalk:Beluga Liner/@comment-27034370-20161114064457/@comment-85.166.79.119-20161201131548\nTalk:Beluga Liner/@comment-27511717-20160104040701\nTalk:Beluga Liner/@comment-27511717-20160104040701/@comment-174.95.73.33-20160114050919\nTalk:Beluga Liner/@comment-29418959-20160829003813\nTalk:Beluga Liner/@comment-2A01:C50E:5115:3700:983B:1843:168:3952-20181101171552\nTalk:Beluga Liner/@comment-2A01:C50E:5115:3700:983B:1843:168:3952-20181101171552/@comment-192.136.170.98-20190115042444\nTalk:Beluga Liner/@comment-2A01:C50E:5115:3700:983B:1843:168:3952-20181101171552/@comment-24.159.43.54-20190115003449\nTalk:Beluga Liner/@comment-2A01:C50E:5115:3700:983B:1843:168:3952-20181101171552/@comment-6187938-20181101183236\nTalk:Beluga Liner/@comment-31.134.139.98-20161025221534\nTalk:Beluga Liner/@comment-31.134.139.98-20161025221559\nTalk:Beluga Liner/@comment-31.134.139.98-20161025221559/@comment-5959508-20170122113249\nTalk:Beluga Liner/@comment-31.164.5.154-20161031133308\nTalk:Beluga Liner/@comment-31.164.5.154-20161031133308/@comment-188.238.187.9-20161031153621\nTalk:Beluga Liner/@comment-31699422-20170408222317\nTalk:Beluga Liner/@comment-31748409-20170415171824\nTalk:Beluga Liner/@comment-31748409-20170415171824/@comment-188.238.189.126-20170501180801\nTalk:Beluga Liner/@comment-31748409-20170415171824/@comment-82.237.248.209-20170917131914\nTalk:Beluga Liner/@comment-50.25.172.77-20161104012409\nTalk:Beluga Liner/@comment-50.25.172.77-20161104012409/@comment-5959508-20170122113044\nTalk:Beluga Liner/@comment-50.25.172.77-20161104012409/@comment-79.73.49.136-20161108104808\nTalk:Beluga Liner/@comment-50.25.172.77-20161104012409/@comment-93.106.202.73-20161108192939\nTalk:Beluga Liner/@comment-50.53.178.6-20161108195826\nTalk:Beluga Liner/@comment-50.53.178.6-20161108195826/@comment-73.205.52.98-20170120123710\nTalk:Beluga Liner/@comment-50.73.242.166-20150922131937\nTalk:Beluga Liner/@comment-50.73.242.166-20150922131937/@comment-15.203.169.125-20151209172538\nTalk:Beluga Liner/@comment-50.73.242.166-20150922131937/@comment-156.3.54.206-20150928182802\nTalk:Beluga Liner/@comment-50.73.242.166-20150922131937/@comment-27153665-20151111001529\nTalk:Beluga Liner/@comment-50.73.242.166-20150922131937/@comment-99.135.98.174-20160118042634\nTalk:Beluga Liner/@comment-5744735-20160913193505\nTalk:Beluga Liner/@comment-5744735-20160913193505/@comment-93.106.195.224-20160914213923\nTalk:Beluga Liner/@comment-5959508-20170129161959\nTalk:Beluga Liner/@comment-6187938-20180410172106\nTalk:Beluga Liner/@comment-6187938-20180410172106/@comment-24.183.224.105-20180507030222\nTalk:Beluga Liner/@comment-6187938-20180410172106/@comment-33936523-20180417222308\nTalk:Beluga Liner/@comment-6187938-20180627180441\nTalk:Beluga Liner/@comment-6187938-20190524210526\nTalk:Beluga Liner/@comment-6187938-20190524210526/@comment-2602:306:CE29:B0D0:D843:E477:F58:DA4C-20190927074741\nTalk:Beluga Liner/@comment-64.106.111.22-20150305063158\nTalk:Beluga Liner/@comment-64.106.111.22-20150305063158/@comment-25490957-20150319161250\nTalk:Beluga Liner/@comment-64.106.111.22-20150305063158/@comment-5.81.250.3-20150405161418\nTalk:Beluga Liner/@comment-64.20.68.125-20160915145148\nTalk:Beluga Liner/@comment-64.20.68.125-20160915145148/@comment-27032150-20160915153516\nTalk:Beluga Liner/@comment-66.191.249.64-20170307141835\nTalk:Beluga Liner/@comment-66.191.249.64-20170307141835/@comment-150.208.129.188-20170426141227\nTalk:Beluga Liner/@comment-66.191.249.64-20170307141835/@comment-209.183.240.226-20180129195357\nTalk:Beluga Liner/@comment-68.36.105.230-20160819082735\nTalk:Beluga Liner/@comment-68.36.105.230-20160819082735/@comment-99.254.2.135-20160820015930\nTalk:Beluga Liner/@comment-69.120.80.62-20161029210828\nTalk:Beluga Liner/@comment-69.120.80.62-20161029210828/@comment-5959508-20170122113029\nTalk:Beluga Liner/@comment-71.185.28.177-20150706221042\nTalk:Beluga Liner/@comment-71.82.56.17-20160920160323\nTalk:Beluga Liner/@comment-71.82.56.17-20160920160323/@comment-122.58.55.245-20160922075811\nTalk:Beluga Liner/@comment-71.82.56.17-20160920160323/@comment-178.203.233.162-20160921211446\nTalk:Beluga Liner/@comment-71.82.56.17-20160920160323/@comment-50.180.208.252-20160921051346\nTalk:Beluga Liner/@comment-71.82.56.17-20160920160323/@comment-5959508-20170122113652\nTalk:Beluga Liner/@comment-71.82.56.17-20160920160323/@comment-99.135.98.174-20160925010639\nTalk:Beluga Liner/@comment-72.50.160.247-20150418033705\nTalk:Beluga Liner/@comment-72.71.205.88-20150208081435\nTalk:Beluga Liner/@comment-76.125.199.162-20150418015236\nTalk:Beluga Liner/@comment-79.219.99.178-20161108133728\nTalk:Beluga Liner/@comment-82.35.148.35-20161114171533\nTalk:Beluga Liner/@comment-82.35.148.35-20161114171533/@comment-73.205.52.98-20170120123604\nTalk:Beluga Liner/@comment-82.35.148.35-20161114171533/@comment-84.192.97.75-20161119194731\nTalk:Beluga Liner/@comment-86.20.205.11-20160920163845\nTalk:Beluga Liner/@comment-86.20.205.11-20160920163845/@comment-188.238.155.231-20161029114613\nTalk:Beluga Liner/@comment-86.20.205.11-20160920163845/@comment-188.238.167.43-20161020150812\nTalk:Beluga Liner/@comment-86.20.205.11-20160920163845/@comment-188.238.182.141-20160922101832\nTalk:Beluga Liner/@comment-86.20.205.11-20160920163845/@comment-188.238.182.141-20160922144412\nTalk:Beluga Liner/@comment-86.20.205.11-20160920163845/@comment-192.136.161.156-20160922125632\nTalk:Beluga Liner/@comment-86.20.205.11-20160920163845/@comment-192.136.161.156-20160922144737\nTalk:Beluga Liner/@comment-86.20.205.11-20160920163845/@comment-93.106.105.88-20160926131515\nTalk:Beluga Liner/@comment-87.181.126.140-20161026233527\nTalk:Beluga Liner/@comment-90.5.182.122-20160903224158\nTalk:Beluga Liner/@comment-92.22.226.247-20151125231518\nTalk:Beluga Liner/@comment-92.22.226.247-20151125231518/@comment-27115814-20151203192103\nTalk:Beluga Liner/@comment-95.220.110.113-20150704172418\nTalk:Beluga Liner/@comment-95.91.228.78-20160308065537\nTalk:Beluga Liner/@comment-98.15.171.123-20150603102115\nTalk:Benitoite/@comment-2600:8801:2280:1053:788E:64AE:A120:52B9-20190220214525\nTalk:Benitoite/@comment-2600:8801:2280:1053:788E:64AE:A120:52B9-20190220214525/@comment-2600:1700:4E30:4010:6155:7E91:E682:4105-20190518093305\nTalk:Benitoite/@comment-2600:8801:2280:1053:788E:64AE:A120:52B9-20190220214525/@comment-86.18.209.26-20190316192852\nTalk:Benitoite/@comment-2600:8801:2280:1053:788E:64AE:A120:52B9-20190220214525/@comment-97.119.178.212-20190221063007\nTalk:Benitoite/@comment-39011932-20190801163247\nTalk:Benitoite/@comment-73.198.70.41-20190923204124\nTalk:Bertrandite/@comment-2003:C1:8F42:6F00:A528:499D:C2AA:D987-20200207192532\nTalk:Bertrandite/@comment-27453429-20151226160211\nTalk:Bertrandite/@comment-72.184.68.57-20180706161432\nTalk:Bertrandite/@comment-75.70.18.113-20150204033029\nTalk:Bertrandite/@comment-75.70.18.113-20150204033029/@comment-1250011-20150204172615\nTalk:Beryllium/@comment-188.29.165.179-20171017122151\nTalk:Beryllium/@comment-26113847-20150221002431\nTalk:Beta Hydri/@comment-106.69.0.171-20160725034427\nTalk:Beta Hydri/@comment-106.69.0.171-20160725034427/@comment-204.112.3.82-20160822031843\nTalk:Beta Hydri/@comment-4030403-20171108043033\nTalk:Beta Hydri/@comment-95.91.228.27-20160311160243\nTalk:Beta Hydri/@comment-95.91.228.27-20160311160243/@comment-101.161.48.58-20160313112615\nTalk:Beta Hydri/@comment-95.91.228.27-20160311160243/@comment-27956849-20160311195718\nTalk:Beta Hydri/@comment-98.226.242.124-20160127222324\nTalk:Beta Hydri/@comment-98.226.242.124-20160127222324/@comment-2605:7B80:1E:29:1D47:9C4D:7D4C:45E2-20171020153910\nTalk:Beta Hydri/@comment-98.226.242.124-20160127222324/@comment-77.47.109.223-20170217181912\nTalk:Beta Hydri/@comment-98.226.242.124-20160127222324/@comment-77.47.109.223-20170217182744\nTalk:Betelgeuse/@comment-3212845-20180707072625\nTalk:Betelgeuse/@comment-64.47.145.66-20190911021652\nTalk:Bi-Weave Shield Generator/@comment-121.209.196.148-20160126093003\nTalk:Bi-Weave Shield Generator/@comment-176.25.248.74-20151219011857\nTalk:Bi-Weave Shield Generator/@comment-188.143.127.86-20160109032000\nTalk:Bi-Weave Shield Generator/@comment-188.143.127.86-20160109032000/@comment-125.237.5.192-20161007072640\nTalk:Bi-Weave Shield Generator/@comment-188.143.127.86-20160109032000/@comment-192.195.66.3-20170918164115\nTalk:Bi-Weave Shield Generator/@comment-188.143.127.86-20160109032000/@comment-26391992-20160127130148\nTalk:Bi-Weave Shield Generator/@comment-188.143.127.86-20160109032000/@comment-77.102.250.232-20170504140153\nTalk:Bi-Weave Shield Generator/@comment-209.95.50.102-20151219014355\nTalk:Bi-Weave Shield Generator/@comment-216.164.232.183-20170409000626\nTalk:Bi-Weave Shield Generator/@comment-216.164.232.183-20170409000626/@comment-24.119.212.227-20170421233044\nTalk:Bi-Weave Shield Generator/@comment-26950991-20170510173155\nTalk:Bi-Weave Shield Generator/@comment-72.241.143.238-20151229043811\nTalk:Bi-Weave Shield Generator/@comment-76.118.238.197-20160229232222\nTalk:Bi-Weave Shield Generator/@comment-90.216.211.211-20171020183649\nTalk:Bi-Weave Shield Generator/@comment-90.216.211.211-20171020183649/@comment-192.136.161.33-20171021013339\nTalk:Bi-Weave Shield Generator/@comment-90.216.211.211-20171020183649/@comment-192.136.170.98-20181124044635\nTalk:Bi-Weave Shield Generator/@comment-90.216.211.211-20171020183649/@comment-2001:5B0:4BC1:4C00:0:FF:FEBD:63F2-20181108074716\nTalk:Bi-Weave Shield Generator/@comment-90.216.211.211-20171020183649/@comment-90.200.46.38-20181102123443\nTalk:Bi-Weave Shield Generator/@comment-90.216.211.211-20171020183649/@comment-90.200.46.38-20181124015314\nTalk:Bi-Weave Shield Generator/@comment-90.216.211.211-20171020183649/@comment-90.200.46.38-20181124020136\nTalk:Bill Turner/@comment-138.163.0.41-20170818231902\nTalk:Bill Turner/@comment-138.163.0.41-20170818231902/@comment-185.31.50.30-20190916113850\nTalk:Bill Turner/@comment-138.163.0.41-20170818231902/@comment-2001:5B0:4BC0:D040:0:FF:FEBD:1C0-20180522062242\nTalk:Bill Turner/@comment-138.163.0.41-20170818231902/@comment-36713562-20200530205113\nTalk:Bill Turner/@comment-188.2.7.104-20171015191250\nTalk:Bioreducing Lichen/@comment-98.29.29.110-20170805183600\nTalk:Biotech Conductors/@comment-186.212.85.57-20190119072813\nTalk:Biotech Conductors/@comment-186.212.85.57-20190119072813/@comment-2A00:23C5:2925:2901:50DB:1C5C:3408:7AE9-20200203191524\nTalk:Biotech Conductors/@comment-2605:A601:9CB:D400:7:DDFA:4D9D:E6DC-20180104093516\nTalk:Biotech Conductors/@comment-2605:A601:9CB:D400:7:DDFA:4D9D:E6DC-20180104093516/@comment-136.62.68.217-20180112235357\nTalk:Biotech Conductors/@comment-2605:A601:9CB:D400:7:DDFA:4D9D:E6DC-20180104093516/@comment-136.62.68.217-20180112235543\nTalk:Biotech Conductors/@comment-2605:A601:9CB:D400:7:DDFA:4D9D:E6DC-20180104093516/@comment-192.136.161.33-20180104165605\nTalk:Biotech Conductors/@comment-31.223.104.160-20190727203641\nTalk:Biotech Conductors/@comment-31.223.104.160-20190727203641/@comment-2A00:23C5:2925:2901:50DB:1C5C:3408:7AE9-20200203191714\nTalk:Biowaste/@comment-2600:8804:1204:3C00:F8AF:3E6:FBE6:DFCB-20181214075311\nTalk:Biowaste/@comment-72.190.126.63-20150927023952\nTalk:Biowaste/@comment-72.190.126.63-20150927023952/@comment-26227424-20160612143515\nTalk:Biowaste/@comment-82.81.17.90-20161008143218\nTalk:Black Box/@comment-101.188.17.48-20160508040848\nTalk:Black Box/@comment-188.62.164.216-20160720161007\nTalk:Black Box/@comment-188.62.164.216-20160720161007/@comment-2155082-20160721040324\nTalk:Black Box/@comment-188.62.164.216-20160720161007/@comment-2155082-20160801032133\nTalk:Black Box/@comment-188.62.164.216-20160720161007/@comment-31.178.6.144-20160731125745\nTalk:Black Box/@comment-25803634-20171127233515\nTalk:Black Box/@comment-25803634-20171127233515/@comment-142.167.101.48-20180416112421\nTalk:Black Box/@comment-25803634-20171127233515/@comment-209.17.40.43-20190516142422\nTalk:Black Box/@comment-25803634-20171127233515/@comment-25803634-20190521063304\nTalk:Black Box/@comment-34171895-20180101180728\nTalk:Black Box/@comment-34171895-20180101180728/@comment-142.167.101.48-20180416111953\nTalk:Black Box/@comment-5.71.110.13-20150315234441\nTalk:Black Box/@comment-5.71.110.13-20150315234441/@comment-26033489-20150316000037\nTalk:Black Box/@comment-78.193.156.248-20160222130911\nTalk:Black Box/@comment-85.140.203.49-20150405012230\nTalk:Black Box/@comment-85.140.203.49-20150405012230/@comment-85.140.203.49-20150405012637\nTalk:Black Box/@comment-85.140.203.49-20150405012230/@comment-97.92.233.179-20150621231828\nTalk:Black Box/@comment-85.172.163.57-20151014130641\nTalk:Black Holes\nTalk:Black Holes/@comment-173.91.30.232-20191130030848\nTalk:Black Holes/@comment-2A02:587:C419:A00:2043:ADD1:9D3B:94C6-20200111164553\nTalk:Black Holes/@comment-30643772-20180920184653\nTalk:Black Holes/@comment-30643772-20180920184653/@comment-198.91.250.212-20190924153149\nTalk:Black Holes/@comment-30643772-20180920184653/@comment-213.233.108.100-20190505202129\nTalk:Black Holes/@comment-30643772-20180920184653/@comment-24.71.229.161-20191005211956\nTalk:Black Market/@comment-106.69.126.147-20141216162739\nTalk:Black Market/@comment-106.69.126.147-20141216162739/@comment-66.68.32.91-20141216211309\nTalk:Black Market/@comment-108.41.120.242-20151029160447\nTalk:Black Market/@comment-109.147.60.94-20150122011526\nTalk:Black Market/@comment-114.34.170.236-20150223211828\nTalk:Black Market/@comment-114.76.177.198-20150118081226\nTalk:Black Market/@comment-114.78.101.83-20150314062120\nTalk:Black Market/@comment-130.234.177.114-20150105130405\nTalk:Black Market/@comment-130.234.177.114-20150105130405/@comment-192.92.94.23-20150109055308\nTalk:Black Market/@comment-14.200.165.96-20141224002236\nTalk:Black Market/@comment-14.200.165.96-20141224002236/@comment-92.19.254.45-20141224141612\nTalk:Black Market/@comment-14.201.41.93-20150123060329\nTalk:Black Market/@comment-147.194.5.61-20150114025450\nTalk:Black Market/@comment-173.15.24.9-20150114131520\nTalk:Black Market/@comment-174.102.96.147-20150110013012\nTalk:Black Market/@comment-1742399-20150115192641\nTalk:Black Market/@comment-1742399-20150115192641/@comment-174.102.96.147-20150126071130\nTalk:Black Market/@comment-178.83.194.237-20150317122755\nTalk:Black Market/@comment-178.83.194.237-20150317122755/@comment-12138097-20150317185451\nTalk:Black Market/@comment-178.83.194.237-20150324190151\nTalk:Black Market/@comment-199.126.149.93-20150125233949\nTalk:Black Market/@comment-2.124.17.171-20141230142617\nTalk:Black Market/@comment-2.124.17.171-20141230142617/@comment-72.178.66.94-20150103002412\nTalk:Black Market/@comment-2.31.52.255-20150122153904\nTalk:Black Market/@comment-2.31.52.255-20150122195933\nTalk:Black Market/@comment-213.29.118.223-20150117192323\nTalk:Black Market/@comment-217.190.184.235-20141224130349\nTalk:Black Market/@comment-24.147.83.175-20141223161437\nTalk:Black Market/@comment-24.147.83.175-20141223161437/@comment-151.226.144.63-20141224000927\nTalk:Black Market/@comment-24.152.223.103-20150125193851\nTalk:Black Market/@comment-24.152.223.103-20150125193851/@comment-24.152.223.103-20150125194020\nTalk:Black Market/@comment-24.152.223.103-20150125193851/@comment-24.152.223.103-20150125200518\nTalk:Black Market/@comment-24.152.223.103-20150125193851/@comment-66.249.81.201-20150216231327\nTalk:Black Market/@comment-26009169-20150401112547\nTalk:Black Market/@comment-2607:FEA8:2D5F:FCD8:551C:D3EE:D4C:960A-20180414203949\nTalk:Black Market/@comment-2607:FEA8:2D5F:FCD8:551C:D3EE:D4C:960A-20180414203949/@comment-76.71.18.81-20190902234752\nTalk:Black Market/@comment-2620:132:300C:C01D:0:0:0:8-20190712211458\nTalk:Black Market/@comment-31.209.138.27-20150403021528\nTalk:Black Market/@comment-38174638-20190115015627\nTalk:Black Market/@comment-4225664-20150106045232\nTalk:Black Market/@comment-4225664-20150106045232/@comment-192.92.94.23-20150107094140\nTalk:Black Market/@comment-68.227.184.60-20150210050515\nTalk:Black Market/@comment-69.121.65.134-20141229032204\nTalk:Black Market/@comment-69.121.65.134-20141229032204/@comment-72.178.66.94-20150103002421\nTalk:Black Market/@comment-69.141.172.169-20150928041430\nTalk:Black Market/@comment-69.141.172.169-20150928041430/@comment-69.141.172.169-20150928041649\nTalk:Black Market/@comment-70.123.124.151-20150118225917\nTalk:Black Market/@comment-70.123.124.151-20150124232615\nTalk:Black Market/@comment-70.123.124.151-20150217014043\nTalk:Black Market/@comment-70.123.197.42-20150107161957\nTalk:Black Market/@comment-70.123.197.42-20150107161957/@comment-192.92.94.23-20150109054835\nTalk:Black Market/@comment-70.123.197.42-20150107193826\nTalk:Black Market/@comment-70.123.197.42-20150107193826/@comment-192.92.94.23-20150109054830\nTalk:Black Market/@comment-71.176.76.218-20150114114421\nTalk:Black Market/@comment-72.230.215.3-20150410140937\nTalk:Black Market/@comment-72.230.215.3-20150410140937/@comment-26009169-20150410165016\nTalk:Black Market/@comment-72.230.215.3-20150410140937/@comment-26009169-20150410173105\nTalk:Black Market/@comment-72.230.215.3-20150410140937/@comment-26009169-20150411161831\nTalk:Black Market/@comment-72.230.215.3-20150410140937/@comment-26033489-20150410171548\nTalk:Black Market/@comment-72.230.215.3-20150410140937/@comment-74.202.12.194-20150416161857\nTalk:Black Market/@comment-74.140.132.104-20150120013938\nTalk:Black Market/@comment-74.140.132.104-20150120013938/@comment-74.140.132.104-20150120020046\nTalk:Black Market/@comment-75.157.144.226-20150214001627\nTalk:Black Market/@comment-76.170.166.2-20150103233639\nTalk:Black Market/@comment-76.170.166.2-20150103233639/@comment-192.92.94.23-20150109055314\nTalk:Black Market/@comment-81.130.10.7-20150406213339\nTalk:Black Market/@comment-81.130.10.7-20150406213339/@comment-26009169-20150406213729\nTalk:Black Market/@comment-82.12.77.226-20150111132250\nTalk:Black Market/@comment-82.169.90.156-20141221031851\nTalk:Black Market/@comment-82.181.31.246-20151024130828\nTalk:Black Market/@comment-82.181.31.246-20151024130828/@comment-2A02:810D:20BF:C29C:1F3:94CA:94E2:5F28-20171015170809\nTalk:Black Market/@comment-83.215.226.120-20150314143417\nTalk:Black Market/@comment-84.28.173.158-20150106201656\nTalk:Black Market/@comment-84.28.173.158-20150106201656/@comment-84.28.173.158-20150106201804\nTalk:Black Market/@comment-86.11.155.67-20150119005129\nTalk:Black Market/@comment-86.173.246.20-20150101165258\nTalk:Black Market/@comment-86.173.246.20-20150101165258/@comment-81.96.91.239-20150121155725\nTalk:Black Market/@comment-86.221.26.84-20150103212749\nTalk:Black Market/@comment-86.221.26.84-20150103212749/@comment-192.92.94.23-20150109055459\nTalk:Black Market/@comment-86.85.183.80-20141222225039\nTalk:Black Market/@comment-87.158.144.39-20150107015037\nTalk:Black Market/@comment-87.158.150.52-20150101182226\nTalk:Black Market/@comment-87.158.150.52-20150101182226/@comment-72.178.66.94-20150103002403\nTalk:Black Market/@comment-88.113.77.22-20141228203357\nTalk:Black Market/@comment-89.177.178.97-20150728135239\nTalk:Black Market/@comment-89.242.42.212-20150110160443\nTalk:Black Market/@comment-90.219.97.65-20141226013336\nTalk:Black Market/@comment-90.219.97.65-20141226013336/@comment-72.178.66.94-20150103002431\nTalk:Black Market/@comment-95.79.2.249-20141218162047\nTalk:Black Market/@comment-95.91.232.99-20141221142721\nTalk:Black Market/@comment-95.91.232.99-20141221142721/@comment-73.161.166.68-20141222000445\nTalk:Black Market/@comment-95.91.232.99-20141221142721/@comment-91.139.0.193-20141222122108\nTalk:Black Market/@comment-98.193.171.214-20141223092406\nTalk:Black Market/@comment-98.239.48.227-20150127191215\nTalk:Black Market/@comment-98.239.48.227-20150215033302\nTalk:Blast Resistant Armour/@comment-90.200.46.38-20181119011707\nTalk:Blast Resistant Armour/@comment-90.200.46.38-20181119011707/@comment-192.136.170.98-20181208182518\nTalk:Blast Resistant Armour/@comment-90.200.46.38-20181119011707/@comment-90.200.49.195-20181208134343\nTalk:Block a Player/@comment-2001:1C00:1B10:FC00:6019:7C2C:3E3E:F145-20190806143054\nTalk:Blue Epaulettes/@comment-136.49.236.80-20190507001643\nTalk:Blue Milk/@comment-1028741-20151205175515\nTalk:Blue Milk/@comment-45.58.252.38-20150718113904\nTalk:Boost Speed/@comment-108.226.12.142-20150113193911\nTalk:Boost Speed/@comment-193.130.71.68-20140807135302\nTalk:Boost Speed/@comment-193.130.71.68-20140807135302/@comment-6033893-20140808210859\nTalk:Boost Speed/@comment-193.130.71.68-20140807135302/@comment-69.91.139.151-20151203003045\nTalk:Boost Speed/@comment-46223704-20200630022037\nTalk:Bootleg Liquor/@comment-74.67.43.230-20170714175514\nTalk:Bootleg Liquor/@comment-95.91.228.146-20160316171715\nTalk:Borasetani Pathogenetics/@comment-2600:1004:B03F:52B1:41BA:EF8B:A34F:F4E4-20191113131509\nTalk:Borasetani Pathogenetics/@comment-2A00:23C4:AF04:9401:E40A:DB5C:BC28:FDB7-20180802193552\nTalk:Bounty/@comment-100.11.78.253-20160128162038\nTalk:Bounty/@comment-109.145.231.39-20171226002335\nTalk:Bounty/@comment-124.169.6.241-20150623042647\nTalk:Bounty/@comment-124.169.6.241-20150623042647/@comment-77.49.198.161-20150624211243\nTalk:Bounty/@comment-124.169.6.241-20150623042647/@comment-85.21.236.31-20150718194949\nTalk:Bounty/@comment-146.199.86.218-20150822070415\nTalk:Bounty/@comment-147.69.22.101-20150920024633\nTalk:Bounty/@comment-147.69.22.101-20150920024633/@comment-147.69.22.101-20150920024918\nTalk:Bounty/@comment-147.69.22.101-20150920024633/@comment-147.69.22.101-20150920025045\nTalk:Bounty/@comment-147.69.22.101-20150920024633/@comment-27032150-20151105073324\nTalk:Bounty/@comment-153.110.241.232-20150722091304\nTalk:Bounty/@comment-153.110.241.232-20150722091304/@comment-24.62.125.103-20151007150836\nTalk:Bounty/@comment-153.110.241.232-20150722091304/@comment-26599825-20150728192212\nTalk:Bounty/@comment-153.110.241.232-20150722091304/@comment-76.185.89.24-20151010224725\nTalk:Bounty/@comment-153.110.241.232-20150722091304/@comment-86.82.236.206-20150728185416\nTalk:Bounty/@comment-162.193.150.116-20151114010808\nTalk:Bounty/@comment-166.137.10.77-20180831055412\nTalk:Bounty/@comment-166.137.10.77-20180831055412/@comment-2602:306:CE29:B0D0:55DA:FB68:7DF9:4C05-20191013225014\nTalk:Bounty/@comment-173.210.244.171-20150714050459\nTalk:Bounty/@comment-173.210.244.171-20150714050459/@comment-95.90.234.1-20150813233132\nTalk:Bounty/@comment-174.79.174.130-20150915031301\nTalk:Bounty/@comment-178.25.125.190-20171104192953\nTalk:Bounty/@comment-178.25.125.190-20171104192953/@comment-213.93.191.201-20171213174359\nTalk:Bounty/@comment-179.183.9.81-20150611155451\nTalk:Bounty/@comment-179.183.9.81-20150611155451/@comment-73.174.241.48-20150623160728\nTalk:Bounty/@comment-195.166.158.100-20150202221714\nTalk:Bounty/@comment-195.166.158.100-20150202221714/@comment-72.241.143.238-20150525153524\nTalk:Bounty/@comment-195.166.158.100-20150202221714/@comment-83.254.45.223-20150405162420\nTalk:Bounty/@comment-207.47.204.62-20150130001225\nTalk:Bounty/@comment-207.47.204.62-20150130001225/@comment-107.131.0.64-20150130074638\nTalk:Bounty/@comment-207.47.204.62-20150130001225/@comment-108.211.252.126-20150131000114\nTalk:Bounty/@comment-207.47.204.62-20150130001225/@comment-118.92.103.174-20150130012415\nTalk:Bounty/@comment-207.47.204.62-20150130001225/@comment-173.172.220.8-20150131025759\nTalk:Bounty/@comment-207.47.204.62-20150130001225/@comment-72.197.212.241-20150130070338\nTalk:Bounty/@comment-207.47.204.62-20150130001225/@comment-86.28.205.138-20150130042056\nTalk:Bounty/@comment-207.47.204.62-20150130001225/@comment-95.148.119.52-20150131224712\nTalk:Bounty/@comment-212.159.19.208-20150718202427\nTalk:Bounty/@comment-212.159.19.208-20150718202427/@comment-71.33.184.92-20150721063628\nTalk:Bounty/@comment-212.159.19.208-20150718203031\nTalk:Bounty/@comment-212.159.19.208-20150718203031/@comment-75.121.236.32-20150719025247\nTalk:Bounty/@comment-213.74.169.49-20180315124552\nTalk:Bounty/@comment-213.74.169.49-20180315124552/@comment-192.136.161.33-20180315160057\nTalk:Bounty/@comment-24.118.224.118-20170216170015\nTalk:Bounty/@comment-24.166.40.71-20170814164244\nTalk:Bounty/@comment-24.20.104.8-20170128045335\nTalk:Bounty/@comment-24.213.104.2-20161206231813\nTalk:Bounty/@comment-24.213.104.2-20161206231813/@comment-213.127.69.182-20170119034916\nTalk:Bounty/@comment-24.62.86.197-20150725005443\nTalk:Bounty/@comment-24.62.86.197-20150725005443/@comment-24.62.86.197-20150725005638\nTalk:Bounty/@comment-24.85.110.225-20150310011555\nTalk:Bounty/@comment-24.85.110.225-20150310011555/@comment-26009169-20150310012724\nTalk:Bounty/@comment-24529177-20160727123517\nTalk:Bounty/@comment-24529177-20160727123517/@comment-125.237.3.1-20161016220723\nTalk:Bounty/@comment-24529177-20160727123517/@comment-125.237.3.1-20161016220806\nTalk:Bounty/@comment-2600:1700:ED41:4B60:5C6E:C564:2470:BB1E-20180419202315\nTalk:Bounty/@comment-2600:1700:ED41:4B60:5C6E:C564:2470:BB1E-20180419202315/@comment-121.220.39.95-20180429112122\nTalk:Bounty/@comment-26113847-20151216074325\nTalk:Bounty/@comment-26113847-20151216074325/@comment-176.25.248.74-20151221001745\nTalk:Bounty/@comment-26113847-20151216074325/@comment-209.181.252.33-20151227183550\nTalk:Bounty/@comment-26113847-20151216074325/@comment-26113847-20151218114341\nTalk:Bounty/@comment-26113847-20151216074325/@comment-26113847-20151230032128\nTalk:Bounty/@comment-26113847-20151216074325/@comment-26391992-20151223123644\nTalk:Bounty/@comment-26306474-20150502015742\nTalk:Bounty/@comment-27115814-20160325061112\nTalk:Bounty/@comment-27115814-20160325061112/@comment-173.52.97.160-20160404060350\nTalk:Bounty/@comment-27115814-20160325061112/@comment-192.136.172.90-20160325112757\nTalk:Bounty/@comment-27335372-20151203003808\nTalk:Bounty/@comment-27335372-20151203003808/@comment-26599825-20151203055639\nTalk:Bounty/@comment-27335372-20151203003808/@comment-87.113.240.130-20151213074322\nTalk:Bounty/@comment-27335372-20151203003808/@comment-95.91.228.100-20160103205522\nTalk:Bounty/@comment-29390034-20170215233245\nTalk:Bounty/@comment-29390034-20170215233245/@comment-24.118.224.118-20170216171217\nTalk:Bounty/@comment-2A02:AA13:400:4480:A4B4:8A96:82C8:66AA-20171014133857\nTalk:Bounty/@comment-31510018-20170315203209\nTalk:Bounty/@comment-37.120.4.60-20151212053548\nTalk:Bounty/@comment-46.5.2.190-20160201234350\nTalk:Bounty/@comment-47.183.215.82-20180605142638\nTalk:Bounty/@comment-47.215.142.21-20180101000114\nTalk:Bounty/@comment-47.72.209.159-20150911091747\nTalk:Bounty/@comment-47.72.209.159-20150911091747/@comment-76.185.89.24-20151010224633\nTalk:Bounty/@comment-66.91.243.93-20151105071802\nTalk:Bounty/@comment-66.91.243.93-20151105071802/@comment-27032150-20151105100538\nTalk:Bounty/@comment-69.11.36.67-20151223095533\nTalk:Bounty/@comment-69.30.179.116-20181231190120\nTalk:Bounty/@comment-70.162.83.20-20150909115038\nTalk:Bounty/@comment-70.162.83.20-20150909115038/@comment-70.189.80.37-20161030163430\nTalk:Bounty/@comment-70.162.83.20-20150909115038/@comment-73.1.55.15-20151016185458\nTalk:Bounty/@comment-70.162.83.20-20150909115038/@comment-99.253.66.222-20150910062448\nTalk:Bounty/@comment-70.177.228.111-20150704223717\nTalk:Bounty/@comment-70.177.228.111-20150704223717/@comment-87.181.75.9-20150712160800\nTalk:Bounty/@comment-71.233.88.91-20160529033457\nTalk:Bounty/@comment-71.82.114.224-20160115191341\nTalk:Bounty/@comment-72.190.39.213-20160116115929\nTalk:Bounty/@comment-72.241.143.238-20150525112347\nTalk:Bounty/@comment-72.241.143.238-20150525112347/@comment-26307924-20150610080048\nTalk:Bounty/@comment-73.34.111.247-20150721035024\nTalk:Bounty/@comment-73.34.111.247-20150721035024/@comment-73.34.111.247-20150721231748\nTalk:Bounty/@comment-73.34.111.247-20150721035024/@comment-76.185.89.24-20151010224758\nTalk:Bounty/@comment-73.34.111.247-20150725014007\nTalk:Bounty/@comment-73.34.111.247-20150725014007/@comment-73.34.111.247-20150725014043\nTalk:Bounty/@comment-75.81.232.57-20160130170556\nTalk:Bounty/@comment-75.81.232.57-20160130170556/@comment-195.243.28.250-20160303105842\nTalk:Bounty/@comment-75.81.232.57-20160130170556/@comment-195.243.28.250-20160303105930\nTalk:Bounty/@comment-75.81.232.57-20160130170556/@comment-46.5.2.190-20160201231207\nTalk:Bounty/@comment-75.81.232.57-20160130170556/@comment-70.191.181.40-20160323143826\nTalk:Bounty/@comment-78.162.228.118-20171009171908\nTalk:Bounty/@comment-79.200.2.112-20150906105745\nTalk:Bounty/@comment-79.200.2.112-20150906105745/@comment-69.180.44.158-20150906191234\nTalk:Bounty/@comment-79.200.2.112-20150906105745/@comment-79.200.2.112-20150909171640\nTalk:Bounty/@comment-81.106.156.32-20160720223816\nTalk:Bounty/@comment-86.174.168.35-20161214004705\nTalk:Bounty/@comment-86.82.236.206-20150728185331\nTalk:Bounty/@comment-90.169.232.108-20150612145315\nTalk:Bounty/@comment-92.10.30.133-20150805020353\nTalk:Bounty/@comment-92.10.30.133-20150805020353/@comment-82.134.233.131-20151004173511\nTalk:Bounty/@comment-96.231.19.138-20151221165826\nTalk:Bounty/@comment-96.42.209.70-20150704010014\nTalk:Bounty/@comment-96.42.209.70-20150704010014/@comment-78.147.206.184-20150718134205\nTalk:Bounty Hunter/@comment-122.58.239.177-20161118230217\nTalk:Bounty Hunter/@comment-143.81.103.35-20151224040257\nTalk:Bounty Hunter/@comment-143.81.103.35-20151224040257/@comment-60.229.147.15-20160120082408\nTalk:Bounty Hunter/@comment-156.3.54.203-20150507155046\nTalk:Bounty Hunter/@comment-156.3.54.203-20150507155046/@comment-156.3.54.203-20150529163734\nTalk:Bounty Hunter/@comment-156.3.54.203-20150507155046/@comment-184.91.189.54-20150517050147\nTalk:Bounty Hunter/@comment-173.210.244.171-20150715013917\nTalk:Bounty Hunter/@comment-174.102.154.114-20150316040741\nTalk:Bounty Hunter/@comment-174.102.154.114-20150316040741/@comment-31.164.1.86-20150316111013\nTalk:Bounty Hunter/@comment-184.162.231.241-20151229191312\nTalk:Bounty Hunter/@comment-184.162.231.241-20151229191312/@comment-2001:5B0:2685:33F0:280:AEFF:FEF2:F77C-20180115203735\nTalk:Bounty Hunter/@comment-190.226.145.245-20150325153225\nTalk:Bounty Hunter/@comment-198.255.148.249-20150216132601\nTalk:Bounty Hunter/@comment-198.255.148.249-20150216132601/@comment-26009169-20150216135832\nTalk:Bounty Hunter/@comment-198.255.148.249-20150216132601/@comment-87.98.44.188-20150217082235\nTalk:Bounty Hunter/@comment-2.30.224.115-20150303221911\nTalk:Bounty Hunter/@comment-2.30.224.115-20150303221911/@comment-99.3.27.210-20150306005440\nTalk:Bounty Hunter/@comment-23.122.214.44-20150325033631\nTalk:Bounty Hunter/@comment-26009169-20150415123628\nTalk:Bounty Hunter/@comment-2602:306:CE29:B0D0:8C4:6E58:51B2:856D-20190815102026\nTalk:Bounty Hunter/@comment-2602:306:CE29:B0D0:8C4:6E58:51B2:856D-20190815102026/@comment-192.136.172.44-20190818135952\nTalk:Bounty Hunter/@comment-2602:306:CE29:B0D0:8C4:6E58:51B2:856D-20190815102026/@comment-2602:306:CE29:B0D0:3166:95F8:23B:1094-20190823014317\nTalk:Bounty Hunter/@comment-2620:160:E728:2:0:0:0:8-20180130221751\nTalk:Bounty Hunter/@comment-2620:160:E728:2:0:0:0:8-20180130221751/@comment-2602:306:CE29:B0D0:9C67:1E8D:BAF0:BB47-20190918105311\nTalk:Bounty Hunter/@comment-2620:160:E728:2:0:0:0:8-20180130221751/@comment-30928085-20180130224705\nTalk:Bounty Hunter/@comment-26222609-20150322085414\nTalk:Bounty Hunter/@comment-26222609-20150322085414/@comment-142.166.16.179-20150322133612\nTalk:Bounty Hunter/@comment-26222609-20150322085414/@comment-142.166.16.179-20150324122451\nTalk:Bounty Hunter/@comment-26222609-20150322085414/@comment-24.178.26.241-20150326044834\nTalk:Bounty Hunter/@comment-26222609-20150322085414/@comment-67.252.78.59-20150323041709\nTalk:Bounty Hunter/@comment-26241166-20150324203255\nTalk:Bounty Hunter/@comment-26241166-20150324203255/@comment-105.210.184.45-20150621091428\nTalk:Bounty Hunter/@comment-26241166-20150324203255/@comment-12.5.54.135-20151019152958\nTalk:Bounty Hunter/@comment-26241166-20150326172902\nTalk:Bounty Hunter/@comment-26981241-20150912220302\nTalk:Bounty Hunter/@comment-26981241-20150912220302/@comment-108.41.120.242-20151029180454\nTalk:Bounty Hunter/@comment-26981241-20150912220302/@comment-27032150-20151030081332\nTalk:Bounty Hunter/@comment-26981241-20150912220302/@comment-60.229.147.15-20160120082452\nTalk:Bounty Hunter/@comment-37.192.23.123-20150324201359\nTalk:Bounty Hunter/@comment-37.192.23.123-20150324201605\nTalk:Bounty Hunter/@comment-39085855-20200124155555\nTalk:Bounty Hunter/@comment-60.229.147.15-20160120083216\nTalk:Bounty Hunter/@comment-60.229.147.15-20160120083216/@comment-27032150-20160120131023\nTalk:Bounty Hunter/@comment-60.229.147.15-20160120083216/@comment-27032150-20160121092752\nTalk:Bounty Hunter/@comment-60.229.147.15-20160120083216/@comment-60.229.147.15-20160120083316\nTalk:Bounty Hunter/@comment-60.229.147.15-20160120083216/@comment-60.229.147.15-20160120211309\nTalk:Bounty Hunter/@comment-60.229.147.15-20160121003852\nTalk:Bounty Hunter/@comment-71.77.207.83-20150320222058\nTalk:Bounty Hunter/@comment-71.86.95.130-20150127022635\nTalk:Bounty Hunter/@comment-71.86.95.130-20150127022635/@comment-68.149.172.166-20150201062958\nTalk:Bounty Hunter/@comment-71.86.95.130-20150127022635/@comment-79.205.116.209-20150312142323\nTalk:Bounty Hunter/@comment-71.86.95.130-20150127022635/@comment-80.195.74.41-20150128114729\nTalk:Bounty Hunter/@comment-71.86.95.130-20150127022635/@comment-89.228.81.37-20150129183523\nTalk:Bounty Hunter/@comment-72.168.144.65-20170318222944\nTalk:Bounty Hunter/@comment-76.102.51.16-20170412025337\nTalk:Bounty Hunter/@comment-79.247.217.220-20150324230612\nTalk:Bounty Hunter/@comment-82.35.139.120-20150415094939\nTalk:Bounty Hunter/@comment-83.163.164.225-20160112122556\nTalk:Bounty Hunter/@comment-83.163.164.225-20160112122556/@comment-37.48.241.206-20160112152851\nTalk:Bounty Hunter/@comment-89.85.50.189-20151213201901\nTalk:Bounty Hunter/@comment-89.85.50.189-20151213201901/@comment-125.237.3.1-20161017025514\nTalk:Bounty Hunter/@comment-89.85.50.189-20151213201901/@comment-27032150-20160120131257\nTalk:Bounty Hunter/@comment-9472148-20160128151550\nTalk:Bounty Hunter/@comment-9472148-20160128151550/@comment-27032150-20160128165758\nTalk:Bounty Hunter/@comment-9472148-20160128151550/@comment-87.115.62.14-20160301114536\nTalk:Bounty Hunter/@comment-95.90.212.109-20150702190011\nTalk:Bounty Voucher/@comment-2003:C3:AF02:9D00:3599:3E45:5F29:77C0-20191014134705\nTalk:Bounty Voucher/@comment-2003:C3:AF02:9D00:3599:3E45:5F29:77C0-20191014134705/@comment-2003:D4:570A:D73:D992:A31A:3BC5:5252-20191015013510\nTalk:Brain Tree/@comment-2182702-20190924035738\nTalk:Brain Tree/@comment-2182702-20190924035738/@comment-2182702-20190924040443\nTalk:Brain Tree/@comment-2600:8800:7C00:250:91A6:7186:2D5D:FAA2-20190901044417\nTalk:Brain Tree/@comment-85.76.33.150-20191019150835\nTalk:Brewer Corporation/@comment-2600:1011:B160:7DB7:F53:10E4:6233:F3B1-20200108191336\nTalk:Brewer Corporation/@comment-34215096-20180104201011\nTalk:Brewer Corporation/@comment-43623494-20190825230650\nTalk:Brewer Corporation/@comment-43623494-20190825230650/@comment-2C0F:F038:204:5C00:871:25DD:5214:BC-20191203042026\nTalk:Brewer Corporation/@comment-43966539-20200415132242\nTalk:Brewer Corporation/@comment-68.229.220.58-20190825230036\nTalk:Brewer Corporation/@comment-903860-20200403004131\nTalk:Bris Dekker/@comment-188.146.131.47-20170824130138\nTalk:Bris Dekker/@comment-188.146.131.47-20170824130138/@comment-2602:306:CE29:B0D0:FC44:15A0:3719:3FB4-20191012082306\nTalk:Bris Dekker/@comment-188.146.131.47-20170824130138/@comment-2602:306:CE29:B0D0:FC44:15A0:3719:3FB4-20191012082530\nTalk:Bris Dekker/@comment-188.146.131.47-20170824130138/@comment-90.200.46.38-20181202133844\nTalk:Bris Dekker/@comment-188.146.131.47-20170824130138/@comment-90.200.46.38-20181202134003\nTalk:Bris Dekker/@comment-188.2.7.104-20171021084437\nTalk:Bromellite/@comment-124.120.72.89-20171108122518\nTalk:Bromellite/@comment-124.120.72.89-20171108122518/@comment-2601:380:4100:E610:9030:A6AC:E6B7:2DD1-20171126130753\nTalk:Bromellite/@comment-124.120.72.89-20171108122518/@comment-2605:6000:EFE0:6200:455E:B655:BD23:604C-20180102014808\nTalk:Bromellite/@comment-124.120.72.89-20171108122518/@comment-73.125.87.97-20180118055325\nTalk:Bromellite/@comment-177.83.193.94-20181103211139\nTalk:Bromellite/@comment-188.222.179.99-20161129220034\nTalk:Bromellite/@comment-194.150.65.117-20181230132804\nTalk:Bromellite/@comment-2003:C1:8F42:6F00:A528:499D:C2AA:D987-20200207192450\nTalk:Bromellite/@comment-2003:C1:8F42:6F00:A528:499D:C2AA:D987-20200207192450/@comment-45227748-20200512160821\nTalk:Bromellite/@comment-2A02:C7D:7A19:9200:D9D5:94B0:2430:87C2-20171008173202\nTalk:Bromellite/@comment-2A02:C7D:7A19:9200:D9D5:94B0:2430:87C2-20171008173202/@comment-35728751-20180529233520\nTalk:Bromellite/@comment-34571022-20200626180956\nTalk:Bromellite/@comment-45227748-20200512160740\nTalk:Bromellite/@comment-45817917-20200517124433\nTalk:Bromellite/@comment-45817917-20200517124433/@comment-45817917-20200517131800\nTalk:Bromellite/@comment-46213469-20200628231639\nTalk:Bromellite/@comment-46259875-20200704054602\nTalk:Broo Tarquin/@comment-188.2.7.104-20171021084349\nTalk:Bulk Cargo Ship/@comment-2600:387:1:804:0:0:0:7E-20171120033801\nTalk:Bulk Cargo Ship/@comment-33252114-20180608075123\nTalk:Bulk Cargo Ship/@comment-73.130.123.51-20191220214938\nTalk:Bulk Cruiser/@comment-44904441-20200124130547\nTalk:Bulkheads/@comment-176.249.62.114-20170810173328\nTalk:Bulkheads/@comment-176.249.62.114-20170810173328/@comment-176.249.62.114-20170810175123\nTalk:Bulkheads/@comment-199.227.62.202-20150510100634\nTalk:Bulkheads/@comment-27646870-20161006212817\nTalk:Bulkheads/@comment-31411324-20170305174537\nTalk:Bulkheads/@comment-34552491-20180628144427\nTalk:Bulkheads/@comment-34552491-20180628144427/@comment-90.200.46.38-20181024113702\nTalk:Bulkheads/@comment-90.200.46.38-20181106162915\nTalk:Bulkheads/@comment-90.200.49.195-20181223143024\nTalk:Bulkheads/@comment-90.200.49.195-20181223143024/@comment-90.200.49.195-20181223144201\nTalk:Bulletin Board/Types/@comment-27544343-20160104143311\nTalk:Burnham Bile Distillate/@comment-2600:6C40:7B80:3A:DD47:E98C:CFBB:7E1E-20180330030438\nTalk:Burnham Bile Distillate/@comment-2600:6C40:7B80:3A:DD47:E98C:CFBB:7E1E-20180330030438/@comment-192.136.161.33-20180330033953\nTalk:Burst Laser/@comment-101.161.229.37-20150622235006\nTalk:Burst Laser/@comment-108.7.70.140-20150607225212\nTalk:Burst Laser/@comment-108.7.70.140-20150607225212/@comment-50.26.226.105-20150629040313\nTalk:Burst Laser/@comment-108.7.70.140-20150607225212/@comment-50.26.226.105-20150629040437\nTalk:Burst Laser/@comment-108.7.70.140-20150607225212/@comment-80.187.100.227-20150619045800\nTalk:Burst Laser/@comment-108.7.70.140-20150607225212/@comment-93.223.88.74-20150609211752\nTalk:Burst Laser/@comment-109.152.187.110-20150429132830\nTalk:Burst Laser/@comment-109.152.187.110-20150429132830/@comment-165.120.78.95-20150608010741\nTalk:Burst Laser/@comment-109.69.77.99-20150129175139\nTalk:Burst Laser/@comment-109.69.77.99-20150129175139/@comment-87.244.71.119-20150130124008\nTalk:Burst Laser/@comment-109.69.77.99-20150129175139/@comment-88.102.161.39-20150131114323\nTalk:Burst Laser/@comment-125.237.2.240-20160912002404\nTalk:Burst Laser/@comment-125.237.2.240-20160912002404/@comment-27032150-20160912063143\nTalk:Burst Laser/@comment-128.255.74.4-20150408132956\nTalk:Burst Laser/@comment-151.225.68.73-20150323161544\nTalk:Burst Laser/@comment-173.65.200.224-20150414044620\nTalk:Burst Laser/@comment-174.54.154.83-20150629233053\nTalk:Burst Laser/@comment-174.54.154.83-20150629233053/@comment-37.201.229.31-20150707180811\nTalk:Burst Laser/@comment-184.171.138.105-20150429121829\nTalk:Burst Laser/@comment-184.91.189.54-20150603064724\nTalk:Burst Laser/@comment-184.91.189.54-20150603064724/@comment-80.187.100.227-20150619045837\nTalk:Burst Laser/@comment-184.91.189.54-20150603064724/@comment-93.223.88.74-20150609211837\nTalk:Burst Laser/@comment-188.97.173.120-20151022145334\nTalk:Burst Laser/@comment-192.195.82.250-20150410212448\nTalk:Burst Laser/@comment-195.70.101.49-20150925082149\nTalk:Burst Laser/@comment-26005414-20160925054826\nTalk:Burst Laser/@comment-2607:FEA8:EC5F:FC7F:178:EEB5:478:77F6-20180627123005\nTalk:Burst Laser/@comment-26306474-20150426220415\nTalk:Burst Laser/@comment-26306474-20150426220415/@comment-82.132.212.222-20150615092106\nTalk:Burst Laser/@comment-27019965-20160628015020\nTalk:Burst Laser/@comment-27019965-20160628015020/@comment-26005414-20161003000534\nTalk:Burst Laser/@comment-27034370-20170125175058\nTalk:Burst Laser/@comment-30978562-20170107124046\nTalk:Burst Laser/@comment-30978562-20170107124046/@comment-26005414-20170114012959\nTalk:Burst Laser/@comment-31.17.223.132-20150322151901\nTalk:Burst Laser/@comment-31.17.223.132-20150322152019\nTalk:Burst Laser/@comment-60.225.160.186-20140819050818\nTalk:Burst Laser/@comment-60.225.160.186-20140819050818/@comment-60.225.160.186-20140819081448\nTalk:Burst Laser/@comment-60.225.160.186-20140819050818/@comment-67.166.26.205-20150312000652\nTalk:Burst Laser/@comment-65.60.207.30-20150403030125\nTalk:Burst Laser/@comment-65.94.21.193-20150706014632\nTalk:Burst Laser/@comment-66.189.14.112-20150410233435\nTalk:Burst Laser/@comment-67.255.106.207-20150620023914\nTalk:Burst Laser/@comment-68.42.0.41-20150925060354\nTalk:Burst Laser/@comment-68.42.0.41-20150925060354/@comment-101.162.158.44-20151005093512\nTalk:Burst Laser/@comment-69.123.253.204-20151001044714\nTalk:Burst Laser/@comment-70.27.240.162-20150223170244\nTalk:Burst Laser/@comment-70.27.240.162-20150223170244/@comment-165.120.78.95-20150608013327\nTalk:Burst Laser/@comment-70.27.240.162-20150223170244/@comment-68.104.67.140-20150319072528\nTalk:Burst Laser/@comment-70.27.240.162-20150223170244/@comment-71.123.142.45-20150317011553\nTalk:Burst Laser/@comment-70.27.240.162-20150223170244/@comment-82.211.216.102-20150224181543\nTalk:Burst Laser/@comment-73.134.16.57-20150726041737\nTalk:Burst Laser/@comment-73.134.16.57-20150726041737/@comment-37.76.43.156-20150807142909\nTalk:Burst Laser/@comment-746248-20150119144000\nTalk:Burst Laser/@comment-746248-20150119144000/@comment-92.236.196.168-20150216172851\nTalk:Burst Laser/@comment-77.234.191.155-20151011152432\nTalk:Burst Laser/@comment-77.234.191.155-20151011152432/@comment-77.234.191.155-20151013165023\nTalk:Burst Laser/@comment-77.253.95.129-20150324192755\nTalk:Burst Laser/@comment-77.253.95.129-20150324192755/@comment-77.20.122.232-20150406091140\nTalk:Burst Laser/@comment-79.238.73.196-20150523091358\nTalk:Burst Laser/@comment-79.255.29.31-20150705020510\nTalk:Burst Laser/@comment-82.37.7.24-20151018171249\nTalk:Burst Laser/@comment-82.37.7.24-20151018171249/@comment-27032150-20151022151619\nTalk:Burst Laser/@comment-82.37.7.24-20151018171249/@comment-99.179.26.4-20160102213440\nTalk:Burst Laser/@comment-82.67.24.137-20150506153445\nTalk:Burst Laser/@comment-82.67.24.137-20150506153445/@comment-82.67.24.137-20150506153524\nTalk:Burst Laser/@comment-82.75.252.114-20150725212911\nTalk:Burst Laser/@comment-84.174.123.253-20150412155158\nTalk:Burst Laser/@comment-85.201.17.88-20150417203215\nTalk:Burst Laser/@comment-85.201.17.88-20150417203215/@comment-76.117.5.44-20150419194724\nTalk:Burst Laser/@comment-86.59.210.77-20140809170155\nTalk:Burst Laser/@comment-86.59.210.77-20140809170155/@comment-6033893-20140811172152\nTalk:Burst Laser/@comment-87.110.144.198-20150711075050\nTalk:Burst Laser/@comment-87.110.144.198-20150711075050/@comment-216.145.81.17-20150715194731\nTalk:Burst Laser/@comment-87.110.144.198-20150711075050/@comment-93.192.102.26-20150716233647\nTalk:Burst Laser/@comment-87.112.114.77-20140811003106\nTalk:Burst Laser/@comment-87.158.143.128-20150106025846\nTalk:Burst Laser/@comment-87.158.143.128-20150106025846/@comment-125.237.2.240-20160912030911\nTalk:Burst Laser/@comment-88.149.170.67-20150604013534\nTalk:Burst Laser/@comment-88.149.170.67-20150604013534/@comment-165.120.78.95-20150608020813\nTalk:Burst Laser/@comment-88.149.170.67-20150604013534/@comment-88.149.170.67-20150604013604\nTalk:Burst Laser/@comment-90.200.46.38-20181119231729\nTalk:Burst Laser/@comment-90.200.46.38-20181123175250\nTalk:Burst Laser/@comment-91.246.112.139-20150601160127\nTalk:Burst Laser/@comment-91.67.33.209-20150331110628\nTalk:Burst Laser/@comment-91.67.33.209-20150331110628/@comment-86.26.207.234-20150331220349\nTalk:Burst Laser/@comment-93.212.218.233-20150716155009\nTalk:Burst Laser/@comment-93.212.218.233-20150716155009/@comment-85.21.236.31-20150717205135\nTalk:Burst Laser/@comment-93.212.218.233-20150716155009/@comment-89.134.204.83-20150807104302\nTalk:Burst Laser/@comment-93.212.218.233-20150716155009/@comment-93.192.102.26-20150716234724\nTalk:Burst Laser/@comment-93.212.218.233-20150716155009/@comment-93.192.102.26-20150716234958\nTalk:Burst Laser/@comment-94.1.65.7-20160403165936\nTalk:Burst Laser/@comment-94.1.65.7-20160403165936/@comment-125.237.5.192-20161007042834\nTalk:Burst Laser/@comment-96.37.43.138-20161106175349\nTalk:CD-43 11917/@comment-68.134.142.87-20170906190740\nTalk:CD-75 Kitten Brand Coffee/@comment-2601:645:8002:45DC:5D49:4415:A053:D95C-20170725004221\nTalk:CD-75 Kitten Brand Coffee/@comment-73.164.77.218-20170307222651\nTalk:CD-75 Kitten Brand Coffee/@comment-86.183.75.52-20160115151706\nTalk:COVAS/@comment-192.162.111.144-20190924080417\nTalk:COVAS/@comment-199.30.184.37-20190825000314\nTalk:COVAS/@comment-199.30.184.37-20190825000314/@comment-188.255.51.0-20200106123441\nTalk:COVAS/@comment-2600:8803:7B80:2390:1CE8:435:53D:9A2C-20190315204709\nTalk:COVAS/@comment-37820584-20190925041522\nTalk:COVAS/@comment-45677112-20200708191908\nTalk:COVAS/@comment-46405056-20200721055211\nTalk:COVAS/@comment-46651535-20200817204021\nTalk:COVAS/@comment-82.3.72.64-20181221051650\nTalk:COVAS/@comment-82.3.72.64-20181221051650/@comment-206.19.54.254-20190726163856\nTalk:COVAS/@comment-82.3.72.64-20181221051650/@comment-45677112-20200708185723\nTalk:COVAS/@comment-86.165.181.213-20190611113947\nTalk:COVAS/@comment-90.200.46.38-20181204025042\nTalk:COVAS/@comment-90.200.46.38-20181204025042/@comment-184.102.226.136-20190102014430\nTalk:COVAS/@comment-90.200.46.38-20181204025042/@comment-45677112-20200708190811\nTalk:CQC Championship/@comment-1028741-20151103132939\nTalk:CQC Championship/@comment-103.244.145.94-20160201090953\nTalk:CQC Championship/@comment-109.146.202.128-20151027162348\nTalk:CQC Championship/@comment-109.146.202.128-20151027162348/@comment-1028741-20151101223421\nTalk:CQC Championship/@comment-109.91.37.68-20150813145042\nTalk:CQC Championship/@comment-171.161.189.133-20181231203916\nTalk:CQC Championship/@comment-193.128.72.93-20150716093440\nTalk:CQC Championship/@comment-193.128.72.93-20150716093440/@comment-50.46.254.46-20151011200718\nTalk:CQC Championship/@comment-193.128.72.93-20150716093440/@comment-71.125.245.12-20150726061747\nTalk:CQC Championship/@comment-193.128.72.93-20150716093440/@comment-85.19.187.20-20151006131135\nTalk:CQC Championship/@comment-193.128.72.93-20150716093440/@comment-86.27.136.29-20150927002658\nTalk:CQC Championship/@comment-193.128.72.93-20150716093440/@comment-98.171.162.230-20151003022300\nTalk:CQC Championship/@comment-24.72.128.134-20151113223124\nTalk:CQC Championship/@comment-24.72.128.134-20151113223124/@comment-91.117.5.94-20151218171611\nTalk:CQC Championship/@comment-27115814-20151112174707\nTalk:CQC Championship/@comment-30303790-20150815104608\nTalk:CQC Championship/@comment-30303790-20150815104608/@comment-46.193.65.207-20151008120452\nTalk:CQC Championship/@comment-43562835-20190820043106\nTalk:CQC Championship/@comment-44180665-20200517155827\nTalk:CQC Championship/@comment-46377948-20200717220453\nTalk:CQC Championship/@comment-46377948-20200717221619\nTalk:CQC Championship/@comment-50.24.177.60-20150804195816\nTalk:CQC Championship/@comment-66.191.253.76-20160707215248\nTalk:CQC Championship/@comment-66.191.253.76-20160707215248/@comment-192.136.174.182-20160718210912\nTalk:CQC Championship/@comment-66.191.253.76-20160707215248/@comment-2155082-20160708030213\nTalk:CQC Championship/@comment-71.125.245.12-20150726062321\nTalk:CQC Championship/@comment-71.59.112.131-20150901174645\nTalk:CQC Championship/@comment-71.8.80.51-20161024223942\nTalk:CQC Championship/@comment-71.8.80.51-20161024223942/@comment-2155082-20161025003408\nTalk:CQC Championship/@comment-71.8.80.51-20161024223942/@comment-67.1.169.160-20191022231413\nTalk:CQC Championship/@comment-71.8.80.51-20161024223942/@comment-71.8.80.51-20161025134444\nTalk:CQC Championship/@comment-73.252.246.241-20160208225202\nTalk:CQC Championship/@comment-75.177.159.44-20151013200930\nTalk:CQC Championship/@comment-87.189.100.68-20170722141023\nTalk:CQC Championship/@comment-87.189.100.68-20170722141023/@comment-33441314-20180130141425\nTalk:CQC Championship/@comment-87.189.100.68-20170722141023/@comment-78.45.83.254-20170924070159\nTalk:CQC Championship/@comment-88.196.200.164-20151218120308\nTalk:CQC Championship/@comment-91.11.91.178-20150803100039\nTalk:CQC Championship/@comment-91.11.91.178-20150803100039/@comment-27032150-20160809155727\nTalk:CQC Championship/@comment-91.11.91.178-20150803100039/@comment-29468965-20160809143655\nTalk:CQC Championship/@comment-94.214.115.204-20150717101505\nTalk:CQC Championship/@comment-94.214.115.204-20150717101505/@comment-100.11.200.187-20150720032157\nTalk:CQC Championship/@comment-94.214.115.204-20150717101505/@comment-209.159.249.80-20160718203302\nTalk:CQC Championship/@comment-94.214.115.204-20150717101505/@comment-50.46.254.46-20151011200602\nTalk:CQC Championship/@comment-94.214.115.204-20150717101505/@comment-71.125.245.12-20150726062046\nTalk:CQC Championship/@comment-94.214.115.204-20150717101505/@comment-83.31.108.72-20150811165559\nTalk:Cadmium/@comment-96.22.114.180-20180630192150\nTalk:Caine Massey/@comment-188.238.166.202-20170701183403\nTalk:Cannon/@comment-109.227.42.98-20150407075251\nTalk:Cannon/@comment-109.227.42.98-20150407075251/@comment-109.227.46.173-20150409070943\nTalk:Cannon/@comment-109.227.42.98-20150407075251/@comment-156.101.9.1-20160316204339\nTalk:Cannon/@comment-109.227.42.98-20150407075251/@comment-26313713-20150415022725\nTalk:Cannon/@comment-156.3.54.203-20150424164926\nTalk:Cannon/@comment-156.3.54.203-20150424164926/@comment-156.3.54.202-20150511202219\nTalk:Cannon/@comment-192.0.187.165-20150207184023\nTalk:Cannon/@comment-2001:5B0:4BC0:D9E0:0:FF:FEBD:1C0-20180505020152\nTalk:Cannon/@comment-24.202.53.65-20150718021206\nTalk:Cannon/@comment-2600:1700:DCB0:CC40:94B:2280:5254:917E-20180907093508\nTalk:Cannon/@comment-2600:1700:DCB0:CC40:94B:2280:5254:917E-20180907093508/@comment-192.136.170.98-20181117043729\nTalk:Cannon/@comment-2600:1700:DCB0:CC40:94B:2280:5254:917E-20180907093508/@comment-90.200.46.38-20181117013522\nTalk:Cannon/@comment-2600:1700:DCB0:CC40:94B:2280:5254:917E-20180907093508/@comment-90.200.46.38-20181117172348\nTalk:Cannon/@comment-2600:1700:DCB0:CC40:94B:2280:5254:917E-20180907093508/@comment-90.200.46.38-20181117172501\nTalk:Cannon/@comment-2600:1700:ED41:4B60:5C6E:C564:2470:BB1E-20180414063117\nTalk:Cannon/@comment-26391992-20150922161444\nTalk:Cannon/@comment-26391992-20150922161444/@comment-162.25.24.153-20160331101109\nTalk:Cannon/@comment-28434084-20160729080601\nTalk:Cannon/@comment-28434084-20160729080601/@comment-27032150-20160729083327\nTalk:Cannon/@comment-63.116.31.198-20181026155927\nTalk:Cannon/@comment-63.116.31.198-20181026155927/@comment-192.136.170.46-20181026201231\nTalk:Cannon/@comment-63.116.31.198-20181026155927/@comment-90.200.46.38-20181117145659\nTalk:Cannon/@comment-68.13.142.144-20150505153548\nTalk:Cannon/@comment-68.13.142.144-20150505153548/@comment-101.98.209.218-20150506095115\nTalk:Cannon/@comment-68.13.142.144-20150505153548/@comment-118.208.133.219-20150614085201\nTalk:Cannon/@comment-68.13.142.144-20150505153548/@comment-153.46.97.98-20150602114827\nTalk:Cannon/@comment-68.13.142.144-20150505153548/@comment-176.249.62.114-20170809234217\nTalk:Cannon/@comment-68.13.142.144-20150505153548/@comment-205.174.48.3-20150611170545\nTalk:Cannon/@comment-72.20.139.135-20150123154523\nTalk:Cannon/@comment-72.20.139.135-20150123154523/@comment-66.249.84.170-20150124055721\nTalk:Cannon/@comment-73.174.241.48-20150327182525\nTalk:Cannon/@comment-73.174.241.48-20150327182525/@comment-73.174.241.48-20150328154208\nTalk:Cannon/@comment-73.174.241.48-20150327182525/@comment-83.93.62.53-20150827170625\nTalk:Cannon/@comment-73.174.241.48-20150327182525/@comment-88.6.91.22-20150327232621\nTalk:Cannon/@comment-75.17.248.231-20150411051213\nTalk:Cannon/@comment-75.17.248.231-20150411051213/@comment-156.3.54.203-20150504190824\nTalk:Cannon/@comment-75.17.248.231-20150411051213/@comment-93.160.212.246-20150420201620\nTalk:Cannon/@comment-76.174.128.26-20150130072601\nTalk:Cannon/@comment-76.174.128.26-20150130072601/@comment-24.45.93.5-20150331042458\nTalk:Cannon/@comment-76.174.128.26-20150130072601/@comment-90.217.129.100-20150221143323\nTalk:Cannon/@comment-84.226.85.56-20161019133400\nTalk:Cannon/@comment-84.226.85.56-20161019133400/@comment-176.249.62.114-20170809234445\nTalk:Cannon/@comment-88.85.155.146-20150428131105\nTalk:Cannon/@comment-88.85.155.146-20150428131105/@comment-156.3.54.203-20150428143540\nTalk:Cannon/@comment-88.85.155.146-20150428131105/@comment-156.3.54.203-20150504190747\nTalk:Cannon/@comment-88.85.155.146-20150428131105/@comment-156.3.54.203-20150505165851\nTalk:Cannon/@comment-88.85.155.146-20150428131105/@comment-176.93.8.142-20150703173314\nTalk:Cannon/@comment-88.85.155.146-20150428131105/@comment-94.1.65.7-20160404213420\nTalk:Cannon/@comment-90.200.46.38-20181117013912\nTalk:Cannon/@comment-90.200.46.38-20181117013912/@comment-74.249.114.246-20190213195421\nTalk:Cannon/@comment-90.200.46.38-20181127121135\nTalk:Cannon/@comment-90.200.46.38-20181127121135/@comment-192.136.170.98-20181127144227\nTalk:Cannon/@comment-90.200.46.38-20181127121135/@comment-192.136.170.98-20181128181337\nTalk:Cannon/@comment-90.200.46.38-20181127121135/@comment-90.200.46.38-20181128163412\nTalk:Cannon/@comment-90.200.49.195-20181215145332\nTalk:Cannon/@comment-90.200.49.195-20181215145332/@comment-192.136.170.98-20190117042943\nTalk:Cannon/@comment-90.200.49.195-20181215145332/@comment-90.200.49.195-20190116160635\nTalk:Cannon/@comment-90.217.129.100-20150131135923\nTalk:Cannon/@comment-93.232.200.71-20150114130547\nTalk:Cannon/@comment-93.232.200.71-20150114130547/@comment-26313713-20150415024603\nTalk:Cannon/@comment-93.232.200.71-20150114130547/@comment-87.114.179.44-20150118120153\nTalk:Cannon/@comment-93.232.200.71-20150114130547/@comment-87.165.109.70-20150118163857\nTalk:Cannon/@comment-93.232.200.71-20150114130547/@comment-88.112.91.114-20150117151852\nTalk:Cannon/@comment-94.12.31.80-20170803133224\nTalk:Canonn Interstellar Research Group/@comment-75.166.167.0-20200105111312\nTalk:Capital Ship/@comment-35849399-20200715021144\nTalk:Capital Ship/@comment-50.36.214.87-20170630203830\nTalk:Capital Ship/@comment-50.36.214.87-20170630203830/@comment-81.106.164.53-20180316163506\nTalk:Capital Ship Dock/@comment-109.173.148.78-20170402182444\nTalk:Capital Ship Dock/@comment-35106346-20180325204702\nTalk:Capital Ship Dock/@comment-37.201.158.145-20191003160534\nTalk:Capitol/@comment-28922465-20160803103022\nTalk:Capitol/@comment-28922465-20160803103022/@comment-125.237.1.45-20180123020818\nTalk:Capitol/@comment-28922465-20160803103022/@comment-166.70.73.30-20171128013328\nTalk:Capitol/@comment-28922465-20160803103022/@comment-177.154.35.10-20170109044342\nTalk:Carcosa/@comment-2601:586:500:30E8:FD41:2D2E:B9DD:A146-20190411171925\nTalk:Cargo Canister/@comment-72.79.121.229-20180304224240\nTalk:Cargo Canister/@comment-72.79.121.229-20180304224240/@comment-34004391-20180305095049\nTalk:Cargo Canister/@comment-80.98.94.128-20180803061523\nTalk:Cargo Canister/@comment-80.98.94.128-20180803061523/@comment-2001:16B8:6405:DD00:1D28:33B3:6193:D058-20190808183744\nTalk:Cargo Rack/@comment-109.193.59.21-20150203004559\nTalk:Cargo Rack/@comment-2.31.213.229-20150212185506\nTalk:Cargo Rack/@comment-218.17.252.162-20150925020402\nTalk:Cargo Rack/@comment-2605:A000:BFC0:5F:1013:AE31:7322:2C04-20181231035534\nTalk:Cargo Rack/@comment-26227424-20160622180158\nTalk:Cargo Rack/@comment-26227424-20160622180158/@comment-2155082-20160623034427\nTalk:Cargo Rack/@comment-26326141-20150419043028\nTalk:Cargo Rack/@comment-32528799-20170710145250\nTalk:Cargo Rack/@comment-32528799-20170710145250/@comment-23.238.143.242-20170724073359\nTalk:Cargo Rack/@comment-4.30.115.102-20150130174259\nTalk:Cargo Rack/@comment-4.30.115.102-20150130174259/@comment-188.100.39.173-20150406152641\nTalk:Cargo Rack/@comment-62.245.77.199-20150220175617\nTalk:Cargo Rack/@comment-71.12.69.12-20180824030350\nTalk:Cargo Rack/@comment-71.233.88.91-20160524231429\nTalk:Cargo Rack/@comment-71.233.88.91-20160524231429/@comment-192.136.173.19-20160525111636\nTalk:Cargo Rack/@comment-76.18.220.223-20150112040304\nTalk:Cargo Rack/@comment-78.34.18.200-20151007071656\nTalk:Cargo Rack/@comment-83.165.5.231-20160203140207\nTalk:Cargo Rack/@comment-86.137.194.41-20180801172608\nTalk:Cargo Rack/@comment-86.144.66.150-20150310224450\nTalk:Cargo Rack/@comment-86.176.127.11-20141226161918\nTalk:Cargo Rack/@comment-86.176.127.11-20141226161918/@comment-174.54.216.149-20141226195636\nTalk:Cargo Rack/@comment-86.41.119.43-20150217132341\nTalk:Cargo Rack/@comment-94.31.115.158-20151202234618\nTalk:Cargo Rack/@comment-94.31.115.158-20151202234618/@comment-63.116.31.198-20181026163322\nTalk:Cargo Rack/@comment-94.31.115.158-20151202234618/@comment-73.6.134.164-20160606173125\nTalk:Cargo Rack/@comment-98.165.224.103-20150113032354\nTalk:Cargo Rack/@comment-98.165.224.103-20150113032354/@comment-97.100.164.53-20150408052517\nTalk:Cargo Rack/@comment-98.176.90.36-20150118144207\nTalk:Cargo Rack/@comment-98.176.90.36-20150118144207/@comment-26277070-20150405125856\nTalk:Cargo Scoop/@comment-1.2.224.20-20150108130312\nTalk:Cargo Scoop/@comment-1.2.224.20-20150108130312/@comment-63.64.75.10-20151209223056\nTalk:Cargo Scoop/@comment-176.63.143.249-20180301194459\nTalk:Cargo Scoop/@comment-176.63.143.249-20180301194459/@comment-24.56.211.87-20180423040354\nTalk:Cargo Scoop/@comment-26509507-20150618181006\nTalk:Cargo Scoop/@comment-26509507-20150618181006/@comment-26391992-20150920093109\nTalk:Cargo Scoop/@comment-42.200.197.137-20171030093928\nTalk:Cargo Scoop/@comment-42.200.197.137-20171030093928/@comment-36373908-20200128035231\nTalk:Cargo Scoop/@comment-45741784-20200525120130\nTalk:Cargo Scoop/@comment-4968814-20150105181654\nTalk:Cargo Scoop/@comment-4968814-20150105181654/@comment-12138097-20150105195145\nTalk:Cargo Scoop/@comment-4968814-20150105181654/@comment-4968814-20150106171440\nTalk:Cargo Scoop/@comment-4968814-20160210235329\nTalk:Cargo Scoop/@comment-60.241.186.181-20141224134643\nTalk:Cargo Scoop/@comment-6033893-20140817150947\nTalk:Cargo Scoop/@comment-66.109.235.218-20160212182106\nTalk:Cargo Scoop/@comment-66.109.235.218-20160212182106/@comment-91.158.15.3-20161129005220\nTalk:Cargo Scoop/@comment-95.91.229.243-20150101140058\nTalk:Cargo Scoop/@comment-95.91.229.243-20150101140058/@comment-12138097-20150101210534\nTalk:Carl Simmons/@comment-31976371-20170511011835\nTalk:Carrier/@comment-176.78.158.9-20190512233513\nTalk:Carrier/@comment-86.173.97.39-20180727034516\nTalk:Centauri Mega Gin/@comment-114.76.153.189-20150126150836\nTalk:Centauri Mega Gin/@comment-114.76.153.189-20150126150836/@comment-135.0.26.15-20150801063956\nTalk:Centauri Mega Gin/@comment-114.76.153.189-20150126150836/@comment-87.150.173.56-20150320123138\nTalk:Centauri Mega Gin/@comment-114.76.153.189-20150126150836/@comment-87.150.173.56-20150320130116\nTalk:Centauri Mega Gin/@comment-174.1.166.246-20180106053808\nTalk:Centauri Mega Gin/@comment-174.1.166.246-20180106053808/@comment-28507382-20180220020700\nTalk:Centauri Mega Gin/@comment-216.59.249.184-20150812004427\nTalk:Centauri Mega Gin/@comment-24.98.125.164-20150331033626\nTalk:Centauri Mega Gin/@comment-2605:E000:1C0C:C1B2:4CF5:9962:6905:5C3B-20190614093103\nTalk:Centauri Mega Gin/@comment-26513805-20150621034506\nTalk:Centauri Mega Gin/@comment-71.233.88.91-20160618161713\nTalk:Centauri Mega Gin/@comment-71.255.117.191-20170422184645\nTalk:Cerberus Plague/@comment-108.242.217.8-20180903084852\nTalk:Ceremonial Comms/@comment-206.19.54.254-20190725230255\nTalk:Ceremonial Comms/@comment-2602:306:32D4:F060:4CAC:CA1:70F1:6D5E-20171211214242\nTalk:Ceremonial Comms/@comment-2605:A000:161A:4494:958A:B320:ED77:1C0A-20180725024614\nTalk:Ceremonial Comms/@comment-2605:A000:161A:4494:958A:B320:ED77:1C0A-20180725024614/@comment-46051335-20200610120503\nTalk:Ceremonial Comms/@comment-36172442-20180821174419\nTalk:Ceremonial Heike Tea/@comment-178.101.229.7-20171015191029\nTalk:Ceremonial Heike Tea/@comment-178.101.229.7-20171015191029/@comment-66.76.36.18-20171015223157\nTalk:Ceremonial Heike Tea/@comment-62.255.208.109-20141211200540\nTalk:Ceremonial Heike Tea/@comment-62.255.208.109-20141211200540/@comment-118601-20141214232709\nTalk:Ceremonial Heike Tea/@comment-62.255.208.109-20141211200540/@comment-188.129.50.137-20160318215122\nTalk:Ceremonial Heike Tea/@comment-62.255.208.109-20141211200540/@comment-62.254.139.160-20171013145951\nTalk:Ceremonial Heike Tea/@comment-62.255.208.109-20141211200540/@comment-62.254.139.160-20171013160413\nTalk:Ceremonial Heike Tea/@comment-68.13.153.101-20171018021717\nTalk:Ceti Rabbits/@comment-77.50.26.143-20160814203640\nTalk:Chaff Launcher/@comment-109.217.158.226-20160102161400\nTalk:Chaff Launcher/@comment-109.217.158.226-20160102161400/@comment-116.7.67.229-20160903101845\nTalk:Chaff Launcher/@comment-109.217.158.226-20160102161400/@comment-4900524-20160107182654\nTalk:Chaff Launcher/@comment-125.237.6.217-20170507075339\nTalk:Chaff Launcher/@comment-144.132.69.198-20150307105432\nTalk:Chaff Launcher/@comment-216.82.241.35-20160710180454\nTalk:Chaff Launcher/@comment-217.156.103.4-20150619155608\nTalk:Chaff Launcher/@comment-27115814-20151202174749\nTalk:Chaff Launcher/@comment-27115814-20151202174749/@comment-26391992-20151202222746\nTalk:Chaff Launcher/@comment-27115814-20151202174749/@comment-27115814-20151207015323\nTalk:Chaff Launcher/@comment-31.50.215.148-20150114231632\nTalk:Chaff Launcher/@comment-31.50.215.148-20150114231632/@comment-77.65.47.36-20150121222404\nTalk:Chaff Launcher/@comment-31.50.215.148-20150114231632/@comment-91.157.139.69-20150607183215\nTalk:Chaff Launcher/@comment-31.50.215.148-20150114231632/@comment-98.251.129.85-20150125224001\nTalk:Chaff Launcher/@comment-83.145.208.113-20150318115201\nTalk:Chaff Launcher/@comment-95.147.56.95-20150125111932\nTalk:Chaff Launcher/@comment-95.147.56.95-20150125111932/@comment-177.221.125.224-20160124125844\nTalk:Chameleon Cloth/@comment-77.50.26.143-20160930213615\nTalk:Charge Enhanced Power Distributor/@comment-2001:5B0:4BC0:D040:0:FF:FEBD:1C0-20180521211506\nTalk:Chateau De Aegaeon/@comment-86.5.28.193-20170705190035\nTalk:Chemical Distillery/@comment-24.71.229.161-20190831160249\nTalk:Chemical Distillery/@comment-2A02:8084:8081:7500:F15A:4EDA:8D02:4BA6-20190419134646\nTalk:Chemical Distillery/@comment-85.100.112.67-20190425123416\nTalk:Chemical Manipulators/@comment-173.48.19.154-20190615232042\nTalk:Chemical Manipulators/@comment-24.7.102.57-20180216092636\nTalk:Chemical Manipulators/@comment-31411324-20170304001537\nTalk:Chemical Manipulators/@comment-89.14.244.198-20171205143040\nTalk:Chemical Storage Units/@comment-109.193.200.242-20180304180319\nTalk:Cherbones Blood Crystals/@comment-109.252.67.195-20160705203408\nTalk:Cherbones Blood Crystals/@comment-109.252.67.195-20160705203408/@comment-67.180.204.10-20160917021058\nTalk:Cherbones Blood Crystals/@comment-189.171.56.226-20190726204807\nTalk:Cherbones Blood Crystals/@comment-67.180.204.10-20161124212634\nTalk:Cherbones Blood Crystals/@comment-67.180.204.10-20161124212634/@comment-210.55.18.198-20161124213741\nTalk:Cherbones Blood Crystals/@comment-67.180.204.10-20161124212634/@comment-27283317-20170220203555\nTalk:Chi Eridani Marine Paste/@comment-77.50.26.143-20160814203810\nTalk:Chieftain/@comment-216.164.232.183-20171008005827/@comment-216.164.232.183-20171024054731\nTalk:Chloe Sedesi/@comment-2601:189:C37F:9A42:F4AA:FF1B:BD62:5CBE-20190808200946\nTalk:Chloe Sedesi/@comment-2601:189:C37F:9A42:F4AA:FF1B:BD62:5CBE-20190808200946/@comment-24.251.246.7-20190808205435\nTalk:Chloe Sedesi/@comment-2601:189:C37F:9A42:F4AA:FF1B:BD62:5CBE-20190808200946/@comment-26935004-20190808212828\nTalk:Chloe Sedesi/@comment-5.51.143.54-20190808180410\nTalk:Chloe Sedesi/@comment-5.51.143.54-20190808180410/@comment-27941085-20190809102705\nTalk:Chloe Sedesi/@comment-80.163.7.134-20190919204228\nTalk:Chloe Sedesi/@comment-80.163.7.134-20190919204228/@comment-195.145.170.191-20190924074959\nTalk:Clothing/@comment-40158752-20200712233742\nTalk:Clothing/@comment-97.88.229.53-20171005125236\nTalk:Cluster Capacitors/@comment-70.162.79.148-20180729094118\nTalk:Cluster Capacitors/@comment-70.162.79.148-20180729094118/@comment-2600:8804:280:10E1:A151:79EB:CE54:ACF2-20190422040233\nTalk:Cobra/@comment-24.21.222.176-20151222003144\nTalk:Cobra/@comment-27040495-20151003085351\nTalk:Cobra Mk. III/@comment-101.127.136.157-20141005062821\nTalk:Cobra Mk. III/@comment-109.157.157.76-20140828235108\nTalk:Cobra Mk. III/@comment-109.157.157.76-20140828235233\nTalk:Cobra Mk. III/@comment-173.57.82.42-20140808185729\nTalk:Cobra Mk. III/@comment-173.57.82.42-20140808185729/@comment-84.155.240.188-20140809171837\nTalk:Cobra Mk. III/@comment-173.57.82.42-20140808185729/@comment-96.20.244.11-20140810235411\nTalk:Cobra Mk. III/@comment-173.57.82.42-20140808185729/@comment-97.104.99.141-20140809171722\nTalk:Cobra Mk. III/@comment-173.57.82.42-20140808185729/@comment-97.104.99.141-20140810152420\nTalk:Cobra Mk. III/@comment-174.98.122.121-20141126150527\nTalk:Cobra Mk. III/@comment-180.255.248.132-20141102171918/@comment-66.249.83.202-20141225102131\nTalk:Cobra Mk. III/@comment-180.255.248.132-20141102171918/@comment-70.193.16.46-20150114144125\nTalk:Cobra Mk. III/@comment-180.255.248.132-20141102171918/@comment-86.150.83.18-20141105205129\nTalk:Cobra Mk. III/@comment-185.26.182.34-20140828212800\nTalk:Cobra Mk. III/@comment-185.26.182.34-20140828212800/@comment-2.99.0.251-20140925214146\nTalk:Cobra Mk. III/@comment-185.26.182.34-20140828212800/@comment-92.163.93.169-20140902132129\nTalk:Cobra Mk. III/@comment-192.0.187.165-20141225172256\nTalk:Cobra Mk. III/@comment-192.0.187.165-20141225172256/@comment-12138097-20141226014100\nTalk:Cobra Mk. III/@comment-193.128.72.68-20141104124814\nTalk:Cobra Mk. III/@comment-193.128.72.68-20141104124814/@comment-109.189.56.160-20141109132144\nTalk:Cobra Mk. III/@comment-193.128.72.68-20141104124814/@comment-79.205.56.173-20141114235447\nTalk:Cobra Mk. III/@comment-206.174.97.138-20141118092830\nTalk:Cobra Mk. III/@comment-213.107.112.201-20141029010831/@comment-213.107.112.201-20141029230432\nTalk:Cobra Mk. III/@comment-213.107.112.201-20141029010831/@comment-86.173.139.49-20141029014546\nTalk:Cobra Mk. III/@comment-24.224.156.209-20140828213248\nTalk:Cobra Mk. III/@comment-25907915-20141222093128\nTalk:Cobra Mk. III/@comment-37.110.33.169-20141223201321\nTalk:Cobra Mk. III/@comment-66.229.135.252-20141223163930\nTalk:Cobra Mk. III/@comment-71.181.225.23-20140810184818\nTalk:Cobra Mk. III/@comment-75.73.1.43-20141223051357\nTalk:Cobra Mk. III/@comment-77.148.154.171-20141207103537\nTalk:Cobra Mk. III/@comment-78.145.219.117-20140831230414/@comment-91.135.8.90-20141019213236\nTalk:Cobra Mk. III/@comment-80.229.250.110-20140810161610\nTalk:Cobra Mk. III/@comment-80.60.35.115-20141224155300\nTalk:Cobra Mk. III/@comment-82.248.127.102-20140813142433\nTalk:Cobra Mk. III/@comment-84.172.217.81-20140809110304\nTalk:Cobra Mk. III/@comment-84.173.127.25-20141101102508\nTalk:Cobra Mk. III/@comment-84.245.27.111-20141201191227\nTalk:Cobra Mk. III/@comment-86.173.139.49-20141029011130\nTalk:Cobra Mk. III/@comment-88.134.134.115-20141126193124/@comment-84.245.27.111-20141201191305\nTalk:Cobra Mk. III/@comment-88.70.59.116-20140810182104\nTalk:Cobra Mk. III/@comment-88.70.59.116-20140810182104/@comment-66.249.83.213-20141225102325\nTalk:Cobra Mk. III/@comment-89.173.35.241-20141118190454\nTalk:Cobra MkIII/@comment-10328019-20150331145713\nTalk:Cobra MkIII/@comment-107.145.106.211-20150527043302\nTalk:Cobra MkIII/@comment-107.145.106.211-20150527043302/@comment-82.226.121.139-20150529120125\nTalk:Cobra MkIII/@comment-109.227.40.78-20150408085439\nTalk:Cobra MkIII/@comment-124.149.52.173-20160221101933\nTalk:Cobra MkIII/@comment-124.149.52.173-20160221101933/@comment-139.62.84.43-20160227073310\nTalk:Cobra MkIII/@comment-124.149.52.173-20160221101933/@comment-192.136.174.152-20160314160413\nTalk:Cobra MkIII/@comment-124.149.52.173-20160221101933/@comment-26391992-20160221145853\nTalk:Cobra MkIII/@comment-124.149.52.173-20160221101933/@comment-71.14.212.34-20160314143040\nTalk:Cobra MkIII/@comment-124.149.52.173-20160221101933/@comment-74.112.244.13-20160223053145\nTalk:Cobra MkIII/@comment-129.6.107.120-20150626153437\nTalk:Cobra MkIII/@comment-130.180.50.158-20170928071435\nTalk:Cobra MkIII/@comment-130.180.50.158-20170928071435/@comment-192.195.66.3-20171003184432\nTalk:Cobra MkIII/@comment-130.180.50.158-20170928071435/@comment-71.9.246.153-20180110145111\nTalk:Cobra MkIII/@comment-137.187.126.172-20141111143541\nTalk:Cobra MkIII/@comment-156.3.54.203-20150504152106\nTalk:Cobra MkIII/@comment-156.3.54.203-20150504152106/@comment-31.111.103.86-20150609103513\nTalk:Cobra MkIII/@comment-156.3.54.203-20150504152140\nTalk:Cobra MkIII/@comment-156.3.54.203-20150504152140/@comment-25411947-20150510181241\nTalk:Cobra MkIII/@comment-156.3.54.203-20150504152140/@comment-28774381-20160619033945\nTalk:Cobra MkIII/@comment-156.3.54.203-20150504152140/@comment-71.233.88.91-20160618162507\nTalk:Cobra MkIII/@comment-156.3.54.203-20150504152140/@comment-82.226.121.139-20150529120157\nTalk:Cobra MkIII/@comment-172.98.220.57-20150713193842\nTalk:Cobra MkIII/@comment-172.98.220.57-20150713193842/@comment-28774381-20160619032710\nTalk:Cobra MkIII/@comment-172.98.220.57-20150713193842/@comment-71.233.88.91-20160618162344\nTalk:Cobra MkIII/@comment-173.191.151.131-20151224082923\nTalk:Cobra MkIII/@comment-173.191.151.131-20151224082923/@comment-27061845-20160101192606\nTalk:Cobra MkIII/@comment-173.55.173.227-20150602051559\nTalk:Cobra MkIII/@comment-173.55.173.227-20150602051559/@comment-68.190.191.61-20160312041809\nTalk:Cobra MkIII/@comment-173.55.173.227-20150602052108\nTalk:Cobra MkIII/@comment-173.55.173.227-20150602052108/@comment-173.55.173.227-20150602052155\nTalk:Cobra MkIII/@comment-173.55.173.227-20150602052108/@comment-174.52.1.8-20150629014624\nTalk:Cobra MkIII/@comment-175.214.247.229-20150803154747\nTalk:Cobra MkIII/@comment-175.214.247.229-20150803154747/@comment-25450485-20150830183802\nTalk:Cobra MkIII/@comment-175.214.247.229-20150803154747/@comment-67.0.169.78-20150809195753\nTalk:Cobra MkIII/@comment-180.255.248.132-20141102171918\nTalk:Cobra MkIII/@comment-182.55.170.85-20141230101121\nTalk:Cobra MkIII/@comment-182.55.170.85-20141230101121/@comment-182.55.170.85-20141230101147\nTalk:Cobra MkIII/@comment-185.154.73.239-20190204123232\nTalk:Cobra MkIII/@comment-185.154.73.239-20190204123232/@comment-160.3.38.154-20190427081622\nTalk:Cobra MkIII/@comment-185.154.73.239-20190204123232/@comment-192.136.170.98-20190204141953\nTalk:Cobra MkIII/@comment-185.154.73.239-20190204123232/@comment-43982350-20200917153738\nTalk:Cobra MkIII/@comment-188.2.22.207-20180123181303\nTalk:Cobra MkIII/@comment-192.136.161.52-20170103205617\nTalk:Cobra MkIII/@comment-194.138.39.55-20150217082617\nTalk:Cobra MkIII/@comment-2001:569:7356:C800:A931:C732:B6CD:4FEE-20171126040857\nTalk:Cobra MkIII/@comment-2001:569:7356:C800:A931:C732:B6CD:4FEE-20171126040857/@comment-43982350-20200917153931\nTalk:Cobra MkIII/@comment-213.107.112.201-20141029010831\nTalk:Cobra MkIII/@comment-213.48.137.24-20151212125803\nTalk:Cobra MkIII/@comment-213.48.137.24-20151212125803/@comment-26391992-20151212135813\nTalk:Cobra MkIII/@comment-217.37.111.25-20150807114741\nTalk:Cobra MkIII/@comment-217.37.111.25-20150807114741/@comment-139.62.81.119-20151010012328\nTalk:Cobra MkIII/@comment-220.239.44.18-20150510160110\nTalk:Cobra MkIII/@comment-25907915-20141222093128/@comment-145.253.244.83-20150203120555\nTalk:Cobra MkIII/@comment-25907915-20141222093128/@comment-185.13.72.6-20141223085024\nTalk:Cobra MkIII/@comment-25907915-20141222093128/@comment-220.233.117.211-20150416002846\nTalk:Cobra MkIII/@comment-2600:1017:B02F:5977:203E:B575:85DD:4D8E-20190116161115\nTalk:Cobra MkIII/@comment-2600:1017:B02F:5977:203E:B575:85DD:4D8E-20190116161115/@comment-94.213.251.41-20200217112533\nTalk:Cobra MkIII/@comment-2603:9001:402:3C00:35EB:F57A:8A3F:A912-20181106023047\nTalk:Cobra MkIII/@comment-2603:9001:402:3C00:35EB:F57A:8A3F:A912-20181106023047/@comment-104.129.198.145-20190117123229\nTalk:Cobra MkIII/@comment-26048696-20150129000958\nTalk:Cobra MkIII/@comment-2606:A000:54C9:D700:1863:7A32:791A:2C3A-20180105202241\nTalk:Cobra MkIII/@comment-2606:A000:54C9:D700:1863:7A32:791A:2C3A-20180105202241/@comment-192.136.161.33-20180105205547\nTalk:Cobra MkIII/@comment-2606:A000:54C9:D700:1863:7A32:791A:2C3A-20180105202241/@comment-2.31.43.126-20180108120148\nTalk:Cobra MkIII/@comment-2606:A000:54C9:D700:1863:7A32:791A:2C3A-20180105202241/@comment-5959508-20180105205034\nTalk:Cobra MkIII/@comment-26174322-20150422113501\nTalk:Cobra MkIII/@comment-26810344-20150722214813\nTalk:Cobra MkIII/@comment-29851768-20160904053232\nTalk:Cobra MkIII/@comment-29851768-20160904053232/@comment-101.167.18.173-20160917135323\nTalk:Cobra MkIII/@comment-29851768-20160904053232/@comment-5959508-20160918102534\nTalk:Cobra MkIII/@comment-2A02:C7F:2218:7000:B166:BA9C:9FE1:89CB-20180612120245\nTalk:Cobra MkIII/@comment-31071818-20170117074307\nTalk:Cobra MkIII/@comment-31071818-20170117074307/@comment-31071818-20170117181006\nTalk:Cobra MkIII/@comment-31071818-20170117074307/@comment-5959508-20170117134947\nTalk:Cobra MkIII/@comment-31071818-20170117074307/@comment-67.21.153.142-20170621181827\nTalk:Cobra MkIII/@comment-31071818-20171123192957\nTalk:Cobra MkIII/@comment-46.16.3.212-20151027121604\nTalk:Cobra MkIII/@comment-46.16.3.212-20151027121604/@comment-1.121.143.161-20160825070413\nTalk:Cobra MkIII/@comment-46.16.3.212-20151027121604/@comment-143.81.103.35-20160118005643\nTalk:Cobra MkIII/@comment-46.16.3.212-20151027121604/@comment-192.136.172.239-20160211192908\nTalk:Cobra MkIII/@comment-46.16.3.212-20151027121604/@comment-24.18.40.26-20161016225045\nTalk:Cobra MkIII/@comment-50.4.239.175-20151129041935\nTalk:Cobra MkIII/@comment-50.4.239.175-20151129041935/@comment-28774381-20160619032136\nTalk:Cobra MkIII/@comment-50.4.239.175-20151129041935/@comment-63.64.75.10-20151216211115\nTalk:Cobra MkIII/@comment-50.4.239.175-20151129041935/@comment-71.233.88.91-20160618162228\nTalk:Cobra MkIII/@comment-50.4.239.175-20160410173308\nTalk:Cobra MkIII/@comment-50.4.239.175-20160410173308/@comment-28774381-20160619033104\nTalk:Cobra MkIII/@comment-50.4.239.175-20160410173308/@comment-71.233.88.91-20160618162052\nTalk:Cobra MkIII/@comment-63.116.31.198-20181029184316\nTalk:Cobra MkIII/@comment-63.116.31.198-20181029184316/@comment-63.116.31.198-20181029194830\nTalk:Cobra MkIII/@comment-63.116.31.198-20181029184316/@comment-90.200.46.38-20181129140654\nTalk:Cobra MkIII/@comment-66.229.135.252-20141213140248\nTalk:Cobra MkIII/@comment-68.191.44.201-20160820023046\nTalk:Cobra MkIII/@comment-68.191.44.201-20160820023046/@comment-206.208.187.105-20161216182840\nTalk:Cobra MkIII/@comment-68.191.44.201-20160820023046/@comment-3243078-20160820025755\nTalk:Cobra MkIII/@comment-69.115.181.180-20150102072105\nTalk:Cobra MkIII/@comment-69.115.181.180-20150102072105/@comment-144.46.104.12-20150121220755\nTalk:Cobra MkIII/@comment-69.115.181.180-20150102072105/@comment-4968814-20150110193027\nTalk:Cobra MkIII/@comment-69.115.181.180-20150102072105/@comment-84.51.142.99-20150110192043\nTalk:Cobra MkIII/@comment-69.115.181.180-20150102072105/@comment-86.136.233.194-20150130223715\nTalk:Cobra MkIII/@comment-70.173.1.224-20150404061505\nTalk:Cobra MkIII/@comment-70.30.83.108-20141227165207\nTalk:Cobra MkIII/@comment-70.69.170.20-20150430074646\nTalk:Cobra MkIII/@comment-71.194.44.102-20170216065133\nTalk:Cobra MkIII/@comment-71.194.44.102-20170216065133/@comment-150.208.129.188-20170426141344\nTalk:Cobra MkIII/@comment-71.194.44.102-20170216065133/@comment-220.244.176.109-20171023130425\nTalk:Cobra MkIII/@comment-71.194.44.102-20170216065133/@comment-80.189.152.40-20170502185220\nTalk:Cobra MkIII/@comment-71.233.88.91-20160618162014\nTalk:Cobra MkIII/@comment-71.233.88.91-20160618162014/@comment-28774381-20160619033435\nTalk:Cobra MkIII/@comment-71.233.88.91-20160618162014/@comment-3243078-20160630044614\nTalk:Cobra MkIII/@comment-74.90.148.115-20161127172222\nTalk:Cobra MkIII/@comment-74.90.148.115-20161127172222/@comment-5959508-20161127232500\nTalk:Cobra MkIII/@comment-75.73.1.43-20141223051357/@comment-174.102.96.147-20141229064626\nTalk:Cobra MkIII/@comment-78.145.219.117-20140831230414\nTalk:Cobra MkIII/@comment-78.145.219.117-20140831230414/@comment-92.40.249.183-20141124075111\nTalk:Cobra MkIII/@comment-79.233.154.223-20141226010203\nTalk:Cobra MkIII/@comment-79.233.154.223-20141226010203/@comment-199.7.157.113-20141227200047\nTalk:Cobra MkIII/@comment-79.97.180.45-20150409181716\nTalk:Cobra MkIII/@comment-79.97.180.45-20150409181716/@comment-135.0.26.15-20150911170444\nTalk:Cobra MkIII/@comment-79.97.180.45-20150409181716/@comment-50.72.129.161-20150420060713\nTalk:Cobra MkIII/@comment-8.20.190.2-20180328152606\nTalk:Cobra MkIII/@comment-80.229.250.110-20140810161610/@comment-82.3.92.172-20140811202440\nTalk:Cobra MkIII/@comment-80.60.35.115-20141224155300/@comment-87.104.178.202-20150121084121\nTalk:Cobra MkIII/@comment-81.140.87.119-20190212115007\nTalk:Cobra MkIII/@comment-81.140.87.119-20190212115007/@comment-192.136.170.98-20190212194048\nTalk:Cobra MkIII/@comment-82.0.221.126-20150110230357\nTalk:Cobra MkIII/@comment-82.0.221.126-20150110230357/@comment-31.164.1.124-20150118120513\nTalk:Cobra MkIII/@comment-82.153.100.10-20151205005246\nTalk:Cobra MkIII/@comment-82.153.100.10-20151205005246/@comment-5959508-20160918103518\nTalk:Cobra MkIII/@comment-82.181.70.174-20141129000459\nTalk:Cobra MkIII/@comment-82.181.70.174-20141129000459/@comment-92.30.188.129-20141130215004\nTalk:Cobra MkIII/@comment-83.71.11.235-20150223181113\nTalk:Cobra MkIII/@comment-83.9.74.202-20150302212503\nTalk:Cobra MkIII/@comment-84.159.107.114-20150427152353\nTalk:Cobra MkIII/@comment-84.159.107.114-20150427152353/@comment-25440734-20150506112658\nTalk:Cobra MkIII/@comment-84.159.107.114-20150427152353/@comment-26009169-20150427191944\nTalk:Cobra MkIII/@comment-84.159.107.114-20150427152353/@comment-26420537-20150528222651\nTalk:Cobra MkIII/@comment-84.159.107.114-20150427152353/@comment-28774381-20160619033348\nTalk:Cobra MkIII/@comment-84.159.107.114-20150427152353/@comment-71.233.88.91-20160618165041\nTalk:Cobra MkIII/@comment-86.133.43.124-20181230140730\nTalk:Cobra MkIII/@comment-88.134.134.115-20141126193124\nTalk:Cobra MkIII/@comment-88.85.155.146-20150223154405\nTalk:Cobra MkIII/@comment-88.85.155.146-20150404013221\nTalk:Cobra MkIII/@comment-89.173.35.241-20141118190454/@comment-66.249.83.207-20141225102033\nTalk:Cobra MkIII/@comment-90.200.46.38-20181105110747\nTalk:Cobra MkIII/@comment-90.200.46.38-20181105110747/@comment-90.200.46.38-20181105153120\nTalk:Cobra MkIII/@comment-91.66.140.21-20150223024318\nTalk:Cobra MkIII/@comment-95.90.240.212-20160317155927\nTalk:Cobra MkIV/@comment-100.34.167.47-20161017043914\nTalk:Cobra MkIV/@comment-101.98.24.29-20160107064354\nTalk:Cobra MkIV/@comment-107.145.106.211-20150807061632\nTalk:Cobra MkIV/@comment-107.184.139.70-20181122060513\nTalk:Cobra MkIV/@comment-107.184.139.70-20181122060513/@comment-10435691-20191017214108\nTalk:Cobra MkIV/@comment-107.184.139.70-20181122060513/@comment-170.185.126.17-20191111140826\nTalk:Cobra MkIV/@comment-107.184.139.70-20181122060513/@comment-188.192.150.95-20181125160605\nTalk:Cobra MkIV/@comment-107.184.139.70-20181122060513/@comment-192.136.170.98-20181125161419\nTalk:Cobra MkIV/@comment-107.184.139.70-20181122060513/@comment-90.200.49.195-20190113170625\nTalk:Cobra MkIV/@comment-107.206.119.120-20170317010345\nTalk:Cobra MkIV/@comment-108.171.130.176-20170324214432\nTalk:Cobra MkIV/@comment-108.171.130.176-20170324214432/@comment-176.241.72.203-20190726143801\nTalk:Cobra MkIV/@comment-108.171.130.176-20170324214432/@comment-188.192.150.95-20181125163533\nTalk:Cobra MkIV/@comment-108.171.130.176-20170324214432/@comment-2155082-20170325004637\nTalk:Cobra MkIV/@comment-108.171.130.176-20170324214432/@comment-2602:306:B869:DEA0:58D1:3ABD:891A:613D-20190329053114\nTalk:Cobra MkIV/@comment-108.171.130.176-20170324214432/@comment-95.160.253.232-20180303223617\nTalk:Cobra MkIV/@comment-114.198.29.238-20150822052256\nTalk:Cobra MkIV/@comment-12.5.54.135-20151209163839\nTalk:Cobra MkIV/@comment-120.20.50.11-20160104125520\nTalk:Cobra MkIV/@comment-124.171.95.79-20170606042752\nTalk:Cobra MkIV/@comment-128.176.10.41-20150812141654\nTalk:Cobra MkIV/@comment-128.176.10.41-20150812141654/@comment-72.241.143.238-20150822045620\nTalk:Cobra MkIV/@comment-128.176.10.41-20150812141654/@comment-73.1.55.15-20150821044307\nTalk:Cobra MkIV/@comment-128.176.10.41-20150812141654/@comment-88.112.91.114-20150814130820\nTalk:Cobra MkIV/@comment-128.176.10.41-20150812141654/@comment-88.112.91.114-20150814130928\nTalk:Cobra MkIV/@comment-139.62.26.121-20150910203842\nTalk:Cobra MkIV/@comment-139.62.26.121-20150910203842/@comment-86.1.61.9-20151102004733\nTalk:Cobra MkIV/@comment-153.107.192.204-20160308230624\nTalk:Cobra MkIV/@comment-153.107.192.204-20160308230624/@comment-195.169.10.12-20160630132858\nTalk:Cobra MkIV/@comment-174.60.8.181-20150817005126\nTalk:Cobra MkIV/@comment-174.60.8.181-20150817005126/@comment-156.3.54.203-20150904183339\nTalk:Cobra MkIV/@comment-174.60.8.181-20150817005126/@comment-217.155.43.123-20150820130238\nTalk:Cobra MkIV/@comment-174.60.8.181-20150817005126/@comment-228629-20150820152549\nTalk:Cobra MkIV/@comment-174.60.8.181-20150817005126/@comment-64.253.182.195-20150817160129\nTalk:Cobra MkIV/@comment-174.60.8.181-20150817005126/@comment-71.114.112.234-20150819002813\nTalk:Cobra MkIV/@comment-174.60.8.181-20150817005126/@comment-84.30.161.90-20151105142744\nTalk:Cobra MkIV/@comment-174.60.8.181-20150817005126/@comment-86.11.99.35-20150822194830\nTalk:Cobra MkIV/@comment-174.60.8.181-20150817005126/@comment-86.183.105.175-20150916204525\nTalk:Cobra MkIV/@comment-176.212.206.134-20151217114423\nTalk:Cobra MkIV/@comment-176.212.206.134-20151217114423/@comment-24.255.176.40-20160912140839\nTalk:Cobra MkIV/@comment-176.212.206.134-20151217114423/@comment-63.64.75.10-20151217164825\nTalk:Cobra MkIV/@comment-188.174.168.28-20150822195453\nTalk:Cobra MkIV/@comment-188.174.168.28-20150822195453/@comment-125.238.115.135-20150826003542\nTalk:Cobra MkIV/@comment-188.174.168.28-20150822195453/@comment-24.255.168.35-20151208022743\nTalk:Cobra MkIV/@comment-188.174.168.28-20150822195453/@comment-27117398-20151213063825\nTalk:Cobra MkIV/@comment-188.174.168.28-20150822195453/@comment-86.163.29.132-20150903213019\nTalk:Cobra MkIV/@comment-188.174.168.28-20150822195453/@comment-86.183.105.175-20150916203941\nTalk:Cobra MkIV/@comment-188.192.150.95-20181125160441\nTalk:Cobra MkIV/@comment-188.192.150.95-20181125160441/@comment-170.185.126.17-20191111140750\nTalk:Cobra MkIV/@comment-188.192.150.95-20181125160441/@comment-176.189.188.66-20200216192723\nTalk:Cobra MkIV/@comment-2.123.73.219-20150823183204\nTalk:Cobra MkIV/@comment-2.123.73.219-20150823183204/@comment-195.128.129.199-20150901073833\nTalk:Cobra MkIV/@comment-2.85.79.178-20170110165139\nTalk:Cobra MkIV/@comment-2.85.79.178-20170110165139/@comment-12.233.203.202-20170205201708\nTalk:Cobra MkIV/@comment-2.85.79.178-20170110165139/@comment-188.192.150.95-20181125164932\nTalk:Cobra MkIV/@comment-2.85.79.178-20170110165139/@comment-2155082-20170205211402\nTalk:Cobra MkIV/@comment-2.85.79.178-20170110165139/@comment-24.7.44.194-20170122073404\nTalk:Cobra MkIV/@comment-2.85.79.178-20170110165139/@comment-5959508-20170205205601\nTalk:Cobra MkIV/@comment-207.47.253.237-20150823015207\nTalk:Cobra MkIV/@comment-212.59.37.193-20151201120317\nTalk:Cobra MkIV/@comment-212.59.37.193-20151201120317/@comment-159.147.253.163-20151201143454\nTalk:Cobra MkIV/@comment-212.59.37.193-20151201120317/@comment-212.59.37.193-20151202140004\nTalk:Cobra MkIV/@comment-212.59.37.193-20151201120317/@comment-217.121.218.161-20151201142617\nTalk:Cobra MkIV/@comment-212.59.37.193-20151201120317/@comment-217.121.218.161-20151201193953\nTalk:Cobra MkIV/@comment-24.184.12.72-20150805233807\nTalk:Cobra MkIV/@comment-24.184.12.72-20150805233807/@comment-125.238.115.135-20150826003848\nTalk:Cobra MkIV/@comment-24.184.12.72-20150805233807/@comment-195.167.134.220-20151008094133\nTalk:Cobra MkIV/@comment-24.184.12.72-20150805233807/@comment-79.231.50.100-20151103184627\nTalk:Cobra MkIV/@comment-24814863-20181006180143\nTalk:Cobra MkIV/@comment-24814863-20181006180143/@comment-24814863-20181104201048\nTalk:Cobra MkIV/@comment-24814863-20181006180143/@comment-25527827-20181026125757\nTalk:Cobra MkIV/@comment-24814863-20181006180143/@comment-90.200.46.38-20181026125211\nTalk:Cobra MkIV/@comment-24814863-20181006180143/@comment-90.200.46.38-20181028182235\nTalk:Cobra MkIV/@comment-24814863-20181006180143/@comment-90.200.46.38-20181104150622\nTalk:Cobra MkIV/@comment-2601:404:C400:2841:24B2:BDDF:2E45:5DF4-20180821081219\nTalk:Cobra MkIV/@comment-2601:404:C400:2841:24B2:BDDF:2E45:5DF4-20180821081219/@comment-2601:404:C400:2841:24B2:BDDF:2E45:5DF4-20180821081309\nTalk:Cobra MkIV/@comment-2601:407:8500:7827:A83C:7F11:EF1C:B315-20170713232625\nTalk:Cobra MkIV/@comment-2601:407:8500:7827:A83C:7F11:EF1C:B315-20170713232625/@comment-2155082-20170713235616\nTalk:Cobra MkIV/@comment-26372902-20150807164318\nTalk:Cobra MkIV/@comment-26372902-20150807164318/@comment-86.161.153.188-20150809134919\nTalk:Cobra MkIV/@comment-26391992-20151202185012\nTalk:Cobra MkIV/@comment-26391992-20151202185012/@comment-212.59.37.193-20151204071329\nTalk:Cobra MkIV/@comment-26391992-20151202185012/@comment-217.121.218.161-20151203151250\nTalk:Cobra MkIV/@comment-26391992-20151202185012/@comment-217.121.218.161-20151205124317\nTalk:Cobra MkIV/@comment-26391992-20151202185012/@comment-24.255.168.35-20151208022217\nTalk:Cobra MkIV/@comment-26391992-20151202185012/@comment-26391992-20151209165955\nTalk:Cobra MkIV/@comment-26391992-20151225195748\nTalk:Cobra MkIV/@comment-26391992-20151225195748/@comment-26391992-20160116002419\nTalk:Cobra MkIV/@comment-26391992-20151225195748/@comment-27601336-20160113021248\nTalk:Cobra MkIV/@comment-26537865-20150806050115\nTalk:Cobra MkIV/@comment-26537865-20150806050115/@comment-2.238.195.28-20150808080125\nTalk:Cobra MkIV/@comment-26537865-20150806050115/@comment-26176485-20150808064420\nTalk:Cobra MkIV/@comment-26537865-20150806050115/@comment-26372902-20150807141842\nTalk:Cobra MkIV/@comment-27061845-20151215133328\nTalk:Cobra MkIV/@comment-27061845-20151215133328/@comment-1640573-20151224025659\nTalk:Cobra MkIV/@comment-27061845-20151215133328/@comment-27061845-20151230054407\nTalk:Cobra MkIV/@comment-27115814-20160106161650\nTalk:Cobra MkIV/@comment-27115814-20160106161650/@comment-2601:243:480:98D9:98A2:D697:8B24:AE92-20180311022757\nTalk:Cobra MkIV/@comment-2A02:A457:2CD9:1:4CB4:52F2:9CAF:E303-20191014095619\nTalk:Cobra MkIV/@comment-41.190.136.10-20150806114906\nTalk:Cobra MkIV/@comment-45677112-20200511161457\nTalk:Cobra MkIV/@comment-47.72.234.151-20151201101109\nTalk:Cobra MkIV/@comment-5.146.49.4-20150814180946\nTalk:Cobra MkIV/@comment-5.146.49.4-20150814180946/@comment-12.5.54.135-20151209163947\nTalk:Cobra MkIV/@comment-5.146.49.4-20150814180946/@comment-2.101.122.1-20150914082619\nTalk:Cobra MkIV/@comment-5.146.49.4-20150814180946/@comment-5.146.49.4-20150816223254\nTalk:Cobra MkIV/@comment-5.146.49.4-20150814180946/@comment-72.241.143.238-20150822045459\nTalk:Cobra MkIV/@comment-5.146.49.4-20150814180946/@comment-82.226.121.139-20150816025922\nTalk:Cobra MkIV/@comment-5.146.49.4-20150814180946/@comment-86.183.105.175-20150916204741\nTalk:Cobra MkIV/@comment-60.240.105.60-20170706051719\nTalk:Cobra MkIV/@comment-60.240.105.60-20170706051719/@comment-170.185.126.17-20191111141123\nTalk:Cobra MkIV/@comment-60.240.105.60-20170706051719/@comment-176.241.72.203-20190726143516\nTalk:Cobra MkIV/@comment-60.240.105.60-20170706051719/@comment-188.192.150.95-20181125164205\nTalk:Cobra MkIV/@comment-60.240.105.60-20170706051719/@comment-24814863-20181120092943\nTalk:Cobra MkIV/@comment-60.240.105.60-20170706051719/@comment-2601:243:480:98D9:98A2:D697:8B24:AE92-20180311022538\nTalk:Cobra MkIV/@comment-60.240.105.60-20170706051719/@comment-98.193.10.19-20181119223336\nTalk:Cobra MkIV/@comment-63.64.75.10-20151216193811\nTalk:Cobra MkIV/@comment-63.64.75.10-20151216193811/@comment-24.255.176.40-20160912141209\nTalk:Cobra MkIV/@comment-63.64.75.10-20151216193811/@comment-26391992-20151217183817\nTalk:Cobra MkIV/@comment-64.141.144.2-20160120153017\nTalk:Cobra MkIV/@comment-64.141.144.2-20160120153017/@comment-207.253.170.194-20160125212150\nTalk:Cobra MkIV/@comment-67.160.185.247-20150813184942\nTalk:Cobra MkIV/@comment-67.160.185.247-20150813184942/@comment-195.167.134.220-20151008094019\nTalk:Cobra MkIV/@comment-67.160.185.247-20150813184942/@comment-26536231-20151008171457\nTalk:Cobra MkIV/@comment-67.160.185.247-20150813184942/@comment-59.101.161.212-20150817053602\nTalk:Cobra MkIV/@comment-67.160.185.247-20150813184942/@comment-71.57.181.142-20150815200513\nTalk:Cobra MkIV/@comment-67.160.185.247-20150813184942/@comment-88.112.91.114-20150814130213\nTalk:Cobra MkIV/@comment-69.157.147.240-20151026200229\nTalk:Cobra MkIV/@comment-69.157.147.240-20151026200229/@comment-217.121.218.161-20151117103155\nTalk:Cobra MkIV/@comment-69.157.147.240-20151026200229/@comment-26227424-20160622010120\nTalk:Cobra MkIV/@comment-69.157.147.240-20151026200229/@comment-26391992-20151118103053\nTalk:Cobra MkIV/@comment-69.157.147.240-20151026200229/@comment-27115814-20151130160016\nTalk:Cobra MkIV/@comment-69.157.147.240-20151026200229/@comment-70.173.129.249-20151118163628\nTalk:Cobra MkIV/@comment-69.157.147.240-20151026200229/@comment-71.57.181.142-20151111102555\nTalk:Cobra MkIV/@comment-70.198.77.37-20150805182351\nTalk:Cobra MkIV/@comment-72.241.143.238-20150822045301\nTalk:Cobra MkIV/@comment-73.247.74.111-20160928124255\nTalk:Cobra MkIV/@comment-73.247.74.111-20160928124255/@comment-189.4.62.61-20181227042653\nTalk:Cobra MkIV/@comment-73.247.74.111-20160928124255/@comment-2601:243:480:98D9:98A2:D697:8B24:AE92-20180311022641\nTalk:Cobra MkIV/@comment-80.111.247.10-20160823151134\nTalk:Cobra MkIV/@comment-80.115.31.199-20170827204133\nTalk:Cobra MkIV/@comment-82.226.121.139-20150810025610\nTalk:Cobra MkIV/@comment-82.226.121.139-20150810025610/@comment-101.183.159.193-20150816150256\nTalk:Cobra MkIV/@comment-82.226.121.139-20150810025610/@comment-101.183.159.193-20150816150426\nTalk:Cobra MkIV/@comment-82.226.121.139-20150810025610/@comment-185.37.87.177-20150814045915\nTalk:Cobra MkIV/@comment-82.226.121.139-20150810025610/@comment-82.226.121.139-20150816030213\nTalk:Cobra MkIV/@comment-82.226.121.139-20150810025610/@comment-82.226.121.139-20150816030239\nTalk:Cobra MkIV/@comment-82.226.121.139-20150810025610/@comment-82.226.121.139-20150817003601\nTalk:Cobra MkIV/@comment-8331418-20150831064242\nTalk:Cobra MkIV/@comment-8331418-20150831064242/@comment-8331418-20150831064711\nTalk:Cobra MkIV/@comment-8331418-20150831064242/@comment-96.254.94.56-20151201024439\nTalk:Cobra MkIV/@comment-84.195.55.196-20181206134717\nTalk:Cobra MkIV/@comment-84.195.55.196-20181206134717/@comment-171.33.196.239-20191217154455\nTalk:Cobra MkIV/@comment-84.195.55.196-20181206134717/@comment-90.200.49.195-20190113165529\nTalk:Cobra MkIV/@comment-86.1.61.9-20151222093717\nTalk:Cobra MkIV/@comment-89.177.56.212-20170205103434\nTalk:Cobra MkIV/@comment-89.177.56.212-20170205103434/@comment-170.185.126.17-20191111141307\nTalk:Cobra MkIV/@comment-89.177.56.212-20170205103434/@comment-2155082-20170205211829\nTalk:Cobra MkIV/@comment-89.177.56.212-20170205103434/@comment-5959508-20170205105950\nTalk:Cobra MkIV/@comment-89.233.232.121-20150805200035\nTalk:Cobra MkIV/@comment-89.233.232.121-20150805200035/@comment-125.238.115.135-20150826003921\nTalk:Cobra MkIV/@comment-89.233.232.121-20150805200035/@comment-45.56.58.139-20150810152609\nTalk:Cobra MkIV/@comment-89.233.232.121-20150805200035/@comment-71.76.244.78-20150806011654\nTalk:Cobra MkIV/@comment-89.233.232.121-20150805200035/@comment-74.89.225.194-20150805213635\nTalk:Cobra MkIV/@comment-90.218.66.188-20190607203924\nTalk:Cobra MkIV/@comment-90.218.66.188-20190607203924/@comment-176.241.72.203-20190726142945\nTalk:Cobra MkIV/@comment-90.218.66.188-20190607203924/@comment-45677112-20200511162845\nTalk:Cobra MkIV/@comment-90.218.66.188-20190607203924/@comment-96.250.114.167-20190917025511\nTalk:Cobra MkIV/@comment-91.11.91.178-20150805111405\nTalk:Cobra MkIV/@comment-91.11.91.178-20150805111405/@comment-87.15.4.187-20150806104549\nTalk:Cobra MkIV/@comment-91.11.91.178-20150805111405/@comment-91.11.91.178-20150805142543\nTalk:Cobra MkIV/@comment-95.90.200.1-20160111224402\nTalk:Cobra MkIV/@comment-95.90.200.1-20160111224402/@comment-27385929-20160131170301\nTalk:Cobra MkIV/@comment-95.90.200.1-20160111224402/@comment-85.85.225.97-20160221163423\nTalk:Cobra MkIV/@comment-98.171.162.230-20150806035835\nTalk:Cobra MkIV/@comment-98.171.162.230-20150806035835/@comment-104.247.243.179-20150811181256\nTalk:Cobra MkIV/@comment-98.171.162.230-20150806035835/@comment-84.30.161.90-20151105142940\nTalk:Cobra MkIV/@comment-98.198.144.47-20160120185133\nTalk:Cobra MkIV/@comment-98.198.144.47-20160120185133/@comment-78.144.198.30-20160122144610\nTalk:Cobra MkIV/@comment-98.248.8.62-20160207101510\nTalk:Cobra MkIV/@comment-98.248.8.62-20160207101510/@comment-41.164.51.34-20160213072832\nTalk:Cobra Mk III/@comment-137.187.126.172-20141111143541\nTalk:Cobra Mk III/@comment-75.73.1.43-20141223051357/@comment-174.102.96.147-20141229064626\nTalk:Cobra Mk III/@comment-80.229.250.110-20140810161610/@comment-82.3.92.172-20140811202440\nTalk:Cobra Mk III/@comment-80.60.35.115-20141224155300/@comment-87.104.178.202-20150121084121\nTalk:Cobra Mk III/@comment-89.173.35.241-20141118190454/@comment-66.249.83.207-20141225102033\nTalk:Cobra Mk IV/@comment-107.145.106.211-20150807061632\nTalk:Cobra Mk IV/@comment-24.184.12.72-20150805233807\nTalk:Cobra Mk IV/@comment-24.184.12.72-20150805233807/@comment-125.238.115.135-20150826003848\nTalk:Cobra Mk IV/@comment-24.184.12.72-20150805233807/@comment-195.167.134.220-20151008094133\nTalk:Cobra Mk IV/@comment-24.184.12.72-20150805233807/@comment-79.231.50.100-20151103184627\nTalk:Cobra Mk IV/@comment-41.190.136.10-20150806114906\nTalk:Cobra Mk IV/@comment-70.198.77.37-20150805182351\nTalk:Cobra Mk IV/@comment-89.233.232.121-20150805200035\nTalk:Cobra Mk IV/@comment-89.233.232.121-20150805200035/@comment-125.238.115.135-20150826003921\nTalk:Cobra Mk IV/@comment-89.233.232.121-20150805200035/@comment-45.56.58.139-20150810152609\nTalk:Cobra Mk IV/@comment-89.233.232.121-20150805200035/@comment-71.76.244.78-20150806011654\nTalk:Cobra Mk IV/@comment-89.233.232.121-20150805200035/@comment-74.89.225.194-20150805213635\nTalk:Cobra Mk IV/@comment-91.11.91.178-20150805111405\nTalk:Cobra Mk IV/@comment-91.11.91.178-20150805111405/@comment-87.15.4.187-20150806104549\nTalk:Cobra Mk IV/@comment-91.11.91.178-20150805111405/@comment-91.11.91.178-20150805142543\nTalk:Cobra Mk IV/@comment-98.171.162.230-20150806035835\nTalk:Cobra Mk IV/@comment-98.171.162.230-20150806035835/@comment-104.247.243.179-20150811181256\nTalk:Cobra Mk IV/@comment-98.171.162.230-20150806035835/@comment-84.30.161.90-20151105142940\nTalk:Codex/@comment-178.78.104.247-20181009174338\nTalk:Codex/@comment-178.78.104.247-20181009174338/@comment-98.232.151.219-20190226014143\nTalk:Codex/@comment-2601:248:300:58C5:8820:8A06:5E6B:A898-20190307214837\nTalk:Codex/@comment-2601:248:300:58C5:8820:8A06:5E6B:A898-20190307214837/@comment-2601:248:300:58C5:8820:8A06:5E6B:A898-20190307215321\nTalk:Codex/@comment-90.200.49.195-20181211191312\nTalk:Coffee/@comment-88.115.190.42-20150122201605\nTalk:Coffee/@comment-88.115.190.42-20150122201605/@comment-213.128.183.200-20150317201526\nTalk:Colonia/@comment-33823123-20180620064411\nTalk:Colonia/@comment-33823123-20180620064411/@comment-91.160.197.187-20180930022902\nTalk:Colonia/@comment-47.216.244.89-20180326035658\nTalk:Colonia/@comment-7981560-20180210170936\nTalk:Colonia/@comment-7981560-20180210170936/@comment-10291972-20180307110008\nTalk:Colonia/@comment-7981560-20180210170936/@comment-66.191.253.76-20180429232412\nTalk:Colonia/@comment-84.61.204.165-20190228131542\nTalk:Colonia/@comment-87.128.14.118-20170906112920\nTalk:Colonia Connection Highway/@comment-188.25.190.143-20190315162141\nTalk:Colonia Connection Highway/@comment-26005414-20180424173506\nTalk:Colonia Connection Highway/@comment-2600:8801:1D8B:2940:4035:D9B4:4F1C:568A-20171102233538\nTalk:Colonia Connection Highway/@comment-2600:8801:1D8B:2940:4035:D9B4:4F1C:568A-20171102233538/@comment-51.6.174.59-20180109132738\nTalk:Colonia Connection Highway/@comment-2600:8801:1D8B:2940:4035:D9B4:4F1C:568A-20171102233538/@comment-80.121.159.162-20171129094340\nTalk:Colonia Connection Highway/@comment-2600:8801:1D8B:2940:4035:D9B4:4F1C:568A-20171102233538/@comment-81.30.34.229-20171130115959\nTalk:Colonia Connection Highway/@comment-27140474-20171013163547\nTalk:Colonia Connection Highway/@comment-27140474-20171013163547/@comment-26810597-20171013214013\nTalk:Colonia Connection Highway/@comment-2A02:C7D:C633:7200:5464:5EA0:EB4C:4FDC-20171020191436\nTalk:Colonia Connection Highway/@comment-2A02:C7F:7A11:5E00:81EB:AF34:8184:131C-20180729162233\nTalk:Colonia Connection Highway/@comment-50.202.133.133-20190729204656\nTalk:Colonia Connection Highway/@comment-68.186.3.230-20171026211450\nTalk:Colonia Connection Highway/@comment-75.99.83.122-20170930004556\nTalk:Colonia Connection Highway/@comment-83.105.132.73-20171019204458\nTalk:Colonia Connection Highway/@comment-87.121.77.18-20180131142110\nTalk:Colonia Connection Highway/@comment-87.121.77.18-20180131142110/@comment-2A00:23C4:B12B:3900:10AC:A93B:F40F:C900-20180209062646\nTalk:Colonia Connection Highway/@comment-90.44.57.44-20190428181843\nTalk:Colonia Connection Highway/@comment-92.60.14.210-20190111083111\nTalk:Colonia Council/@comment-92.211.21.36-20190314153413\nTalk:Colonia Region/@comment-155.192.33.252-20180518075939\nTalk:Colonia Region/@comment-155.192.33.252-20180518075939/@comment-87.115.208.74-20191014090518\nTalk:Combat/@comment-10072131-20150930034826\nTalk:Combat/@comment-129.215.1.181-20161115103538\nTalk:Combat/@comment-174.71.84.171-20151001062242\nTalk:Combat/@comment-174.71.84.171-20151001062242/@comment-26599825-20151001092636\nTalk:Combat/@comment-174.71.84.171-20151001062242/@comment-66.249.82.227-20151216231123\nTalk:Combat/@comment-174.71.84.171-20151001062242/@comment-75.111.224.144-20160314053944\nTalk:Combat/@comment-174.71.84.171-20151001062242/@comment-75.111.224.144-20160314054425\nTalk:Combat/@comment-174.71.84.171-20151001062242/@comment-77.37.171.53-20151006053854\nTalk:Combat/@comment-174.71.84.171-20151001062242/@comment-88.88.13.150-20151203182128\nTalk:Combat/@comment-184.162.231.241-20151229190910\nTalk:Combat/@comment-184.162.231.241-20151229190910/@comment-184.162.231.241-20151229191057\nTalk:Combat/@comment-206.71.64.102-20200108184651\nTalk:Combat/@comment-26306474-20150427042353\nTalk:Combat/@comment-27800035-20160215011517\nTalk:Combat/@comment-27800035-20160215011517/@comment-143.81.103.35-20160228032124\nTalk:Combat/@comment-27800035-20160215011517/@comment-76.91.75.137-20160520015922\nTalk:Combat/@comment-2A00:23C4:7424:C100:D130:FCC7:B772:6664-20180609203929\nTalk:Combat/@comment-35295340-20180413132158\nTalk:Combat/@comment-35295340-20180413132158/@comment-83.23.248.201-20180416233914\nTalk:Combat/@comment-35295340-20180413132158/@comment-90.200.46.38-20181125230452\nTalk:Combat/@comment-37.187.104.40-20180227023123\nTalk:Combat/@comment-37.187.104.40-20180227023123/@comment-29997479-20180227024303\nTalk:Combat/@comment-37.187.104.40-20180227023123/@comment-37.120.56.65-20190120174614\nTalk:Combat/@comment-4225664-20150109030249\nTalk:Combat/@comment-45090500-20200501151039\nTalk:Combat/@comment-45090500-20200501151039/@comment-45677112-20200517134657\nTalk:Combat/@comment-45090500-20200501151039/@comment-45677112-20200517135509\nTalk:Combat/@comment-45107087-20200223221454\nTalk:Combat/@comment-68.175.81.25-20190227223854\nTalk:Combat/@comment-73.222.1.151-20150912191714\nTalk:Combat/@comment-73.222.1.151-20150912191714/@comment-88.185.61.186-20150917215628\nTalk:Combat/@comment-75.89.3.26-20171125162021\nTalk:Combat/@comment-78.141.96.31-20150421192933\nTalk:Combat/@comment-78.141.96.31-20150421192933/@comment-26009169-20150421193456\nTalk:Combat/@comment-78.54.112.44-20150824112733\nTalk:Combat/@comment-78.54.112.44-20150824112733/@comment-143.81.103.35-20160228032506\nTalk:Combat/@comment-79.114.165.92-20160211101624\nTalk:Combat/@comment-79.114.165.92-20160211101624/@comment-186.159.128.33-20160214001838\nTalk:Combat/@comment-79.114.165.92-20160211101624/@comment-68.151.40.139-20160214042401\nTalk:Combat/@comment-80.108.221.93-20150418110239\nTalk:Combat/@comment-80.108.221.93-20150418110239/@comment-26009169-20150418120540\nTalk:Combat/@comment-80.108.221.93-20150418110239/@comment-26009169-20150418155625\nTalk:Combat/@comment-80.108.221.93-20150418110239/@comment-80.108.221.93-20150418151855\nTalk:Combat/@comment-80.108.221.93-20150418110239/@comment-80.108.221.93-20150418182748\nTalk:Combat/@comment-81.242.254.116-20151020144640\nTalk:Combat/@comment-81.242.254.116-20151020144640/@comment-30204622-20170306004525\nTalk:Combat/@comment-81.242.254.116-20151020144640/@comment-82.29.186.189-20151126224233\nTalk:Combat/@comment-81.242.254.116-20151020144640/@comment-86.195.31.35-20160126213033\nTalk:Combat/@comment-81.242.254.116-20151020144640/@comment-99.135.98.174-20151102010952\nTalk:Combat/@comment-86.165.131.167-20160106182016\nTalk:Combat/@comment-86.165.131.167-20160106182016/@comment-176.23.45.253-20160705210413\nTalk:Combat/@comment-86.49.39.227-20150524005849\nTalk:Combat/@comment-86.49.39.227-20150524005849/@comment-75.111.224.144-20160314054800\nTalk:Combat/@comment-91.47.142.181-20180603184432\nTalk:Combat Bond Voucher/@comment-100.9.143.39-20150621101241\nTalk:Combat Bond Voucher/@comment-100.9.143.39-20150621101241/@comment-85.59.18.238-20150702093953\nTalk:Combat Bond Voucher/@comment-109.146.196.19-20150521165647\nTalk:Combat Bond Voucher/@comment-109.146.196.19-20150521165647/@comment-27103547-20151021171542\nTalk:Combat Bond Voucher/@comment-109.146.196.19-20150521165647/@comment-73.169.142.46-20150608022737\nTalk:Combat Bond Voucher/@comment-122.129.134.110-20150803100014\nTalk:Combat Bond Voucher/@comment-122.129.134.110-20150803100014/@comment-83.81.236.121-20160501175326\nTalk:Combat Bond Voucher/@comment-156.3.54.204-20150609212952\nTalk:Combat Bond Voucher/@comment-156.3.54.204-20150609212952/@comment-26033489-20150609214025\nTalk:Combat Bond Voucher/@comment-216.113.55.223-20170804095159\nTalk:Combat Bond Voucher/@comment-2607:FB90:3A44:2033:0:11:BA38:101-20190106052603\nTalk:Combat Bond Voucher/@comment-2607:FB90:3A44:2033:0:11:BA38:101-20190106052603/@comment-2605:6000:1A0E:C287:5176:8ACA:8C18:1EC2-20190106053351\nTalk:Combat Bond Voucher/@comment-2607:FB90:3A44:2033:0:11:BA38:101-20190106052603/@comment-2607:FCC8:A091:C100:6526:1B87:7B4B:E018-20190416081501\nTalk:Combat Bond Voucher/@comment-74.65.13.202-20150704193434\nTalk:Combat Bond Voucher/@comment-74.65.13.202-20150704193434/@comment-26009169-20150704195251\nTalk:Combat Bond Voucher/@comment-78.144.42.73-20170803170825\nTalk:Combat Bond Voucher/@comment-78.144.42.73-20170803170825/@comment-213.240.195.112-20180824205202\nTalk:Combat Bond Voucher/@comment-78.144.42.73-20170803170825/@comment-216.113.55.223-20170804095505\nTalk:Combat Bond Voucher/@comment-78.144.42.73-20170803170825/@comment-94.11.13.9-20170805092721\nTalk:Combat Bond Voucher/@comment-82.110.109.210-20160218093903\nTalk:Combat Bond Voucher/@comment-82.110.109.210-20160218093903/@comment-27178561-20160218183459\nTalk:Combat Bond Voucher/@comment-85.59.18.238-20150702093924\nTalk:Combat Bond Voucher/@comment-85.59.18.238-20150702093924/@comment-26009169-20150702133940\nTalk:Combat Logging/@comment-103.81.221.189-20190207072722\nTalk:Combat Logging/@comment-103.81.221.189-20190207072722/@comment-192.136.170.98-20190207160158\nTalk:Combat Logging/@comment-12.5.54.135-20151209163255\nTalk:Combat Logging/@comment-12.5.54.135-20151209163255/@comment-29294934-20160414051808\nTalk:Combat Logging/@comment-12.5.54.135-20151209163255/@comment-94.234.37.31-20160615121720\nTalk:Combat Logging/@comment-122.148.153.93-20161201033937\nTalk:Combat Logging/@comment-122.148.153.93-20161201033937/@comment-2003:C1:1F19:ED3:289B:C304:4656:914-20171219232059\nTalk:Combat Logging/@comment-122.148.153.93-20161201033937/@comment-212.205.39.98-20170704201437\nTalk:Combat Logging/@comment-122.148.153.93-20161201033937/@comment-67.171.151.107-20180908002303\nTalk:Combat Logging/@comment-122.148.153.93-20161201033937/@comment-73.53.158.115-20170405192636\nTalk:Combat Logging/@comment-172.249.0.155-20200113220616\nTalk:Combat Logging/@comment-172.249.0.155-20200113220616/@comment-185.157.4.250-20200122035628\nTalk:Combat Logging/@comment-2003:C1:1F19:E59:ADD4:E4EB:2287:E944-20171219001713\nTalk:Combat Logging/@comment-2003:C1:1F19:E59:ADD4:E4EB:2287:E944-20171219001713/@comment-2003:C1:1F19:ED3:289B:C304:4656:914-20171219183614\nTalk:Combat Logging/@comment-2003:C1:1F19:E59:ADD4:E4EB:2287:E944-20171219001713/@comment-69.130.144.235-20190309142311\nTalk:Combat Logging/@comment-2003:C1:1F19:E59:ADD4:E4EB:2287:E944-20171219001713/@comment-82.121.202.56-20171219171322\nTalk:Combat Logging/@comment-24.140.113.193-20151018193034\nTalk:Combat Logging/@comment-24.140.113.193-20151018193034/@comment-104.3.39.77-20160516170615\nTalk:Combat Logging/@comment-24.140.113.193-20151018193034/@comment-122.148.153.93-20161201043010\nTalk:Combat Logging/@comment-24.140.113.193-20151018193034/@comment-178.252.127.246-20190123224527\nTalk:Combat Logging/@comment-25122764-20150704070324\nTalk:Combat Logging/@comment-25122764-20150704070324/@comment-172.110.128.134-20170128182813\nTalk:Combat Logging/@comment-43982350-20200730190839\nTalk:Combat Logging/@comment-50.161.170.234-20161128190521\nTalk:Combat Logging/@comment-50.161.170.234-20161128190521/@comment-86.52.117.23-20180714111441\nTalk:Combat Logging/@comment-51.9.181.51-20190801222912\nTalk:Combat Logging/@comment-51.9.181.51-20190801222912/@comment-192.136.172.44-20190818140759\nTalk:Combat Logging/@comment-51.9.181.51-20190801222912/@comment-2601:189:C37F:9A42:8413:D483:C5E1:46D8-20190813004716\nTalk:Combat Logging/@comment-51.9.181.51-20190801222912/@comment-51.9.181.51-20190801223102\nTalk:Combat Logging/@comment-66.210.239.2-20171218152946\nTalk:Combat Logging/@comment-67.171.151.107-20180908000346\nTalk:Combat Logging/@comment-80.189.69.110-20190111102028\nTalk:Combat Logging/@comment-80.189.69.110-20190111102028/@comment-172.249.0.155-20200114200124\nTalk:Combat Logging/@comment-80.189.69.110-20190111102028/@comment-192.136.170.98-20190111191801\nTalk:Combat Logging/@comment-80.189.69.110-20190111102028/@comment-69.130.144.235-20190309141306\nTalk:Combat Logging/@comment-82.121.202.56-20171219170901\nTalk:Combat Logging/@comment-82.121.202.56-20171219170901/@comment-2003:C1:1F19:ED3:289B:C304:4656:914-20171219184215\nTalk:Combat Logging/@comment-82.121.202.56-20171219170901/@comment-35511842-20180506205034\nTalk:Combat Logging/@comment-82.121.202.56-20171219170901/@comment-4438784-20200208124329\nTalk:Combat Logging/@comment-82.121.202.56-20171219170901/@comment-86.52.117.23-20180712162120\nTalk:Combat Logging/@comment-85.21.236.31-20150718190233\nTalk:Combat Logging/@comment-85.21.236.31-20150718190233/@comment-2600:8804:8083:7601:B0C0:8091:AE98:4D8F-20180713010456\nTalk:Combat Logging/@comment-85.21.236.31-20150718190233/@comment-50.129.45.145-20170531034050\nTalk:Combat Logging/@comment-85.21.236.31-20150718190233/@comment-76.185.89.24-20150821170142\nTalk:Combat Logging/@comment-85.21.236.31-20150718190233/@comment-99.135.98.174-20151107003959\nTalk:Combat Logging/@comment-85.221.31.192-20160617181615\nTalk:Combat Logging/@comment-86.52.117.23-20180714153356\nTalk:Combat Logging/@comment-86.52.117.23-20180714153356/@comment-86.52.117.23-20180714155913\nTalk:Combat Logging/@comment-87.128.14.118-20170815075519\nTalk:Combat Logging/@comment-87.128.14.118-20170815075519/@comment-166.137.139.46-20170924032458\nTalk:Combat Logging/@comment-87.128.14.118-20170815075519/@comment-77.102.200.67-20170829155819\nTalk:Combat Logging/@comment-88.20.114.68-20161103164640\nTalk:Combat Logging/@comment-88.20.114.68-20161103164640/@comment-213.254.131.239-20161130151205\nTalk:Combat Logging/@comment-88.20.114.68-20161103164640/@comment-73.53.158.115-20170405195229\nTalk:Combat Logging/@comment-94.223.174.230-20170311200953\nTalk:Combat Logging/@comment-94.223.174.230-20170311200953/@comment-107.77.196.32-20181220231029\nTalk:Combat Logging/@comment-94.223.174.230-20170311200953/@comment-216.15.113.175-20170314162821\nTalk:Combat Logging/@comment-94.223.174.230-20170311200953/@comment-2A00:23C5:5201:B600:91C9:729B:1B27:5B59-20181219214828\nTalk:Combat Logging/@comment-94.223.174.230-20170311200953/@comment-33041226-20170906035255\nTalk:Combat Logging/@comment-94.223.174.230-20170311200953/@comment-50.129.45.145-20170531033444\nTalk:Combat Logging/@comment-94.223.174.230-20170311200953/@comment-74.67.43.230-20170722195045\nTalk:Combat Logging/@comment-94.223.174.230-20170311200953/@comment-84.3.175.207-20170313212122\nTalk:Combat Stabilisers/@comment-109.175.60.174-20150119123029\nTalk:Combat Stabilisers/@comment-109.188.126.8-20150120235404\nTalk:Combat Stabilisers/@comment-109.188.126.8-20150120235404/@comment-24776661-20150213035359\nTalk:Combat Stabilisers/@comment-109.188.126.8-20150120235404/@comment-88.115.190.42-20150123142524\nTalk:Combat Stabilisers/@comment-1338166-20150117232222\nTalk:Combat Stabilisers/@comment-26077237-20150207210847\nTalk:Combat Stabilisers/@comment-50.157.251.244-20150129031313\nTalk:Combat Stabilisers/@comment-68.112.230.72-20150604125925\nTalk:Combat Stabilisers/@comment-82.24.57.204-20150224013328\nTalk:Combat Stabilisers/@comment-82.24.57.204-20150224013328/@comment-2.122.28.96-20150308192506\nTalk:Combat Stabilisers/@comment-83.199.218.250-20150223221010\nTalk:Combat Stabilisers/@comment-83.199.218.250-20150223221010/@comment-97.113.178.136-20150411204947\nTalk:Combat Stabilisers/@comment-84.202.200.137-20150405112717\nTalk:Combat Stabilisers/@comment-84.202.200.137-20150405112717/@comment-2601:204:C802:FF40:D46C:225A:34FB:4637-20170803203734\nTalk:Combat Stabilisers/@comment-91.82.1.140-20141230121616\nTalk:Combat Stabilisers/@comment-91.82.1.140-20141230121616/@comment-173.168.7.123-20150205185716\nTalk:Combat Stabilisers/@comment-91.82.1.140-20141230121616/@comment-83.135.242.86-20150103213458\nTalk:Combat Stabilisers/@comment-91.82.1.140-20141230121616/@comment-85.7.147.142-20150409144133\nTalk:Combat Stabilisers/@comment-91.82.1.140-20141230121616/@comment-85.70.209.143-20150429203131\nTalk:Combat Stabilisers/@comment-91.82.1.140-20141230121616/@comment-87.127.164.177-20150506193813\nTalk:Combat Stabilisers/@comment-92.7.168.128-20150511181633\nTalk:Combat Stabilisers/@comment-92.7.168.128-20150511181633/@comment-82.27.25.6-20150511213758\nTalk:Combat Stabilisers/@comment-98.194.72.123-20170901192315\nTalk:Commodities/@comment-118.209.84.154-20170104013526\nTalk:Commodities/@comment-118.209.84.154-20170104013526/@comment-192.136.161.52-20170104040536\nTalk:Commodities/@comment-173.49.74.100-20191109031523\nTalk:Commodities/@comment-188.2.22.207-20171230090704\nTalk:Commodities/@comment-188.66.92.187-20161208080209\nTalk:Commodities/@comment-26526816-20150624044354\nTalk:Commodities/@comment-4213394-20191008060205\nTalk:Commodities/@comment-82.237.248.209-20170115164409\nTalk:Commodities/@comment-82.237.248.209-20170115164409/@comment-206.19.54.254-20190726153037\nTalk:Commodities/@comment-83.7.3.68-20150705112421\nTalk:Commodities/@comment-85.176.108.135-20150412150526\nTalk:Commodities/Supply and Demand/@comment-178.174.197.83-20150102192717\nTalk:Commodities/Supply and Demand/@comment-178.174.197.83-20150102192717/@comment-176.193.109.147-20150104095535\nTalk:Commodities/Supply and Demand/@comment-188.2.22.207-20171230090745\nTalk:Commodities/Supply and Demand/@comment-188.222.244.54-20141031210841\nTalk:Commodities/Supply and Demand/@comment-188.222.244.54-20141031210841/@comment-188.222.244.54-20141031210949\nTalk:Commodities/Supply and Demand/@comment-188.36.206.214-20141201193905\nTalk:Commodities/Supply and Demand/@comment-188.36.206.214-20141201193905/@comment-176.250.25.0-20150101112215\nTalk:Commodities/Supply and Demand/@comment-188.36.206.214-20141201194151\nTalk:Commodities/Supply and Demand/@comment-213.156.126.64-20150102012330\nTalk:Commodities/Supply and Demand/@comment-213.156.126.64-20150102012330/@comment-176.250.25.0-20150102115043\nTalk:Commodities/Supply and Demand/@comment-213.156.126.64-20150102012330/@comment-213.156.126.64-20150102221433\nTalk:Commodities/Supply and Demand/@comment-25825892-20150101224139\nTalk:Commodities/Supply and Demand/@comment-25825892-20150101224139/@comment-12138097-20150101234034\nTalk:Commodities/Supply and Demand/@comment-25825892-20150101224139/@comment-176.250.25.0-20150102114913\nTalk:Commodities/Supply and Demand/@comment-26113141-20150215201247\nTalk:Commodities/Supply and Demand/@comment-46.188.121.32-20150105171218\nTalk:Commodities/Supply and Demand/@comment-46.188.121.32-20150105171218/@comment-25959563-20150105182858\nTalk:Commodities/Supply and Demand/@comment-46.188.121.32-20150105171218/@comment-4968814-20150105184134\nTalk:Commodities/Supply and Demand/@comment-5937172-20140915154950\nTalk:Commodities/Supply and Demand/@comment-69.117.139.166-20150410214628\nTalk:Commodities/Supply and Demand/@comment-69.117.139.166-20150410214628/@comment-24.3.218.232-20151202145527\nTalk:Commodities/Supply and Demand/@comment-69.117.139.166-20150410214803\nTalk:Commodities/Supply and Demand/@comment-86.147.34.79-20141231161403\nTalk:Commodities/Supply and Demand/@comment-87.158.131.45-20141222174209\nTalk:Commodities/Supply and Demand/@comment-87.158.131.45-20141222174209/@comment-25825892-20150101224342\nTalk:Commodities/Supply and Demand/@comment-87.158.137.104-20150117215750\nTalk:Commodities/Supply and Demand/@comment-87.158.141.32-20141221153919\nTalk:Commodities/Supply and Demand/@comment-87.158.156.106-20141226215140\nTalk:Commodities/Supply and Demand/@comment-87.158.156.106-20141226215140/@comment-176.250.25.0-20150101112109\nTalk:Commodities/Supply and Demand/@comment-87.158.156.106-20141226215140/@comment-25942503-20150101142906\nTalk:Commodities/Supply and Demand/@comment-87.158.156.106-20141226215140/@comment-88.195.244.170-20150109071018\nTalk:Commodities/Supply and Demand/@comment-87.158.159.92-20150102152454\nTalk:Commodities/Supply and Demand/@comment-89.99.171.161-20141115133631\nTalk:Commodities/Supply and Demand/@comment-90.222.86.59-20150113193306\nTalk:Commodities/Supply and Demand/@comment-90.222.86.59-20150113193306/@comment-12138097-20150114012647\nTalk:Commodities/Supply and Demand/@comment-90.222.86.59-20150113193306/@comment-1250011-20150113194412\nTalk:Commodities/Supply and Demand/@comment-90.222.86.59-20150113193306/@comment-90.222.86.59-20150115021447\nTalk:Commodities/Supply and Demand/@comment-92.21.78.236-20150103163139\nTalk:Commodities/Supply and Demand/@comment-92.226.139.222-20150102131311\nTalk:Commodities/Supply and Demand/@comment-92.226.139.222-20150102131634\nTalk:Commodities/Supply and Demand/@comment-92.28.224.176-20141215193211\nTalk:Commodities/Supply and Demand/@comment-93.55.88.222-20170210164047\nTalk:Commodities/Supply and Demand/@comment-95.114.202.104-20150101140538\nTalk:Commodities/Supply and Demand/@comment-95.90.225.184-20150809154629\nTalk:Commodities/Supply and Demand/@comment-95.91.228.79-20160705102233\nTalk:Commodities/Supply and Demand/@comment-98.113.34.239-20150209165121\nTalk:Commodities/Supply and Demand/@comment-98.239.48.227-20150125001702\nTalk:Commodities/Supply and Demand/@comment-98.239.48.227-20150125001702/@comment-98.239.48.227-20150125001753\nTalk:Commodities/Supply and Demand/@comment-98.239.48.227-20150202235858\nTalk:Commodities Market/@comment-25787591-20141205134925\nTalk:Commodities Market/@comment-3342902-20150104180123\nTalk:Commodities Market/@comment-86.16.221.233-20141123215844\nTalk:Commodities Market/@comment-86.16.221.233-20141123215844/@comment-25787591-20141205134635\nTalk:Communications/@comment-151.213.137.167-20200124231724\nTalk:Communications/@comment-176.64.145.1-20150911140750\nTalk:Communications/@comment-176.64.145.1-20150911140750/@comment-82.11.121.5-20150925185208\nTalk:Communications/@comment-176.64.145.1-20150911140750/@comment-82.11.121.5-20150925190018\nTalk:Communications/@comment-176.64.145.1-20150911140750/@comment-82.11.121.5-20150925190552\nTalk:Communications/@comment-176.64.145.1-20150911140838\nTalk:Communications/@comment-176.64.145.1-20150911140838/@comment-176.56.198.24-20151009194204\nTalk:Communications/@comment-184.91.176.226-20151011022329\nTalk:Communications/@comment-184.91.176.226-20151011022329/@comment-70.176.25.142-20151103011310\nTalk:Communications/@comment-212.36.19.12-20151221215528\nTalk:Communications/@comment-212.36.19.12-20151221215528/@comment-90.149.15.199-20160219231436\nTalk:Communications/@comment-2600:6C4E:177F:FB2D:B480:73CB:C998:8993-20190209175502\nTalk:Communications/@comment-87.231.43.96-20160425192533\nTalk:Communications/@comment-91.58.12.76-20150927091156\nTalk:Communications/@comment-91.58.12.76-20150927091156/@comment-26009169-20150927115329\nTalk:Community Expeditions/@comment-2600:8806:3303:F300:58BC:EF63:D659:7361-20190102011345\nTalk:Community Expeditions/@comment-2600:8806:3303:F300:58BC:EF63:D659:7361-20190102011345/@comment-66.23.202.20-20190117113844\nTalk:Community Goals/@comment-110.142.242.165-20150914131304\nTalk:Community Goals/@comment-110.142.242.165-20150914131304/@comment-92.15.17.195-20151005160841\nTalk:Community Goals/@comment-176.78.158.9-20190513115930\nTalk:Community Goals/@comment-176.78.158.9-20190513115930/@comment-4213394-20190605220057\nTalk:Community Goals/@comment-192.136.174.152-20160307125117\nTalk:Community Goals/@comment-192.136.175.90-20160602195714\nTalk:Community Goals/@comment-24.241.226.23-20160528210152\nTalk:Community Goals/@comment-24.241.226.23-20160528210152/@comment-2155082-20160529012047\nTalk:Community Goals/@comment-2600:1700:C5D0:3AF0:6CB7:9916:C0F8:2ADC-20180222001919\nTalk:Community Goals/@comment-2600:1700:C5D0:3AF0:6CB7:9916:C0F8:2ADC-20180222001919/@comment-105.157.165.63-20180429145423\nTalk:Community Goals/@comment-2600:1700:C5D0:3AF0:6CB7:9916:C0F8:2ADC-20180222001919/@comment-176.78.158.9-20190513120347\nTalk:Community Goals/@comment-2600:1700:C5D0:3AF0:6CB7:9916:C0F8:2ADC-20180222001919/@comment-34375658-20180302082854\nTalk:Community Goals/@comment-47.187.241.226-20170912040545\nTalk:Community Goals/@comment-99.255.17.35-20170617225720\nTalk:Concordant Sequence/@comment-206.19.54.254-20190722191934\nTalk:Concordant Sequence/@comment-206.19.54.254-20190722191934/@comment-176.72.143.33-20190724231341\nTalk:Concordant Sequence/@comment-99.255.34.27-20191019042643\nTalk:Conductive Components/@comment-37857969-20181221012923\nTalk:Conductive Components/@comment-37857969-20181221012923/@comment-43941713-20200912034432\nTalk:Conflict Zone/@comment-108.61.228.56-20160210000447\nTalk:Conflict Zone/@comment-108.61.228.56-20160210000447/@comment-46.254.254.27-20170216125309\nTalk:Conflict Zone/@comment-112.198.90.76-20150606193531\nTalk:Conflict Zone/@comment-112.198.90.76-20150606193531/@comment-195.169.9.154-20161208150957\nTalk:Conflict Zone/@comment-1250011-20150114182112\nTalk:Conflict Zone/@comment-162.72.41.231-20150506222053\nTalk:Conflict Zone/@comment-162.72.41.231-20150506222053/@comment-178.220.222.6-20170422023122\nTalk:Conflict Zone/@comment-162.72.41.231-20150506222053/@comment-26009169-20150506223948\nTalk:Conflict Zone/@comment-174.102.96.147-20150105065332\nTalk:Conflict Zone/@comment-174.102.96.147-20150105065332/@comment-188.124.149.80-20150114180319\nTalk:Conflict Zone/@comment-174.102.96.147-20150105065332/@comment-208.108.127.250-20150129150245\nTalk:Conflict Zone/@comment-174.102.96.147-20150119072540\nTalk:Conflict Zone/@comment-174.102.96.147-20150119072540/@comment-93.133.137.82-20150119083752\nTalk:Conflict Zone/@comment-174.102.96.147-20150315074331\nTalk:Conflict Zone/@comment-174.102.96.147-20150315074331/@comment-26009169-20150315125314\nTalk:Conflict Zone/@comment-184.155.171.193-20150501234450\nTalk:Conflict Zone/@comment-184.155.171.193-20150501234450/@comment-185.26.182.34-20150506070454\nTalk:Conflict Zone/@comment-184.155.171.193-20150501234450/@comment-24503385-20150502062627\nTalk:Conflict Zone/@comment-23.91.239.25-20150408044050\nTalk:Conflict Zone/@comment-23.91.239.25-20150408044050/@comment-209.173.14.125-20150422161520\nTalk:Conflict Zone/@comment-23.91.239.25-20150408044050/@comment-26009169-20150408113353\nTalk:Conflict Zone/@comment-24.151.145.58-20150221205454\nTalk:Conflict Zone/@comment-24.151.145.58-20150221205454/@comment-78.146.99.202-20150307083712\nTalk:Conflict Zone/@comment-24503385-20150501162840\nTalk:Conflict Zone/@comment-24503385-20150501162840/@comment-24503385-20150501165539\nTalk:Conflict Zone/@comment-2603:9001:4503:E25F:6185:59A5:70E:5A67-20200120053036\nTalk:Conflict Zone/@comment-26350501-20150427212303\nTalk:Conflict Zone/@comment-26350501-20150427212303/@comment-26009169-20150427220627\nTalk:Conflict Zone/@comment-26350501-20150427212303/@comment-26350501-20150427234130\nTalk:Conflict Zone/@comment-30303790-20150804063553\nTalk:Conflict Zone/@comment-30303790-20150804063553/@comment-26538008-20150823154330\nTalk:Conflict Zone/@comment-31094186-20170901213226\nTalk:Conflict Zone/@comment-31094186-20170901213226/@comment-104.220.156.216-20180523043531\nTalk:Conflict Zone/@comment-31094186-20170901213226/@comment-192.136.161.33-20180306042838\nTalk:Conflict Zone/@comment-31094186-20170901213226/@comment-201.63.62.14-20180630200804\nTalk:Conflict Zone/@comment-31094186-20170901213226/@comment-2602:306:CE29:B0D0:9C67:1E8D:BAF0:BB47-20190918111700\nTalk:Conflict Zone/@comment-31094186-20170901213226/@comment-98.200.5.105-20180306010651\nTalk:Conflict Zone/@comment-38397193-20190202212323\nTalk:Conflict Zone/@comment-38397193-20190202212323/@comment-38397193-20190203145311\nTalk:Conflict Zone/@comment-45.48.248.69-20150722165133\nTalk:Conflict Zone/@comment-85.3.160.199-20150213055943\nTalk:Conflict Zone/@comment-86.20.14.215-20150503000447\nTalk:Conflict Zone/@comment-86.20.14.215-20150503000525\nTalk:Conflict Zone/@comment-90.191.217.209-20150310012717\nTalk:Conflict Zone/@comment-90.191.217.209-20150310012717/@comment-26009169-20150310013100\nTalk:Conflict Zone/@comment-94.113.95.155-20150205204630\nTalk:Conspiracy Theory/@comment-26773573-20170611153526\nTalk:Conspiracy Theory/@comment-37.201.243.98-20170608151600\nTalk:Construct/@comment-174.255.197.165-20190629161231\nTalk:Construct/@comment-174.255.197.165-20190629161231/@comment-190.217.225.15-20190809031941\nTalk:Consuela Knight/@comment-2605:E000:121C:1C8A:B495:1A71:2B48:F99B-20190129160554\nTalk:Consuela Knight/@comment-70.177.12.3-20190124003155\nTalk:Consuela Knight/@comment-80.187.102.53-20190125155453\nTalk:Containment Missile/@comment-212.251.215.201-20171230171618\nTalk:Containment Missile/@comment-212.251.215.201-20171230171618/@comment-168.150.58.66-20180919201019\nTalk:Containment Missile/@comment-44180665-20200520112304\nTalk:Containment Missile/@comment-90.200.46.38-20181019142152\nTalk:Containment Missile/@comment-90.200.46.38-20181019142152/@comment-173.216.30.63-20191211214643\nTalk:Containment Missile/@comment-90.200.46.38-20181019142152/@comment-90.200.46.38-20181029095015\nTalk:Convoy Beacon/@comment-32869976-20170816051839\nTalk:Convoy Beacon/@comment-32869976-20170816051839/@comment-10291972-20170920035617\nTalk:Convoy Beacon/@comment-84.150.151.136-20180403082917\nTalk:Convoy Dispersal Pattern/@comment-2601:40D:8400:32DD:B101:84E7:6CFD:DC46-20190218034653\nTalk:Convoy Dispersal Pattern/@comment-36172442-20180821174517\nTalk:Convoy Dispersal Pattern/@comment-36172442-20180821174517/@comment-156.34.40.98-20190205134841\nTalk:Coquim Spongiform Victuals/@comment-77.50.26.143-20160814203946\nTalk:Coquim Spongiform Victuals/@comment-77.50.26.143-20160814203946/@comment-184.102.214.229-20171210220147\nTalk:Core Dynamics/@comment-85.255.236.198-20180102213615\nTalk:Core Dynamics/@comment-85.255.236.198-20180102213615/@comment-192.136.170.98-20181128161846\nTalk:Core Dynamics/@comment-85.255.236.198-20180102213615/@comment-2607:FEA8:71F:FC8F:E5C0:8B0C:19A7:7985-20181002021952\nTalk:Core Dynamics/@comment-85.255.236.198-20180102213615/@comment-65.79.1.66-20181017145929\nTalk:Core Dynamics/@comment-85.255.236.198-20180102213615/@comment-90.200.46.38-20181128154111\nTalk:Core Dynamics/@comment-85.255.236.198-20180102213615/@comment-98.24.231.153-20180407162500\nTalk:Core Dynamics/@comment-87.104.197.109-20150606093014\nTalk:Core Dynamics/@comment-87.104.197.109-20150606093014/@comment-143.81.103.35-20160116215054\nTalk:Core Dynamics/@comment-87.104.197.109-20150606093014/@comment-168.99.198.77-20180226032552\nTalk:Core Dynamics/@comment-87.104.197.109-20150606093014/@comment-168.99.198.77-20180226032723\nTalk:Core Dynamics/@comment-87.104.197.109-20150606093014/@comment-198.105.28.77-20160904052420\nTalk:Core Dynamics/@comment-87.104.197.109-20150606093014/@comment-2A02:C7D:165F:5400:7480:FA96:BCA6:7712-20190102192947\nTalk:Core Dynamics/@comment-87.104.197.109-20150606093014/@comment-2A02:C7D:165F:5400:7480:FA96:BCA6:7712-20190102193010\nTalk:Core Dynamics/@comment-87.104.197.109-20150606093014/@comment-31.52.161.85-20150711202751\nTalk:Core Dynamics/@comment-87.104.197.109-20150606093014/@comment-37633420-20190124222059\nTalk:Core Dynamics/@comment-87.104.197.109-20150606093014/@comment-65.79.1.66-20181017150014\nTalk:Core Dynamics/@comment-87.104.197.109-20150606093014/@comment-66.191.253.76-20160725032505\nTalk:Core Dynamics/@comment-87.104.197.109-20150606093014/@comment-71.162.201.49-20190103050814\nTalk:Core Dynamics/@comment-87.104.197.109-20150606093014/@comment-74.51.220.27-20160916160656\nTalk:Core Dynamics/@comment-87.104.197.109-20150606093014/@comment-81.30.141.120-20150920091302\nTalk:Core Dynamics/@comment-87.104.197.109-20150606093014/@comment-86.157.213.79-20180317140659\nTalk:Core Dynamics/@comment-87.104.197.109-20150606093014/@comment-86.26.1.26-20151029021030\nTalk:Core Dynamics/@comment-95.90.202.69-20160118131954\nTalk:Core Dynamics/@comment-97.127.3.142-20151029182629\nTalk:Core Dynamics Composites/@comment-175.36.98.31-20180629080149\nTalk:Core Dynamics Composites/@comment-188.213.138.175-20200210133525\nTalk:Core Dynamics Composites/@comment-192.136.161.33-20180116140608\nTalk:Core Dynamics Composites/@comment-192.136.161.33-20180116140608/@comment-158.39.241.165-20180305055150\nTalk:Core Dynamics Composites/@comment-192.136.161.33-20180320141548\nTalk:Core Dynamics Composites/@comment-192.136.161.33-20180320141548/@comment-205.175.226.96-20180628220108\nTalk:Core Dynamics Composites/@comment-2A02:8109:B5C0:F0:2C3B:D51A:2F84:BEBC-20180315203038\nTalk:Core Dynamics Composites/@comment-46.167.28.54-20180708165535\nTalk:Core Dynamics Composites/@comment-46.167.31.138-20180112150910\nTalk:Core Dynamics Composites/@comment-46.167.31.138-20180112150910/@comment-81.155.230.9-20180122134201\nTalk:Core Dynamics Composites/@comment-82.58.162.209-20191027200510\nTalk:Core Dynamics Composites/@comment-99.240.100.222-20190101081541\nTalk:Core Systems/@comment-38061204-20190105153422\nTalk:Core Systems/@comment-38061204-20190105153422/@comment-43623494-20190918013942\nTalk:Coriolis/@comment-101.174.133.168-20141125180103\nTalk:Coriolis/@comment-108.71.96.38-20141230001424\nTalk:Coriolis/@comment-108.71.96.38-20141230001424/@comment-213.172.91.229-20150110152431\nTalk:Coriolis/@comment-108.71.96.38-20141230001424/@comment-77.6.154.99-20160119112116\nTalk:Coriolis/@comment-203.116.187.1-20150514034616\nTalk:Coriolis/@comment-213.127.69.182-20170123200158\nTalk:Coriolis/@comment-25909997-20141222185104\nTalk:Coriolis/@comment-25909997-20141222185104/@comment-108.60.246.121-20150104105512\nTalk:Coriolis/@comment-25909997-20141222185104/@comment-28774381-20160617184231\nTalk:Coriolis/@comment-25909997-20141222185104/@comment-73.1.55.15-20150812091422\nTalk:Coriolis/@comment-25909997-20141222185104/@comment-76.28.156.157-20141229051415\nTalk:Coriolis/@comment-25909997-20141222185104/@comment-86.40.233.184-20141229133430\nTalk:Coriolis/@comment-25909997-20141222185104/@comment-87.112.50.180-20150130181255\nTalk:Coriolis/@comment-25909997-20141222185104/@comment-89.253.76.71-20151220023305\nTalk:Coriolis/@comment-2605:E000:308A:E500:282A:A32:718:96A7-20180109021702\nTalk:Coriolis/@comment-2605:E000:308A:E500:282A:A32:718:96A7-20180109021702/@comment-33441314-20180115010316\nTalk:Coriolis/@comment-2605:E000:308A:E500:282A:A32:718:96A7-20180109021702/@comment-43354983-20200410230557\nTalk:Coriolis/@comment-34004391-20180108115605\nTalk:Coriolis/@comment-34004391-20180217090301\nTalk:Coriolis/@comment-45677112-20200703184330\nTalk:Coriolis/@comment-47.55.236.67-20151012200759\nTalk:Coriolis/@comment-78.194.13.113-20180717222147\nTalk:Coriolis/@comment-90.200.46.38-20181120185216\nTalk:Coriolis/@comment-92.75.92.22-20160102123140\nTalk:Coriolis/@comment-92.75.92.22-20160102123140/@comment-28774381-20160617184041\nTalk:Coriolis/@comment-99.227.66.111-20160215032529\nTalk:Coriolis/@comment-99.227.66.111-20160215032529/@comment-192.136.161.33-20171214142858\nTalk:Coriolis/@comment-99.227.66.111-20160215032529/@comment-73.139.98.168-20160928024111\nTalk:Coriolis/@comment-99.227.66.111-20160215032529/@comment-79.136.64.95-20171214112327\nTalk:Corporations/@comment-43495716-20200803023804\nTalk:Corrosion Resistant Cargo Rack/@comment-86.29.250.164-20180302180954\nTalk:Corrosion Resistant Cargo Rack/@comment-86.29.250.164-20180302180954/@comment-150.107.174.105-20180403093650\nTalk:Corrosion Resistant Cargo Rack/@comment-86.29.250.164-20180302180954/@comment-89.100.250.58-20180306014459\nTalk:Corrosive Shell/@comment-2806:104E:17:2938:87F:1E8F:E586:9F6C-20191107053033\nTalk:Corrosive Shell/@comment-43880039-20190920073604\nTalk:Corrosive Shell/@comment-4629203-20190111061315\nTalk:Corrosive Shell/@comment-4629203-20190111061315/@comment-192.136.170.98-20190111191908\nTalk:Corrosive Shell/@comment-76.210.184.123-20180429033303\nTalk:Corrosive Shell/@comment-76.210.184.123-20180429033303/@comment-62.143.152.192-20180701001203\nTalk:Corrosive Shell/@comment-76.210.184.123-20180429033303/@comment-82.46.56.18-20180505162549\nTalk:Corrosive Shell/@comment-85.251.244.68-20190121220122\nTalk:Corrosive Shell/@comment-85.251.244.68-20190121220122/@comment-192.136.170.98-20190122042645\nTalk:Corrosive Shell/@comment-87.140.82.191-20190326093607\nTalk:Corrosive Shell/@comment-87.140.82.191-20190326093607/@comment-192.136.170.98-20190328205623\nTalk:Corrosive Shell/@comment-88.150.22.120-20180612214951\nTalk:Corrosive Shell/@comment-88.150.22.120-20180612214951/@comment-192.136.170.98-20181208041532\nTalk:Corrosive Shell/@comment-88.150.22.120-20180612214951/@comment-90.200.49.195-20181208002359\nTalk:Corrosive Shell/@comment-88.150.22.120-20180612214951/@comment-90.200.49.195-20181208134744\nTalk:Corrosive Shell/@comment-94.140.208.154-20180510132152\nTalk:Corrosive Shell/@comment-94.140.208.154-20180510132152/@comment-77.103.203.34-20180525062347\nTalk:Corrosive Shell/@comment-95.236.60.207-20181221225626\nTalk:Corrosive Shell/@comment-95.236.60.207-20181221225626/@comment-192.136.170.98-20181222041257\nTalk:Costada Voyager/@comment-46126938-20200825115536\nTalk:Council of Admirals/@comment-35700784-20180527044217\nTalk:Council of Admirals/@comment-35700784-20180527044217/@comment-30928085-20180527165411\nTalk:Courier/@comment-189.212.246.169-20150502192127\nTalk:Courier/@comment-189.212.246.169-20150502192127/@comment-24.71.229.161-20191005211554\nTalk:Courier/@comment-189.212.246.169-20150502192127/@comment-26033489-20150502234719\nTalk:Courier/@comment-198.255.148.249-20150216130833\nTalk:Courier/@comment-198.255.148.249-20150216130833/@comment-198.255.148.249-20150216131559\nTalk:Courier/@comment-31510018-20170325114052\nTalk:Courier/@comment-72.178.85.113-20150617234105\nTalk:Crab Nebula/@comment-44180665-20200429123032\nTalk:Cracked Industrial Firmware/@comment-50.232.186.6-20180112101128\nTalk:Credits/@comment-104.218.159.254-20180111213543\nTalk:Credits/@comment-104.218.159.254-20180111213543/@comment-192.136.161.33-20180112042549\nTalk:Credits/@comment-104.218.159.254-20180111213543/@comment-26702911-20180517140727\nTalk:Credits/@comment-104.218.159.254-20180111213543/@comment-32118528-20181003042917\nTalk:Credits/@comment-104.218.159.254-20180111213543/@comment-83.136.43.151-20180217131535\nTalk:Credits/@comment-12.5.54.135-20151203154555\nTalk:Credits/@comment-12.5.54.135-20151203154555/@comment-164.38.133.236-20180516194012\nTalk:Credits/@comment-12.5.54.135-20151203154555/@comment-2607:FEA8:E360:104A:3DB5:D8D0:B0FA:A15D-20180304213250\nTalk:Credits/@comment-162.156.172.47-20150325025057\nTalk:Credits/@comment-76.185.89.24-20150708201228\nTalk:Credits/@comment-76.185.89.24-20150708201228/@comment-3428652-20150714033929\nTalk:Credits/@comment-76.27.255.161-20151026062240\nTalk:Credits/@comment-76.27.255.161-20151026062240/@comment-1028741-20151115225221\nTalk:Credits/@comment-80.6.136.127-20190530101850\nTalk:Crime & Punishment/@comment-104.240.110.2-20180327172528\nTalk:Crime & Punishment/@comment-104.240.110.2-20180327172528/@comment-123.100.147.134-20180914151306\nTalk:Crime & Punishment/@comment-104.240.110.2-20180327172528/@comment-62.143.152.192-20180709202459\nTalk:Crime & Punishment/@comment-84.249.7.46-20181229142252\nTalk:Cryolite/@comment-173.237.109.109-20160323045942\nTalk:Cryolite/@comment-173.237.109.109-20160323045942/@comment-173.237.109.109-20160323054331\nTalk:Cryolite/@comment-173.237.109.109-20160323045942/@comment-2155082-20160323053017\nTalk:Cryolite/@comment-173.237.109.109-20160323054009\nTalk:Cryolite/@comment-84.210.45.78-20160406172634\nTalk:Crystal Shards/@comment-134.102.132.2-20180304201633\nTalk:Crystalline Shard/@comment-12.70.119.26-20190610122616\nTalk:Crystalline Shard/@comment-12.70.119.26-20190610122616/@comment-39342452-20190610130628\nTalk:Crystalline Shard/@comment-198.48.157.90-20190224050215\nTalk:Crystalline Shard/@comment-198.48.157.90-20190224050215/@comment-26287533-20190224100534\nTalk:Crystalline Shard/@comment-2601:246:CE00:5731:EC24:1B8A:7C75:5D51-20200105125037\nTalk:Crystalline Shard/@comment-2601:246:CE00:5731:EC24:1B8A:7C75:5D51-20200105125037/@comment-2.229.216.86-20200105205752\nTalk:Crystalline Shard/@comment-2601:246:CE00:5731:EC24:1B8A:7C75:5D51-20200105125037/@comment-2601:246:CE00:5731:5842:3DE1:48ED:3780-20200106140205\nTalk:Crystalline Shard/@comment-37.187.104.40-20191223122844\nTalk:Crystalline Shard/@comment-37.187.104.40-20191223122844/@comment-39342452-20200105210218\nTalk:Crystalline Shard/@comment-38266869-20190306132652\nTalk:Crystalline Shard/@comment-38582264-20190220045858\nTalk:Crystalline Shard/@comment-38582264-20190220045858/@comment-26287533-20190224101244\nTalk:Crystalline Shard/@comment-39571038-20190524100857\nTalk:Crystalline Shard/@comment-44180665-20200428164209\nTalk:Crystalline Shard/@comment-45147873-20200301195955\nTalk:Crystalline Shard/@comment-46.30.165.51-20190915061356\nTalk:Crystalline Shard/@comment-46.30.165.51-20190915061356/@comment-77.253.94.80-20191224113636\nTalk:Crystalline Shard/@comment-67.171.222.187-20190112210733\nTalk:Crystalline Shard/@comment-69.179.160.114-20190328232203\nTalk:Crystalline Shard/@comment-72.208.101.115-20190517161823\nTalk:Crystalline Shard/@comment-77.4.14.100-20190203052356\nTalk:Crystalline Shard/@comment-89.144.220.56-20190613140435\nTalk:Crystalline Shard/@comment-89.144.220.56-20190613140435/@comment-2.229.216.86-20190613161621\nTalk:Crystalline Shard/@comment-94.10.35.178-20190922101706\nTalk:Crystalline Shard/@comment-97.80.208.9-20190516150115\nTalk:Crystalline Spheres/@comment-77.50.26.143-20160930213254\nTalk:Crystalline Spheres/@comment-86.2.210.231-20151220233106\nTalk:Crystalline Spheres/@comment-86.2.210.231-20151220233106/@comment-1028741-20151221001054\nTalk:Cubeo/@comment-24740282-20180311081702\nTalk:Cubeo/@comment-67.182.134.155-20180223005248\nTalk:Cytoscrambler/@comment-147.69.30.118-20160212051429\nTalk:Cytoscrambler/@comment-2003:DB:F70F:D6A7:14E4:EE2C:ED34:9307-20200204141916\nTalk:Cytoscrambler/@comment-2003:DB:F70F:D6A7:14E4:EE2C:ED34:9307-20200204141916/@comment-2003:DB:F70F:D6A7:14E4:EE2C:ED34:9307-20200204141951\nTalk:Cytoscrambler/@comment-207.191.195.196-20190826164946\nTalk:Cytoscrambler/@comment-207.191.195.196-20190826164946/@comment-2601:189:C37F:9A42:985A:40FC:AF23:3C44-20190828152730\nTalk:Cytoscrambler/@comment-207.62.149.111-20150704083026\nTalk:Cytoscrambler/@comment-207.62.149.111-20150704083026/@comment-1156708-20150828083024\nTalk:Cytoscrambler/@comment-207.62.149.111-20150704083026/@comment-165.228.23.22-20151005004530\nTalk:Cytoscrambler/@comment-207.62.149.111-20150704083026/@comment-81.156.49.66-20150817125734\nTalk:Cytoscrambler/@comment-207.62.149.111-20150704083026/@comment-93.74.168.37-20150730204559\nTalk:Cytoscrambler/@comment-44180665-20200605005137\nTalk:Cytoscrambler/@comment-82.10.139.13-20180502223055\nTalk:Cytoscrambler/@comment-86.180.180.0-20150711085403\nTalk:Cytoscrambler/@comment-90.195.95.48-20191212183732\nTalk:Cytoscrambler/@comment-90.200.46.38-20181028175544\nTalk:Cytoscrambler/@comment-90.200.46.38-20181028175544/@comment-118.93.237.4-20181029233812\nTalk:Cytoscrambler/@comment-90.200.46.38-20181028175544/@comment-207.191.195.196-20190826152408\nTalk:Cytoscrambler/@comment-90.206.33.30-20160316201414\nTalk:Cytoscrambler/@comment-90.206.33.30-20160316201414/@comment-176.249.62.114-20170826224155\nTalk:Cytoscrambler/@comment-90.206.33.30-20160316201414/@comment-41.114.28.63-20180926062252\nTalk:Cytoscrambler/@comment-90.206.33.30-20160316201414/@comment-90.192.220.47-20190608155331\nTalk:Cytoscrambler/@comment-90.206.33.30-20160316201414/@comment-90.200.46.38-20181016191245\nTalk:Cytoscrambler/@comment-90.206.33.30-20160316201414/@comment-94.1.65.7-20160403165257\nTalk:Damage Falloff/@comment-189.232.26.63-20180718215217\nTalk:Darkwater Inc/@comment-240F:41:AB47:1:B4C3:6F79:6719:D88C-20181101212524\nTalk:Darkwater Inc/@comment-4052334-20160829231225\nTalk:Darkwater Inc/@comment-4052334-20160829231225/@comment-2155082-20160830045916\nTalk:Darkwater Inc/@comment-93.229.209.22-20160214211132\nTalk:Darkwater Inc/@comment-93.229.209.22-20160214211132/@comment-111766-20160306040559\nTalk:Darkwater Inc/@comment-94.254.8.87-20161014071727\nTalk:Data Core/@comment-1933852-20200309013313\nTalk:Data Link Scanner/@comment-2.121.50.58-20151226024015\nTalk:Data Link Scanner/@comment-2.121.50.58-20151226024015/@comment-92.206.59.96-20160106222721\nTalk:Data Link Scanner/@comment-24.255.219.97-20160109222341\nTalk:Data Link Scanner/@comment-2600:8806:3300:F300:415:50F1:C99B:F179-20190928013350\nTalk:Data Link Scanner/@comment-2602:306:37B9:18E0:653C:930E:EA8F:2025-20171014023227\nTalk:Data Link Scanner/@comment-2602:306:37B9:18E0:653C:930E:EA8F:2025-20171014023227/@comment-26810597-20171014034031\nTalk:Data Link Scanner/@comment-68.186.99.18-20160119032539\nTalk:Data Link Scanner/@comment-75.85.82.56-20170416030330\nTalk:Data Link Scanner/@comment-75.85.82.56-20170416030330/@comment-81.158.219.0-20170419015612\nTalk:Data Link Scanner/@comment-77.173.160.84-20190201160619\nTalk:Data Link Scanner/@comment-84.245.9.224-20171017204829\nTalk:Data Link Scanner/@comment-84.245.9.224-20171017204829/@comment-2A02:A446:CC66:1:C0EB:D81A:59E9:44B-20181230223840\nTalk:Data Link Scanner/@comment-85.176.224.224-20160119014024\nTalk:Data Point Intel Package/@comment-2600:6C5D:6180:102:A9A1:8C9B:4792:D702-20200116022845\nTalk:Data Point Intel Package/@comment-2604:2D80:C02A:9179:B586:3B66:90C3:9A02-20180324101435\nTalk:Data Point Intel Package/@comment-27190931-20160103061122\nTalk:Data Point Intel Package/@comment-27190931-20160103061122/@comment-79.46.4.98-20170625190848\nTalk:Data point/@comment-25450485-20170716135752\nTalk:Data point/@comment-26009169-20151216004748\nTalk:Data point/@comment-26009169-20151216004748/@comment-1028741-20151216020124\nTalk:Data point/@comment-2600:1:C53A:A533:0:64:F6D0:ED01-20190328101831\nTalk:Data point/@comment-82.13.80.208-20181231110446\nTalk:Data point/@comment-98.167.88.131-20151223080654\nTalk:Data point/@comment-98.167.88.131-20151223080654/@comment-153.46.105.98-20151223100506\nTalk:Data point/@comment-98.167.88.131-20151223080654/@comment-153.46.105.98-20151224105038\nTalk:Data point/@comment-98.167.88.131-20151223080654/@comment-69.40.70.1-20151225190534\nTalk:Data point/@comment-98.167.88.131-20151223080654/@comment-95.91.216.101-20170302231758\nTalk:Data point/@comment-98.167.88.131-20151223080654/@comment-95.91.216.101-20170302231955\nTalk:Data point/@comment-98.167.88.131-20151223080654/@comment-98.167.88.131-20151223081207\nTalk:Data point/@comment-98.167.88.131-20151223080654/@comment-98.167.88.131-20151223195335\nTalk:Datamined Wake Exceptions/@comment-188.2.22.207-20171230084444\nTalk:Datamined Wake Exceptions/@comment-203.83.18.46-20180509052646\nTalk:Datamined Wake Exceptions/@comment-216.180.132.183-20190814223722\nTalk:Datamined Wake Exceptions/@comment-37493229-20190709011301\nTalk:David Braben/@comment-89.207.164.254-20180102084433\nTalk:Dazzle Shell/@comment-2001:5B0:4BC0:9F0:0:FF:FEBD:63F2-20180915194755\nTalk:Dazzle Shell/@comment-2001:5B0:4BC0:9F0:0:FF:FEBD:63F2-20180915194755/@comment-206.19.54.254-20190722180657\nTalk:Dazzle Shell/@comment-45208753-20200610050211\nTalk:DeLacy Spin Ionic MV/@comment-2603:9000:AA0C:2200:8D0C:69F1:9236:D339-20190507184959\nTalk:DeLacy Spin Ionic MV/@comment-68.13.88.163-20150130005500\nTalk:DeLacy Spin Ionic MV/@comment-68.13.88.163-20150130005500/@comment-26009169-20150131121258\nTalk:DeLacy Spin Ionic MV/@comment-68.13.88.163-20150130005500/@comment-82.230.123.144-20150131001153\nTalk:DeLacy Spin Ionic MV/@comment-68.13.88.163-20150130005500/@comment-84.178.203.118-20170908151045\nTalk:DeLacy Spin Ionic MV/@comment-68.13.88.163-20150130005500/@comment-90.200.46.38-20181104152036\nTalk:Debug Camera/@comment-208.105.248.34-20150312015003\nTalk:Debug Camera/@comment-208.105.248.34-20150312015003/@comment-141.135.155.92-20150314062728\nTalk:Debug Camera/@comment-208.105.248.34-20150312015003/@comment-146.200.85.59-20160316143138\nTalk:Debug Camera/@comment-208.105.248.34-20150312015003/@comment-26033489-20150312015439\nTalk:Debug Camera/@comment-208.105.248.34-20150312015003/@comment-76.181.9.230-20150315112203\nTalk:Debug Camera/@comment-2116780-20151230195015\nTalk:Debug Camera/@comment-2116780-20151230195015/@comment-209.129.148.213-20160317203501\nTalk:Debug Camera/@comment-26454645-20150926191949\nTalk:Debug Camera/@comment-26454645-20150926191949/@comment-50.168.246.211-20160121044722\nTalk:Debug Camera/@comment-71.85.53.206-20160806220110\nTalk:Debug Camera/@comment-71.85.53.206-20160806220110/@comment-203.59.6.220-20160910091156\nTalk:Debug Camera/@comment-87.104.144.99-20151018225642\nTalk:Debug Camera/@comment-89.100.254.253-20150312142610\nTalk:Deep Charge/@comment-2003:DA:CBCB:1800:F942:A9FC:49B7:95B6-20180711115030\nTalk:Deep Space/@comment-184.58.243.212-20190130154219\nTalk:Defence Turrets/@comment-2602:306:CE29:B0D0:18CE:94DE:D402:A257-20190921033907\nTalk:Defence Turrets/@comment-2602:306:CE29:B0D0:18CE:94DE:D402:A257-20190921033907/@comment-90.195.95.48-20200120220004\nTalk:Defence Turrets/@comment-44180665-20200617162421\nTalk:Defence Turrets/@comment-44180665-20200617162421/@comment-44180665-20200617162922\nTalk:Degraded Emissions/@comment-173.73.27.230-20180723234024\nTalk:Degraded Emissions/@comment-27303938-20180322030043\nTalk:Degraded Emissions/@comment-27303938-20180322030043/@comment-96.44.94.198-20200209185741\nTalk:Delphi/@comment-176.78.158.9-20190505174803\nTalk:Delta Phoenicis Palms/@comment-108.242.216.67-20150201082018\nTalk:Delta Phoenicis Palms/@comment-77.50.26.143-20160814201422\nTalk:Delta Phoenicis Palms/@comment-98.28.68.147-20150922094405\nTalk:Denton Patreus/@comment-108.181.141.155-20160110012801\nTalk:Denton Patreus/@comment-173.64.201.135-20151003042935\nTalk:Denton Patreus/@comment-180.222.64.124-20150623043800\nTalk:Denton Patreus/@comment-206.74.70.134-20170715164601\nTalk:Denton Patreus/@comment-24740282-20180329211831\nTalk:Denton Patreus/@comment-25567323-20150907010058\nTalk:Denton Patreus/@comment-26526816-20150624042547\nTalk:Denton Patreus/@comment-26526816-20150624042547/@comment-151.231.142.251-20150910121309\nTalk:Denton Patreus/@comment-26526816-20150624042547/@comment-174.52.1.8-20150702164056\nTalk:Denton Patreus/@comment-70.29.247.117-20190117181006\nTalk:Denton Patreus/@comment-70.29.247.117-20190117213805\nTalk:Denton Patreus/@comment-76.69.122.72-20160822011407\nTalk:Denton Patreus/@comment-86.159.200.181-20150915095800\nTalk:Denton Patreus/@comment-90.190.244.77-20150630233414\nTalk:Detailed Surface Scanner/@comment-104.159.219.44-20150124013000\nTalk:Detailed Surface Scanner/@comment-104.159.219.44-20150124013000/@comment-108.19.86.227-20150201142422\nTalk:Detailed Surface Scanner/@comment-104.159.219.44-20150124013000/@comment-174.50.181.14-20160415140916\nTalk:Detailed Surface Scanner/@comment-104.159.219.44-20150124013000/@comment-86.164.87.176-20150303171811\nTalk:Detailed Surface Scanner/@comment-118.209.68.172-20150102092054\nTalk:Detailed Surface Scanner/@comment-129.89.104.180-20141221180238\nTalk:Detailed Surface Scanner/@comment-136.62.175.89-20190201175546\nTalk:Detailed Surface Scanner/@comment-139.161.115.244-20151025073202\nTalk:Detailed Surface Scanner/@comment-139.161.115.244-20151025073202/@comment-192.31.106.34-20160120234937\nTalk:Detailed Surface Scanner/@comment-139.161.115.244-20151025073202/@comment-26810344-20151206151531\nTalk:Detailed Surface Scanner/@comment-139.161.115.244-20151025073202/@comment-82.28.154.132-20170312134756\nTalk:Detailed Surface Scanner/@comment-151.225.126.103-20150127014906\nTalk:Detailed Surface Scanner/@comment-153.46.105.98-20151217094711\nTalk:Detailed Surface Scanner/@comment-153.46.105.98-20151217094711/@comment-27311754-20151217102916\nTalk:Detailed Surface Scanner/@comment-168.17.8.103-20150218031356\nTalk:Detailed Surface Scanner/@comment-168.17.8.103-20150218031356/@comment-25679378-20150224140552\nTalk:Detailed Surface Scanner/@comment-25926678-20141227032431\nTalk:Detailed Surface Scanner/@comment-25926678-20141227032431/@comment-79776-20141228001852\nTalk:Detailed Surface Scanner/@comment-26810344-20151206151700\nTalk:Detailed Surface Scanner/@comment-26810344-20151206151700/@comment-146.115.60.71-20180221155822\nTalk:Detailed Surface Scanner/@comment-26810344-20151206151700/@comment-2186376-20170112143135\nTalk:Detailed Surface Scanner/@comment-28341977-20160430075254\nTalk:Detailed Surface Scanner/@comment-28434084-20160802084122\nTalk:Detailed Surface Scanner/@comment-2A02:1811:D430:C500:A973:C7BD:5C1B:4C07-20180318101203\nTalk:Detailed Surface Scanner/@comment-33318590-20171010141651\nTalk:Detailed Surface Scanner/@comment-3353367-20150125193010\nTalk:Detailed Surface Scanner/@comment-4684179-20150330021800\nTalk:Detailed Surface Scanner/@comment-49.196.3.2-20141129021130\nTalk:Detailed Surface Scanner/@comment-49.196.3.2-20141129021130/@comment-25787591-20141203233700\nTalk:Detailed Surface Scanner/@comment-49.196.3.2-20141129021130/@comment-86.164.87.176-20150303171940\nTalk:Detailed Surface Scanner/@comment-4968814-20141226171035\nTalk:Detailed Surface Scanner/@comment-4968814-20141226171035/@comment-129.89.104.103-20141227171422\nTalk:Detailed Surface Scanner/@comment-4968814-20141226171035/@comment-4968814-20141227171513\nTalk:Detailed Surface Scanner/@comment-4968814-20141226171035/@comment-50.191.44.16-20150116135132\nTalk:Detailed Surface Scanner/@comment-4968814-20141226171035/@comment-81.225.196.146-20141226192741\nTalk:Detailed Surface Scanner/@comment-4968814-20150726203226\nTalk:Detailed Surface Scanner/@comment-4968814-20150726203226/@comment-4968814-20150727015703\nTalk:Detailed Surface Scanner/@comment-50.159.96.116-20150119143147\nTalk:Detailed Surface Scanner/@comment-60.231.13.126-20141212074459\nTalk:Detailed Surface Scanner/@comment-60.231.13.126-20141212074459/@comment-97.80.124.149-20141215032841\nTalk:Detailed Surface Scanner/@comment-72.94.160.35-20141221134252\nTalk:Detailed Surface Scanner/@comment-73.51.9.154-20150127133306\nTalk:Detailed Surface Scanner/@comment-74.193.42.79-20150601215830\nTalk:Detailed Surface Scanner/@comment-74.193.42.79-20150601215830/@comment-101.177.64.178-20150609125821\nTalk:Detailed Surface Scanner/@comment-78.34.67.204-20141224135435\nTalk:Detailed Surface Scanner/@comment-81.217.157.133-20150507071440\nTalk:Detailed Surface Scanner/@comment-81.217.157.133-20150507071440/@comment-26009169-20150525004416\nTalk:Detailed Surface Scanner/@comment-81.217.157.133-20150507071440/@comment-69.122.71.238-20150524204526\nTalk:Detailed Surface Scanner/@comment-88.113.77.22-20150102232248\nTalk:Detailed Surface Scanner/@comment-90.200.49.195-20181218171157\nTalk:Detailed Surface Scanner/@comment-90.200.49.195-20181218171157/@comment-185.34.10.13-20190925150012\nTalk:Detailed Surface Scanner/@comment-91.157.132.170-20150105163321\nTalk:Detailed Surface Scanner/@comment-91.157.132.170-20150105163321/@comment-84.75.167.109-20150107192117\nTalk:Detailed Surface Scanner/@comment-93.176.128.228-20190120024415\nTalk:Detailed Surface Scanner/@comment-95.154.62.70-20150422123956\nTalk:Detailed Surface Scanner/@comment-99.91.149.243-20180707115752\nTalk:Detention Centre/@comment-104.240.110.2-20180327172742\nTalk:Detention Centre/@comment-104.240.110.2-20180327172742/@comment-75.132.199.166-20180423014849\nTalk:Detention Centre/@comment-104.240.110.2-20180327172742/@comment-93.107.68.17-20180515070113\nTalk:Detention Centre/@comment-134.141.1.219-20181017190521\nTalk:Detention Centre/@comment-134.141.1.219-20181017190521/@comment-30928085-20181017201353\nTalk:Detention Centre/@comment-134.141.1.219-20181017190521/@comment-30928085-20181017220435\nTalk:Detention Centre/@comment-134.141.1.219-20181017190521/@comment-73.249.173.162-20181017203030\nTalk:Detention Centre/@comment-192.235.138.163-20190109022827\nTalk:Detention Centre/@comment-2602:306:CE29:B0D0:55DA:FB68:7DF9:4C05-20191013224646\nTalk:Detention Centre/@comment-2605:A000:161A:4494:8B5:5A18:98A6:E197-20180702150149\nTalk:Detention Centre/@comment-2605:A000:161A:4494:8B5:5A18:98A6:E197-20180702150149/@comment-30928085-20180708205453\nTalk:Detention Centre/@comment-2605:A000:161A:4494:8B5:5A18:98A6:E197-20180702150149/@comment-62.143.152.192-20180917211700\nTalk:Detention Centre/@comment-35650861-20180724094113\nTalk:Detention Centre/@comment-35650861-20180724094113/@comment-26810597-20180724231950\nTalk:Detention Centre/@comment-46.148.65.235-20180929192222\nTalk:Detention Centre/@comment-46.148.65.235-20180929192222/@comment-46.148.65.235-20180929193248\nTalk:Detention Centre/@comment-46357064-20200715123937\nTalk:Detention Centre/@comment-50.77.2.42-20190809152852\nTalk:Detention Centre/@comment-50.77.2.42-20190809152852/@comment-192.136.172.44-20190818164505\nTalk:Detention Centre/@comment-73.24.99.130-20200111135553\nTalk:Detention Centre/@comment-75.55.150.177-20180425174815\nTalk:Detention Centre/@comment-86.21.25.98-20180724043101\nTalk:Detention Centre/@comment-86.21.25.98-20180724043101/@comment-62.143.152.192-20180917211123\nTalk:Development Plans/@comment-1.136.96.15-20150804035447\nTalk:Development Plans/@comment-104.231.103.254-20150619155540\nTalk:Development Plans/@comment-104.231.103.254-20150619155540/@comment-162.224.156.75-20151019020812\nTalk:Development Plans/@comment-104.231.103.254-20150619155540/@comment-186.4.182.146-20160323192959\nTalk:Development Plans/@comment-104.231.103.254-20150619155540/@comment-68.145.72.142-20150708032710\nTalk:Development Plans/@comment-104.231.103.254-20150619155540/@comment-70.112.74.45-20150811200027\nTalk:Development Plans/@comment-130.229.29.117-20160301122211\nTalk:Development Plans/@comment-130.229.29.117-20160301122211/@comment-104.200.154.95-20160408150458\nTalk:Development Plans/@comment-130.229.29.117-20160301122211/@comment-109.176.240.46-20160726223116\nTalk:Development Plans/@comment-130.229.29.117-20160301122211/@comment-192.136.175.219-20160301154725\nTalk:Development Plans/@comment-130.229.29.117-20160301122211/@comment-27032150-20160301145756\nTalk:Development Plans/@comment-130.229.29.117-20160301122211/@comment-74.249.114.107-20181031190427\nTalk:Development Plans/@comment-142.116.13.235-20180829172332\nTalk:Development Plans/@comment-172.73.151.99-20191215161919\nTalk:Development Plans/@comment-176.78.158.9-20190607032511\nTalk:Development Plans/@comment-184.166.64.43-20191116083431\nTalk:Development Plans/@comment-184.166.64.43-20191116083431/@comment-30928085-20191117060010\nTalk:Development Plans/@comment-185.31.50.30-20190906144948\nTalk:Development Plans/@comment-188.141.14.224-20181120222637\nTalk:Development Plans/@comment-188.141.14.224-20190214071353\nTalk:Development Plans/@comment-192.190.108.35-20151108235515\nTalk:Development Plans/@comment-192.190.108.35-20151108235515/@comment-68.114.132.130-20151214212212\nTalk:Development Plans/@comment-192.190.108.35-20151108235515/@comment-86.1.70.139-20151211174657\nTalk:Development Plans/@comment-217.156.103.4-20150810111145\nTalk:Development Plans/@comment-217.156.103.4-20150810111145/@comment-138.163.0.41-20151202220421\nTalk:Development Plans/@comment-217.156.103.4-20150810111145/@comment-184.97.75.217-20160126024155\nTalk:Development Plans/@comment-217.156.103.4-20150810111145/@comment-186.4.182.146-20160323192743\nTalk:Development Plans/@comment-217.156.103.4-20150810111145/@comment-68.114.132.130-20151214213150\nTalk:Development Plans/@comment-217.156.103.4-20150810111145/@comment-70.112.74.45-20150811195742\nTalk:Development Plans/@comment-217.156.103.4-20150810111145/@comment-92.43.71.143-20151214141324\nTalk:Development Plans/@comment-217.156.103.4-20150810111145/@comment-93.187.177.160-20150810122130\nTalk:Development Plans/@comment-220.233.98.106-20150204002216\nTalk:Development Plans/@comment-220.233.98.106-20150204002216/@comment-138.163.0.42-20151202220628\nTalk:Development Plans/@comment-220.233.98.106-20150204002216/@comment-24.249.188.120-20150325155111\nTalk:Development Plans/@comment-220.233.98.106-20150204002216/@comment-86.186.190.3-20150521103832\nTalk:Development Plans/@comment-220.233.98.106-20150204002216/@comment-92.209.161.201-20150405064715\nTalk:Development Plans/@comment-24.144.237.202-20180211171222\nTalk:Development Plans/@comment-24.42.137.185-20160105051323\nTalk:Development Plans/@comment-24.42.137.185-20160105051323/@comment-66.109.235.218-20160822160801\nTalk:Development Plans/@comment-26391992-20150521140817\nTalk:Development Plans/@comment-26523660-20150623045641\nTalk:Development Plans/@comment-45084531-20200220060137\nTalk:Development Plans/@comment-45084531-20200220060137/@comment-38514251-20200225111428\nTalk:Development Plans/@comment-46.9.4.63-20150501173327\nTalk:Development Plans/@comment-65.61.89.208-20150415023914\nTalk:Development Plans/@comment-69.165.236.100-20180719202439\nTalk:Development Plans/@comment-69.165.236.100-20180719202439/@comment-2605:E000:62CB:DD00:B145:14E6:CF70:F910-20180817061157\nTalk:Development Plans/@comment-69.84.108.78-20150408172423\nTalk:Development Plans/@comment-69.84.108.78-20150408172423/@comment-124.149.177.188-20150708033506\nTalk:Development Plans/@comment-69.84.108.78-20150408172423/@comment-26009169-20150408173606\nTalk:Development Plans/@comment-69.84.108.78-20150408172423/@comment-77.44.14.231-20150626091306\nTalk:Development Plans/@comment-69.84.108.78-20150408172423/@comment-82.22.60.40-20150417064454\nTalk:Development Plans/@comment-69.84.108.78-20150408172423/@comment-86.186.190.3-20150521103430\nTalk:Development Plans/@comment-75.110.224.133-20160125161742\nTalk:Development Plans/@comment-80.129.36.129-20180502113048\nTalk:Development Plans/@comment-80.193.3.196-20150201150837\nTalk:Development Plans/@comment-80.193.3.196-20150201150837/@comment-69.84.108.78-20150408172553\nTalk:Development Plans/@comment-80.221.50.176-20151213163204\nTalk:Development Plans/@comment-80.95.139.66-20150930054233\nTalk:Development Plans/@comment-80.95.139.66-20150930054233/@comment-193.159.88.176-20160829092318\nTalk:Development Plans/@comment-90.201.1.124-20180927182327\nTalk:Development Plans/@comment-91.239.175.40-20150405105737\nTalk:Development Plans/@comment-91.239.175.40-20150405105737/@comment-108.208.34.159-20150603050734\nTalk:Development Plans/@comment-91.239.175.40-20150405105737/@comment-128.70.79.206-20180214170906\nTalk:Development Plans/@comment-91.239.175.40-20150405105737/@comment-26009169-20150405122348\nTalk:Development Plans/@comment-91.239.175.40-20150405105737/@comment-26009169-20150603092126\nTalk:Development Plans/@comment-91.239.175.40-20150405105737/@comment-86.186.190.3-20150521103634\nTalk:Development Plans/@comment-92.209.161.201-20150405060257\nTalk:Development Plans/@comment-93.64.88.166-20150504082750\nTalk:Development Plans/@comment-93.64.88.166-20150504082750/@comment-6033893-20150504091652\nTalk:Development Plans/@comment-93.64.88.166-20150504082750/@comment-70.112.74.45-20150811200138\nTalk:Diamondback/@comment-104.129.192.64-20150501180047\nTalk:Diamondback/@comment-108.208.176.103-20150415154116\nTalk:Diamondback/@comment-139.62.26.248-20150417145905\nTalk:Diamondback/@comment-139.62.26.248-20150417145942\nTalk:Diamondback/@comment-156.3.54.203-20150505213514\nTalk:Diamondback/@comment-156.3.54.203-20150505213514/@comment-108.132.228.114-20150506015141\nTalk:Diamondback/@comment-156.3.54.203-20150505213514/@comment-78.49.22.16-20150522191733\nTalk:Diamondback/@comment-156.3.54.203-20150505213514/@comment-82.241.236.151-20150506200919\nTalk:Diamondback/@comment-173.174.167.170-20150502055929\nTalk:Diamondback/@comment-173.174.167.170-20150502055929/@comment-173.174.167.170-20150502060125\nTalk:Diamondback/@comment-173.174.167.170-20150502055929/@comment-82.226.121.139-20150504161537\nTalk:Diamondback/@comment-173.55.173.227-20150512042543\nTalk:Diamondback/@comment-174.5.68.27-20150426062140\nTalk:Diamondback/@comment-174.5.68.27-20150426062140/@comment-86.139.100.120-20150501175911\nTalk:Diamondback/@comment-174.61.152.149-20150320060032\nTalk:Diamondback/@comment-174.61.152.149-20150320060032/@comment-118.93.112.252-20150402050536\nTalk:Diamondback/@comment-174.61.152.149-20150320060032/@comment-203.173.249.98-20150411211757\nTalk:Diamondback/@comment-193.38.100.250-20150424144224\nTalk:Diamondback/@comment-203.14.52.144-20150324005540\nTalk:Diamondback/@comment-24.184.13.211-20150419064507\nTalk:Diamondback/@comment-24.184.13.211-20150419064507/@comment-173.227.92.114-20150423161627\nTalk:Diamondback/@comment-24.184.13.211-20150419064507/@comment-24.76.241.23-20150424161441\nTalk:Diamondback/@comment-24.21.33.55-20150410162632\nTalk:Diamondback/@comment-24.21.33.55-20150410162632/@comment-203.173.249.98-20150411211844\nTalk:Diamondback/@comment-26239617-20150517105419\nTalk:Diamondback/@comment-26239617-20150517105419/@comment-82.226.121.139-20150519042157\nTalk:Diamondback/@comment-26262705-20150512181443\nTalk:Diamondback/@comment-26262705-20150512181443/@comment-37.162.35.241-20150520160343\nTalk:Diamondback/@comment-26262705-20150512181443/@comment-82.226.121.139-20150513215710\nTalk:Diamondback/@comment-26262705-20150522174437/@comment-26262705-20150522181423\nTalk:Diamondback/@comment-26262705-20150522174437/@comment-90.231.177.208-20150522175712\nTalk:Diamondback/@comment-26350310-20150427201016\nTalk:Diamondback/@comment-26391992-20150512053818\nTalk:Diamondback/@comment-26391992-20150512053818/@comment-78.49.22.16-20150522191625\nTalk:Diamondback/@comment-58.162.228.136-20150317120743\nTalk:Diamondback/@comment-72.200.116.46-20150506225055\nTalk:Diamondback/@comment-72.224.253.20-20150417170836\nTalk:Diamondback/@comment-73.171.6.26-20150424015846\nTalk:Diamondback/@comment-73.171.6.26-20150424015846/@comment-26212620-20150425094821\nTalk:Diamondback/@comment-73.171.6.26-20150424015846/@comment-67.186.92.128-20150425035158\nTalk:Diamondback/@comment-73.171.6.26-20150424015846/@comment-73.171.6.26-20150427142842\nTalk:Diamondback/@comment-73.171.6.26-20150424015846/@comment-78.49.247.74-20150425121409\nTalk:Diamondback/@comment-75.174.201.20-20150523014003\nTalk:Diamondback/@comment-78.49.3.145-20150412195252\nTalk:Diamondback/@comment-82.226.121.139-20150417225825\nTalk:Diamondback/@comment-82.226.121.139-20150430234922\nTalk:Diamondback/@comment-82.226.121.139-20150501203159\nTalk:Diamondback/@comment-82.226.121.139-20150501203159/@comment-82.226.121.139-20150501203307\nTalk:Diamondback/@comment-82.24.105.102-20150416181908\nTalk:Diamondback/@comment-82.24.105.102-20150416181908/@comment-26009169-20150421103719\nTalk:Diamondback/@comment-82.24.105.102-20150416181908/@comment-26116574-20150421145513\nTalk:Diamondback/@comment-82.24.105.102-20150416181908/@comment-26212620-20150423092404\nTalk:Diamondback/@comment-82.24.105.102-20150416181908/@comment-82.11.99.50-20150421101113\nTalk:Diamondback/@comment-88.217.25.187-20150523201649\nTalk:Diamondback/@comment-90.211.75.104-20150522080639\nTalk:Diamondback/@comment-90.211.75.104-20150522080639/@comment-90.211.75.104-20150522080817\nTalk:Diamondback/@comment-91.153.25.132-20150317164716\nTalk:Diamondback/@comment-94.204.37.202-20150417192310\nTalk:Diamondback/@comment-94.204.37.202-20150417192310/@comment-26009169-20150417231726\nTalk:Diamondback Explorer/@comment-1.123.37.237-20150610140903\nTalk:Diamondback Explorer/@comment-1.123.37.237-20150610140903/@comment-26530484-20150715052305\nTalk:Diamondback Explorer/@comment-104.136.32.244-20170903152414\nTalk:Diamondback Explorer/@comment-107.141.65.99-20150609204219\nTalk:Diamondback Explorer/@comment-107.141.65.99-20150609204219/@comment-107.141.65.99-20150610103636\nTalk:Diamondback Explorer/@comment-107.141.65.99-20150609204219/@comment-71.145.207.43-20150609223457\nTalk:Diamondback Explorer/@comment-107.141.65.99-20150609204219/@comment-76.92.151.172-20150612074348\nTalk:Diamondback Explorer/@comment-108.48.23.65-20150929061502\nTalk:Diamondback Explorer/@comment-110.149.165.56-20150606072007\nTalk:Diamondback Explorer/@comment-121.216.165.148-20150608110421\nTalk:Diamondback Explorer/@comment-134.3.144.62-20150603163915\nTalk:Diamondback Explorer/@comment-134.3.144.62-20150603163915/@comment-86.135.202.70-20150605222915\nTalk:Diamondback Explorer/@comment-134.3.144.62-20150610133342\nTalk:Diamondback Explorer/@comment-137.163.18.145-20190123131658\nTalk:Diamondback Explorer/@comment-137.163.18.145-20190123131658/@comment-68.197.23.46-20190704233632\nTalk:Diamondback Explorer/@comment-15.203.226.42-20170907085509\nTalk:Diamondback Explorer/@comment-15.203.226.42-20170907085509/@comment-187.159.242.47-20170914095337\nTalk:Diamondback Explorer/@comment-15.203.226.42-20170907085509/@comment-208.44.170.83-20180316154807\nTalk:Diamondback Explorer/@comment-15.203.226.42-20170907085509/@comment-210.246.26.18-20170925231447\nTalk:Diamondback Explorer/@comment-15.203.226.42-20170907085509/@comment-68.197.23.46-20190704234125\nTalk:Diamondback Explorer/@comment-150.208.129.188-20170417142848\nTalk:Diamondback Explorer/@comment-152.249.205.73-20150815182140\nTalk:Diamondback Explorer/@comment-152.249.205.73-20150815182140/@comment-76.89.173.100-20150824010059\nTalk:Diamondback Explorer/@comment-154.42.163.226-20151209164447\nTalk:Diamondback Explorer/@comment-154.42.163.226-20151209164447/@comment-50.111.206.178-20151212050253\nTalk:Diamondback Explorer/@comment-156.3.54.203-20150605200547\nTalk:Diamondback Explorer/@comment-156.3.54.203-20150605200547/@comment-213.106.113.50-20150606144433\nTalk:Diamondback Explorer/@comment-156.3.54.203-20150605201007\nTalk:Diamondback Explorer/@comment-156.3.54.203-20150608210612\nTalk:Diamondback Explorer/@comment-156.3.54.203-20150610162257\nTalk:Diamondback Explorer/@comment-156.3.54.204-20150915162038\nTalk:Diamondback Explorer/@comment-156.3.54.204-20150915162038/@comment-12.5.54.135-20151013143714\nTalk:Diamondback Explorer/@comment-156.3.54.204-20150915162038/@comment-156.3.54.204-20150921160851\nTalk:Diamondback Explorer/@comment-156.3.54.204-20150921160647\nTalk:Diamondback Explorer/@comment-156.3.54.204-20150921160647/@comment-26391992-20150921174055\nTalk:Diamondback Explorer/@comment-156.3.54.205-20150925173219\nTalk:Diamondback Explorer/@comment-156.3.54.205-20150925173219/@comment-12.5.54.135-20151013143623\nTalk:Diamondback Explorer/@comment-174.0.236.210-20160805064532\nTalk:Diamondback Explorer/@comment-178.142.112.182-20151121062345\nTalk:Diamondback Explorer/@comment-178.142.112.182-20151121062345/@comment-86.28.175.123-20160601163947\nTalk:Diamondback Explorer/@comment-178.78.77.51-20160104142622\nTalk:Diamondback Explorer/@comment-178.78.77.51-20160104143956\nTalk:Diamondback Explorer/@comment-178.78.77.51-20160327123031\nTalk:Diamondback Explorer/@comment-184.75.223.203-20160116081422\nTalk:Diamondback Explorer/@comment-184.75.223.203-20160116081422/@comment-78.53.22.36-20160224194504\nTalk:Diamondback Explorer/@comment-184.75.223.203-20160116081422/@comment-92.255.195.135-20160207165806\nTalk:Diamondback Explorer/@comment-189.158.172.188-20150816114749\nTalk:Diamondback Explorer/@comment-190.155.132.151-20150614002754\nTalk:Diamondback Explorer/@comment-193.150.37.193-20170524123405\nTalk:Diamondback Explorer/@comment-193.150.37.193-20170524123405/@comment-166.137.139.115-20170629184530\nTalk:Diamondback Explorer/@comment-193.150.37.193-20170524123405/@comment-5.138.106.143-20171019040848\nTalk:Diamondback Explorer/@comment-206.47.112.138-20160122175201\nTalk:Diamondback Explorer/@comment-206.47.112.138-20160122175201/@comment-24.48.202.38-20160123215204\nTalk:Diamondback Explorer/@comment-206.47.112.138-20160122175201/@comment-50.4.239.175-20160304014651\nTalk:Diamondback Explorer/@comment-213.211.214.66-20150628163028\nTalk:Diamondback Explorer/@comment-213.211.214.66-20150628163028/@comment-26530484-20150716011421\nTalk:Diamondback Explorer/@comment-24.233.225.101-20150718122251\nTalk:Diamondback Explorer/@comment-24.233.225.101-20150718122251/@comment-81.106.113.212-20150721030241\nTalk:Diamondback Explorer/@comment-24.244.104.21-20160311021758\nTalk:Diamondback Explorer/@comment-24.244.104.21-20160311021758/@comment-109.146.112.112-20160526172033\nTalk:Diamondback Explorer/@comment-24.244.104.21-20160311021758/@comment-50.170.117.254-20160715025525\nTalk:Diamondback Explorer/@comment-24.48.202.38-20160113043625\nTalk:Diamondback Explorer/@comment-24.48.202.38-20160113043625/@comment-143.81.103.35-20160115004824\nTalk:Diamondback Explorer/@comment-24.48.202.38-20160113043625/@comment-24.48.202.38-20160116215030\nTalk:Diamondback Explorer/@comment-24.55.29.116-20150718181216\nTalk:Diamondback Explorer/@comment-24.55.29.116-20150718181216/@comment-11990868-20150719002618\nTalk:Diamondback Explorer/@comment-24.55.29.116-20150718181216/@comment-71.79.94.185-20150804194710\nTalk:Diamondback Explorer/@comment-25147822-20151007220122\nTalk:Diamondback Explorer/@comment-25411947-20150925223501\nTalk:Diamondback Explorer/@comment-25490957-20151206070406\nTalk:Diamondback Explorer/@comment-2601:243:2080:3930:4DF4:BDDB:A992:9700-20190921125857\nTalk:Diamondback Explorer/@comment-2601:243:2080:3930:4DF4:BDDB:A992:9700-20190921125857/@comment-27941085-20190924073511\nTalk:Diamondback Explorer/@comment-2601:243:2080:3930:4DF4:BDDB:A992:9700-20190921125857/@comment-37820584-20190924083237\nTalk:Diamondback Explorer/@comment-2601:243:2080:3930:4DF4:BDDB:A992:9700-20190921125857/@comment-43623494-20190923193850\nTalk:Diamondback Explorer/@comment-26174322-20150619213837\nTalk:Diamondback Explorer/@comment-26391992-20150615145814\nTalk:Diamondback Explorer/@comment-26391992-20150615145814/@comment-26391992-20150703010458\nTalk:Diamondback Explorer/@comment-26391992-20150615145814/@comment-78.244.152.181-20150622143836\nTalk:Diamondback Explorer/@comment-26391992-20150615150115\nTalk:Diamondback Explorer/@comment-26530484-20150715195832\nTalk:Diamondback Explorer/@comment-26530484-20150715195832/@comment-26530484-20150716215805\nTalk:Diamondback Explorer/@comment-26530484-20150716215715\nTalk:Diamondback Explorer/@comment-26530484-20150716215935\nTalk:Diamondback Explorer/@comment-26719931-20150717135306\nTalk:Diamondback Explorer/@comment-2A01:E35:39A8:B820:4A0:D95D:6285:83AB-20170819182921\nTalk:Diamondback Explorer/@comment-2A01:E35:39A8:B820:4A0:D95D:6285:83AB-20170819182921/@comment-2A01:E35:39A8:B820:447:EC1E:7BD5:D311-20170820162452\nTalk:Diamondback Explorer/@comment-34004391-20180119082304\nTalk:Diamondback Explorer/@comment-34004391-20180119082304/@comment-185.95.205.31-20180126195934\nTalk:Diamondback Explorer/@comment-34004391-20180119082304/@comment-74.249.115.226-20180905062054\nTalk:Diamondback Explorer/@comment-34004391-20180119082304/@comment-98.193.10.19-20181119224050\nTalk:Diamondback Explorer/@comment-37.201.243.74-20160228195707\nTalk:Diamondback Explorer/@comment-37.201.243.74-20160228195707/@comment-79.224.124.93-20160319001611\nTalk:Diamondback Explorer/@comment-37.201.243.74-20160228195707/@comment-94.231.23.137-20160301023948\nTalk:Diamondback Explorer/@comment-43623494-20190906010858\nTalk:Diamondback Explorer/@comment-43623494-20190906010858/@comment-27941085-20190912095522\nTalk:Diamondback Explorer/@comment-43623494-20190906010858/@comment-27941085-20190917171710\nTalk:Diamondback Explorer/@comment-43623494-20190906010858/@comment-43623494-20190914220144\nTalk:Diamondback Explorer/@comment-43623494-20190906010858/@comment-43623494-20190923193747\nTalk:Diamondback Explorer/@comment-45354974-20200331214223\nTalk:Diamondback Explorer/@comment-45677112-20200523144253\nTalk:Diamondback Explorer/@comment-46.194.48.14-20150607002214\nTalk:Diamondback Explorer/@comment-46.194.48.14-20150607002214/@comment-156.3.54.203-20150608211431\nTalk:Diamondback Explorer/@comment-46.194.48.14-20150607002214/@comment-84.154.82.86-20150611223638\nTalk:Diamondback Explorer/@comment-46990009-20200926113727\nTalk:Diamondback Explorer/@comment-50.53.180.233-20150612190800\nTalk:Diamondback Explorer/@comment-50.53.180.233-20150612190800/@comment-26009169-20150612191002\nTalk:Diamondback Explorer/@comment-67.149.240.15-20150607033911\nTalk:Diamondback Explorer/@comment-67.149.240.15-20150607033911/@comment-72.241.143.238-20150609090720\nTalk:Diamondback Explorer/@comment-67.149.240.15-20150607033911/@comment-96.226.122.165-20150609031826\nTalk:Diamondback Explorer/@comment-68.9.215.6-20150913201215\nTalk:Diamondback Explorer/@comment-71.201.38.235-20150907160859\nTalk:Diamondback Explorer/@comment-71.201.38.235-20150907160859/@comment-26391992-20150918183149\nTalk:Diamondback Explorer/@comment-71.229.195.220-20150702161829\nTalk:Diamondback Explorer/@comment-71.244.203.231-20150611213535\nTalk:Diamondback Explorer/@comment-71.47.138.52-20150627150551\nTalk:Diamondback Explorer/@comment-71.92.98.135-20150613132319\nTalk:Diamondback Explorer/@comment-73.202.43.184-20151018101341\nTalk:Diamondback Explorer/@comment-73.50.15.211-20191006144803\nTalk:Diamondback Explorer/@comment-73.50.15.211-20191006144803/@comment-5.186.247.76-20200128161417\nTalk:Diamondback Explorer/@comment-73.50.15.211-20191006144803/@comment-66.190.197.164-20191016223440\nTalk:Diamondback Explorer/@comment-73.50.15.211-20191006144803/@comment-83.245.248.23-20191006192347\nTalk:Diamondback Explorer/@comment-74.112.36.106-20151020174449\nTalk:Diamondback Explorer/@comment-76.89.173.100-20150824010039\nTalk:Diamondback Explorer/@comment-77.250.109.152-20160512032511\nTalk:Diamondback Explorer/@comment-77.250.109.152-20160512032511/@comment-74.249.112.106-20180921001157\nTalk:Diamondback Explorer/@comment-78.53.3.60-20150610144329\nTalk:Diamondback Explorer/@comment-80.193.245.84-20150621182332\nTalk:Diamondback Explorer/@comment-80.193.245.84-20150621182332/@comment-46.59.166.69-20150621223800\nTalk:Diamondback Explorer/@comment-81.184.173.137-20160105065033\nTalk:Diamondback Explorer/@comment-81.184.173.137-20160105065033/@comment-192.136.161.52-20170130181304\nTalk:Diamondback Explorer/@comment-81.184.173.137-20160105065033/@comment-192.136.174.152-20160304122726\nTalk:Diamondback Explorer/@comment-81.184.173.137-20160105065033/@comment-50.4.239.175-20160304014901\nTalk:Diamondback Explorer/@comment-81.184.173.137-20160105065033/@comment-62.159.185.194-20170130135237\nTalk:Diamondback Explorer/@comment-82.208.5.86-20150603203214\nTalk:Diamondback Explorer/@comment-82.208.5.86-20150603203214/@comment-134.3.144.62-20150603213654\nTalk:Diamondback Explorer/@comment-82.208.5.86-20150603203214/@comment-195.188.174.32-20150608132325\nTalk:Diamondback Explorer/@comment-82.208.5.86-20150603203214/@comment-50.191.58.144-20150604045753\nTalk:Diamondback Explorer/@comment-82.208.5.86-20150603203214/@comment-82.208.5.86-20150604084041\nTalk:Diamondback Explorer/@comment-82.208.5.86-20150603203214/@comment-86.157.102.208-20150606143058\nTalk:Diamondback Explorer/@comment-82.217.212.189-20160427202501\nTalk:Diamondback Explorer/@comment-82.217.212.189-20160427202501/@comment-206.208.187.105-20161217134058\nTalk:Diamondback Explorer/@comment-82.217.212.189-20160427202501/@comment-82.217.212.189-20160427202710\nTalk:Diamondback Explorer/@comment-82.226.121.139-20150603173400\nTalk:Diamondback Explorer/@comment-82.226.121.139-20150603173400/@comment-104.238.169.138-20150603211407\nTalk:Diamondback Explorer/@comment-82.226.121.139-20150603173400/@comment-174.22.230.75-20150605182330\nTalk:Diamondback Explorer/@comment-82.226.121.139-20150603173400/@comment-84.135.23.53-20150603174321\nTalk:Diamondback Explorer/@comment-82.69.9.196-20150829200503\nTalk:Diamondback Explorer/@comment-82.76.217.215-20160109115629\nTalk:Diamondback Explorer/@comment-84.107.201.162-20160821175801\nTalk:Diamondback Explorer/@comment-84.107.201.162-20160821175801/@comment-84.107.201.162-20160821213314\nTalk:Diamondback Explorer/@comment-84.135.23.53-20150603170716\nTalk:Diamondback Explorer/@comment-84.135.23.53-20150603170716/@comment-82.226.121.139-20150603170918\nTalk:Diamondback Explorer/@comment-84.135.23.53-20150603170716/@comment-82.226.121.139-20150603173346\nTalk:Diamondback Explorer/@comment-84.135.23.53-20150603170716/@comment-84.135.23.53-20150603173037\nTalk:Diamondback Explorer/@comment-84.135.23.53-20150603170716/@comment-88.106.30.154-20150603195620\nTalk:Diamondback Explorer/@comment-84.152.166.22-20160731112510\nTalk:Diamondback Explorer/@comment-84.168.106.88-20150719191056\nTalk:Diamondback Explorer/@comment-84.168.106.88-20150719191056/@comment-203.206.122.242-20150809042917\nTalk:Diamondback Explorer/@comment-84.168.106.88-20150719191056/@comment-26530484-20150721030438\nTalk:Diamondback Explorer/@comment-84.168.106.88-20150719191056/@comment-26530484-20150725020027\nTalk:Diamondback Explorer/@comment-84.168.106.88-20150719191056/@comment-79.132.19.230-20150720201501\nTalk:Diamondback Explorer/@comment-86.176.2.77-20150722172039\nTalk:Diamondback Explorer/@comment-86.176.2.77-20150722172039/@comment-133748-20150722181634\nTalk:Diamondback Explorer/@comment-87.174.31.153-20160123211317\nTalk:Diamondback Explorer/@comment-87.174.31.153-20160123211317/@comment-24.48.202.38-20160123215023\nTalk:Diamondback Explorer/@comment-92.17.185.172-20151014174655\nTalk:Diamondback Explorer/@comment-92.2.215.233-20150627124740\nTalk:Diamondback Explorer/@comment-92.2.215.233-20150627124740/@comment-151.229.226.118-20150722201258\nTalk:Diamondback Explorer/@comment-92.2.215.233-20150627124740/@comment-26530484-20150715195855\nTalk:Diamondback Explorer/@comment-92.2.215.233-20150719142720\nTalk:Diamondback Explorer/@comment-99.113.61.88-20150615134140\nTalk:Diamondback Scout/@comment-1.125.49.72-20150612034423\nTalk:Diamondback Scout/@comment-1.125.49.72-20150612034423/@comment-150.101.207.73-20150707003013\nTalk:Diamondback Scout/@comment-1.125.49.72-20150612034423/@comment-5.18.174.40-20150723015146\nTalk:Diamondback Scout/@comment-107.145.106.211-20150524065055\nTalk:Diamondback Scout/@comment-107.145.106.211-20150529182557\nTalk:Diamondback Scout/@comment-108.242.216.67-20150527050259\nTalk:Diamondback Scout/@comment-108.242.216.67-20150527050259/@comment-26307924-20150527073754\nTalk:Diamondback Scout/@comment-108.242.216.67-20150527050259/@comment-82.3.206.100-20150528070005\nTalk:Diamondback Scout/@comment-121.216.165.148-20150608110452\nTalk:Diamondback Scout/@comment-121.218.45.94-20161103122339\nTalk:Diamondback Scout/@comment-143.238.133.138-20150606105804\nTalk:Diamondback Scout/@comment-149.12.11.70-20150526173419\nTalk:Diamondback Scout/@comment-15.203.226.42-20170907071001\nTalk:Diamondback Scout/@comment-150.208.129.188-20170426141944\nTalk:Diamondback Scout/@comment-151.225.94.241-20150526170141\nTalk:Diamondback Scout/@comment-156.3.54.202-20150527145200\nTalk:Diamondback Scout/@comment-156.3.54.202-20150527145200/@comment-156.3.54.203-20150529145209\nTalk:Diamondback Scout/@comment-156.3.54.203-20150526205132\nTalk:Diamondback Scout/@comment-156.3.54.203-20150526205758\nTalk:Diamondback Scout/@comment-156.3.54.203-20150526205758/@comment-108.132.228.168-20150526215128\nTalk:Diamondback Scout/@comment-156.3.54.203-20150526205758/@comment-24.104.70.146-20150526212059\nTalk:Diamondback Scout/@comment-156.3.54.203-20150605200852\nTalk:Diamondback Scout/@comment-168.235.195.182-20150527234251\nTalk:Diamondback Scout/@comment-168.235.195.182-20150527234251/@comment-108.132.228.168-20150528003758\nTalk:Diamondback Scout/@comment-168.235.195.182-20150527234251/@comment-187.140.249.238-20150529164320\nTalk:Diamondback Scout/@comment-168.235.195.182-20150527234251/@comment-68.225.170.238-20150701093002\nTalk:Diamondback Scout/@comment-168.235.195.182-20150527234251/@comment-77.10.109.5-20150530001326\nTalk:Diamondback Scout/@comment-173.191.151.131-20151224082947\nTalk:Diamondback Scout/@comment-173.191.151.131-20151224082947/@comment-50.170.117.254-20160210044356\nTalk:Diamondback Scout/@comment-173.55.173.227-20150601051120\nTalk:Diamondback Scout/@comment-173.55.173.227-20150601051120/@comment-156.3.54.203-20150601145601\nTalk:Diamondback Scout/@comment-173.55.173.227-20150601051120/@comment-156.3.54.203-20150601145835\nTalk:Diamondback Scout/@comment-173.55.173.227-20150601051120/@comment-31.222.223.227-20150601142727\nTalk:Diamondback Scout/@comment-173.55.173.227-20150601051120/@comment-90.220.141.0-20150601064046\nTalk:Diamondback Scout/@comment-173.80.93.74-20160124001852\nTalk:Diamondback Scout/@comment-173.80.93.74-20160124001852/@comment-70.191.82.171-20161029193610\nTalk:Diamondback Scout/@comment-173.80.93.74-20160124001852/@comment-71.17.244.202-20160409003526\nTalk:Diamondback Scout/@comment-173.80.93.74-20160124001852/@comment-75.138.35.156-20160828072318\nTalk:Diamondback Scout/@comment-174.70.137.232-20150531023906\nTalk:Diamondback Scout/@comment-174.70.137.232-20150531023906/@comment-67.210.67.44-20150531044904\nTalk:Diamondback Scout/@comment-178.61.129.150-20150530205404\nTalk:Diamondback Scout/@comment-187.140.249.238-20150529164122\nTalk:Diamondback Scout/@comment-187.140.249.238-20150529164122/@comment-107.145.106.211-20150529182339\nTalk:Diamondback Scout/@comment-187.140.249.238-20150529164122/@comment-108.246.28.95-20150530032321\nTalk:Diamondback Scout/@comment-187.140.249.238-20150529164122/@comment-187.140.249.238-20150529194530\nTalk:Diamondback Scout/@comment-187.140.249.238-20150529164122/@comment-26445121-20150530094601\nTalk:Diamondback Scout/@comment-187.140.249.238-20150529164122/@comment-89.192.161.218-20150606143604\nTalk:Diamondback Scout/@comment-189.155.75.226-20150909172317\nTalk:Diamondback Scout/@comment-189.155.75.226-20150909172317/@comment-210.55.18.198-20150911011830\nTalk:Diamondback Scout/@comment-189.155.75.226-20150909172317/@comment-81.141.53.110-20151031182526\nTalk:Diamondback Scout/@comment-189.19.204.5-20150526205230\nTalk:Diamondback Scout/@comment-189.19.204.5-20150526205230/@comment-156.3.54.203-20150526205611\nTalk:Diamondback Scout/@comment-189.19.204.5-20150526205230/@comment-77.97.210.77-20150526211802\nTalk:Diamondback Scout/@comment-190.155.132.151-20150528021405\nTalk:Diamondback Scout/@comment-190.155.132.151-20150528021405/@comment-108.132.228.168-20150528030109\nTalk:Diamondback Scout/@comment-190.155.132.151-20150528021405/@comment-156.3.54.203-20150529145645\nTalk:Diamondback Scout/@comment-190.155.132.151-20150528021405/@comment-24.104.70.146-20150528154506\nTalk:Diamondback Scout/@comment-190.155.132.151-20150528021405/@comment-77.10.109.5-20150529234649\nTalk:Diamondback Scout/@comment-190.155.132.151-20150528021405/@comment-82.226.121.139-20150529120539\nTalk:Diamondback Scout/@comment-207.30.100.162-20150610151320\nTalk:Diamondback Scout/@comment-2188654-20150711210645\nTalk:Diamondback Scout/@comment-2188654-20150711210645/@comment-189.155.75.226-20150908191823\nTalk:Diamondback Scout/@comment-24.104.70.146-20150526192653\nTalk:Diamondback Scout/@comment-24.217.94.175-20150629111229\nTalk:Diamondback Scout/@comment-24.76.241.23-20150527023516\nTalk:Diamondback Scout/@comment-24.76.241.23-20150527023516/@comment-24.104.70.146-20150528154951\nTalk:Diamondback Scout/@comment-25147822-20151007220137\nTalk:Diamondback Scout/@comment-26033489-20150524014605\nTalk:Diamondback Scout/@comment-26033489-20150524014605/@comment-108.242.216.67-20150524032155\nTalk:Diamondback Scout/@comment-26174322-20150619042747\nTalk:Diamondback Scout/@comment-26262705-20150522174437\nTalk:Diamondback Scout/@comment-26307924-20150526190833\nTalk:Diamondback Scout/@comment-26372902-20150608001249\nTalk:Diamondback Scout/@comment-26372902-20150608001249/@comment-72.241.143.238-20150609091032\nTalk:Diamondback Scout/@comment-26372902-20150608001249/@comment-72.84.125.109-20150608054908\nTalk:Diamondback Scout/@comment-26372902-20150608001249/@comment-73.157.86.62-20150628152059\nTalk:Diamondback Scout/@comment-26438096-20150527013008\nTalk:Diamondback Scout/@comment-26445121-20150529100519\nTalk:Diamondback Scout/@comment-26445121-20150529100519/@comment-156.3.54.203-20150529145337\nTalk:Diamondback Scout/@comment-26445121-20150610100749\nTalk:Diamondback Scout/@comment-26445121-20150610100749/@comment-122.106.150.248-20150909133906\nTalk:Diamondback Scout/@comment-26445121-20150610100749/@comment-71.92.98.135-20150613132452\nTalk:Diamondback Scout/@comment-26810344-20160724114507\nTalk:Diamondback Scout/@comment-26948386-20160202072238\nTalk:Diamondback Scout/@comment-26948386-20160202072238/@comment-101.184.133.201-20160203102012\nTalk:Diamondback Scout/@comment-26948386-20160202072238/@comment-26227424-20160527003939\nTalk:Diamondback Scout/@comment-26948386-20160202072238/@comment-27032150-20160203120654\nTalk:Diamondback Scout/@comment-26972478-20150909141822\nTalk:Diamondback Scout/@comment-34004391-20180112091949\nTalk:Diamondback Scout/@comment-4295862-20150526201726\nTalk:Diamondback Scout/@comment-50.166.254.43-20150610040837\nTalk:Diamondback Scout/@comment-50.175.181.155-20150528030341\nTalk:Diamondback Scout/@comment-50.175.181.155-20150528030341/@comment-138.163.0.41-20150528173235\nTalk:Diamondback Scout/@comment-58.170.64.61-20150927130209\nTalk:Diamondback Scout/@comment-58.7.138.127-20150707185235\nTalk:Diamondback Scout/@comment-58.7.138.127-20150707185235/@comment-26033489-20150707201425\nTalk:Diamondback Scout/@comment-6245120-20151127183834\nTalk:Diamondback Scout/@comment-67.168.197.251-20150609041435\nTalk:Diamondback Scout/@comment-67.172.222.141-20150629211133\nTalk:Diamondback Scout/@comment-67.210.67.44-20150523224519\nTalk:Diamondback Scout/@comment-67.210.67.44-20150523224519/@comment-108.132.233.175-20150524173131\nTalk:Diamondback Scout/@comment-67.210.67.44-20150523224519/@comment-151.225.94.241-20150525093949\nTalk:Diamondback Scout/@comment-67.210.67.44-20150523224519/@comment-99.46.141.100-20150524072916\nTalk:Diamondback Scout/@comment-67.43.245.186-20150622124052\nTalk:Diamondback Scout/@comment-68.187.65.63-20150719172525\nTalk:Diamondback Scout/@comment-68.187.65.63-20150719172525/@comment-77.102.250.232-20170405095722\nTalk:Diamondback Scout/@comment-69.114.195.213-20180909172045\nTalk:Diamondback Scout/@comment-69.114.195.213-20180909172045/@comment-69.114.195.213-20180909172058\nTalk:Diamondback Scout/@comment-69.114.195.213-20180909172045/@comment-82.1.203.26-20200109162933\nTalk:Diamondback Scout/@comment-70.191.82.171-20161029195622\nTalk:Diamondback Scout/@comment-70.191.82.171-20161029195622/@comment-98.193.10.19-20181119223515\nTalk:Diamondback Scout/@comment-72.241.143.238-20150609090901\nTalk:Diamondback Scout/@comment-73.1.55.15-20151011015451\nTalk:Diamondback Scout/@comment-73.1.55.15-20160109085438\nTalk:Diamondback Scout/@comment-73.220.101.124-20150526172557\nTalk:Diamondback Scout/@comment-73.25.53.87-20150612021057\nTalk:Diamondback Scout/@comment-74.112.36.106-20151020174702\nTalk:Diamondback Scout/@comment-75.115.196.213-20150627051527\nTalk:Diamondback Scout/@comment-76.92.151.172-20150607090337\nTalk:Diamondback Scout/@comment-78.48.82.91-20150527100307\nTalk:Diamondback Scout/@comment-78.48.82.91-20150527100307/@comment-50.175.181.155-20150528030555\nTalk:Diamondback Scout/@comment-79.132.19.230-20150716112235\nTalk:Diamondback Scout/@comment-79.132.19.230-20150716112235/@comment-26716179-20150717085406\nTalk:Diamondback Scout/@comment-79.132.19.230-20150717134757\nTalk:Diamondback Scout/@comment-79.132.19.230-20150717134757/@comment-79.132.19.230-20150717140321\nTalk:Diamondback Scout/@comment-79.132.19.230-20150717134757/@comment-79.132.19.230-20150717140454\nTalk:Diamondback Scout/@comment-79.132.19.230-20150717134757/@comment-79.132.19.230-20150717140750\nTalk:Diamondback Scout/@comment-79.132.19.230-20150717134757/@comment-79.73.94.181-20161203023626\nTalk:Diamondback Scout/@comment-79.132.19.230-20150717134757/@comment-90.191.217.209-20151209144201\nTalk:Diamondback Scout/@comment-82.226.121.139-20150522173205\nTalk:Diamondback Scout/@comment-82.226.121.139-20150522183947\nTalk:Diamondback Scout/@comment-82.226.121.139-20150522183947/@comment-67.210.67.44-20150523032050\nTalk:Diamondback Scout/@comment-84.135.27.214-20150601190459\nTalk:Diamondback Scout/@comment-84.135.27.214-20150601190459/@comment-68.225.170.238-20150701092310\nTalk:Diamondback Scout/@comment-84.135.37.29-20150527140138\nTalk:Diamondback Scout/@comment-84.135.37.29-20150527140138/@comment-24.104.70.146-20150528154603\nTalk:Diamondback Scout/@comment-84.193.142.189-20150524210957\nTalk:Diamondback Scout/@comment-84.193.142.189-20150524210957/@comment-151.225.94.241-20150525093232\nTalk:Diamondback Scout/@comment-85.18.231.4-20150523224247\nTalk:Diamondback Scout/@comment-85.23.172.59-20150609110544\nTalk:Diamondback Scout/@comment-86.101.117.105-20150526173238\nTalk:Diamondback Scout/@comment-86.101.117.105-20150526173238/@comment-26307924-20150526191022\nTalk:Diamondback Scout/@comment-86.132.64.6-20150616150132\nTalk:Diamondback Scout/@comment-86.132.64.6-20150616150132/@comment-26174322-20150619214333\nTalk:Diamondback Scout/@comment-86.132.64.6-20150616150132/@comment-87.244.115.145-20150619184347\nTalk:Diamondback Scout/@comment-87.81.186.115-20150528082419\nTalk:Diamondback Scout/@comment-87.81.186.115-20150528082419/@comment-24.104.70.146-20150528155212\nTalk:Diamondback Scout/@comment-87.81.186.115-20150528082419/@comment-26420537-20150602133422\nTalk:Diamondback Scout/@comment-87.81.186.115-20150528082419/@comment-50.192.48.153-20150529130952\nTalk:Diamondback Scout/@comment-87.81.186.115-20150528082419/@comment-82.226.121.139-20150529120457\nTalk:Diamondback Scout/@comment-87.81.186.115-20150528082419/@comment-84.195.8.142-20150528160414\nTalk:Diamondback Scout/@comment-88.152.98.102-20160822130903\nTalk:Diamondback Scout/@comment-88.152.98.102-20160822130903/@comment-30496832-20161218213849\nTalk:Diamondback Scout/@comment-88.152.98.102-20160822130903/@comment-75.138.35.156-20160828061645\nTalk:Diamondback Scout/@comment-88.152.98.102-20160822130903/@comment-88.152.98.102-20160902065251\nTalk:Diamondback Scout/@comment-88.217.25.187-20150523200611\nTalk:Diamondback Scout/@comment-92.12.134.221-20150527233522\nTalk:Diamondback Scout/@comment-92.12.134.221-20150527233522/@comment-24.104.70.146-20150528154535\nTalk:Diamondback Scout/@comment-92.12.134.221-20150527234447\nTalk:Diamondback Scout/@comment-92.12.134.221-20150527234447/@comment-1.125.49.72-20150612024626\nTalk:Diamondback Scout/@comment-92.2.215.233-20150627124941\nTalk:Diamondback Scout/@comment-92.52.61.249-20150526170326\nTalk:Diamondback Scout/@comment-93.81.237.84-20151004200448\nTalk:Diamondback Scout/@comment-94.14.227.191-20150530113547\nTalk:Diamondback Scout/@comment-94.14.227.191-20150530113547/@comment-108.246.28.95-20150531025932\nTalk:Diamondback Scout/@comment-94.14.79.222-20150718163638\nTalk:Diamondback Scout/@comment-94.14.79.222-20150718163638/@comment-122.106.150.248-20150909140628\nTalk:Diamondback Scout/@comment-94.14.79.222-20150718163638/@comment-203.104.11.26-20151008013019\nTalk:Diamondback Scout/@comment-94.14.79.222-20150718163638/@comment-210.55.18.198-20150909203718\nTalk:Diamondback Scout/@comment-94.14.79.222-20150718163638/@comment-58.64.242.3-20150720101037\nTalk:Diamondback Scout/@comment-94.14.79.222-20150718163638/@comment-73.1.55.15-20150821041318\nTalk:Diamondback Scout/@comment-94.5.138.232-20150601011623\nTalk:Diamondback Scout/@comment-94.5.138.232-20150601011623/@comment-173.55.173.227-20150601053037\nTalk:Diamondback Scout/@comment-94.5.138.232-20150601011623/@comment-173.55.173.227-20150602051320\nTalk:Diamondback Scout/@comment-95.131.110.124-20151123140658\nTalk:Diamondback Scout/@comment-95.131.110.124-20151123140658/@comment-26391992-20151209172140\nTalk:Diamondback Scout/@comment-95.131.110.124-20151123140658/@comment-71.233.88.91-20160601012928\nTalk:Diamondback Scout/@comment-95.131.110.124-20151123140658/@comment-71.233.88.91-20160603174330\nTalk:Diamondback Scout/@comment-97.122.123.45-20170115000215\nTalk:Didi Vatermann/@comment-50.126.117.111-20180624234214\nTalk:Didi Vatermann/@comment-50.126.117.111-20180624234214/@comment-89.115.173.106-20180704085810\nTalk:Didi Vatermann/@comment-50.126.117.111-20180628175403\nTalk:Didi Vatermann/@comment-50.126.117.111-20180628175403/@comment-89.115.173.106-20180704085803\nTalk:Didi Vatermann/@comment-89.115.173.106-20180704085737\nTalk:Discounts/@comment-45614581-20200427071735\nTalk:Discovery Scanner/@comment-103.24.67.108-20181216144127\nTalk:Discovery Scanner/@comment-103.24.67.108-20181216144127/@comment-103.24.67.108-20181216145509\nTalk:Discovery Scanner/@comment-103.24.67.108-20181216144127/@comment-2605:B100:F04E:5911:1508:ACEB:5BE6:67C1-20181231214739\nTalk:Discovery Scanner/@comment-109.246.33.42-20150104123439\nTalk:Discovery Scanner/@comment-115.164.49.248-20190415013439\nTalk:Discovery Scanner/@comment-115.164.49.248-20190415013439/@comment-170.185.126.17-20191111192431\nTalk:Discovery Scanner/@comment-115.164.49.248-20190415013439/@comment-199.178.216.100-20190415151630\nTalk:Discovery Scanner/@comment-144.160.98.91-20160324184345\nTalk:Discovery Scanner/@comment-144.160.98.91-20160324184345/@comment-125.237.3.1-20161014010458\nTalk:Discovery Scanner/@comment-144.160.98.91-20160324184345/@comment-170.185.126.17-20191111192628\nTalk:Discovery Scanner/@comment-144.160.98.91-20160324184345/@comment-212.178.140.54-20180418061308\nTalk:Discovery Scanner/@comment-156.3.54.204-20150428213446\nTalk:Discovery Scanner/@comment-156.3.54.204-20150428213446/@comment-156.3.54.203-20150507203657\nTalk:Discovery Scanner/@comment-162.157.24.169-20150328175124\nTalk:Discovery Scanner/@comment-162.196.161.44-20151203100233\nTalk:Discovery Scanner/@comment-1640573-20151226133533\nTalk:Discovery Scanner/@comment-172.56.29.82-20141226022524\nTalk:Discovery Scanner/@comment-173.231.126.32-20181214131642\nTalk:Discovery Scanner/@comment-173.231.126.32-20181214131642/@comment-216.211.49.251-20181220031440\nTalk:Discovery Scanner/@comment-213.114.71.185-20150105150256\nTalk:Discovery Scanner/@comment-213.118.129.55-20141004225130\nTalk:Discovery Scanner/@comment-213.118.129.55-20141004225130/@comment-158.180.192.10-20141005114541\nTalk:Discovery Scanner/@comment-213.118.129.55-20141004225130/@comment-25411947-20141104230025\nTalk:Discovery Scanner/@comment-213.118.129.55-20141004225130/@comment-70.179.129.16-20141222144642\nTalk:Discovery Scanner/@comment-2605:6000:170F:40E0:9DF8:F952:1683:EAE8-20181214015241\nTalk:Discovery Scanner/@comment-28434084-20160802084029\nTalk:Discovery Scanner/@comment-28934960-20180403130052\nTalk:Discovery Scanner/@comment-28934960-20180403130052/@comment-71.12.150.53-20180707113718\nTalk:Discovery Scanner/@comment-28934960-20180403130052/@comment-99.91.149.243-20180707121005\nTalk:Discovery Scanner/@comment-31.124.35.110-20190823151410\nTalk:Discovery Scanner/@comment-31.124.35.110-20190823151410/@comment-31.124.35.110-20190824155415\nTalk:Discovery Scanner/@comment-3194773-20150125150749\nTalk:Discovery Scanner/@comment-4968814-20141221180409\nTalk:Discovery Scanner/@comment-4968814-20150107185057\nTalk:Discovery Scanner/@comment-63.116.31.198-20181029194803\nTalk:Discovery Scanner/@comment-67.215.158.96-20141009061257\nTalk:Discovery Scanner/@comment-67.215.158.96-20141009061257/@comment-82.220.1.196-20141016074928\nTalk:Discovery Scanner/@comment-67.215.158.96-20141009061257/@comment-82.220.1.196-20141016112625\nTalk:Discovery Scanner/@comment-67.215.158.96-20141009061257/@comment-91.119.21.122-20141016164922\nTalk:Discovery Scanner/@comment-68.104.25.123-20150307225156\nTalk:Discovery Scanner/@comment-70.193.69.194-20150227145721\nTalk:Discovery Scanner/@comment-70.193.69.194-20150227145721/@comment-170.185.126.17-20191111192756\nTalk:Discovery Scanner/@comment-72.94.160.35-20141221133903\nTalk:Discovery Scanner/@comment-73.25.12.128-20170815042243\nTalk:Discovery Scanner/@comment-76.209.17.71-20150427224258\nTalk:Discovery Scanner/@comment-76.209.17.71-20150427224258/@comment-89.77.21.129-20171022122826\nTalk:Discovery Scanner/@comment-79.127.132.137-20151014123056\nTalk:Discovery Scanner/@comment-79.127.132.137-20151014123056/@comment-82.72.90.35-20170708223447\nTalk:Discovery Scanner/@comment-82.0.145.148-20160203082642\nTalk:Discovery Scanner/@comment-82.128.249.206-20150124195316\nTalk:Discovery Scanner/@comment-82.169.90.156-20141228115839\nTalk:Discovery Scanner/@comment-82.169.90.156-20141228115839/@comment-78.144.143.135-20150102025943\nTalk:Discovery Scanner/@comment-82.42.148.9-20181114012416\nTalk:Discovery Scanner/@comment-82.42.148.9-20181114012416/@comment-90.200.49.195-20181212163520\nTalk:Discovery Scanner/@comment-85.165.223.45-20141106134025\nTalk:Discovery Scanner/@comment-85.85.225.97-20160209154338\nTalk:Discovery Scanner/@comment-91.119.29.23-20141030182048\nTalk:Discovery Scanner/@comment-92.208.78.162-20141006180954\nTalk:Discovery Scanner/@comment-92.208.78.162-20141006180954/@comment-62.2.217.58-20141007113656\nTalk:Diso Ma Corn/@comment-107.50.64.235-20150530153246\nTalk:Diso Ma Corn/@comment-107.50.64.235-20150530153246/@comment-23.120.241.110-20150619000314\nTalk:Diso Ma Corn/@comment-107.50.64.235-20150530153246/@comment-99.114.68.181-20150606131142\nTalk:Diso Ma Corn/@comment-68.110.93.194-20150623181833\nTalk:Diso Ma Corn/@comment-68.110.93.194-20150623181833/@comment-26033489-20150626094443\nTalk:Diso Ma Corn/@comment-68.110.93.194-20150623181833/@comment-73.41.122.161-20150626082438\nTalk:Diso Ma Corn/@comment-73.142.176.57-20150523170852\nTalk:Diso Ma Corn/@comment-77.50.26.143-20160814204128\nTalk:Dispersal Field/@comment-188.192.233.190-20190323144227\nTalk:Dispersal Field/@comment-188.192.233.190-20190323144227/@comment-192.136.170.98-20190323164834\nTalk:Dispersal Field/@comment-188.192.233.190-20190323144227/@comment-34380896-20190829174721\nTalk:Dispersal Field/@comment-44180665-20200524014513\nTalk:Distant Worlds/@comment-82.11.240.23-20180112175606\nTalk:Distant Worlds II/@comment-2003:E9:7F34:1400:C839:41DB:762C:270C-20190111221529\nTalk:Distant Worlds II/@comment-2003:E9:7F34:1400:C839:41DB:762C:270C-20190113195317\nTalk:Distant Worlds II/@comment-2003:E9:7F34:1400:C839:41DB:762C:270C-20190113195317/@comment-72.197.150.63-20190114071249\nTalk:Distant Worlds II/@comment-2607:FCC8:6703:1000:F9DF:F767:3D1C:97E3-20190629135421\nTalk:Distant Worlds II/@comment-2A00:23C5:310C:9C00:54F5:5B60:6952:BABB-20190113201553\nTalk:Distant Worlds II/@comment-32497773-20190114162322\nTalk:Distant Worlds II/@comment-37813505-20190507131034\nTalk:Distant Worlds II/@comment-43495716-20200803231025\nTalk:Distant Worlds II/@comment-66.58.196.180-20190113202437\nTalk:Distant Worlds II/@comment-66.58.196.180-20190113202437/@comment-38061204-20190113212244\nTalk:Distant Worlds II/@comment-73.164.122.98-20190108153534\nTalk:Distant Worlds II/@comment-73.164.122.98-20190108153534/@comment-25644972-20190109042741\nTalk:Distant Worlds II/@comment-82.11.240.23-20181230195051\nTalk:Distant Worlds II/@comment-82.11.240.23-20190502100030\nTalk:Distant Worlds II/@comment-82.11.240.23-20190617141720\nTalk:Distress Call/@comment-148.75.208.94-20171007011920\nTalk:Distress Call/@comment-150.207.150.112-20160105224338\nTalk:Distress Call/@comment-150.207.150.112-20160105224338/@comment-175.145.249.40-20160207101425\nTalk:Distress Call/@comment-150.207.150.112-20160105224338/@comment-175.145.249.40-20160207120049\nTalk:Distress Call/@comment-150.207.150.112-20160105224338/@comment-82.15.177.28-20160106002537\nTalk:Distress Call/@comment-204.83.78.200-20180203052225\nTalk:Distress Call/@comment-204.83.78.200-20180203052225/@comment-192.136.161.33-20180203170521\nTalk:Distress Call/@comment-204.83.78.200-20180203052225/@comment-71.15.5.30-20180519184015\nTalk:Distress Call/@comment-204.83.78.200-20180203052225/@comment-80.134.43.83-20200212144024\nTalk:Distress Call/@comment-204.83.78.200-20180203052225/@comment-80.134.43.83-20200212144108\nTalk:Distress Call/@comment-24.113.87.244-20190814184248\nTalk:Distress Call/@comment-2600:1700:E7D0:84A0:A804:DEDF:A4F4:8F07-20180627184011\nTalk:Distress Call/@comment-2600:1700:E7D0:84A0:A804:DEDF:A4F4:8F07-20180627184011/@comment-2600:1700:E7D0:84A0:A804:DEDF:A4F4:8F07-20180627184151\nTalk:Distress Call/@comment-2600:1700:E7D0:84A0:A804:DEDF:A4F4:8F07-20180627184011/@comment-2600:1700:E7D0:84A0:A804:DEDF:A4F4:8F07-20180627184527\nTalk:Distress Call/@comment-66.183.22.203-20190805013738\nTalk:Distress Call/@comment-66.183.22.203-20190805013738/@comment-125.236.140.120-20190809004401\nTalk:Distress Call/@comment-66.55.144.247-20151231191333\nTalk:Distress Call/@comment-66.55.144.247-20151231191333/@comment-188.142.191.21-20160103181246\nTalk:Distress Call/@comment-78.102.34.16-20160326145147\nTalk:Distress Call/@comment-80.134.43.83-20200212144728\nTalk:Distress Call/@comment-80.134.43.83-20200212144728/@comment-80.134.43.83-20200212144806\nTalk:Distress Call/@comment-903860-20190221060637\nTalk:Distress Call/@comment-98.113.25.115-20170210060256\nTalk:Distress Call/@comment-98.168.155.68-20160311013235\nTalk:Docking/@comment-162.104.184.13-20160223033027\nTalk:Docking/@comment-162.104.184.13-20160223033027/@comment-27986221-20160406233812\nTalk:Docking/@comment-213.68.126.83-20190904145854\nTalk:Docking/@comment-24.201.43.111-20140817002027\nTalk:Docking/@comment-24.201.43.111-20140817002027/@comment-106.68.227.172-20140918151544\nTalk:Docking/@comment-24.201.43.111-20140817002027/@comment-192.198.151.44-20141218083830\nTalk:Docking/@comment-24.201.43.111-20140817002027/@comment-24.46.248.176-20140922223330\nTalk:Docking/@comment-24.201.43.111-20140817002027/@comment-64.233.173.171-20150209111224\nTalk:Docking/@comment-24.201.43.111-20140817002027/@comment-72.181.84.149-20140821032014\nTalk:Docking/@comment-24.201.43.111-20140817002027/@comment-93.162.36.242-20141101190748\nTalk:Docking/@comment-25178998-20141216172151\nTalk:Docking/@comment-25883765-20141217101911\nTalk:Docking/@comment-25883765-20141217101911/@comment-192.198.151.43-20141218083936\nTalk:Docking/@comment-25883765-20141217101911/@comment-86.212.194.241-20141220151653\nTalk:Docking/@comment-2601:545:4500:9C:A4F5:9893:7A2C:FB7E-20190808002842\nTalk:Docking/@comment-26625664-20160613191415\nTalk:Docking/@comment-30643772-20161203085905\nTalk:Docking/@comment-34004391-20180108123639\nTalk:Docking/@comment-64.188.178.120-20191231020942\nTalk:Docking/@comment-71.20.9.94-20150212183446\nTalk:Docking/@comment-78.145.64.145-20150912115207\nTalk:Docking/@comment-79.97.180.45-20150428214822\nTalk:Docking/@comment-80.221.148.154-20150102141114\nTalk:Docking/@comment-80.221.148.154-20150102141114/@comment-12138097-20150102202630\nTalk:Docking/@comment-81.101.130.146-20141229211308\nTalk:Docking/@comment-82.31.188.60-20150927201054\nTalk:Docking/@comment-82.31.188.60-20150927201054/@comment-2155082-20170129014054\nTalk:Docking/@comment-82.31.188.60-20150927201054/@comment-30802664-20170125130851\nTalk:Docking/@comment-82.31.188.60-20150927201054/@comment-50.100.112.6-20151127130249\nTalk:Docking/@comment-82.31.188.60-20150927201054/@comment-82.28.166.251-20170129013122\nTalk:Docking/@comment-86.16.221.233-20141105194036\nTalk:Docking/@comment-86.16.221.233-20141105194036/@comment-2.101.226.149-20141109114953\nTalk:Docking/@comment-86.16.221.233-20141105194036/@comment-2.101.226.149-20141109115130\nTalk:Docking/@comment-86.16.221.233-20141105194036/@comment-86.157.105.175-20141217224647\nTalk:Docking/@comment-88.96.97.118-20141223021707\nTalk:Docking/@comment-88.96.97.118-20141223021707/@comment-151.227.11.184-20141227182722\nTalk:Docking/@comment-88.96.97.118-20141223021707/@comment-2.121.180.154-20141227180103\nTalk:Docking/@comment-88.96.97.118-20141223021707/@comment-64.60.89.146-20150428202847\nTalk:Docking/@comment-88.96.97.118-20141223021707/@comment-98.246.169.211-20141227095436\nTalk:Docking/@comment-90.200.46.38-20181110110754\nTalk:Docking/@comment-90.200.46.38-20181110110754/@comment-90.200.46.38-20181110113531\nTalk:Docking/@comment-94.209.158.142-20180531172430\nTalk:Docking/@comment-94.209.158.142-20180531172430/@comment-34004391-20180531185058\nTalk:Docking/@comment-99.10.203.158-20190513011123\nTalk:Dolphin/@comment-124.169.177.133-20150421103740\nTalk:Dolphin/@comment-124.169.177.133-20150421103740/@comment-26116574-20150421145304\nTalk:Dolphin/@comment-142.0.195.164-20170217094552\nTalk:Dolphin/@comment-151.225.215.252-20160824115824\nTalk:Dolphin/@comment-151.225.215.252-20160824115824/@comment-188.238.155.142-20170110193404\nTalk:Dolphin/@comment-151.225.215.252-20160824115824/@comment-65.93.5.133-20170107020903\nTalk:Dolphin/@comment-151.225.215.252-20160824115824/@comment-77.102.250.232-20170224161052\nTalk:Dolphin/@comment-151.225.215.252-20160824115824/@comment-98.244.150.69-20170215192255\nTalk:Dolphin/@comment-174.56.70.121-20160101031515\nTalk:Dolphin/@comment-178.27.174.74-20150822195902\nTalk:Dolphin/@comment-178.27.174.74-20150822195902/@comment-156.3.54.203-20150915154050\nTalk:Dolphin/@comment-178.27.174.74-20150822195902/@comment-192.189.29.41-20160821170020\nTalk:Dolphin/@comment-180.95.38.138-20150729030759\nTalk:Dolphin/@comment-180.95.38.138-20150729030759/@comment-108.67.228.190-20151015015403\nTalk:Dolphin/@comment-180.95.38.138-20150729030759/@comment-14.2.50.157-20150816044646\nTalk:Dolphin/@comment-188.180.248.201-20170422131738\nTalk:Dolphin/@comment-192.136.161.52-20170303123823\nTalk:Dolphin/@comment-192.136.174.139-20160219133302\nTalk:Dolphin/@comment-198.2.64.117-20170412012428\nTalk:Dolphin/@comment-198.2.64.117-20170412012428/@comment-73.193.6.19-20170413162705\nTalk:Dolphin/@comment-198.2.64.117-20170412012428/@comment-79.109.202.239-20170412060922\nTalk:Dolphin/@comment-2003:DF:23D6:D55A:D938:B836:4121:16A8-20170724124059\nTalk:Dolphin/@comment-2003:DF:23D6:D55A:D938:B836:4121:16A8-20170724124059/@comment-33441314-20180114212948\nTalk:Dolphin/@comment-205.167.7.194-20170427150456\nTalk:Dolphin/@comment-205.167.7.194-20170427150456/@comment-192.136.161.52-20170502130545\nTalk:Dolphin/@comment-207.162.93.3-20180509150455\nTalk:Dolphin/@comment-207.162.93.3-20180509150455/@comment-2A02:A31C:224:F00:9591:A278:1667:3DC-20190910082424\nTalk:Dolphin/@comment-213.206.237.194-20150105125523\nTalk:Dolphin/@comment-213.206.237.194-20150105125523/@comment-89.92.119.132-20150105171449\nTalk:Dolphin/@comment-24.204.162.205-20170415025246\nTalk:Dolphin/@comment-24.204.162.205-20170415075229\nTalk:Dolphin/@comment-24.204.162.205-20170415075229/@comment-109.148.206.89-20170417170749\nTalk:Dolphin/@comment-24.204.162.205-20170415075229/@comment-94.12.31.80-20170725171548\nTalk:Dolphin/@comment-2601:243:2080:3930:2054:67DE:FEA3:ADB1-20190923231407\nTalk:Dolphin/@comment-2601:243:2080:3930:2054:67DE:FEA3:ADB1-20190923231407/@comment-73.50.15.211-20191006142209\nTalk:Dolphin/@comment-2607:FB90:4AA8:96CA:5121:77D2:2D92:4595-20170825204609\nTalk:Dolphin/@comment-2607:FB90:4AA8:96CA:5121:77D2:2D92:4595-20170825204609/@comment-2601:243:480:98D9:1922:DE3E:510A:BD81-20180218235307\nTalk:Dolphin/@comment-2607:FB90:4AA8:96CA:5121:77D2:2D92:4595-20170825204609/@comment-2607:FB90:4AA8:96CA:5121:77D2:2D92:4595-20170825204843\nTalk:Dolphin/@comment-2607:FB90:4AA8:96CA:5121:77D2:2D92:4595-20170825204609/@comment-75.131.54.162-20180710202229\nTalk:Dolphin/@comment-26116574-20150323035100\nTalk:Dolphin/@comment-26227424-20160704125829\nTalk:Dolphin/@comment-26227424-20160704125829/@comment-24.255.176.40-20170425014355\nTalk:Dolphin/@comment-26227424-20160704125829/@comment-92.195.209.83-20170802132658\nTalk:Dolphin/@comment-30320815-20170601144350\nTalk:Dolphin/@comment-50.170.117.254-20160319073839\nTalk:Dolphin/@comment-50.170.117.254-20160319073839/@comment-24.255.176.40-20170425014539\nTalk:Dolphin/@comment-50.73.242.166-20150922132105\nTalk:Dolphin/@comment-50.73.242.166-20150922132105/@comment-156.3.54.206-20150928182714\nTalk:Dolphin/@comment-50.73.242.166-20150922132105/@comment-173.29.224.36-20151215094230\nTalk:Dolphin/@comment-50.73.242.166-20150922132105/@comment-96.30.139.0-20151213013816\nTalk:Dolphin/@comment-65.79.1.66-20181017150114\nTalk:Dolphin/@comment-67.212.112.43-20170819131957\nTalk:Dolphin/@comment-69.5.224.188-20150526201223\nTalk:Dolphin/@comment-69.5.224.188-20150526201223/@comment-24.255.176.40-20170425014840\nTalk:Dolphin/@comment-71.21.3.159-20150126141624\nTalk:Dolphin/@comment-71.21.3.159-20150126141624/@comment-174.56.70.121-20160101030852\nTalk:Dolphin/@comment-71.222.113.251-20150414095724\nTalk:Dolphin/@comment-71.222.113.251-20150414095724/@comment-26009169-20150414114010\nTalk:Dolphin/@comment-72.181.180.191-20150314082028\nTalk:Dolphin/@comment-72.181.180.191-20150314082028/@comment-26009169-20150320122254\nTalk:Dolphin/@comment-72.181.180.191-20150314082028/@comment-98.118.84.133-20150320033149\nTalk:Dolphin/@comment-74.249.117.162-20190616175315\nTalk:Dolphin/@comment-75.111.163.67-20170501043151\nTalk:Dolphin/@comment-75.111.163.67-20170501043151/@comment-2602:306:B8D4:1630:D5A3:7043:687C:2965-20170630125346\nTalk:Dolphin/@comment-78.43.125.86-20160820184447\nTalk:Dolphin/@comment-78.43.125.86-20160820184447/@comment-85.247.81.152-20160820190158\nTalk:Dolphin/@comment-78.43.125.86-20160821173810\nTalk:Dolphin/@comment-83.10.155.20-20160821114014\nTalk:Dolphin/@comment-84.113.247.3-20150108091603\nTalk:Dolphin/@comment-85.23.91.117-20150127173258\nTalk:Dolphin/@comment-85.23.91.117-20150127173258/@comment-24.185.107.228-20150203213554\nTalk:Dolphin/@comment-85.23.91.117-20150127173258/@comment-71.21.3.159-20150131185849\nTalk:Dolphin/@comment-91.127.22.28-20180211060557\nTalk:Double Braced/@comment-186.214.45.42-20190103194322\nTalk:Double Shot Weapon/@comment-2003:DB:F70F:D6BE:492:1B55:899D:7556-20200207131340\nTalk:Double Shot Weapon/@comment-206.19.54.254-20190722183933\nTalk:Drag Munitions/@comment-184.153.186.55-20190426150128\nTalk:Drag Munitions/@comment-184.153.186.55-20190426150128/@comment-212.10.111.72-20190427133350\nTalk:Drag Munitions/@comment-212.10.111.72-20190424095155\nTalk:Drag Munitions/@comment-24.96.115.240-20190423053649\nTalk:Drag Munitions/@comment-24.96.115.240-20190423053649/@comment-172.101.206.38-20190425170637\nTalk:Drag Munitions/@comment-24.96.115.240-20190502092834\nTalk:Drag Munitions/@comment-2A00:23C6:B308:AE00:A5E5:6D04:5A11:CBFF-20190425191353\nTalk:Drag Munitions/@comment-46.92.244.128-20200213210637\nTalk:Drag Munitions/@comment-77.0.120.68-20190512095348\nTalk:Drag Munitions/@comment-77.0.120.68-20190512095348/@comment-212.10.111.72-20190513070044\nTalk:Drake-Class Carrier/@comment-128.193.154.141-20190410200222\nTalk:Drake-Class Carrier/@comment-128.193.154.141-20190410200222/@comment-38582264-20190412043116\nTalk:Drake-Class Carrier/@comment-163.232.200.41-20171017043922\nTalk:Drake-Class Carrier/@comment-163.232.200.41-20171017043922/@comment-170.211.150.62-20171026150716\nTalk:Drake-Class Carrier/@comment-170.211.150.62-20171010202451\nTalk:Drake-Class Carrier/@comment-170.211.150.62-20171010202451/@comment-30928085-20171010202523\nTalk:Drake-Class Carrier/@comment-172.242.75.177-20180412075411\nTalk:Drake-Class Carrier/@comment-172.242.75.177-20180412075411/@comment-86.52.94.56-20180723002233\nTalk:Drake-Class Carrier/@comment-174.17.114.66-20200123215810\nTalk:Drake-Class Carrier/@comment-174.17.114.66-20200123215810/@comment-26602149-20200124033123\nTalk:Drake-Class Carrier/@comment-174.17.114.66-20200123215810/@comment-35.138.28.218-20200127023924\nTalk:Drake-Class Carrier/@comment-178.191.232.187-20200126091709\nTalk:Drake-Class Carrier/@comment-178.191.232.187-20200126091709/@comment-178.191.225.135-20200204153123\nTalk:Drake-Class Carrier/@comment-178.191.232.187-20200126091709/@comment-2001:67C:2660:425:1D:0:0:3DC-20200201153439\nTalk:Drake-Class Carrier/@comment-187.64.110.30-20180202170110\nTalk:Drake-Class Carrier/@comment-188.163.116.253-20190106212916\nTalk:Drake-Class Carrier/@comment-198.151.217.183-20200206162706\nTalk:Drake-Class Carrier/@comment-198.151.217.183-20200206162706/@comment-3184448-20200609095730\nTalk:Drake-Class Carrier/@comment-2003:DA:CBFE:E000:8000:545E:8BAC:2F81-20180722114441\nTalk:Drake-Class Carrier/@comment-202.142.137.125-20180619040807\nTalk:Drake-Class Carrier/@comment-203.104.15.192-20190823025117\nTalk:Drake-Class Carrier/@comment-203.104.15.192-20190823025117/@comment-203.104.15.192-20190823025158\nTalk:Drake-Class Carrier/@comment-203.104.15.192-20190823025117/@comment-92.176.16.43-20190906131243\nTalk:Drake-Class Carrier/@comment-203.104.15.77-20191016233523\nTalk:Drake-Class Carrier/@comment-203.104.15.77-20191016233523/@comment-74.15.6.214-20191228154933\nTalk:Drake-Class Carrier/@comment-212.10.111.72-20190822235657\nTalk:Drake-Class Carrier/@comment-212.10.111.72-20190822235657/@comment-212.10.111.72-20190824215014\nTalk:Drake-Class Carrier/@comment-212.10.111.72-20190822235657/@comment-2601:142:8200:1EB0:61EA:C084:6D8C:5441-20200124100849\nTalk:Drake-Class Carrier/@comment-212.10.111.72-20190822235657/@comment-92.108.120.116-20190909090713\nTalk:Drake-Class Carrier/@comment-212.10.111.72-20190822235657/@comment-93.66.249.144-20190824111700\nTalk:Drake-Class Carrier/@comment-213.106.91.66-20191002115650\nTalk:Drake-Class Carrier/@comment-213.106.91.66-20191002115650/@comment-51.148.96.243-20191003111526\nTalk:Drake-Class Carrier/@comment-217.104.28.102-20181222152900\nTalk:Drake-Class Carrier/@comment-217.104.28.102-20181222152900/@comment-12.155.250.254-20190905190008\nTalk:Drake-Class Carrier/@comment-217.104.28.102-20181222152900/@comment-185.161.57.228-20190103122102\nTalk:Drake-Class Carrier/@comment-217.104.28.102-20181222152900/@comment-68.186.233.208-20190102230413\nTalk:Drake-Class Carrier/@comment-217.104.28.102-20181222152900/@comment-76.14.25.178-20190324180744\nTalk:Drake-Class Carrier/@comment-2182702-20190823015849\nTalk:Drake-Class Carrier/@comment-2182702-20190823015849/@comment-173.79.121.197-20190824210610\nTalk:Drake-Class Carrier/@comment-24.159.43.54-20180909022759\nTalk:Drake-Class Carrier/@comment-24.159.43.54-20180909022759/@comment-203.83.18.46-20180909043855\nTalk:Drake-Class Carrier/@comment-24.159.43.54-20180909022759/@comment-38.78.195.49-20190805153039\nTalk:Drake-Class Carrier/@comment-24.159.43.54-20180909022759/@comment-76.186.10.73-20180913161610\nTalk:Drake-Class Carrier/@comment-24.38.54.60-20171214180531\nTalk:Drake-Class Carrier/@comment-24.38.54.60-20171214180531/@comment-2A01:C50E:223C:C700:65C6:5039:EF5E:6E08-20171226104348\nTalk:Drake-Class Carrier/@comment-25450485-20190924081716\nTalk:Drake-Class Carrier/@comment-25450485-20190924081716/@comment-44689550-20191220181312\nTalk:Drake-Class Carrier/@comment-25450485-20190924081716/@comment-45543022-20200420033534\nTalk:Drake-Class Carrier/@comment-25450485-20200917235806\nTalk:Drake-Class Carrier/@comment-2600:1700:97D0:1720:B809:D31D:130C:8436-20191002151525\nTalk:Drake-Class Carrier/@comment-2600:1700:97D0:1720:B809:D31D:130C:8436-20191002151525/@comment-109.240.183.71-20191009112007\nTalk:Drake-Class Carrier/@comment-2600:1700:97D0:1720:B809:D31D:130C:8436-20191002151525/@comment-23998256-20191128123504\nTalk:Drake-Class Carrier/@comment-2601:183:8580:CD40:BDEB:8B3D:17B5:BF38-20171013221935\nTalk:Drake-Class Carrier/@comment-2601:183:8580:CD40:BDEB:8B3D:17B5:BF38-20171013221935/@comment-2600:6C5A:407F:FAA4:83:9656:948F:4B81-20171014082856\nTalk:Drake-Class Carrier/@comment-2601:183:8580:CD40:BDEB:8B3D:17B5:BF38-20171013221935/@comment-30928085-20171014144016\nTalk:Drake-Class Carrier/@comment-2601:183:8580:CD40:BDEB:8B3D:17B5:BF38-20171013221935/@comment-86.130.56.11-20171106135303\nTalk:Drake-Class Carrier/@comment-2602:306:CE29:B0D0:9F1:97A6:EA00:D186-20190913064214\nTalk:Drake-Class Carrier/@comment-2602:306:CE29:B0D0:9F1:97A6:EA00:D186-20190913064214/@comment-25450485-20190920120911\nTalk:Drake-Class Carrier/@comment-2602:306:CE29:B0D0:9F1:97A6:EA00:D186-20190913064214/@comment-2601:600:9700:1610:E171:C3C2:52F2:C324-20191022012836\nTalk:Drake-Class Carrier/@comment-2602:306:CE29:B0D0:9F1:97A6:EA00:D186-20190913064214/@comment-2602:306:CE29:B0D0:9F1:97A6:EA00:D186-20190913064424\nTalk:Drake-Class Carrier/@comment-2602:306:CE29:B0D0:9F1:97A6:EA00:D186-20190913064214/@comment-37820584-20191008105603\nTalk:Drake-Class Carrier/@comment-2602:306:CE29:B0D0:9F1:97A6:EA00:D186-20190913064214/@comment-45543022-20200420034122\nTalk:Drake-Class Carrier/@comment-2602:306:CE29:B0D0:9F1:97A6:EA00:D186-20190913064214/@comment-51.148.96.243-20191003112207\nTalk:Drake-Class Carrier/@comment-2602:306:CE29:B0D0:9F1:97A6:EA00:D186-20190913064214/@comment-62.181.226.125-20191211095254\nTalk:Drake-Class Carrier/@comment-2602:306:CE29:B0D0:9F1:97A6:EA00:D186-20190913064214/@comment-78.104.174.8-20191007073559\nTalk:Drake-Class Carrier/@comment-2604:6000:7280:A700:C538:4B31:BCB2:D19A-20180414142502\nTalk:Drake-Class Carrier/@comment-2604:6000:A403:D900:E114:256:6E2A:8D9B-20180730173355\nTalk:Drake-Class Carrier/@comment-2604:6000:A403:D900:E114:256:6E2A:8D9B-20180730173355/@comment-64.72.222.25-20180826010409\nTalk:Drake-Class Carrier/@comment-2604:6000:A403:D900:E114:256:6E2A:8D9B-20180730173355/@comment-93.66.249.144-20190824112008\nTalk:Drake-Class Carrier/@comment-2604:6000:A403:D900:E114:256:6E2A:8D9B-20180730173355/@comment-99.231.231.200-20181219124944\nTalk:Drake-Class Carrier/@comment-2605:E000:5E40:9500:F53F:EB85:D4AE:B963-20180709040241\nTalk:Drake-Class Carrier/@comment-26602149-20191129074742\nTalk:Drake-Class Carrier/@comment-26602149-20191214075931\nTalk:Drake-Class Carrier/@comment-26602149-20191214075931/@comment-2A02:C7F:5E62:3B00:352D:45BC:F7A4:9A29-20191225230033\nTalk:Drake-Class Carrier/@comment-26602149-20191214075931/@comment-78.152.194.195-20200127203715\nTalk:Drake-Class Carrier/@comment-26702911-20181123133706\nTalk:Drake-Class Carrier/@comment-26702911-20181123133706/@comment-70.78.116.240-20181231074613\nTalk:Drake-Class Carrier/@comment-26702911-20181123133706/@comment-85.158.139.107-20190502104751\nTalk:Drake-Class Carrier/@comment-27838177-20200617130353\nTalk:Drake-Class Carrier/@comment-2A02:C7F:5E62:3B00:352D:45BC:F7A4:9A29-20191225223033\nTalk:Drake-Class Carrier/@comment-2A02:C7F:5E62:3B00:352D:45BC:F7A4:9A29-20191225223033/@comment-26602149-20191226063738\nTalk:Drake-Class Carrier/@comment-2A02:C7F:5E62:3B00:352D:45BC:F7A4:9A29-20191225223525\nTalk:Drake-Class Carrier/@comment-2A02:C7F:5E62:3B00:352D:45BC:F7A4:9A29-20191225223525/@comment-1070376-20200606071844\nTalk:Drake-Class Carrier/@comment-2A02:C7F:5E62:3B00:352D:45BC:F7A4:9A29-20191225223525/@comment-45543022-20200420032604\nTalk:Drake-Class Carrier/@comment-2A02:C7F:5E62:3B00:352D:45BC:F7A4:9A29-20191225225851\nTalk:Drake-Class Carrier/@comment-2A02:C7F:5E62:3B00:352D:45BC:F7A4:9A29-20191225225851/@comment-35.138.28.218-20200127024103\nTalk:Drake-Class Carrier/@comment-2A02:C7F:5E62:3B00:352D:45BC:F7A4:9A29-20191225225851/@comment-45543022-20200420032338\nTalk:Drake-Class Carrier/@comment-2A02:C7F:5E62:3B00:352D:45BC:F7A4:9A29-20191225225851/@comment-75.169.183.1-20200209054155\nTalk:Drake-Class Carrier/@comment-33493166-20190823230721\nTalk:Drake-Class Carrier/@comment-4030403-20171108064321\nTalk:Drake-Class Carrier/@comment-4030403-20171108064321/@comment-30928085-20171108083747\nTalk:Drake-Class Carrier/@comment-43623494-20190825233531\nTalk:Drake-Class Carrier/@comment-43623494-20190825233531/@comment-203.104.15.192-20190826234736\nTalk:Drake-Class Carrier/@comment-43623494-20190825233531/@comment-43623494-20190906011353\nTalk:Drake-Class Carrier/@comment-43623494-20190825233531/@comment-84.58.254.183-20190826093558\nTalk:Drake-Class Carrier/@comment-43623494-20190914220513\nTalk:Drake-Class Carrier/@comment-43623494-20190914220513/@comment-25450485-20190923074440\nTalk:Drake-Class Carrier/@comment-43623494-20190914220513/@comment-43623494-20191101120816\nTalk:Drake-Class Carrier/@comment-43623494-20190914220513/@comment-45543022-20200420033806\nTalk:Drake-Class Carrier/@comment-44180665-20200420160954\nTalk:Drake-Class Carrier/@comment-44180665-20200420160954/@comment-1070376-20200606071519\nTalk:Drake-Class Carrier/@comment-45852128-20200520182237\nTalk:Drake-Class Carrier/@comment-45852128-20200520182237/@comment-37846325-20200703122818\nTalk:Drake-Class Carrier/@comment-69.114.195.213-20181021162945\nTalk:Drake-Class Carrier/@comment-69.114.195.213-20181021162945/@comment-109.151.212.24-20181210203807\nTalk:Drake-Class Carrier/@comment-74.15.6.214-20191228152444\nTalk:Drake-Class Carrier/@comment-74.15.6.214-20191228152444/@comment-81.146.21.254-20191230115451\nTalk:Drake-Class Carrier/@comment-81.219.200.52-20191009160230\nTalk:Drake-Class Carrier/@comment-81.219.200.52-20191009160230/@comment-2A02:C7F:5E62:3B00:352D:45BC:F7A4:9A29-20191225222601\nTalk:Drake-Class Carrier/@comment-83.245.146.175-20190930084107\nTalk:Drake-Class Carrier/@comment-83.245.146.175-20190930084107/@comment-109.240.183.71-20191009111323\nTalk:Drake-Class Carrier/@comment-83.245.146.175-20190930084107/@comment-2600:1700:97D0:1720:B809:D31D:130C:8436-20191002151609\nTalk:Drake-Class Carrier/@comment-83.245.146.175-20190930084107/@comment-2601:142:8200:1EB0:61EA:C084:6D8C:5441-20200124100630\nTalk:Drake-Class Carrier/@comment-83.245.146.175-20190930084107/@comment-39771741-20191108183651\nTalk:Drake-Class Carrier/@comment-83.245.146.175-20190930084107/@comment-93.140.50.249-20191021130235\nTalk:Drake-Class Carrier/@comment-87.59.143.101-20180731120146\nTalk:Drake-Class Carrier/@comment-87.59.143.101-20180731120146/@comment-77.99.162.68-20190713145458\nTalk:Drake-Class Carrier/@comment-90.200.46.38-20181108191123\nTalk:Drake-Class Carrier/@comment-99.231.231.200-20181219124848\nTalk:Drake-Class Carrier/@comment-99.231.231.200-20181219124848/@comment-187.107.180.138-20190823182545\nTalk:Drake-Class Carrier/@comment-99.231.231.200-20181219124848/@comment-192.136.170.98-20181219182302\nTalk:Drake-Class Carrier/@comment-99.231.231.200-20181219124848/@comment-68.186.233.208-20190102230453\nTalk:Drake-Class Carrier/@comment-99.231.231.200-20181219124848/@comment-78.11.93.114-20190125082018\nTalk:Drive Assist/@comment-5.45.4.54-20180419145121\nTalk:Drive Strengthening/@comment-38131386-20190111172111\nTalk:Duradrives/@comment-903860-20190621192159\nTalk:Duradrives/@comment-903860-20190622023259\nTalk:Eagle's Landing/@comment-2A00:23C5:487:1C00:59F9:8CB0:ADF6:E7CD-20190430191546\nTalk:Eagle's Landing/@comment-2A00:23C5:487:1C00:59F9:8CB0:ADF6:E7CD-20190430191546/@comment-62.163.166.65-20190718094700\nTalk:Eagle's Landing/@comment-35715081-20190428213012\nTalk:Eagle Eye/@comment-71.205.238.39-20191127052632\nTalk:Eagle MkII/@comment-109.153.155.108-20151030100831\nTalk:Eagle MkII/@comment-109.153.155.108-20151030100831/@comment-162.25.24.153-20160222160706\nTalk:Eagle MkII/@comment-109.153.155.108-20151030100831/@comment-27032150-20151030103725\nTalk:Eagle MkII/@comment-12.5.54.135-20151207161551\nTalk:Eagle MkII/@comment-156.3.54.203-20150917161652\nTalk:Eagle MkII/@comment-162.250.85.154-20141008043605\nTalk:Eagle MkII/@comment-173.191.60.74-20180703060411\nTalk:Eagle MkII/@comment-173.191.60.74-20180703060411/@comment-192.136.170.98-20181128134929\nTalk:Eagle MkII/@comment-173.191.60.74-20180703060411/@comment-90.200.46.38-20181128124607\nTalk:Eagle MkII/@comment-174.255.128.80-20170809020024\nTalk:Eagle MkII/@comment-174.255.128.80-20170809020024/@comment-177.141.47.165-20180629223403\nTalk:Eagle MkII/@comment-192.136.161.52-20161111181041\nTalk:Eagle MkII/@comment-192.136.161.52-20161111181041/@comment-187.64.98.127-20180323073103\nTalk:Eagle MkII/@comment-192.136.161.52-20161111181041/@comment-192.136.161.52-20170210133812\nTalk:Eagle MkII/@comment-192.136.161.52-20161111181041/@comment-24.181.180.48-20170319060438\nTalk:Eagle MkII/@comment-192.136.161.52-20161111181041/@comment-26005414-20170202010949\nTalk:Eagle MkII/@comment-192.136.161.52-20161111181041/@comment-2600:6C5D:6300:801:E99D:3B8A:91A7:39A5-20180315041117\nTalk:Eagle MkII/@comment-192.136.161.52-20161111181041/@comment-90.200.46.38-20181128142925\nTalk:Eagle MkII/@comment-192.136.175.137-20160511150256\nTalk:Eagle MkII/@comment-192.136.175.137-20160511150256/@comment-24.1.9.47-20180210225612\nTalk:Eagle MkII/@comment-192.136.175.137-20160511150256/@comment-24.1.9.47-20180210225650\nTalk:Eagle MkII/@comment-192.136.175.137-20160511150256/@comment-71.233.88.91-20160528152610\nTalk:Eagle MkII/@comment-210.55.18.198-20150903221025\nTalk:Eagle MkII/@comment-24.16.173.126-20150126054452\nTalk:Eagle MkII/@comment-26005414-20150307220433\nTalk:Eagle MkII/@comment-26005414-20150307220433/@comment-24.1.9.47-20180210225830\nTalk:Eagle MkII/@comment-26005414-20150307220433/@comment-27311754-20151211112733\nTalk:Eagle MkII/@comment-26005414-20150307220433/@comment-27380851-20151211091617\nTalk:Eagle MkII/@comment-26048696-20150127221950\nTalk:Eagle MkII/@comment-26391992-20151202105443\nTalk:Eagle MkII/@comment-27019965-20151221181036\nTalk:Eagle MkII/@comment-44180665-20200523161223\nTalk:Eagle MkII/@comment-5.150.100.24-20141204114320\nTalk:Eagle MkII/@comment-5.150.100.24-20141204114320/@comment-107.77.85.95-20150124120306\nTalk:Eagle MkII/@comment-5.150.100.24-20141204114320/@comment-176.10.225.220-20141214185308\nTalk:Eagle MkII/@comment-5.150.100.24-20141204114320/@comment-2.109.200.229-20141207183644\nTalk:Eagle MkII/@comment-5.150.100.24-20141204114320/@comment-25787591-20141206214614\nTalk:Eagle MkII/@comment-5.150.100.24-20141204114320/@comment-94.39.28.242-20141217072702\nTalk:Eagle MkII/@comment-66.229.135.252-20141223164301\nTalk:Eagle MkII/@comment-67.187.119.225-20150420181634\nTalk:Eagle MkII/@comment-67.187.119.225-20150420181634/@comment-101.183.41.240-20150908070841\nTalk:Eagle MkII/@comment-67.187.119.225-20150420181634/@comment-115.188.56.201-20150420234941\nTalk:Eagle MkII/@comment-67.187.119.225-20150420181634/@comment-135.0.26.15-20150718225442\nTalk:Eagle MkII/@comment-67.187.119.225-20150420181634/@comment-27311754-20151211111841\nTalk:Eagle MkII/@comment-67.187.119.225-20150420181634/@comment-27311754-20151212103624\nTalk:Eagle MkII/@comment-67.187.119.225-20150420181634/@comment-27380851-20151212005215\nTalk:Eagle MkII/@comment-67.187.119.225-20150420181634/@comment-27380851-20151214082445\nTalk:Eagle MkII/@comment-67.187.119.225-20150420181634/@comment-68.181.206.198-20151211091101\nTalk:Eagle MkII/@comment-67.210.67.44-20150515191611\nTalk:Eagle MkII/@comment-70.30.83.108-20141227165415\nTalk:Eagle MkII/@comment-71.21.3.159-20150131185459\nTalk:Eagle MkII/@comment-71.21.3.159-20150131185459/@comment-144.124.244.157-20150203130009\nTalk:Eagle MkII/@comment-71.233.88.91-20160528114144\nTalk:Eagle MkII/@comment-71.233.88.91-20160528114144/@comment-44180665-20200523160644\nTalk:Eagle MkII/@comment-71.233.88.91-20160618040204\nTalk:Eagle MkII/@comment-71.95.100.70-20141221060049\nTalk:Eagle MkII/@comment-71.95.100.70-20141221060049/@comment-107.77.85.95-20150124120114\nTalk:Eagle MkII/@comment-71.95.100.70-20141221060049/@comment-122.109.55.212-20150817135109\nTalk:Eagle MkII/@comment-71.95.100.70-20141221060049/@comment-202.171.160.184-20141224025813\nTalk:Eagle MkII/@comment-72.46.217.207-20141004195430\nTalk:Eagle MkII/@comment-72.46.217.207-20141004195430/@comment-107.77.85.95-20150124120429\nTalk:Eagle MkII/@comment-72.46.217.207-20141004195430/@comment-25249692-20141004220027\nTalk:Eagle MkII/@comment-72.46.217.207-20141004195430/@comment-99.114.68.181-20141018190201\nTalk:Eagle MkII/@comment-79.247.239.167-20141114213604\nTalk:Eagle MkII/@comment-79.247.239.167-20141114213604/@comment-135.0.26.15-20150718225759\nTalk:Eagle MkII/@comment-79.247.239.167-20141114213604/@comment-71.21.3.159-20150131193919\nTalk:Eagle MkII/@comment-79.247.239.167-20141114213604/@comment-73.1.55.15-20150809022616\nTalk:Eagle MkII/@comment-79.247.239.167-20141114213604/@comment-87.113.181.226-20141114220858\nTalk:Eagle MkII/@comment-83.25.160.99-20191228161412\nTalk:Eagle MkII/@comment-86.168.252.223-20150515215327\nTalk:Eagle MkII/@comment-90.200.46.38-20181128124222\nTalk:Eagle MkII/@comment-90.200.46.38-20181205231256\nTalk:Eagle MkII/@comment-90.200.46.38-20181205231256/@comment-110.185.39.253-20190109210742\nTalk:Eagle MkII/@comment-90.200.46.38-20181205231256/@comment-192.136.170.98-20181206041101\nTalk:Eagle MkII/@comment-94.34.19.216-20141112113211\nTalk:Eagle MkII/@comment-94.34.19.216-20141112113211/@comment-25249692-20141112115357\nTalk:Eagle MkII/@comment-99.114.68.181-20141018185848\nTalk:Eagle Nebula/@comment-184.175.29.85-20171119091321\nTalk:Eagle Nebula/@comment-71.195.255.18-20171218075124\nTalk:Earth-like World/@comment-2182702-20200821003300\nTalk:Earth/@comment-104.159.75.97-20191001050532\nTalk:Earth/@comment-104.159.75.97-20191001050532/@comment-45049762-20200511150828\nTalk:Earth/@comment-110.173.174.140-20160913073701\nTalk:Earth/@comment-110.173.174.140-20160913073701/@comment-125.237.7.64-20161127075137\nTalk:Earth/@comment-147.147.88.238-20160828005147\nTalk:Earth/@comment-147.147.88.238-20160828005147/@comment-125.237.7.64-20161127075508\nTalk:Earth/@comment-147.147.88.238-20160828005147/@comment-74.249.117.162-20190630212453\nTalk:Earth/@comment-147.147.88.238-20160828005147/@comment-78.88.29.232-20161129201645\nTalk:Earth/@comment-147.147.88.238-20160828005147/@comment-78.88.29.232-20161129201705\nTalk:Earth/@comment-147.147.88.238-20160828005147/@comment-86.164.91.165-20171229150016\nTalk:Earth/@comment-156.3.54.204-20150609213910\nTalk:Earth/@comment-156.3.54.204-20150609213910/@comment-197.242.203.101-20170531110834\nTalk:Earth/@comment-192.245.50.52-20170802133615\nTalk:Earth/@comment-217.206.155.18-20161111145619\nTalk:Earth/@comment-31077187-20190710192216\nTalk:Earth/@comment-34155025-20180602001130\nTalk:Earth/@comment-34155025-20180602001130/@comment-30928085-20180602181123\nTalk:Earth/@comment-34155025-20180602001204\nTalk:Earth/@comment-34155025-20180602001204/@comment-90.200.49.195-20181220003907\nTalk:Earth/@comment-45.30.216.112-20180818170939\nTalk:Earth/@comment-45.30.216.112-20180818170939/@comment-199.89.149.251-20180919183811\nTalk:Earth/@comment-45.30.216.112-20180818170939/@comment-90.200.46.38-20181113005852\nTalk:Earth/@comment-4978876-20150628100347\nTalk:Earth/@comment-4978876-20150628100347/@comment-173.64.201.135-20151004070617\nTalk:Earth/@comment-89.207.164.254-20180102115841\nTalk:Earth/@comment-89.207.164.254-20180102115841/@comment-80.6.136.127-20190116165410\nTalk:Earth/@comment-97.90.117.71-20190709211717\nTalk:Earth Relics/@comment-27941085-20200206060133\nTalk:East India Company/@comment-2601:248:C001:9EF2:6897:D18A:4C5F:E811-20190306095044\nTalk:Eccentric Hyperspace Trajectories/@comment-71.85.203.90-20180517191249\nTalk:Eccentric Hyperspace Trajectories/@comment-71.85.203.90-20180517191249/@comment-35783373-20180604183915\nTalk:Eden/@comment-89.179.64.70-20190207214332\nTalk:Eden/@comment-89.179.64.70-20190207214332/@comment-34343074-20190214210356\nTalk:Eden/@comment-89.74.234.103-20160825215943\nTalk:Eden Apples Of Aerial/@comment-73.142.176.57-20150523183454\nTalk:Eden Apples Of Aerial/@comment-77.50.26.143-20160814204228\nTalk:Edmund Mahon/@comment-108.184.141.190-20151115164837\nTalk:Edmund Mahon/@comment-128.70.62.226-20150624012349\nTalk:Edmund Mahon/@comment-128.70.62.226-20150624012349/@comment-26009169-20150624012738\nTalk:Edmund Mahon/@comment-173.2.17.108-20170720042538\nTalk:Edmund Mahon/@comment-2001:5B0:4BC0:D9E0:0:FF:FEBD:1C0-20180506061601\nTalk:Edmund Mahon/@comment-2001:5B0:4BC0:D9E0:0:FF:FEBD:1C0-20180506061601/@comment-2602:306:CE29:B0D0:7D6E:D1A2:1A68:171-20190910234644\nTalk:Edmund Mahon/@comment-24740282-20180313104511\nTalk:Edmund Mahon/@comment-62.7.228.250-20150707113106\nTalk:Edmund Mahon/@comment-76.69.122.72-20160821000130\nTalk:Edmund Mahon/@comment-76.69.122.72-20160821000130/@comment-198.105.28.77-20160904052935\nTalk:Edmund Mahon/@comment-76.69.122.72-20160821000130/@comment-2602:306:CE29:B0D0:7D6E:D1A2:1A68:171-20190910235117\nTalk:Edmund Mahon/@comment-76.69.122.72-20160821000130/@comment-90.200.46.38-20181124232408\nTalk:Edmund Mahon/@comment-82.71.63.52-20151001094650\nTalk:Edmund Mahon/@comment-82.71.63.52-20151001094650/@comment-26361572-20151213233104\nTalk:Edmund Mahon/@comment-90.200.46.38-20181031233351\nTalk:Edmund Mahon/@comment-95.220.177.10-20150618115446\nTalk:Edmund Mahon/@comment-95.220.177.10-20150618115446/@comment-109.189.12.24-20150622151123\nTalk:Edmund Mahon/@comment-95.220.177.10-20150618115446/@comment-173.61.193.177-20150826195415\nTalk:Edward Lewis/@comment-77.23.92.68-20190912204548\nTalk:Efficient Weapon/@comment-116.212.239.10-20170829022423\nTalk:Efficient Weapon/@comment-2001:630:212:220:B072:7931:EA38:7463-20170915090952\nTalk:Electronic Countermeasure/@comment-182.48.136.214-20150203003924\nTalk:Electronic Countermeasure/@comment-182.48.136.214-20150203003924/@comment-26482441-20150706234842\nTalk:Electronic Countermeasure/@comment-182.48.136.214-20150203003924/@comment-67.193.224.169-20190422215354\nTalk:Electronic Countermeasure/@comment-189.140.212.225-20161221020124\nTalk:Electronic Countermeasure/@comment-195.160.233.253-20150114131557\nTalk:Electronic Countermeasure/@comment-195.160.233.253-20150114131557/@comment-20.133.0.13-20160121165340\nTalk:Electronic Countermeasure/@comment-195.160.233.253-20150114131557/@comment-26391992-20150923095657\nTalk:Electronic Countermeasure/@comment-195.160.233.253-20150114131557/@comment-26482441-20150706234911\nTalk:Electronic Countermeasure/@comment-205.222.248.112-20141218140400\nTalk:Electronic Countermeasure/@comment-205.222.248.112-20141218140400/@comment-88.65.82.161-20141219103953\nTalk:Electronic Countermeasure/@comment-205.222.248.112-20141218140400/@comment-89.13.93.165-20150906171111\nTalk:Electronic Countermeasure/@comment-213.48.137.24-20151215123732\nTalk:Electronic Countermeasure/@comment-213.48.137.24-20151215123732/@comment-189.32.28.226-20190218065511\nTalk:Electronic Countermeasure/@comment-213.48.137.24-20151215123732/@comment-192.136.170.98-20190218192125\nTalk:Electronic Countermeasure/@comment-213.48.137.24-20151215123732/@comment-70.198.66.150-20151215170113\nTalk:Electronic Countermeasure/@comment-46.119.119.202-20190528082941\nTalk:Electronic Countermeasure/@comment-46.119.119.202-20190528082941/@comment-26810597-20190529015907\nTalk:Electronic Countermeasure/@comment-66.27.95.167-20151114155942\nTalk:Electronic Countermeasure/@comment-86.3.74.137-20150210205944\nTalk:Electronic Countermeasure/@comment-86.3.74.137-20150210205944/@comment-80.195.188.127-20150329094530\nTalk:Elite/@comment-179.218.150.97-20180130223445\nTalk:Elite/@comment-213.120.234.109-20161223113241\nTalk:Elite/@comment-2A02:C7F:9C76:D00:40C6:6E68:5486:BDF7-20180708213102\nTalk:Elite/@comment-39220317-20200120210204\nTalk:Elite/@comment-39220317-20200120210204/@comment-35849399-20200715023926\nTalk:Elite/@comment-39220317-20200120210204/@comment-36373908-20200127021023\nTalk:Elite/@comment-39220317-20200120210204/@comment-43982350-20200924000537\nTalk:Elite/@comment-43.242.140.72-20151020045449\nTalk:Elite/@comment-43.242.140.72-20151020045449/@comment-153.46.105.98-20151026191749\nTalk:Elite/@comment-43.242.140.72-20151020045449/@comment-83.36.48.101-20151023115903\nTalk:Elite/@comment-43.242.140.72-20151020045449/@comment-95.144.202.58-20161123143632\nTalk:Elite/@comment-76.174.37.47-20171122161235\nTalk:Elite/@comment-961279-20180630230117\nTalk:Elite/@comment-961279-20180630230117/@comment-90.200.46.38-20181113010556\nTalk:Elite: Dangerous FAQ/@comment-149.254.250.197-20140709194945\nTalk:Elite: Dangerous FAQ/@comment-149.254.250.197-20140709194945/@comment-69.180.80.216-20141207234114\nTalk:Elite: Dangerous FAQ/@comment-181.188.72.56-20140911004229\nTalk:Elite: Dangerous FAQ/@comment-181.188.72.56-20140911004229/@comment-89.168.120.161-20150420185317\nTalk:Elite: Dangerous FAQ/@comment-189.209.12.84-20140805231339\nTalk:Elite: Dangerous FAQ/@comment-203.217.13.21-20140901061935\nTalk:Elite: Dangerous FAQ/@comment-203.217.13.21-20140901061935/@comment-5.53.243.156-20140905152713\nTalk:Elite: Dangerous FAQ/@comment-207.219.69.167-20140816215541\nTalk:Elite: Dangerous FAQ/@comment-207.219.69.167-20140816215541/@comment-122.57.114.143-20140818090503\nTalk:Elite: Dangerous FAQ/@comment-207.219.69.167-20140816215541/@comment-69.180.80.216-20141207233940\nTalk:Elite: Dangerous FAQ/@comment-208.88.108.114-20140729183752\nTalk:Elite: Dangerous FAQ/@comment-24.98.154.213-20140818212326\nTalk:Elite: Dangerous FAQ/@comment-35.46.23.82-20140913194721\nTalk:Elite: Dangerous FAQ/@comment-35.46.23.82-20140914020407/@comment-35.46.23.82-20140914021527\nTalk:Elite: Dangerous FAQ/@comment-35.46.23.82-20140914020407/@comment-35.46.23.82-20140914022805\nTalk:Elite: Dangerous FAQ/@comment-35.46.23.82-20140914020407/@comment-35.46.23.82-20140914030017\nTalk:Elite: Dangerous FAQ/@comment-35.46.23.82-20140914020407/@comment-35.46.23.82-20140914030609\nTalk:Elite: Dangerous FAQ/@comment-82.23.253.24-20140819003332\nTalk:Elite: Dangerous FAQ/@comment-88.217.64.214-20140905222858\nTalk:Elite: Dangerous Wiki\nTalk:Elite: Reclamation/@comment-50.92.35.140-20161125055211\nTalk:Elite: Reclamation/@comment-50.92.35.140-20161125055211/@comment-91.221.55.69-20170611072934\nTalk:Elite Dangerous/@comment-122.105.136.231-20150427175336\nTalk:Elite Dangerous/@comment-122.105.136.231-20150427175336/@comment-139.161.115.244-20151025034635\nTalk:Elite Dangerous/@comment-122.105.136.231-20150427175336/@comment-146.200.167.4-20150605185744\nTalk:Elite Dangerous/@comment-122.105.136.231-20150427175336/@comment-27045429-20151004203226\nTalk:Elite Dangerous/@comment-122.105.136.231-20150427175336/@comment-5959508-20160821065958\nTalk:Elite Dangerous/@comment-122.105.136.231-20150427175336/@comment-68.145.72.142-20150801024552\nTalk:Elite Dangerous/@comment-122.105.136.231-20150427175336/@comment-81.146.24.187-20150815223539\nTalk:Elite Dangerous/@comment-122.105.136.231-20150427175336/@comment-Dagerun-20151004203239\nTalk:Elite Dangerous/@comment-128.75.228.245-20170102140010\nTalk:Elite Dangerous/@comment-156.3.54.203-20150908155938\nTalk:Elite Dangerous/@comment-173.20.28.32-20150321000037\nTalk:Elite Dangerous/@comment-2.219.191.108-20150329111359\nTalk:Elite Dangerous/@comment-2.219.191.108-20150329111359/@comment-26009169-20150329124016\nTalk:Elite Dangerous/@comment-2.219.191.108-20150329111359/@comment-5959508-20160821070335\nTalk:Elite Dangerous/@comment-2.219.191.108-20150329111359/@comment-81.146.24.187-20150815223736\nTalk:Elite Dangerous/@comment-207.161.12.173-20181031215955\nTalk:Elite Dangerous/@comment-207.161.162.186-20181203023319\nTalk:Elite Dangerous/@comment-207.161.162.186-20181203023319/@comment-2600:1017:B426:611B:A57B:36A:A91:A502-20190213001127\nTalk:Elite Dangerous/@comment-24.77.8.172-20141008172010\nTalk:Elite Dangerous/@comment-26210945-20151019025809\nTalk:Elite Dangerous/@comment-26210945-20151019025809/@comment-134.191.232.69-20151220140825\nTalk:Elite Dangerous/@comment-26210945-20151019025809/@comment-139.161.115.244-20151025034204\nTalk:Elite Dangerous/@comment-26210945-20151019025809/@comment-26210945-20151026012645\nTalk:Elite Dangerous/@comment-26210945-20151019025809/@comment-26210945-20151026231242\nTalk:Elite Dangerous/@comment-26210945-20151019025809/@comment-27032150-20151019082000\nTalk:Elite Dangerous/@comment-26210945-20151019025809/@comment-5959508-20151026140608\nTalk:Elite Dangerous/@comment-31.55.21.78-20141007002903\nTalk:Elite Dangerous/@comment-50.203.210.2-20151105185520\nTalk:Elite Dangerous/@comment-50.203.210.2-20151105185520/@comment-27032150-20151106090434\nTalk:Elite Dangerous/@comment-5959508-20170415134727\nTalk:Elite Dangerous/@comment-5959508-20170415134727/@comment-2155082-20170415165815\nTalk:Elite Dangerous/@comment-5959508-20170415134727/@comment-30928085-20170415135231\nTalk:Elite Dangerous/@comment-5959508-20170415134727/@comment-30928085-20170709091821\nTalk:Elite Dangerous/@comment-69.56.101.67-20150416010150\nTalk:Elite Dangerous/@comment-69.56.101.67-20150416010150/@comment-108.20.134.239-20150416041632\nTalk:Elite Dangerous/@comment-76.85.144.148-20140722212217\nTalk:Elite Dangerous/@comment-76.85.144.148-20140722212217/@comment-168.99.197.15-20140910171643\nTalk:Elite Dangerous/@comment-76.85.144.148-20140722212217/@comment-76.85.197.172-20141228192304\nTalk:Elite Dangerous/@comment-87.102.15.207-20160824122104\nTalk:Elite Dangerous/@comment-87.102.15.207-20160824122104/@comment-171.33.197.106-20161108105647\nTalk:Elite Dangerous/@comment-87.102.15.207-20160824122104/@comment-5959508-20160824221735\nTalk:Elite Dangerous/@comment-88.240.98.235-20180929194154\nTalk:Elite Dangerous/@comment-92.40.249.136-20140525202317\nTalk:Elite Dangerous/@comment-92.40.249.162-20140519171302\nTalk:Elite Dangerous/@comment-92.40.249.162-20140519171302/@comment-125.237.7.64-20161127073732\nTalk:Elite Dangerous: Beyond/@comment-168.99.198.78-20180223074625\nTalk:Elite Dangerous: Beyond/@comment-168.99.198.78-20180223074625/@comment-12.198.157.12-20180305193535\nTalk:Elite Dangerous: Beyond/@comment-168.99.198.78-20180223074625/@comment-168.99.197.18-20180223152357\nTalk:Elite Dangerous: Beyond/@comment-168.99.198.78-20180223074625/@comment-168.99.198.78-20180223075254\nTalk:Elite Dangerous: Beyond/@comment-168.99.198.78-20180223074625/@comment-168.99.198.78-20180223075739\nTalk:Elite Dangerous: Beyond/@comment-168.99.198.78-20180223074625/@comment-192.136.161.33-20180223140053\nTalk:Elite Dangerous: Beyond/@comment-2003:C6:B705:9F21:49D7:D8CC:C805:C32F-20180213145156\nTalk:Elite Dangerous: Beyond/@comment-2003:C6:B705:9F21:49D7:D8CC:C805:C32F-20180213145156/@comment-34360819-20180213150341\nTalk:Elite Dangerous: Beyond/@comment-24.34.226.15-20171209030730\nTalk:Elite Dangerous: Beyond/@comment-24.34.226.15-20171209030730/@comment-173.206.161.202-20180112161651\nTalk:Elite Dangerous: Beyond/@comment-24.34.226.15-20171209030730/@comment-204.174.232.2-20180821072229\nTalk:Elite Dangerous: Beyond/@comment-24.34.226.15-20171209030730/@comment-2601:681:200:23EC:2558:97C9:530:B639-20180114143209\nTalk:Elite Dangerous: Beyond/@comment-24.34.226.15-20171209030730/@comment-2620:0:691:2336:D8DB:92A8:23B2:5C60-20180214205317\nTalk:Elite Dangerous: Beyond/@comment-24.34.226.15-20171209030730/@comment-34360819-20180213150751\nTalk:Elite Dangerous: Beyond/@comment-24.34.226.15-20171209030730/@comment-79.74.108.203-20180102200622\nTalk:Elite Dangerous: Beyond/@comment-24.34.226.15-20171209030730/@comment-86.134.146.178-20171211180156\nTalk:Elite Dangerous: Beyond/@comment-26466653-20180124234902\nTalk:Elite Dangerous: Beyond/@comment-35245756-20180816040637\nTalk:Elite Dangerous: Beyond/@comment-35245756-20180816040637/@comment-167.187.101.178-20181118121812\nTalk:Elite Dangerous: Beyond/@comment-4616657-20171007203438\nTalk:Elite Dangerous: Beyond/@comment-4616657-20171007203438/@comment-104.171.239.2-20171207024254\nTalk:Elite Dangerous: Beyond/@comment-4616657-20171007203438/@comment-30928085-20171008132513\nTalk:Elite Dangerous: Beyond/@comment-4616657-20171007203438/@comment-34360819-20180213151010\nTalk:Elite Dangerous: Beyond/@comment-57.79.130.85-20180813173402\nTalk:Elite Dangerous: Beyond/@comment-57.79.130.85-20180813173402/@comment-30928085-20180814001948\nTalk:Elite Dangerous: Beyond/@comment-62.194.145.192-20181201111504\nTalk:Elite Dangerous: Beyond/@comment-66.58.189.250-20180220002435\nTalk:Elite Dangerous: Beyond/@comment-66.58.189.250-20180220002435/@comment-2A02:587:241C:5B00:B1C3:CC4C:6441:65A-20180220003431\nTalk:Elite Dangerous: Beyond/@comment-66.58.189.250-20180220002435/@comment-62.45.66.79-20180221154134\nTalk:Elite Dangerous: Beyond/@comment-87.21.205.208-20180118225632\nTalk:Elite Dangerous: Beyond/@comment-87.21.205.208-20180118225632/@comment-109.50.210.184-20180122014031\nTalk:Elite Dangerous: Beyond/@comment-87.21.205.208-20180118225632/@comment-168.99.198.78-20180223074813\nTalk:Elite Dangerous: Beyond/@comment-87.21.205.208-20180118225632/@comment-24.134.48.205-20180223140618\nTalk:Elite Dangerous: Beyond/@comment-87.21.205.208-20180118225632/@comment-2600:8800:7C01:2B90:131:D793:6E02:21ED-20180125120945\nTalk:Elite Dangerous: Beyond/@comment-87.21.205.208-20180118225632/@comment-34360819-20180213150508\nTalk:Elite Dangerous: Beyond/@comment-87.21.205.208-20180118225632/@comment-51.6.74.117-20180221185043\nTalk:Elite Dangerous: Beyond/@comment-87.21.205.208-20180118225632/@comment-74.136.73.212-20180222181241\nTalk:Elite Dangerous: Beyond/@comment-90.200.49.195-20181213013014\nTalk:Elite Dangerous: Beyond/@comment-90.200.49.195-20181213013014/@comment-192.136.170.98-20181213042150\nTalk:Elite Dangerous: Beyond/@comment-93.143.90.250-20180930151014\nTalk:Elite Dangerous: Beyond/@comment-93.143.90.250-20180930151014/@comment-26810597-20181002033304\nTalk:Elite Dangerous: Beyond/@comment-93.143.90.250-20180930151014/@comment-37820584-20181215063618\nTalk:Elite Dangerous: Beyond/@comment-93.143.90.250-20180930151014/@comment-93.137.19.255-20181017173859\nTalk:Elite Dangerous: Horizons/@comment-12.5.54.135-20151013142555\nTalk:Elite Dangerous: Horizons/@comment-12.5.54.135-20151013142555/@comment-12.5.54.135-20151019143537\nTalk:Elite Dangerous: Horizons/@comment-12.5.54.135-20151013142555/@comment-26599825-20151017225455\nTalk:Elite Dangerous: Horizons/@comment-12.5.54.135-20151013142555/@comment-5959508-20151014170732\nTalk:Elite Dangerous: Horizons/@comment-153.46.97.98-20150805124724\nTalk:Elite Dangerous: Horizons/@comment-165.166.218.17-20151025203601\nTalk:Elite Dangerous: Horizons/@comment-165.166.218.17-20151025203601/@comment-26599825-20151026110640\nTalk:Elite Dangerous: Horizons/@comment-172.88.141.191-20151129054804\nTalk:Elite Dangerous: Horizons/@comment-172.88.141.191-20151129054804/@comment-26599825-20151129090301\nTalk:Elite Dangerous: Horizons/@comment-172.88.141.191-20151129054804/@comment-80.56.61.209-20151228005856\nTalk:Elite Dangerous: Horizons/@comment-208.92.19.20-20160522190313\nTalk:Elite Dangerous: Horizons/@comment-209.242.141.63-20151209215009\nTalk:Elite Dangerous: Horizons/@comment-24.141.225.61-20150806195959\nTalk:Elite Dangerous: Horizons/@comment-24.141.225.61-20150806195959/@comment-109.57.210.32-20150806220401\nTalk:Elite Dangerous: Horizons/@comment-24.141.225.61-20150806195959/@comment-156.3.54.203-20150908155813\nTalk:Elite Dangerous: Horizons/@comment-24.141.225.61-20150806195959/@comment-204.112.23.46-20150904052053\nTalk:Elite Dangerous: Horizons/@comment-24.141.225.61-20150806195959/@comment-26599825-20150806210520\nTalk:Elite Dangerous: Horizons/@comment-24.141.225.61-20150806195959/@comment-26724535-20150814024628\nTalk:Elite Dangerous: Horizons/@comment-24.141.225.61-20150806195959/@comment-5959508-20151014170923\nTalk:Elite Dangerous: Horizons/@comment-24.141.225.61-20150806195959/@comment-67.255.252.24-20150808030842\nTalk:Elite Dangerous: Horizons/@comment-24.141.225.61-20150806195959/@comment-72.241.143.238-20150829101100\nTalk:Elite Dangerous: Horizons/@comment-24.141.225.61-20150806195959/@comment-86.158.249.22-20150811110128\nTalk:Elite Dangerous: Horizons/@comment-2601:982:8202:A800:D8D7:FDDC:C4B6:DC0B-20180416201924\nTalk:Elite Dangerous: Horizons/@comment-2601:982:8202:A800:D8D7:FDDC:C4B6:DC0B-20180416201924/@comment-34641605-20180501200842\nTalk:Elite Dangerous: Horizons/@comment-26122331-20161214222720\nTalk:Elite Dangerous: Horizons/@comment-26144562-20150921210031\nTalk:Elite Dangerous: Horizons/@comment-26144562-20150921210031/@comment-26009169-20150921232313\nTalk:Elite Dangerous: Horizons/@comment-26599825-20150926125509\nTalk:Elite Dangerous: Horizons/@comment-27032150-20160819103846\nTalk:Elite Dangerous: Horizons/@comment-27340990-20151204025246\nTalk:Elite Dangerous: Horizons/@comment-27340990-20151204025246/@comment-99.239.182.156-20151204220913\nTalk:Elite Dangerous: Horizons/@comment-29011619-20160819202932\nTalk:Elite Dangerous: Horizons/@comment-67.160.185.247-20150813185139\nTalk:Elite Dangerous: Horizons/@comment-67.160.185.247-20150813185139/@comment-5959508-20151014170816\nTalk:Elite Dangerous: Horizons/@comment-67.160.185.247-20150813185139/@comment-5959508-20151126150251\nTalk:Elite Dangerous: Horizons/@comment-67.160.185.247-20150813185139/@comment-93.181.1.205-20151126145910\nTalk:Elite Dangerous: Horizons/@comment-68.71.31.46-20150924165152\nTalk:Elite Dangerous: Horizons/@comment-71.40.21.238-20151127234242\nTalk:Elite Dangerous: Horizons/@comment-71.40.21.238-20151127234242/@comment-26009169-20151128132904\nTalk:Elite Dangerous: Horizons/@comment-72.241.143.238-20151029020956\nTalk:Elite Dangerous: Horizons/@comment-78.11.110.60-20151211070030\nTalk:Elite Dangerous: Horizons/@comment-78.11.110.60-20151211070030/@comment-107.197.211.173-20151219191057\nTalk:Elite Dangerous: Horizons/@comment-78.11.110.60-20151211070030/@comment-209.242.141.55-20151211174915\nTalk:Elite Dangerous: Horizons/@comment-78.11.110.60-20151211070030/@comment-217.99.147.137-20151211233540\nTalk:Elite Dangerous: Horizons/@comment-78.11.110.60-20151211070030/@comment-5790751-20151214193240\nTalk:Elite Dangerous: Horizons/@comment-78.11.110.60-20151211070030/@comment-78.11.110.60-20151216092035\nTalk:Elite Dangerous: Horizons/@comment-78.11.110.60-20151211070030/@comment-80.212.228.80-20160606181537\nTalk:Elite Dangerous: Horizons/@comment-82.132.230.190-20150806060853\nTalk:Elite Dangerous: Horizons/@comment-82.132.230.190-20150806060853/@comment-5959508-20151026215229\nTalk:Elite Dangerous: Horizons/@comment-82.132.230.190-20150806060853/@comment-85.166.132.236-20151008032216\nTalk:Elite Dangerous: Horizons/@comment-92.43.71.143-20151215081321\nTalk:Elite Dangerous: Horizons/@comment-92.43.71.143-20151215081321/@comment-123.211.123.73-20151216021035\nTalk:Elite Dangerous: Horizons/@comment-92.43.71.143-20151215081321/@comment-30802664-20161220181601\nTalk:Elite Dangerous: Horizons/@comment-92.43.71.143-20151215081321/@comment-42.112.81.61-20160831080805\nTalk:Elite Dangerous: Horizons/@comment-92.43.71.143-20151215081321/@comment-80.212.228.80-20160606181032\nTalk:Elite Dangerous: Odyssey/@comment-1784834-20200707042722\nTalk:Elite Dangerous: Odyssey/@comment-1784834-20200707042722/@comment-43982350-20200831110248\nTalk:Elite Dangerous: Odyssey/@comment-36587220-20200522171121\nTalk:Elite Dangerous: Premonition/@comment-82.11.240.23-20180228090657\nTalk:Elite Dangerous FAQ/@comment-118.189.60.164-20150716074514\nTalk:Elite Dangerous FAQ/@comment-149.254.186.248-20141109101350\nTalk:Elite Dangerous FAQ/@comment-149.254.186.248-20141109101350/@comment-25134518-20141215124755\nTalk:Elite Dangerous FAQ/@comment-149.254.250.197-20140709194945\nTalk:Elite Dangerous FAQ/@comment-149.254.250.197-20140709194945/@comment-69.180.80.216-20141207234114\nTalk:Elite Dangerous FAQ/@comment-162.201.249.235-20150406014034\nTalk:Elite Dangerous FAQ/@comment-162.201.249.235-20150406014034/@comment-24.104.70.146-20150528165052\nTalk:Elite Dangerous FAQ/@comment-162.201.249.235-20150406014034/@comment-26009169-20150406022114\nTalk:Elite Dangerous FAQ/@comment-166.181.82.53-20150125054926\nTalk:Elite Dangerous FAQ/@comment-166.181.82.53-20150125054926/@comment-24.233.227.195-20150315134519\nTalk:Elite Dangerous FAQ/@comment-166.181.82.53-20150125054926/@comment-89.168.120.161-20150420185040\nTalk:Elite Dangerous FAQ/@comment-178.210.254.14-20141213095140\nTalk:Elite Dangerous FAQ/@comment-178.210.254.14-20141213095140/@comment-25134518-20141215124445\nTalk:Elite Dangerous FAQ/@comment-181.188.72.56-20140911004229\nTalk:Elite Dangerous FAQ/@comment-181.188.72.56-20140911004229/@comment-25335609-20140911022651\nTalk:Elite Dangerous FAQ/@comment-181.188.72.56-20140911004229/@comment-89.168.120.161-20150420185317\nTalk:Elite Dangerous FAQ/@comment-189.209.12.84-20140805231339\nTalk:Elite Dangerous FAQ/@comment-189.209.12.84-20140805231339/@comment-4259120-20140806072816\nTalk:Elite Dangerous FAQ/@comment-192.136.161.156-20161025164749\nTalk:Elite Dangerous FAQ/@comment-192.136.161.248-20160820185428\nTalk:Elite Dangerous FAQ/@comment-192.136.174.152-20160316165918\nTalk:Elite Dangerous FAQ/@comment-192.136.174.152-20160316165918/@comment-192.136.161.248-20160817133436\nTalk:Elite Dangerous FAQ/@comment-192.136.174.152-20160316165918/@comment-26391992-20160316170923\nTalk:Elite Dangerous FAQ/@comment-192.136.174.152-20160316165918/@comment-27032150-20160817141226\nTalk:Elite Dangerous FAQ/@comment-199.164.58.10-20160216161457\nTalk:Elite Dangerous FAQ/@comment-199.164.58.10-20160216161457/@comment-192.136.172.239-20160216174048\nTalk:Elite Dangerous FAQ/@comment-199.192.172.166-20141210022243\nTalk:Elite Dangerous FAQ/@comment-199.192.172.166-20141210022243/@comment-86.30.252.23-20141216154812\nTalk:Elite Dangerous FAQ/@comment-202.159.181.55-20150202121413\nTalk:Elite Dangerous FAQ/@comment-202.159.181.55-20150202121413/@comment-122.58.239.177-20161119085024\nTalk:Elite Dangerous FAQ/@comment-202.159.181.55-20150202121413/@comment-26009169-20150202125725\nTalk:Elite Dangerous FAQ/@comment-203.217.13.21-20140901061935\nTalk:Elite Dangerous FAQ/@comment-203.217.13.21-20140901061935/@comment-5.53.243.156-20140905152713\nTalk:Elite Dangerous FAQ/@comment-206.251.43.121-20150623013349\nTalk:Elite Dangerous FAQ/@comment-206.251.43.121-20150623013349/@comment-206.251.43.121-20150623020222\nTalk:Elite Dangerous FAQ/@comment-206.251.43.121-20150623013349/@comment-26009169-20150623015002\nTalk:Elite Dangerous FAQ/@comment-207.219.69.167-20140816215541\nTalk:Elite Dangerous FAQ/@comment-207.219.69.167-20140816215541/@comment-122.57.114.143-20140818090503\nTalk:Elite Dangerous FAQ/@comment-207.219.69.167-20140816215541/@comment-69.180.80.216-20141207233940\nTalk:Elite Dangerous FAQ/@comment-208.88.108.114-20140729183752\nTalk:Elite Dangerous FAQ/@comment-213.206.237.194-20141215114544\nTalk:Elite Dangerous FAQ/@comment-213.206.237.194-20141215114544/@comment-25134518-20141215124702\nTalk:Elite Dangerous FAQ/@comment-213.37.122.67-20141226231236\nTalk:Elite Dangerous FAQ/@comment-213.37.122.67-20141226231236/@comment-4968814-20141228170141\nTalk:Elite Dangerous FAQ/@comment-213.37.122.67-20141226231236/@comment-84.248.70.53-20141228062522\nTalk:Elite Dangerous FAQ/@comment-213.37.122.67-20141226231236/@comment-92.206.237.33-20170623174513\nTalk:Elite Dangerous FAQ/@comment-220.253.144.214-20170104060510\nTalk:Elite Dangerous FAQ/@comment-220.253.144.214-20170104060510/@comment-73.9.165.35-20170115205346\nTalk:Elite Dangerous FAQ/@comment-24.184.12.11-20150726161619\nTalk:Elite Dangerous FAQ/@comment-24.184.12.11-20150726161619/@comment-25335609-20150729114748\nTalk:Elite Dangerous FAQ/@comment-24.184.12.11-20150726161619/@comment-25335609-20150731033254\nTalk:Elite Dangerous FAQ/@comment-24.184.12.11-20150726161619/@comment-26599825-20150729142648\nTalk:Elite Dangerous FAQ/@comment-24.98.154.213-20140818212326\nTalk:Elite Dangerous FAQ/@comment-24.98.154.213-20140818212326/@comment-6033893-20140818215916\nTalk:Elite Dangerous FAQ/@comment-25393255-20140906215739\nTalk:Elite Dangerous FAQ/@comment-25393255-20140906215739/@comment-25335609-20140907012413\nTalk:Elite Dangerous FAQ/@comment-26237594-20150411093616\nTalk:Elite Dangerous FAQ/@comment-26237594-20150411093616/@comment-202.36.179.100-20150511221753\nTalk:Elite Dangerous FAQ/@comment-26237594-20150411093616/@comment-212.85.181.163-20150413120625\nTalk:Elite Dangerous FAQ/@comment-26237594-20150411093616/@comment-24.104.70.146-20150528165020\nTalk:Elite Dangerous FAQ/@comment-26237594-20150411093616/@comment-66.87.153.65-20150511165136\nTalk:Elite Dangerous FAQ/@comment-27.110.122.39-20140915090328\nTalk:Elite Dangerous FAQ/@comment-27.110.122.39-20140915090328/@comment-35.46.40.94-20140915141301\nTalk:Elite Dangerous FAQ/@comment-27.110.122.39-20140915090328/@comment-92.8.238.65-20141210213738\nTalk:Elite Dangerous FAQ/@comment-35.46.23.82-20140913194721\nTalk:Elite Dangerous FAQ/@comment-35.46.23.82-20140913194721/@comment-11205275-20140913232853\nTalk:Elite Dangerous FAQ/@comment-35.46.23.82-20140914020407\nTalk:Elite Dangerous FAQ/@comment-35.46.23.82-20140914020407/@comment-25335609-20140914065631\nTalk:Elite Dangerous FAQ/@comment-35.46.23.82-20140914020407/@comment-35.46.23.82-20140914021527\nTalk:Elite Dangerous FAQ/@comment-35.46.23.82-20140914020407/@comment-35.46.23.82-20140914022805\nTalk:Elite Dangerous FAQ/@comment-35.46.23.82-20140914020407/@comment-35.46.23.82-20140914030017\nTalk:Elite Dangerous FAQ/@comment-35.46.23.82-20140914020407/@comment-35.46.23.82-20140914030609\nTalk:Elite Dangerous FAQ/@comment-35.46.40.94-20140915141941\nTalk:Elite Dangerous FAQ/@comment-35.46.40.94-20140915141941/@comment-25335609-20140916020709\nTalk:Elite Dangerous FAQ/@comment-47.55.47.186-20150128024422\nTalk:Elite Dangerous FAQ/@comment-47.55.47.186-20150128024422/@comment-24.104.70.146-20150528165232\nTalk:Elite Dangerous FAQ/@comment-62.189.40.30-20170526160949\nTalk:Elite Dangerous FAQ/@comment-65.49.14.146-20141107190241\nTalk:Elite Dangerous FAQ/@comment-65.49.14.146-20141107190241/@comment-25134518-20141215124849\nTalk:Elite Dangerous FAQ/@comment-67.187.119.225-20151231195107\nTalk:Elite Dangerous FAQ/@comment-67.187.119.225-20171123183426\nTalk:Elite Dangerous FAQ/@comment-67.187.119.225-20171123183426/@comment-33441314-20180130131610\nTalk:Elite Dangerous FAQ/@comment-67.187.119.225-20171123183426/@comment-78.21.151.26-20180106111933\nTalk:Elite Dangerous FAQ/@comment-67.187.119.225-20171123183426/@comment-90.200.46.38-20181127123157\nTalk:Elite Dangerous FAQ/@comment-67.214.248.82-20150623150035\nTalk:Elite Dangerous FAQ/@comment-67.214.248.82-20150623150035/@comment-26009169-20150623152019\nTalk:Elite Dangerous FAQ/@comment-67.214.248.82-20150623150035/@comment-26009169-20150623170017\nTalk:Elite Dangerous FAQ/@comment-67.214.248.82-20150623150035/@comment-67.214.248.82-20150623164933\nTalk:Elite Dangerous FAQ/@comment-71.91.80.103-20170201201355\nTalk:Elite Dangerous FAQ/@comment-71.91.80.103-20170201201355/@comment-2155082-20170201234143\nTalk:Elite Dangerous FAQ/@comment-75.117.151.226-20141216143326\nTalk:Elite Dangerous FAQ/@comment-75.117.151.226-20141216143326/@comment-25134518-20141216143911\nTalk:Elite Dangerous FAQ/@comment-75.143.103.222-20140917052735\nTalk:Elite Dangerous FAQ/@comment-75.143.103.222-20140917052735/@comment-25335609-20140919012516\nTalk:Elite Dangerous FAQ/@comment-76.14.200.114-20141101101832\nTalk:Elite Dangerous FAQ/@comment-76.14.200.114-20141101101832/@comment-208.54.83.252-20141112000138\nTalk:Elite Dangerous FAQ/@comment-77.247.229.22-20150329211502\nTalk:Elite Dangerous FAQ/@comment-77.247.229.22-20150329211502/@comment-26009169-20150329213315\nTalk:Elite Dangerous FAQ/@comment-77.247.229.22-20150329211502/@comment-26009169-20150329231916\nTalk:Elite Dangerous FAQ/@comment-77.247.229.22-20150329211502/@comment-72.46.217.207-20150329222607\nTalk:Elite Dangerous FAQ/@comment-78.146.128.234-20150101215748\nTalk:Elite Dangerous FAQ/@comment-78.146.128.234-20150101215748/@comment-124.170.158.226-20150405014853\nTalk:Elite Dangerous FAQ/@comment-78.146.128.234-20150101215748/@comment-204.111.255.79-20150302000625\nTalk:Elite Dangerous FAQ/@comment-78.146.128.234-20150101215748/@comment-86.59.163.221-20150108101937\nTalk:Elite Dangerous FAQ/@comment-78.146.128.234-20150101215748/@comment-88.85.44.241-20150215221947\nTalk:Elite Dangerous FAQ/@comment-78.146.128.234-20150101215748/@comment-99.194.247.125-20150114010047\nTalk:Elite Dangerous FAQ/@comment-82.23.253.24-20140819003332\nTalk:Elite Dangerous FAQ/@comment-86.8.9.144-20141231142023\nTalk:Elite Dangerous FAQ/@comment-86.8.9.144-20141231142023/@comment-12138097-20141231214942\nTalk:Elite Dangerous FAQ/@comment-87.73.90.11-20150608150742\nTalk:Elite Dangerous FAQ/@comment-87.73.90.11-20150608150742/@comment-26009169-20150608154408\nTalk:Elite Dangerous FAQ/@comment-88.217.64.214-20140905222858\nTalk:Elite Dangerous FAQ/@comment-88.217.64.214-20140905222858/@comment-25335609-20140911022758\nTalk:Elite Dangerous FAQ/@comment-89.160.84.242-20150301094227\nTalk:Elite Dangerous FAQ/@comment-90.215.99.210-20150311185951\nTalk:Elite Dangerous FAQ/@comment-90.215.99.210-20150311185951/@comment-26009169-20150311190817\nTalk:Elite Dangerous FAQ/@comment-95.91.228.5-20160329181613\nTalk:Elite Dangerous FAQ/@comment-95.91.228.5-20160329182156\nTalk:Elite Dangerous FAQ/@comment-95.91.228.5-20160329182156/@comment-66.109.235.218-20160818161659\nTalk:Elite Dangerous FAQ/@comment-96.53.212.139-20150710185437\nTalk:Elite Dangerous Kickstarter/@comment-202.37.17.68-20160717002510\nTalk:Elite Dangerous Kickstarter/@comment-212.10.111.72-20190606224657\nTalk:Elite Dangerous Kickstarter/@comment-212.10.111.72-20190606224657/@comment-212.10.111.72-20190606225512\nTalk:Elite Dangerous Kickstarter/@comment-212.10.111.72-20190606224657/@comment-212.10.111.72-20190722071030\nTalk:Elite Dangerous Kickstarter/@comment-212.10.111.72-20190606224657/@comment-212.10.111.72-20191030143907\nTalk:Elite Dangerous Kickstarter/@comment-212.10.111.72-20190606224657/@comment-2607:FCC8:6703:1000:B187:314E:437B:F1C7-20190622003153\nTalk:Elite Dangerous Kickstarter/@comment-212.10.111.72-20190606224657/@comment-70.74.208.197-20191018013049\nTalk:Elite Dangerous Kickstarter/@comment-46.216.168.87-20161001220051\nTalk:Elite Dangerous Kickstarter/@comment-80.193.22.86-20150806023121\nTalk:Elite Dangerous Kickstarter/@comment-80.193.22.86-20150806023121/@comment-70.74.208.197-20191018013459\nTalk:Elite Dangerous Kickstarter/@comment-80.193.22.86-20150806023121/@comment-92.201.125.138-20151109094947\nTalk:Elite Dangerous Merchandise/@comment-40158752-20200712233835\nTalk:Elite Dangerous Merchandise/@comment-86.26.21.64-20181211154123\nTalk:Elite Dangerous Merchandise/@comment-86.26.21.64-20181211154123/@comment-98.117.249.237-20190716000417\nTalk:Elite Dangerous Music/@comment-24.246.79.82-20190126222418\nTalk:Elite Dangerous Timeline/@comment-171.223.127.117-20180117115032\nTalk:Elite Dangerous Timeline/@comment-207.161.252.130-20171113175923\nTalk:Elite Dangerous Timeline/@comment-34004391-20180111102411\nTalk:Elite Dangerous Timeline/@comment-36590909-20190418074345\nTalk:Elite Dangerous Timeline/@comment-36590909-20190423092508\nTalk:Elite Dangerous Timeline/@comment-44180665-20200620163102\nTalk:Elite Dangerous Timeline/@comment-44904441-20200209040545\nTalk:Elite Dangerous Timeline/@comment-92.65.137.121-20170428002124\nTalk:Elite Dangerous Timeline/@comment-92.65.137.121-20170428002124/@comment-30928085-20170428022754\nTalk:Elite Dangerous Wiki\nTalk:Elite Encounters RPG/@comment-87.102.68.156-20180912131418\nTalk:Elite Encounters RPG/@comment-90.252.214.40-20190419080457\nTalk:Elite Timeline/@comment-189.32.236.141-20170507032120\nTalk:Elite Timeline/@comment-204.87.204.206-20190319224009\nTalk:Elite Timeline/@comment-204.87.204.206-20190319224009/@comment-213.68.126.83-20200128121856\nTalk:Elite Timeline/@comment-4052334-20160815192808\nTalk:Elite Timeline/@comment-81.141.149.218-20150925140738\nTalk:Elite Timeline/@comment-81.141.149.218-20150925140738/@comment-2155082-20161209025130\nTalk:Elite Timeline/@comment-81.141.149.218-20150925140738/@comment-86.204.129.140-20170113181544\nTalk:Elite Timeline/@comment-83.4.102.226-20171112193607\nTalk:Elite Timeline/@comment-90.218.7.157-20160429173957\nTalk:Elite Universe/@comment-178.40.139.14-20190524021005\nTalk:Elite Universe/@comment-45138413-20200229084722\nTalk:Elvira Martuuk/@comment-24.113.87.244-20190819060807\nTalk:Elvira Martuuk/@comment-24.113.87.244-20190819060807/@comment-44129153-20191014120901\nTalk:Elvira Martuuk/@comment-2601:285:8280:2A48:25CF:A297:BC17:B6BB-20180926044231\nTalk:Elvira Martuuk/@comment-2601:285:8280:2A48:25CF:A297:BC17:B6BB-20180926044231/@comment-74.249.114.2-20181201080915\nTalk:Elvira Martuuk/@comment-33823123-20200225092547\nTalk:Elvira Martuuk/@comment-33823123-20200225092547/@comment-33823123-20200226004321\nTalk:Elvira Martuuk/@comment-84.123.98.14-20170919182938\nTalk:Elvira Martuuk/@comment-84.123.98.14-20170919182938/@comment-31363749-20170919204130\nTalk:Elvira Martuuk/@comment-92.36.135.111-20180212130954\nTalk:Elvira Martuuk/@comment-92.36.135.111-20180212130954/@comment-192.136.161.33-20180212140408\nTalk:Elvira Martuuk/@comment-93.239.186.228-20160923182703\nTalk:Elvira Martuuk/@comment-93.239.186.228-20160923182703/@comment-110.140.250.88-20170224151946\nTalk:Elvira Martuuk/@comment-93.239.186.228-20160923182703/@comment-93.239.186.228-20160923183834\nTalk:Elvira Martuuk/@comment-94.67.193.103-20170822110045\nTalk:Emissive Munitions/@comment-107.77.109.119-20171003184218\nTalk:Emissive Munitions/@comment-107.77.109.119-20171003184218/@comment-2001:5B0:4BC0:D040:0:FF:FEBD:1C0-20180522052501\nTalk:Emissive Munitions/@comment-90.200.46.38-20181123135303\nTalk:Emissive Munitions/@comment-90.200.46.38-20181123135303/@comment-176.241.72.203-20190725015522\nTalk:Emperor's Grace/@comment-68.135.41.54-20151116232432\nTalk:Emperor's Grace/@comment-68.135.41.54-20151116232432/@comment-68.135.41.54-20151116232450\nTalk:Emperor/@comment-3082733-20151031154256\nTalk:Emperor/@comment-3082733-20151031154256/@comment-1028741-20151031195117\nTalk:Emperor/@comment-43403081-20200329011742\nTalk:Empire/@comment-108.2.148.152-20170427014321\nTalk:Empire/@comment-108.2.148.152-20170427014321/@comment-30245159-20170427131153\nTalk:Empire/@comment-118.208.0.127-20150327084520\nTalk:Empire/@comment-118.208.0.127-20150327084520/@comment-125.237.3.1-20161014025933\nTalk:Empire/@comment-118.208.0.127-20150327084520/@comment-173.24.150.13-20150422211550\nTalk:Empire/@comment-123.2.157.105-20150612015241\nTalk:Empire/@comment-123.2.157.105-20150612015241/@comment-123.2.157.105-20150612024545\nTalk:Empire/@comment-124.180.217.240-20150112133103\nTalk:Empire/@comment-124.180.217.240-20150112133103/@comment-88.131.105.133-20150114135631\nTalk:Empire/@comment-1364001-20150223184615\nTalk:Empire/@comment-1364001-20150223184615/@comment-1364001-20150225172754\nTalk:Empire/@comment-1364001-20150223184615/@comment-1364001-20150226123228\nTalk:Empire/@comment-145.97.141.142-20160114202442\nTalk:Empire/@comment-145.97.141.142-20160114202442/@comment-84.137.178.107-20160215194555\nTalk:Empire/@comment-145.97.141.142-20160114202442/@comment-95.91.228.177-20160117062042\nTalk:Empire/@comment-156.3.54.202-20150427151015\nTalk:Empire/@comment-156.3.54.202-20150427151015/@comment-173.64.201.135-20151004072200\nTalk:Empire/@comment-156.3.54.202-20150427151015/@comment-26814686-20150724143900\nTalk:Empire/@comment-156.3.54.202-20150427151015/@comment-80.14.134.74-20150824210041\nTalk:Empire/@comment-156.3.54.202-20150427151015/@comment-84.162.9.234-20150507000856\nTalk:Empire/@comment-160.3.141.17-20150927064448\nTalk:Empire/@comment-172.9.224.106-20150324003950\nTalk:Empire/@comment-174.102.96.147-20150126071546\nTalk:Empire/@comment-176.68.80.46-20150914231440\nTalk:Empire/@comment-176.68.80.46-20150914231440/@comment-173.64.201.135-20151004072103\nTalk:Empire/@comment-176.68.80.46-20150914231440/@comment-2.220.52.86-20160513132649\nTalk:Empire/@comment-176.68.80.46-20150914231440/@comment-26361572-20151102234535\nTalk:Empire/@comment-176.68.80.46-20150914231440/@comment-98.14.0.13-20150929021127\nTalk:Empire/@comment-176.78.158.9-20190505160233\nTalk:Empire/@comment-176.78.158.9-20190505161141\nTalk:Empire/@comment-189.27.54.58-20170601210804\nTalk:Empire/@comment-189.27.54.58-20170601210804/@comment-189.232.26.63-20180801025507\nTalk:Empire/@comment-189.27.54.58-20170601210804/@comment-90.200.46.38-20181126160830\nTalk:Empire/@comment-193.92.155.157-20150909153902\nTalk:Empire/@comment-198.189.200.184-20150210195528\nTalk:Empire/@comment-199.66.65.7-20160530112556\nTalk:Empire/@comment-25225570-20140813003647\nTalk:Empire/@comment-25225570-20140813003647/@comment-207.8.224.2-20150126155645\nTalk:Empire/@comment-25225570-20140813003647/@comment-88.131.105.133-20150114140240\nTalk:Empire/@comment-25225570-20140813003647/@comment-97.95.235.26-20141020033607\nTalk:Empire/@comment-25527713-20151108173635\nTalk:Empire/@comment-25527713-20151108173635/@comment-122.58.239.177-20161118225039\nTalk:Empire/@comment-25527713-20151108173635/@comment-165.120.137.201-20160811134633\nTalk:Empire/@comment-25527713-20151108173635/@comment-192.136.174.139-20160218180405\nTalk:Empire/@comment-2602:306:CE29:B0D0:7D6E:D1A2:1A68:171-20190911023246\nTalk:Empire/@comment-27019965-20150926083334\nTalk:Empire/@comment-27019965-20150926083334/@comment-174.53.82.233-20160222053436\nTalk:Empire/@comment-27019965-20150926083334/@comment-188.146.66.194-20170805234250\nTalk:Empire/@comment-27019965-20150926083334/@comment-192.136.175.219-20160222124015\nTalk:Empire/@comment-27019965-20150926083334/@comment-26361572-20151102232639\nTalk:Empire/@comment-27019965-20150926083334/@comment-76.71.51.6-20161117233907\nTalk:Empire/@comment-27019965-20150926083334/@comment-96.21.38.225-20160725190647\nTalk:Empire/@comment-27299616-20160112192258\nTalk:Empire/@comment-27299616-20160112192258/@comment-143.81.103.35-20160213033456\nTalk:Empire/@comment-27299616-20160112192258/@comment-47.202.6.173-20170414221328\nTalk:Empire/@comment-27299616-20160112192258/@comment-4986699-20160213175628\nTalk:Empire/@comment-29700899-20160822174207\nTalk:Empire/@comment-5892897-20141221083147\nTalk:Empire/@comment-5892897-20141221083147/@comment-12138097-20141222020132\nTalk:Empire/@comment-64.188.171.156-20160924020027\nTalk:Empire/@comment-65.88.123.136-20141209142603\nTalk:Empire/@comment-65.88.123.136-20141209142603/@comment-66.249.83.160-20141213112053\nTalk:Empire/@comment-65.88.123.136-20141209142603/@comment-66.249.83.228-20141213112111\nTalk:Empire/@comment-68.197.23.46-20190519034216\nTalk:Empire/@comment-68.197.23.46-20190519034216/@comment-2602:306:CE29:B0D0:7D6E:D1A2:1A68:171-20190911025534\nTalk:Empire/@comment-70.187.151.32-20150919201616\nTalk:Empire/@comment-70.187.151.32-20150919201616/@comment-2602:306:CE29:B0D0:13E:F6E0:66E4:7C57-20190911032814\nTalk:Empire/@comment-70.187.151.32-20150920164010\nTalk:Empire/@comment-70.187.151.32-20150920164010/@comment-173.64.201.135-20151004071928\nTalk:Empire/@comment-70.187.151.32-20150920164010/@comment-26361572-20151102233626\nTalk:Empire/@comment-70.187.151.32-20150920164010/@comment-96.41.152.154-20151004192044\nTalk:Empire/@comment-71.190.237.174-20170430212841\nTalk:Empire/@comment-71.215.49.24-20141222072750\nTalk:Empire/@comment-71.215.49.24-20141222072750/@comment-172.9.224.106-20150324004158\nTalk:Empire/@comment-72.23.86.21-20161129115640\nTalk:Empire/@comment-72.23.86.21-20161129115640/@comment-108.226.155.13-20190911032106\nTalk:Empire/@comment-72.23.86.21-20161129115640/@comment-189.232.26.63-20180801025701\nTalk:Empire/@comment-72.23.86.21-20161129115640/@comment-46.92.31.248-20170118220339\nTalk:Empire/@comment-76.3.68.2-20180309073022\nTalk:Empire/@comment-76.3.68.2-20180309073022/@comment-173.188.246.118-20180906145359\nTalk:Empire/@comment-77.98.28.117-20151112193949\nTalk:Empire/@comment-80.215.234.180-20160419202014\nTalk:Empire/@comment-85.138.251.218-20150331231616\nTalk:Empire/@comment-85.138.251.218-20150331231616/@comment-148.83.134.8-20150415120110\nTalk:Empire/@comment-85.138.251.218-20150331231616/@comment-50.64.56.7-20150404012044\nTalk:Empire/@comment-88.115.190.42-20150326103917\nTalk:Empire/@comment-89.114.86.0-20160529152653\nTalk:Empire/@comment-89.114.86.0-20160529152653/@comment-24.252.201.131-20161024073910\nTalk:Empire/@comment-89.114.86.0-20160529152653/@comment-89.114.86.0-20160602182428\nTalk:Empire/@comment-90.200.46.38-20181126161616\nTalk:Empire/@comment-90.200.46.38-20181126161616/@comment-2602:306:CE29:B0D0:7D6E:D1A2:1A68:171-20190911025911\nTalk:Empire/@comment-93.31.47.34-20150329003456\nTalk:Empire/@comment-93.31.47.34-20150329003456/@comment-173.64.201.135-20151004072742\nTalk:Empire/@comment-93.31.47.34-20150329003456/@comment-26814686-20150724143941\nTalk:Empire/@comment-93.31.47.34-20150329003456/@comment-71.233.88.91-20160524130529\nTalk:Empire/@comment-93.31.47.34-20150329003456/@comment-93.31.47.34-20150329004157\nTalk:Empire/@comment-97.90.117.71-20190709212819\nTalk:Empire/@comment-97.90.117.71-20190709212819/@comment-2602:306:CE29:B0D0:7D6E:D1A2:1A68:171-20190911022458\nTalk:Empire/@comment-97.90.117.71-20190709212819/@comment-2602:306:CE29:B0D0:7D6E:D1A2:1A68:171-20190911022740\nTalk:Empire/@comment-97.95.165.168-20150606044129\nTalk:Empire/@comment-97.95.165.168-20150606044129/@comment-97.95.165.168-20150606044219\nTalk:Empire/@comment-97.95.165.168-20150606044129/@comment-97.95.165.168-20150606072615\nTalk:Empire/@comment-97.95.165.168-20150606044129/@comment-97.95.165.168-20150606102108\nTalk:Empire/@comment-97.95.165.168-20150606044129/@comment-97.95.165.168-20150606104254\nTalk:Empire/@comment-98.165.15.207-20150805204109\nTalk:Empire/Ranks/@comment-101.162.139.79-20180129084611\nTalk:Empire/Ranks/@comment-104.169.180.147-20171211223327\nTalk:Empire/Ranks/@comment-107.11.33.236-20180507012457\nTalk:Empire/Ranks/@comment-107.141.65.99-20150610102631\nTalk:Empire/Ranks/@comment-108.39.65.224-20181024200819\nTalk:Empire/Ranks/@comment-108.39.65.224-20181024200819/@comment-100.0.23.143-20190812235455\nTalk:Empire/Ranks/@comment-108.39.65.224-20181024200819/@comment-108.39.65.224-20181025033303\nTalk:Empire/Ranks/@comment-108.39.65.224-20181024200819/@comment-108.39.65.224-20181025231556\nTalk:Empire/Ranks/@comment-108.39.65.224-20181024200819/@comment-123.243.169.42-20181025003241\nTalk:Empire/Ranks/@comment-108.39.65.224-20181024200819/@comment-189.32.28.226-20190125080527\nTalk:Empire/Ranks/@comment-108.48.25.84-20171028130000\nTalk:Empire/Ranks/@comment-108.48.25.84-20171028130000/@comment-81.100.226.60-20171103213123\nTalk:Empire/Ranks/@comment-108.89.113.34-20160913023734\nTalk:Empire/Ranks/@comment-108.89.113.34-20160913023734/@comment-73.157.212.145-20160915030234\nTalk:Empire/Ranks/@comment-109.152.123.198-20180513222007\nTalk:Empire/Ranks/@comment-109.196.55.196-20150113151054\nTalk:Empire/Ranks/@comment-109.196.55.196-20150113151054/@comment-74.14.52.93-20150118155740\nTalk:Empire/Ranks/@comment-115.166.38.155-20160227032243\nTalk:Empire/Ranks/@comment-116.88.77.12-20170114052625\nTalk:Empire/Ranks/@comment-116.88.77.12-20170114052625/@comment-176.26.93.243-20170213204442\nTalk:Empire/Ranks/@comment-116.88.77.12-20170114052625/@comment-88.98.207.25-20170312145051\nTalk:Empire/Ranks/@comment-118.209.230.104-20161017104450\nTalk:Empire/Ranks/@comment-120.156.87.126-20160730104016\nTalk:Empire/Ranks/@comment-123.116.101.224-20170415165424\nTalk:Empire/Ranks/@comment-123.116.101.224-20170415165424/@comment-24810544-20170420202137\nTalk:Empire/Ranks/@comment-124.171.26.202-20180309032321\nTalk:Empire/Ranks/@comment-124.171.26.202-20180309032321/@comment-124.171.26.202-20180309051426\nTalk:Empire/Ranks/@comment-125.16.90.6-20160617112458\nTalk:Empire/Ranks/@comment-125.16.90.6-20160617112458/@comment-218.250.142.119-20160628183315\nTalk:Empire/Ranks/@comment-130.105.160.72-20180510141805\nTalk:Empire/Ranks/@comment-130.105.160.72-20180510141805/@comment-213.73.159.186-20180511225937\nTalk:Empire/Ranks/@comment-130.105.160.72-20180510141805/@comment-79.210.76.149-20180512024406\nTalk:Empire/Ranks/@comment-131.111.56.79-20160105094407\nTalk:Empire/Ranks/@comment-131.111.56.79-20160105094407/@comment-27311754-20160105110259\nTalk:Empire/Ranks/@comment-141.0.12.139-20160810044025\nTalk:Empire/Ranks/@comment-141.226.244.56-20180616232941\nTalk:Empire/Ranks/@comment-141.226.244.56-20180616232941/@comment-83.245.233.50-20180630040727\nTalk:Empire/Ranks/@comment-146.168.150.147-20190131122103\nTalk:Empire/Ranks/@comment-146.168.150.147-20190131122103/@comment-192.136.170.98-20190131195327\nTalk:Empire/Ranks/@comment-146.90.57.106-20161027131135\nTalk:Empire/Ranks/@comment-151.225.142.24-20160114150343\nTalk:Empire/Ranks/@comment-151.225.142.24-20160114150343/@comment-101.173.158.102-20160119142248\nTalk:Empire/Ranks/@comment-151.225.142.24-20160114150343/@comment-124.148.131.206-20160322062220\nTalk:Empire/Ranks/@comment-151.225.142.24-20160114150343/@comment-27311754-20160115144254\nTalk:Empire/Ranks/@comment-151.225.142.24-20160114150343/@comment-27311754-20160119144604\nTalk:Empire/Ranks/@comment-151.225.142.24-20160114150343/@comment-94.112.71.190-20160115143131\nTalk:Empire/Ranks/@comment-151.228.74.213-20161027171112\nTalk:Empire/Ranks/@comment-151.228.74.213-20161102232241\nTalk:Empire/Ranks/@comment-151.228.74.213-20161102232241/@comment-203.7.75.205-20161104085601\nTalk:Empire/Ranks/@comment-151.230.152.197-20170316173643\nTalk:Empire/Ranks/@comment-151.230.152.197-20170316173643/@comment-195.214.190.204-20170316230644\nTalk:Empire/Ranks/@comment-151.230.152.197-20170316173643/@comment-46.30.167.89-20170318070926\nTalk:Empire/Ranks/@comment-151.230.152.197-20170316173643/@comment-85.76.144.108-20170404125449\nTalk:Empire/Ranks/@comment-151.36.111.212-20160820132927\nTalk:Empire/Ranks/@comment-164.165.186.9-20170919165747\nTalk:Empire/Ranks/@comment-164.165.186.9-20170919165747/@comment-88.114.83.140-20170923150926\nTalk:Empire/Ranks/@comment-173.238.202.119-20180313152954\nTalk:Empire/Ranks/@comment-173.73.238.70-20180403214539\nTalk:Empire/Ranks/@comment-173.73.238.70-20180403214539/@comment-220.245.39.93-20180408024411\nTalk:Empire/Ranks/@comment-173.73.238.70-20180403214553\nTalk:Empire/Ranks/@comment-174.50.85.190-20171023233020\nTalk:Empire/Ranks/@comment-176.33.212.61-20180921202350\nTalk:Empire/Ranks/@comment-176.33.212.61-20180921202350/@comment-2600:1700:BA31:3100:5E6:2C0F:4D1A:F4E-20180926034858\nTalk:Empire/Ranks/@comment-177.41.34.78-20160116150139\nTalk:Empire/Ranks/@comment-177.41.34.78-20160116150139/@comment-101.184.150.174-20160118100628\nTalk:Empire/Ranks/@comment-177.41.34.78-20160116150139/@comment-27311754-20160116152059\nTalk:Empire/Ranks/@comment-177.41.34.78-20160116150139/@comment-27311754-20160118110511\nTalk:Empire/Ranks/@comment-177.41.34.78-20160116150139/@comment-73.244.35.11-20160122185848\nTalk:Empire/Ranks/@comment-177.41.34.78-20160116150139/@comment-94.192.4.122-20160119014847\nTalk:Empire/Ranks/@comment-178.201.169.134-20180703154223\nTalk:Empire/Ranks/@comment-178.203.233.27-20160828101828\nTalk:Empire/Ranks/@comment-178.203.233.27-20160828101828/@comment-176.212.243.155-20160913171628\nTalk:Empire/Ranks/@comment-178.203.233.27-20160828101828/@comment-82.47.233.130-20160909204040\nTalk:Empire/Ranks/@comment-178.203.233.27-20160828125617\nTalk:Empire/Ranks/@comment-178.212.43.167-20170421074745\nTalk:Empire/Ranks/@comment-178.212.43.167-20170421074745/@comment-94.132.168.253-20170511212524\nTalk:Empire/Ranks/@comment-178.248.249.86-20150503112739\nTalk:Empire/Ranks/@comment-178.36.122.73-20151105012259\nTalk:Empire/Ranks/@comment-178.36.122.73-20151105012259/@comment-4986699-20151105095318\nTalk:Empire/Ranks/@comment-182.48.141.212-20161009183821\nTalk:Empire/Ranks/@comment-182.48.141.212-20161009183821/@comment-192.136.161.52-20170103121346\nTalk:Empire/Ranks/@comment-182.48.141.212-20161009183821/@comment-71.238.112.64-20170103011939\nTalk:Empire/Ranks/@comment-184.56.147.57-20200207093457\nTalk:Empire/Ranks/@comment-184.56.147.57-20200207093457/@comment-33829432-20200716031123\nTalk:Empire/Ranks/@comment-184.56.147.57-20200207093457/@comment-44180665-20200406111622\nTalk:Empire/Ranks/@comment-184.56.147.57-20200207093457/@comment-45102498-20200223052955\nTalk:Empire/Ranks/@comment-186.12.244.167-20190504205856\nTalk:Empire/Ranks/@comment-187.180.89.200-20190126105610\nTalk:Empire/Ranks/@comment-187.180.89.200-20190126105610/@comment-187.180.89.200-20190129222517\nTalk:Empire/Ranks/@comment-187.180.89.200-20190126105610/@comment-189.32.28.226-20190126135839\nTalk:Empire/Ranks/@comment-188.121.0.13-20150928141415\nTalk:Empire/Ranks/@comment-188.121.0.13-20150928141415/@comment-178.197.228.40-20151210115541\nTalk:Empire/Ranks/@comment-188.121.0.13-20150928141415/@comment-37.228.205.86-20151021203923\nTalk:Empire/Ranks/@comment-188.121.0.13-20150928141415/@comment-4986699-20150929122227\nTalk:Empire/Ranks/@comment-188.146.131.47-20170819123728\nTalk:Empire/Ranks/@comment-188.183.137.132-20160201214115\nTalk:Empire/Ranks/@comment-188.183.137.132-20160201214115/@comment-176.63.243.143-20160201214436\nTalk:Empire/Ranks/@comment-192.136.161.33-20180315160430\nTalk:Empire/Ranks/@comment-192.136.161.33-20180315160430/@comment-2600:6C5D:6300:801:C9BD:DC46:ED8A:865D-20180318064013\nTalk:Empire/Ranks/@comment-192.136.161.33-20180315160430/@comment-2A00:23C4:A16F:A600:CC4A:5710:2337:11E1-20180316120201\nTalk:Empire/Ranks/@comment-194.127.218.10-20160127151343\nTalk:Empire/Ranks/@comment-2.220.142.183-20161004141749\nTalk:Empire/Ranks/@comment-2.86.195.192-20150223094322\nTalk:Empire/Ranks/@comment-2001:1C05:2F05:2B00:8513:A153:7A76:14BE-20181223101624\nTalk:Empire/Ranks/@comment-2001:1C05:2F05:2B00:8513:A153:7A76:14BE-20181223101624/@comment-189.32.28.226-20190125075511\nTalk:Empire/Ranks/@comment-2001:1C05:2F05:2B00:8513:A153:7A76:14BE-20181223101624/@comment-213.108.162.158-20190104002114\nTalk:Empire/Ranks/@comment-2001:569:FC74:8000:E431:6099:88F1:D9BC-20190127210309\nTalk:Empire/Ranks/@comment-2001:569:FC74:8000:E431:6099:88F1:D9BC-20190127210309/@comment-109.95.146.4-20190127222621\nTalk:Empire/Ranks/@comment-2003:55:EE45:9ED9:A182:66C1:2B81:DFF4-20170916181102\nTalk:Empire/Ranks/@comment-203.217.38.58-20161018104942\nTalk:Empire/Ranks/@comment-208.68.255.73-20180411192926\nTalk:Empire/Ranks/@comment-208.68.255.73-20180411192926/@comment-132.147.124.117-20180419105359\nTalk:Empire/Ranks/@comment-208.68.255.73-20180411192926/@comment-2605:E000:160C:C4C5:942B:A858:3AC4:1F31-20180501075719\nTalk:Empire/Ranks/@comment-208.68.255.73-20180411192926/@comment-82.39.191.17-20180415124839\nTalk:Empire/Ranks/@comment-208.68.255.73-20180411194938\nTalk:Empire/Ranks/@comment-208.68.255.73-20180411194938/@comment-75.171.146.57-20180415222707\nTalk:Empire/Ranks/@comment-212.187.95.37-20150303222620\nTalk:Empire/Ranks/@comment-212.96.58.244-20170213211056\nTalk:Empire/Ranks/@comment-212.96.58.244-20170213211056/@comment-30928085-20170213213605\nTalk:Empire/Ranks/@comment-212.96.58.244-20170213211056/@comment-73.25.1.8-20170214070917\nTalk:Empire/Ranks/@comment-213.114.128.40-20150327211427\nTalk:Empire/Ranks/@comment-213.188.127.173-20160804205337\nTalk:Empire/Ranks/@comment-213.188.127.173-20160804205337/@comment-137.186.219.165-20160805001703\nTalk:Empire/Ranks/@comment-213.188.127.173-20160804205337/@comment-156.57.102.99-20160907001507\nTalk:Empire/Ranks/@comment-216.114.50.74-20150704193056\nTalk:Empire/Ranks/@comment-216.128.101.136-20170701211201\nTalk:Empire/Ranks/@comment-216.128.101.136-20170701211201/@comment-192.0.165.184-20171220151049\nTalk:Empire/Ranks/@comment-222.152.184.197-20150328051334\nTalk:Empire/Ranks/@comment-222.152.184.197-20150328051334/@comment-63.153.80.227-20150414003641\nTalk:Empire/Ranks/@comment-222.152.184.197-20150328051334/@comment-80.61.254.161-20150411120724\nTalk:Empire/Ranks/@comment-222.152.184.197-20150328051334/@comment-94.248.128.172-20150404212006\nTalk:Empire/Ranks/@comment-24.14.175.130-20161210074624\nTalk:Empire/Ranks/@comment-24.178.26.241-20150419033232\nTalk:Empire/Ranks/@comment-24.178.26.241-20150419033232/@comment-216.110.250.95-20150420015844\nTalk:Empire/Ranks/@comment-24.207.150.98-20181027223604\nTalk:Empire/Ranks/@comment-24.207.150.98-20181027223604/@comment-175.156.138.104-20181028045129\nTalk:Empire/Ranks/@comment-24.207.150.98-20181027223604/@comment-188.22.134.214-20181028210840\nTalk:Empire/Ranks/@comment-24.236.226.151-20181008000516\nTalk:Empire/Ranks/@comment-24.236.226.151-20181008000516/@comment-2A02:C7F:5A21:4100:251A:4F79:3685:B4FE-20181015211159\nTalk:Empire/Ranks/@comment-24.236.226.151-20181008000516/@comment-50.201.158.110-20181017151717\nTalk:Empire/Ranks/@comment-24.47.49.214-20180613035944\nTalk:Empire/Ranks/@comment-24.47.49.214-20180613035944/@comment-68.134.33.81-20180616230825\nTalk:Empire/Ranks/@comment-24.99.224.197-20150416003450\nTalk:Empire/Ranks/@comment-24.99.224.197-20150416003450/@comment-81.151.57.137-20150425220832\nTalk:Empire/Ranks/@comment-26003676-20150113181503\nTalk:Empire/Ranks/@comment-26003676-20150113181503/@comment-1250011-20150120150402\nTalk:Empire/Ranks/@comment-26003676-20150113181503/@comment-1250011-20150123004315\nTalk:Empire/Ranks/@comment-26003676-20150113181503/@comment-209.173.14.125-20150122164444\nTalk:Empire/Ranks/@comment-26003676-20150113181503/@comment-62.20.145.167-20150122224309\nTalk:Empire/Ranks/@comment-26003676-20150113181503/@comment-62.30.56.254-20150201213304\nTalk:Empire/Ranks/@comment-26003676-20150113181503/@comment-88.112.91.114-20150120005045\nTalk:Empire/Ranks/@comment-26003676-20150113181503/@comment-98.239.48.227-20150202223641\nTalk:Empire/Ranks/@comment-2600:387:1:809:0:0:0:77-20190629205759\nTalk:Empire/Ranks/@comment-2600:387:1:809:0:0:0:77-20190629205759/@comment-188.146.35.26-20190711084038\nTalk:Empire/Ranks/@comment-2600:387:1:809:0:0:0:77-20190629205759/@comment-2600:387:1:809:0:0:0:77-20190629220827\nTalk:Empire/Ranks/@comment-2600:387:1:809:0:0:0:77-20190629205759/@comment-2600:387:1:809:0:0:0:77-20190629222212\nTalk:Empire/Ranks/@comment-2600:387:1:809:0:0:0:77-20190629205759/@comment-2804:14C:DA86:8AB8:11FF:D20:2623:552B-20190704040419\nTalk:Empire/Ranks/@comment-2601:101:8200:F549:994D:2040:4CA6:2C3E-20180328042459\nTalk:Empire/Ranks/@comment-2601:1C0:4F00:F674:B558:FC1F:CFFD:30C0-20190205212147\nTalk:Empire/Ranks/@comment-2601:1C0:4F00:F674:B558:FC1F:CFFD:30C0-20190205212147/@comment-208.102.223.152-20190212153901\nTalk:Empire/Ranks/@comment-2601:1C0:4F00:F674:B558:FC1F:CFFD:30C0-20190205212147/@comment-5.102.48.42-20190218011408\nTalk:Empire/Ranks/@comment-2601:1C0:4F00:F674:B558:FC1F:CFFD:30C0-20190205212147/@comment-64.20.34.19-20190217074600\nTalk:Empire/Ranks/@comment-2601:1C0:4F00:F674:B558:FC1F:CFFD:30C0-20190205212147/@comment-66.27.182.155-20190224012306\nTalk:Empire/Ranks/@comment-2601:204:D87F:C170:C54:E2B:B1B:22F1-20180417091833\nTalk:Empire/Ranks/@comment-2601:204:D87F:C170:C54:E2B:B1B:22F1-20180417091833/@comment-2A02:C7F:920D:AD00:20DF:3680:8385:EC43-20180417180851\nTalk:Empire/Ranks/@comment-2601:248:8003:7FD:7418:4453:4159:B1E4-20180829143419\nTalk:Empire/Ranks/@comment-2601:248:8003:7FD:7418:4453:4159:B1E4-20180829143419/@comment-81.234.247.198-20180829222822\nTalk:Empire/Ranks/@comment-2601:282:4301:F9DF:3174:B56A:C020:5B5A-20180612040014\nTalk:Empire/Ranks/@comment-2607:F2C0:934A:1300:6013:844C:E735:AFCE-20180507030313\nTalk:Empire/Ranks/@comment-2607:FB90:FEB:2428:85B6:9ECF:C5D8:D0F4-20180222231843\nTalk:Empire/Ranks/@comment-2607:FB90:FEB:2428:85B6:9ECF:C5D8:D0F4-20180222231843/@comment-2607:FB90:7826:E0E6:D620:2BC4:3926:3C17-20180223005257\nTalk:Empire/Ranks/@comment-26092211-20150209121855\nTalk:Empire/Ranks/@comment-26092211-20150209121855/@comment-166.216.165.76-20150210171742\nTalk:Empire/Ranks/@comment-26092211-20150209121855/@comment-26092211-20150210173541\nTalk:Empire/Ranks/@comment-26092211-20150209121855/@comment-26092211-20150218075021\nTalk:Empire/Ranks/@comment-26092211-20150209121855/@comment-71.228.124.253-20150213160018\nTalk:Empire/Ranks/@comment-26092211-20150209121855/@comment-88.164.101.35-20150214150632\nTalk:Empire/Ranks/@comment-26092211-20150209121855/@comment-98.239.48.227-20150218012544\nTalk:Empire/Ranks/@comment-26131393-20151017181342\nTalk:Empire/Ranks/@comment-26131393-20151017181342/@comment-75.108.47.186-20151017210934\nTalk:Empire/Ranks/@comment-2620:22:4000:E30:1E7F:59B1:4396:E475-20180420071052\nTalk:Empire/Ranks/@comment-2620:22:4000:E30:1E7F:59B1:4396:E475-20180420071052/@comment-175.32.91.66-20180505180050\nTalk:Empire/Ranks/@comment-2620:22:4000:E30:1E7F:59B1:4396:E475-20180420071052/@comment-2600:8807:A6C8:E000:F5D1:BEA8:9905:4261-20180427221815\nTalk:Empire/Ranks/@comment-2620:22:4000:E30:1E7F:59B1:4396:E475-20180420071052/@comment-35370061-20180421210549\nTalk:Empire/Ranks/@comment-26599825-20151114173036\nTalk:Empire/Ranks/@comment-26599825-20151114173036/@comment-26599825-20151115102836\nTalk:Empire/Ranks/@comment-26599825-20151114173036/@comment-88.115.190.42-20151115102054\nTalk:Empire/Ranks/@comment-26599825-20151114173036/@comment-88.115.190.42-20151115102508\nTalk:Empire/Ranks/@comment-26599825-20151114173036/@comment-89.176.13.114-20151223152403\nTalk:Empire/Ranks/@comment-2804:431:972D:F736:6DF5:58F9:530E:3C56-20190711232839\nTalk:Empire/Ranks/@comment-2804:431:972D:F736:6DF5:58F9:530E:3C56-20190711232839/@comment-100.0.23.143-20190812233951\nTalk:Empire/Ranks/@comment-2804:431:972D:F736:6DF5:58F9:530E:3C56-20190711232839/@comment-71.198.109.46-20191013083342\nTalk:Empire/Ranks/@comment-2804:431:972D:F736:6DF5:58F9:530E:3C56-20190711232839/@comment-92.184.117.53-20190919114503\nTalk:Empire/Ranks/@comment-28507382-20181223000146\nTalk:Empire/Ranks/@comment-2A00:23C4:430B:DD00:5DE2:9236:9BC2:619C-20180318172040\nTalk:Empire/Ranks/@comment-2A00:23C4:430B:DD00:5DE2:9236:9BC2:619C-20180318172040/@comment-188.141.87.102-20180318175156\nTalk:Empire/Ranks/@comment-2A00:23C4:A16F:A600:B153:8093:F541:BFCF-20180318144927\nTalk:Empire/Ranks/@comment-2A00:23C4:A16F:A600:B153:8093:F541:BFCF-20180318144927/@comment-188.141.87.102-20180318160205\nTalk:Empire/Ranks/@comment-2A00:23C4:A16F:A600:B153:8093:F541:BFCF-20180318144927/@comment-71.178.184.122-20180318164839\nTalk:Empire/Ranks/@comment-2A00:23C4:A16F:A600:B153:8093:F541:BFCF-20180318144927/@comment-77.101.11.60-20180528152612\nTalk:Empire/Ranks/@comment-2A00:23C5:8E09:C200:D9AD:5E5D:CF0D:D17F-20180327212143\nTalk:Empire/Ranks/@comment-2A00:23C5:8E09:C200:D9AD:5E5D:CF0D:D17F-20180327212143/@comment-2A00:23C5:8E09:C200:D9AD:5E5D:CF0D:D17F-20180327212226\nTalk:Empire/Ranks/@comment-2A02:A03F:48BD:6F00:D1E0:A578:3691:40D9-20181021084501\nTalk:Empire/Ranks/@comment-2A02:C7D:A26:EC00:3546:D237:DBF6:8F3E-20181104153025\nTalk:Empire/Ranks/@comment-2A02:C7F:A870:D600:B5B6:6430:A458:F420-20180608130918\nTalk:Empire/Ranks/@comment-2A02:C7F:DA00:6500:8C64:138D:B489:ABC9-20190121200317\nTalk:Empire/Ranks/@comment-2A02:C7F:DA00:6500:8C64:138D:B489:ABC9-20190121200317/@comment-189.32.28.226-20190125075128\nTalk:Empire/Ranks/@comment-2A02:C7F:DA00:6500:8C64:138D:B489:ABC9-20190121200317/@comment-189.32.28.226-20190125192630\nTalk:Empire/Ranks/@comment-30189351-20161010061610\nTalk:Empire/Ranks/@comment-30189351-20161010061610/@comment-120.155.205.10-20161011033631\nTalk:Empire/Ranks/@comment-31.10.139.155-20160930041829\nTalk:Empire/Ranks/@comment-31.10.139.155-20160930041829/@comment-27211303-20161005033146\nTalk:Empire/Ranks/@comment-31.54.226.158-20180319210923\nTalk:Empire/Ranks/@comment-31570356-20200912012808\nTalk:Empire/Ranks/@comment-32398160-20180317174435\nTalk:Empire/Ranks/@comment-32398160-20180317174435/@comment-62.235.110.237-20180317202027\nTalk:Empire/Ranks/@comment-32398160-20180317174435/@comment-71.178.184.122-20180318165004\nTalk:Empire/Ranks/@comment-32497773-20190205183219\nTalk:Empire/Ranks/@comment-32497773-20190205183219/@comment-50.81.239.15-20190206230210\nTalk:Empire/Ranks/@comment-34375658-20180117161315\nTalk:Empire/Ranks/@comment-34375658-20180117161315/@comment-71.53.194.237-20180118010952\nTalk:Empire/Ranks/@comment-34375658-20180117161315/@comment-94.21.9.58-20180121175033\nTalk:Empire/Ranks/@comment-34673458-20180212124950\nTalk:Empire/Ranks/@comment-34673458-20180212124950/@comment-192.136.161.33-20180212140634\nTalk:Empire/Ranks/@comment-34673458-20180212124950/@comment-85.145.237.18-20180302222106\nTalk:Empire/Ranks/@comment-34673458-20180212124950/@comment-86.13.224.175-20180214170247\nTalk:Empire/Ranks/@comment-35108203-20180325220137\nTalk:Empire/Ranks/@comment-35108203-20180325220137/@comment-168.102.11.116-20180327165442\nTalk:Empire/Ranks/@comment-35108203-20180325220137/@comment-175.33.30.197-20180508110535\nTalk:Empire/Ranks/@comment-35108203-20180325220137/@comment-2601:204:C001:36AD:7904:6603:7A3B:61E2-20180330024331\nTalk:Empire/Ranks/@comment-35108203-20180325220137/@comment-35108203-20180326012029\nTalk:Empire/Ranks/@comment-35108203-20180325220137/@comment-35108203-20180327213523\nTalk:Empire/Ranks/@comment-35108203-20180325220137/@comment-69.174.130.230-20180325222017\nTalk:Empire/Ranks/@comment-35108203-20180325220137/@comment-69.174.130.230-20180325222225\nTalk:Empire/Ranks/@comment-35585725-20180514164846\nTalk:Empire/Ranks/@comment-36817676-20180904040254\nTalk:Empire/Ranks/@comment-37.191.39.208-20171028004751\nTalk:Empire/Ranks/@comment-37.191.39.208-20171028004834\nTalk:Empire/Ranks/@comment-37.204.235.33-20190424193930\nTalk:Empire/Ranks/@comment-37.204.235.33-20190424193930/@comment-203.94.61.250-20190503110037\nTalk:Empire/Ranks/@comment-37286895-20181027042006\nTalk:Empire/Ranks/@comment-37286895-20181027042006/@comment-189.32.28.226-20190125080047\nTalk:Empire/Ranks/@comment-37286895-20181027042006/@comment-192.136.170.46-20181027173902\nTalk:Empire/Ranks/@comment-38427979-20190205102751\nTalk:Empire/Ranks/@comment-39662807-20190601132127\nTalk:Empire/Ranks/@comment-39662807-20190601132127/@comment-2601:680:8100:560:104B:5EEF:BA69:60E-20190619193905\nTalk:Empire/Ranks/@comment-39662807-20190601132127/@comment-4213386-20190813102700\nTalk:Empire/Ranks/@comment-39682935-20190619161604\nTalk:Empire/Ranks/@comment-39682935-20190619161604/@comment-2601:680:8100:560:104B:5EEF:BA69:60E-20190619193822\nTalk:Empire/Ranks/@comment-39682935-20190619161604/@comment-72.211.111.56-20190806225918\nTalk:Empire/Ranks/@comment-42.112.84.79-20161123205458\nTalk:Empire/Ranks/@comment-42.112.84.79-20161123205458/@comment-87.13.14.194-20161126100133\nTalk:Empire/Ranks/@comment-42.112.87.240-20161006180223\nTalk:Empire/Ranks/@comment-42.112.87.240-20161006180223/@comment-174.50.173.131-20161013052608\nTalk:Empire/Ranks/@comment-42.112.87.240-20161006180223/@comment-27211303-20161006214527\nTalk:Empire/Ranks/@comment-42.112.87.240-20161006180223/@comment-42.112.87.240-20161007042155\nTalk:Empire/Ranks/@comment-44180665-20200406111843\nTalk:Empire/Ranks/@comment-44878262-20200117141922\nTalk:Empire/Ranks/@comment-44878262-20200117141922/@comment-198.84.214.102-20200122060122\nTalk:Empire/Ranks/@comment-44878262-20200117141922/@comment-2600:6C56:7F08:19F4:95A2:DF43:AB48:EFB5-20200205022055\nTalk:Empire/Ranks/@comment-47.198.70.201-20180224031746\nTalk:Empire/Ranks/@comment-47.198.70.201-20180224031746/@comment-144.172.158.150-20180225011727\nTalk:Empire/Ranks/@comment-47.198.70.201-20180224031746/@comment-192.136.161.33-20180308041353\nTalk:Empire/Ranks/@comment-47.198.70.201-20180224031746/@comment-208.44.170.83-20180226170426\nTalk:Empire/Ranks/@comment-47.198.70.201-20180224031746/@comment-2600:8807:2080:3000:CDA5:C657:A1FE:7800-20180310201306\nTalk:Empire/Ranks/@comment-47.198.70.201-20180224031746/@comment-79.107.153.53-20180308223211\nTalk:Empire/Ranks/@comment-47.198.70.201-20180224031746/@comment-96.42.65.241-20180303231109\nTalk:Empire/Ranks/@comment-47.198.70.201-20180224031746/@comment-98.200.5.105-20180228025410\nTalk:Empire/Ranks/@comment-47.34.33.122-20170502222730\nTalk:Empire/Ranks/@comment-5.12.12.235-20171111082845\nTalk:Empire/Ranks/@comment-5.12.12.235-20171111082845/@comment-114.134.181.134-20171119004816\nTalk:Empire/Ranks/@comment-5.12.12.235-20171111082845/@comment-189.218.108.143-20171214181348\nTalk:Empire/Ranks/@comment-5.12.12.235-20171111082845/@comment-2602:306:32D4:F060:28F4:709E:27D8:A32F-20171211225807\nTalk:Empire/Ranks/@comment-5.12.12.235-20171111082845/@comment-2A02:8108:473F:DA18:383E:7200:26C2:C26F-20180114184001\nTalk:Empire/Ranks/@comment-5.12.12.235-20171111091015\nTalk:Empire/Ranks/@comment-5.12.12.235-20171111091015/@comment-166.137.136.128-20171120195205\nTalk:Empire/Ranks/@comment-5.12.12.235-20171111091015/@comment-185.48.79.238-20171225161726\nTalk:Empire/Ranks/@comment-5.12.12.235-20171111091015/@comment-188.67.144.117-20171211224009\nTalk:Empire/Ranks/@comment-5.12.12.235-20171111091015/@comment-192.136.161.33-20171114211815\nTalk:Empire/Ranks/@comment-5.12.12.235-20171111091015/@comment-2001:4C50:61F:BA00:A4F2:CDDA:7DF:7B5-20171113200650\nTalk:Empire/Ranks/@comment-5.12.12.235-20171111091015/@comment-2601:246:8000:97E5:6C13:FFB6:D20E:3F3F-20171228052513\nTalk:Empire/Ranks/@comment-5.12.12.235-20171111091015/@comment-2602:306:32D4:F060:A161:9BCC:C5DC:2F99-20171215171406\nTalk:Empire/Ranks/@comment-5.12.12.235-20171111091015/@comment-2607:FEA8:C2DF:F776:884E:A833:F512:DDBF-20171125034221\nTalk:Empire/Ranks/@comment-5.12.12.235-20171111091015/@comment-2A02:C7F:2C0D:E500:F446:74AC:8B47:AE55-20171230112633\nTalk:Empire/Ranks/@comment-5.12.12.235-20171111091015/@comment-46.230.132.210-20171114174322\nTalk:Empire/Ranks/@comment-5.12.12.235-20171111091015/@comment-75.82.63.229-20171231002820\nTalk:Empire/Ranks/@comment-5.12.12.235-20171111091015/@comment-77.46.0.40-20171205235033\nTalk:Empire/Ranks/@comment-5.12.12.235-20171111091015/@comment-78.107.252.238-20171129185235\nTalk:Empire/Ranks/@comment-5.12.12.235-20171111091015/@comment-79.66.128.43-20171204192637\nTalk:Empire/Ranks/@comment-5.12.12.235-20171111091015/@comment-8162731-20171127142344\nTalk:Empire/Ranks/@comment-5.12.12.235-20171111091015/@comment-86.162.142.205-20171118164409\nTalk:Empire/Ranks/@comment-5.12.12.235-20171111091015/@comment-86.167.120.97-20171227141930\nTalk:Empire/Ranks/@comment-5.12.12.235-20171111091015/@comment-86.56.88.45-20171207074646\nTalk:Empire/Ranks/@comment-5.12.12.235-20171111091015/@comment-90.63.230.149-20171114113711\nTalk:Empire/Ranks/@comment-5.12.12.235-20171111091015/@comment-94.21.10.45-20171124112232\nTalk:Empire/Ranks/@comment-5.12.12.235-20171111091015/@comment-95.88.149.114-20171117185356\nTalk:Empire/Ranks/@comment-5.186.50.167-20170130235811\nTalk:Empire/Ranks/@comment-5.198.25.237-20180212151306\nTalk:Empire/Ranks/@comment-5.70.145.95-20180131225941\nTalk:Empire/Ranks/@comment-5.70.145.95-20180131225941/@comment-192.136.161.33-20180201041416\nTalk:Empire/Ranks/@comment-5.70.145.95-20180131225941/@comment-5.70.145.95-20180205093955\nTalk:Empire/Ranks/@comment-5.70.145.95-20180131225941/@comment-85.233.241.243-20180202004601\nTalk:Empire/Ranks/@comment-50.101.183.164-20161211182956\nTalk:Empire/Ranks/@comment-50.101.183.164-20161211182956/@comment-69.73.60.87-20161230070739\nTalk:Empire/Ranks/@comment-50.133.190.239-20170114161918\nTalk:Empire/Ranks/@comment-50.133.190.239-20170114161918/@comment-116.88.77.12-20170115103255\nTalk:Empire/Ranks/@comment-50.80.89.103-20151011110636\nTalk:Empire/Ranks/@comment-50.80.89.103-20151011110636/@comment-128.39.146.141-20151117185434\nTalk:Empire/Ranks/@comment-50.80.89.103-20151011110636/@comment-178.143.140.152-20151023182005\nTalk:Empire/Ranks/@comment-50.80.89.103-20151011110636/@comment-50.80.89.103-20151011111005\nTalk:Empire/Ranks/@comment-54.175.68.151-20160411000125\nTalk:Empire/Ranks/@comment-5471809-20170712171933\nTalk:Empire/Ranks/@comment-5471809-20170712171933/@comment-174.47.231.44-20170723085836\nTalk:Empire/Ranks/@comment-5471809-20170712171933/@comment-2155082-20170712194400\nTalk:Empire/Ranks/@comment-5471809-20170712171933/@comment-5471809-20170716004743\nTalk:Empire/Ranks/@comment-58.104.74.82-20160707083138\nTalk:Empire/Ranks/@comment-58.104.74.82-20160707083138/@comment-27032150-20160707111306\nTalk:Empire/Ranks/@comment-58.104.74.82-20160707083138/@comment-58.104.74.158-20160708083256\nTalk:Empire/Ranks/@comment-64.32.72.112-20160219171136\nTalk:Empire/Ranks/@comment-66.229.94.11-20150607101028\nTalk:Empire/Ranks/@comment-66.229.94.11-20150607101028/@comment-146.23.65.196-20150830205608\nTalk:Empire/Ranks/@comment-66.229.94.11-20150607101028/@comment-193.191.248.132-20150624070126\nTalk:Empire/Ranks/@comment-66.229.94.11-20150607101028/@comment-78.3.4.129-20150812145658\nTalk:Empire/Ranks/@comment-66.27.182.155-20190224013814\nTalk:Empire/Ranks/@comment-66.27.182.155-20190224013814/@comment-66.27.182.155-20190224015119\nTalk:Empire/Ranks/@comment-66.27.182.155-20190224013814/@comment-86.8.229.127-20190509212008\nTalk:Empire/Ranks/@comment-66.30.147.96-20170723023015\nTalk:Empire/Ranks/@comment-66.30.147.96-20170723023015/@comment-12.108.57.38-20170724042604\nTalk:Empire/Ranks/@comment-66.30.147.96-20170723023015/@comment-2003:6A:6A07:B11:F536:99CD:3125:F568-20170724134203\nTalk:Empire/Ranks/@comment-66.30.147.96-20170723023015/@comment-85.76.12.250-20170724224501\nTalk:Empire/Ranks/@comment-66.69.14.10-20151018050151\nTalk:Empire/Ranks/@comment-66.69.14.10-20151018050151/@comment-4986699-20151018111116\nTalk:Empire/Ranks/@comment-67.161.128.133-20151114002317\nTalk:Empire/Ranks/@comment-67.161.128.133-20151114002317/@comment-108.242.216.67-20151211032556\nTalk:Empire/Ranks/@comment-67.161.128.133-20151114002317/@comment-26951902-20151117161541\nTalk:Empire/Ranks/@comment-67.161.128.133-20151114002317/@comment-26951902-20151117210703\nTalk:Empire/Ranks/@comment-67.161.128.133-20151114002317/@comment-26951902-20151121215648\nTalk:Empire/Ranks/@comment-67.161.128.133-20151114002317/@comment-66.37.93.36-20160117041341\nTalk:Empire/Ranks/@comment-67.161.128.133-20151114002317/@comment-67.161.128.133-20151121194254\nTalk:Empire/Ranks/@comment-67.161.128.133-20151114002317/@comment-78.48.227.231-20151116223809\nTalk:Empire/Ranks/@comment-67.164.195.44-20160312111129\nTalk:Empire/Ranks/@comment-67.21.153.142-20170421130545\nTalk:Empire/Ranks/@comment-67.21.153.142-20170421130545/@comment-109.202.224.101-20170503221525\nTalk:Empire/Ranks/@comment-67.21.153.142-20170421130545/@comment-109.93.178.218-20170507062628\nTalk:Empire/Ranks/@comment-67.21.153.142-20170421130545/@comment-135.0.88.207-20170422161748\nTalk:Empire/Ranks/@comment-67.21.153.142-20170421130545/@comment-135.0.88.207-20170422164552\nTalk:Empire/Ranks/@comment-67.21.153.142-20170421130545/@comment-135.0.88.207-20170423155956\nTalk:Empire/Ranks/@comment-67.21.153.142-20170421130545/@comment-24.127.206.107-20170506030344\nTalk:Empire/Ranks/@comment-67.21.153.142-20170421130545/@comment-31.182.204.165-20170423193135\nTalk:Empire/Ranks/@comment-67.21.153.142-20170421130545/@comment-31.182.204.165-20170424162136\nTalk:Empire/Ranks/@comment-67.21.153.142-20170421130545/@comment-5.36.137.151-20170426064827\nTalk:Empire/Ranks/@comment-67.21.153.142-20170421130545/@comment-67.21.153.142-20170421163305\nTalk:Empire/Ranks/@comment-67.21.153.142-20170421130545/@comment-67.21.153.142-20170421163356\nTalk:Empire/Ranks/@comment-67.21.153.142-20170421130545/@comment-67.21.153.142-20170424125059\nTalk:Empire/Ranks/@comment-67.21.153.142-20170421130545/@comment-67.21.153.142-20170424163040\nTalk:Empire/Ranks/@comment-67.21.153.142-20170421130545/@comment-88.175.110.191-20170707160233\nTalk:Empire/Ranks/@comment-67.21.153.142-20170421130545/@comment-95.93.194.234-20170421162631\nTalk:Empire/Ranks/@comment-67.21.153.142-20170421130545/@comment-95.93.194.234-20170422151107\nTalk:Empire/Ranks/@comment-67.21.153.142-20170421130545/@comment-95.93.194.234-20170422211751\nTalk:Empire/Ranks/@comment-67.21.153.142-20170421130545/@comment-95.93.194.234-20170423164529\nTalk:Empire/Ranks/@comment-67.21.153.142-20170529162649\nTalk:Empire/Ranks/@comment-67.21.153.142-20170529162649/@comment-202.141.255.90-20170712061545\nTalk:Empire/Ranks/@comment-67.21.153.142-20170529162649/@comment-219.74.237.179-20170621110919\nTalk:Empire/Ranks/@comment-67.21.153.142-20170529162649/@comment-99.254.92.60-20170606155348\nTalk:Empire/Ranks/@comment-67.213.243.82-20181118012158\nTalk:Empire/Ranks/@comment-67.213.243.82-20181118012158/@comment-67.213.243.82-20181118012318\nTalk:Empire/Ranks/@comment-67.213.243.82-20181118012158/@comment-67.213.243.82-20181118034007\nTalk:Empire/Ranks/@comment-67.213.243.82-20181118012158/@comment-79.255.16.180-20181128153738\nTalk:Empire/Ranks/@comment-67.79.162.162-20191029164757\nTalk:Empire/Ranks/@comment-67.79.162.162-20191029164757/@comment-2A00:6020:15F6:C900:863:CE6D:3FEA:C7B8-20191204174857\nTalk:Empire/Ranks/@comment-67.79.162.162-20191029164757/@comment-58.182.72.203-20191130080301\nTalk:Empire/Ranks/@comment-68.184.35.79-20181115005413\nTalk:Empire/Ranks/@comment-68.2.237.21-20170412153102\nTalk:Empire/Ranks/@comment-68.2.237.21-20170412153102/@comment-71.91.123.27-20170812234301\nTalk:Empire/Ranks/@comment-68.36.18.160-20160913174130\nTalk:Empire/Ranks/@comment-68.36.18.160-20160913174130/@comment-14.201.5.104-20160920084139\nTalk:Empire/Ranks/@comment-68.36.18.160-20160913174130/@comment-14.201.5.104-20160920084607\nTalk:Empire/Ranks/@comment-68.36.18.160-20160913174130/@comment-73.157.212.145-20160915030016\nTalk:Empire/Ranks/@comment-68.96.93.199-20150508080916\nTalk:Empire/Ranks/@comment-68.96.93.199-20150508080916/@comment-156.3.54.203-20150601152225\nTalk:Empire/Ranks/@comment-68.96.93.199-20150508080916/@comment-98.210.154.81-20160627070113\nTalk:Empire/Ranks/@comment-69.62.158.99-20171031061436\nTalk:Empire/Ranks/@comment-69.62.158.99-20171031061436/@comment-81.100.226.60-20171105205157\nTalk:Empire/Ranks/@comment-69.62.158.99-20171031061436/@comment-85.24.203.98-20171111112431\nTalk:Empire/Ranks/@comment-70.24.59.239-20161006015125\nTalk:Empire/Ranks/@comment-70.24.59.239-20161006015125/@comment-2155082-20161006035359\nTalk:Empire/Ranks/@comment-70.24.59.239-20161006015125/@comment-75.148.124.251-20161007162613\nTalk:Empire/Ranks/@comment-70.74.249.36-20150303133656\nTalk:Empire/Ranks/@comment-70.74.249.36-20150303133656/@comment-107.220.197.31-20150321185131\nTalk:Empire/Ranks/@comment-70.74.249.36-20150303133656/@comment-26009169-20150303190756\nTalk:Empire/Ranks/@comment-70.74.249.36-20150303133656/@comment-76.124.162.53-20150304055420\nTalk:Empire/Ranks/@comment-70.74.249.36-20150303133656/@comment-86.21.212.113-20150321224356\nTalk:Empire/Ranks/@comment-71.30.147.96-20191218192804\nTalk:Empire/Ranks/@comment-71.30.147.96-20191218192804/@comment-213.37.123.137-20200104165327\nTalk:Empire/Ranks/@comment-71.30.147.96-20191218192804/@comment-2607:FEA8:4A0:26A8:1DB8:7B7C:BA70:7AC9-20191222031451\nTalk:Empire/Ranks/@comment-71.30.147.96-20191218192804/@comment-2A02:C7D:D664:3400:F9FC:3C74:959:C798-20191219215843\nTalk:Empire/Ranks/@comment-73.170.212.56-20180429194235\nTalk:Empire/Ranks/@comment-73.170.212.56-20180429194235/@comment-122.57.95.175-20180430033522\nTalk:Empire/Ranks/@comment-73.170.212.56-20180429194235/@comment-122.57.95.175-20180430050650\nTalk:Empire/Ranks/@comment-73.170.212.56-20180429194235/@comment-172.250.198.79-20180501072728\nTalk:Empire/Ranks/@comment-73.170.212.56-20180429194235/@comment-2605:E000:160C:C4C5:942B:A858:3AC4:1F31-20180501033636\nTalk:Empire/Ranks/@comment-73.170.212.56-20180429194235/@comment-47.17.6.236-20180430153502\nTalk:Empire/Ranks/@comment-73.170.212.56-20180429194235/@comment-82.13.223.67-20180507180700\nTalk:Empire/Ranks/@comment-73.203.32.186-20170203054232\nTalk:Empire/Ranks/@comment-73.203.32.186-20170203054232/@comment-174.95.30.214-20170213171932\nTalk:Empire/Ranks/@comment-73.203.32.186-20170203054232/@comment-70.77.56.28-20170215030400\nTalk:Empire/Ranks/@comment-73.203.32.186-20170203054232/@comment-85.115.54.202-20170209093627\nTalk:Empire/Ranks/@comment-74.132.62.124-20161108055802\nTalk:Empire/Ranks/@comment-74.132.62.124-20161108055802/@comment-68.203.23.238-20161110155223\nTalk:Empire/Ranks/@comment-74.132.62.124-20161108055802/@comment-94.193.35.156-20161125114900\nTalk:Empire/Ranks/@comment-74.193.215.151-20161103181016\nTalk:Empire/Ranks/@comment-74.193.215.151-20161103181016/@comment-192.136.161.52-20161103194902\nTalk:Empire/Ranks/@comment-74.193.215.151-20161103181016/@comment-217.44.97.78-20170128195509\nTalk:Empire/Ranks/@comment-74.193.215.151-20161103181016/@comment-68.203.23.238-20161110155419\nTalk:Empire/Ranks/@comment-74.193.215.151-20161103181016/@comment-73.229.135.121-20170126022016\nTalk:Empire/Ranks/@comment-74.215.211.11-20180313020830\nTalk:Empire/Ranks/@comment-74.215.211.11-20180313020830/@comment-173.170.95.9-20180314040128\nTalk:Empire/Ranks/@comment-74.215.211.11-20180313020830/@comment-74.215.211.11-20180313030542\nTalk:Empire/Ranks/@comment-74.215.211.11-20180313020830/@comment-98.175.48.62-20180314003756\nTalk:Empire/Ranks/@comment-75.128.108.53-20180817011002\nTalk:Empire/Ranks/@comment-75.128.108.53-20180817011002/@comment-2601:680:C780:1D27:5503:5E1B:6AB5:DCD7-20180818041247\nTalk:Empire/Ranks/@comment-75.134.242.113-20160809152515\nTalk:Empire/Ranks/@comment-76.124.162.53-20150303071117\nTalk:Empire/Ranks/@comment-76.124.162.53-20150303071117/@comment-24.51.209.179-20150308172449\nTalk:Empire/Ranks/@comment-76.124.162.53-20150303071117/@comment-26599825-20150809120804\nTalk:Empire/Ranks/@comment-76.124.162.53-20150303071117/@comment-86.11.99.35-20150808160921\nTalk:Empire/Ranks/@comment-77.37.166.144-20160214184553\nTalk:Empire/Ranks/@comment-77.37.166.144-20160214184553/@comment-124.148.131.206-20160322061619\nTalk:Empire/Ranks/@comment-77.37.166.144-20160214184553/@comment-92.2.189.235-20160215224747\nTalk:Empire/Ranks/@comment-78.102.136.190-20171024112930\nTalk:Empire/Ranks/@comment-79.252.92.210-20180705214533\nTalk:Empire/Ranks/@comment-79.252.92.210-20180705214533/@comment-212.139.65.10-20180706191948\nTalk:Empire/Ranks/@comment-79.67.18.241-20160826002522\nTalk:Empire/Ranks/@comment-79.67.18.241-20160826002522/@comment-14.201.5.104-20160901094115\nTalk:Empire/Ranks/@comment-79.67.18.241-20160826002522/@comment-2155082-20160826040307\nTalk:Empire/Ranks/@comment-80.60.35.115-20150425145011\nTalk:Empire/Ranks/@comment-80.60.35.115-20150425145011/@comment-89.176.13.114-20151220065829\nTalk:Empire/Ranks/@comment-81.131.199.67-20170321204308\nTalk:Empire/Ranks/@comment-81.131.199.67-20170321204308/@comment-213.254.131.239-20170329152449\nTalk:Empire/Ranks/@comment-81.131.199.67-20170321204308/@comment-4900524-20170403142159\nTalk:Empire/Ranks/@comment-81.131.199.67-20170321204308/@comment-66.241.163.128-20170405091355\nTalk:Empire/Ranks/@comment-81.136.144.118-20181020175821\nTalk:Empire/Ranks/@comment-81.136.144.118-20181020175821/@comment-189.32.28.226-20190125080819\nTalk:Empire/Ranks/@comment-81.154.183.209-20170221224643\nTalk:Empire/Ranks/@comment-81.154.183.209-20170221224643/@comment-110.77.227.136-20170228174851\nTalk:Empire/Ranks/@comment-81.154.183.209-20170221224643/@comment-178.37.14.25-20170227152359\nTalk:Empire/Ranks/@comment-81.154.183.209-20170221224643/@comment-178.37.21.16-20170226193601\nTalk:Empire/Ranks/@comment-81.154.183.209-20170221224643/@comment-50.82.119.223-20170302082522\nTalk:Empire/Ranks/@comment-81.154.183.209-20170221224643/@comment-73.136.229.252-20170227041828\nTalk:Empire/Ranks/@comment-81.154.183.209-20170221224643/@comment-76.71.51.6-20170226020252\nTalk:Empire/Ranks/@comment-81.154.183.209-20170221224643/@comment-82.24.250.176-20170228001222\nTalk:Empire/Ranks/@comment-81.154.183.209-20170221224643/@comment-88.7.79.210-20170317111732\nTalk:Empire/Ranks/@comment-81.154.183.209-20170221224643/@comment-90.155.79.249-20170302221923\nTalk:Empire/Ranks/@comment-81.159.245.74-20190510013626\nTalk:Empire/Ranks/@comment-81.159.245.74-20190510013626/@comment-2607:FEA8:4A0:200:105F:ADDC:4696:E395-20190516205329\nTalk:Empire/Ranks/@comment-81.159.245.74-20190510013626/@comment-69.166.69.101-20190618162715\nTalk:Empire/Ranks/@comment-81.197.102.181-20190119205152\nTalk:Empire/Ranks/@comment-81.20.189.90-20160821131815\nTalk:Empire/Ranks/@comment-81.231.146.227-20141226164506\nTalk:Empire/Ranks/@comment-81.231.146.227-20141226164506/@comment-121.215.18.176-20150111060533\nTalk:Empire/Ranks/@comment-81.231.146.227-20141226164506/@comment-62.20.145.167-20150122231142\nTalk:Empire/Ranks/@comment-81.231.146.227-20141226164506/@comment-80.60.18.111-20141226212033\nTalk:Empire/Ranks/@comment-81.231.146.227-20141226164506/@comment-86.19.209.224-20150402011222\nTalk:Empire/Ranks/@comment-81.231.146.227-20141226164506/@comment-86.19.209.224-20150402012516\nTalk:Empire/Ranks/@comment-82.13.223.67-20180507175530\nTalk:Empire/Ranks/@comment-82.13.223.67-20180507175530/@comment-82.13.223.67-20180507175916\nTalk:Empire/Ranks/@comment-82.3.207.62-20180125153342\nTalk:Empire/Ranks/@comment-82.3.207.62-20180125153342/@comment-2601:449:C280:7C97:D4A6:9C00:672B:6FEC-20180127223736\nTalk:Empire/Ranks/@comment-82.3.207.62-20180125153342/@comment-66.223.210.201-20180205055301\nTalk:Empire/Ranks/@comment-82.3.207.62-20180125153342/@comment-78.61.209.40-20180129152020\nTalk:Empire/Ranks/@comment-82.35.108.29-20160124105116\nTalk:Empire/Ranks/@comment-82.35.108.29-20160124105116/@comment-27311754-20160124121151\nTalk:Empire/Ranks/@comment-82.39.191.17-20180401001316\nTalk:Empire/Ranks/@comment-82.39.191.17-20180401001316/@comment-173.73.238.70-20180401195947\nTalk:Empire/Ranks/@comment-82.39.191.17-20180401001316/@comment-173.73.238.70-20180401200322\nTalk:Empire/Ranks/@comment-82.39.191.17-20180401001316/@comment-173.73.238.70-20180401201850\nTalk:Empire/Ranks/@comment-82.39.191.17-20180401001316/@comment-173.73.238.70-20180402192804\nTalk:Empire/Ranks/@comment-82.39.191.17-20180401001316/@comment-173.73.238.70-20180402194329\nTalk:Empire/Ranks/@comment-82.39.191.17-20180401001316/@comment-173.73.238.70-20180402194359\nTalk:Empire/Ranks/@comment-82.39.191.17-20180401001316/@comment-173.73.238.70-20180402195905\nTalk:Empire/Ranks/@comment-82.39.191.17-20180401001316/@comment-175.32.91.66-20180505180437\nTalk:Empire/Ranks/@comment-82.39.191.17-20180401001316/@comment-175.33.30.197-20180508110213\nTalk:Empire/Ranks/@comment-82.39.191.17-20180401001316/@comment-175.33.30.197-20180508112657\nTalk:Empire/Ranks/@comment-82.39.191.17-20180401001316/@comment-2601:204:D87F:C170:C54:E2B:B1B:22F1-20180417092225\nTalk:Empire/Ranks/@comment-82.39.191.17-20180401001316/@comment-35108203-20180401200900\nTalk:Empire/Ranks/@comment-82.39.191.17-20180401001316/@comment-82.39.191.17-20180415124331\nTalk:Empire/Ranks/@comment-82.39.191.17-20180401001316/@comment-82.39.191.17-20180521210425\nTalk:Empire/Ranks/@comment-82.44.74.34-20180320230654\nTalk:Empire/Ranks/@comment-82.44.74.34-20180320230654/@comment-95.147.39.162-20180322221721\nTalk:Empire/Ranks/@comment-82.44.74.34-20180323201523\nTalk:Empire/Ranks/@comment-84.13.232.40-20150127150135\nTalk:Empire/Ranks/@comment-85.255.232.50-20160807214835\nTalk:Empire/Ranks/@comment-85.255.232.50-20160807214835/@comment-195.10.41.13-20160825094831\nTalk:Empire/Ranks/@comment-85.255.232.50-20160807214835/@comment-24.155.103.119-20160821211644\nTalk:Empire/Ranks/@comment-85.255.232.50-20160807214835/@comment-64.22.251.126-20160808194842\nTalk:Empire/Ranks/@comment-85.255.232.50-20160807214835/@comment-73.157.212.145-20160915030656\nTalk:Empire/Ranks/@comment-85.255.232.50-20160807214835/@comment-90.206.77.248-20160919114915\nTalk:Empire/Ranks/@comment-85.27.136.52-20190129140731\nTalk:Empire/Ranks/@comment-85.27.136.52-20190129140731/@comment-124.191.36.14-20190129213115\nTalk:Empire/Ranks/@comment-85.27.136.52-20190129140731/@comment-209.237.126.135-20190209155102\nTalk:Empire/Ranks/@comment-85.27.136.52-20190129140731/@comment-92.169.219.198-20190328195951\nTalk:Empire/Ranks/@comment-85.95.125.66-20190121104847\nTalk:Empire/Ranks/@comment-86.139.67.175-20150310015129\nTalk:Empire/Ranks/@comment-86.139.67.175-20150310015129/@comment-67.185.33.198-20150312025210\nTalk:Empire/Ranks/@comment-86.150.233.45-20150508154550\nTalk:Empire/Ranks/@comment-86.162.122.57-20150425172427\nTalk:Empire/Ranks/@comment-86.19.161.72-20180306141332\nTalk:Empire/Ranks/@comment-86.19.161.72-20180306141332/@comment-37.47.70.134-20180306193155\nTalk:Empire/Ranks/@comment-86.19.161.72-20180306141332/@comment-82.6.23.249-20180307015555\nTalk:Empire/Ranks/@comment-87.128.14.118-20170817115901\nTalk:Empire/Ranks/@comment-87.128.14.118-20170817115901/@comment-182.239.178.123-20171015062659\nTalk:Empire/Ranks/@comment-87.128.14.118-20170817115901/@comment-188.146.131.47-20170818103411\nTalk:Empire/Ranks/@comment-87.128.14.118-20170817115901/@comment-188.146.131.47-20170818103512\nTalk:Empire/Ranks/@comment-87.128.14.118-20170817115901/@comment-50.90.51.23-20170822041718\nTalk:Empire/Ranks/@comment-87.128.14.118-20170817115901/@comment-80.98.18.7-20170823204115\nTalk:Empire/Ranks/@comment-87.128.14.118-20170817115901/@comment-82.237.248.209-20170825160530\nTalk:Empire/Ranks/@comment-87.128.14.118-20170817115901/@comment-87.128.14.118-20170817115953\nTalk:Empire/Ranks/@comment-87.156.167.12-20180911120118\nTalk:Empire/Ranks/@comment-87.156.167.12-20180911120118/@comment-173.17.157.125-20180920044618\nTalk:Empire/Ranks/@comment-87.79.156.234-20151023120830\nTalk:Empire/Ranks/@comment-87.79.156.234-20151023120830/@comment-87.79.156.234-20151023121325\nTalk:Empire/Ranks/@comment-88.115.190.42-20150123085949\nTalk:Empire/Ranks/@comment-88.115.190.42-20150123085949/@comment-88.115.190.42-20150123090108\nTalk:Empire/Ranks/@comment-88.164.101.35-20150205150434\nTalk:Empire/Ranks/@comment-88.164.101.35-20150205150434/@comment-88.164.101.35-20150214145943\nTalk:Empire/Ranks/@comment-88.168.110.81-20150612231728\nTalk:Empire/Ranks/@comment-88.168.110.81-20150612231728/@comment-109.213.217.171-20150615153928\nTalk:Empire/Ranks/@comment-88.220.45.222-20180310055953\nTalk:Empire/Ranks/@comment-88.220.45.222-20180310055953/@comment-14.202.42.156-20180311124104\nTalk:Empire/Ranks/@comment-88.220.45.222-20180310055953/@comment-188.29.164.252-20180310172935\nTalk:Empire/Ranks/@comment-88.220.45.222-20180310055953/@comment-2003:75:8F17:8723:F864:156F:7A11:43AF-20180312161355\nTalk:Empire/Ranks/@comment-88.220.45.222-20180310055953/@comment-2A02:908:A62:C860:4457:2021:E94D:D99B-20180311003702\nTalk:Empire/Ranks/@comment-88.220.45.222-20180310055953/@comment-50.71.221.96-20180313010748\nTalk:Empire/Ranks/@comment-88.220.45.222-20180310055953/@comment-86.133.5.232-20180311180546\nTalk:Empire/Ranks/@comment-883857-20180315153803\nTalk:Empire/Ranks/@comment-883857-20180315153803/@comment-82.3.66.113-20180315174612\nTalk:Empire/Ranks/@comment-89.176.13.114-20151223154507\nTalk:Empire/Ranks/@comment-89.207.164.254-20180103111646\nTalk:Empire/Ranks/@comment-89.207.164.254-20180103111646/@comment-170.72.14.32-20180113181504\nTalk:Empire/Ranks/@comment-89.207.164.254-20180103111646/@comment-84.84.179.92-20180103194226\nTalk:Empire/Ranks/@comment-89.245.127.55-20190106074213\nTalk:Empire/Ranks/@comment-89.245.127.55-20190106074213/@comment-92.169.219.198-20190328200024\nTalk:Empire/Ranks/@comment-90.227.246.248-20180325181804\nTalk:Empire/Ranks/@comment-90.46.41.103-20160801165727\nTalk:Empire/Ranks/@comment-92.233.96.118-20180404161729\nTalk:Empire/Ranks/@comment-92.233.96.118-20180404161729/@comment-2001:1284:F016:BA34:A865:52C7:FB4:137-20180405185503\nTalk:Empire/Ranks/@comment-92.233.96.118-20180404161729/@comment-2407:7000:9D00:C902:1CE4:F62F:9FB:2721-20180409113336\nTalk:Empire/Ranks/@comment-92.239.129.12-20180531214804\nTalk:Empire/Ranks/@comment-92.239.129.12-20180531214804/@comment-178.41.88.80-20180604185141\nTalk:Empire/Ranks/@comment-92.74.93.186-20160727173537\nTalk:Empire/Ranks/@comment-92.74.93.186-20160727173537/@comment-174.92.220.239-20160728033018\nTalk:Empire/Ranks/@comment-92.74.93.186-20160727173537/@comment-174.92.220.239-20160728033149\nTalk:Empire/Ranks/@comment-94.192.51.213-20170108225256\nTalk:Empire/Ranks/@comment-94.192.51.213-20170108225256/@comment-176.26.93.243-20170213204631\nTalk:Empire/Ranks/@comment-94.192.51.213-20170108225256/@comment-49.147.129.226-20170114161343\nTalk:Empire/Ranks/@comment-94.192.51.213-20170108225256/@comment-68.36.18.160-20170108225826\nTalk:Empire/Ranks/@comment-94.192.51.213-20170108225256/@comment-75.138.35.156-20170125102036\nTalk:Empire/Ranks/@comment-94.195.171.204-20161008103956\nTalk:Empire/Ranks/@comment-94.214.152.173-20180402175037\nTalk:Empire/Ranks/@comment-94.214.152.173-20180402175037/@comment-208.68.255.73-20180411193338\nTalk:Empire/Ranks/@comment-94.7.185.21-20160131140502\nTalk:Empire/Ranks/@comment-94.7.185.21-20160131140502/@comment-189.173.224.107-20160205224801\nTalk:Empire/Ranks/@comment-94.7.185.21-20160131140502/@comment-199.18.155.146-20160204181837\nTalk:Empire/Ranks/@comment-96.21.38.225-20160724182152\nTalk:Empire/Ranks/@comment-96.255.237.211-20150414201402\nTalk:Empire/Ranks/@comment-96.255.237.211-20150414201402/@comment-109.243.83.102-20150414233830\nTalk:Empire/Ranks/@comment-96.255.237.211-20150414201402/@comment-90.222.90.97-20150423214047\nTalk:Empire/Ranks/@comment-98.145.8.106-20151021080535\nTalk:Empire/Ranks/@comment-98.145.8.106-20151021080535/@comment-4986699-20151021120610\nTalk:Empire/Ranks/@comment-98.203.196.86-20191010153723\nTalk:Empire/Ranks/@comment-98.239.48.227-20150202223914\nTalk:Empire/Ranks/@comment-98.239.48.227-20150205141922\nTalk:Empire/Ranks/@comment-99.236.44.164-20160926040332\nTalk:Empire/Ranks/@comment-99.236.44.164-20160926040332/@comment-50.200.245.26-20160929173110\nTalk:Empire/Ranks/@comment-99.255.32.193-20170218234642\nTalk:Empire/Ranks/@comment-99.255.32.193-20170218234642/@comment-2155082-20170219044602\nTalk:Encoded Materials/@comment-188.2.22.207-20171230084346\nTalk:Enforcer Cannon/@comment-1430497-20150714174245\nTalk:Enforcer Cannon/@comment-1430497-20150714174245/@comment-109.228.166.46-20171023092024\nTalk:Enforcer Cannon/@comment-1430497-20150714174245/@comment-192.136.161.33-20171023132100\nTalk:Enforcer Cannon/@comment-1430497-20150714174245/@comment-26537865-20150803003049\nTalk:Enforcer Cannon/@comment-1430497-20150714174245/@comment-26599825-20150716134140\nTalk:Enforcer Cannon/@comment-1430497-20150714174245/@comment-73.1.55.15-20150809015017\nTalk:Enforcer Cannon/@comment-1430497-20150714174245/@comment-95.118.189.89-20150717222327\nTalk:Enforcer Cannon/@comment-192.136.161.33-20180109162919\nTalk:Enforcer Cannon/@comment-192.136.161.33-20180109162919/@comment-118.93.246.156-20180403234547\nTalk:Enforcer Cannon/@comment-192.136.161.33-20180109162919/@comment-118.93.246.156-20180403235605\nTalk:Enforcer Cannon/@comment-192.136.161.33-20180109162919/@comment-170.211.150.62-20180131161210\nTalk:Enforcer Cannon/@comment-192.136.161.33-20180109162919/@comment-177.99.212.138-20180116133128\nTalk:Enforcer Cannon/@comment-192.136.161.33-20180109162919/@comment-192.136.161.33-20180116140447\nTalk:Enforcer Cannon/@comment-192.136.161.33-20180109162919/@comment-192.136.170.98-20181120041143\nTalk:Enforcer Cannon/@comment-192.136.161.33-20180109162919/@comment-192.136.170.98-20181123193857\nTalk:Enforcer Cannon/@comment-192.136.161.33-20180109162919/@comment-192.136.170.98-20181125151234\nTalk:Enforcer Cannon/@comment-192.136.161.33-20180109162919/@comment-90.200.46.38-20181120024222\nTalk:Enforcer Cannon/@comment-192.136.161.33-20180109162919/@comment-90.200.46.38-20181122223520\nTalk:Enforcer Cannon/@comment-192.136.161.33-20180109162919/@comment-90.200.46.38-20181125145226\nTalk:Enforcer Cannon/@comment-2001:5B0:4BC1:7268:E56F:96D1:25CA:89A8-20190426063722\nTalk:Enforcer Cannon/@comment-2001:5B0:4BC1:7268:E56F:96D1:25CA:89A8-20190426063722/@comment-172.112.123.173-20190429054746\nTalk:Enforcer Cannon/@comment-2001:5B0:4BC1:7268:E56F:96D1:25CA:89A8-20190426063722/@comment-192.136.172.169-20190430030919\nTalk:Enforcer Cannon/@comment-26599825-20150713180615\nTalk:Enforcer Cannon/@comment-26599825-20150713180615/@comment-2.85.231.5-20151223002102\nTalk:Enforcer Cannon/@comment-26599825-20150713180615/@comment-84.0.43.234-20150713230054\nTalk:Enforcer Cannon/@comment-91.179.26.112-20150808133620\nTalk:Engine Focused Power Distributor/@comment-69.84.51.73-20190207212145\nTalk:Engine Focused Power Distributor/@comment-69.84.51.73-20190207212145/@comment-192.136.170.98-20190207214141\nTalk:Engineers/@comment-123.2.22.240-20160609090006\nTalk:Engineers/@comment-123.2.22.240-20160609090006/@comment-64.127.136.202-20160609130839\nTalk:Engineers/@comment-123.2.22.240-20160609090006/@comment-86.187.95.130-20160806113851\nTalk:Engineers/@comment-139.218.141.128-20160619065225\nTalk:Engineers/@comment-139.218.141.128-20160619065225/@comment-139.218.141.128-20160619070755\nTalk:Engineers/@comment-178.221.129.195-20170524063722\nTalk:Engineers/@comment-192.136.161.33-20171017155427\nTalk:Engineers/@comment-192.136.161.33-20180320143043\nTalk:Engineers/@comment-192.136.161.52-20161101165516\nTalk:Engineers/@comment-192.136.161.52-20161101165516/@comment-192.136.161.52-20161101170224\nTalk:Engineers/@comment-192.136.161.52-20161101165516/@comment-35245756-20180928040607\nTalk:Engineers/@comment-192.136.161.52-20161117125623\nTalk:Engineers/@comment-192.136.161.52-20161120034915\nTalk:Engineers/@comment-192.136.161.52-20161120034915/@comment-192.136.161.52-20161120125255\nTalk:Engineers/@comment-192.136.173.19-20160531164708\nTalk:Engineers/@comment-192.136.173.19-20160531164708/@comment-192.136.175.90-20160602121622\nTalk:Engineers/@comment-192.136.173.19-20160531164708/@comment-24795896-20160602111850\nTalk:Engineers/@comment-192.136.173.19-20160531201937\nTalk:Engineers/@comment-192.136.175.90-20160606165525\nTalk:Engineers/@comment-192.136.175.90-20160606165525/@comment-192.136.173.223-20160607212514\nTalk:Engineers/@comment-192.136.175.90-20160606165525/@comment-192.136.173.223-20160608112358\nTalk:Engineers/@comment-192.136.175.90-20160606165525/@comment-2155082-20160608032640\nTalk:Engineers/@comment-192.136.175.90-20160606165525/@comment-2155082-20160609032945\nTalk:Engineers/@comment-213.122.150.226-20161007115549\nTalk:Engineers/@comment-213.122.150.226-20161007115549/@comment-2155082-20161007181055\nTalk:Engineers/@comment-24.176.151.50-20160723035256\nTalk:Engineers/@comment-24.176.151.50-20160723035256/@comment-2155082-20160723040045\nTalk:Engineers/@comment-24.53.244.177-20161103025658\nTalk:Engineers/@comment-24.53.244.177-20161103025658/@comment-2155082-20161103034105\nTalk:Engineers/@comment-24.53.244.177-20170111184555\nTalk:Engineers/@comment-24.53.244.177-20170111184555/@comment-30197446-20170430075824\nTalk:Engineers/@comment-25450485-20160625091839\nTalk:Engineers/@comment-25450485-20160625091839/@comment-192.136.174.182-20160625140041\nTalk:Engineers/@comment-28597419-20161019132859\nTalk:Engineers/@comment-28597419-20170424113853\nTalk:Engineers/@comment-28597419-20170424113853/@comment-84.146.213.213-20170425084634\nTalk:Engineers/@comment-34360819-20180301103725\nTalk:Engineers/@comment-37578212-20200109183127\nTalk:Engineers/@comment-43529635-20190817041416\nTalk:Engineers/@comment-43529635-20190817041416/@comment-192.136.172.44-20190818135822\nTalk:Engineers/@comment-50.170.117.254-20160603082626\nTalk:Engineers/@comment-82.228.151.108-20160802125101\nTalk:Engineers/@comment-82.228.151.108-20160802125101/@comment-192.136.161.248-20160802185025\nTalk:Engineers/@comment-82.228.151.108-20160802125101/@comment-192.136.161.248-20160802185048\nTalk:Engineers/@comment-82.228.151.108-20160802125101/@comment-29011619-20160814104917\nTalk:Engineers/@comment-83.128.28.202-20171008153438\nTalk:Engineers/@comment-83.128.28.202-20171008153438/@comment-24.132.131.195-20180207003817\nTalk:Engineers/@comment-83.128.28.202-20171008153438/@comment-35245756-20180928040513\nTalk:Engineers/@comment-87.102.152.96-20190719201405\nTalk:Engineers/@comment-88.165.17.22-20160815224508\nTalk:Engineers/@comment-88.165.17.22-20160815224508/@comment-192.136.161.248-20160816103544\nTalk:Engineers/@comment-90.200.45.179-20190209124413\nTalk:Engineers/@comment-90.200.46.38-20181030203640\nTalk:Engineers/@comment-90.200.46.38-20181030203640/@comment-2600:6C48:777F:FE8D:812:4C0F:D607:597C-20181218051914\nTalk:Engineers/@comment-90.200.46.38-20181030203640/@comment-90.200.45.179-20190206140710\nTalk:Engineers/@comment-98.19.45.188-20170920163614\nTalk:Engineers/@comment-98.19.45.188-20170920163614/@comment-192.136.170.98-20190328204439\nTalk:Engineers/@comment-98.19.45.188-20170920163614/@comment-78.20.204.157-20190328182407\nTalk:Enhanced Low Power Shield Generator/@comment-192.228.232.114-20190106042254\nTalk:Enhanced Low Power Shield Generator/@comment-192.228.232.114-20190106042254/@comment-192.136.170.98-20190106051941\nTalk:Enhanced Performance Thrusters/@comment-143.52.50.13-20181002145941\nTalk:Enhanced Performance Thrusters/@comment-143.52.50.13-20181002145941/@comment-44180665-20200409053925\nTalk:Enhanced Performance Thrusters/@comment-143.52.50.13-20181002145941/@comment-44180665-20200409054329\nTalk:Enhanced Performance Thrusters/@comment-143.52.50.13-20181002145941/@comment-45771967-20200512235423\nTalk:Enhanced Performance Thrusters/@comment-143.52.50.13-20181002145941/@comment-70.44.105.138-20200113150937\nTalk:Enhanced Performance Thrusters/@comment-2602:306:CE29:B0D0:5148:3E6C:3019:AFBF-20191012010245\nTalk:Enhanced Performance Thrusters/@comment-2602:306:CE29:B0D0:5148:3E6C:3019:AFBF-20191012010245/@comment-44180665-20200409053832\nTalk:Enhanced Performance Thrusters/@comment-2602:306:CE29:B0D0:5148:3E6C:3019:AFBF-20191012010245/@comment-44180665-20200409054456\nTalk:Enhanced Performance Thrusters/@comment-2602:306:CE29:B0D0:5148:3E6C:3019:AFBF-20191012010245/@comment-4986699-20191116064317\nTalk:Enhanced Performance Thrusters/@comment-34360819-20180313105915\nTalk:Enhanced Performance Thrusters/@comment-34360819-20180313105915/@comment-150.107.174.105-20180403102647\nTalk:Enhanced Performance Thrusters/@comment-34360819-20180313105915/@comment-192.136.161.33-20180313130329\nTalk:Enhanced Performance Thrusters/@comment-34360819-20180313105915/@comment-202.183.123.36-20180408200534\nTalk:Enhanced Performance Thrusters/@comment-34360819-20180313105915/@comment-210.246.50.132-20180529011936\nTalk:Enhanced Performance Thrusters/@comment-82.192.254.24-20191205173032\nTalk:Enhanced Performance Thrusters/@comment-82.192.254.24-20191205173032/@comment-27941085-20200710210415\nTalk:Enzyme Missile Rack/@comment-2001:5B0:4BC0:7040:0:FF:FEBD:63F2-20181229070211\nTalk:Enzyme Missile Rack/@comment-203.104.15.77-20191024031354\nTalk:Enzyme Missile Rack/@comment-29929500-20180325023446\nTalk:Enzyme Missile Rack/@comment-44180665-20200312185821\nTalk:Enzyme Missile Rack/@comment-75.70.250.88-20190703014659\nTalk:Epsilon Eridani/@comment-220.240.143.24-20190709163616\nTalk:Eranin/@comment-26015424-20150117093601\nTalk:Eranin/@comment-26015424-20150305101135\nTalk:Eranin/@comment-82.31.177.188-20141216172700\nTalk:Eranin/@comment-92.17.252.66-20140927153032\nTalk:Eranin/@comment-92.17.252.66-20140927153032/@comment-92.17.252.66-20140927153115\nTalk:Eranin/@comment-95.208.248.90-20140906024409\nTalk:Eranin/@comment-95.208.248.90-20140906024409/@comment-12138097-20150304194423\nTalk:Eranin/@comment-95.208.248.90-20140906024409/@comment-90.194.43.190-20150304153126\nTalk:Eranin/@comment-95.208.248.90-20140906024509\nTalk:Eranin Pearl Whisky/@comment-2604:2000:A842:9C00:5097:B44A:9F2:EC1-20181013190501\nTalk:Eranin Pearl Whisky/@comment-96.231.157.246-20141219182542\nTalk:Eshu Umbrellas/@comment-77.50.26.143-20160814201742\nTalk:Eskimo Nebula/@comment-47.37.138.49-20170911111250\nTalk:Esuseku Caviar/@comment-178.250.179.140-20150625162221\nTalk:Esuseku Caviar/@comment-178.250.179.140-20150625162221/@comment-2.126.168.159-20170527143802\nTalk:Esuseku Caviar/@comment-178.250.179.140-20150625162221/@comment-220.135.119.178-20170216121952\nTalk:Esuseku Caviar/@comment-178.250.179.140-20150625162221/@comment-35713300-20200930074853\nTalk:Esuseku Caviar/@comment-178.250.179.140-20150625162221/@comment-63.64.75.10-20151214225440\nTalk:Esuseku Caviar/@comment-178.250.179.140-20150625162221/@comment-73.164.77.218-20170308021435\nTalk:Esuseku Caviar/@comment-69.142.130.220-20150625170359\nTalk:Esuseku Caviar/@comment-77.50.26.143-20160930211111\nTalk:Eta Carinae/@comment-34004391-20180323102841\nTalk:Eta Cassiopeiae/@comment-172.58.99.145-20190619011602\nTalk:Ethos/@comment-194.98.70.135-20150610093416\nTalk:Ethos/@comment-194.98.70.135-20150610093416/@comment-77.110.14.220-20150622232046\nTalk:Ethos/@comment-2600:8804:1A80:A00:5DFE:5A85:D5D1:43A1-20180108170253\nTalk:Ethos/@comment-2600:8804:1A80:A00:5DFE:5A85:D5D1:43A1-20180108170253/@comment-34788504-20180223035129\nTalk:Etienne Dorn/@comment-2601:197:702:745:8CC6:974A:FD94:D937-20181216200332\nTalk:Etienne Dorn/@comment-2601:197:702:745:8CC6:974A:FD94:D937-20181216200332/@comment-156.57.209.202-20190510212802\nTalk:Etienne Dorn/@comment-68.5.159.131-20191216120513\nTalk:Eudaemon Anchorage/@comment-36032708-20180630074036\nTalk:Eudaemon Anchorage/@comment-36032708-20180630074036/@comment-2A02:8108:80C0:5FF4:1898:7204:4835:55BA-20180903161354\nTalk:Eudaemon Anchorage/@comment-36032708-20180630074036/@comment-44180665-20200604023011\nTalk:Exbeur/@comment-189.32.29.99-20190115161417\nTalk:Exbeur/@comment-2A02:C7D:8E83:E700:4912:EA58:6AEF:8DD2-20180309180309\nTalk:Exbeur/@comment-73.60.152.171-20190829172351\nTalk:Exbeur/@comment-90.191.80.161-20180227205128\nTalk:Exbeur/@comment-90.191.80.161-20180227205128/@comment-75.174.15.47-20180304081809\nTalk:Exbeur/@comment-90.191.80.161-20180227205128/@comment-90.200.46.38-20181025202914\nTalk:Exceptional Scrambled Emission Data/@comment-2601:1C2:4C00:DE57:4884:E73A:F26B:DDC0-20171007074228\nTalk:Exceptional Scrambled Emission Data/@comment-2601:404:C780:BBFC:65EA:2964:73F9:EE0-20181005183004\nTalk:Exceptional Scrambled Emission Data/@comment-34813218-20180225065731\nTalk:Exceptional Scrambled Emission Data/@comment-47.197.69.8-20171230024704\nTalk:Exceptional Scrambled Emission Data/@comment-64.138.215.253-20180415172050\nTalk:Exceptional Scrambled Emission Data/@comment-87.148.6.39-20180102214848\nTalk:Expanded Probe Scanning Radius Scanner/@comment-69.166.69.101-20190518211559\nTalk:Experimental Effect/@comment-189.166.50.26-20180504214120\nTalk:Experimental Effect/@comment-2A02:2788:7F4:249:D18C:F04B:A570:3BC2-20180509234847\nTalk:Explorer's Anchorage/@comment-65.23.98.41-20190305152324\nTalk:Explorer's Anchorage/@comment-65.23.98.41-20190305152324/@comment-192.136.170.98-20190305192327\nTalk:Explorer's Anchorage/@comment-65.23.98.41-20190305152324/@comment-208.50.223.188-20190308092119\nTalk:Explorer/@comment-100.42.250.210-20150805201550\nTalk:Explorer/@comment-100.42.250.210-20150805201550/@comment-26537865-20150817214237\nTalk:Explorer/@comment-100.42.250.210-20150805201550/@comment-77.100.139.22-20150809155746\nTalk:Explorer/@comment-104.185.102.17-20161203051319\nTalk:Explorer/@comment-104.185.102.17-20161203051319/@comment-26014491-20170121181524\nTalk:Explorer/@comment-104.185.102.17-20161203051319/@comment-31178037-20170129111158\nTalk:Explorer/@comment-106.68.161.185-20150427144137\nTalk:Explorer/@comment-108.28.34.105-20170709172515\nTalk:Explorer/@comment-108.28.34.105-20170709172515/@comment-26014491-20170717154039\nTalk:Explorer/@comment-121.45.245.99-20150406041239\nTalk:Explorer/@comment-125.237.7.64-20161126032528\nTalk:Explorer/@comment-140.254.77.146-20161010183725\nTalk:Explorer/@comment-140.254.77.146-20161010183725/@comment-27034370-20161028141909\nTalk:Explorer/@comment-143.81.103.35-20151222194209\nTalk:Explorer/@comment-143.81.103.35-20151222194209/@comment-94.71.97.97-20151227034019\nTalk:Explorer/@comment-156.3.54.205-20150921204000\nTalk:Explorer/@comment-162.211.34.178-20180526180404\nTalk:Explorer/@comment-165.120.40.25-20150811161046\nTalk:Explorer/@comment-165.120.40.25-20150811161046/@comment-109.151.168.165-20150817080139\nTalk:Explorer/@comment-165.120.40.25-20150811161046/@comment-4900524-20150817005027\nTalk:Explorer/@comment-172.94.18.73-20170525103301\nTalk:Explorer/@comment-173.174.214.33-20170615211706\nTalk:Explorer/@comment-173.19.98.227-20170608214230\nTalk:Explorer/@comment-176.46.45.198-20150726111225\nTalk:Explorer/@comment-176.46.45.198-20150726111225/@comment-176.61.103.233-20150914181555\nTalk:Explorer/@comment-176.46.45.198-20150726111225/@comment-50.135.54.250-20150805035040\nTalk:Explorer/@comment-178.203.14.187-20150418080222\nTalk:Explorer/@comment-178.84.5.249-20150118205743\nTalk:Explorer/@comment-178.84.5.249-20150118211411\nTalk:Explorer/@comment-182.55.253.228-20150327115146\nTalk:Explorer/@comment-184.145.102.177-20150719195646\nTalk:Explorer/@comment-184.145.102.177-20150719195646/@comment-67.182.83.43-20150801054209\nTalk:Explorer/@comment-184.91.251.97-20180317195348\nTalk:Explorer/@comment-185.22.143.36-20160423070455\nTalk:Explorer/@comment-185.22.143.36-20160423070455/@comment-95.91.228.12-20160429130630\nTalk:Explorer/@comment-185.26.63.18-20150402222255\nTalk:Explorer/@comment-192.136.161.217-20160731134036\nTalk:Explorer/@comment-192.136.161.217-20160731134036/@comment-174.16.78.14-20160821225152\nTalk:Explorer/@comment-192.136.161.217-20160731134036/@comment-192.136.161.248-20160822140044\nTalk:Explorer/@comment-192.136.161.217-20160731134036/@comment-2251437-20160828235342\nTalk:Explorer/@comment-192.136.161.217-20160731134036/@comment-86.126.94.34-20160908090746\nTalk:Explorer/@comment-192.136.172.44-20190821125719\nTalk:Explorer/@comment-192.136.172.44-20190821125719/@comment-170.185.126.17-20191111191536\nTalk:Explorer/@comment-194.105.113.182-20170526085939\nTalk:Explorer/@comment-195.189.180.41-20170308102255\nTalk:Explorer/@comment-195.189.180.41-20170308102255/@comment-80.26.205.177-20170415174535\nTalk:Explorer/@comment-195.189.180.41-20170313191504\nTalk:Explorer/@comment-2.107.239.233-20150317160807\nTalk:Explorer/@comment-2.107.239.233-20150317160807/@comment-26009169-20150317184135\nTalk:Explorer/@comment-2.107.239.233-20150328125710\nTalk:Explorer/@comment-207.210.5.180-20150201002023\nTalk:Explorer/@comment-207.236.193.195-20150804232526\nTalk:Explorer/@comment-207.236.193.195-20150804232526/@comment-98.214.6.212-20150807022528\nTalk:Explorer/@comment-217.121.218.161-20150507100321\nTalk:Explorer/@comment-217.121.218.161-20150507100321/@comment-217.121.218.161-20150507124751\nTalk:Explorer/@comment-217.121.218.161-20150507100321/@comment-26014491-20150507121256\nTalk:Explorer/@comment-217.121.218.161-20150507100321/@comment-26033489-20150507190119\nTalk:Explorer/@comment-217.121.218.161-20150526124838\nTalk:Explorer/@comment-217.121.218.161-20150526124838/@comment-26537865-20151004000819\nTalk:Explorer/@comment-217.121.218.161-20150706002518\nTalk:Explorer/@comment-217.121.218.161-20151027191116\nTalk:Explorer/@comment-2182702-20190706181110\nTalk:Explorer/@comment-2182702-20190706181110/@comment-192.136.172.44-20190708210344\nTalk:Explorer/@comment-24.121.100.115-20150501004606\nTalk:Explorer/@comment-24.121.100.115-20150501004606/@comment-25411947-20150624235118\nTalk:Explorer/@comment-24.121.100.115-20150501004606/@comment-76.79.198.210-20150513231002\nTalk:Explorer/@comment-24.17.81.158-20150413191012\nTalk:Explorer/@comment-24.178.26.241-20150326040504\nTalk:Explorer/@comment-24.84.92.218-20150104234944\nTalk:Explorer/@comment-24.84.92.218-20150104234944/@comment-24360696-20150105001813\nTalk:Explorer/@comment-24.84.92.218-20150105000411\nTalk:Explorer/@comment-24.84.92.218-20150105000411/@comment-166.62.217.63-20150113035928\nTalk:Explorer/@comment-24.84.92.218-20150105000411/@comment-62.2.217.58-20150203141130\nTalk:Explorer/@comment-24.84.92.218-20150105000411/@comment-76.20.136.41-20150109015236\nTalk:Explorer/@comment-24.84.92.218-20150105004131\nTalk:Explorer/@comment-24360696-20150104232847\nTalk:Explorer/@comment-24360696-20150104232847/@comment-166.62.217.63-20150113040048\nTalk:Explorer/@comment-25292798-20141222111312\nTalk:Explorer/@comment-25292798-20141222111312/@comment-11205275-20141222123433\nTalk:Explorer/@comment-25292798-20141222111312/@comment-25292798-20141222183223\nTalk:Explorer/@comment-25411947-20150624234008\nTalk:Explorer/@comment-25411947-20150915110227\nTalk:Explorer/@comment-25936977-20150123023001\nTalk:Explorer/@comment-25981159-20150111075530\nTalk:Explorer/@comment-25981159-20150512234133\nTalk:Explorer/@comment-25981159-20150512234133/@comment-25981159-20150523091028\nTalk:Explorer/@comment-25981159-20150512234133/@comment-25981159-20150525161737\nTalk:Explorer/@comment-25981159-20150512234133/@comment-67.186.92.128-20150516060053\nTalk:Explorer/@comment-25981159-20150512234133/@comment-86.186.190.3-20150524222504\nTalk:Explorer/@comment-25981159-20150512234133/@comment-86.186.190.3-20150524224056\nTalk:Explorer/@comment-25981159-20150513000601\nTalk:Explorer/@comment-25981159-20150513000601/@comment-217.121.218.161-20150519125218\nTalk:Explorer/@comment-26006276-20150114141522\nTalk:Explorer/@comment-26014491-20150406064742\nTalk:Explorer/@comment-26014491-20150406064742/@comment-89.27.82.108-20150406071133\nTalk:Explorer/@comment-26014491-20150426213621\nTalk:Explorer/@comment-26014491-20150426213621/@comment-26306474-20150426214034\nTalk:Explorer/@comment-26014491-20150426214531\nTalk:Explorer/@comment-26014491-20150426214531/@comment-26306474-20150426215059\nTalk:Explorer/@comment-26014491-20170622112345\nTalk:Explorer/@comment-26014491-20170717140951\nTalk:Explorer/@comment-26014491-20170717140951/@comment-80.2.178.98-20170827225003\nTalk:Explorer/@comment-26014491-20170717140951/@comment-83.136.43.44-20170904190149\nTalk:Explorer/@comment-2602:306:CE29:B0D0:B5AA:5362:655:5A67-20190929011056\nTalk:Explorer/@comment-2602:306:CE29:B0D0:B5AA:5362:655:5A67-20190929011056/@comment-2602:306:CE29:B0D0:B5AA:5362:655:5A67-20190929011938\nTalk:Explorer/@comment-2602:30A:2E09:75E8:D170:D850:BD8B:DDF1-20180625123415\nTalk:Explorer/@comment-2602:30A:2E13:CC50:C54E:F144:DA36:2B62-20170716211222\nTalk:Explorer/@comment-2602:30A:2E13:CC50:C54E:F144:DA36:2B62-20170716211222/@comment-170.185.126.17-20191111192106\nTalk:Explorer/@comment-2602:30A:2E13:CC50:C54E:F144:DA36:2B62-20170716211222/@comment-187.145.2.231-20170805015411\nTalk:Explorer/@comment-2602:30A:2E13:CC50:C54E:F144:DA36:2B62-20170716211222/@comment-2001:8003:5514:9900:5C31:9EDF:C08:FE12-20170720015201\nTalk:Explorer/@comment-2605:B100:F349:2C9B:E14B:2D90:7C26:78C0-20190910015013\nTalk:Explorer/@comment-26222609-20150608112929\nTalk:Explorer/@comment-26306474-20150426203335\nTalk:Explorer/@comment-26306474-20150426205117\nTalk:Explorer/@comment-26306474-20150426205117/@comment-26014491-20150426212942\nTalk:Explorer/@comment-26306474-20150426205117/@comment-26306474-20150426213058\nTalk:Explorer/@comment-26306474-20150426221738\nTalk:Explorer/@comment-26313999-20150415034526\nTalk:Explorer/@comment-26361572-20151119232646\nTalk:Explorer/@comment-26416129-20150519223204\nTalk:Explorer/@comment-26418893-20150525164238\nTalk:Explorer/@comment-26418893-20150525164238/@comment-26418893-20150525170037\nTalk:Explorer/@comment-26418893-20150525164238/@comment-26537865-20150820053027\nTalk:Explorer/@comment-26418893-20150525164238/@comment-26537865-20151006173358\nTalk:Explorer/@comment-26418893-20150525164238/@comment-90.202.205.125-20150606000115\nTalk:Explorer/@comment-26537865-20150928031124\nTalk:Explorer/@comment-26799362-20150820132931\nTalk:Explorer/@comment-26799362-20150820132931/@comment-156.3.54.205-20150921203546\nTalk:Explorer/@comment-26799362-20150820132931/@comment-4900524-20150823142446\nTalk:Explorer/@comment-26922797-20160709192629\nTalk:Explorer/@comment-27045819-20151005044528\nTalk:Explorer/@comment-27115814-20151102163903\nTalk:Explorer/@comment-27115814-20151102163903/@comment-84.195.191.69-20151108183823\nTalk:Explorer/@comment-27115814-20151202163902\nTalk:Explorer/@comment-27115814-20151202163902/@comment-26014491-20151207160717\nTalk:Explorer/@comment-27115814-20151202163902/@comment-26361572-20151202170723\nTalk:Explorer/@comment-27311754-20151128223229\nTalk:Explorer/@comment-27615087-20160115152246\nTalk:Explorer/@comment-27615087-20160115152246/@comment-84.106.211.98-20160128153727\nTalk:Explorer/@comment-28077370-20161108111951\nTalk:Explorer/@comment-2A02:8109:A740:2792:F51B:A779:E86A:3FC0-20180215204417\nTalk:Explorer/@comment-30073178-20181029090610\nTalk:Explorer/@comment-30073178-20181029090610/@comment-2003:C9:9F11:8173:3DD9:75D7:2731:E008-20190103225712\nTalk:Explorer/@comment-30073178-20181029090610/@comment-26810597-20181030212421\nTalk:Explorer/@comment-31.25.46.81-20141211172036\nTalk:Explorer/@comment-31.25.46.81-20141211172036/@comment-31.25.46.81-20141211172131\nTalk:Explorer/@comment-31.25.46.81-20141211172036/@comment-50.1.62.235-20150118191258\nTalk:Explorer/@comment-31.25.46.81-20141211172036/@comment-99.164.180.119-20150129205807\nTalk:Explorer/@comment-31952130-20170508083047\nTalk:Explorer/@comment-31952130-20170508083047/@comment-194.62.232.103-20171020135759\nTalk:Explorer/@comment-32351265-20170621131750\nTalk:Explorer/@comment-35650861-20180726123428\nTalk:Explorer/@comment-35650861-20180726123428/@comment-170.185.126.17-20191111191818\nTalk:Explorer/@comment-35650861-20180726123428/@comment-90.200.46.38-20181116174031\nTalk:Explorer/@comment-4015000-20150410114405\nTalk:Explorer/@comment-45970677-20200601215747\nTalk:Explorer/@comment-50.46.224.106-20150523062743\nTalk:Explorer/@comment-5151386-20161227215914\nTalk:Explorer/@comment-5151386-20161227215914/@comment-130.88.201.30-20170110121938\nTalk:Explorer/@comment-5151386-20161227215914/@comment-30884782-20161229071500\nTalk:Explorer/@comment-5151386-20161227215914/@comment-31411324-20170228002246\nTalk:Explorer/@comment-5151386-20161227215914/@comment-31411324-20170228013741\nTalk:Explorer/@comment-5151386-20161227215914/@comment-5151386-20170109175743\nTalk:Explorer/@comment-5151386-20161227215914/@comment-5151386-20170117221409\nTalk:Explorer/@comment-5151386-20161227215914/@comment-5151386-20170228011257\nTalk:Explorer/@comment-5611755-20150719110744\nTalk:Explorer/@comment-5611755-20150719110744/@comment-5611755-20150812133223\nTalk:Explorer/@comment-5611755-20150719110744/@comment-5611755-20150812153122\nTalk:Explorer/@comment-58.7.138.64-20150824111845\nTalk:Explorer/@comment-62.168.31.29-20170513092721\nTalk:Explorer/@comment-62.2.217.58-20150116120324\nTalk:Explorer/@comment-62.2.217.58-20150212130043\nTalk:Explorer/@comment-62.2.217.58-20150212130043/@comment-12138097-20150212131305\nTalk:Explorer/@comment-62.224.121.233-20141225173709\nTalk:Explorer/@comment-62.224.121.233-20141225173709/@comment-12138097-20141226013637\nTalk:Explorer/@comment-6607991-20160730053028\nTalk:Explorer/@comment-6607991-20160730053028/@comment-26922797-20160807143733\nTalk:Explorer/@comment-67.21.153.142-20170501174448\nTalk:Explorer/@comment-67.21.153.142-20170616150629\nTalk:Explorer/@comment-67.21.153.142-20170616150629/@comment-125.237.1.45-20180119043942\nTalk:Explorer/@comment-67.61.20.180-20170422080514\nTalk:Explorer/@comment-67.61.20.180-20170422080514/@comment-51.9.137.95-20170504145915\nTalk:Explorer/@comment-67.61.20.180-20170422080514/@comment-77.97.240.197-20170427121323\nTalk:Explorer/@comment-6752454-20151205204307\nTalk:Explorer/@comment-6752454-20151205204307/@comment-6752454-20151208043149\nTalk:Explorer/@comment-68.37.167.4-20150213122434\nTalk:Explorer/@comment-68.37.167.4-20150213122434/@comment-84.248.70.53-20150220132858\nTalk:Explorer/@comment-68.69.150.22-20150809180245\nTalk:Explorer/@comment-68.69.150.22-20150809180245/@comment-165.120.40.25-20150811161006\nTalk:Explorer/@comment-70.113.24.174-20150313054625\nTalk:Explorer/@comment-70.113.24.174-20150313054625/@comment-26009169-20150313122807\nTalk:Explorer/@comment-70.113.24.174-20150313054625/@comment-70.113.24.174-20150313181205\nTalk:Explorer/@comment-70.113.24.174-20150313054625/@comment-83.143.149.132-20150313135930\nTalk:Explorer/@comment-70.191.175.243-20150127215945\nTalk:Explorer/@comment-72.208.120.170-20150117170359\nTalk:Explorer/@comment-73.41.243.141-20151023040526\nTalk:Explorer/@comment-74.141.246.111-20160623043437\nTalk:Explorer/@comment-74.141.246.111-20160623043437/@comment-192.136.174.182-20160623105651\nTalk:Explorer/@comment-74.249.117.162-20190620040645\nTalk:Explorer/@comment-74.249.117.162-20190620040645/@comment-170.185.126.17-20191111191702\nTalk:Explorer/@comment-75.5.249.174-20180217193046\nTalk:Explorer/@comment-75.71.81.249-20150513040225\nTalk:Explorer/@comment-75.71.81.249-20150513040225/@comment-115.64.80.72-20150513074126\nTalk:Explorer/@comment-75.71.81.249-20150513040225/@comment-80.43.126.71-20150531115950\nTalk:Explorer/@comment-76.20.136.41-20150224043616\nTalk:Explorer/@comment-77.80.3.29-20190124103834\nTalk:Explorer/@comment-78.51.36.35-20150715211956\nTalk:Explorer/@comment-78.51.49.87-20150330130218\nTalk:Explorer/@comment-79.11.66.197-20190701075802\nTalk:Explorer/@comment-79.205.111.88-20150307180625\nTalk:Explorer/@comment-80.218.3.68-20170417160848\nTalk:Explorer/@comment-80.222.155.189-20151231190424\nTalk:Explorer/@comment-80.222.155.189-20151231190424/@comment-107.202.209.168-20160210220439\nTalk:Explorer/@comment-80.222.155.189-20151231190424/@comment-27311754-20160128172131\nTalk:Explorer/@comment-80.222.155.189-20151231190424/@comment-27554934-20160106011010\nTalk:Explorer/@comment-81.158.158.46-20150524145607\nTalk:Explorer/@comment-81.158.158.46-20150524145607/@comment-26537865-20150820053054\nTalk:Explorer/@comment-81.158.158.46-20150524145607/@comment-81.158.158.46-20150524145639\nTalk:Explorer/@comment-81.217.203.94-20160929181501\nTalk:Explorer/@comment-81.5.154.231-20150205134217\nTalk:Explorer/@comment-81.5.154.231-20150205134217/@comment-180.216.23.53-20150207054037\nTalk:Explorer/@comment-81.5.154.231-20150205134217/@comment-62.2.217.58-20150212125519\nTalk:Explorer/@comment-81.5.154.231-20150205134217/@comment-81.157.83.178-20150208113205\nTalk:Explorer/@comment-82.10.220.160-20150709174047\nTalk:Explorer/@comment-82.17.84.126-20150110202402\nTalk:Explorer/@comment-82.17.84.126-20150110202402/@comment-86.184.207.101-20150111145244\nTalk:Explorer/@comment-82.29.186.189-20150606221719\nTalk:Explorer/@comment-82.5.251.131-20160818201723\nTalk:Explorer/@comment-82.5.251.131-20160818201723/@comment-174.16.78.14-20160821223238\nTalk:Explorer/@comment-82.69.3.64-20171203031029\nTalk:Explorer/@comment-83.26.250.223-20151107101412\nTalk:Explorer/@comment-83.26.250.223-20151107101412/@comment-4900524-20151107171105\nTalk:Explorer/@comment-84.156.36.113-20170927141446\nTalk:Explorer/@comment-84.156.36.113-20170927141446/@comment-80.111.137.3-20171005112410\nTalk:Explorer/@comment-84.156.36.113-20170927141446/@comment-80.111.137.3-20171005113043\nTalk:Explorer/@comment-85.0.193.79-20141224011124\nTalk:Explorer/@comment-85.0.193.79-20141224011124/@comment-85.0.193.79-20141224012844\nTalk:Explorer/@comment-85.0.193.79-20141224104607\nTalk:Explorer/@comment-85.0.193.79-20141224104607/@comment-86.28.187.117-20150102172514\nTalk:Explorer/@comment-85.115.52.180-20150323112748\nTalk:Explorer/@comment-85.115.52.180-20150323112748/@comment-2.107.239.233-20150325184748\nTalk:Explorer/@comment-85.115.54.180-20150511091336\nTalk:Explorer/@comment-85.165.26.186-20150425185522\nTalk:Explorer/@comment-85.229.59.186-20150129203001\nTalk:Explorer/@comment-86.147.73.239-20170306043458\nTalk:Explorer/@comment-86.147.73.239-20170306043458/@comment-88.112.115.253-20170415142734\nTalk:Explorer/@comment-86.17.228.178-20150401012235\nTalk:Explorer/@comment-86.21.212.113-20150125221545\nTalk:Explorer/@comment-87.162.240.78-20150316191434\nTalk:Explorer/@comment-87.98.44.188-20150211201304\nTalk:Explorer/@comment-88.113.93.91-20150406175631\nTalk:Explorer/@comment-88.195.244.170-20150409150256\nTalk:Explorer/@comment-89.212.154.170-20160313111038\nTalk:Explorer/@comment-89.212.154.170-20160313111038/@comment-89.212.154.170-20160313111142\nTalk:Explorer/@comment-89.27.82.108-20150405115301\nTalk:Explorer/@comment-89.27.82.108-20150405144246\nTalk:Explorer/@comment-90.218.225.205-20150731175226\nTalk:Explorer/@comment-91.151.207.102-20150513211407\nTalk:Explorer/@comment-91.151.207.102-20150513211407/@comment-82.22.201.255-20150625012939\nTalk:Explorer/@comment-91.20.124.78-20150301004750\nTalk:Explorer/@comment-92.137.216.7-20150828020738\nTalk:Explorer/@comment-92.137.216.7-20150828020738/@comment-67.161.210.2-20150919214438\nTalk:Explorer/@comment-92.233.235.254-20150504000303\nTalk:Explorer/@comment-92.233.235.254-20150504000303/@comment-26009169-20150504022708\nTalk:Explorer/@comment-92.236.71.232-20150508143805\nTalk:Explorer/@comment-92.236.71.232-20150508143805/@comment-26014491-20150508152853\nTalk:Explorer/@comment-92.240.234.221-20150408073041\nTalk:Explorer/@comment-93.103.14.160-20150421090954\nTalk:Explorer/@comment-93.37.145.246-20150127103839\nTalk:Explorer/@comment-94.113.145.17-20151103161013\nTalk:Explorer/@comment-94.173.232.105-20160429222250\nTalk:Explorer/@comment-94.173.232.105-20160429222250/@comment-95.91.228.175-20160604152300\nTalk:Explorer/@comment-94.189.140.210-20150429094333\nTalk:Explorer/@comment-95.91.228.175-20160604152517\nTalk:Explorer/@comment-95.91.228.175-20160604152517/@comment-84.104.43.59-20160731160834\nTalk:Explorer/@comment-96.48.222.23-20150524121436\nTalk:Explorer/@comment-96.48.222.23-20150524121436/@comment-25981159-20150604205516\nTalk:Explorer/@comment-96.48.222.23-20150524121436/@comment-26537865-20150820161027\nTalk:Explorer/@comment-96.48.222.23-20150524121436/@comment-37.204.168.202-20150621100202\nTalk:Explorer/@comment-96.48.222.23-20150524121436/@comment-86.189.214.23-20150712192250\nTalk:Explorer/@comment-98.213.250.0-20160319175958\nTalk:Explorer/@comment-98.213.250.0-20160319175958/@comment-70.49.167.148-20160822090843\nTalk:Explorer/@comment-98.213.250.0-20160319175958/@comment-98.213.250.0-20160319183620\nTalk:Explorer/@comment-99.126.164.93-20150415180234\nTalk:Explorer/@comment-99.126.164.93-20150415180234/@comment-99.126.164.93-20150415183148\nTalk:Explosives/@comment-2155082-20160304225150\nTalk:Explosives/@comment-2155082-20160304225150/@comment-192.136.174.152-20160305145139\nTalk:Explosives/@comment-2155082-20160304225150/@comment-2601:647:4C00:49D4:F5F5:1CDF:5FD6:43A2-20170824073752\nTalk:Explosives/@comment-86.27.82.22-20150821063539\nTalk:F63 Condor/@comment-107.77.83.107-20150124174451\nTalk:F63 Condor/@comment-107.77.83.107-20150124174451/@comment-203.173.249.98-20150412000848\nTalk:F63 Condor/@comment-107.77.83.107-20150124174451/@comment-71.21.3.159-20150308061321\nTalk:F63 Condor/@comment-12.5.54.135-20151015145046\nTalk:F63 Condor/@comment-12.5.54.135-20151015145046/@comment-26419093-20151020215359\nTalk:F63 Condor/@comment-143.81.103.35-20160226204504\nTalk:F63 Condor/@comment-143.81.103.35-20160226204504/@comment-188.251.171.157-20161019202615\nTalk:F63 Condor/@comment-156.3.54.202-20150508153304\nTalk:F63 Condor/@comment-156.3.54.202-20150508153304/@comment-115.188.78.80-20150509233850\nTalk:F63 Condor/@comment-156.3.54.202-20150508153304/@comment-206.208.187.105-20161219190646\nTalk:F63 Condor/@comment-156.3.54.202-20150508153304/@comment-94.114.162.86-20180304113152\nTalk:F63 Condor/@comment-166.137.10.77-20180831063338\nTalk:F63 Condor/@comment-168.99.198.78-20180222054421\nTalk:F63 Condor/@comment-168.99.198.78-20180222054421/@comment-34641605-20180623184145\nTalk:F63 Condor/@comment-178.82.101.145-20150724001937\nTalk:F63 Condor/@comment-178.82.101.145-20150724001937/@comment-118.93.125.86-20150731193821\nTalk:F63 Condor/@comment-178.82.101.145-20150724001937/@comment-74.51.220.27-20160914204755\nTalk:F63 Condor/@comment-189.232.14.15-20181210070200\nTalk:F63 Condor/@comment-189.232.14.15-20181210070200/@comment-44180665-20200523161547\nTalk:F63 Condor/@comment-2001:5B0:4BC1:4C00:0:FF:FEBD:63F2-20181111120542\nTalk:F63 Condor/@comment-2003:DA:CBFE:E000:F5E7:34BC:5EE7:1AAF-20180722215321\nTalk:F63 Condor/@comment-26391992-20150615190950\nTalk:F63 Condor/@comment-26391992-20150615190950/@comment-204.112.35.135-20150616144245\nTalk:F63 Condor/@comment-26391992-20150615190950/@comment-45.50.114.69-20150731061849\nTalk:F63 Condor/@comment-26391992-20150615190950/@comment-82.226.121.139-20150615211634\nTalk:F63 Condor/@comment-26391992-20150615190950/@comment-93.199.251.51-20150615201227\nTalk:F63 Condor/@comment-26411381-20151030012820\nTalk:F63 Condor/@comment-26411381-20151030012820/@comment-122.58.239.177-20161121214726\nTalk:F63 Condor/@comment-26411381-20151030012820/@comment-168.99.198.78-20180222054956\nTalk:F63 Condor/@comment-26411381-20151030012820/@comment-206.208.187.105-20161219185946\nTalk:F63 Condor/@comment-26411381-20151030012820/@comment-209.52.10.218-20151115002206\nTalk:F63 Condor/@comment-26444643-20151021131155\nTalk:F63 Condor/@comment-26444643-20151021131155/@comment-44180665-20200523161838\nTalk:F63 Condor/@comment-31094186-20171125171704\nTalk:F63 Condor/@comment-32497773-20190118143849\nTalk:F63 Condor/@comment-32497773-20190118143849/@comment-189.232.14.15-20190303195731\nTalk:F63 Condor/@comment-44180665-20200523162139\nTalk:F63 Condor/@comment-50.138.159.119-20160606171210\nTalk:F63 Condor/@comment-67.224.196.161-20161211021557\nTalk:F63 Condor/@comment-72.71.205.88-20150208082041\nTalk:F63 Condor/@comment-74.249.117.138-20190317072515\nTalk:F63 Condor/@comment-74.249.117.138-20190317072515/@comment-2602:306:CE29:B0D0:5D22:1D64:56F:78C2-20191006002924\nTalk:F63 Condor/@comment-74.90.92.146-20150530035657\nTalk:F63 Condor/@comment-74.90.92.146-20150530035657/@comment-25335609-20150601020625\nTalk:F63 Condor/@comment-74.90.92.146-20150530035657/@comment-25335609-20150602012524\nTalk:F63 Condor/@comment-74.90.92.146-20150530035657/@comment-67.186.92.128-20150601051237\nTalk:F63 Condor/@comment-74.90.92.146-20150530035657/@comment-67.186.92.128-20150602045643\nTalk:F63 Condor/@comment-79.117.38.118-20150627090603\nTalk:F63 Condor/@comment-79.117.38.118-20150627090603/@comment-206.208.187.105-20161219190403\nTalk:F63 Condor/@comment-79.117.38.118-20150627090603/@comment-26009169-20150627120939\nTalk:F63 Condor/@comment-80.60.35.115-20150308104115\nTalk:F63 Condor/@comment-80.60.35.115-20150308104115/@comment-26009169-20150308125913\nTalk:F63 Condor/@comment-81.84.154.81-20150412132330\nTalk:F63 Condor/@comment-81.98.192.213-20150130160609\nTalk:F63 Condor/@comment-81.98.192.213-20150130160609/@comment-81.98.192.213-20150130160722\nTalk:F63 Condor/@comment-81.98.192.213-20150130160609/@comment-90.219.125.40-20150323210759\nTalk:F63 Condor/@comment-82.6.176.130-20160812041231\nTalk:F63 Condor/@comment-82.6.176.130-20160812041231/@comment-188.251.171.157-20161019202445\nTalk:F63 Condor/@comment-82.6.176.130-20160812041231/@comment-206.208.187.105-20161219165722\nTalk:F63 Condor/@comment-84.168.114.123-20150629194441\nTalk:F63 Condor/@comment-84.168.114.123-20150629194441/@comment-26009169-20150629200721\nTalk:F63 Condor/@comment-86.26.19.129-20150523144751\nTalk:F63 Condor/@comment-86.26.19.129-20150523144751/@comment-122.109.55.212-20150818092211\nTalk:F63 Condor/@comment-86.26.19.129-20150523144751/@comment-14.203.175.212-20150921084246\nTalk:F63 Condor/@comment-86.26.19.129-20150523144751/@comment-192.136.161.52-20161219211159\nTalk:F63 Condor/@comment-86.26.19.129-20150523144751/@comment-206.208.187.105-20161219190554\nTalk:F63 Condor/@comment-86.26.19.129-20150523144751/@comment-45.50.114.69-20150731060826\nTalk:F63 Condor/@comment-86.26.19.129-20150523144751/@comment-69.141.172.169-20151002201135\nTalk:F63 Condor/@comment-86.26.19.129-20150523144751/@comment-73.1.55.15-20150824031959\nTalk:F63 Condor/@comment-90.208.6.45-20170115154350\nTalk:F63 Condor/@comment-90.208.6.45-20170115154350/@comment-24501881-20170115190448\nTalk:F63 Condor/@comment-90.208.6.45-20170115154350/@comment-77.103.1.252-20170517205707\nTalk:F63 Condor/@comment-90.208.6.45-20170115154350/@comment-90.208.6.45-20170115171229\nTalk:F63 Condor/@comment-91.11.91.178-20150811074150\nTalk:F63 Condor/@comment-96.238.190.51-20140923181928\nTalk:F63 Condor/@comment-96.238.190.51-20140923181928/@comment-101.184.150.174-20160109234423\nTalk:F63 Condor/@comment-96.238.190.51-20140923181928/@comment-118.93.245.132-20150112091841\nTalk:F63 Condor/@comment-96.238.190.51-20140923181928/@comment-24.185.107.228-20150203213236\nTalk:F63 Condor/@comment-96.238.190.51-20140923181928/@comment-25335609-20140923230047\nTalk:F63 Condor/@comment-96.238.190.51-20140923181928/@comment-45.50.114.69-20150731061726\nTalk:F63 Condor/@comment-96.238.190.51-20140923181928/@comment-73.164.211.180-20150106140029\nTalk:F63 Condor/@comment-96.238.190.51-20140923181928/@comment-76.109.102.180-20150109042407\nTalk:F63 Condor/@comment-96.238.190.51-20140923181928/@comment-76.124.162.53-20150211223233\nTalk:F63 Condor/@comment-96.238.190.51-20140923181928/@comment-77.96.123.183-20150110202712\nTalk:FSD Interrupt/@comment-2A00:23C4:FB8D:A200:81BA:934D:EE5C:4D16-20190827175332\nTalk:FSD Interrupt/@comment-2A00:23C4:FB8D:A200:81BA:934D:EE5C:4D16-20190827175332/@comment-173.216.30.63-20191211211044\nTalk:FSD Interrupt/@comment-2A00:23C4:FB8D:A200:81BA:934D:EE5C:4D16-20190827175332/@comment-194.80.246.1-20200123160500\nTalk:FSD Interrupt/@comment-2A00:23C4:FB8D:A200:81BA:934D:EE5C:4D16-20190827175332/@comment-24.254.170.239-20190914011833\nTalk:FSD Interrupt/@comment-2A00:23C4:FB8D:A200:81BA:934D:EE5C:4D16-20190827175332/@comment-44180665-20200525142652\nTalk:FSD Supercharging/@comment-159.146.52.222-20190723224504\nTalk:FSD Supercharging/@comment-191.183.166.200-20181017060047\nTalk:FSD Supercharging/@comment-191.183.166.200-20181017060047/@comment-36366583-20200803210312\nTalk:FSD Supercharging/@comment-2601:184:4A7F:F253:A49E:747F:83D3:C014-20171228135630\nTalk:FSD Supercharging/@comment-2601:184:4A7F:F253:A49E:747F:83D3:C014-20171228135630/@comment-72.228.36.130-20171228190441\nTalk:FSD Supercharging/@comment-2601:184:4A7F:F253:A49E:747F:83D3:C014-20171228135630/@comment-90.200.45.179-20190208161419\nTalk:FSD Supercharging/@comment-2A01:CB08:6FD:5900:506A:9025:D549:4A94-20180701073250\nTalk:FSD Supercharging/@comment-2A01:CB08:6FD:5900:506A:9025:D549:4A94-20180701073250/@comment-176.106.185.216-20180708170107\nTalk:FSD Supercharging/@comment-2A01:CB08:6FD:5900:506A:9025:D549:4A94-20180701073250/@comment-2A02:1810:9C12:BC00:3577:AB3D:620D:7B4B-20180814111625\nTalk:FSD Supercharging/@comment-2A01:CB08:6FD:5900:506A:9025:D549:4A94-20180701073250/@comment-80.5.148.206-20180818185337\nTalk:FSD Supercharging/@comment-3032707-20161104205516\nTalk:FSD Supercharging/@comment-3032707-20161104205516/@comment-45789505-20200514140247\nTalk:FSD Supercharging/@comment-46.5.2.238-20170306174128\nTalk:FSD Supercharging/@comment-46.5.2.238-20170306174128/@comment-2155082-20170306174754\nTalk:FSD Supercharging/@comment-80.134.43.83-20200215170527\nTalk:FSD Supercharging/@comment-80.134.43.83-20200215170527/@comment-34342495-20200430081318\nTalk:FSD Supercharging/@comment-98.117.91.42-20170704151150\nTalk:FSD Supercharging/@comment-98.117.91.42-20170704151150/@comment-34818562-20180427170141\nTalk:FSD Supercharging/@comment-98.117.91.42-20170704151150/@comment-67.162.215.92-20180112050454\nTalk:FSD Supercharging/@comment-98.117.91.42-20170704151150/@comment-73.254.229.37-20180106061618\nTalk:FSD Supercharging/@comment-98.20.68.54-20170311222750\nTalk:FSD Supercharging/@comment-98.20.68.54-20170311222750/@comment-93.227.91.176-20170526012617\nTalk:Facece/@comment-101.185.72.206-20161223043935\nTalk:Facece/@comment-108.2.148.152-20170610024559\nTalk:Facece/@comment-108.2.148.152-20170610024559/@comment-30928085-20170610061447\nTalk:Facece/@comment-24.159.216.8-20170523173807\nTalk:Facece/@comment-24.159.216.8-20170523173807/@comment-31094186-20170904220331\nTalk:Facece/@comment-50.150.68.49-20151218032625\nTalk:Facece/@comment-50.150.68.49-20151218032625/@comment-115.134.41.55-20160102051221\nTalk:Facece/@comment-50.150.68.49-20151218032625/@comment-174.89.132.60-20170313054510\nTalk:Facece/@comment-83.145.238.35-20160126193944\nTalk:Facece/@comment-83.145.238.35-20160126193944/@comment-162.244.200.14-20170429094332\nTalk:Facece/@comment-83.145.238.35-20160126193944/@comment-66.109.235.218-20160819184033\nTalk:Facece/@comment-83.145.238.35-20160126193944/@comment-77.102.250.232-20170423163201\nTalk:Faction State/@comment-79.25.17.237-20150629115313\nTalk:Famine/@comment-108.246.40.159-20190610034249\nTalk:Famine/@comment-205.251.148.34-20190109021438\nTalk:Famine/@comment-212.247.15.114-20170505064348\nTalk:Famine/@comment-212.247.15.114-20170505064348/@comment-86.19.161.72-20170813211332\nTalk:Famine/@comment-2601:140:4000:2FB4:4DB1:A6A6:310C:7D17-20171222011716\nTalk:Famine/@comment-2601:140:4000:2FB4:4DB1:A6A6:310C:7D17-20171222011716/@comment-2601:140:4000:2FB4:4DB1:A6A6:310C:7D17-20171222011802\nTalk:Famine/@comment-71.12.150.53-20190813174528\nTalk:Far God cult/@comment-46834437-20200908134640\nTalk:Far God cult/@comment-64.178.155.107-20180908143416\nTalk:Farragut Battle Cruiser/@comment-101.161.56.213-20161129062348\nTalk:Farragut Battle Cruiser/@comment-104.148.151.68-20161218083642\nTalk:Farragut Battle Cruiser/@comment-104.148.151.68-20161218083642/@comment-104.148.151.68-20161218083924\nTalk:Farragut Battle Cruiser/@comment-108.16.36.43-20170305180644\nTalk:Farragut Battle Cruiser/@comment-108.2.143.41-20150927184456\nTalk:Farragut Battle Cruiser/@comment-108.2.143.41-20150927184456/@comment-156.3.54.206-20150930210914\nTalk:Farragut Battle Cruiser/@comment-108.2.143.41-20150927184456/@comment-174.71.84.171-20151003082848\nTalk:Farragut Battle Cruiser/@comment-109.228.152.6-20180324222045\nTalk:Farragut Battle Cruiser/@comment-110.22.41.252-20150622133635\nTalk:Farragut Battle Cruiser/@comment-129.101.218.67-20161211234445\nTalk:Farragut Battle Cruiser/@comment-151.226.201.155-20141218220146\nTalk:Farragut Battle Cruiser/@comment-151.226.201.155-20141218220146/@comment-26227424-20160608181523\nTalk:Farragut Battle Cruiser/@comment-156.3.54.202-20150427150145\nTalk:Farragut Battle Cruiser/@comment-156.3.54.203-20150601163147\nTalk:Farragut Battle Cruiser/@comment-156.3.54.203-20150601163147/@comment-209.152.108.167-20160621162858\nTalk:Farragut Battle Cruiser/@comment-156.3.54.206-20150930210717\nTalk:Farragut Battle Cruiser/@comment-156.3.54.206-20150930210717/@comment-125.237.3.1-20161013203914\nTalk:Farragut Battle Cruiser/@comment-156.3.54.206-20150930210717/@comment-174.71.84.171-20151003082738\nTalk:Farragut Battle Cruiser/@comment-156.3.54.206-20150930210717/@comment-188.180.252.228-20151219005929\nTalk:Farragut Battle Cruiser/@comment-156.3.54.206-20150930210717/@comment-199.212.86.77-20160415125356\nTalk:Farragut Battle Cruiser/@comment-156.3.54.206-20150930210717/@comment-26227424-20160608181208\nTalk:Farragut Battle Cruiser/@comment-156.3.54.206-20150930210717/@comment-26419093-20151001021023\nTalk:Farragut Battle Cruiser/@comment-156.3.54.206-20150930210717/@comment-27385929-20151219044921\nTalk:Farragut Battle Cruiser/@comment-156.3.54.206-20150930211124\nTalk:Farragut Battle Cruiser/@comment-172.110.128.27-20190822224224\nTalk:Farragut Battle Cruiser/@comment-173.65.131.178-20160323204516\nTalk:Farragut Battle Cruiser/@comment-173.65.131.178-20160323204516/@comment-192.136.172.90-20160323205221\nTalk:Farragut Battle Cruiser/@comment-173.65.131.178-20160323204516/@comment-2155082-20160324051743\nTalk:Farragut Battle Cruiser/@comment-174.102.96.147-20150114074536\nTalk:Farragut Battle Cruiser/@comment-174.102.96.147-20150114074536/@comment-12138097-20150114081643\nTalk:Farragut Battle Cruiser/@comment-174.102.96.147-20150114074536/@comment-85.166.74.253-20150115120137\nTalk:Farragut Battle Cruiser/@comment-174.71.84.171-20151003083203\nTalk:Farragut Battle Cruiser/@comment-174.71.84.171-20151003083203/@comment-24.246.118.194-20151013155903\nTalk:Farragut Battle Cruiser/@comment-183.177.169.216-20140812131058\nTalk:Farragut Battle Cruiser/@comment-183.177.169.216-20140812131058/@comment-166.137.139.91-20141206084123\nTalk:Farragut Battle Cruiser/@comment-183.177.169.216-20140812131058/@comment-202.36.179.100-20140815013422\nTalk:Farragut Battle Cruiser/@comment-183.177.169.216-20140812131058/@comment-207.179.224.29-20151013154724\nTalk:Farragut Battle Cruiser/@comment-183.177.169.216-20140812131058/@comment-26227424-20160608181501\nTalk:Farragut Battle Cruiser/@comment-183.177.169.216-20140812131058/@comment-31.85.191.93-20141213172421\nTalk:Farragut Battle Cruiser/@comment-183.177.169.216-20140812131058/@comment-700991-20141214132211\nTalk:Farragut Battle Cruiser/@comment-183.177.169.216-20140812131058/@comment-72.46.217.207-20141006211557\nTalk:Farragut Battle Cruiser/@comment-183.177.169.216-20140812131058/@comment-77.53.215.6-20141223183003\nTalk:Farragut Battle Cruiser/@comment-183.177.169.216-20140812131058/@comment-87.115.218.141-20150407062812\nTalk:Farragut Battle Cruiser/@comment-183.177.169.216-20140812131058/@comment-90.203.125.65-20141026135603\nTalk:Farragut Battle Cruiser/@comment-183.177.169.216-20140812131058/@comment-92.104.139.72-20141223210406\nTalk:Farragut Battle Cruiser/@comment-183.177.169.216-20140812131058/@comment-94.74.230.138-20150325212939\nTalk:Farragut Battle Cruiser/@comment-183.177.169.216-20140812131058/@comment-97.118.56.116-20141120061800\nTalk:Farragut Battle Cruiser/@comment-184.159.128.62-20171016133305\nTalk:Farragut Battle Cruiser/@comment-184.159.128.62-20171016133305/@comment-39085855-20200217183834\nTalk:Farragut Battle Cruiser/@comment-184.159.128.62-20171016133305/@comment-72.201.122.102-20190222043050\nTalk:Farragut Battle Cruiser/@comment-184.180.235.196-20180516203416\nTalk:Farragut Battle Cruiser/@comment-189.32.236.141-20170124205803\nTalk:Farragut Battle Cruiser/@comment-189.32.236.141-20170124205803/@comment-200.182.235.9-20171002154233\nTalk:Farragut Battle Cruiser/@comment-189.32.236.141-20170124205803/@comment-50.106.225.1-20180127072610\nTalk:Farragut Battle Cruiser/@comment-192.136.172.90-20160329195618\nTalk:Farragut Battle Cruiser/@comment-192.136.173.202-20160426210840\nTalk:Farragut Battle Cruiser/@comment-1935106-20160902051534\nTalk:Farragut Battle Cruiser/@comment-1935106-20160902051534/@comment-26810597-20160903004423\nTalk:Farragut Battle Cruiser/@comment-1935106-20160902051534/@comment-5959508-20160902111829\nTalk:Farragut Battle Cruiser/@comment-1935106-20160902051534/@comment-80.94.160.227-20161010084152\nTalk:Farragut Battle Cruiser/@comment-198.254.196.127-20140628003322\nTalk:Farragut Battle Cruiser/@comment-198.254.196.127-20140628003322/@comment-125.237.3.1-20161013204107\nTalk:Farragut Battle Cruiser/@comment-198.254.196.127-20140628003322/@comment-217.123.142.75-20140918222740\nTalk:Farragut Battle Cruiser/@comment-198.254.196.127-20140628003322/@comment-86.182.208.202-20141123051735\nTalk:Farragut Battle Cruiser/@comment-2.219.113.13-20160522175042\nTalk:Farragut Battle Cruiser/@comment-2.219.113.13-20160522175042/@comment-125.237.3.1-20161013203405\nTalk:Farragut Battle Cruiser/@comment-2001:48F8:3037:FC2:89E7:CF7C:305E:E68C-20170715015847\nTalk:Farragut Battle Cruiser/@comment-203.218.79.92-20160903150924\nTalk:Farragut Battle Cruiser/@comment-217.215.8.123-20170204152313\nTalk:Farragut Battle Cruiser/@comment-217.44.204.210-20160512173922\nTalk:Farragut Battle Cruiser/@comment-217.44.204.210-20160512173922/@comment-26449206-20160512210724\nTalk:Farragut Battle Cruiser/@comment-24.246.118.194-20151020155705\nTalk:Farragut Battle Cruiser/@comment-24.45.89.88-20150327035220\nTalk:Farragut Battle Cruiser/@comment-24.99.224.197-20150412151953\nTalk:Farragut Battle Cruiser/@comment-24.99.224.197-20150412151953/@comment-109.236.97.62-20150414162615\nTalk:Farragut Battle Cruiser/@comment-24.99.224.197-20150412151953/@comment-26033489-20150413040635\nTalk:Farragut Battle Cruiser/@comment-25074307-20140629201601\nTalk:Farragut Battle Cruiser/@comment-25074307-20140629201601/@comment-139.194.104.101-20141125174607\nTalk:Farragut Battle Cruiser/@comment-2601:680:8100:560:B5DA:94E6:F7A4:6DA2-20191025193025\nTalk:Farragut Battle Cruiser/@comment-2604:2D80:8806:8B74:0:0:0:6-20180515043257\nTalk:Farragut Battle Cruiser/@comment-27.55.16.151-20160407132821\nTalk:Farragut Battle Cruiser/@comment-27.55.16.151-20160407132821/@comment-184.162.101.53-20160602194701\nTalk:Farragut Battle Cruiser/@comment-27.55.16.151-20160407132821/@comment-26227424-20160608175733\nTalk:Farragut Battle Cruiser/@comment-27.55.16.151-20160407132821/@comment-27115814-20160503161727\nTalk:Farragut Battle Cruiser/@comment-27.55.16.151-20160407132821/@comment-27762936-20160407143215\nTalk:Farragut Battle Cruiser/@comment-27032150-20151022070602\nTalk:Farragut Battle Cruiser/@comment-27032150-20151022070602/@comment-26449206-20151106005338\nTalk:Farragut Battle Cruiser/@comment-27032150-20151022070602/@comment-72.241.143.238-20151225000526\nTalk:Farragut Battle Cruiser/@comment-27385929-20151216053829\nTalk:Farragut Battle Cruiser/@comment-27385929-20151216053829/@comment-125.237.3.1-20161013203544\nTalk:Farragut Battle Cruiser/@comment-27762936-20160407043836\nTalk:Farragut Battle Cruiser/@comment-30204622-20170221142238\nTalk:Farragut Battle Cruiser/@comment-31094186-20180125194738\nTalk:Farragut Battle Cruiser/@comment-31094186-20180125194738/@comment-45612255-20200528222140\nTalk:Farragut Battle Cruiser/@comment-31094186-20180125194738/@comment-68.186.130.248-20180415225036\nTalk:Farragut Battle Cruiser/@comment-36352121-20190118230346\nTalk:Farragut Battle Cruiser/@comment-36352121-20190118230346/@comment-62.178.55.21-20190526141309\nTalk:Farragut Battle Cruiser/@comment-37.201.2.142-20161219180057\nTalk:Farragut Battle Cruiser/@comment-37.201.2.142-20161219180057/@comment-188.106.79.146-20170105004805\nTalk:Farragut Battle Cruiser/@comment-37.201.2.142-20161219180057/@comment-192.136.161.52-20161219211612\nTalk:Farragut Battle Cruiser/@comment-37.201.2.142-20161219180057/@comment-27092762-20170219201000\nTalk:Farragut Battle Cruiser/@comment-5.49.89.6-20171115175926\nTalk:Farragut Battle Cruiser/@comment-50.139.97.125-20150114053802\nTalk:Farragut Battle Cruiser/@comment-5327621-20161111223652\nTalk:Farragut Battle Cruiser/@comment-58.6.69.183-20160826122510\nTalk:Farragut Battle Cruiser/@comment-60.229.147.15-20160122063925\nTalk:Farragut Battle Cruiser/@comment-60.229.147.15-20160122063925/@comment-70.69.0.45-20160123032108\nTalk:Farragut Battle Cruiser/@comment-67.184.107.44-20160323054217\nTalk:Farragut Battle Cruiser/@comment-69.11.150.23-20160721194805\nTalk:Farragut Battle Cruiser/@comment-70.39.7.237-20170404075710\nTalk:Farragut Battle Cruiser/@comment-70.69.0.45-20160122042544\nTalk:Farragut Battle Cruiser/@comment-70.69.0.45-20160122042544/@comment-192.136.172.239-20160210180732\nTalk:Farragut Battle Cruiser/@comment-70.69.0.45-20160122042544/@comment-70.69.0.45-20160123032125\nTalk:Farragut Battle Cruiser/@comment-70.69.0.45-20160122042544/@comment-70.69.0.45-20160123055629\nTalk:Farragut Battle Cruiser/@comment-71.60.253.115-20161029211623\nTalk:Farragut Battle Cruiser/@comment-71.60.253.115-20161029211623/@comment-77.102.250.232-20170306112850\nTalk:Farragut Battle Cruiser/@comment-71.95.100.70-20141221054052\nTalk:Farragut Battle Cruiser/@comment-72.224.253.20-20150326172736\nTalk:Farragut Battle Cruiser/@comment-74.90.92.146-20151017210021\nTalk:Farragut Battle Cruiser/@comment-77.102.250.232-20170224112328\nTalk:Farragut Battle Cruiser/@comment-77.57.81.27-20150915173135\nTalk:Farragut Battle Cruiser/@comment-78.43.187.69-20150419143310\nTalk:Farragut Battle Cruiser/@comment-78.43.187.69-20150419143310/@comment-101.98.150.255-20151022054438\nTalk:Farragut Battle Cruiser/@comment-79.220.214.2-20150413141252\nTalk:Farragut Battle Cruiser/@comment-80.94.160.227-20161010084455\nTalk:Farragut Battle Cruiser/@comment-80.94.160.227-20161010084455/@comment-2155082-20161011035522\nTalk:Farragut Battle Cruiser/@comment-82.20.43.167-20151107020815\nTalk:Farragut Battle Cruiser/@comment-84.143.11.152-20150929130848\nTalk:Farragut Battle Cruiser/@comment-84.143.11.152-20150929143609\nTalk:Farragut Battle Cruiser/@comment-84.143.11.152-20150929143609/@comment-156.3.54.206-20150930210753\nTalk:Farragut Battle Cruiser/@comment-84.143.11.152-20150929143609/@comment-188.180.252.228-20151219010025\nTalk:Farragut Battle Cruiser/@comment-84.143.11.152-20150929143609/@comment-77.116.150.167-20160117162159\nTalk:Farragut Battle Cruiser/@comment-84.208.172.79-20150603003437\nTalk:Farragut Battle Cruiser/@comment-84.208.172.79-20150603003437/@comment-156.3.54.203-20150610164830\nTalk:Farragut Battle Cruiser/@comment-84.208.172.79-20150603003437/@comment-24810544-20150831025228\nTalk:Farragut Battle Cruiser/@comment-84.208.172.79-20150603003437/@comment-62.47.233.109-20150804144205\nTalk:Farragut Battle Cruiser/@comment-86.26.19.129-20150523144004\nTalk:Farragut Battle Cruiser/@comment-86.26.19.129-20150523144004/@comment-156.3.54.202-20150527151453\nTalk:Farragut Battle Cruiser/@comment-86.26.20.73-20160126014534\nTalk:Farragut Battle Cruiser/@comment-89.151.148.222-20161216233711\nTalk:Farragut Battle Cruiser/@comment-97.84.134.46-20161205234951\nTalk:Farragut Battle Cruiser/@comment-98.101.226.187-20161130150810\nTalk:Farragut Battle Cruiser/@comment-98.22.222.255-20190816171618\nTalk:Farragut Battle Cruiser/@comment-99.13.115.50-20150214025812\nTalk:Fast Charge/@comment-97.120.145.89-20190115224907\nTalk:Fast Charge/@comment-97.120.145.89-20190115224907/@comment-34934046-20190129012513\nTalk:Faster Boot Sequence Frame Shift Drive/@comment-173.178.71.98-20180316225237\nTalk:Faster Boot Sequence Frame Shift Drive/@comment-25803634-20180330033400\nTalk:Faster Boot Sequence Frame Shift Drive/@comment-25803634-20180330033400/@comment-2154860-20200601220828\nTalk:Faster Boot Sequence Frame Shift Drive/@comment-25803634-20180330033400/@comment-75.132.199.166-20180330125601\nTalk:Faster Boot Sequence Frame Shift Drive/@comment-25803634-20180330033400/@comment-97.77.168.98-20190628023944\nTalk:Faster Boot Sequence Frame Shift Drive/@comment-2600:6C5C:6C00:3B26:6C2F:BF72:839C:FB55-20171112232849\nTalk:Faster Boot Sequence Frame Shift Drive/@comment-2600:6C5C:6C00:3B26:6C2F:BF72:839C:FB55-20171112232849/@comment-33679783-20180206015349\nTalk:Faulcon DeLacy/@comment-206.47.100.175-20151001174649\nTalk:Faulcon DeLacy/@comment-206.47.100.175-20151001174649/@comment-12.5.54.135-20151027142033\nTalk:Faulcon DeLacy/@comment-206.47.100.175-20151001174649/@comment-27032150-20151002091812\nTalk:Faulcon DeLacy/@comment-206.47.100.175-20151001174649/@comment-27032150-20151027142606\nTalk:Faulcon DeLacy/@comment-206.47.100.175-20151001174649/@comment-70.30.82.255-20151028015115\nTalk:Federal Assault Ship/@comment-107.141.65.99-20150904101934\nTalk:Federal Assault Ship/@comment-107.141.65.99-20150904101934/@comment-99.135.98.174-20150904210715\nTalk:Federal Assault Ship/@comment-108.89.113.239-20160622050928\nTalk:Federal Assault Ship/@comment-109.72.12.26-20160306213416\nTalk:Federal Assault Ship/@comment-109.72.12.26-20160306213416/@comment-162.25.24.153-20160307160728\nTalk:Federal Assault Ship/@comment-109.91.37.195-20151009080515\nTalk:Federal Assault Ship/@comment-114.72.7.118-20160225093704\nTalk:Federal Assault Ship/@comment-114.72.7.118-20160225093704/@comment-162.25.24.153-20160225105209\nTalk:Federal Assault Ship/@comment-114.72.7.118-20160225093704/@comment-188.230.130.164-20160228182034\nTalk:Federal Assault Ship/@comment-114.72.7.118-20160225093704/@comment-4986699-20160228192302\nTalk:Federal Assault Ship/@comment-123.2.197.77-20170809102037\nTalk:Federal Assault Ship/@comment-123.2.197.77-20170809102037/@comment-123.2.197.77-20170809104133\nTalk:Federal Assault Ship/@comment-123.2.197.77-20170809102037/@comment-192.136.161.6-20170809124612\nTalk:Federal Assault Ship/@comment-123.2.197.77-20170809102037/@comment-4986699-20170810193933\nTalk:Federal Assault Ship/@comment-123.2.197.77-20170809102037/@comment-94.197.121.225-20180131230443\nTalk:Federal Assault Ship/@comment-123.2.197.77-20170809102037/@comment-98.193.10.19-20181111185228\nTalk:Federal Assault Ship/@comment-14.0.209.53-20151214131349\nTalk:Federal Assault Ship/@comment-14.0.209.53-20151214131349/@comment-14.0.209.53-20151214131502\nTalk:Federal Assault Ship/@comment-150.208.129.188-20170426144608\nTalk:Federal Assault Ship/@comment-150.208.129.188-20170426144608/@comment-6477498-20180103181412\nTalk:Federal Assault Ship/@comment-151.225.213.103-20151007144725\nTalk:Federal Assault Ship/@comment-151.225.213.103-20151007144725/@comment-86.174.159.100-20151007195218\nTalk:Federal Assault Ship/@comment-156.3.54.203-20150908155309\nTalk:Federal Assault Ship/@comment-156.3.54.203-20150908155309/@comment-151.226.122.36-20150918203547\nTalk:Federal Assault Ship/@comment-156.3.54.203-20150908155309/@comment-151.226.122.36-20150918203607\nTalk:Federal Assault Ship/@comment-156.3.54.203-20150908155309/@comment-156.3.54.203-20150916185513\nTalk:Federal Assault Ship/@comment-156.3.54.203-20150908155309/@comment-174.125.3.168-20150929192708\nTalk:Federal Assault Ship/@comment-156.3.54.203-20150908155309/@comment-26304615-20150915195220\nTalk:Federal Assault Ship/@comment-160.3.38.154-20190423182022\nTalk:Federal Assault Ship/@comment-164.39.72.34-20151021123200\nTalk:Federal Assault Ship/@comment-164.39.72.34-20151021123200/@comment-27032150-20151116091831\nTalk:Federal Assault Ship/@comment-164.39.72.34-20151021123200/@comment-73.2.51.40-20151116051221\nTalk:Federal Assault Ship/@comment-164.39.72.34-20151021123200/@comment-81.242.254.116-20151021183323\nTalk:Federal Assault Ship/@comment-166.109.224.51-20190214145154\nTalk:Federal Assault Ship/@comment-166.109.224.51-20190214145154/@comment-166.109.224.51-20191119131415\nTalk:Federal Assault Ship/@comment-166.109.224.51-20190214145154/@comment-192.136.170.98-20190214190231\nTalk:Federal Assault Ship/@comment-179.154.69.83-20180116024517\nTalk:Federal Assault Ship/@comment-179.154.69.83-20180116024517/@comment-170.211.150.62-20180207211916\nTalk:Federal Assault Ship/@comment-179.154.69.83-20180116024517/@comment-187.145.25.159-20180119033937\nTalk:Federal Assault Ship/@comment-179.154.69.83-20180116024517/@comment-187.64.110.30-20180120210149\nTalk:Federal Assault Ship/@comment-179.154.69.83-20180116024517/@comment-192.136.161.33-20180116041932\nTalk:Federal Assault Ship/@comment-179.154.69.83-20180116024517/@comment-30928085-20180116064853\nTalk:Federal Assault Ship/@comment-179.154.69.83-20180116024517/@comment-32843761-20180116041833\nTalk:Federal Assault Ship/@comment-179.154.69.83-20180116024517/@comment-44180665-20200517160051\nTalk:Federal Assault Ship/@comment-179.154.69.83-20180116024517/@comment-4986699-20180811080725\nTalk:Federal Assault Ship/@comment-179.154.69.83-20180116024517/@comment-68.197.23.46-20190621024338\nTalk:Federal Assault Ship/@comment-179.154.69.83-20180116024517/@comment-69.114.195.213-20180817021024\nTalk:Federal Assault Ship/@comment-193.191.150.13-20160510090700\nTalk:Federal Assault Ship/@comment-195.189.180.51-20151009152654\nTalk:Federal Assault Ship/@comment-195.189.180.51-20151009152654/@comment-109.91.37.195-20151009154106\nTalk:Federal Assault Ship/@comment-195.189.180.51-20151009152654/@comment-109.91.37.195-20151009160900\nTalk:Federal Assault Ship/@comment-195.189.180.51-20151009152654/@comment-195.189.180.51-20151017010405\nTalk:Federal Assault Ship/@comment-195.189.180.51-20151009152654/@comment-71.76.244.78-20151017165355\nTalk:Federal Assault Ship/@comment-2.71.33.124-20150728215653\nTalk:Federal Assault Ship/@comment-2.71.33.124-20150728215653/@comment-26116574-20150728221632\nTalk:Federal Assault Ship/@comment-2.71.33.124-20150728215653/@comment-79.97.180.189-20150803010444\nTalk:Federal Assault Ship/@comment-203.59.92.8-20151008113430\nTalk:Federal Assault Ship/@comment-203.59.92.8-20151008113430/@comment-203.59.44.242-20151011120859\nTalk:Federal Assault Ship/@comment-203.59.92.8-20151008113430/@comment-203.59.92.8-20151008113507\nTalk:Federal Assault Ship/@comment-203.59.92.8-20151008113430/@comment-66.131.205.193-20151013071251\nTalk:Federal Assault Ship/@comment-203.59.92.8-20151008113430/@comment-70.198.68.249-20151008143327\nTalk:Federal Assault Ship/@comment-2061482-20160323090452\nTalk:Federal Assault Ship/@comment-2061482-20160323090452/@comment-162.25.24.153-20160329141649\nTalk:Federal Assault Ship/@comment-2061482-20160323090452/@comment-188.230.130.164-20160327203356\nTalk:Federal Assault Ship/@comment-2061482-20160323090452/@comment-188.230.130.164-20160329174102\nTalk:Federal Assault Ship/@comment-2061482-20160323090452/@comment-2061482-20160328101804\nTalk:Federal Assault Ship/@comment-212.59.37.193-20150921111108\nTalk:Federal Assault Ship/@comment-212.59.37.193-20150921111108/@comment-156.3.54.204-20150922162502\nTalk:Federal Assault Ship/@comment-212.59.37.193-20150921111108/@comment-156.3.54.204-20150922163025\nTalk:Federal Assault Ship/@comment-212.59.37.193-20150921111108/@comment-26599825-20150921115631\nTalk:Federal Assault Ship/@comment-212.59.37.193-20150921111108/@comment-72.241.143.238-20151008070032\nTalk:Federal Assault Ship/@comment-212.59.37.193-20150921111108/@comment-746248-20151008062639\nTalk:Federal Assault Ship/@comment-212.59.37.193-20150921111108/@comment-746248-20151008074556\nTalk:Federal Assault Ship/@comment-212.59.37.193-20150921111108/@comment-95.238.224.233-20151017141827\nTalk:Federal Assault Ship/@comment-216.115.1.34-20190620033921\nTalk:Federal Assault Ship/@comment-25147822-20151007220201\nTalk:Federal Assault Ship/@comment-26009169-20150728225154\nTalk:Federal Assault Ship/@comment-2605:6000:F4C3:AE00:28E2:E9D8:DFF5:1978-20181217090943\nTalk:Federal Assault Ship/@comment-2605:6000:F4C3:AE00:28E2:E9D8:DFF5:1978-20181217090943/@comment-192.136.170.98-20181217170920\nTalk:Federal Assault Ship/@comment-2605:6000:F4C3:AE00:28E2:E9D8:DFF5:1978-20181217090943/@comment-2601:401:503:6110:48C5:67EE:4E6B:E9F5-20200201040316\nTalk:Federal Assault Ship/@comment-2605:6000:F4C3:AE00:28E2:E9D8:DFF5:1978-20181217090943/@comment-44180665-20200517155904\nTalk:Federal Assault Ship/@comment-2605:6000:F4C3:AE00:28E2:E9D8:DFF5:1978-20181217090943/@comment-68.197.23.46-20190621024013\nTalk:Federal Assault Ship/@comment-26116574-20150728205458\nTalk:Federal Assault Ship/@comment-26304615-20150903164735\nTalk:Federal Assault Ship/@comment-26810344-20160125135057\nTalk:Federal Assault Ship/@comment-26810344-20160125135057/@comment-64.127.136.202-20160125143146\nTalk:Federal Assault Ship/@comment-26810344-20170102183428\nTalk:Federal Assault Ship/@comment-26810344-20170102183428/@comment-30561179-20170214110323\nTalk:Federal Assault Ship/@comment-26937315-20151020145648\nTalk:Federal Assault Ship/@comment-26937315-20151020145648/@comment-27090681-20151020203112\nTalk:Federal Assault Ship/@comment-27022619-20150927025034\nTalk:Federal Assault Ship/@comment-27022619-20150927025034/@comment-70.198.71.44-20151001184420\nTalk:Federal Assault Ship/@comment-27022619-20150927025034/@comment-71.76.244.78-20151005012416\nTalk:Federal Assault Ship/@comment-27022619-20150927025034/@comment-82.18.105.167-20151006210807\nTalk:Federal Assault Ship/@comment-27032150-20151019101622\nTalk:Federal Assault Ship/@comment-27032150-20151019101622/@comment-194.106.220.84-20151020083134\nTalk:Federal Assault Ship/@comment-27115814-20160323211531\nTalk:Federal Assault Ship/@comment-27115814-20160323211531/@comment-162.25.24.153-20160405123335\nTalk:Federal Assault Ship/@comment-27115814-20160323211531/@comment-2607:FB90:4AB3:CAF7:8570:40C:4CC6:90BC-20170906142719\nTalk:Federal Assault Ship/@comment-27115814-20160323211531/@comment-44180665-20200517160523\nTalk:Federal Assault Ship/@comment-4986699-20151125211933\nTalk:Federal Assault Ship/@comment-4986699-20151125211933/@comment-101.183.32.93-20151130090623\nTalk:Federal Assault Ship/@comment-67.177.35.40-20150815082932\nTalk:Federal Assault Ship/@comment-67.177.35.40-20150815082932/@comment-67.177.35.40-20150815174856\nTalk:Federal Assault Ship/@comment-67.21.153.142-20170622134104\nTalk:Federal Assault Ship/@comment-67.21.153.142-20170622134104/@comment-166.137.139.115-20170629184747\nTalk:Federal Assault Ship/@comment-67.21.153.142-20170622134104/@comment-170.211.150.62-20171221201315\nTalk:Federal Assault Ship/@comment-67.21.153.142-20170622134104/@comment-44180665-20200517160229\nTalk:Federal Assault Ship/@comment-69.114.195.213-20180806131101\nTalk:Federal Assault Ship/@comment-69.114.195.213-20180806131101/@comment-4986699-20180811080608\nTalk:Federal Assault Ship/@comment-71.231.160.173-20180102142108\nTalk:Federal Assault Ship/@comment-71.231.160.173-20180102142108/@comment-30496832-20180102185409\nTalk:Federal Assault Ship/@comment-72.201.121.214-20150803193420\nTalk:Federal Assault Ship/@comment-72.201.121.214-20150803193420/@comment-78.49.81.200-20150808001730\nTalk:Federal Assault Ship/@comment-72.241.143.238-20151203133450\nTalk:Federal Assault Ship/@comment-72.241.143.238-20151203133450/@comment-25490957-20151204010003\nTalk:Federal Assault Ship/@comment-72.241.143.238-20151203133450/@comment-26372902-20160108205401\nTalk:Federal Assault Ship/@comment-73.2.51.40-20151114114305\nTalk:Federal Assault Ship/@comment-73.2.51.40-20151114114305/@comment-27536026-20160104175806\nTalk:Federal Assault Ship/@comment-73.2.51.40-20151114114305/@comment-4986699-20151125211601\nTalk:Federal Assault Ship/@comment-73.2.51.40-20151114114305/@comment-72.38.126.5-20160104175544\nTalk:Federal Assault Ship/@comment-73.2.51.40-20151114114305/@comment-73.151.104.224-20151116232458\nTalk:Federal Assault Ship/@comment-73.2.51.40-20151114114305/@comment-73.2.51.40-20151116050247\nTalk:Federal Assault Ship/@comment-746248-20151008061624\nTalk:Federal Assault Ship/@comment-746248-20151008061624/@comment-72.241.143.238-20151008070137\nTalk:Federal Assault Ship/@comment-746248-20151008061624/@comment-73.1.55.15-20151008072523\nTalk:Federal Assault Ship/@comment-746248-20151008061624/@comment-73.1.55.15-20151111053639\nTalk:Federal Assault Ship/@comment-746248-20151008061624/@comment-746248-20151017134919\nTalk:Federal Assault Ship/@comment-746248-20151008061624/@comment-75.64.191.53-20151027033058\nTalk:Federal Assault Ship/@comment-75.140.158.219-20160202043041\nTalk:Federal Assault Ship/@comment-75.140.158.219-20160202043041/@comment-192.136.172.239-20160210205257\nTalk:Federal Assault Ship/@comment-75.140.158.219-20160202043041/@comment-33823123-20180619113831\nTalk:Federal Assault Ship/@comment-75.140.158.219-20160202043041/@comment-85.166.255.240-20160215164247\nTalk:Federal Assault Ship/@comment-77.65.84.4-20170727212847\nTalk:Federal Assault Ship/@comment-77.65.84.4-20170727212847/@comment-5.92.78.27-20170728055526\nTalk:Federal Assault Ship/@comment-78.49.81.200-20150808002104\nTalk:Federal Assault Ship/@comment-78.49.81.200-20150808002104/@comment-78.49.81.200-20150808002138\nTalk:Federal Assault Ship/@comment-78.49.81.200-20150808002104/@comment-82.226.121.139-20150810024224\nTalk:Federal Assault Ship/@comment-82.226.121.139-20150803015032\nTalk:Federal Assault Ship/@comment-82.3.208.151-20151230152440\nTalk:Federal Assault Ship/@comment-82.3.208.151-20151230152440/@comment-26372902-20151230193144\nTalk:Federal Assault Ship/@comment-82.3.208.151-20151230152440/@comment-82.3.208.151-20151230155308\nTalk:Federal Assault Ship/@comment-84.113.160.103-20160212144922\nTalk:Federal Assault Ship/@comment-84.113.160.103-20160212144922/@comment-108.41.120.242-20160217162638\nTalk:Federal Assault Ship/@comment-84.113.160.103-20160212144922/@comment-162.25.24.153-20160216154802\nTalk:Federal Assault Ship/@comment-84.113.160.103-20160212144922/@comment-192.136.172.239-20160212172355\nTalk:Federal Assault Ship/@comment-89.103.44.238-20150806161547\nTalk:Federal Assault Ship/@comment-89.103.44.238-20150806161547/@comment-99.135.98.174-20150904211111\nTalk:Federal Assault Ship/@comment-89.103.44.238-20150806161547/@comment-99.135.98.174-20150904211149\nTalk:Federal Assault Ship/@comment-90.200.46.38-20181114171421\nTalk:Federal Assault Ship/@comment-90.200.46.38-20181114171421/@comment-2602:306:CE29:B0D0:5116:F35D:1759:419F-20191008225234\nTalk:Federal Assault Ship/@comment-90.200.46.38-20181114171421/@comment-30309427-20181217192845\nTalk:Federal Assault Ship/@comment-90.200.46.38-20181114171421/@comment-30320815-20181118202847\nTalk:Federal Assault Ship/@comment-91.11.91.178-20150803100446\nTalk:Federal Assault Ship/@comment-91.155.244.212-20151101182010\nTalk:Federal Assault Ship/@comment-91.155.244.212-20151101182010/@comment-108.246.28.95-20151111163741\nTalk:Federal Assault Ship/@comment-91.155.244.212-20151101182010/@comment-72.241.143.238-20151203133524\nTalk:Federal Assault Ship/@comment-91.155.244.212-20151101182010/@comment-99.239.198.38-20151119075501\nTalk:Federal Assault Ship/@comment-98.193.10.19-20181111185034\nTalk:Federal Assault Ship/@comment-98.193.10.19-20181111185034/@comment-30320815-20181118203921\nTalk:Federal Assault Ship/@comment-99.239.198.38-20160302150251\nTalk:Federal Assault Ship/@comment-99.239.198.38-20160302150251/@comment-31.52.217.254-20160319215232\nTalk:Federal Corvette/@comment-101.184.150.174-20160109234906\nTalk:Federal Corvette/@comment-101.184.150.174-20160109234906/@comment-101.184.150.174-20160112035330\nTalk:Federal Corvette/@comment-101.184.150.174-20160109234906/@comment-101.184.150.174-20160113052609\nTalk:Federal Corvette/@comment-101.184.150.174-20160109234906/@comment-173.80.93.74-20160112155023\nTalk:Federal Corvette/@comment-101.184.150.174-20160109234906/@comment-192.136.172.239-20160204213624\nTalk:Federal Corvette/@comment-101.184.150.174-20160109234906/@comment-2601:243:480:98D9:1922:DE3E:510A:BD81-20180218234422\nTalk:Federal Corvette/@comment-101.184.150.174-20160109234906/@comment-2601:243:480:98D9:1922:DE3E:510A:BD81-20180218234508\nTalk:Federal Corvette/@comment-101.184.150.174-20160109234906/@comment-26391992-20160111105514\nTalk:Federal Corvette/@comment-101.184.150.174-20160109234906/@comment-26391992-20160114074644\nTalk:Federal Corvette/@comment-101.184.150.174-20160109234906/@comment-73.18.226.254-20160112030654\nTalk:Federal Corvette/@comment-106.1.181.151-20160318095804\nTalk:Federal Corvette/@comment-106.1.181.151-20160318095804/@comment-106.1.181.151-20160318095949\nTalk:Federal Corvette/@comment-106.1.181.151-20160318095804/@comment-106.1.181.151-20160324163529\nTalk:Federal Corvette/@comment-106.1.181.151-20160318095804/@comment-206.174.243.110-20160325033640\nTalk:Federal Corvette/@comment-107.218.198.79-20151117065045\nTalk:Federal Corvette/@comment-107.218.198.79-20151117065045/@comment-195.74.51.133-20151118200818\nTalk:Federal Corvette/@comment-107.218.198.79-20151117065045/@comment-204.112.5.230-20151117205459\nTalk:Federal Corvette/@comment-107.218.198.79-20151117065045/@comment-27115814-20151117182648\nTalk:Federal Corvette/@comment-107.218.198.79-20151117065045/@comment-27198286-20151117191125\nTalk:Federal Corvette/@comment-108.211.86.193-20150912011058\nTalk:Federal Corvette/@comment-108.242.216.67-20151119161635\nTalk:Federal Corvette/@comment-108.242.216.67-20151119161635/@comment-27139263-20151120073417\nTalk:Federal Corvette/@comment-108.242.216.67-20151119161635/@comment-72.201.121.214-20151120073653\nTalk:Federal Corvette/@comment-108.47.237.140-20150920010414\nTalk:Federal Corvette/@comment-108.47.237.140-20150920010414/@comment-108.47.237.140-20150920010616\nTalk:Federal Corvette/@comment-108.47.237.140-20150920010414/@comment-108.47.237.140-20150921003439\nTalk:Federal Corvette/@comment-108.47.237.140-20150920010414/@comment-156.3.54.205-20150925182654\nTalk:Federal Corvette/@comment-108.47.237.140-20150920010414/@comment-78.48.34.99-20150921193903\nTalk:Federal Corvette/@comment-108.47.237.140-20150920010414/@comment-89.137.153.149-20150920190647\nTalk:Federal Corvette/@comment-109.172.31.177-20150208081658\nTalk:Federal Corvette/@comment-109.172.31.177-20150208081658/@comment-122.58.239.177-20161120081655\nTalk:Federal Corvette/@comment-109.210.188.99-20151114122812\nTalk:Federal Corvette/@comment-109.210.188.99-20151114122812/@comment-26391992-20151115143419\nTalk:Federal Corvette/@comment-109.210.188.99-20151114122812/@comment-27139263-20151114132118\nTalk:Federal Corvette/@comment-109.212.199.27-20150802011112\nTalk:Federal Corvette/@comment-109.212.199.27-20150802011112/@comment-26009169-20150802015228\nTalk:Federal Corvette/@comment-109.212.199.27-20150802011112/@comment-89.137.153.149-20150803220725\nTalk:Federal Corvette/@comment-12.5.54.135-20151203153108\nTalk:Federal Corvette/@comment-12.5.54.135-20151203153108/@comment-78.19.71.92-20151205095325\nTalk:Federal Corvette/@comment-12.5.54.135-20151203153108/@comment-99.239.182.156-20151205095058\nTalk:Federal Corvette/@comment-124.171.175.209-20170726172004\nTalk:Federal Corvette/@comment-124.171.175.209-20170726172004/@comment-187.144.97.1-20180627015053\nTalk:Federal Corvette/@comment-124.171.175.209-20170726172004/@comment-187.145.74.50-20180309031424\nTalk:Federal Corvette/@comment-124.171.175.209-20170726172004/@comment-25450485-20171202195803\nTalk:Federal Corvette/@comment-124.171.175.209-20170726172004/@comment-2601:243:480:98D9:98A2:D697:8B24:AE92-20180311020839\nTalk:Federal Corvette/@comment-125.237.7.64-20161130022303\nTalk:Federal Corvette/@comment-125.237.7.64-20161130022303/@comment-2001:5B0:4BCF:37B0:0:FF:FEBD:1C0-20180529200604\nTalk:Federal Corvette/@comment-125.237.7.64-20161130022303/@comment-30643772-20161202072245\nTalk:Federal Corvette/@comment-128.61.92.88-20170503171837\nTalk:Federal Corvette/@comment-128.61.92.88-20170503171837/@comment-26009169-20170503190723\nTalk:Federal Corvette/@comment-128.61.92.88-20170503171837/@comment-26009169-20170504154049\nTalk:Federal Corvette/@comment-128.61.92.88-20170503171837/@comment-5959508-20170504082037\nTalk:Federal Corvette/@comment-143.200.1.72-20190430153435\nTalk:Federal Corvette/@comment-143.200.1.72-20190430153435/@comment-143.200.1.72-20190430153953\nTalk:Federal Corvette/@comment-143.200.1.72-20190430153435/@comment-2602:306:CE29:B0D0:5116:F35D:1759:419F-20191009082415\nTalk:Federal Corvette/@comment-150.208.129.188-20170405142525\nTalk:Federal Corvette/@comment-150.208.129.188-20170405142525/@comment-192.136.161.52-20170419121047\nTalk:Federal Corvette/@comment-150.208.129.188-20170405142525/@comment-24810544-20170420213934\nTalk:Federal Corvette/@comment-150.208.129.188-20170405142525/@comment-2601:2C3:780:460:6011:EB29:6484:24A8-20170818011255\nTalk:Federal Corvette/@comment-150.208.129.188-20170405142525/@comment-93.222.116.50-20170418172455\nTalk:Federal Corvette/@comment-150.208.129.188-20170405142525/@comment-93.222.116.50-20170418172637\nTalk:Federal Corvette/@comment-150.208.129.188-20170405142525/@comment-98.4.57.125-20180509232856\nTalk:Federal Corvette/@comment-151.225.213.103-20151116213501\nTalk:Federal Corvette/@comment-151.225.213.103-20151116213501/@comment-72.241.143.238-20151201113055\nTalk:Federal Corvette/@comment-156.3.54.203-20150424164539\nTalk:Federal Corvette/@comment-156.3.54.203-20150424164539/@comment-209.147.144.17-20150503214230\nTalk:Federal Corvette/@comment-156.3.54.203-20150424164539/@comment-26009169-20150424174721\nTalk:Federal Corvette/@comment-156.3.54.203-20150424164539/@comment-26599825-20150725111527\nTalk:Federal Corvette/@comment-156.3.54.203-20150424164539/@comment-26814686-20150725011246\nTalk:Federal Corvette/@comment-156.3.54.203-20150424164539/@comment-26814686-20150725233252\nTalk:Federal Corvette/@comment-156.3.54.203-20150424164539/@comment-68.199.33.191-20150425024119\nTalk:Federal Corvette/@comment-156.3.54.203-20150424164539/@comment-74.89.225.194-20150529183118\nTalk:Federal Corvette/@comment-156.3.54.203-20150424164539/@comment-78.50.50.214-20150425204634\nTalk:Federal Corvette/@comment-156.3.54.203-20150424164539/@comment-86.12.53.149-20150724223626\nTalk:Federal Corvette/@comment-156.3.54.203-20150424164539/@comment-86.139.100.120-20150425023752\nTalk:Federal Corvette/@comment-156.3.54.203-20150529162245\nTalk:Federal Corvette/@comment-156.3.54.203-20150915153157\nTalk:Federal Corvette/@comment-156.3.54.203-20150915153157/@comment-108.47.237.140-20150916235854\nTalk:Federal Corvette/@comment-156.3.54.203-20150915153157/@comment-109.156.85.4-20150918063154\nTalk:Federal Corvette/@comment-156.3.54.203-20150915153157/@comment-156.3.54.204-20150918170715\nTalk:Federal Corvette/@comment-156.3.54.203-20150915153157/@comment-173.17.142.234-20150918054226\nTalk:Federal Corvette/@comment-156.3.54.203-20150915153157/@comment-26391992-20150916184804\nTalk:Federal Corvette/@comment-156.3.54.203-20150917155951\nTalk:Federal Corvette/@comment-156.3.54.203-20150917155951/@comment-122.58.239.177-20161120082008\nTalk:Federal Corvette/@comment-156.3.54.203-20150917155951/@comment-156.3.54.204-20150918153701\nTalk:Federal Corvette/@comment-156.3.54.203-20150917155951/@comment-78.48.167.192-20150917225714\nTalk:Federal Corvette/@comment-156.3.54.203-20150917155951/@comment-78.48.34.99-20150921193732\nTalk:Federal Corvette/@comment-156.3.54.203-20150917155951/@comment-87.178.224.136-20150918145630\nTalk:Federal Corvette/@comment-156.3.54.203-20150917155951/@comment-87.178.224.136-20150918185122\nTalk:Federal Corvette/@comment-156.3.54.204-20150911172217\nTalk:Federal Corvette/@comment-156.3.54.204-20150911213606\nTalk:Federal Corvette/@comment-156.3.54.204-20150911213606/@comment-77.181.182.208-20150913125406\nTalk:Federal Corvette/@comment-160.3.141.17-20151010061709\nTalk:Federal Corvette/@comment-160.3.141.17-20151010061709/@comment-160.3.141.17-20151010211312\nTalk:Federal Corvette/@comment-160.3.141.17-20151010061709/@comment-160.3.141.17-20151013231507\nTalk:Federal Corvette/@comment-160.3.141.17-20151010061709/@comment-25450485-20151010194024\nTalk:Federal Corvette/@comment-160.3.141.17-20151010061709/@comment-31.49.132.74-20151012202713\nTalk:Federal Corvette/@comment-166.109.224.51-20190402172334\nTalk:Federal Corvette/@comment-166.109.224.51-20190402172334/@comment-109.197.103.38-20190626131517\nTalk:Federal Corvette/@comment-172.56.30.227-20151215195527\nTalk:Federal Corvette/@comment-172.56.30.227-20151215195527/@comment-23.228.175.189-20160108222008\nTalk:Federal Corvette/@comment-172.56.30.227-20151215195527/@comment-26009169-20151215201610\nTalk:Federal Corvette/@comment-172.56.30.227-20151215195527/@comment-27311754-20160109130304\nTalk:Federal Corvette/@comment-172.98.84.222-20160928125624\nTalk:Federal Corvette/@comment-173.168.95.167-20150408075917\nTalk:Federal Corvette/@comment-173.168.95.167-20150408075917/@comment-86.18.238.215-20150412125034\nTalk:Federal Corvette/@comment-173.80.93.74-20151127023605\nTalk:Federal Corvette/@comment-173.80.93.74-20151127023605/@comment-200.113.32.182-20151130174602\nTalk:Federal Corvette/@comment-173.80.93.74-20151127023605/@comment-72.241.143.238-20151201112811\nTalk:Federal Corvette/@comment-174.89.135.213-20161021040351\nTalk:Federal Corvette/@comment-174.89.135.213-20161021040351/@comment-139.218.3.194-20161021072310\nTalk:Federal Corvette/@comment-174.89.135.213-20161021040351/@comment-192.136.161.52-20161111215544\nTalk:Federal Corvette/@comment-174.89.135.213-20161021040351/@comment-2.29.213.197-20161111211117\nTalk:Federal Corvette/@comment-174.89.135.213-20161021040351/@comment-2601:2C3:780:460:6011:EB29:6484:24A8-20170818011850\nTalk:Federal Corvette/@comment-174.89.135.213-20161021040351/@comment-42.112.84.79-20161125102216\nTalk:Federal Corvette/@comment-175.156.1.180-20160113125629\nTalk:Federal Corvette/@comment-175.156.1.180-20160113125629/@comment-101.184.150.174-20160117213718\nTalk:Federal Corvette/@comment-175.156.1.180-20160113125629/@comment-173.80.93.74-20160116190505\nTalk:Federal Corvette/@comment-175.156.1.180-20160113125629/@comment-25619025-20160117220139\nTalk:Federal Corvette/@comment-175.156.1.180-20160113125629/@comment-26391992-20160116193715\nTalk:Federal Corvette/@comment-175.156.1.180-20160113125629/@comment-26391992-20160117232742\nTalk:Federal Corvette/@comment-175.156.1.180-20160113125629/@comment-66.109.235.218-20160210160151\nTalk:Federal Corvette/@comment-175.156.1.180-20160113125629/@comment-78.19.121.210-20160120165825\nTalk:Federal Corvette/@comment-176.221.77.250-20171228105105\nTalk:Federal Corvette/@comment-178.62.85.75-20151023123904\nTalk:Federal Corvette/@comment-178.62.85.75-20151023123904/@comment-24.10.194.73-20151023190037\nTalk:Federal Corvette/@comment-178.62.85.75-20151023123904/@comment-27115814-20151027182022\nTalk:Federal Corvette/@comment-178.62.85.75-20151023123904/@comment-27115814-20151027184405\nTalk:Federal Corvette/@comment-178.62.85.75-20151023123904/@comment-27115814-20151030150657\nTalk:Federal Corvette/@comment-178.62.85.75-20151023123904/@comment-27139263-20151030164536\nTalk:Federal Corvette/@comment-178.62.85.75-20151023123904/@comment-79.112.141.101-20151025154258\nTalk:Federal Corvette/@comment-178.62.85.75-20151023123904/@comment-86.190.83.101-20151028230757\nTalk:Federal Corvette/@comment-178.62.85.75-20151023123904/@comment-93.222.66.228-20151025201923\nTalk:Federal Corvette/@comment-180.160.213.32-20190622101806\nTalk:Federal Corvette/@comment-180.160.213.32-20190622101806/@comment-2602:306:CE29:B0D0:D4EB:30EB:96B9:9C46-20190928005813\nTalk:Federal Corvette/@comment-180.160.213.32-20190622101806/@comment-44180665-20200509025330\nTalk:Federal Corvette/@comment-182.239.134.212-20151004231635\nTalk:Federal Corvette/@comment-182.239.134.212-20151004231635/@comment-108.47.237.140-20151008223220\nTalk:Federal Corvette/@comment-182.239.134.212-20151004231635/@comment-108.63.159.222-20151009210031\nTalk:Federal Corvette/@comment-182.239.134.212-20151004231635/@comment-207.179.224.29-20151013153559\nTalk:Federal Corvette/@comment-182.239.134.212-20151004231635/@comment-217.32.219.178-20151009144936\nTalk:Federal Corvette/@comment-182.239.134.212-20151004231635/@comment-31.48.31.51-20151009210807\nTalk:Federal Corvette/@comment-182.239.134.212-20151004231635/@comment-72.241.143.238-20151009021246\nTalk:Federal Corvette/@comment-182.239.134.212-20151004231635/@comment-73.1.55.15-20151017094450\nTalk:Federal Corvette/@comment-182.239.134.212-20151004231635/@comment-73.224.53.15-20151009180025\nTalk:Federal Corvette/@comment-185.26.182.27-20151127150950\nTalk:Federal Corvette/@comment-185.26.182.27-20151127150950/@comment-185.26.182.27-20151127151116\nTalk:Federal Corvette/@comment-186.105.188.246-20150920025447\nTalk:Federal Corvette/@comment-191.114.103.217-20151114113231\nTalk:Federal Corvette/@comment-191.114.103.217-20151114113231/@comment-92.22.226.247-20151115140322\nTalk:Federal Corvette/@comment-192.136.161.52-20170601114410\nTalk:Federal Corvette/@comment-192.136.170.98-20181213200759\nTalk:Federal Corvette/@comment-192.136.170.98-20181213200759/@comment-2602:306:CE29:B0D0:64AD:A199:8DED:88E8-20190924212625\nTalk:Federal Corvette/@comment-192.136.172.239-20160203172152\nTalk:Federal Corvette/@comment-192.136.172.239-20160204123159\nTalk:Federal Corvette/@comment-192.136.172.239-20160204123159/@comment-118.211.22.224-20160209173751\nTalk:Federal Corvette/@comment-192.136.172.239-20160204123159/@comment-71.9.25.119-20160616173642\nTalk:Federal Corvette/@comment-192.136.172.239-20160204123159/@comment-84.195.191.69-20160204183206\nTalk:Federal Corvette/@comment-192.136.172.239-20160204132755\nTalk:Federal Corvette/@comment-192.136.172.239-20160204132755/@comment-200.113.32.182-20160219175655\nTalk:Federal Corvette/@comment-192.136.172.239-20160204132755/@comment-206.174.243.110-20160325034009\nTalk:Federal Corvette/@comment-192.136.172.239-20160204132755/@comment-26391992-20160309142218\nTalk:Federal Corvette/@comment-192.136.172.239-20160204132755/@comment-77.37.166.144-20160204194148\nTalk:Federal Corvette/@comment-192.136.172.239-20160204132755/@comment-92.25.69.192-20160208114542\nTalk:Federal Corvette/@comment-192.136.175.137-20160511164958\nTalk:Federal Corvette/@comment-198.53.171.101-20170226120826\nTalk:Federal Corvette/@comment-198.53.171.101-20170226120826/@comment-5959508-20170226160345\nTalk:Federal Corvette/@comment-200.113.32.182-20151116150545\nTalk:Federal Corvette/@comment-200.113.32.182-20151116150545/@comment-200.113.32.182-20151117150945\nTalk:Federal Corvette/@comment-200.113.32.182-20151116150545/@comment-200.113.32.182-20151117203910\nTalk:Federal Corvette/@comment-200.113.32.182-20151116150545/@comment-200.113.32.182-20151118150238\nTalk:Federal Corvette/@comment-200.113.32.182-20151116150545/@comment-26391992-20151116211413\nTalk:Federal Corvette/@comment-200.113.32.182-20151116150545/@comment-26391992-20151117224605\nTalk:Federal Corvette/@comment-200.113.32.182-20151116150545/@comment-26391992-20151119143126\nTalk:Federal Corvette/@comment-200.113.32.182-20151116150545/@comment-27115814-20151116164335\nTalk:Federal Corvette/@comment-200.113.32.182-20151116150545/@comment-27115814-20151117183147\nTalk:Federal Corvette/@comment-203.59.108.3-20151216010425\nTalk:Federal Corvette/@comment-203.7.97.135-20150315045723\nTalk:Federal Corvette/@comment-204.112.29.149-20150912031834\nTalk:Federal Corvette/@comment-204.112.29.149-20150912031834/@comment-204.112.29.149-20150913013430\nTalk:Federal Corvette/@comment-204.112.29.149-20150912031834/@comment-78.48.167.192-20150917224045\nTalk:Federal Corvette/@comment-210.246.50.90-20150208082927\nTalk:Federal Corvette/@comment-210.246.50.90-20150208082927/@comment-122.58.239.177-20161120081832\nTalk:Federal Corvette/@comment-210.246.50.90-20150208082927/@comment-193.5.216.100-20150210101456\nTalk:Federal Corvette/@comment-210.246.50.90-20150208082927/@comment-26014491-20150312160935\nTalk:Federal Corvette/@comment-210.246.50.90-20150208082927/@comment-26048696-20150216205057\nTalk:Federal Corvette/@comment-210.246.50.90-20150208082927/@comment-78.54.28.145-20150224190509\nTalk:Federal Corvette/@comment-213.125.176.250-20160124184600\nTalk:Federal Corvette/@comment-213.125.176.250-20160124184600/@comment-101.184.126.84-20160130033345\nTalk:Federal Corvette/@comment-213.125.176.250-20160124184600/@comment-192.136.172.239-20160211202444\nTalk:Federal Corvette/@comment-213.125.176.250-20160124184600/@comment-26391992-20160130231728\nTalk:Federal Corvette/@comment-213.125.176.250-20160124184600/@comment-27634322-20160125002819\nTalk:Federal Corvette/@comment-213.125.176.250-20160124184600/@comment-4986699-20160124191816\nTalk:Federal Corvette/@comment-217.121.218.161-20151205182834\nTalk:Federal Corvette/@comment-217.121.218.161-20151205182834/@comment-185.26.182.33-20151206123615\nTalk:Federal Corvette/@comment-217.121.218.161-20151205182834/@comment-26391992-20151209092320\nTalk:Federal Corvette/@comment-217.32.219.178-20151021122645\nTalk:Federal Corvette/@comment-24.1.7.128-20150809172836\nTalk:Federal Corvette/@comment-24.1.7.128-20150809172836/@comment-24.1.7.128-20150810111540\nTalk:Federal Corvette/@comment-24.10.133.211-20151011034110\nTalk:Federal Corvette/@comment-24.10.133.211-20151011034110/@comment-31.49.132.74-20151012203752\nTalk:Federal Corvette/@comment-24.16.62.241-20151123050938\nTalk:Federal Corvette/@comment-24.16.62.241-20151123050938/@comment-26951902-20151123091758\nTalk:Federal Corvette/@comment-24.16.62.241-20151123051146\nTalk:Federal Corvette/@comment-24.178.26.241-20170516034219\nTalk:Federal Corvette/@comment-24.178.26.241-20170516034219/@comment-2601:243:480:98D9:98A2:D697:8B24:AE92-20180311020954\nTalk:Federal Corvette/@comment-24.188.190.253-20151229040843\nTalk:Federal Corvette/@comment-24.188.190.253-20160102201430\nTalk:Federal Corvette/@comment-24.188.190.253-20160102201430/@comment-109.156.113.207-20160111210324\nTalk:Federal Corvette/@comment-24.242.111.9-20170217063446\nTalk:Federal Corvette/@comment-24.242.111.9-20170217063446/@comment-5959508-20170226160351\nTalk:Federal Corvette/@comment-24.45.93.5-20150225234040\nTalk:Federal Corvette/@comment-25250354-20151117015557\nTalk:Federal Corvette/@comment-25250354-20151117015557/@comment-26391992-20151117180527\nTalk:Federal Corvette/@comment-25411947-20150911213110\nTalk:Federal Corvette/@comment-25411947-20150911213110/@comment-86.185.89.204-20150911213601\nTalk:Federal Corvette/@comment-25411947-20151021140357\nTalk:Federal Corvette/@comment-25411947-20151021140357/@comment-24.246.118.194-20151021154202\nTalk:Federal Corvette/@comment-25450485-20150830223844\nTalk:Federal Corvette/@comment-25450485-20150830223844/@comment-25450485-20150831063403\nTalk:Federal Corvette/@comment-25450485-20150830223844/@comment-26814686-20150831010748\nTalk:Federal Corvette/@comment-25450485-20150911214439\nTalk:Federal Corvette/@comment-25450485-20150911214439/@comment-173.76.104.238-20150912013826\nTalk:Federal Corvette/@comment-25450485-20150911214439/@comment-173.76.104.238-20150912014111\nTalk:Federal Corvette/@comment-25450485-20150911214439/@comment-86.185.89.204-20150911215013\nTalk:Federal Corvette/@comment-25450485-20150911214439/@comment-86.185.89.204-20150912074333\nTalk:Federal Corvette/@comment-25450485-20150916164338\nTalk:Federal Corvette/@comment-25450485-20150916164338/@comment-156.3.54.203-20150916184418\nTalk:Federal Corvette/@comment-25450485-20150916164338/@comment-207.179.224.29-20150923152033\nTalk:Federal Corvette/@comment-25450485-20150916164338/@comment-25450485-20150916202122\nTalk:Federal Corvette/@comment-25450485-20150916164338/@comment-25450485-20150918145019\nTalk:Federal Corvette/@comment-25450485-20150916164338/@comment-26391992-20150916203526\nTalk:Federal Corvette/@comment-25450485-20150916164338/@comment-78.48.167.192-20150917224222\nTalk:Federal Corvette/@comment-25450485-20150916164338/@comment-78.48.167.192-20150917230618\nTalk:Federal Corvette/@comment-25450485-20150916164338/@comment-86.183.105.175-20150916203014\nTalk:Federal Corvette/@comment-25450485-20160216205733\nTalk:Federal Corvette/@comment-25450485-20160216205733/@comment-125.237.7.64-20161130023449\nTalk:Federal Corvette/@comment-25450485-20160216205733/@comment-153.107.192.219-20160309225559\nTalk:Federal Corvette/@comment-25450485-20160216205733/@comment-25450485-20160217051906\nTalk:Federal Corvette/@comment-25450485-20160216205733/@comment-25619025-20160216211127\nTalk:Federal Corvette/@comment-25450485-20160216205733/@comment-27838177-20160508193144\nTalk:Federal Corvette/@comment-25450485-20160216205733/@comment-71.231.50.26-20160221083309\nTalk:Federal Corvette/@comment-25450485-20170713180221\nTalk:Federal Corvette/@comment-25450485-20170713180221/@comment-2601:243:480:98D9:98A2:D697:8B24:AE92-20180311020916\nTalk:Federal Corvette/@comment-2600:1700:DCB0:CC40:F90F:5711:554A:D26D-20180715191803\nTalk:Federal Corvette/@comment-2600:1700:DCB0:CC40:F90F:5711:554A:D26D-20180715191803/@comment-192.136.163.15-20180723145313\nTalk:Federal Corvette/@comment-2600:1700:DCB0:CC40:F90F:5711:554A:D26D-20180715191803/@comment-2600:1700:DCB0:CC40:F90F:5711:554A:D26D-20180715191936\nTalk:Federal Corvette/@comment-2600:1700:DCB0:CC40:F90F:5711:554A:D26D-20180715191803/@comment-86.52.94.247-20180724004124\nTalk:Federal Corvette/@comment-2600:1700:DCB0:CC40:F90F:5711:554A:D26D-20180715191803/@comment-86.52.94.56-20180723022924\nTalk:Federal Corvette/@comment-26014491-20150419204430\nTalk:Federal Corvette/@comment-26014491-20150419204430/@comment-26814686-20150724025810\nTalk:Federal Corvette/@comment-26014491-20150419204430/@comment-95.118.87.153-20150506133005\nTalk:Federal Corvette/@comment-2605:6001:E087:F200:8490:508F:6E08:FEA9-20200116062227\nTalk:Federal Corvette/@comment-26127089-20150807015614\nTalk:Federal Corvette/@comment-26127089-20150807015614/@comment-100.11.139.26-20150821195821\nTalk:Federal Corvette/@comment-26127089-20150807015614/@comment-186.107.25.68-20150808221608\nTalk:Federal Corvette/@comment-26127089-20150807015614/@comment-71.20.209.25-20150822011012\nTalk:Federal Corvette/@comment-26127089-20150807015614/@comment-72.241.143.238-20150822045118\nTalk:Federal Corvette/@comment-26127089-20150807015614/@comment-77.7.226.207-20150807203200\nTalk:Federal Corvette/@comment-26372902-20150903185507\nTalk:Federal Corvette/@comment-26372902-20150903185507/@comment-179.210.36.73-20150909130850\nTalk:Federal Corvette/@comment-26391992-20150913123623\nTalk:Federal Corvette/@comment-26391992-20150913123623/@comment-26391992-20150913123646\nTalk:Federal Corvette/@comment-26391992-20150913123623/@comment-77.181.182.208-20150913125033\nTalk:Federal Corvette/@comment-26391992-20151114161123\nTalk:Federal Corvette/@comment-26391992-20151114161123/@comment-79.20.105.231-20151115212041\nTalk:Federal Corvette/@comment-26391992-20160129132833\nTalk:Federal Corvette/@comment-26537865-20150716004022\nTalk:Federal Corvette/@comment-26537865-20150716004022/@comment-26814686-20150724025450\nTalk:Federal Corvette/@comment-26537865-20150716004022/@comment-71.21.3.159-20150803163358\nTalk:Federal Corvette/@comment-26537865-20150716004022/@comment-79.132.19.230-20150720195418\nTalk:Federal Corvette/@comment-26599825-20151113222346\nTalk:Federal Corvette/@comment-26599825-20151113222346/@comment-174.19.187.135-20151113233618\nTalk:Federal Corvette/@comment-26599825-20151113222346/@comment-27139263-20151113231421\nTalk:Federal Corvette/@comment-26599825-20151113222346/@comment-27139263-20151114114227\nTalk:Federal Corvette/@comment-26599825-20151113222346/@comment-67.1.191.215-20151114012336\nTalk:Federal Corvette/@comment-26814686-20150724030252\nTalk:Federal Corvette/@comment-26814686-20150724030252/@comment-122.58.239.177-20161120080459\nTalk:Federal Corvette/@comment-26872380-20151124193837\nTalk:Federal Corvette/@comment-26872380-20151124193837/@comment-27139263-20151124212214\nTalk:Federal Corvette/@comment-26872380-20151124193837/@comment-95.45.85.205-20151124204417\nTalk:Federal Corvette/@comment-26951902-20150915140421\nTalk:Federal Corvette/@comment-26951902-20150915140421/@comment-109.156.85.4-20150918063411\nTalk:Federal Corvette/@comment-26951902-20150915140421/@comment-156.3.54.203-20150916145728\nTalk:Federal Corvette/@comment-26951902-20150915140421/@comment-156.3.54.204-20150918170858\nTalk:Federal Corvette/@comment-26951902-20150915140421/@comment-156.3.54.204-20150918171018\nTalk:Federal Corvette/@comment-26951902-20150915140421/@comment-26951902-20150915191555\nTalk:Federal Corvette/@comment-26951902-20150915140421/@comment-26951902-20150916215108\nTalk:Federal Corvette/@comment-26951902-20150915140421/@comment-86.183.104.15-20150915165134\nTalk:Federal Corvette/@comment-27115814-20151102162327\nTalk:Federal Corvette/@comment-27115814-20151102162327/@comment-173.216.202.241-20151104040610\nTalk:Federal Corvette/@comment-27115814-20151111065837\nTalk:Federal Corvette/@comment-27139263-20151105183631\nTalk:Federal Corvette/@comment-27139263-20151105183631/@comment-108.86.9.46-20151107140505\nTalk:Federal Corvette/@comment-27139263-20151105183631/@comment-25411947-20151107004842\nTalk:Federal Corvette/@comment-27139263-20151105183631/@comment-27032150-20151106084349\nTalk:Federal Corvette/@comment-27139263-20151105183631/@comment-27139263-20151107094106\nTalk:Federal Corvette/@comment-27139263-20151105183631/@comment-27139263-20151108115609\nTalk:Federal Corvette/@comment-27139263-20151105183631/@comment-79.30.109.61-20151106225830\nTalk:Federal Corvette/@comment-27139263-20151105183631/@comment-85.199.49.197-20151107145835\nTalk:Federal Corvette/@comment-27139263-20151114140517\nTalk:Federal Corvette/@comment-27190931-20151110231256\nTalk:Federal Corvette/@comment-27190931-20151110231256/@comment-93.222.66.228-20151111140507\nTalk:Federal Corvette/@comment-27417162-20151224050758\nTalk:Federal Corvette/@comment-27417162-20151224050758/@comment-27336833-20151225034345\nTalk:Federal Corvette/@comment-27417162-20151224050758/@comment-31.53.47.90-20151224120910\nTalk:Federal Corvette/@comment-27417162-20151224050758/@comment-31.53.47.90-20151224121055\nTalk:Federal Corvette/@comment-27511717-20160104040542\nTalk:Federal Corvette/@comment-27511717-20160104040542/@comment-101.184.150.174-20160112040748\nTalk:Federal Corvette/@comment-27511717-20160104040542/@comment-109.156.113.207-20160111210150\nTalk:Federal Corvette/@comment-27511717-20160104040542/@comment-153.46.105.98-20160106102508\nTalk:Federal Corvette/@comment-27511717-20160104040542/@comment-179.218.217.1-20160104145419\nTalk:Federal Corvette/@comment-27511717-20160104040542/@comment-200.113.32.182-20160105143843\nTalk:Federal Corvette/@comment-27511717-20160104040542/@comment-24.188.190.253-20160104171424\nTalk:Federal Corvette/@comment-27511717-20160104040542/@comment-27032150-20160120130711\nTalk:Federal Corvette/@comment-27511717-20160104040542/@comment-27034370-20160105013734\nTalk:Federal Corvette/@comment-27511717-20160104040542/@comment-27115814-20160106162104\nTalk:Federal Corvette/@comment-27511717-20160104040542/@comment-27311754-20160104110250\nTalk:Federal Corvette/@comment-27511717-20160104040542/@comment-27311754-20160106151918\nTalk:Federal Corvette/@comment-27511717-20160104040542/@comment-27311754-20160112142117\nTalk:Federal Corvette/@comment-27511717-20160104040542/@comment-50.69.40.31-20160110093420\nTalk:Federal Corvette/@comment-27511717-20160104040542/@comment-72.191.103.175-20160120031646\nTalk:Federal Corvette/@comment-27511717-20160104040542/@comment-73.18.226.254-20160112031855\nTalk:Federal Corvette/@comment-27511717-20160104040542/@comment-78.19.38.183-20160104044957\nTalk:Federal Corvette/@comment-27511717-20160104040542/@comment-80.120.62.34-20160112160332\nTalk:Federal Corvette/@comment-27511717-20160104040542/@comment-89.156.57.45-20160112111902\nTalk:Federal Corvette/@comment-27646870-20160806012726\nTalk:Federal Corvette/@comment-27646870-20160806012726/@comment-125.237.7.64-20161130022652\nTalk:Federal Corvette/@comment-27646870-20160806012726/@comment-139.218.3.194-20161021073616\nTalk:Federal Corvette/@comment-27646870-20160806012726/@comment-206.174.243.110-20160902051027\nTalk:Federal Corvette/@comment-27646870-20160806012726/@comment-2155082-20160806040400\nTalk:Federal Corvette/@comment-27646870-20160806012726/@comment-27032150-20160816101152\nTalk:Federal Corvette/@comment-27646870-20160806012726/@comment-27032150-20160817075833\nTalk:Federal Corvette/@comment-27646870-20160806012726/@comment-27032150-20160817101224\nTalk:Federal Corvette/@comment-27646870-20160806012726/@comment-28434084-20160816085052\nTalk:Federal Corvette/@comment-27646870-20160806012726/@comment-28434084-20160817073152\nTalk:Federal Corvette/@comment-27646870-20160806012726/@comment-28434084-20160817080751\nTalk:Federal Corvette/@comment-28434084-20160618084022\nTalk:Federal Corvette/@comment-28434084-20160618084022/@comment-106.1.181.151-20160709220835\nTalk:Federal Corvette/@comment-28434084-20160618084022/@comment-125.237.7.64-20161130022730\nTalk:Federal Corvette/@comment-28434084-20160618084022/@comment-76.71.51.6-20170119064352\nTalk:Federal Corvette/@comment-31.46.250.132-20151130190753\nTalk:Federal Corvette/@comment-31.46.250.132-20151130190753/@comment-2.247.152.88-20151211223806\nTalk:Federal Corvette/@comment-31.46.250.132-20151130190753/@comment-63.64.75.10-20151214180114\nTalk:Federal Corvette/@comment-31.46.250.132-20151130190753/@comment-72.241.143.238-20151219173354\nTalk:Federal Corvette/@comment-31.46.250.132-20151130190753/@comment-83.185.85.142-20151218065750\nTalk:Federal Corvette/@comment-31.49.96.24-20150918202535\nTalk:Federal Corvette/@comment-31.49.96.24-20150918202535/@comment-81.129.206.14-20150930201948\nTalk:Federal Corvette/@comment-31.52.45.250-20150330161655\nTalk:Federal Corvette/@comment-31.52.45.250-20150330161655/@comment-26358753-20150528011657\nTalk:Federal Corvette/@comment-31.52.45.250-20150330161655/@comment-26537865-20150716005023\nTalk:Federal Corvette/@comment-31.52.45.250-20150330161655/@comment-82.35.224.103-20150501175357\nTalk:Federal Corvette/@comment-31314922-20190117153844\nTalk:Federal Corvette/@comment-31314922-20190117153844/@comment-192.136.170.98-20190118155349\nTalk:Federal Corvette/@comment-31314922-20190117153844/@comment-68.197.23.46-20190401205509\nTalk:Federal Corvette/@comment-33952827-20180505201821\nTalk:Federal Corvette/@comment-33952827-20180505201821/@comment-24.183.224.105-20180507034905\nTalk:Federal Corvette/@comment-33952827-20180505201821/@comment-30309427-20181116035925\nTalk:Federal Corvette/@comment-33952827-20180505201821/@comment-33952827-20180507032644\nTalk:Federal Corvette/@comment-33952827-20180505201821/@comment-68.186.129.192-20180506004428\nTalk:Federal Corvette/@comment-33952827-20180505201821/@comment-69.114.195.213-20180912221534\nTalk:Federal Corvette/@comment-35650861-20180521170005\nTalk:Federal Corvette/@comment-35650861-20180521170005/@comment-194.118.242.67-20180617003813\nTalk:Federal Corvette/@comment-35650861-20180521170005/@comment-35650861-20180624091842\nTalk:Federal Corvette/@comment-35650861-20190127135457\nTalk:Federal Corvette/@comment-35650861-20190127135457/@comment-160.3.38.154-20190426190042\nTalk:Federal Corvette/@comment-35650861-20190127135457/@comment-170.185.126.17-20191104211153\nTalk:Federal Corvette/@comment-35650861-20190127135457/@comment-192.136.170.98-20190127162355\nTalk:Federal Corvette/@comment-35650861-20190127135457/@comment-192.136.170.98-20190131192643\nTalk:Federal Corvette/@comment-35650861-20190127135457/@comment-2602:306:CE29:B0D0:5116:F35D:1759:419F-20191009083328\nTalk:Federal Corvette/@comment-35650861-20190127135457/@comment-35650861-20190131132748\nTalk:Federal Corvette/@comment-42.112.88.138-20161128054754\nTalk:Federal Corvette/@comment-44180665-20200509024942\nTalk:Federal Corvette/@comment-44180665-20200509024942/@comment-45771967-20200512205700\nTalk:Federal Corvette/@comment-5.147.122.133-20151029134342\nTalk:Federal Corvette/@comment-5.147.122.133-20151029134342/@comment-25411947-20151029233302\nTalk:Federal Corvette/@comment-5.147.122.133-20151029134342/@comment-27032150-20151029142620\nTalk:Federal Corvette/@comment-5.147.122.133-20151029134342/@comment-27032150-20151030074346\nTalk:Federal Corvette/@comment-5.147.122.133-20151111145519\nTalk:Federal Corvette/@comment-5.147.122.133-20151111145519/@comment-27139263-20151111213732\nTalk:Federal Corvette/@comment-5.147.122.133-20151123140526\nTalk:Federal Corvette/@comment-5.147.122.133-20151123140526/@comment-77.234.104.249-20151208140835\nTalk:Federal Corvette/@comment-5.147.122.133-20151123140526/@comment-92.22.226.247-20151125232840\nTalk:Federal Corvette/@comment-50.201.158.110-20181017150642\nTalk:Federal Corvette/@comment-59.152.244.166-20161214032734\nTalk:Federal Corvette/@comment-59.152.244.166-20161214032734/@comment-150.208.129.188-20170405141125\nTalk:Federal Corvette/@comment-5968971-20151110203654\nTalk:Federal Corvette/@comment-5968971-20151110203654/@comment-200.113.32.182-20151113180926\nTalk:Federal Corvette/@comment-5968971-20151110203654/@comment-27139263-20151110223957\nTalk:Federal Corvette/@comment-62.178.151.83-20160119134255\nTalk:Federal Corvette/@comment-62.178.151.83-20160119134255/@comment-101.184.126.84-20160130033558\nTalk:Federal Corvette/@comment-62.178.151.83-20160119134255/@comment-27982869-20160315095452\nTalk:Federal Corvette/@comment-62.178.151.83-20160119134255/@comment-31.46.252.5-20160123122109\nTalk:Federal Corvette/@comment-62.24.73.137-20150625164201\nTalk:Federal Corvette/@comment-65.129.22.235-20151216044502\nTalk:Federal Corvette/@comment-66.74.41.156-20150919042105\nTalk:Federal Corvette/@comment-66.74.41.156-20150919042105/@comment-122.58.239.177-20161120082155\nTalk:Federal Corvette/@comment-66.74.41.156-20150919042105/@comment-77.181.179.150-20151013155424\nTalk:Federal Corvette/@comment-66.74.41.156-20150919042105/@comment-87.178.224.136-20150920084225\nTalk:Federal Corvette/@comment-66.74.41.156-20150919042105/@comment-94.15.142.192-20150919200309\nTalk:Federal Corvette/@comment-66.74.41.156-20150919042105/@comment-94.15.142.192-20150919200325\nTalk:Federal Corvette/@comment-67.164.206.232-20151108220500\nTalk:Federal Corvette/@comment-67.164.206.232-20151108220500/@comment-27032150-20151109093027\nTalk:Federal Corvette/@comment-67.164.206.232-20151108220500/@comment-27032150-20151112073640\nTalk:Federal Corvette/@comment-67.164.206.232-20151108220500/@comment-27156860-20151112113559\nTalk:Federal Corvette/@comment-67.164.206.232-20151108220500/@comment-77.182.133.22-20151111211611\nTalk:Federal Corvette/@comment-67.191.203.216-20150629045916\nTalk:Federal Corvette/@comment-67.2.40.124-20150911154326\nTalk:Federal Corvette/@comment-67.2.40.124-20150911154326/@comment-156.3.54.204-20150911172336\nTalk:Federal Corvette/@comment-68.13.142.144-20150505181539\nTalk:Federal Corvette/@comment-68.186.129.192-20180506004730\nTalk:Federal Corvette/@comment-68.36.86.3-20191208014035\nTalk:Federal Corvette/@comment-68.36.86.3-20191208014035/@comment-2003:ED:4BDD:500:58AF:EC7:4370:A9F2-20191211215533\nTalk:Federal Corvette/@comment-69.114.195.213-20180912221737\nTalk:Federal Corvette/@comment-69.114.195.213-20180912221737/@comment-170.185.126.17-20191104211332\nTalk:Federal Corvette/@comment-69.114.195.213-20180912221737/@comment-184.53.1.60-20190426144208\nTalk:Federal Corvette/@comment-69.123.241.214-20171203013304\nTalk:Federal Corvette/@comment-69.123.241.214-20171203013304/@comment-2601:243:480:98D9:98A2:D697:8B24:AE92-20180311020502\nTalk:Federal Corvette/@comment-69.123.241.214-20171203013304/@comment-76.115.197.126-20180314222451\nTalk:Federal Corvette/@comment-70.127.191.90-20160121075250\nTalk:Federal Corvette/@comment-70.127.191.90-20170111201524\nTalk:Federal Corvette/@comment-70.127.191.90-20170111201524/@comment-98.113.25.115-20170116135722\nTalk:Federal Corvette/@comment-71.194.44.102-20170208191543\nTalk:Federal Corvette/@comment-71.204.148.157-20150428040227\nTalk:Federal Corvette/@comment-71.204.148.157-20150428040227/@comment-185.37.87.177-20150513165427\nTalk:Federal Corvette/@comment-71.204.148.157-20150428040227/@comment-185.37.87.177-20150513165446\nTalk:Federal Corvette/@comment-71.204.148.157-20150428040227/@comment-185.37.87.177-20150518162624\nTalk:Federal Corvette/@comment-71.204.148.157-20150428040227/@comment-195.169.157.177-20150601144637\nTalk:Federal Corvette/@comment-71.204.148.157-20150428040227/@comment-86.139.100.120-20150506011716\nTalk:Federal Corvette/@comment-71.65.58.72-20151217053357\nTalk:Federal Corvette/@comment-71.65.58.72-20151217053357/@comment-176.25.248.74-20151219012453\nTalk:Federal Corvette/@comment-71.65.58.72-20151217053357/@comment-71.65.58.72-20151219111755\nTalk:Federal Corvette/@comment-71.65.58.72-20151217053357/@comment-78.19.38.183-20151219021958\nTalk:Federal Corvette/@comment-72.178.85.113-20150612043156\nTalk:Federal Corvette/@comment-72.201.121.214-20151201084405\nTalk:Federal Corvette/@comment-72.201.121.214-20151201084405/@comment-24.188.190.253-20160104172251\nTalk:Federal Corvette/@comment-72.241.143.238-20151222134703\nTalk:Federal Corvette/@comment-72.241.143.238-20151222134703/@comment-4986699-20160104073321\nTalk:Federal Corvette/@comment-72.241.143.238-20151222134703/@comment-70.177.123.20-20160104013107\nTalk:Federal Corvette/@comment-72.71.205.88-20150208081654\nTalk:Federal Corvette/@comment-72.71.205.88-20150208081654/@comment-109.172.31.177-20150209194642\nTalk:Federal Corvette/@comment-73.179.34.142-20150903193403\nTalk:Federal Corvette/@comment-73.18.226.254-20160113112651\nTalk:Federal Corvette/@comment-73.202.206.63-20150725055441\nTalk:Federal Corvette/@comment-73.202.206.63-20150725055441/@comment-88.110.93.217-20150807185035\nTalk:Federal Corvette/@comment-74.90.92.146-20150419202107\nTalk:Federal Corvette/@comment-74.90.92.146-20150419202107/@comment-108.242.216.67-20150513185515\nTalk:Federal Corvette/@comment-74.90.92.146-20150419202107/@comment-138.163.0.41-20150528201726\nTalk:Federal Corvette/@comment-74.90.92.146-20150419202107/@comment-173.57.13.97-20150430180828\nTalk:Federal Corvette/@comment-74.90.92.146-20150419202107/@comment-26537865-20150716004924\nTalk:Federal Corvette/@comment-74.90.92.146-20150419202107/@comment-26814686-20150724025900\nTalk:Federal Corvette/@comment-75.109.81.198-20150619003753\nTalk:Federal Corvette/@comment-75.109.81.198-20150619003753/@comment-176.93.8.142-20150701154115\nTalk:Federal Corvette/@comment-75.109.81.198-20150619003753/@comment-185.37.87.177-20150808191349\nTalk:Federal Corvette/@comment-75.109.81.198-20150619003753/@comment-26014491-20150629040642\nTalk:Federal Corvette/@comment-75.109.81.198-20150619003753/@comment-31.28.6.108-20150629152127\nTalk:Federal Corvette/@comment-75.109.81.198-20150619003753/@comment-76.92.151.172-20150711075419\nTalk:Federal Corvette/@comment-75.109.81.198-20150619003753/@comment-91.197.174.239-20150701142452\nTalk:Federal Corvette/@comment-75.130.23.188-20160202123604\nTalk:Federal Corvette/@comment-75.130.23.188-20160202123604/@comment-217.120.238.45-20160225174801\nTalk:Federal Corvette/@comment-75.135.177.50-20150719093741\nTalk:Federal Corvette/@comment-75.135.177.50-20150719093741/@comment-26814686-20150724025314\nTalk:Federal Corvette/@comment-76.125.64.197-20150812044129\nTalk:Federal Corvette/@comment-76.125.64.197-20150812044129/@comment-31.50.5.147-20150817105545\nTalk:Federal Corvette/@comment-76.125.64.197-20150812044129/@comment-67.177.35.40-20150815075855\nTalk:Federal Corvette/@comment-76.125.64.197-20150812044129/@comment-86.156.183.25-20150819132331\nTalk:Federal Corvette/@comment-76.125.64.197-20150812044129/@comment-89.137.153.149-20150819084539\nTalk:Federal Corvette/@comment-76.125.64.197-20150812044129/@comment-97.84.102.143-20150816043832\nTalk:Federal Corvette/@comment-76.71.51.6-20161120195948\nTalk:Federal Corvette/@comment-76.71.51.6-20161120195948/@comment-192.136.161.52-20161121042033\nTalk:Federal Corvette/@comment-76.71.51.6-20161120195948/@comment-2601:2C3:780:460:6011:EB29:6484:24A8-20170818011834\nTalk:Federal Corvette/@comment-76.71.51.6-20161218020205\nTalk:Federal Corvette/@comment-76.71.51.6-20161218020205/@comment-2601:2C3:780:460:6011:EB29:6484:24A8-20170818011437\nTalk:Federal Corvette/@comment-77.102.200.67-20171130113058\nTalk:Federal Corvette/@comment-77.102.200.67-20171130113058/@comment-165.73.133.20-20180306032852\nTalk:Federal Corvette/@comment-77.102.200.67-20171130113058/@comment-173.49.250.165-20181013021040\nTalk:Federal Corvette/@comment-77.102.200.67-20171130113058/@comment-173.49.250.165-20181013021655\nTalk:Federal Corvette/@comment-77.102.200.67-20171130113058/@comment-187.144.97.1-20180627014941\nTalk:Federal Corvette/@comment-77.102.200.67-20171130113058/@comment-187.145.74.50-20180309031342\nTalk:Federal Corvette/@comment-77.102.200.67-20171130113058/@comment-192.136.161.33-20180204152953\nTalk:Federal Corvette/@comment-77.102.200.67-20171130113058/@comment-192.136.161.33-20180306042609\nTalk:Federal Corvette/@comment-77.102.200.67-20171130113058/@comment-192.136.161.33-20180309041225\nTalk:Federal Corvette/@comment-77.102.200.67-20171130113058/@comment-192.136.170.98-20190214042152\nTalk:Federal Corvette/@comment-77.102.200.67-20171130113058/@comment-24.183.224.105-20180507035623\nTalk:Federal Corvette/@comment-77.102.200.67-20171130113058/@comment-24.183.224.105-20180507041010\nTalk:Federal Corvette/@comment-77.102.200.67-20171130113058/@comment-2601:243:480:98D9:98A2:D697:8B24:AE92-20180311020644\nTalk:Federal Corvette/@comment-77.102.200.67-20171130113058/@comment-2A02:8109:8340:3954:6022:84D1:A4CB:7B6C-20190214030509\nTalk:Federal Corvette/@comment-77.102.200.67-20171130113058/@comment-2A02:C7D:2177:2000:2515:7661:CD71:EBF8-20180204035611\nTalk:Federal Corvette/@comment-77.102.200.67-20171130113058/@comment-32843761-20180204191610\nTalk:Federal Corvette/@comment-77.102.200.67-20171130113058/@comment-41.114.0.130-20181012092447\nTalk:Federal Corvette/@comment-77.102.200.67-20171130113058/@comment-41.114.0.130-20181012092627\nTalk:Federal Corvette/@comment-77.102.200.67-20171130113058/@comment-45771967-20200512210628\nTalk:Federal Corvette/@comment-77.102.200.67-20171130113058/@comment-4986699-20180311065327\nTalk:Federal Corvette/@comment-77.102.200.67-20171130113058/@comment-50.196.13.182-20180211043022\nTalk:Federal Corvette/@comment-77.102.200.67-20171130113058/@comment-50.201.158.110-20181017151142\nTalk:Federal Corvette/@comment-77.102.200.67-20171130113058/@comment-50.201.158.110-20181017151318\nTalk:Federal Corvette/@comment-77.102.200.67-20171130113058/@comment-72.241.147.127-20180123100810\nTalk:Federal Corvette/@comment-77.102.200.67-20171130113058/@comment-76.115.197.126-20180314223231\nTalk:Federal Corvette/@comment-77.102.200.67-20171130113058/@comment-80.51.152.23-20180207125352\nTalk:Federal Corvette/@comment-77.110.42.57-20150604021818\nTalk:Federal Corvette/@comment-77.110.42.57-20150604021818/@comment-66.176.42.239-20150605220059\nTalk:Federal Corvette/@comment-77.110.42.57-20150604021818/@comment-82.30.236.238-20150610094303\nTalk:Federal Corvette/@comment-77.110.42.57-20151116110008\nTalk:Federal Corvette/@comment-77.110.42.57-20151116110008/@comment-188.220.194.51-20151118002409\nTalk:Federal Corvette/@comment-77.110.42.57-20151116110008/@comment-25619025-20151116140914\nTalk:Federal Corvette/@comment-77.110.42.57-20151116110008/@comment-26391992-20151119143440\nTalk:Federal Corvette/@comment-77.110.42.57-20151116110008/@comment-27032150-20151118073020\nTalk:Federal Corvette/@comment-77.110.42.57-20151117212611\nTalk:Federal Corvette/@comment-77.110.42.57-20151117212611/@comment-26391992-20151117224127\nTalk:Federal Corvette/@comment-77.110.42.57-20151117212611/@comment-27139263-20151117215503\nTalk:Federal Corvette/@comment-77.110.42.57-20151117212611/@comment-31.46.255.36-20151119132202\nTalk:Federal Corvette/@comment-77.110.42.57-20151129222310\nTalk:Federal Corvette/@comment-77.110.42.57-20151129222310/@comment-185.26.182.27-20151130091643\nTalk:Federal Corvette/@comment-77.133.58.10-20160427204756\nTalk:Federal Corvette/@comment-77.182.61.37-20150911162734\nTalk:Federal Corvette/@comment-77.182.61.37-20150911162838\nTalk:Federal Corvette/@comment-78.102.55.129-20151114113511\nTalk:Federal Corvette/@comment-78.102.55.129-20151114113511/@comment-191.114.103.217-20151114121845\nTalk:Federal Corvette/@comment-78.19.92.150-20151216165026\nTalk:Federal Corvette/@comment-79.191.38.240-20160725152320\nTalk:Federal Corvette/@comment-79.36.58.114-20150914101558\nTalk:Federal Corvette/@comment-79.36.58.114-20150914101558/@comment-195.128.129.200-20150914135456\nTalk:Federal Corvette/@comment-79.36.58.114-20150914101558/@comment-26391992-20150914182547\nTalk:Federal Corvette/@comment-79.74.54.29-20161225225158\nTalk:Federal Corvette/@comment-80.1.60.38-20150323113932\nTalk:Federal Corvette/@comment-80.1.60.38-20150323113932/@comment-80.1.60.38-20150323114034\nTalk:Federal Corvette/@comment-80.1.60.38-20150323113932/@comment-82.208.5.86-20150328231218\nTalk:Federal Corvette/@comment-80.193.245.85-20150526155717\nTalk:Federal Corvette/@comment-80.193.245.85-20150526155717/@comment-95.90.192.54-20150607092619\nTalk:Federal Corvette/@comment-80.60.64.182-20150621223252\nTalk:Federal Corvette/@comment-80.60.64.182-20150621223252/@comment-80.60.64.182-20150621223333\nTalk:Federal Corvette/@comment-81.155.125.233-20180521151146\nTalk:Federal Corvette/@comment-81.155.125.233-20180521151146/@comment-50.201.158.110-20181017151006\nTalk:Federal Corvette/@comment-81.234.22.43-20150911174507\nTalk:Federal Corvette/@comment-81.234.22.43-20150911174507/@comment-156.3.54.203-20150915152419\nTalk:Federal Corvette/@comment-81.234.22.43-20150911174507/@comment-156.3.54.204-20150911213136\nTalk:Federal Corvette/@comment-81.234.22.43-20150911174507/@comment-173.76.104.238-20150912014347\nTalk:Federal Corvette/@comment-81.234.22.43-20150911174507/@comment-77.182.61.37-20150911181207\nTalk:Federal Corvette/@comment-81.234.22.43-20150911174507/@comment-81.234.22.43-20150911205130\nTalk:Federal Corvette/@comment-81.234.22.43-20150912164640\nTalk:Federal Corvette/@comment-81.234.22.43-20150912164640/@comment-159.205.155.50-20150912174710\nTalk:Federal Corvette/@comment-81.234.22.43-20150912164640/@comment-25450485-20150914111553\nTalk:Federal Corvette/@comment-81.234.22.43-20150912164640/@comment-72.241.143.238-20150912200517\nTalk:Federal Corvette/@comment-81.234.22.43-20150912164640/@comment-72.241.143.238-20150914194519\nTalk:Federal Corvette/@comment-81.234.22.43-20150912164640/@comment-77.181.182.208-20150913121538\nTalk:Federal Corvette/@comment-81.234.22.43-20150912164640/@comment-81.148.137.138-20151006135738\nTalk:Federal Corvette/@comment-81.234.22.43-20150912164640/@comment-82.11.99.50-20150913224750\nTalk:Federal Corvette/@comment-81.234.22.43-20150912164640/@comment-86.185.89.204-20150912192754\nTalk:Federal Corvette/@comment-81.234.22.43-20150912164640/@comment-86.185.89.204-20150912203836\nTalk:Federal Corvette/@comment-81.250.58.244-20151205114520\nTalk:Federal Corvette/@comment-81.250.58.244-20151205114520/@comment-185.26.182.31-20151205144747\nTalk:Federal Corvette/@comment-81.99.72.216-20151107183441\nTalk:Federal Corvette/@comment-81.99.72.216-20151107183441/@comment-50.0.102.200-20151111191855\nTalk:Federal Corvette/@comment-83.4.106.187-20160418174947\nTalk:Federal Corvette/@comment-83.86.56.71-20161126220735\nTalk:Federal Corvette/@comment-84.10.214.212-20151111015014\nTalk:Federal Corvette/@comment-84.135.20.6-20150921212130\nTalk:Federal Corvette/@comment-84.135.20.6-20150921212130/@comment-156.3.54.204-20150922162040\nTalk:Federal Corvette/@comment-84.135.20.6-20150921212130/@comment-204.112.51.241-20150928153259\nTalk:Federal Corvette/@comment-84.135.20.6-20150921212130/@comment-78.49.79.127-20150922174056\nTalk:Federal Corvette/@comment-86.10.95.235-20150722134840\nTalk:Federal Corvette/@comment-86.10.95.235-20150722134840/@comment-68.172.36.25-20150802021140\nTalk:Federal Corvette/@comment-86.10.95.235-20150722134840/@comment-82.11.99.50-20150802074846\nTalk:Federal Corvette/@comment-86.177.58.123-20150523112757\nTalk:Federal Corvette/@comment-86.177.58.123-20150523112757/@comment-156.3.54.202-20150527145606\nTalk:Federal Corvette/@comment-86.183.104.15-20150914182440\nTalk:Federal Corvette/@comment-86.185.89.204-20150911213738\nTalk:Federal Corvette/@comment-86.185.89.204-20150911213738/@comment-25411947-20150911214746\nTalk:Federal Corvette/@comment-86.185.89.204-20150911213738/@comment-77.181.184.122-20150912083006\nTalk:Federal Corvette/@comment-86.191.238.78-20150928204447\nTalk:Federal Corvette/@comment-86.191.238.78-20150928204447/@comment-93.222.91.137-20151003095322\nTalk:Federal Corvette/@comment-87.11.124.253-20151031191423\nTalk:Federal Corvette/@comment-87.11.124.253-20151031191423/@comment-25411947-20151102234110\nTalk:Federal Corvette/@comment-87.11.124.253-20151031191423/@comment-27139263-20151031211617\nTalk:Federal Corvette/@comment-87.15.111.108-20150930095040\nTalk:Federal Corvette/@comment-87.15.111.108-20150930095040/@comment-109.152.14.42-20150930174613\nTalk:Federal Corvette/@comment-87.15.111.108-20150930095040/@comment-185.26.182.33-20151004192904\nTalk:Federal Corvette/@comment-89.137.153.149-20150904075318\nTalk:Federal Corvette/@comment-89.243.18.74-20151227193119\nTalk:Federal Corvette/@comment-89.243.18.74-20151227193119/@comment-89.243.18.74-20151227193213\nTalk:Federal Corvette/@comment-89.74.228.150-20150701221322\nTalk:Federal Corvette/@comment-89.74.228.150-20150701221322/@comment-11990868-20150707220317\nTalk:Federal Corvette/@comment-89.74.228.150-20150908021838\nTalk:Federal Corvette/@comment-89.74.228.150-20150908021838/@comment-78.49.174.24-20150908130028\nTalk:Federal Corvette/@comment-89.74.228.150-20150908190804\nTalk:Federal Corvette/@comment-89.74.228.150-20150908190804/@comment-156.3.54.204-20150911172522\nTalk:Federal Corvette/@comment-89.74.228.150-20150908190804/@comment-217.32.219.178-20150910164305\nTalk:Federal Corvette/@comment-89.74.228.150-20150913011123\nTalk:Federal Corvette/@comment-89.74.228.150-20150913011123/@comment-151.225.141.55-20150916074401\nTalk:Federal Corvette/@comment-89.74.228.150-20150913011123/@comment-204.112.26.121-20150917083138\nTalk:Federal Corvette/@comment-89.74.228.150-20150913011123/@comment-204.112.26.121-20150917083442\nTalk:Federal Corvette/@comment-89.74.228.150-20150913011123/@comment-204.112.29.149-20150913013739\nTalk:Federal Corvette/@comment-89.74.228.150-20150913011123/@comment-77.181.182.208-20150913125750\nTalk:Federal Corvette/@comment-89.74.228.150-20150913011123/@comment-86.183.105.175-20150916202916\nTalk:Federal Corvette/@comment-89.74.228.150-20150913011123/@comment-86.185.89.204-20150913123129\nTalk:Federal Corvette/@comment-90.212.156.106-20151216172941\nTalk:Federal Corvette/@comment-90.212.156.106-20151216172941/@comment-24.188.190.253-20151224155230\nTalk:Federal Corvette/@comment-90.212.156.106-20151216172941/@comment-73.18.226.254-20160112114935\nTalk:Federal Corvette/@comment-90.212.156.106-20151216172941/@comment-7917909-20151222180639\nTalk:Federal Corvette/@comment-90.252.194.20-20190429190916\nTalk:Federal Corvette/@comment-91.42.214.80-20161006185451\nTalk:Federal Corvette/@comment-92.108.198.210-20150624094811\nTalk:Federal Corvette/@comment-92.143.154.216-20151121122746\nTalk:Federal Corvette/@comment-92.143.154.216-20151121122746/@comment-26951902-20151122111501\nTalk:Federal Corvette/@comment-92.2.212.134-20151130093547\nTalk:Federal Corvette/@comment-92.2.212.134-20151130093547/@comment-185.26.182.27-20151130102625\nTalk:Federal Corvette/@comment-94.1.156.159-20151113210821\nTalk:Federal Corvette/@comment-94.10.30.248-20150602165924\nTalk:Federal Corvette/@comment-94.10.30.248-20150602165924/@comment-26391992-20150703010208\nTalk:Federal Corvette/@comment-95.145.93.245-20150919212644\nTalk:Federal Corvette/@comment-95.145.93.245-20150919212644/@comment-81.129.206.14-20150930201448\nTalk:Federal Corvette/@comment-95.33.224.218-20151215213404\nTalk:Federal Corvette/@comment-96.54.247.38-20160301185141\nTalk:Federal Corvette/@comment-96.54.247.38-20160301185141/@comment-27139263-20160304220519\nTalk:Federal Corvette/@comment-96.54.247.38-20160301185141/@comment-73.72.116.45-20160302213537\nTalk:Federal Corvette/@comment-96.54.247.38-20160301185141/@comment-96.54.247.38-20160303164412\nTalk:Federal Dropship/@comment-104.136.32.244-20170802034553\nTalk:Federal Dropship/@comment-104.136.32.244-20170802034553/@comment-104.136.32.244-20170806140218\nTalk:Federal Dropship/@comment-104.136.32.244-20170802034553/@comment-192.136.161.6-20170802135440\nTalk:Federal Dropship/@comment-104.136.32.244-20170802034553/@comment-2601:243:480:98D9:98A2:D697:8B24:AE92-20180311022038\nTalk:Federal Dropship/@comment-104.245.77.23-20150319014857\nTalk:Federal Dropship/@comment-104.245.77.23-20150319014857/@comment-26116574-20150322014852\nTalk:Federal Dropship/@comment-104.245.77.23-20150319014857/@comment-67.1.161.75-20150531082334\nTalk:Federal Dropship/@comment-104.245.77.23-20150319014857/@comment-80.1.60.38-20150408050448\nTalk:Federal Dropship/@comment-107.141.65.99-20151007101728\nTalk:Federal Dropship/@comment-107.141.65.99-20151007101728/@comment-66.131.160.109-20151007214251\nTalk:Federal Dropship/@comment-108.2.148.152-20170506171533\nTalk:Federal Dropship/@comment-108.2.148.152-20170506171533/@comment-73.181.197.88-20171210045516\nTalk:Federal Dropship/@comment-109.193.59.21-20150123214944\nTalk:Federal Dropship/@comment-123.2.157.105-20150613063315\nTalk:Federal Dropship/@comment-123.2.157.105-20150613063315/@comment-123.2.157.105-20150614000427\nTalk:Federal Dropship/@comment-123.2.157.105-20150613063315/@comment-75.166.95.88-20150613191246\nTalk:Federal Dropship/@comment-124.168.90.71-20151011043344\nTalk:Federal Dropship/@comment-150.208.129.188-20170519144919\nTalk:Federal Dropship/@comment-150.208.129.188-20170519144919/@comment-31094186-20171225170659\nTalk:Federal Dropship/@comment-150.208.129.188-20170519144919/@comment-37.188.170.215-20181110233520\nTalk:Federal Dropship/@comment-150.208.129.188-20170519144919/@comment-37.188.170.215-20181110233638\nTalk:Federal Dropship/@comment-156.3.54.203-20150526213520\nTalk:Federal Dropship/@comment-156.3.54.203-20150526213520/@comment-2601:243:480:98D9:98A2:D697:8B24:AE92-20180311022357\nTalk:Federal Dropship/@comment-156.3.54.203-20150526213520/@comment-26116574-20150702170142\nTalk:Federal Dropship/@comment-156.3.54.203-20150526213520/@comment-69.114.195.213-20180905040150\nTalk:Federal Dropship/@comment-156.3.54.203-20150526213520/@comment-69.114.195.213-20180905040308\nTalk:Federal Dropship/@comment-156.3.54.203-20150526213520/@comment-72.192.102.108-20150623212337\nTalk:Federal Dropship/@comment-156.3.54.203-20150526213520/@comment-73.1.55.15-20150812044955\nTalk:Federal Dropship/@comment-156.3.54.203-20150526213520/@comment-75.109.81.198-20150612024235\nTalk:Federal Dropship/@comment-166.109.224.51-20191115173733\nTalk:Federal Dropship/@comment-166.109.224.51-20191115173733/@comment-98.175.69.178-20200110163710\nTalk:Federal Dropship/@comment-173.191.151.131-20151224083448\nTalk:Federal Dropship/@comment-173.191.151.131-20151224083448/@comment-50.170.117.254-20160122005508\nTalk:Federal Dropship/@comment-173.191.151.131-20151224083448/@comment-65.129.51.38-20160109055039\nTalk:Federal Dropship/@comment-173.30.172.18-20160910065332\nTalk:Federal Dropship/@comment-173.55.173.227-20150517190025\nTalk:Federal Dropship/@comment-173.55.173.227-20150517190025/@comment-135.0.26.15-20150718224902\nTalk:Federal Dropship/@comment-173.55.173.227-20150517190025/@comment-156.3.54.203-20150610163630\nTalk:Federal Dropship/@comment-173.55.173.227-20150517190025/@comment-26116574-20150602170707\nTalk:Federal Dropship/@comment-173.55.173.227-20150517190025/@comment-69.114.195.213-20180905040712\nTalk:Federal Dropship/@comment-173.55.173.227-20150517190025/@comment-78.49.37.227-20150608203652\nTalk:Federal Dropship/@comment-173.65.132.78-20151122175758\nTalk:Federal Dropship/@comment-173.65.132.78-20151122175758/@comment-124.186.99.105-20151217133003\nTalk:Federal Dropship/@comment-173.65.132.78-20151122175758/@comment-81.184.173.137-20151202181640\nTalk:Federal Dropship/@comment-185.12.218.153-20150206174752\nTalk:Federal Dropship/@comment-185.12.218.153-20150206174752/@comment-71.21.3.159-20150216204758\nTalk:Federal Dropship/@comment-188.120.171.65-20160325041739\nTalk:Federal Dropship/@comment-188.120.171.65-20160325041739/@comment-27115814-20160329150153\nTalk:Federal Dropship/@comment-188.120.171.65-20160325041739/@comment-78.2.205.192-20160408210123\nTalk:Federal Dropship/@comment-192.136.172.239-20160203124248\nTalk:Federal Dropship/@comment-192.136.172.239-20160203124248/@comment-26227424-20160626193551\nTalk:Federal Dropship/@comment-192.136.172.239-20160203124248/@comment-27115814-20160321173522\nTalk:Federal Dropship/@comment-195.160.233.253-20150123152142\nTalk:Federal Dropship/@comment-195.160.233.253-20150123152142/@comment-71.21.3.159-20150131184621\nTalk:Federal Dropship/@comment-206.16.224.136-20160112214848\nTalk:Federal Dropship/@comment-217.115.65.20-20150126131301\nTalk:Federal Dropship/@comment-217.115.65.20-20150126131301/@comment-83.202.243.188-20150202150558\nTalk:Federal Dropship/@comment-24097990-20160204194704\nTalk:Federal Dropship/@comment-24099849-20150828001002\nTalk:Federal Dropship/@comment-24099849-20150828001002/@comment-26116574-20150828160103\nTalk:Federal Dropship/@comment-24099849-20150828001002/@comment-27040495-20151031124843\nTalk:Federal Dropship/@comment-24099849-20150828001002/@comment-69.114.195.213-20180905041528\nTalk:Federal Dropship/@comment-24099849-20150828001002/@comment-72.241.143.238-20150908203646\nTalk:Federal Dropship/@comment-24099849-20150828001002/@comment-73.1.55.15-20151015093059\nTalk:Federal Dropship/@comment-24313401-20150608214656\nTalk:Federal Dropship/@comment-24313401-20150608214656/@comment-167.177.39.6-20151109155852\nTalk:Federal Dropship/@comment-24313401-20150608214656/@comment-69.114.195.213-20180905040115\nTalk:Federal Dropship/@comment-24313401-20150608214656/@comment-72.241.143.238-20150609121345\nTalk:Federal Dropship/@comment-24313401-20150608214656/@comment-75.109.81.198-20150612024144\nTalk:Federal Dropship/@comment-25502337-20141115053017\nTalk:Federal Dropship/@comment-25527827-20180708203939\nTalk:Federal Dropship/@comment-2601:19B:4080:2B99:95C6:9863:FDB2:36FC-20171114012718\nTalk:Federal Dropship/@comment-2601:19B:4080:2B99:95C6:9863:FDB2:36FC-20171114012718/@comment-170.211.150.62-20171221203343\nTalk:Federal Dropship/@comment-2601:19B:4080:2B99:95C6:9863:FDB2:36FC-20171114012718/@comment-72.241.147.127-20180315100116\nTalk:Federal Dropship/@comment-26077237-20150219191353\nTalk:Federal Dropship/@comment-26113847-20150221031804\nTalk:Federal Dropship/@comment-26116574-20150313231409\nTalk:Federal Dropship/@comment-26116574-20150313231409/@comment-26116574-20150402033432\nTalk:Federal Dropship/@comment-26116574-20150313231409/@comment-90.219.125.40-20150323210917\nTalk:Federal Dropship/@comment-26498280-20180103114331\nTalk:Federal Dropship/@comment-26498280-20180103114331/@comment-192.136.161.33-20180103205607\nTalk:Federal Dropship/@comment-26810344-20180507120200\nTalk:Federal Dropship/@comment-26821596-20150812040145\nTalk:Federal Dropship/@comment-26882764-20151001151852\nTalk:Federal Dropship/@comment-26937315-20150828220942\nTalk:Federal Dropship/@comment-26937315-20160326134348\nTalk:Federal Dropship/@comment-27040495-20151028232659\nTalk:Federal Dropship/@comment-27115814-20151110165300\nTalk:Federal Dropship/@comment-27115814-20151110165300/@comment-27115814-20151130161219\nTalk:Federal Dropship/@comment-27115814-20151110165300/@comment-99.239.198.38-20151125085156\nTalk:Federal Dropship/@comment-27115814-20160323172253\nTalk:Federal Dropship/@comment-28273515-20160422095806\nTalk:Federal Dropship/@comment-28273515-20160422095806/@comment-199.66.65.121-20180319000708\nTalk:Federal Dropship/@comment-28273515-20160422095806/@comment-33823123-20180619103309\nTalk:Federal Dropship/@comment-28273515-20160422095806/@comment-77.102.250.232-20170312164344\nTalk:Federal Dropship/@comment-31.52.45.250-20150401233423\nTalk:Federal Dropship/@comment-31094186-20171225164730\nTalk:Federal Dropship/@comment-31094186-20171225164730/@comment-2601:243:480:98D9:98A2:D697:8B24:AE92-20180311021934\nTalk:Federal Dropship/@comment-31094186-20171225164730/@comment-87.123.242.192-20180706223123\nTalk:Federal Dropship/@comment-31094186-20171225164730/@comment-94.142.239.116-20171225234554\nTalk:Federal Dropship/@comment-31094186-20171225164730/@comment-94.142.239.116-20171225234809\nTalk:Federal Dropship/@comment-34641605-20180606183244\nTalk:Federal Dropship/@comment-34641605-20180606183244/@comment-34641605-20180617222423\nTalk:Federal Dropship/@comment-44180665-20200413162852\nTalk:Federal Dropship/@comment-44180665-20200413162852/@comment-36373908-20200505222021\nTalk:Federal Dropship/@comment-44180665-20200413162852/@comment-44180665-20200511152453\nTalk:Federal Dropship/@comment-44180665-20200413162852/@comment-44180665-20200511152739\nTalk:Federal Dropship/@comment-44180665-20200413162852/@comment-45677112-20200503171512\nTalk:Federal Dropship/@comment-490933-20151015220204\nTalk:Federal Dropship/@comment-50.5.137.178-20150709003839\nTalk:Federal Dropship/@comment-50.5.137.178-20150709003839/@comment-26116574-20150709012827\nTalk:Federal Dropship/@comment-50.5.137.178-20150709003839/@comment-72.241.143.238-20150715110234\nTalk:Federal Dropship/@comment-66.229.135.252-20141223164102\nTalk:Federal Dropship/@comment-67.186.92.128-20150522042125\nTalk:Federal Dropship/@comment-67.186.92.128-20150522042125/@comment-67.186.92.128-20150528054405\nTalk:Federal Dropship/@comment-67.186.92.128-20150522042125/@comment-76.117.5.44-20150528044620\nTalk:Federal Dropship/@comment-69.114.195.213-20180905035646\nTalk:Federal Dropship/@comment-69.114.195.213-20180905035646/@comment-546749-20190225022154\nTalk:Federal Dropship/@comment-69.114.195.213-20180905041920\nTalk:Federal Dropship/@comment-69.114.195.213-20180905041920/@comment-69.114.195.213-20181104133556\nTalk:Federal Dropship/@comment-70.30.83.108-20141227165227\nTalk:Federal Dropship/@comment-71.21.3.159-20150131184546\nTalk:Federal Dropship/@comment-71.21.3.159-20150131184546/@comment-26116574-20150308220406\nTalk:Federal Dropship/@comment-71.21.3.159-20150131184546/@comment-62.31.177.227-20150218212202\nTalk:Federal Dropship/@comment-71.21.3.159-20150131184546/@comment-71.21.3.159-20150216205040\nTalk:Federal Dropship/@comment-71.21.3.159-20150131184546/@comment-83.202.243.188-20150202151305\nTalk:Federal Dropship/@comment-71.231.50.26-20151215065429\nTalk:Federal Dropship/@comment-71.231.50.26-20151215065429/@comment-101.183.165.132-20151222005817\nTalk:Federal Dropship/@comment-71.231.50.26-20151215065429/@comment-124.186.99.105-20151217131056\nTalk:Federal Dropship/@comment-71.231.50.26-20151215065429/@comment-206.16.224.136-20160112214424\nTalk:Federal Dropship/@comment-71.233.88.91-20160721174141\nTalk:Federal Dropship/@comment-71.233.88.91-20160721174141/@comment-44180665-20200522164544\nTalk:Federal Dropship/@comment-72.241.143.238-20150715110716\nTalk:Federal Dropship/@comment-72.241.143.238-20150822045940\nTalk:Federal Dropship/@comment-73.142.86.172-20160201103849\nTalk:Federal Dropship/@comment-75.130.23.188-20150625092828\nTalk:Federal Dropship/@comment-75.130.23.188-20150625092828/@comment-26009169-20150625111230\nTalk:Federal Dropship/@comment-75.130.23.188-20150625092828/@comment-91.155.150.140-20150627131851\nTalk:Federal Dropship/@comment-75.130.23.188-20150625092828/@comment-91.155.150.140-20150627133315\nTalk:Federal Dropship/@comment-77.175.79.210-20150113195846\nTalk:Federal Dropship/@comment-78.48.240.85-20150312173014\nTalk:Federal Dropship/@comment-78.70.42.26-20150116211930\nTalk:Federal Dropship/@comment-81.166.196.79-20150105163720\nTalk:Federal Dropship/@comment-81.166.196.79-20150105163720/@comment-71.21.3.159-20150216205121\nTalk:Federal Dropship/@comment-82.137.15.81-20141102154947\nTalk:Federal Dropship/@comment-82.137.15.81-20141102154947/@comment-62.31.177.227-20150218212926\nTalk:Federal Dropship/@comment-82.137.15.81-20141102154947/@comment-82.47.167.18-20141108222734\nTalk:Federal Dropship/@comment-82.226.121.139-20150803020516\nTalk:Federal Dropship/@comment-82.226.121.139-20150803020516/@comment-69.114.195.213-20180905041649\nTalk:Federal Dropship/@comment-84.74.0.24-20150720053852\nTalk:Federal Dropship/@comment-84.74.0.24-20150720053852/@comment-95.33.100.221-20150725222320\nTalk:Federal Dropship/@comment-86.184.180.55-20170725031640\nTalk:Federal Dropship/@comment-86.184.180.55-20170725031640/@comment-192.136.161.6-20170731210126\nTalk:Federal Dropship/@comment-86.184.180.55-20170725031640/@comment-2155082-20170725033947\nTalk:Federal Dropship/@comment-86.184.180.55-20170725031640/@comment-2601:243:480:98D9:98A2:D697:8B24:AE92-20180311022109\nTalk:Federal Dropship/@comment-86.184.180.55-20170725031640/@comment-81.131.207.139-20170730162207\nTalk:Federal Dropship/@comment-86.26.1.26-20151012042425\nTalk:Federal Dropship/@comment-86.26.1.26-20151012042425/@comment-25804657-20151012211755\nTalk:Federal Dropship/@comment-86.26.1.26-20151012042425/@comment-26116574-20151013030458\nTalk:Federal Dropship/@comment-87.158.141.32-20141222002705\nTalk:Federal Dropship/@comment-88.112.115.142-20191107123053\nTalk:Federal Dropship/@comment-88.112.115.142-20191107123053/@comment-45677112-20200503171652\nTalk:Federal Dropship/@comment-88.152.98.102-20160904223612\nTalk:Federal Dropship/@comment-88.18.164.212-20160126154447\nTalk:Federal Dropship/@comment-88.97.57.221-20151110222620\nTalk:Federal Dropship/@comment-88.97.57.221-20151110222620/@comment-88.97.57.221-20151110222652\nTalk:Federal Dropship/@comment-89.204.130.181-20150312180249\nTalk:Federal Dropship/@comment-90.3.38.51-20160125024035\nTalk:Federal Dropship/@comment-90.3.38.51-20160125024035/@comment-26227424-20160626193727\nTalk:Federal Dropship/@comment-90.3.38.51-20160125024035/@comment-69.114.195.213-20180905041248\nTalk:Federal Dropship/@comment-90.3.38.51-20160125024035/@comment-71.231.50.26-20160309070636\nTalk:Federal Dropship/@comment-91.153.25.132-20150321134228\nTalk:Federal Dropship/@comment-91.153.25.132-20150321134228/@comment-26116574-20150322015114\nTalk:Federal Dropship/@comment-92.17.248.173-20150219192225\nTalk:Federal Dropship/@comment-92.17.248.173-20150219192225/@comment-71.21.3.159-20150308220053\nTalk:Federal Dropship/@comment-92.17.248.173-20150219192225/@comment-92.17.248.173-20150219192308\nTalk:Federal Dropship/@comment-93.123.172.89-20150119065125\nTalk:Federal Dropship/@comment-93.143.107.104-20160413225835\nTalk:Federal Dropship/@comment-93.143.107.104-20160413225835/@comment-26227424-20160626193440\nTalk:Federal Dropship/@comment-93.143.107.104-20160413225835/@comment-27115814-20160510164827\nTalk:Federal Dropship/@comment-93.143.107.104-20160413225835/@comment-44180665-20200522162618\nTalk:Federal Dropship/@comment-93.143.107.104-20160413225835/@comment-78.1.15.216-20160527215545\nTalk:Federal Dropship/@comment-93.218.114.165-20160220174159\nTalk:Federal Dropship/@comment-94.79.174.218-20141230223112\nTalk:Federal Dropship/@comment-94.79.174.218-20150103215752\nTalk:Federal Dropship/@comment-94.79.174.218-20150103215752/@comment-217.115.65.20-20150126131249\nTalk:Federal Dropship/@comment-94.79.174.218-20150103215752/@comment-71.21.3.159-20150216205155\nTalk:Federal Dropship/@comment-95.33.113.142-20150717110132\nTalk:Federal Dropship/@comment-95.33.113.142-20150717110132/@comment-72.241.143.238-20150822044427\nTalk:Federal Dropship/@comment-95.90.240.212-20160317155726\nTalk:Federal Dropship/@comment-96.2.102.106-20160117103657\nTalk:Federal Dropship/@comment-98.175.69.178-20200110165647\nTalk:Federal Dropship/@comment-98.175.69.178-20200110165647/@comment-44180665-20200413163058\nTalk:Federal Dropship/@comment-98.175.69.178-20200110165647/@comment-44180665-20200522162909\nTalk:Federal Dropship/@comment-98.175.69.178-20200110165647/@comment-82.1.203.26-20200116191633\nTalk:Federal Dropship/@comment-98.26.87.63-20150621021252\nTalk:Federal Dropship/@comment-98.26.87.63-20150621021252/@comment-123.3.189.39-20150726150551\nTalk:Federal Dropship/@comment-98.26.87.63-20150621021252/@comment-135.0.26.15-20150718224457\nTalk:Federal Dropship Mk. II/@comment-174.71.84.171-20150912011810\nTalk:Federal Grand Lottery/@comment-82.154.97.210-20180719131236\nTalk:Federal Gunship/@comment-104.230.56.165-20151013182421\nTalk:Federal Gunship/@comment-108.47.237.140-20150921003812\nTalk:Federal Gunship/@comment-108.47.237.140-20151008224230\nTalk:Federal Gunship/@comment-108.47.237.140-20151008224230/@comment-84.168.123.209-20151011132838\nTalk:Federal Gunship/@comment-108.67.228.190-20151012041320\nTalk:Federal Gunship/@comment-108.67.228.190-20151012041320/@comment-2601:243:480:98D9:86E:EAC:6687:764-20180302014102\nTalk:Federal Gunship/@comment-108.67.228.190-20151012041320/@comment-70.198.72.113-20151020135934\nTalk:Federal Gunship/@comment-112.71.132.246-20151217094419\nTalk:Federal Gunship/@comment-112.71.132.246-20151217094419/@comment-4986699-20160112125406\nTalk:Federal Gunship/@comment-138.19.139.138-20161019141503\nTalk:Federal Gunship/@comment-151.225.213.103-20151007144806\nTalk:Federal Gunship/@comment-156.3.54.204-20150911214746\nTalk:Federal Gunship/@comment-156.3.54.204-20150911214746/@comment-72.241.143.238-20150912200740\nTalk:Federal Gunship/@comment-173.22.76.78-20180507045157\nTalk:Federal Gunship/@comment-173.61.193.177-20150913212956\nTalk:Federal Gunship/@comment-173.61.193.177-20150913212956/@comment-125.237.7.64-20161129062434\nTalk:Federal Gunship/@comment-173.61.193.177-20150913212956/@comment-217.32.219.178-20150928165353\nTalk:Federal Gunship/@comment-173.61.193.177-20150913212956/@comment-78.48.64.128-20150915030010\nTalk:Federal Gunship/@comment-173.76.104.238-20151025002107\nTalk:Federal Gunship/@comment-173.76.104.238-20151025002107/@comment-2601:243:480:98D9:86E:EAC:6687:764-20180302014000\nTalk:Federal Gunship/@comment-192.136.161.156-20160926155334\nTalk:Federal Gunship/@comment-192.136.161.156-20160926155334/@comment-155.4.242.194-20161201231646\nTalk:Federal Gunship/@comment-192.136.161.156-20160926155334/@comment-94.12.31.80-20170803134320\nTalk:Federal Gunship/@comment-193.109.254.20-20150730145540\nTalk:Federal Gunship/@comment-2001:5B0:4BC0:9F0:0:FF:FEBD:63F2-20180918075218\nTalk:Federal Gunship/@comment-2001:5B0:4BC0:9F0:0:FF:FEBD:63F2-20180918075218/@comment-44180665-20200511153802\nTalk:Federal Gunship/@comment-2001:5B0:4BC0:9F0:0:FF:FEBD:63F2-20180918075218/@comment-69.114.195.213-20180927032431\nTalk:Federal Gunship/@comment-2001:5B0:4BC0:9F0:0:FF:FEBD:63F2-20180918075218/@comment-69.114.195.213-20180929032034\nTalk:Federal Gunship/@comment-2001:5B0:4BD5:DD10:0:FF:FEBD:63F2-20181115194727\nTalk:Federal Gunship/@comment-2001:5B0:4BD5:DD10:0:FF:FEBD:63F2-20181115194727/@comment-192.136.170.98-20181115210801\nTalk:Federal Gunship/@comment-2003:72:4D11:F33B:E8B2:D5B0:53D1:1F43-20171012020510\nTalk:Federal Gunship/@comment-2003:72:4D11:F33B:E8B2:D5B0:53D1:1F43-20171012020510/@comment-109.228.166.46-20171023092320\nTalk:Federal Gunship/@comment-2003:72:4D11:F33B:E8B2:D5B0:53D1:1F43-20171012020510/@comment-189.180.224.248-20171012190754\nTalk:Federal Gunship/@comment-2003:72:4D11:F33B:E8B2:D5B0:53D1:1F43-20171012020510/@comment-26810597-20171013000252\nTalk:Federal Gunship/@comment-2003:72:4D11:F33B:E8B2:D5B0:53D1:1F43-20171012020510/@comment-69.114.195.213-20180722004615\nTalk:Federal Gunship/@comment-209.65.56.40-20181116022350\nTalk:Federal Gunship/@comment-209.65.56.40-20181116022350/@comment-2600:6C5D:4E00:13B5:3188:356:6851:7B13-20190611043502\nTalk:Federal Gunship/@comment-209.65.56.40-20181116022350/@comment-39771741-20190611044009\nTalk:Federal Gunship/@comment-212.114.159.142-20151009065322\nTalk:Federal Gunship/@comment-212.114.159.142-20151009065322/@comment-108.211.86.193-20151009194023\nTalk:Federal Gunship/@comment-212.114.159.142-20151009065322/@comment-115.188.140.90-20151011201919\nTalk:Federal Gunship/@comment-212.114.159.142-20151009065322/@comment-88.84.15.165-20151010175115\nTalk:Federal Gunship/@comment-220.233.9.125-20160119053749\nTalk:Federal Gunship/@comment-220.233.9.125-20160119053749/@comment-220.233.9.125-20160119053802\nTalk:Federal Gunship/@comment-24.14.215.87-20160106025158\nTalk:Federal Gunship/@comment-24.14.215.87-20160106025158/@comment-4986699-20160106082452\nTalk:Federal Gunship/@comment-24.14.215.87-20160106025158/@comment-64.127.136.202-20160118153737\nTalk:Federal Gunship/@comment-24.14.215.87-20160106025158/@comment-65.29.107.43-20160116164900\nTalk:Federal Gunship/@comment-24.14.215.87-20160106025158/@comment-65.29.107.43-20160116165126\nTalk:Federal Gunship/@comment-24.14.215.87-20160106025158/@comment-71.233.88.91-20160723220910\nTalk:Federal Gunship/@comment-24.53.244.177-20161130090023\nTalk:Federal Gunship/@comment-25490957-20160105130907\nTalk:Federal Gunship/@comment-25490957-20160105130907/@comment-167.127.218.145-20160128214422\nTalk:Federal Gunship/@comment-25490957-20160105130907/@comment-27115814-20160113211056\nTalk:Federal Gunship/@comment-2600:8800:7881:7300:C946:7026:34F5:603C-20180401203927\nTalk:Federal Gunship/@comment-2600:8800:7881:7300:C946:7026:34F5:603C-20180401203927/@comment-187.144.122.120-20180903011824\nTalk:Federal Gunship/@comment-2600:8800:7881:7300:C946:7026:34F5:603C-20180401203927/@comment-202.53.44.67-20180420064654\nTalk:Federal Gunship/@comment-2600:8800:7881:7300:C946:7026:34F5:603C-20180401203927/@comment-69.114.195.213-20180929032204\nTalk:Federal Gunship/@comment-26391992-20151209175645\nTalk:Federal Gunship/@comment-2A00:23C0:8A81:D401:549B:2343:2A4A:AF-20181205154604\nTalk:Federal Gunship/@comment-2A00:23C0:8A81:D401:549B:2343:2A4A:AF-20181205154604/@comment-192.136.170.98-20181205181817\nTalk:Federal Gunship/@comment-2A00:23C0:8A81:D401:549B:2343:2A4A:AF-20181205154604/@comment-2A00:23C0:8A81:D401:549B:2343:2A4A:AF-20181205160515\nTalk:Federal Gunship/@comment-2A00:23C0:8A81:D401:549B:2343:2A4A:AF-20181205154604/@comment-2A00:23C0:8A81:D401:549B:2343:2A4A:AF-20181205161046\nTalk:Federal Gunship/@comment-2A00:23C0:8A81:D401:549B:2343:2A4A:AF-20181205154604/@comment-44180665-20200511153456\nTalk:Federal Gunship/@comment-2A00:23C0:8A81:D401:549B:2343:2A4A:AF-20181205154604/@comment-68.197.23.46-20190621024640\nTalk:Federal Gunship/@comment-30561179-20170111073406\nTalk:Federal Gunship/@comment-30561179-20170111073406/@comment-192.136.161.52-20170111121548\nTalk:Federal Gunship/@comment-30561179-20170111073406/@comment-192.136.161.52-20170111173650\nTalk:Federal Gunship/@comment-30561179-20170111073406/@comment-24.1.9.47-20180210225034\nTalk:Federal Gunship/@comment-30561179-20170111073406/@comment-30561179-20170113080829\nTalk:Federal Gunship/@comment-30561179-20170111073406/@comment-72.33.2.254-20171101210100\nTalk:Federal Gunship/@comment-44180665-20200506162739\nTalk:Federal Gunship/@comment-65.120.80.118-20200131162613\nTalk:Federal Gunship/@comment-65.120.80.118-20200131162613/@comment-39771741-20200201011509\nTalk:Federal Gunship/@comment-65.120.80.118-20200131162613/@comment-44180665-20200506160734\nTalk:Federal Gunship/@comment-65.120.80.118-20200131162613/@comment-45677112-20200503172731\nTalk:Federal Gunship/@comment-68.146.121.43-20160320021318\nTalk:Federal Gunship/@comment-68.146.121.43-20160320021318/@comment-27115814-20160329145702\nTalk:Federal Gunship/@comment-68.146.121.43-20160320021318/@comment-71.233.88.91-20160609181104\nTalk:Federal Gunship/@comment-68.146.121.43-20160320021318/@comment-75.130.28.30-20160322013029\nTalk:Federal Gunship/@comment-71.233.88.91-20160701002535\nTalk:Federal Gunship/@comment-71.87.41.168-20190908164342\nTalk:Federal Gunship/@comment-72.241.143.238-20150908210145\nTalk:Federal Gunship/@comment-72.241.143.238-20151008072411\nTalk:Federal Gunship/@comment-72.241.153.66-20160603064724\nTalk:Federal Gunship/@comment-73.1.55.15-20151008062800\nTalk:Federal Gunship/@comment-73.1.55.15-20151008062800/@comment-71.233.88.91-20160723221131\nTalk:Federal Gunship/@comment-73.1.55.15-20151008064325\nTalk:Federal Gunship/@comment-73.76.27.83-20160308015749\nTalk:Federal Gunship/@comment-73.76.27.83-20160308015749/@comment-162.25.24.153-20160317103959\nTalk:Federal Gunship/@comment-73.76.27.83-20160308015749/@comment-174.52.1.8-20160315200921\nTalk:Federal Gunship/@comment-73.76.27.83-20160308015749/@comment-177.40.37.81-20160309125709\nTalk:Federal Gunship/@comment-73.76.27.83-20160308015749/@comment-192.136.172.90-20160322112426\nTalk:Federal Gunship/@comment-73.76.27.83-20160308015749/@comment-192.136.172.90-20160322185002\nTalk:Federal Gunship/@comment-73.76.27.83-20160308015749/@comment-192.136.172.90-20160323155911\nTalk:Federal Gunship/@comment-73.76.27.83-20160308015749/@comment-26391992-20160315110348\nTalk:Federal Gunship/@comment-73.76.27.83-20160308015749/@comment-26391992-20160322182144\nTalk:Federal Gunship/@comment-73.76.27.83-20160308015749/@comment-26391992-20160323153945\nTalk:Federal Gunship/@comment-73.76.27.83-20160308015749/@comment-27115814-20160321175515\nTalk:Federal Gunship/@comment-73.76.27.83-20160308015749/@comment-27115814-20160329150042\nTalk:Federal Gunship/@comment-73.76.27.83-20160308015749/@comment-4986699-20160426082056\nTalk:Federal Gunship/@comment-73.76.27.83-20160308015749/@comment-67.164.206.232-20160426010523\nTalk:Federal Gunship/@comment-73.76.27.83-20160308015749/@comment-71.2.247.208-20160421211205\nTalk:Federal Gunship/@comment-73.76.27.83-20160308015749/@comment-71.233.88.91-20160701002750\nTalk:Federal Gunship/@comment-73.76.27.83-20160308015749/@comment-75.130.28.30-20160313213849\nTalk:Federal Gunship/@comment-75.130.23.188-20160226195347\nTalk:Federal Gunship/@comment-75.130.23.188-20160226195347/@comment-2001:5B0:4BD9:A5F0:0:FF:FEBD:63F2-20181015000213\nTalk:Federal Gunship/@comment-75.130.28.30-20160316010949\nTalk:Federal Gunship/@comment-75.130.28.30-20160316010949/@comment-26391992-20160316124424\nTalk:Federal Gunship/@comment-75.130.28.30-20160316010949/@comment-26391992-20160317104623\nTalk:Federal Gunship/@comment-75.130.28.30-20160316010949/@comment-50.150.167.77-20170220072122\nTalk:Federal Gunship/@comment-78.49.81.200-20150808000045\nTalk:Federal Gunship/@comment-78.49.81.200-20150808000045/@comment-60.49.73.255-20150811103050\nTalk:Federal Gunship/@comment-78.49.81.200-20150808000045/@comment-72.241.143.238-20150822045844\nTalk:Federal Gunship/@comment-78.49.81.200-20150808000045/@comment-78.49.81.200-20150808000522\nTalk:Federal Gunship/@comment-78.49.81.200-20150808000045/@comment-78.53.179.223-20150831100244\nTalk:Federal Gunship/@comment-80.222.81.4-20151022171342\nTalk:Federal Gunship/@comment-80.222.81.4-20151022171342/@comment-24.1.9.47-20180210225314\nTalk:Federal Gunship/@comment-82.42.214.76-20150802212537\nTalk:Federal Gunship/@comment-82.42.214.76-20150802212537/@comment-184.91.189.54-20150907005253\nTalk:Federal Gunship/@comment-82.42.214.76-20150802212537/@comment-72.201.121.214-20150803193713\nTalk:Federal Gunship/@comment-82.42.214.76-20150802212537/@comment-78.49.81.200-20150808001145\nTalk:Federal Gunship/@comment-82.42.214.76-20150802212537/@comment-82.226.121.139-20150803014751\nTalk:Federal Gunship/@comment-82.42.214.76-20150802212537/@comment-82.226.121.139-20150807025033\nTalk:Federal Gunship/@comment-82.42.214.76-20150802212537/@comment-89.103.44.238-20150806210704\nTalk:Federal Gunship/@comment-82.42.214.76-20150802212537/@comment-89.74.228.150-20150908020734\nTalk:Federal Gunship/@comment-84.62.107.198-20151023124139\nTalk:Federal Gunship/@comment-84.62.107.198-20151023124139/@comment-173.76.104.238-20151025002029\nTalk:Federal Gunship/@comment-84.62.107.198-20151023124139/@comment-87.249.20.162-20151102061942\nTalk:Federal Gunship/@comment-87.176.244.27-20150924204115\nTalk:Federal Gunship/@comment-88.156.5.208-20151014221738\nTalk:Federal Gunship/@comment-88.156.5.208-20151014221738/@comment-72.241.143.238-20151028202802\nTalk:Federal Gunship/@comment-88.156.5.208-20151014221738/@comment-73.1.55.15-20151111054620\nTalk:Federal Gunship/@comment-89.74.228.150-20150908020950\nTalk:Federal Gunship/@comment-89.74.228.150-20150908020950/@comment-12.33.250.67-20151203042615\nTalk:Federal Gunship/@comment-89.74.228.150-20150908020950/@comment-156.3.54.203-20150908155053\nTalk:Federal Gunship/@comment-89.74.228.150-20150908020950/@comment-156.3.54.204-20150911172035\nTalk:Federal Gunship/@comment-89.74.228.150-20150908020950/@comment-72.241.143.238-20150908204010\nTalk:Federal Gunship/@comment-89.74.228.150-20150908020950/@comment-76.92.151.172-20150914085934\nTalk:Federal Gunship/@comment-89.74.228.150-20150908020950/@comment-89.74.228.150-20150908190501\nTalk:Federal Gunship/@comment-89.74.228.150-20150908020950/@comment-89.74.228.150-20150913022006\nTalk:Federal Gunship/@comment-94.1.173.150-20151007190846\nTalk:Federal Gunship/@comment-94.12.31.80-20170803134007\nTalk:Federal Gunship/@comment-94.12.31.80-20170803134007/@comment-170.211.150.62-20171221204954\nTalk:Federal Gunship/@comment-94.12.31.80-20170803134007/@comment-90.200.46.38-20181101194605\nTalk:Federal Gunship/@comment-95.33.225.99-20160204095444\nTalk:Federal Gunship/@comment-97.84.102.143-20151006231113\nTalk:Federal Gunship/@comment-97.84.102.143-20151006231113/@comment-71.233.88.91-20160701003227\nTalk:Federal Gunship/@comment-98.193.10.19-20181111184914\nTalk:Federal Navy/@comment-2600:8806:A300:652:5857:4F49:FA09:9BFA-20191230014000\nTalk:Federal Navy/@comment-86.130.56.11-20171101134958\nTalk:Federal Navy/@comment-86.130.56.11-20171101134958/@comment-1784834-20171216101613\nTalk:Federal Navy/@comment-86.130.56.11-20171101134958/@comment-188.195.205.121-20180711111704\nTalk:Federal Navy/@comment-86.130.56.11-20171101134958/@comment-192.136.161.33-20171216162634\nTalk:Federal Navy/@comment-86.130.56.11-20171101134958/@comment-2003:DE:4F13:1300:68F7:81E2:9345:3971-20190213205846\nTalk:Federal Navy/@comment-86.130.56.11-20171101134958/@comment-2600:387:1:816:0:0:0:68-20171209034438\nTalk:Federal Navy/@comment-86.130.56.11-20171101134958/@comment-69.114.195.213-20181023034507\nTalk:Federal Navy/@comment-86.177.237.111-20170403194118\nTalk:Federal Navy/@comment-86.177.237.111-20170403194118/@comment-99.168.125.98-20170404054539\nTalk:Federal Navy/@comment-95.49.178.238-20160313144331\nTalk:Federal Navy/@comment-95.49.178.238-20160313144331/@comment-2.24.189.45-20170320182928\nTalk:Federal Navy/@comment-95.49.178.238-20160313144331/@comment-2A01:110:A008:1:0:0:0:1E3-20180115103630\nTalk:Federal Navy/@comment-95.49.178.238-20160313144331/@comment-2A01:110:A008:1:0:0:0:1E3-20180115103904\nTalk:Federal Navy/@comment-95.49.178.238-20160313144331/@comment-77.102.250.232-20170314225445\nTalk:Federal Navy/@comment-95.49.178.238-20160313144331/@comment-88.112.115.253-20170407095508\nTalk:Federal Security Service/@comment-80.42.19.88-20151218180706\nTalk:Federal Security Service/@comment-80.42.19.88-20151218180706/@comment-1028741-20151218200817\nTalk:Federal Security Service/@comment-80.42.19.88-20151218180706/@comment-80.42.19.88-20151218205137\nTalk:Federal Security Service/@comment-80.42.19.88-20151218180706/@comment-90.200.46.38-20181123023311\nTalk:Federation/@comment-108.41.120.242-20160222110956\nTalk:Federation/@comment-12.5.54.135-20151009140612\nTalk:Federation/@comment-12.5.54.135-20151009140612/@comment-73.35.182.221-20160122202859\nTalk:Federation/@comment-143.81.103.35-20160228025535\nTalk:Federation/@comment-165.120.137.201-20160811135516\nTalk:Federation/@comment-165.120.137.201-20160811135516/@comment-121.46.18.46-20160831033116\nTalk:Federation/@comment-165.120.137.201-20160811135516/@comment-173.172.206.202-20160920021514\nTalk:Federation/@comment-165.120.137.201-20160811135516/@comment-2607:FB90:4ED5:7B55:575A:A05F:6C0C:9A92-20200101220804\nTalk:Federation/@comment-165.120.137.201-20160811135516/@comment-2607:FB90:4ED5:7B55:575A:A05F:6C0C:9A92-20200101220910\nTalk:Federation/@comment-165.120.137.201-20160811135516/@comment-43982350-20200805010953\nTalk:Federation/@comment-165.120.137.201-20160811135516/@comment-68.197.23.46-20190328034310\nTalk:Federation/@comment-173.22.84.205-20150405024920\nTalk:Federation/@comment-173.22.84.205-20150405024920/@comment-173.22.84.205-20150406031544\nTalk:Federation/@comment-173.22.84.205-20150405024920/@comment-2.222.52.236-20150405085926\nTalk:Federation/@comment-173.65.131.178-20160229115042\nTalk:Federation/@comment-176.63.243.143-20160302130848\nTalk:Federation/@comment-178.82.101.145-20150725223400\nTalk:Federation/@comment-178.82.101.145-20150725223400/@comment-178.82.101.145-20150905183916\nTalk:Federation/@comment-185.37.87.177-20160121103527\nTalk:Federation/@comment-185.37.87.177-20160121103527/@comment-124.168.38.61-20160323041218\nTalk:Federation/@comment-188.173.22.17-20150621141439\nTalk:Federation/@comment-188.173.22.17-20150621141439/@comment-114.134.187.103-20150701191131\nTalk:Federation/@comment-188.173.22.17-20150621141439/@comment-114.134.187.103-20150701191350\nTalk:Federation/@comment-188.173.22.17-20150621141439/@comment-212.169.36.40-20150629140640\nTalk:Federation/@comment-188.173.22.17-20150621141439/@comment-84.175.69.206-20150629205511\nTalk:Federation/@comment-191.183.180.80-20160218131348\nTalk:Federation/@comment-191.183.180.80-20160218131348/@comment-192.136.174.139-20160218140400\nTalk:Federation/@comment-191.183.180.80-20160218131348/@comment-90.205.111.208-20160716162257\nTalk:Federation/@comment-192.136.174.139-20160219153209\nTalk:Federation/@comment-192.136.174.152-20160316111349\nTalk:Federation/@comment-192.136.174.152-20160316111349/@comment-178.232.160.178-20160320193121\nTalk:Federation/@comment-192.136.174.152-20160316111349/@comment-192.136.172.90-20160321111953\nTalk:Federation/@comment-192.136.174.152-20160316111349/@comment-67.246.75.118-20170501071422\nTalk:Federation/@comment-192.136.174.152-20160316111349/@comment-70.176.56.155-20170428031721\nTalk:Federation/@comment-194.118.242.67-20180616220026\nTalk:Federation/@comment-194.22.238.75-20170119094956\nTalk:Federation/@comment-194.22.238.75-20170119094956/@comment-194.22.238.75-20170119095041\nTalk:Federation/@comment-194.28.15.6-20150114233429\nTalk:Federation/@comment-194.28.15.6-20150114233429/@comment-193.54.109.8-20150120095635\nTalk:Federation/@comment-194.28.15.6-20150114233429/@comment-50.88.121.45-20150125220412\nTalk:Federation/@comment-194.28.15.6-20150114233429/@comment-67.149.240.15-20150207030346\nTalk:Federation/@comment-194.28.15.6-20150114233429/@comment-67.149.240.15-20150405204502\nTalk:Federation/@comment-2.125.235.54-20150307120320\nTalk:Federation/@comment-2.125.235.54-20150307120320/@comment-2.220.233.51-20150322111926\nTalk:Federation/@comment-2.125.235.54-20150307120320/@comment-2.220.233.51-20150322125039\nTalk:Federation/@comment-207.161.162.186-20181228162332\nTalk:Federation/@comment-207.161.162.186-20181228162332/@comment-39085855-20200127195857\nTalk:Federation/@comment-24.96.250.21-20160820012909\nTalk:Federation/@comment-25985607-20150210081644\nTalk:Federation/@comment-25985607-20150210081644/@comment-12138097-20150210082833\nTalk:Federation/@comment-25985607-20150303143739\nTalk:Federation/@comment-25985607-20150303143739/@comment-217.33.115.4-20150630140749\nTalk:Federation/@comment-25985607-20150303143739/@comment-25985607-20150416125743\nTalk:Federation/@comment-25985607-20150303143739/@comment-6033893-20150416065411\nTalk:Federation/@comment-25985607-20150303143739/@comment-64.233.173.179-20150416124006\nTalk:Federation/@comment-25985607-20150303143739/@comment-80.1.60.38-20150309002611\nTalk:Federation/@comment-2602:306:CE29:B0D0:A8F8:59B2:C113:B76-20190904235802\nTalk:Federation/@comment-26227424-20160622012001\nTalk:Federation/@comment-26227424-20160622012001/@comment-27032150-20160622050844\nTalk:Federation/@comment-26227424-20160622012001/@comment-73.50.15.211-20200105184718\nTalk:Federation/@comment-26247073-20150421015123\nTalk:Federation/@comment-26413198-20150913004806\nTalk:Federation/@comment-26413198-20150913004806/@comment-26350856-20151002232431\nTalk:Federation/@comment-26413198-20150913004806/@comment-71.233.88.91-20160524160248\nTalk:Federation/@comment-26413198-20150913004806/@comment-78.48.64.128-20150915025704\nTalk:Federation/@comment-26413198-20150913004806/@comment-78.48.77.74-20151006235711\nTalk:Federation/@comment-26413198-20150913004806/@comment-95.114.229.45-20150927191100\nTalk:Federation/@comment-28191282-20160412073429\nTalk:Federation/@comment-37944191-20190421174138\nTalk:Federation/@comment-37944191-20190421174138/@comment-166.109.224.51-20190424125701\nTalk:Federation/@comment-37944191-20190421174138/@comment-2602:306:CE29:B0D0:A8F8:59B2:C113:B76-20190905000014\nTalk:Federation/@comment-37944191-20190421174138/@comment-2607:FB90:4ED5:7B55:575A:A05F:6C0C:9A92-20200101215622\nTalk:Federation/@comment-37944191-20190421174138/@comment-30928085-20190428174433\nTalk:Federation/@comment-37944191-20190421174138/@comment-68.197.23.46-20190519040941\nTalk:Federation/@comment-45.59.44.238-20151211054608\nTalk:Federation/@comment-45.59.44.238-20151211054608/@comment-73.146.32.4-20151213180905\nTalk:Federation/@comment-50.138.159.119-20160820040712\nTalk:Federation/@comment-50.138.159.119-20160820040712/@comment-121.46.18.46-20160831033506\nTalk:Federation/@comment-50.138.159.119-20160820040712/@comment-125.237.7.62-20161210032439\nTalk:Federation/@comment-50.141.115.73-20150908102735\nTalk:Federation/@comment-66.249.83.142-20141213112559\nTalk:Federation/@comment-66.249.83.142-20141213112559/@comment-174.102.96.147-20150114073104\nTalk:Federation/@comment-66.249.83.142-20141213112559/@comment-58.104.21.179-20150408045232\nTalk:Federation/@comment-66.249.83.142-20141213112559/@comment-62.30.56.254-20150201212149\nTalk:Federation/@comment-66.249.83.142-20141213112559/@comment-71.95.100.70-20150109052525\nTalk:Federation/@comment-66.249.83.142-20141213112559/@comment-97.83.226.123-20150106010918\nTalk:Federation/@comment-70.177.27.217-20160113152733\nTalk:Federation/@comment-70.73.57.13-20160926044949\nTalk:Federation/@comment-70.73.57.13-20160926044949/@comment-125.237.7.62-20161210032604\nTalk:Federation/@comment-70.73.57.13-20160926044949/@comment-192.136.161.156-20160926103752\nTalk:Federation/@comment-73.254.200.40-20170125223709\nTalk:Federation/@comment-73.254.200.40-20170125223709/@comment-192.136.161.52-20170125231046\nTalk:Federation/@comment-74.83.89.216-20150317202817\nTalk:Federation/@comment-74.83.89.216-20150317202817/@comment-74.83.89.216-20150317202929\nTalk:Federation/@comment-76.124.162.53-20150109000035\nTalk:Federation/@comment-76.124.162.53-20150109000035/@comment-71.95.100.70-20150109052627\nTalk:Federation/@comment-76.124.162.53-20150109000035/@comment-98.239.48.227-20150215161833\nTalk:Federation/@comment-78.238.168.100-20170129180038\nTalk:Federation/@comment-78.238.168.100-20170129180038/@comment-192.136.161.52-20170129193514\nTalk:Federation/@comment-78.238.168.100-20170129180038/@comment-192.136.161.52-20170130042146\nTalk:Federation/@comment-78.238.168.100-20170129180038/@comment-192.136.161.52-20170131042510\nTalk:Federation/@comment-78.238.168.100-20170129180038/@comment-192.136.161.52-20170131140245\nTalk:Federation/@comment-78.238.168.100-20170129180038/@comment-50.66.157.104-20170130190010\nTalk:Federation/@comment-78.238.168.100-20170129180038/@comment-70.77.56.238-20170202013852\nTalk:Federation/@comment-78.238.168.100-20170129180038/@comment-78.21.179.139-20170629002128\nTalk:Federation/@comment-78.238.168.100-20170129180038/@comment-78.238.168.100-20170129193644\nTalk:Federation/@comment-80.221.138.150-20150126172816\nTalk:Federation/@comment-80.221.138.150-20150126172816/@comment-184.14.108.121-20150226030933\nTalk:Federation/@comment-80.221.138.150-20150126172816/@comment-85.255.235.157-20150127190422\nTalk:Federation/@comment-86.139.100.120-20150430185638\nTalk:Federation/@comment-86.139.100.120-20150430185638/@comment-6033893-20150509150634\nTalk:Federation/@comment-86.139.100.120-20150430185638/@comment-88.85.155.146-20150501135626\nTalk:Federation/@comment-86.139.100.120-20150430185638/@comment-90.205.111.208-20160716162609\nTalk:Federation/@comment-86.26.19.129-20150725082243\nTalk:Federation/@comment-86.26.19.129-20150725082243/@comment-98.148.221.218-20150805044817\nTalk:Federation/@comment-86.52.85.36-20170808063834\nTalk:Federation/@comment-86.52.85.36-20170808063834/@comment-192.136.161.6-20170808165109\nTalk:Federation/@comment-86.52.85.36-20170808063834/@comment-86.52.85.36-20170808073440\nTalk:Federation/@comment-86.52.85.36-20170808063834/@comment-86.52.85.36-20170809022305\nTalk:Federation/@comment-86.52.85.36-20170808063834/@comment-86.52.85.36-20170809022407\nTalk:Federation/@comment-91.156.236.227-20151015194506\nTalk:Federation/@comment-91.156.236.227-20151018200646\nTalk:Federation/@comment-91.156.236.227-20151018200646/@comment-77.253.58.236-20151019034555\nTalk:Federation/@comment-91.158.160.234-20150725201947\nTalk:Federation/@comment-91.158.160.234-20150725201947/@comment-86.26.19.129-20150805154545\nTalk:Federation/@comment-91.66.140.21-20150319200723\nTalk:Federation/@comment-91.66.140.21-20150319200723/@comment-109.157.150.244-20150323225324\nTalk:Federation/@comment-91.66.140.21-20150319200723/@comment-6033893-20150407202112\nTalk:Federation/@comment-93.237.127.243-20161214053357\nTalk:Federation/@comment-93.237.127.243-20161214053357/@comment-82.131.223.203-20161219192532\nTalk:Federation/@comment-94.208.134.52-20150505222406\nTalk:Federation/@comment-94.208.134.52-20150505222406/@comment-217.33.115.4-20150630135741\nTalk:Federation/@comment-94.208.134.52-20150505222406/@comment-26391992-20150518155559\nTalk:Federation/@comment-94.208.134.52-20150505222406/@comment-86.26.19.129-20150805154637\nTalk:Federation/@comment-95.145.93.231-20150908124017\nTalk:Federation/@comment-98.196.181.135-20150110024136\nTalk:Federation/@comment-98.196.181.135-20150110024136/@comment-121.98.133.64-20150111085008\nTalk:Federation/@comment-99.237.37.136-20160307020049\nTalk:Federation/@comment-99.237.37.136-20160307020049/@comment-124.168.38.61-20160323041031\nTalk:Federation/@comment-99.237.37.136-20160307020049/@comment-192.136.174.152-20160307034144\nTalk:Federation/Ranks/@comment-101.15.248.20-20180228120755\nTalk:Federation/Ranks/@comment-101.15.248.20-20180305132155\nTalk:Federation/Ranks/@comment-101.184.150.174-20160114044342\nTalk:Federation/Ranks/@comment-103.255.6.88-20171025215518\nTalk:Federation/Ranks/@comment-103.85.123.16-20190115103223\nTalk:Federation/Ranks/@comment-103.85.123.16-20190115103223/@comment-80.6.136.127-20190602184338\nTalk:Federation/Ranks/@comment-103.85.123.16-20190115103223/@comment-82.6.228.136-20190115222236\nTalk:Federation/Ranks/@comment-104.15.34.130-20170528185618\nTalk:Federation/Ranks/@comment-104.15.34.130-20170528185618/@comment-192.136.161.52-20170530204122\nTalk:Federation/Ranks/@comment-104.15.34.130-20170528185618/@comment-24.191.124.26-20170530184600\nTalk:Federation/Ranks/@comment-104.174.82.156-20151025054947\nTalk:Federation/Ranks/@comment-104.174.82.156-20151025054947/@comment-31.52.203.26-20151027011929\nTalk:Federation/Ranks/@comment-107.209.51.227-20181124155910\nTalk:Federation/Ranks/@comment-112.211.238.34-20190126132337\nTalk:Federation/Ranks/@comment-112.211.238.34-20190126132337/@comment-2605:6000:1B02:1F:405D:65E1:DB1A:76F6-20190304234934\nTalk:Federation/Ranks/@comment-114.77.164.35-20180503083628\nTalk:Federation/Ranks/@comment-125.236.252.109-20170406235808\nTalk:Federation/Ranks/@comment-125.236.252.109-20170406235808/@comment-89.136.244.65-20170502133713\nTalk:Federation/Ranks/@comment-125.237.130.11-20190304100401\nTalk:Federation/Ranks/@comment-130.105.160.104-20180212164505\nTalk:Federation/Ranks/@comment-130.105.160.104-20180212164505/@comment-209.10.84.13-20180228202710\nTalk:Federation/Ranks/@comment-130.105.160.104-20180212164505/@comment-209.10.84.13-20180228202918\nTalk:Federation/Ranks/@comment-130.105.160.104-20180212164505/@comment-62.199.183.254-20180212220354\nTalk:Federation/Ranks/@comment-131.93.199.110-20190101212329\nTalk:Federation/Ranks/@comment-137.175.204.31-20160915133448\nTalk:Federation/Ranks/@comment-137.175.204.31-20160915133448/@comment-30157945-20161008130653\nTalk:Federation/Ranks/@comment-143.159.85.237-20180109000312\nTalk:Federation/Ranks/@comment-143.159.85.237-20180109000312/@comment-185.85.148.111-20180118072258\nTalk:Federation/Ranks/@comment-146.185.31.214-20180609042938\nTalk:Federation/Ranks/@comment-151.224.243.0-20170414211013\nTalk:Federation/Ranks/@comment-151.225.141.168-20160307222926\nTalk:Federation/Ranks/@comment-151.225.141.168-20160307222926/@comment-178.42.151.14-20160309222612\nTalk:Federation/Ranks/@comment-162.104.109.30-20180715151430\nTalk:Federation/Ranks/@comment-162.25.24.153-20160317104529\nTalk:Federation/Ranks/@comment-162.25.24.153-20160317104529/@comment-192.136.172.90-20160318030705\nTalk:Federation/Ranks/@comment-162.25.24.153-20160317104529/@comment-192.136.174.152-20160317113003\nTalk:Federation/Ranks/@comment-172.242.75.177-20180427201455\nTalk:Federation/Ranks/@comment-172.242.75.177-20180427201455/@comment-83.54.150.151-20180508213548\nTalk:Federation/Ranks/@comment-172.92.13.237-20180707024100\nTalk:Federation/Ranks/@comment-173.65.254.117-20160505001413\nTalk:Federation/Ranks/@comment-173.65.254.117-20160505001413/@comment-192.136.161.248-20160830141650\nTalk:Federation/Ranks/@comment-173.65.254.117-20160505001413/@comment-27211303-20160711050747\nTalk:Federation/Ranks/@comment-173.76.104.238-20150930231711\nTalk:Federation/Ranks/@comment-174.70.56.128-20180705041720\nTalk:Federation/Ranks/@comment-178.11.225.234-20180505210747\nTalk:Federation/Ranks/@comment-178.11.225.234-20180505210747/@comment-178.11.225.234-20180508171841\nTalk:Federation/Ranks/@comment-178.128.24.175-20161022024931\nTalk:Federation/Ranks/@comment-178.128.24.175-20161022024931/@comment-2.29.213.197-20161028131106\nTalk:Federation/Ranks/@comment-178.128.24.175-20161022024931/@comment-50.161.240.236-20161031044112\nTalk:Federation/Ranks/@comment-178.128.24.175-20161022024931/@comment-88.109.53.111-20161116225051\nTalk:Federation/Ranks/@comment-178.128.24.175-20161022024931/@comment-88.20.114.68-20161031221307\nTalk:Federation/Ranks/@comment-178.140.91.168-20180128200632\nTalk:Federation/Ranks/@comment-178.36.122.73-20151105012404\nTalk:Federation/Ranks/@comment-178.36.122.73-20151105012404/@comment-184.23.209.190-20151106152036\nTalk:Federation/Ranks/@comment-178.36.122.73-20151105012404/@comment-27115814-20151110164954\nTalk:Federation/Ranks/@comment-178.74.46.71-20150606143658\nTalk:Federation/Ranks/@comment-178.74.46.71-20150606143658/@comment-26009169-20150606151731\nTalk:Federation/Ranks/@comment-184.91.251.97-20180307020115\nTalk:Federation/Ranks/@comment-184.91.251.97-20180307020115/@comment-103.226.107.20-20180307140640\nTalk:Federation/Ranks/@comment-184.91.251.97-20180307020115/@comment-2.34.92.59-20180307185435\nTalk:Federation/Ranks/@comment-184.91.251.97-20180307020115/@comment-38.107.98.178-20180309174645\nTalk:Federation/Ranks/@comment-184.91.251.97-20180307020115/@comment-46.243.179.46-20180309181831\nTalk:Federation/Ranks/@comment-184.91.251.97-20180307020115/@comment-85.253.137.56-20180310132845\nTalk:Federation/Ranks/@comment-184.91.251.97-20180307020115/@comment-94.12.2.214-20180307162118\nTalk:Federation/Ranks/@comment-188.174.188.124-20150409053135\nTalk:Federation/Ranks/@comment-188.174.188.124-20150409053135/@comment-26033489-20150409065929\nTalk:Federation/Ranks/@comment-189.218.108.143-20171203010142\nTalk:Federation/Ranks/@comment-189.218.108.143-20171203010142/@comment-189.218.108.143-20171203041430\nTalk:Federation/Ranks/@comment-189.218.108.143-20171203010142/@comment-189.218.108.143-20171204052037\nTalk:Federation/Ranks/@comment-192.161.255.131-20171026141516\nTalk:Federation/Ranks/@comment-192.228.220.0-20181225093837\nTalk:Federation/Ranks/@comment-192.228.220.0-20181225093837/@comment-24432256-20181228170228\nTalk:Federation/Ranks/@comment-192.228.232.114-20190104154233\nTalk:Federation/Ranks/@comment-192.228.232.114-20190104154233/@comment-2001:56A:77AC:A100:47F:77CE:88C6:5B36-20190108064924\nTalk:Federation/Ranks/@comment-192.228.232.114-20190104154233/@comment-42.61.211.51-20190114225442\nTalk:Federation/Ranks/@comment-192.228.232.114-20190104161338\nTalk:Federation/Ranks/@comment-192.228.232.114-20190104161338/@comment-33487100-20190121121053\nTalk:Federation/Ranks/@comment-192.228.232.114-20190104161338/@comment-78.201.67.28-20190120155308\nTalk:Federation/Ranks/@comment-193.49.48.244-20180208103609\nTalk:Federation/Ranks/@comment-193.49.48.244-20180208103609/@comment-159.203.223.102-20180210120027\nTalk:Federation/Ranks/@comment-2.220.58.42-20161009234434\nTalk:Federation/Ranks/@comment-2.220.58.42-20161009234434/@comment-2155082-20161010000124\nTalk:Federation/Ranks/@comment-2.220.58.42-20161009234434/@comment-46.208.46.184-20161129131639\nTalk:Federation/Ranks/@comment-2.220.58.42-20161009234434/@comment-83.86.56.71-20161126160408\nTalk:Federation/Ranks/@comment-2.96.106.174-20180128064903\nTalk:Federation/Ranks/@comment-2.96.106.174-20180128064903/@comment-2600:8800:7C01:2B90:911A:8C:5D20:B64-20180129193811\nTalk:Federation/Ranks/@comment-2001:4C4E:13C6:6000:C4E4:2F7F:A091:49DF-20181116111612\nTalk:Federation/Ranks/@comment-2001:569:BD59:4800:DDDE:5B4:E368:A4AF-20171028051420\nTalk:Federation/Ranks/@comment-2003:DA:CBCB:4500:6591:B87F:552:B4EB-20180713224222\nTalk:Federation/Ranks/@comment-2003:DA:CBCB:4500:6591:B87F:552:B4EB-20180713224222/@comment-203.219.216.164-20180727200909\nTalk:Federation/Ranks/@comment-204.40.130.131-20170626150451\nTalk:Federation/Ranks/@comment-204.40.130.131-20170626150451/@comment-68.203.15.193-20170627125450\nTalk:Federation/Ranks/@comment-204.40.130.131-20170626150451/@comment-73.126.56.46-20170627021928\nTalk:Federation/Ranks/@comment-204.54.36.245-20150826143235\nTalk:Federation/Ranks/@comment-204.54.36.245-20150826143235/@comment-46.179.125.226-20150910061523\nTalk:Federation/Ranks/@comment-206.193.176.1-20171027144820\nTalk:Federation/Ranks/@comment-206.193.176.1-20171027144820/@comment-132.185.160.132-20171103133044\nTalk:Federation/Ranks/@comment-206.193.176.1-20171027144820/@comment-192.136.161.33-20171103200550\nTalk:Federation/Ranks/@comment-206.193.176.1-20171027144820/@comment-2001:569:BD59:4800:412A:9775:4E6D:486D-20171030074436\nTalk:Federation/Ranks/@comment-206.193.176.1-20171027144820/@comment-26810597-20171103211348\nTalk:Federation/Ranks/@comment-206.193.176.1-20171027144820/@comment-68.203.80.204-20171028125124\nTalk:Federation/Ranks/@comment-206.193.176.1-20171027144820/@comment-86.165.25.217-20171102125322\nTalk:Federation/Ranks/@comment-206.193.176.1-20171027144820/@comment-90.145.174.185-20171028152440\nTalk:Federation/Ranks/@comment-212.171.223.115-20171005133132\nTalk:Federation/Ranks/@comment-212.250.25.118-20150521142419\nTalk:Federation/Ranks/@comment-212.250.25.118-20150521142419/@comment-122.109.55.212-20150817133756\nTalk:Federation/Ranks/@comment-212.250.25.118-20150521142419/@comment-184.5.123.236-20150604160059\nTalk:Federation/Ranks/@comment-212.250.25.118-20150521142419/@comment-50.80.89.103-20151006141347\nTalk:Federation/Ranks/@comment-212.250.25.118-20150521142419/@comment-88.65.181.37-20151105142335\nTalk:Federation/Ranks/@comment-212.250.25.118-20150521142419/@comment-94.12.83.1-20150807163526\nTalk:Federation/Ranks/@comment-212.96.49.220-20180117084835\nTalk:Federation/Ranks/@comment-212.96.49.220-20180117084835/@comment-174.124.245.136-20180117200945\nTalk:Federation/Ranks/@comment-213.114.128.40-20150315162627\nTalk:Federation/Ranks/@comment-213.160.156.249-20190318072055\nTalk:Federation/Ranks/@comment-213.160.156.249-20190318072055/@comment-2602:306:CE29:B0D0:9F1:97A6:EA00:D186-20190913062330\nTalk:Federation/Ranks/@comment-213.160.156.249-20190318072055/@comment-78.99.232.205-20190620154634\nTalk:Federation/Ranks/@comment-217.121.218.161-20151222003114\nTalk:Federation/Ranks/@comment-217.46.125.232-20180621004053\nTalk:Federation/Ranks/@comment-217.46.125.232-20180621004053/@comment-217.46.125.232-20180621232144\nTalk:Federation/Ranks/@comment-217.46.125.232-20180621004053/@comment-94.195.20.71-20180621174305\nTalk:Federation/Ranks/@comment-24.96.115.240-20190711033259\nTalk:Federation/Ranks/@comment-24855148-20150314165034\nTalk:Federation/Ranks/@comment-24855148-20150314165034/@comment-50.80.89.103-20151006141703\nTalk:Federation/Ranks/@comment-24855148-20150314165034/@comment-67.8.85.246-20150407050616\nTalk:Federation/Ranks/@comment-24855148-20150314165034/@comment-746248-20150317144907\nTalk:Federation/Ranks/@comment-2600:6C44:4A7F:FF81:A85D:4FEF:4ED4:9A5E-20180327050425\nTalk:Federation/Ranks/@comment-2600:6C44:4A7F:FF81:A85D:4FEF:4ED4:9A5E-20180327050425/@comment-2600:6C44:4A7F:FF81:A85D:4FEF:4ED4:9A5E-20180327215040\nTalk:Federation/Ranks/@comment-2600:6C44:4A7F:FF81:A85D:4FEF:4ED4:9A5E-20180327050425/@comment-42.3.168.84-20180402140655\nTalk:Federation/Ranks/@comment-2601:151:8200:A590:5DC9:F8B9:AEF9:3311-20181229093903\nTalk:Federation/Ranks/@comment-2601:151:8200:A590:5DC9:F8B9:AEF9:3311-20181229093903/@comment-131.93.199.110-20190101222032\nTalk:Federation/Ranks/@comment-2601:151:8200:A590:5DC9:F8B9:AEF9:3311-20181229093903/@comment-159.205.109.202-20190101172132\nTalk:Federation/Ranks/@comment-2601:151:8200:A590:5DC9:F8B9:AEF9:3311-20181229093903/@comment-87.15.58.185-20190816012353\nTalk:Federation/Ranks/@comment-2601:151:8200:A590:5DC9:F8B9:AEF9:3311-20181229094255\nTalk:Federation/Ranks/@comment-2601:151:8200:A590:5DC9:F8B9:AEF9:3311-20181229094255/@comment-50.80.27.22-20191024151242\nTalk:Federation/Ranks/@comment-2601:602:880:5D2:704C:6B52:2BB0:BAD0-20180315223946\nTalk:Federation/Ranks/@comment-2601:602:880:5D2:704C:6B52:2BB0:BAD0-20180315223946/@comment-173.170.95.9-20180318062830\nTalk:Federation/Ranks/@comment-2601:602:880:5D2:704C:6B52:2BB0:BAD0-20180315223946/@comment-2601:588:C400:CD62:4D0:9C3F:3D3A:D394-20180316002312\nTalk:Federation/Ranks/@comment-2601:602:880:5D2:704C:6B52:2BB0:BAD0-20180315223946/@comment-2601:588:C400:CD62:4DB:9BA9:571C:3328-20180317172924\nTalk:Federation/Ranks/@comment-2601:602:880:5D2:704C:6B52:2BB0:BAD0-20180315223946/@comment-2A00:23C5:3E00:EF00:645B:35DC:C78B:30D9-20180317004727\nTalk:Federation/Ranks/@comment-2601:602:880:5D2:704C:6B52:2BB0:BAD0-20180315223946/@comment-2A02:C7F:C72:AA00:20BF:304:94CD:2F1D-20180517041422\nTalk:Federation/Ranks/@comment-2601:602:880:5D2:704C:6B52:2BB0:BAD0-20180315223946/@comment-68.186.130.248-20180330013712\nTalk:Federation/Ranks/@comment-2601:602:880:5D2:704C:6B52:2BB0:BAD0-20180315223946/@comment-96.3.91.169-20180317185944\nTalk:Federation/Ranks/@comment-2601:680:8100:560:84F3:9D8B:30EC:76D4-20191206193427\nTalk:Federation/Ranks/@comment-2601:680:8100:560:84F3:9D8B:30EC:76D4-20191206193427/@comment-62.24.80.161-20191213213331\nTalk:Federation/Ranks/@comment-2601:8C0:37F:7E67:F444:C589:F223:FFB4-20190716003441\nTalk:Federation/Ranks/@comment-2601:985:4000:D8E8:244C:8728:7396:374C-20171114220942\nTalk:Federation/Ranks/@comment-2601:985:4000:D8E8:244C:8728:7396:374C-20171114220942/@comment-2601:985:4000:D8E8:D5A9:1F03:9B41:ED90-20171116072046\nTalk:Federation/Ranks/@comment-2601:985:4000:D8E8:244C:8728:7396:374C-20171114220942/@comment-67.83.200.134-20171115154754\nTalk:Federation/Ranks/@comment-26021359-20160227024024\nTalk:Federation/Ranks/@comment-26021359-20160227024024/@comment-82.3.86.66-20160227101850\nTalk:Federation/Ranks/@comment-2602:306:3168:4C40:A46D:4D0A:A24B:EEDD-20180306034937\nTalk:Federation/Ranks/@comment-2602:306:3168:4C40:A46D:4D0A:A24B:EEDD-20180306034937/@comment-192.136.161.33-20180306042236\nTalk:Federation/Ranks/@comment-2602:306:3168:4C40:A46D:4D0A:A24B:EEDD-20180306034937/@comment-192.136.161.33-20180306140639\nTalk:Federation/Ranks/@comment-2602:306:3168:4C40:A46D:4D0A:A24B:EEDD-20180306034937/@comment-2600:1003:B85E:3A1E:2585:3F53:9E9A:CDB-20180306184154\nTalk:Federation/Ranks/@comment-2602:306:3168:4C40:A46D:4D0A:A24B:EEDD-20180306034937/@comment-81.158.208.236-20180306045843\nTalk:Federation/Ranks/@comment-2605:6000:8C08:D000:A1EB:C08:F62:CEF0-20180524001942\nTalk:Federation/Ranks/@comment-2605:E000:160C:C4C5:942B:A858:3AC4:1F31-20180515053236\nTalk:Federation/Ranks/@comment-2605:E000:160C:C4C5:942B:A858:3AC4:1F31-20180515053236/@comment-180.233.241.60-20180515180114\nTalk:Federation/Ranks/@comment-2605:E000:160C:C4C5:942B:A858:3AC4:1F31-20180515053236/@comment-72.185.232.186-20180516213131\nTalk:Federation/Ranks/@comment-2605:E000:160C:C4C5:942B:A858:3AC4:1F31-20180515053236/@comment-86.133.162.10-20180528213046\nTalk:Federation/Ranks/@comment-27.32.19.146-20160116081042\nTalk:Federation/Ranks/@comment-28566264-20200617121344\nTalk:Federation/Ranks/@comment-28566264-20200617121344/@comment-28566264-20200618081333\nTalk:Federation/Ranks/@comment-28566264-20200617121344/@comment-46102929-20200617163739\nTalk:Federation/Ranks/@comment-2A00:23C3:52A:4B00:6DDE:E14A:5280:9319-20180129195717\nTalk:Federation/Ranks/@comment-2A00:23C3:52A:4B00:6DDE:E14A:5280:9319-20180129195717/@comment-10291972-20180131023138\nTalk:Federation/Ranks/@comment-2A00:23C3:52A:4B00:6DDE:E14A:5280:9319-20180129195717/@comment-174.3.9.27-20180201231955\nTalk:Federation/Ranks/@comment-2A00:23C3:52A:4B00:6DDE:E14A:5280:9319-20180129195717/@comment-2600:8800:7C01:2B90:911A:8C:5D20:B64-20180129221108\nTalk:Federation/Ranks/@comment-2A00:23C3:52A:4B00:6DDE:E14A:5280:9319-20180129195717/@comment-2A00:23C3:52A:4B00:6DDE:E14A:5280:9319-20180130002816\nTalk:Federation/Ranks/@comment-2A00:23C5:2C85:200:D8D3:260E:707D:9E46-20180207024410\nTalk:Federation/Ranks/@comment-2A00:23C5:2C85:200:D8D3:260E:707D:9E46-20180207024410/@comment-2605:E000:8A9C:7400:1054:71C2:C8F:7E2F-20180207042621\nTalk:Federation/Ranks/@comment-2A00:23C5:2C85:200:D97C:A028:7334:9F96-20180208045452\nTalk:Federation/Ranks/@comment-2A02:8108:473F:DA18:383E:7200:26C2:C26F-20180114181936\nTalk:Federation/Ranks/@comment-2A02:8108:473F:DA18:383E:7200:26C2:C26F-20180114181936/@comment-189.226.205.216-20180115143746\nTalk:Federation/Ranks/@comment-2A02:8108:473F:DA18:383E:7200:26C2:C26F-20180114181936/@comment-189.226.205.216-20180118030005\nTalk:Federation/Ranks/@comment-2A02:8108:473F:DA18:383E:7200:26C2:C26F-20180114181936/@comment-2A02:8108:473F:DA18:D516:90CB:1036:64E9-20180117173748\nTalk:Federation/Ranks/@comment-2A02:C7F:A043:6000:C154:1BDE:C9C0:A51-20171212173641\nTalk:Federation/Ranks/@comment-2A02:C7F:A043:6000:C154:1BDE:C9C0:A51-20171212173641/@comment-47.158.15.82-20171231171216\nTalk:Federation/Ranks/@comment-2A02:C7F:A043:6000:C598:63BB:D82A:2AD5-20171213192624\nTalk:Federation/Ranks/@comment-2A02:C7F:A043:6000:C598:63BB:D82A:2AD5-20171213192624/@comment-2606:A000:404E:A000:BD66:F5BB:FED5:E58B-20180115013851\nTalk:Federation/Ranks/@comment-2A02:C7F:A043:6000:C598:63BB:D82A:2AD5-20171213192624/@comment-79.185.38.248-20171229010253\nTalk:Federation/Ranks/@comment-2A02:C7F:A043:6000:C598:63BB:D82A:2AD5-20171213192624/@comment-94.139.0.124-20171227205141\nTalk:Federation/Ranks/@comment-31016855-20170111092218\nTalk:Federation/Ranks/@comment-31016855-20170111092218/@comment-24.2.111.151-20170122062527\nTalk:Federation/Ranks/@comment-31016855-20170111092218/@comment-86.180.180.49-20170121231801\nTalk:Federation/Ranks/@comment-31016855-20170111092218/@comment-89.136.244.65-20170502134253\nTalk:Federation/Ranks/@comment-31016855-20170111092218/@comment-98.171.160.89-20170122011105\nTalk:Federation/Ranks/@comment-31016855-20170414222246\nTalk:Federation/Ranks/@comment-31016855-20170414222246/@comment-151.227.146.159-20170519165147\nTalk:Federation/Ranks/@comment-31016855-20170414222246/@comment-31016855-20170426180202\nTalk:Federation/Ranks/@comment-31016855-20170414222246/@comment-86.161.30.82-20170416134813\nTalk:Federation/Ranks/@comment-31179914-20170129144148\nTalk:Federation/Ranks/@comment-31179914-20170129144148/@comment-203.7.81.23-20170324081034\nTalk:Federation/Ranks/@comment-31179914-20170129144148/@comment-220.244.63.162-20170322235424\nTalk:Federation/Ranks/@comment-33630856-20171112160854\nTalk:Federation/Ranks/@comment-33775383-20171126112857\nTalk:Federation/Ranks/@comment-33829432-20200812134757\nTalk:Federation/Ranks/@comment-33829432-20200822034108\nTalk:Federation/Ranks/@comment-33829432-20200822034108/@comment-33829432-20200910031627\nTalk:Federation/Ranks/@comment-33829432-20200822034108/@comment-46845704-20200909190835\nTalk:Federation/Ranks/@comment-33829432-20200822034108/@comment-46858791-20200911053826\nTalk:Federation/Ranks/@comment-35.133.56.197-20180830054135\nTalk:Federation/Ranks/@comment-35.133.56.197-20180830054135/@comment-73.157.123.152-20180905025632\nTalk:Federation/Ranks/@comment-35.133.56.197-20180830054135/@comment-75.140.115.130-20180901215230\nTalk:Federation/Ranks/@comment-35002879-20180315034300\nTalk:Federation/Ranks/@comment-35002879-20180315034300/@comment-67.7.52.162-20180425075433\nTalk:Federation/Ranks/@comment-35991579-20180626044048\nTalk:Federation/Ranks/@comment-35991579-20180626044048/@comment-2001:16B8:2DB4:4F00:5A6:1643:C39B:5194-20180630142611\nTalk:Federation/Ranks/@comment-35991579-20180626044048/@comment-2600:1014:B107:C549:C961:3C4C:40FE:7316-20180707000201\nTalk:Federation/Ranks/@comment-35991579-20180626044048/@comment-35746808-20180627222352\nTalk:Federation/Ranks/@comment-36352121-20190121150619\nTalk:Federation/Ranks/@comment-36352121-20190121150619/@comment-36352121-20190121151355\nTalk:Federation/Ranks/@comment-36352121-20190121150619/@comment-99.192.9.69-20190122044929\nTalk:Federation/Ranks/@comment-37286895-20181024203228\nTalk:Federation/Ranks/@comment-38462677-20190208183916\nTalk:Federation/Ranks/@comment-38462677-20190208183916/@comment-2601:644:8102:A590:6818:DE50:D5AC:53D4-20190209221536\nTalk:Federation/Ranks/@comment-38462677-20190208183916/@comment-38462677-20190212202502\nTalk:Federation/Ranks/@comment-38757744-20190309165153\nTalk:Federation/Ranks/@comment-42.3.168.84-20180402144507\nTalk:Federation/Ranks/@comment-42.3.168.84-20180402144507/@comment-2A02:C7F:3407:7F00:D9D2:9CE7:73DF:9332-20180406175817\nTalk:Federation/Ranks/@comment-44334328-20191105212218\nTalk:Federation/Ranks/@comment-44334328-20191105212218/@comment-199.249.157.129-20191125173251\nTalk:Federation/Ranks/@comment-44334328-20191105212218/@comment-2003:ED:4BDD:500:9192:CB96:BAA8:B7F9-20191208151818\nTalk:Federation/Ranks/@comment-44334328-20191105212218/@comment-74.95.156.189-20191122015130\nTalk:Federation/Ranks/@comment-44334328-20191105212218/@comment-91.138.198.31-20191209210636\nTalk:Federation/Ranks/@comment-45.50.143.193-20150908163226\nTalk:Federation/Ranks/@comment-45.50.143.193-20150908163226/@comment-109.196.59.77-20150912094202\nTalk:Federation/Ranks/@comment-45.50.143.193-20150908163226/@comment-50.80.89.103-20151006141127\nTalk:Federation/Ranks/@comment-46007105-20200605195104\nTalk:Federation/Ranks/@comment-46007105-20200605195104/@comment-46102929-20200616042914\nTalk:Federation/Ranks/@comment-46277373-20200706082323\nTalk:Federation/Ranks/@comment-46277373-20200706082323/@comment-33829432-20200812135243\nTalk:Federation/Ranks/@comment-46277373-20200706082323/@comment-46314182-20200710131117\nTalk:Federation/Ranks/@comment-46923338-20200918173740\nTalk:Federation/Ranks/@comment-47.198.70.201-20180213184706\nTalk:Federation/Ranks/@comment-47.223.148.61-20170331010552\nTalk:Federation/Ranks/@comment-47.54.128.163-20180217055256\nTalk:Federation/Ranks/@comment-47.54.128.163-20180217055256/@comment-86.152.118.111-20180228193616\nTalk:Federation/Ranks/@comment-47.54.128.163-20180218195210\nTalk:Federation/Ranks/@comment-47.54.128.163-20180218195210/@comment-162.218.166.250-20180225120721\nTalk:Federation/Ranks/@comment-5.152.240.50-20171204114249\nTalk:Federation/Ranks/@comment-5.68.230.137-20160406230247\nTalk:Federation/Ranks/@comment-62.101.166.122-20190719213846\nTalk:Federation/Ranks/@comment-62.21.1.187-20180430223815\nTalk:Federation/Ranks/@comment-62.21.1.187-20180430223815/@comment-107.210.40.92-20180502013156\nTalk:Federation/Ranks/@comment-62.21.1.187-20180430223815/@comment-2604:2D80:882C:9FFA:C02:73D9:2D90:3792-20180502202036\nTalk:Federation/Ranks/@comment-62.21.1.187-20180430223815/@comment-2605:E000:160C:C4C5:F167:CF39:CC19:905B-20180515025003\nTalk:Federation/Ranks/@comment-62.21.1.187-20180430223815/@comment-62.21.1.187-20180502144732\nTalk:Federation/Ranks/@comment-62.21.1.187-20180430223815/@comment-94.226.245.94-20180506141341\nTalk:Federation/Ranks/@comment-62.211.136.144-20170327141731\nTalk:Federation/Ranks/@comment-62.211.136.144-20170327141731/@comment-199.96.245.119-20170330194616\nTalk:Federation/Ranks/@comment-62.211.136.144-20170327141731/@comment-91.227.212.3-20170329095835\nTalk:Federation/Ranks/@comment-67.21.153.142-20170403141902\nTalk:Federation/Ranks/@comment-67.21.153.142-20170403141902/@comment-149.101.37.2-20170425005242\nTalk:Federation/Ranks/@comment-67.21.153.142-20170403141902/@comment-199.96.245.119-20170403203625\nTalk:Federation/Ranks/@comment-67.21.153.142-20170403141902/@comment-89.136.244.65-20170502133747\nTalk:Federation/Ranks/@comment-67.21.153.142-20170518172932\nTalk:Federation/Ranks/@comment-67.21.153.142-20170518172932/@comment-212.130.241.198-20170519083312\nTalk:Federation/Ranks/@comment-67.255.212.176-20180629193249\nTalk:Federation/Ranks/@comment-67.8.85.246-20150408051616\nTalk:Federation/Ranks/@comment-68.118.254.191-20180110232159\nTalk:Federation/Ranks/@comment-68.118.254.191-20180110232159/@comment-185.85.148.111-20180118084712\nTalk:Federation/Ranks/@comment-68.118.254.191-20180110232159/@comment-2.26.249.127-20180116212555\nTalk:Federation/Ranks/@comment-68.118.254.191-20180110232159/@comment-212.96.49.220-20180117085932\nTalk:Federation/Ranks/@comment-68.118.254.191-20180110232159/@comment-213.147.166.174-20180113182040\nTalk:Federation/Ranks/@comment-68.118.254.191-20180110232159/@comment-68.134.226.143-20180113223405\nTalk:Federation/Ranks/@comment-68.129.240.246-20181225031419\nTalk:Federation/Ranks/@comment-68.129.240.246-20181225031419/@comment-159.205.101.39-20181226201044\nTalk:Federation/Ranks/@comment-68.129.240.246-20181225031419/@comment-189.32.29.99-20190115035202\nTalk:Federation/Ranks/@comment-68.150.13.82-20161201005955\nTalk:Federation/Ranks/@comment-68.150.13.82-20161201005955/@comment-109.152.201.213-20170106232837\nTalk:Federation/Ranks/@comment-68.7.219.179-20151018211609\nTalk:Federation/Ranks/@comment-69.118.11.190-20180317011222\nTalk:Federation/Ranks/@comment-69.118.11.190-20180317011246\nTalk:Federation/Ranks/@comment-69.137.188.155-20180705191800\nTalk:Federation/Ranks/@comment-69.137.188.155-20180705191800/@comment-173.48.82.23-20180706140354\nTalk:Federation/Ranks/@comment-69.47.84.217-20180306051828\nTalk:Federation/Ranks/@comment-70.160.81.250-20151006203728\nTalk:Federation/Ranks/@comment-70.160.81.250-20151006203728/@comment-31.52.203.26-20151027012034\nTalk:Federation/Ranks/@comment-70.160.81.250-20151006203728/@comment-70.112.211.70-20151007221311\nTalk:Federation/Ranks/@comment-71.15.252.82-20180302191521\nTalk:Federation/Ranks/@comment-71.15.252.82-20180302191521/@comment-71.15.252.82-20180302191725\nTalk:Federation/Ranks/@comment-72.87.140.105-20151221055918\nTalk:Federation/Ranks/@comment-72.87.140.105-20151221055918/@comment-174.7.116.84-20151221063131\nTalk:Federation/Ranks/@comment-72.87.140.105-20151221055918/@comment-98.220.205.167-20151222030122\nTalk:Federation/Ranks/@comment-73.194.191.7-20170623045733\nTalk:Federation/Ranks/@comment-73.194.191.7-20170623045733/@comment-124.150.11.219-20170703105915\nTalk:Federation/Ranks/@comment-73.194.191.7-20170623045733/@comment-75.136.227.24-20170624053730\nTalk:Federation/Ranks/@comment-73.54.86.29-20190918200142\nTalk:Federation/Ranks/@comment-73.54.86.29-20190918200142/@comment-2A00:23C6:5E81:501:CD56:E237:7C25:8F9F-20191118101348\nTalk:Federation/Ranks/@comment-73.70.58.201-20151221195858\nTalk:Federation/Ranks/@comment-73.70.58.201-20151221195858/@comment-98.220.205.167-20151222051859\nTalk:Federation/Ranks/@comment-73.70.58.201-20151228233010\nTalk:Federation/Ranks/@comment-73.70.58.201-20151228233010/@comment-212.178.246.94-20160114234630\nTalk:Federation/Ranks/@comment-73.70.58.201-20151228233010/@comment-27560507-20160106215209\nTalk:Federation/Ranks/@comment-73.70.58.201-20151228233010/@comment-68.217.207.134-20151229023517\nTalk:Federation/Ranks/@comment-73.70.58.201-20151228233010/@comment-96.41.189.102-20160110081513\nTalk:Federation/Ranks/@comment-74.110.188.184-20190409050223\nTalk:Federation/Ranks/@comment-74.110.188.184-20190409050223/@comment-124.149.207.69-20190416133315\nTalk:Federation/Ranks/@comment-74.110.188.184-20190409050223/@comment-2A02:908:3112:9160:F1CD:2843:DADB:4775-20200124183719\nTalk:Federation/Ranks/@comment-74.110.188.184-20190409050223/@comment-75.107.35.152-20190422110612\nTalk:Federation/Ranks/@comment-74.138.209.205-20171201095728\nTalk:Federation/Ranks/@comment-74.138.209.205-20171201095728/@comment-190.197.17.87-20171201200431\nTalk:Federation/Ranks/@comment-75.136.227.24-20170701064059\nTalk:Federation/Ranks/@comment-75.155.80.12-20170408072111\nTalk:Federation/Ranks/@comment-75.155.80.12-20170408072111/@comment-110.20.20.219-20170411060819\nTalk:Federation/Ranks/@comment-75.155.80.12-20170408072111/@comment-71.86.236.132-20170410231421\nTalk:Federation/Ranks/@comment-75.170.37.86-20180405073613\nTalk:Federation/Ranks/@comment-75.170.37.86-20180405073613/@comment-2A00:23C4:3406:100:9C29:C178:2935:F574-20180405100831\nTalk:Federation/Ranks/@comment-75.170.37.86-20180405073613/@comment-2A00:23C4:3406:100:9C29:C178:2935:F574-20180405102559\nTalk:Federation/Ranks/@comment-75.170.37.86-20180405073613/@comment-67.7.52.162-20180425075213\nTalk:Federation/Ranks/@comment-75.170.37.86-20180405073613/@comment-73.165.180.42-20180412140542\nTalk:Federation/Ranks/@comment-76.71.51.6-20161128004304\nTalk:Federation/Ranks/@comment-76.71.51.6-20161128004304/@comment-192.136.161.52-20161128032530\nTalk:Federation/Ranks/@comment-77.102.22.232-20180405111301\nTalk:Federation/Ranks/@comment-7753017-20171030102559\nTalk:Federation/Ranks/@comment-7753017-20171030102559/@comment-2001:569:BD59:4800:7C06:20BC:2787:A7A4-20171030181437\nTalk:Federation/Ranks/@comment-7753017-20171030102559/@comment-5664524-20171103020441\nTalk:Federation/Ranks/@comment-79.136.64.95-20171215035739\nTalk:Federation/Ranks/@comment-79.136.64.95-20171215035739/@comment-47.151.27.163-20180104142756\nTalk:Federation/Ranks/@comment-79.136.64.95-20171215035739/@comment-92.8.208.131-20180102192501\nTalk:Federation/Ranks/@comment-79.17.104.93-20170412150156\nTalk:Federation/Ranks/@comment-79.17.104.93-20170412150156/@comment-144.191.148.10-20170621190502\nTalk:Federation/Ranks/@comment-79.17.104.93-20170412150156/@comment-2155082-20170414202059\nTalk:Federation/Ranks/@comment-79.17.104.93-20170412150156/@comment-81.136.167.184-20170413093447\nTalk:Federation/Ranks/@comment-79.17.104.93-20170412150156/@comment-81.136.167.184-20170413093522\nTalk:Federation/Ranks/@comment-79.17.104.93-20170412150156/@comment-82.2.125.150-20170414135121\nTalk:Federation/Ranks/@comment-79.17.104.93-20170412150156/@comment-86.179.224.169-20170418084215\nTalk:Federation/Ranks/@comment-8162731-20160320233640\nTalk:Federation/Ranks/@comment-8162731-20160320233640/@comment-192.136.172.90-20160321110910\nTalk:Federation/Ranks/@comment-8162731-20160320233640/@comment-192.136.172.90-20160322145808\nTalk:Federation/Ranks/@comment-8162731-20160320233640/@comment-192.136.172.90-20160322172600\nTalk:Federation/Ranks/@comment-8162731-20160320233640/@comment-8162731-20160322145056\nTalk:Federation/Ranks/@comment-8162731-20160320233640/@comment-8162731-20160322152131\nTalk:Federation/Ranks/@comment-82.13.25.54-20180128134319\nTalk:Federation/Ranks/@comment-82.13.25.54-20180128134319/@comment-178.140.91.168-20180128212720\nTalk:Federation/Ranks/@comment-82.37.244.148-20180330123401\nTalk:Federation/Ranks/@comment-82.38.144.39-20170709211213\nTalk:Federation/Ranks/@comment-82.38.144.39-20170709211213/@comment-203.219.228.189-20170718082032\nTalk:Federation/Ranks/@comment-82.38.144.39-20170709211213/@comment-82.38.144.39-20170709211423\nTalk:Federation/Ranks/@comment-82.38.144.39-20170709211213/@comment-84.59.200.246-20171020225222\nTalk:Federation/Ranks/@comment-82.39.185.63-20180320103709\nTalk:Federation/Ranks/@comment-82.39.185.63-20180320103709/@comment-2003:75:8F3F:3B91:6C58:40A3:72E0:667B-20180322201057\nTalk:Federation/Ranks/@comment-82.39.185.63-20180320103709/@comment-24.60.229.127-20180321004621\nTalk:Federation/Ranks/@comment-82.39.185.63-20180320103709/@comment-87.252.56.123-20180324082156\nTalk:Federation/Ranks/@comment-82.39.191.17-20180519213213\nTalk:Federation/Ranks/@comment-82.39.191.17-20180519213213/@comment-34736736-20180520224214\nTalk:Federation/Ranks/@comment-82.39.191.17-20180519213213/@comment-71.72.243.0-20180726034618\nTalk:Federation/Ranks/@comment-82.39.191.17-20180519213213/@comment-82.39.191.17-20180519214924\nTalk:Federation/Ranks/@comment-84.106.123.80-20180217150503\nTalk:Federation/Ranks/@comment-84.106.123.80-20180217150503/@comment-68.134.154.59-20180306185123\nTalk:Federation/Ranks/@comment-84.106.123.80-20180217150503/@comment-86.152.118.111-20180228193645\nTalk:Federation/Ranks/@comment-84.106.123.80-20180217150503/@comment-86.29.114.119-20180224154317\nTalk:Federation/Ranks/@comment-84.106.123.80-20180217150503/@comment-86.29.114.119-20180304092659\nTalk:Federation/Ranks/@comment-84.143.3.248-20160130231905\nTalk:Federation/Ranks/@comment-84.237.177.149-20170227203105\nTalk:Federation/Ranks/@comment-84.237.177.149-20170227203105/@comment-176.23.88.230-20170317031933\nTalk:Federation/Ranks/@comment-84.237.177.149-20170227203105/@comment-2003:6:2146:6A53:88DD:7984:80B1:1FA1-20170825012833\nTalk:Federation/Ranks/@comment-84.237.177.149-20170227203105/@comment-31510018-20170314145656\nTalk:Federation/Ranks/@comment-84.237.177.149-20170227203105/@comment-65.32.104.6-20170312184331\nTalk:Federation/Ranks/@comment-84.237.177.149-20170227203105/@comment-86.9.76.195-20170314190855\nTalk:Federation/Ranks/@comment-84.25.166.143-20170429185116\nTalk:Federation/Ranks/@comment-84.25.166.143-20170429185116/@comment-177.42.42.226-20170429192219\nTalk:Federation/Ranks/@comment-84.25.166.143-20170429185116/@comment-73.85.244.65-20170511191306\nTalk:Federation/Ranks/@comment-84.25.166.143-20170429185116/@comment-84.25.166.143-20170429192649\nTalk:Federation/Ranks/@comment-84.25.166.143-20170429185116/@comment-86.127.43.198-20170502140450\nTalk:Federation/Ranks/@comment-85.192.70.113-20151005084515\nTalk:Federation/Ranks/@comment-85.201.18.46-20180518100329\nTalk:Federation/Ranks/@comment-85.201.18.46-20180518100329/@comment-2601:681:4F00:1082:C01F:8E02:965D:CD69-20180604061021\nTalk:Federation/Ranks/@comment-85.201.18.46-20180518100329/@comment-85.201.18.46-20180518100657\nTalk:Federation/Ranks/@comment-85.201.18.46-20180518100329/@comment-98.197.230.141-20180608153248\nTalk:Federation/Ranks/@comment-85.255.235.243-20171128163722\nTalk:Federation/Ranks/@comment-85.255.235.243-20171128163722/@comment-160.176.51.21-20171208114043\nTalk:Federation/Ranks/@comment-85.255.235.243-20171128163722/@comment-160.176.51.21-20171208150705\nTalk:Federation/Ranks/@comment-85.255.235.243-20171128163722/@comment-69.145.137.193-20171201094650\nTalk:Federation/Ranks/@comment-85.255.235.243-20171128163722/@comment-75.97.98.141-20171202221441\nTalk:Federation/Ranks/@comment-85.255.235.243-20171128163722/@comment-75.97.98.141-20171202221652\nTalk:Federation/Ranks/@comment-86.133.5.232-20180315201942\nTalk:Federation/Ranks/@comment-87.128.30.7-20190312093935\nTalk:Federation/Ranks/@comment-87.128.30.7-20190312093935/@comment-75.174.31.55-20190331155132\nTalk:Federation/Ranks/@comment-87.128.30.7-20190312093935/@comment-90.252.247.71-20190412154128\nTalk:Federation/Ranks/@comment-88.109.53.111-20161116224924\nTalk:Federation/Ranks/@comment-88.109.53.111-20161116224924/@comment-109.95.112.24-20161118111149\nTalk:Federation/Ranks/@comment-88.109.53.111-20161116224924/@comment-192.136.161.52-20161116230726\nTalk:Federation/Ranks/@comment-88.216.27.79-20150207125202\nTalk:Federation/Ranks/@comment-91.116.226.18-20190301154632\nTalk:Federation/Ranks/@comment-91.116.226.18-20190301154632/@comment-2804:14D:5C78:8E64:4946:202D:E16D:E1AC-20190302222730\nTalk:Federation/Ranks/@comment-91.228.45.15-20161016134625\nTalk:Federation/Ranks/@comment-91.228.45.15-20161016134625/@comment-137.175.204.31-20161018013007\nTalk:Federation/Ranks/@comment-91.228.45.15-20161016134625/@comment-71.237.73.209-20161111082416\nTalk:Federation/Ranks/@comment-92.14.158.231-20150213225635\nTalk:Federation/Ranks/@comment-92.14.158.231-20150410203048\nTalk:Federation/Ranks/@comment-92.211.105.15-20180127103906\nTalk:Federation/Ranks/@comment-92.211.105.15-20180127103906/@comment-2600:8800:7C01:2B90:412E:5BDB:E82E:874A-20180127174947\nTalk:Federation/Ranks/@comment-92.234.46.128-20170320162855\nTalk:Federation/Ranks/@comment-92.238.86.177-20180202184944\nTalk:Federation/Ranks/@comment-92.238.86.177-20180202184944/@comment-92.238.86.177-20180202185206\nTalk:Federation/Ranks/@comment-92.4.154.212-20180224142922\nTalk:Federation/Ranks/@comment-92.4.154.212-20180224142922/@comment-86.29.114.119-20180224154300\nTalk:Federation/Ranks/@comment-94.112.102.42-20180122170212\nTalk:Federation/Ranks/@comment-94.112.102.42-20180122170212/@comment-63.255.224.106-20180122175436\nTalk:Federation/Ranks/@comment-94.14.126.144-20180619071000\nTalk:Federation/Ranks/@comment-94.6.229.53-20190623204427\nTalk:Federation/Ranks/@comment-95.44.93.147-20180201205121\nTalk:Federation/Ranks/@comment-95.44.93.147-20180201205121/@comment-188.167.7.130-20180202115428\nTalk:Federation/Ranks/@comment-95.90.217.27-20150304195128\nTalk:Federation/Ranks/@comment-95.90.217.27-20150304195128/@comment-86.9.27.238-20150322171343\nTalk:Federation/Ranks/@comment-97.113.71.218-20171010003259\nTalk:Federation/Ranks/@comment-97.113.71.218-20171010003259/@comment-33315153-20171015222945\nTalk:Federation/Ranks/@comment-97.113.71.218-20171010003259/@comment-88.91.69.246-20171014115110\nTalk:Federation/Ranks/@comment-97.127.242.69-20150205053907\nTalk:Federation/Ranks/@comment-97.81.115.116-20191211083851\nTalk:Federation/Ranks/@comment-97.81.115.116-20191211083851/@comment-109.153.227.42-20200119210155\nTalk:Federation/Ranks/@comment-97.91.145.197-20161223113816\nTalk:Federation/Ranks/@comment-97.91.145.197-20161223113816/@comment-116.87.219.198-20170208055117\nTalk:Federation/Ranks/@comment-97.91.145.197-20161223113816/@comment-178.135.88.137-20161223115034\nTalk:Federation/Ranks/@comment-97.91.145.197-20161223113816/@comment-202.80.212.176-20170127140212\nTalk:Federation/Ranks/@comment-97.91.145.197-20161223113816/@comment-206.74.70.134-20170727015806\nTalk:Federation/Ranks/@comment-97.91.145.197-20161223113816/@comment-5959508-20170127153438\nTalk:Federation/Ranks/@comment-97.91.145.197-20161223113816/@comment-84.156.247.251-20170121173946\nTalk:Federation/Ranks/@comment-98.198.247.179-20170225021854\nTalk:Federation/Ranks/@comment-98.198.247.179-20170225021854/@comment-89.136.244.65-20170502133851\nTalk:Federation/Ranks/@comment-98.239.48.227-20150124014608\nTalk:Federation/Ranks/@comment-98.239.48.227-20150124014608/@comment-26299967-20150411012955\nTalk:Federation/Ranks/@comment-98.239.48.227-20150124014608/@comment-46.115.173.95-20150216061419\nTalk:Federation/Ranks/@comment-98.239.48.227-20150131181018\nTalk:Federation/Ranks/@comment-99.229.37.156-20180717195321\nTalk:Federation/Ranks/@comment-99.229.37.156-20180717195321/@comment-2001:8003:2E39:2700:6837:956F:B72F:A167-20180810224011\nTalk:Federation/Ranks/@comment-99.229.37.156-20180717195321/@comment-203.219.216.164-20180727200402\nTalk:Federation/Ranks/@comment-99.229.37.156-20180717195321/@comment-78.45.134.110-20180724125103\nTalk:Federation/Ranks/@comment-99.229.37.156-20180717195321/@comment-83.94.252.127-20181216040015\nTalk:Federation/Ranks/@comment-99.229.37.156-20180717195321/@comment-94.54.100.211-20180720223824\nTalk:Federation/Ranks/@comment-99.229.37.156-20180717195321/@comment-99.229.37.156-20180717195803\nTalk:Federation/Ranks/@comment-99.243.119.149-20151010020825\nTalk:Federation/Ranks/@comment-99.243.119.149-20151010020825/@comment-50.39.178.11-20151126062954\nTalk:Federation/Ranks/@comment-99.243.119.149-20151010020825/@comment-99.175.72.128-20151023003826\nTalk:Feedback Cascade/@comment-189.232.14.15-20190117075048\nTalk:Feedback Cascade/@comment-2003:55:EE1E:99CD:1435:1CC7:EF9C:379E-20170825163930\nTalk:Feedback Cascade/@comment-2003:55:EE1E:99CD:1435:1CC7:EF9C:379E-20170825163930/@comment-178.128.57.166-20170924081841\nTalk:Feedback Cascade/@comment-2003:55:EE1E:99CD:1435:1CC7:EF9C:379E-20170825163930/@comment-44180665-20200509025804\nTalk:Feedback Cascade/@comment-2003:55:EE1E:99CD:1435:1CC7:EF9C:379E-20170825163930/@comment-98.227.201.156-20190108164648\nTalk:Feedback Cascade/@comment-209.252.174.25-20190411234300\nTalk:Feedback Cascade/@comment-209.252.174.25-20190411234300/@comment-203.104.15.3-20191023022352\nTalk:Feedback Cascade/@comment-209.252.174.25-20190411234300/@comment-44265294-20191028230927\nTalk:Feedback Cascade/@comment-213.160.5.114-20171101080000\nTalk:Feedback Cascade/@comment-44180665-20200509025555\nTalk:Feedback Cascade/@comment-77.20.80.121-20160424151916\nTalk:Feedback Cascade/@comment-77.20.80.121-20160424151916/@comment-192.136.161.52-20170214133249\nTalk:Feedback Cascade/@comment-77.20.80.121-20160424151916/@comment-26391992-20160424163857\nTalk:Feedback Cascade/@comment-77.20.80.121-20160424151916/@comment-30802664-20170214131741\nTalk:Feedback Cascade/@comment-77.20.80.121-20160424151916/@comment-44180665-20200509030001\nTalk:Feedback Cascade/@comment-82.161.204.126-20161102084143\nTalk:Felicia Winters/@comment-144.137.144.39-20180325075116\nTalk:Felicia Winters/@comment-144.137.144.39-20180325075116/@comment-172.56.5.159-20180620052459\nTalk:Felicia Winters/@comment-144.137.144.39-20180325075116/@comment-2600:1700:F8C0:FB80:E02C:7B63:F0ED:9566-20190604210329\nTalk:Felicia Winters/@comment-144.137.144.39-20180325075116/@comment-33493166-20190410091355\nTalk:Felicia Winters/@comment-144.137.144.39-20180325075116/@comment-90.200.46.38-20181126012729\nTalk:Felicia Winters/@comment-153.42.242.254-20150927220440\nTalk:Felicia Winters/@comment-153.42.242.254-20150927220440/@comment-62.198.87.150-20151209172934\nTalk:Felicia Winters/@comment-190.166.158.149-20160325202515\nTalk:Felicia Winters/@comment-190.166.158.149-20160325202515/@comment-68.156.159.10-20170419065615\nTalk:Felicia Winters/@comment-190.166.158.149-20160325202515/@comment-71.10.143.212-20160609181842\nTalk:Felicia Winters/@comment-195.169.9.147-20161207103616\nTalk:Felicia Winters/@comment-195.169.9.147-20161207103616/@comment-30204622-20170131220506\nTalk:Felicia Winters/@comment-195.169.9.147-20161207103616/@comment-36373908-20200508180250\nTalk:Felicia Winters/@comment-24740282-20180313104227\nTalk:Felicia Winters/@comment-2602:306:CE29:B0D0:448:5430:2F84:2A52-20190916023633\nTalk:Felicia Winters/@comment-26227424-20160712150345\nTalk:Felicia Winters/@comment-68.186.99.18-20150627164624\nTalk:Felicia Winters/@comment-68.186.99.18-20150627164624/@comment-107.189.225.241-20200105203752\nTalk:Felicia Winters/@comment-68.186.99.18-20150627164624/@comment-172.56.5.159-20180620052829\nTalk:Felicia Winters/@comment-68.186.99.18-20150627164624/@comment-172.56.5.159-20180620053030\nTalk:Felicia Winters/@comment-68.186.99.18-20150627164624/@comment-205.167.170.20-20160106212417\nTalk:Felicia Winters/@comment-68.186.99.18-20150627164624/@comment-73.169.153.208-20180522230759\nTalk:Felicia Winters/@comment-70.187.151.32-20150912020721\nTalk:Felicia Winters/@comment-70.187.151.32-20150912020721/@comment-70.187.151.32-20150912020746\nTalk:Felicia Winters/@comment-70.187.151.32-20150912020721/@comment-90.200.46.38-20181126013328\nTalk:Felicia Winters/@comment-75.109.81.198-20150614012833\nTalk:Felicia Winters/@comment-75.109.81.198-20150614012833/@comment-174.54.154.83-20150625041957\nTalk:Felicia Winters/@comment-75.109.81.198-20150614012833/@comment-189.155.75.226-20150908201442\nTalk:Felicia Winters/@comment-75.109.81.198-20150614012833/@comment-82.11.164.143-20150630182545\nTalk:Felicity Farseer/@comment-180.181.142.241-20170716130317\nTalk:Felicity Farseer/@comment-180.181.142.241-20170716130317/@comment-180.181.142.241-20170723012312\nTalk:Felicity Farseer/@comment-180.181.142.241-20170716130317/@comment-184.96.134.65-20170721072637\nTalk:Felicity Farseer/@comment-180.181.142.241-20170716130317/@comment-47.200.149.149-20170724015154\nTalk:Felicity Farseer/@comment-185.125.61.218-20181022113641\nTalk:Felicity Farseer/@comment-2155082-20170521033403\nTalk:Felicity Farseer/@comment-28934960-20160906092911\nTalk:Felicity Farseer/@comment-28934960-20160906092911/@comment-91.133.79.193-20161008153449\nTalk:Felicity Farseer/@comment-28934960-20160906092911/@comment-99.46.113.251-20161007050349\nTalk:Felicity Farseer/@comment-32010805-20190828122522\nTalk:Felicity Farseer/@comment-90.200.46.38-20181111171541\nTalk:Felicity Farseer/@comment-90.200.46.38-20181202133413\nTalk:Fer-de-Lance/@comment-101.166.161.36-20150404122809\nTalk:Fer-de-Lance/@comment-101.166.161.36-20150404122809/@comment-24.151.145.58-20150410030958\nTalk:Fer-de-Lance/@comment-107.141.65.99-20160210122135\nTalk:Fer-de-Lance/@comment-107.141.65.99-20160210122135/@comment-108.41.120.242-20160210232215\nTalk:Fer-de-Lance/@comment-107.141.65.99-20160210122135/@comment-192.136.172.239-20160210171110\nTalk:Fer-de-Lance/@comment-107.141.65.99-20160210122135/@comment-192.136.172.239-20160212133341\nTalk:Fer-de-Lance/@comment-107.141.65.99-20160210122135/@comment-99.237.37.136-20160213124450\nTalk:Fer-de-Lance/@comment-108.41.120.242-20160205175500\nTalk:Fer-de-Lance/@comment-109.90.233.122-20150326113141\nTalk:Fer-de-Lance/@comment-109.90.233.122-20150326113141/@comment-173.27.2.135-20150405022441\nTalk:Fer-de-Lance/@comment-109.90.233.122-20150326113141/@comment-80.1.60.38-20150327013251\nTalk:Fer-de-Lance/@comment-12.5.54.135-20151203154409\nTalk:Fer-de-Lance/@comment-12.5.54.135-20151203154409/@comment-26391992-20151203160403\nTalk:Fer-de-Lance/@comment-121.211.39.251-20150310192834\nTalk:Fer-de-Lance/@comment-121.211.39.251-20150310192834/@comment-4515118-20150312085209\nTalk:Fer-de-Lance/@comment-121.211.39.251-20150310192834/@comment-80.1.60.38-20150310203645\nTalk:Fer-de-Lance/@comment-121.211.39.251-20150313105017\nTalk:Fer-de-Lance/@comment-121.211.39.251-20150313105017/@comment-26009169-20150314174349\nTalk:Fer-de-Lance/@comment-121.211.39.251-20150313105017/@comment-68.39.110.18-20150314125819\nTalk:Fer-de-Lance/@comment-121.211.39.251-20150313105017/@comment-746248-20150317112519\nTalk:Fer-de-Lance/@comment-123.211.163.148-20150927052455\nTalk:Fer-de-Lance/@comment-136.63.84.11-20160126075803\nTalk:Fer-de-Lance/@comment-136.63.84.11-20160126075803/@comment-71.231.50.26-20160320213045\nTalk:Fer-de-Lance/@comment-136.63.84.11-20160126075803/@comment-74.37.202.169-20160202045045\nTalk:Fer-de-Lance/@comment-144.46.104.12-20150312174131\nTalk:Fer-de-Lance/@comment-149.168.204.10-20141222180028\nTalk:Fer-de-Lance/@comment-149.168.204.10-20141222180028/@comment-79.232.216.164-20141227180913\nTalk:Fer-de-Lance/@comment-151.224.217.230-20151205014749\nTalk:Fer-de-Lance/@comment-151.224.217.230-20151205014749/@comment-151.224.217.230-20151205235640\nTalk:Fer-de-Lance/@comment-151.224.217.230-20151205014749/@comment-26391992-20151212145623\nTalk:Fer-de-Lance/@comment-151.224.217.230-20151205014749/@comment-69.246.98.189-20160111052750\nTalk:Fer-de-Lance/@comment-151.224.217.230-20151205014749/@comment-87.89.34.241-20151205092827\nTalk:Fer-de-Lance/@comment-151.224.217.230-20151205014749/@comment-92.43.71.143-20151214142242\nTalk:Fer-de-Lance/@comment-151.225.213.103-20151020161230\nTalk:Fer-de-Lance/@comment-151.225.213.103-20151020161230/@comment-151.225.213.103-20151020161431\nTalk:Fer-de-Lance/@comment-151.225.213.103-20151020161230/@comment-151.225.213.103-20151106173438\nTalk:Fer-de-Lance/@comment-151.225.213.103-20151020161230/@comment-26361572-20151021101616\nTalk:Fer-de-Lance/@comment-151.225.213.103-20151020161230/@comment-81.141.53.110-20151031155408\nTalk:Fer-de-Lance/@comment-151.226.233.191-20150310190420\nTalk:Fer-de-Lance/@comment-151.226.233.191-20150310190420/@comment-26116574-20150311204333\nTalk:Fer-de-Lance/@comment-156.3.54.203-20150508203510\nTalk:Fer-de-Lance/@comment-156.3.54.203-20150508203510/@comment-156.3.54.203-20150511145402\nTalk:Fer-de-Lance/@comment-156.3.54.203-20150508203510/@comment-156.3.54.203-20150511150819\nTalk:Fer-de-Lance/@comment-156.3.54.203-20150508203510/@comment-72.235.147.20-20150509051753\nTalk:Fer-de-Lance/@comment-156.3.54.203-20150508203510/@comment-72.235.147.20-20150509052457\nTalk:Fer-de-Lance/@comment-156.3.54.203-20150508203510/@comment-72.235.147.20-20150518024716\nTalk:Fer-de-Lance/@comment-156.3.54.203-20150508203510/@comment-82.226.121.139-20150513220103\nTalk:Fer-de-Lance/@comment-156.3.54.203-20150513163918\nTalk:Fer-de-Lance/@comment-156.3.54.203-20150513163918/@comment-72.235.147.20-20150518025849\nTalk:Fer-de-Lance/@comment-156.3.54.203-20150601160704\nTalk:Fer-de-Lance/@comment-156.3.54.203-20150601160704/@comment-108.181.169.243-20150602032739\nTalk:Fer-de-Lance/@comment-156.3.54.203-20150601160704/@comment-173.55.173.227-20150602051003\nTalk:Fer-de-Lance/@comment-160.3.38.154-20190324210029\nTalk:Fer-de-Lance/@comment-160.3.38.154-20190324210029/@comment-145.8.179.218-20190416111538\nTalk:Fer-de-Lance/@comment-160.3.38.154-20190324210029/@comment-160.3.38.154-20190423060222\nTalk:Fer-de-Lance/@comment-165.225.0.79-20180718210707\nTalk:Fer-de-Lance/@comment-165.225.0.79-20180718210707/@comment-165.225.0.79-20180802213818\nTalk:Fer-de-Lance/@comment-165.225.0.79-20180718210707/@comment-192.136.163.15-20180719210415\nTalk:Fer-de-Lance/@comment-165.225.0.79-20180718210707/@comment-4986699-20180719155813\nTalk:Fer-de-Lance/@comment-165.225.0.79-20180718210707/@comment-4986699-20180803042827\nTalk:Fer-de-Lance/@comment-165.225.0.79-20180718210707/@comment-90.200.46.38-20181028213935\nTalk:Fer-de-Lance/@comment-174.106.205.27-20150115235517\nTalk:Fer-de-Lance/@comment-174.44.114.247-20150303235427\nTalk:Fer-de-Lance/@comment-174.44.114.247-20150303235427/@comment-26000333-20150304034332\nTalk:Fer-de-Lance/@comment-174.89.135.213-20161021035225\nTalk:Fer-de-Lance/@comment-174.89.135.213-20161021035225/@comment-168.99.198.19-20180302054431\nTalk:Fer-de-Lance/@comment-174.89.135.213-20161021035225/@comment-188.126.178.121-20170409222841\nTalk:Fer-de-Lance/@comment-174.89.135.213-20161021035225/@comment-192.136.161.156-20161021113954\nTalk:Fer-de-Lance/@comment-174.89.135.213-20161021035225/@comment-192.136.161.52-20161116231113\nTalk:Fer-de-Lance/@comment-174.89.135.213-20161021035225/@comment-30694513-20161206233553\nTalk:Fer-de-Lance/@comment-174.89.135.213-20161021035225/@comment-72.213.50.31-20170301234929\nTalk:Fer-de-Lance/@comment-174.89.135.213-20161021035225/@comment-77.168.182.117-20161116223237\nTalk:Fer-de-Lance/@comment-176.183.148.213-20150724144751\nTalk:Fer-de-Lance/@comment-176.221.77.250-20171228110005\nTalk:Fer-de-Lance/@comment-176.221.77.250-20171228110005/@comment-2601:243:480:98D9:86E:EAC:6687:764-20180302013057\nTalk:Fer-de-Lance/@comment-178.167.254.97-20150110175525\nTalk:Fer-de-Lance/@comment-185.37.87.177-20150301125918\nTalk:Fer-de-Lance/@comment-185.37.87.177-20150310192934\nTalk:Fer-de-Lance/@comment-185.37.87.177-20150310192934/@comment-81.233.169.151-20150324191316\nTalk:Fer-de-Lance/@comment-185.37.87.177-20150315100232\nTalk:Fer-de-Lance/@comment-188.222.111.139-20151023164805\nTalk:Fer-de-Lance/@comment-188.222.111.139-20151023164805/@comment-130.255.27.13-20151030191531\nTalk:Fer-de-Lance/@comment-188.222.111.139-20151023164805/@comment-26361572-20151023221941\nTalk:Fer-de-Lance/@comment-188.222.111.139-20151023164805/@comment-66.109.235.218-20160215142703\nTalk:Fer-de-Lance/@comment-188.222.111.139-20151023164805/@comment-81.141.53.110-20151031154808\nTalk:Fer-de-Lance/@comment-188.222.111.139-20151023164805/@comment-85.182.140.170-20151104102332\nTalk:Fer-de-Lance/@comment-188.222.111.139-20151023164805/@comment-86.168.212.172-20151023183735\nTalk:Fer-de-Lance/@comment-191.114.75.73-20151120114301\nTalk:Fer-de-Lance/@comment-191.114.75.73-20151120114301/@comment-4986699-20151126141250\nTalk:Fer-de-Lance/@comment-191.114.75.73-20151120114301/@comment-92.43.71.143-20151126081715\nTalk:Fer-de-Lance/@comment-191.114.75.73-20151120114301/@comment-92.43.71.143-20151202131401\nTalk:Fer-de-Lance/@comment-192.136.172.239-20160203122207\nTalk:Fer-de-Lance/@comment-195.243.28.250-20150611114136\nTalk:Fer-de-Lance/@comment-195.243.28.250-20160229120428\nTalk:Fer-de-Lance/@comment-195.243.28.250-20160229120428/@comment-110.173.174.140-20161009185457\nTalk:Fer-de-Lance/@comment-195.243.28.250-20160229120428/@comment-195.243.28.250-20160229142130\nTalk:Fer-de-Lance/@comment-195.243.28.250-20160229120428/@comment-195.243.28.250-20160229143257\nTalk:Fer-de-Lance/@comment-195.243.28.250-20160229120428/@comment-195.243.28.250-20160229161724\nTalk:Fer-de-Lance/@comment-195.243.28.250-20160229120428/@comment-27032150-20160229123427\nTalk:Fer-de-Lance/@comment-195.243.28.250-20160229120428/@comment-27032150-20160229144356\nTalk:Fer-de-Lance/@comment-195.243.28.250-20160229120428/@comment-27032150-20160301150045\nTalk:Fer-de-Lance/@comment-195.243.28.250-20160229120428/@comment-64.127.136.202-20160415153117\nTalk:Fer-de-Lance/@comment-195.70.101.49-20151214141515\nTalk:Fer-de-Lance/@comment-2.150.54.185-20160130234750\nTalk:Fer-de-Lance/@comment-2.150.54.185-20160130234750/@comment-80.60.35.115-20160131205827\nTalk:Fer-de-Lance/@comment-2.150.54.185-20160130234750/@comment-92.1.139.196-20160918143249\nTalk:Fer-de-Lance/@comment-2.150.54.185-20160130234750/@comment-99.224.146.121-20160203191008\nTalk:Fer-de-Lance/@comment-2003:DB:23D1:4C00:50DF:62C6:B2D9:F452-20190223180142\nTalk:Fer-de-Lance/@comment-2003:DB:23D1:4C00:50DF:62C6:B2D9:F452-20190223180142/@comment-192.136.170.98-20190224041607\nTalk:Fer-de-Lance/@comment-2003:DB:23D1:4C00:50DF:62C6:B2D9:F452-20190223180142/@comment-43982350-20200915230433\nTalk:Fer-de-Lance/@comment-202.156.46.73-20141226070239\nTalk:Fer-de-Lance/@comment-202.156.46.73-20141226070239/@comment-66.249.83.226-20141226080435\nTalk:Fer-de-Lance/@comment-202.156.46.73-20141226070239/@comment-72.78.110.173-20150109212842\nTalk:Fer-de-Lance/@comment-202.156.46.73-20141226070239/@comment-86.206.251.116-20141227142533\nTalk:Fer-de-Lance/@comment-202.156.46.73-20141226070239/@comment-90.15.110.73-20150116044337\nTalk:Fer-de-Lance/@comment-202.156.46.73-20141226070239/@comment-97.104.170.117-20150109225640\nTalk:Fer-de-Lance/@comment-204.89.152.91-20150325175348\nTalk:Fer-de-Lance/@comment-204.89.152.91-20150325175348/@comment-109.125.85.24-20150331133431\nTalk:Fer-de-Lance/@comment-204.89.152.91-20150325175348/@comment-80.1.60.38-20150327014106\nTalk:Fer-de-Lance/@comment-205.222.248.112-20141218133321\nTalk:Fer-de-Lance/@comment-207.164.60.30-20160219195342\nTalk:Fer-de-Lance/@comment-207.164.60.30-20160219195342/@comment-192.136.174.139-20160220194915\nTalk:Fer-de-Lance/@comment-208.108.127.250-20150320172817\nTalk:Fer-de-Lance/@comment-208.108.127.250-20150320172817/@comment-65.103.2.228-20150321002424\nTalk:Fer-de-Lance/@comment-212.35.27.63-20171111225512\nTalk:Fer-de-Lance/@comment-212.35.27.63-20171111225512/@comment-4986699-20171113095926\nTalk:Fer-de-Lance/@comment-212.59.37.193-20150916145627\nTalk:Fer-de-Lance/@comment-213.112.123.223-20170618215446\nTalk:Fer-de-Lance/@comment-213.112.123.223-20170618215446/@comment-24.144.237.202-20180213000833\nTalk:Fer-de-Lance/@comment-213.120.234.122-20150331175646\nTalk:Fer-de-Lance/@comment-213.120.234.122-20150331175646/@comment-213.120.234.154-20150331181455\nTalk:Fer-de-Lance/@comment-213.120.234.122-20150331175646/@comment-78.99.60.58-20150402144054\nTalk:Fer-de-Lance/@comment-216.63.175.7-20160925042709\nTalk:Fer-de-Lance/@comment-216.63.175.7-20160925042709/@comment-86.233.9.104-20170308140749\nTalk:Fer-de-Lance/@comment-217.32.153.236-20180528193346\nTalk:Fer-de-Lance/@comment-24.183.157.142-20150321150112\nTalk:Fer-de-Lance/@comment-24.183.157.142-20150321150112/@comment-26009169-20150321150342\nTalk:Fer-de-Lance/@comment-24.209.105.251-20150327190558\nTalk:Fer-de-Lance/@comment-24.209.105.251-20150327190558/@comment-108.200.185.72-20150402033949\nTalk:Fer-de-Lance/@comment-24.45.93.5-20150225234441\nTalk:Fer-de-Lance/@comment-25291782-20160108231509\nTalk:Fer-de-Lance/@comment-25291782-20160108231509/@comment-25291782-20160112045718\nTalk:Fer-de-Lance/@comment-25291782-20160108231509/@comment-27496372-20160115181028\nTalk:Fer-de-Lance/@comment-25291782-20160108231509/@comment-31.46.248.208-20160109144453\nTalk:Fer-de-Lance/@comment-25291782-20160108231509/@comment-66.68.17.185-20160110210130\nTalk:Fer-de-Lance/@comment-25291782-20160108231509/@comment-80.120.62.34-20160118161824\nTalk:Fer-de-Lance/@comment-25490957-20160603025755\nTalk:Fer-de-Lance/@comment-25992270-20150313185706\nTalk:Fer-de-Lance/@comment-25992270-20150313185706/@comment-185.37.87.177-20150315100626\nTalk:Fer-de-Lance/@comment-25992270-20150313185706/@comment-26116574-20150313231718\nTalk:Fer-de-Lance/@comment-25992270-20150313185706/@comment-95.91.113.94-20150315133158\nTalk:Fer-de-Lance/@comment-2600:100D:B10A:38F2:2040:D888:533:6F12-20190430043335\nTalk:Fer-de-Lance/@comment-2600:100D:B10A:38F2:2040:D888:533:6F12-20190430043335/@comment-192.136.172.44-20190731025301\nTalk:Fer-de-Lance/@comment-2600:100D:B10A:38F2:2040:D888:533:6F12-20190430043335/@comment-84.190.136.2-20190729073358\nTalk:Fer-de-Lance/@comment-2601:243:480:98D9:781D:DC23:3C5D:423B-20180501232347\nTalk:Fer-de-Lance/@comment-2601:243:480:98D9:781D:DC23:3C5D:423B-20180501232347/@comment-100.2.35.122-20180703042957\nTalk:Fer-de-Lance/@comment-2602:306:CE29:B0D0:8C2F:C090:9FA1:5545-20191010184612\nTalk:Fer-de-Lance/@comment-26174322-20150306173256\nTalk:Fer-de-Lance/@comment-26174322-20150306173256/@comment-26009169-20150309123722\nTalk:Fer-de-Lance/@comment-26174322-20150306173256/@comment-71.59.226.75-20150309034112\nTalk:Fer-de-Lance/@comment-26174322-20150306173256/@comment-71.59.226.75-20150310044158\nTalk:Fer-de-Lance/@comment-26174322-20150306173256/@comment-86.169.177.227-20150307015610\nTalk:Fer-de-Lance/@comment-26174613-20150306063344\nTalk:Fer-de-Lance/@comment-26174613-20150306063344/@comment-121.211.39.251-20150310193402\nTalk:Fer-de-Lance/@comment-26174613-20150306063344/@comment-82.47.167.18-20150313011648\nTalk:Fer-de-Lance/@comment-26174613-20150306063344/@comment-93.35.1.34-20150306091901\nTalk:Fer-de-Lance/@comment-26177258-20150312221021\nTalk:Fer-de-Lance/@comment-26177258-20150312221021/@comment-26009169-20150312221341\nTalk:Fer-de-Lance/@comment-26190843-20150310210628\nTalk:Fer-de-Lance/@comment-26190843-20150310210628/@comment-26009169-20150310211048\nTalk:Fer-de-Lance/@comment-26190843-20150310210628/@comment-26190843-20150310211130\nTalk:Fer-de-Lance/@comment-26209111-20150315182434\nTalk:Fer-de-Lance/@comment-26276243-20150410123038\nTalk:Fer-de-Lance/@comment-26276243-20150410123038/@comment-26009169-20150410125938\nTalk:Fer-de-Lance/@comment-26276243-20150410123038/@comment-72.235.147.20-20150518052159\nTalk:Fer-de-Lance/@comment-26344565-20150425191658\nTalk:Fer-de-Lance/@comment-26391992-20150914115445\nTalk:Fer-de-Lance/@comment-26391992-20150914115445/@comment-26391992-20150914115837\nTalk:Fer-de-Lance/@comment-26391992-20151203154439\nTalk:Fer-de-Lance/@comment-26391992-20151203154439/@comment-151.224.217.230-20151203165018\nTalk:Fer-de-Lance/@comment-26391992-20151203154439/@comment-26391992-20151203205912\nTalk:Fer-de-Lance/@comment-26536231-20150727133238\nTalk:Fer-de-Lance/@comment-26536231-20150727133238/@comment-26536231-20150730074406\nTalk:Fer-de-Lance/@comment-26536231-20150727133238/@comment-26536231-20150810101044\nTalk:Fer-de-Lance/@comment-26536231-20150727133238/@comment-26537865-20150810030637\nTalk:Fer-de-Lance/@comment-26536231-20150727133238/@comment-46.114.35.149-20150730015555\nTalk:Fer-de-Lance/@comment-26536231-20150727133238/@comment-72.241.143.238-20150822011821\nTalk:Fer-de-Lance/@comment-26959616-20151004193420\nTalk:Fer-de-Lance/@comment-26959616-20151004193420/@comment-12.5.54.135-20151203154456\nTalk:Fer-de-Lance/@comment-26959616-20151004193420/@comment-205.57.48.8-20151125223834\nTalk:Fer-de-Lance/@comment-27032150-20160704114110\nTalk:Fer-de-Lance/@comment-27032150-20160704114110/@comment-184.159.128.62-20171016132953\nTalk:Fer-de-Lance/@comment-27032150-20160704114110/@comment-204.126.11.220-20171012145403\nTalk:Fer-de-Lance/@comment-27115814-20151120174032\nTalk:Fer-de-Lance/@comment-27115814-20160511161901\nTalk:Fer-de-Lance/@comment-27115814-20160511161901/@comment-27032150-20160511162504\nTalk:Fer-de-Lance/@comment-27115814-20160511161901/@comment-4986699-20160512063502\nTalk:Fer-de-Lance/@comment-27496372-20151229033927\nTalk:Fer-de-Lance/@comment-27496372-20151229033927/@comment-4986699-20151229160543\nTalk:Fer-de-Lance/@comment-27496372-20151230013603\nTalk:Fer-de-Lance/@comment-27899574-20160301232637\nTalk:Fer-de-Lance/@comment-28689414-20160608102923\nTalk:Fer-de-Lance/@comment-28689414-20160608102923/@comment-100.34.167.47-20161009025106\nTalk:Fer-de-Lance/@comment-28689414-20160608102923/@comment-220.253.132.197-20170715150024\nTalk:Fer-de-Lance/@comment-28689414-20160608102923/@comment-24.16.11.207-20160704104453\nTalk:Fer-de-Lance/@comment-28689414-20160608102923/@comment-31.154.34.118-20160820183412\nTalk:Fer-de-Lance/@comment-28689414-20160608102923/@comment-83.82.242.75-20161105182333\nTalk:Fer-de-Lance/@comment-28689414-20160608102923/@comment-85.197.54.90-20161006154306\nTalk:Fer-de-Lance/@comment-28689414-20160608102923/@comment-92.78.240.216-20161213175901\nTalk:Fer-de-Lance/@comment-28689414-20160608102923/@comment-94.234.38.220-20160619150135\nTalk:Fer-de-Lance/@comment-30204622-20170221142502\nTalk:Fer-de-Lance/@comment-30204622-20170221142502/@comment-152.20.125.82-20171130043523\nTalk:Fer-de-Lance/@comment-30204622-20170221142502/@comment-220.253.132.197-20170715151243\nTalk:Fer-de-Lance/@comment-30204622-20170221142502/@comment-2600:8802:3700:8C40:884D:6B63:2EF5:F8A4-20180331042030\nTalk:Fer-de-Lance/@comment-30204622-20170221142502/@comment-72.213.50.31-20170301235546\nTalk:Fer-de-Lance/@comment-30204622-20170221142502/@comment-80.112.156.168-20180111190502\nTalk:Fer-de-Lance/@comment-31.46.253.202-20151128224243\nTalk:Fer-de-Lance/@comment-31.46.253.202-20151128224243/@comment-26361572-20151128232926\nTalk:Fer-de-Lance/@comment-35650861-20190725134157\nTalk:Fer-de-Lance/@comment-35650861-20190725134157/@comment-43982350-20200915230330\nTalk:Fer-de-Lance/@comment-42.112.93.221-20161008161850\nTalk:Fer-de-Lance/@comment-42.112.93.221-20161008161850/@comment-50.4.239.175-20161010002628\nTalk:Fer-de-Lance/@comment-46.194.143.80-20150603042004\nTalk:Fer-de-Lance/@comment-46.194.143.80-20150603042004/@comment-77.234.106.9-20150710175901\nTalk:Fer-de-Lance/@comment-46.194.143.80-20150603042004/@comment-82.226.121.139-20150605175417\nTalk:Fer-de-Lance/@comment-46.194.143.80-20150603042004/@comment-82.226.121.139-20150605175512\nTalk:Fer-de-Lance/@comment-46.23.40.174-20150311210727\nTalk:Fer-de-Lance/@comment-46.65.116.35-20150316175011\nTalk:Fer-de-Lance/@comment-49.195.166.82-20151220054258\nTalk:Fer-de-Lance/@comment-49.195.166.82-20151220054258/@comment-4986699-20151220120443\nTalk:Fer-de-Lance/@comment-4968814-20150109184056\nTalk:Fer-de-Lance/@comment-4968814-20150115180226\nTalk:Fer-de-Lance/@comment-4968814-20150115180226/@comment-174.106.205.27-20150115235912\nTalk:Fer-de-Lance/@comment-4968814-20150115180226/@comment-24.12.76.250-20150116191504\nTalk:Fer-de-Lance/@comment-4968814-20150115180226/@comment-4968814-20150117174049\nTalk:Fer-de-Lance/@comment-4980086-20151214083809\nTalk:Fer-de-Lance/@comment-4980086-20151214083809/@comment-26391992-20151214125615\nTalk:Fer-de-Lance/@comment-50.150.167.77-20170221004324\nTalk:Fer-de-Lance/@comment-50.150.167.77-20170221004324/@comment-50.150.167.77-20170401004713\nTalk:Fer-de-Lance/@comment-50.150.167.77-20170221004324/@comment-72.213.50.31-20170301233518\nTalk:Fer-de-Lance/@comment-50.170.117.254-20160603083009\nTalk:Fer-de-Lance/@comment-60.240.58.163-20160531100716\nTalk:Fer-de-Lance/@comment-60.240.58.163-20160531100716/@comment-192.136.161.52-20161207140119\nTalk:Fer-de-Lance/@comment-60.240.58.163-20160531100716/@comment-27032150-20160531101652\nTalk:Fer-de-Lance/@comment-60.240.58.163-20160531100716/@comment-30694513-20161206233226\nTalk:Fer-de-Lance/@comment-62.157.62.139-20141220231531\nTalk:Fer-de-Lance/@comment-64.222.235.143-20151022090152\nTalk:Fer-de-Lance/@comment-64.222.235.143-20151022090152/@comment-64.222.235.143-20151022094040\nTalk:Fer-de-Lance/@comment-64.233.173.171-20150204052931\nTalk:Fer-de-Lance/@comment-64.233.173.171-20150204052931/@comment-70.191.175.243-20150212234748\nTalk:Fer-de-Lance/@comment-65.103.2.228-20150321002326\nTalk:Fer-de-Lance/@comment-67.149.240.15-20151126124256\nTalk:Fer-de-Lance/@comment-67.184.126.212-20150313064133\nTalk:Fer-de-Lance/@comment-67.21.153.142-20170525173506\nTalk:Fer-de-Lance/@comment-68.186.129.192-20180506010003\nTalk:Fer-de-Lance/@comment-68.58.110.250-20170111020130\nTalk:Fer-de-Lance/@comment-68.58.110.250-20170111020130/@comment-168.99.198.19-20180302053520\nTalk:Fer-de-Lance/@comment-68.58.110.250-20170111020130/@comment-178.165.128.167-20170130225950\nTalk:Fer-de-Lance/@comment-68.58.110.250-20170111020130/@comment-72.213.50.31-20170301233728\nTalk:Fer-de-Lance/@comment-68.58.110.250-20170111020130/@comment-77.102.250.232-20170330154927\nTalk:Fer-de-Lance/@comment-69.114.195.213-20180910030119\nTalk:Fer-de-Lance/@comment-70.39.7.237-20170512010056\nTalk:Fer-de-Lance/@comment-70.39.7.237-20170512010056/@comment-208.184.149.10-20180131101829\nTalk:Fer-de-Lance/@comment-70.39.7.237-20170512010056/@comment-2601:243:480:98D9:781D:DC23:3C5D:423B-20180501232155\nTalk:Fer-de-Lance/@comment-71.190.237.174-20170430203130\nTalk:Fer-de-Lance/@comment-71.217.112.241-20150307020033\nTalk:Fer-de-Lance/@comment-71.217.112.241-20150307020033/@comment-121.211.39.251-20150310193102\nTalk:Fer-de-Lance/@comment-71.217.112.241-20150307020033/@comment-26174322-20150307052901\nTalk:Fer-de-Lance/@comment-73.164.28.80-20160511163703\nTalk:Fer-de-Lance/@comment-73.164.28.80-20160511163703/@comment-110.173.174.140-20161009182944\nTalk:Fer-de-Lance/@comment-73.164.28.80-20160511163703/@comment-50.170.117.254-20160514072146\nTalk:Fer-de-Lance/@comment-73.164.28.80-20160511163703/@comment-64.127.136.202-20160511201656\nTalk:Fer-de-Lance/@comment-73.164.28.80-20160511163703/@comment-71.65.58.72-20160519230725\nTalk:Fer-de-Lance/@comment-73.164.28.80-20160511163703/@comment-73.164.28.80-20160511164911\nTalk:Fer-de-Lance/@comment-73.240.249.183-20190124212256\nTalk:Fer-de-Lance/@comment-73.240.249.183-20190124212256/@comment-192.136.170.98-20190125041503\nTalk:Fer-de-Lance/@comment-73.44.65.107-20160215154837\nTalk:Fer-de-Lance/@comment-73.44.65.107-20160215154837/@comment-124.168.61.65-20160223092659\nTalk:Fer-de-Lance/@comment-73.44.65.107-20160215154837/@comment-143.81.103.35-20160226030259\nTalk:Fer-de-Lance/@comment-73.44.65.107-20160215154837/@comment-26391992-20160215164536\nTalk:Fer-de-Lance/@comment-73.44.65.107-20160215154837/@comment-27032150-20160223094252\nTalk:Fer-de-Lance/@comment-73.44.65.107-20160215154837/@comment-27032150-20160226073433\nTalk:Fer-de-Lance/@comment-73.44.65.107-20160223165752\nTalk:Fer-de-Lance/@comment-73.44.65.107-20160223165752/@comment-188.126.178.121-20170409223239\nTalk:Fer-de-Lance/@comment-73.54.10.209-20141231145127\nTalk:Fer-de-Lance/@comment-73.77.83.207-20170715044219\nTalk:Fer-de-Lance/@comment-75.112.131.156-20150117232046\nTalk:Fer-de-Lance/@comment-77.125.253.227-20150410130636\nTalk:Fer-de-Lance/@comment-79.221.197.62-20150320095500\nTalk:Fer-de-Lance/@comment-80.5.242.25-20150118130642\nTalk:Fer-de-Lance/@comment-81.151.56.27-20150304204616\nTalk:Fer-de-Lance/@comment-81.151.56.27-20150304204616/@comment-86.19.157.214-20150304222911\nTalk:Fer-de-Lance/@comment-81.151.56.27-20150304204616/@comment-87.8.54.92-20150304223252\nTalk:Fer-de-Lance/@comment-81.49.161.124-20180402201337\nTalk:Fer-de-Lance/@comment-81.49.161.124-20180402201337/@comment-2001:8003:4072:6B00:51DE:6900:44A6:F663-20180604130608\nTalk:Fer-de-Lance/@comment-81.49.161.124-20180402201337/@comment-209.201.36.148-20180413111752\nTalk:Fer-de-Lance/@comment-81.49.161.124-20180402201337/@comment-217.32.153.236-20180528191717\nTalk:Fer-de-Lance/@comment-81.49.161.124-20180402201337/@comment-24.255.17.45-20180603011120\nTalk:Fer-de-Lance/@comment-81.49.161.124-20180402201337/@comment-83.21.216.142-20180608180428\nTalk:Fer-de-Lance/@comment-81.49.161.124-20180402201337/@comment-85.172.30.225-20180421123929\nTalk:Fer-de-Lance/@comment-82.18.130.34-20150117222512\nTalk:Fer-de-Lance/@comment-82.18.130.34-20150117222512/@comment-86.158.255.94-20150122004102\nTalk:Fer-de-Lance/@comment-82.208.5.86-20150310204434\nTalk:Fer-de-Lance/@comment-82.208.5.86-20150310204434/@comment-746248-20150311001926\nTalk:Fer-de-Lance/@comment-82.208.5.86-20150310204434/@comment-87.5.61.236-20150311204621\nTalk:Fer-de-Lance/@comment-82.208.5.86-20150310204434/@comment-89.168.0.206-20150310233448\nTalk:Fer-de-Lance/@comment-82.208.5.86-20150310204434/@comment-92.201.175.22-20150310213335\nTalk:Fer-de-Lance/@comment-82.208.5.86-20150310204434/@comment-92.201.175.22-20150310215545\nTalk:Fer-de-Lance/@comment-82.226.121.139-20150303203220\nTalk:Fer-de-Lance/@comment-82.226.121.139-20150303203220/@comment-149.254.224.242-20150304021931\nTalk:Fer-de-Lance/@comment-82.226.121.139-20150303203220/@comment-174.22.224.172-20150303222507\nTalk:Fer-de-Lance/@comment-82.226.121.139-20150303203220/@comment-185.37.87.177-20150303204328\nTalk:Fer-de-Lance/@comment-82.226.121.139-20150303203220/@comment-26000333-20150303215004\nTalk:Fer-de-Lance/@comment-82.226.121.139-20150303203220/@comment-746248-20150303234106\nTalk:Fer-de-Lance/@comment-82.226.121.139-20150303203220/@comment-82.226.121.139-20150303220219\nTalk:Fer-de-Lance/@comment-82.226.121.139-20150430235348\nTalk:Fer-de-Lance/@comment-82.226.121.139-20150430235348/@comment-156.3.54.203-20150511151104\nTalk:Fer-de-Lance/@comment-82.226.121.139-20150430235348/@comment-26361572-20150501190559\nTalk:Fer-de-Lance/@comment-82.226.121.139-20150430235348/@comment-45.50.114.69-20150728184514\nTalk:Fer-de-Lance/@comment-82.226.121.139-20150430235348/@comment-72.241.143.238-20150825031922\nTalk:Fer-de-Lance/@comment-82.226.121.139-20150430235348/@comment-82.226.121.139-20150508200949\nTalk:Fer-de-Lance/@comment-82.226.121.139-20151005154611\nTalk:Fer-de-Lance/@comment-82.226.121.139-20151005154611/@comment-151.225.213.103-20151020161605\nTalk:Fer-de-Lance/@comment-82.226.121.139-20151005154611/@comment-151.225.213.103-20151106193320\nTalk:Fer-de-Lance/@comment-82.226.121.139-20151005154611/@comment-151.225.213.103-20151106193550\nTalk:Fer-de-Lance/@comment-82.226.121.139-20151005154611/@comment-26361572-20151021102238\nTalk:Fer-de-Lance/@comment-82.226.121.139-20151005154611/@comment-746248-20151008063505\nTalk:Fer-de-Lance/@comment-83.179.32.172-20150314212806\nTalk:Fer-de-Lance/@comment-83.179.32.172-20150314212806/@comment-25992270-20150328202624\nTalk:Fer-de-Lance/@comment-83.179.32.172-20150314212806/@comment-92.43.25.50-20150314221114\nTalk:Fer-de-Lance/@comment-83.57.1.248-20160209115123\nTalk:Fer-de-Lance/@comment-83.57.1.248-20160209115123/@comment-26602149-20160221065605\nTalk:Fer-de-Lance/@comment-83.57.1.248-20160209115123/@comment-26602149-20160224171235\nTalk:Fer-de-Lance/@comment-83.57.1.248-20160209115123/@comment-27032150-20160224175542\nTalk:Fer-de-Lance/@comment-83.57.1.248-20160209115123/@comment-31.25.158.9-20160224162557\nTalk:Fer-de-Lance/@comment-84.113.243.159-20150311001649\nTalk:Fer-de-Lance/@comment-84.113.243.159-20150311001649/@comment-26009169-20150311002025\nTalk:Fer-de-Lance/@comment-84.113.243.159-20150311001649/@comment-26009169-20150312184949\nTalk:Fer-de-Lance/@comment-84.113.243.159-20150311001649/@comment-26116574-20150311204125\nTalk:Fer-de-Lance/@comment-84.113.243.159-20150311001649/@comment-746248-20150317112824\nTalk:Fer-de-Lance/@comment-84.113.243.159-20150311001649/@comment-95.115.109.2-20150312181232\nTalk:Fer-de-Lance/@comment-84.171.70.245-20150315143847\nTalk:Fer-de-Lance/@comment-84.183.20.7-20151217135147\nTalk:Fer-de-Lance/@comment-85.228.210.179-20150329185935\nTalk:Fer-de-Lance/@comment-85.68.245.20-20150121003401\nTalk:Fer-de-Lance/@comment-86.157.6.203-20150922143735\nTalk:Fer-de-Lance/@comment-86.162.183.25-20150305005306\nTalk:Fer-de-Lance/@comment-86.162.183.25-20150305005306/@comment-93.35.1.34-20150305084130\nTalk:Fer-de-Lance/@comment-86.179.81.244-20150310194816\nTalk:Fer-de-Lance/@comment-86.183.57.129-20150310194203\nTalk:Fer-de-Lance/@comment-86.8.24.248-20150410205815\nTalk:Fer-de-Lance/@comment-87.178.125.192-20170614182947\nTalk:Fer-de-Lance/@comment-87.178.125.192-20170614182947/@comment-192.136.161.52-20170614220239\nTalk:Fer-de-Lance/@comment-87.178.125.192-20170614182947/@comment-2601:243:480:98D9:781D:DC23:3C5D:423B-20180501232124\nTalk:Fer-de-Lance/@comment-87.178.125.192-20170614204051\nTalk:Fer-de-Lance/@comment-88.185.61.186-20150828095324\nTalk:Fer-de-Lance/@comment-88.185.61.186-20150828095324/@comment-138.75.186.140-20150829045833\nTalk:Fer-de-Lance/@comment-88.185.61.186-20150828095324/@comment-142.105.155.242-20151001210340\nTalk:Fer-de-Lance/@comment-88.185.61.186-20150828095324/@comment-82.17.223.212-20150830084854\nTalk:Fer-de-Lance/@comment-88.192.22.237-20160714223231\nTalk:Fer-de-Lance/@comment-88.192.22.237-20160714223231/@comment-173.226.237.130-20160802022123\nTalk:Fer-de-Lance/@comment-88.192.22.237-20160714223231/@comment-30802664-20170428134840\nTalk:Fer-de-Lance/@comment-89.103.56.151-20150123014351\nTalk:Fer-de-Lance/@comment-89.168.0.206-20150309002004\nTalk:Fer-de-Lance/@comment-89.168.0.206-20150309002004/@comment-121.211.39.251-20150310192954\nTalk:Fer-de-Lance/@comment-89.168.0.206-20150309002004/@comment-82.47.167.18-20150313011318\nTalk:Fer-de-Lance/@comment-89.168.0.206-20150309002004/@comment-89.168.0.206-20150310231729\nTalk:Fer-de-Lance/@comment-89.168.0.206-20150309002004/@comment-92.201.175.22-20150310214816\nTalk:Fer-de-Lance/@comment-89.29.254.38-20150313173721\nTalk:Fer-de-Lance/@comment-89.77.85.31-20150313220938\nTalk:Fer-de-Lance/@comment-89.77.85.31-20150313220938/@comment-68.39.110.18-20150314130027\nTalk:Fer-de-Lance/@comment-89.77.85.31-20150313220938/@comment-73.53.96.176-20150319205529\nTalk:Fer-de-Lance/@comment-89.77.85.31-20150313220938/@comment-75.80.41.165-20150314170853\nTalk:Fer-de-Lance/@comment-90.231.177.208-20150315115112\nTalk:Fer-de-Lance/@comment-90.231.177.208-20150315115112/@comment-26009169-20150315130141\nTalk:Fer-de-Lance/@comment-90.8.89.74-20150102031517\nTalk:Fer-de-Lance/@comment-90.8.89.74-20150102031517/@comment-26009169-20150223120230\nTalk:Fer-de-Lance/@comment-90.8.89.74-20150102031517/@comment-4968814-20150105174311\nTalk:Fer-de-Lance/@comment-90.8.89.74-20150102031517/@comment-71.21.3.159-20150223014402\nTalk:Fer-de-Lance/@comment-93.35.1.34-20150304151542\nTalk:Fer-de-Lance/@comment-93.35.1.34-20150304151542/@comment-121.211.39.251-20150310193602\nTalk:Fer-de-Lance/@comment-94.7.173.143-20150410102909\nTalk:Fer-de-Lance/@comment-94.7.173.143-20150410102909/@comment-26009169-20150410115124\nTalk:Fer-de-Lance/@comment-94.7.173.143-20150410102909/@comment-72.235.147.20-20150518053851\nTalk:Fer-de-Lance/@comment-9472148-20160203211503\nTalk:Fer-de-Lance/@comment-9472148-20160203211503/@comment-108.41.120.242-20160205175244\nTalk:Fer-de-Lance/@comment-9472148-20160203211503/@comment-146.200.85.59-20160317012801\nTalk:Fer-de-Lance/@comment-9472148-20160203211503/@comment-147.69.30.118-20160213065208\nTalk:Fer-de-Lance/@comment-9472148-20160203211503/@comment-178.62.5.157-20160211141839\nTalk:Fer-de-Lance/@comment-9472148-20160203211503/@comment-192.136.172.239-20160211215041\nTalk:Fer-de-Lance/@comment-9472148-20160203211503/@comment-192.136.174.139-20160217122430\nTalk:Fer-de-Lance/@comment-9472148-20160203211503/@comment-26391992-20160203211818\nTalk:Fer-de-Lance/@comment-9472148-20160203211503/@comment-73.44.65.107-20160215161300\nTalk:Fer-de-Lance/@comment-95.129.56.35-20151129173534\nTalk:Fer-de-Lance/@comment-95.129.56.35-20151129173534/@comment-27032150-20160121134601\nTalk:Fer-de-Lance/@comment-95.129.56.35-20151129173534/@comment-31.46.250.132-20151130191013\nTalk:Fer-de-Lance/@comment-95.129.56.35-20151129173534/@comment-80.44.230.0-20160116214412\nTalk:Fer-de-Lance/@comment-95.129.56.35-20151218160508\nTalk:Fer-de-Lance/@comment-95.129.56.35-20151218160508/@comment-27032150-20160121134328\nTalk:Fer-de-Lance/@comment-95.33.124.191-20150915224401\nTalk:Fer-de-Lance/@comment-95.33.124.191-20150915224401/@comment-24.96.161.57-20150920053406\nTalk:Fer-de-Lance/@comment-95.33.124.191-20150915224401/@comment-26304615-20150920134559\nTalk:Fer-de-Lance/@comment-95.91.113.94-20150315131759\nTalk:Fer-de-Lance/@comment-95.91.113.94-20150315131759/@comment-188.102.48.247-20150531155805\nTalk:Fer-de-Lance/@comment-95.91.113.94-20150315131759/@comment-24.93.194.27-20150517050443\nTalk:Fer-de-Lance/@comment-98.193.10.19-20181108002426\nTalk:Fiction Resources/@comment-5959508-20130206141121\nTalk:Fiction Resources/@comment-95.26.232.30-20140527090412\nTalk:Fighter Hangar/@comment-104.220.5.39-20171024011627\nTalk:Fighter Hangar/@comment-120.145.27.164-20170416152701\nTalk:Fighter Hangar/@comment-174.115.54.159-20190301184005\nTalk:Fighter Hangar/@comment-174.115.54.159-20190301184005/@comment-192.136.170.98-20190301190711\nTalk:Fighter Hangar/@comment-174.115.54.159-20190301184005/@comment-2003:DB:F70F:D66E:6194:BCB3:D1D:4B6B-20200127145356\nTalk:Fighter Hangar/@comment-174.115.54.159-20190301184005/@comment-2003:DB:F70F:D66E:6194:BCB3:D1D:4B6B-20200127145627\nTalk:Fighter Hangar/@comment-174.115.54.159-20190301184005/@comment-2003:DB:F70F:D66E:6194:BCB3:D1D:4B6B-20200127151713\nTalk:Fighter Hangar/@comment-177.154.11.209-20180401175100\nTalk:Fighter Hangar/@comment-177.154.11.209-20180401175100/@comment-2602:306:CE29:B0D0:5148:3E6C:3019:AFBF-20191012005326\nTalk:Fighter Hangar/@comment-177.154.11.209-20180401175100/@comment-34552491-20180902230229\nTalk:Fighter Hangar/@comment-184.166.4.51-20191209122158\nTalk:Fighter Hangar/@comment-194.22.238.75-20170424093314\nTalk:Fighter Hangar/@comment-194.22.238.75-20170424093314/@comment-192.136.161.52-20170424115051\nTalk:Fighter Hangar/@comment-194.22.238.75-20170424093314/@comment-5959508-20170424103158\nTalk:Fighter Hangar/@comment-194.22.238.75-20170424093314/@comment-5959508-20170424104339\nTalk:Fighter Hangar/@comment-2003:DB:F70F:D6EA:ADB1:3BA5:2504:FB30-20200125122537\nTalk:Fighter Hangar/@comment-2003:DB:F70F:D6EA:ADB1:3BA5:2504:FB30-20200125122537/@comment-2003:DB:F70F:D66E:6194:BCB3:D1D:4B6B-20200127140859\nTalk:Fighter Hangar/@comment-217.63.51.178-20170131230420\nTalk:Fighter Hangar/@comment-217.63.51.178-20170131230420/@comment-72.195.201.199-20181001030115\nTalk:Fighter Hangar/@comment-24522059-20170121085329\nTalk:Fighter Hangar/@comment-24522059-20170121085329/@comment-24522059-20170123111019\nTalk:Fighter Hangar/@comment-24522059-20170121085329/@comment-30245159-20170121132901\nTalk:Fighter Hangar/@comment-2602:306:CE29:B0D0:5148:3E6C:3019:AFBF-20191012004939\nTalk:Fighter Hangar/@comment-30643772-20161202070201\nTalk:Fighter Hangar/@comment-30643772-20161202071647\nTalk:Fighter Hangar/@comment-30643772-20161202071647/@comment-81.159.75.181-20170411062602\nTalk:Fighter Hangar/@comment-30643772-20170614075622\nTalk:Fighter Hangar/@comment-30643772-20170614075622/@comment-176.249.62.114-20170810172323\nTalk:Fighter Hangar/@comment-44439237-20191117201625\nTalk:Fighter Hangar/@comment-60764-20171002085423\nTalk:Fighter Hangar/@comment-64.134.166.117-20181112225708\nTalk:Fighter Hangar/@comment-66.191.249.64-20170307133344\nTalk:Fighter Hangar/@comment-71.59.203.250-20161202050920\nTalk:Fighter Hangar/@comment-71.59.203.250-20161202050920/@comment-30643772-20161202064448\nTalk:Fighter Hangar/@comment-71.59.203.250-20161202050920/@comment-30643772-20161202070850\nTalk:Fighter Hangar/@comment-72.213.48.222-20170514233441\nTalk:Fighter Hangar/@comment-72.213.48.222-20170514233441/@comment-30643772-20170614075733\nTalk:Fighter Hangar/@comment-77.158.163.10-20200206154944\nTalk:Fighter Hangar/@comment-90.255.83.60-20170220094331\nTalk:Fighter Hangar/@comment-90.255.83.60-20170220094331/@comment-192.136.161.52-20170221131029\nTalk:Fighter Hangar/@comment-90.255.83.60-20170220094331/@comment-2001:5B0:4BC1:4C00:0:FF:FEBD:63F2-20181111121737\nTalk:Fighter Hangar/@comment-90.255.83.60-20170220094331/@comment-2607:FCC8:68C8:E900:3484:4C1B:5314:B25A-20180908043213\nTalk:Fighter Hangar/@comment-95.105.83.44-20170113030232\nTalk:Fighter Hangar/@comment-95.105.83.44-20170113030232/@comment-192.136.161.52-20170113123207\nTalk:Fighter Hangar/@comment-95.105.83.44-20170113030232/@comment-192.136.161.52-20170115172351\nTalk:Fighter Hangar/@comment-95.105.83.44-20170113030232/@comment-5959508-20170115150018\nTalk:Fighter Hangar/@comment-95.105.83.44-20170113030232/@comment-94.248.197.209-20170115144546\nTalk:Fighter Hangar/@comment-96.41.191.172-20170307142052\nTalk:Fighter Hangar/@comment-96.60.81.157-20180327154644\nTalk:Fine/@comment-178.168.68.37-20150422001808\nTalk:Fine/@comment-178.168.68.37-20150422001808/@comment-82.61.91.249-20150429003617\nTalk:Fine/@comment-178.168.68.37-20150422001808/@comment-83.84.38.44-20151110215903\nTalk:Fine/@comment-195.81.98.113-20150615223459\nTalk:Fine/@comment-195.81.98.113-20150615223459/@comment-73.1.55.15-20151101183406\nTalk:Fine/@comment-3034191-20150707190445\nTalk:Fine/@comment-3034191-20150707190445/@comment-71.42.172.70-20160109235556\nTalk:Fine/@comment-5.146.179.178-20150411065803\nTalk:Fine/@comment-71.238.35.118-20151129233313\nTalk:Fine/@comment-73.72.116.45-20160302192557\nTalk:Fine/@comment-93.159.21.36-20151106124840\nTalk:Fine/@comment-93.159.21.36-20151106124840/@comment-27032150-20151107150729\nTalk:Fine/@comment-93.76.182.81-20150203112230\nTalk:Fish/@comment-24.142.229.190-20190821202027\nTalk:Fish/@comment-24.142.229.190-20190821202027/@comment-50.232.55.154-20190821202218\nTalk:Fish/@comment-24.142.229.190-20190821202027/@comment-67.20.129.153-20191029144500\nTalk:Fisher's Rest/@comment-2602:306:CCB1:A130:E930:1367:F15F:3AC7-20180415222550\nTalk:Fisher's Rest/@comment-30204622-20170224175116\nTalk:Fisher's Rest/@comment-86.153.131.213-20170419073051\nTalk:Fisher's Rest/@comment-86.153.131.213-20170419073051/@comment-173.169.188.219-20170909142844\nTalk:Fisher's Rest/@comment-86.153.131.213-20170419073051/@comment-2001:16B8:2D66:2700:C58:BD50:A97D:D76-20171118122652\nTalk:Fisher's Rest/@comment-86.153.131.213-20170419073051/@comment-88.112.115.253-20170422212141\nTalk:Fleet Carrier/@comment-2003:DA:CBFE:E000:8000:545E:8BAC:2F81-20180722114621\nTalk:Fleet Carrier/@comment-212.10.111.72-20190822235657/@comment-212.10.111.72-20190911053639\nTalk:Fleet Carriers Update/@comment-2.31.191.136-20200101154213\nTalk:Fleet Carriers Update/@comment-2600:1702:2210:95F0:0:0:0:40-20191203120625\nTalk:Fleet Carriers Update/@comment-2600:1702:2210:95F0:0:0:0:40-20191203120625/@comment-176.106.253.48-20200203030714\nTalk:Fleet Carriers Update/@comment-2600:1702:2210:95F0:0:0:0:40-20191203120625/@comment-30928085-20191215193450\nTalk:Fleet Carriers Update/@comment-2A02:A311:A23E:D100:1025:93FE:F736:DB84-20200123200034\nTalk:Flight Assist/@comment-196.212.83.221-20170805212514\nTalk:Flight Assist/@comment-196.212.83.221-20170805212514/@comment-2602:306:CE29:B0D0:C1FE:E9ED:6A3C:72A3-20191010012601\nTalk:Flight Assist/@comment-199.67.131.148-20160203034556\nTalk:Flight Assist/@comment-199.67.131.148-20160203034556/@comment-26391992-20160203090141\nTalk:Flight Assist/@comment-209.211.111.130-20150617181934\nTalk:Flight Assist/@comment-209.211.111.130-20150617181934/@comment-209.211.111.130-20150618140029\nTalk:Flight Assist/@comment-209.211.111.130-20150617181934/@comment-26009169-20150617195151\nTalk:Flight Assist/@comment-50.4.239.175-20160804001704\nTalk:Flight Assist/@comment-68.144.188.95-20160713055018\nTalk:Flight Assist/@comment-68.144.188.95-20160713055018/@comment-27032150-20160713063149\nTalk:Flight Assist/@comment-70.92.188.149-20160223015849\nTalk:Flight Assist/@comment-75.140.40.102-20150422185500\nTalk:Flight Assist/@comment-75.140.40.102-20150422185500/@comment-26009169-20150422230016\nTalk:Flight Model/@comment-176.58.195.10-20190731125520\nTalk:Flight Model/@comment-62.252.153.200-20171206023314\nTalk:Flight Model/@comment-62.252.153.200-20171206023314/@comment-213.127.233.19-20190924210053\nTalk:Flight Model/@comment-62.252.153.200-20171206023314/@comment-90.200.49.195-20181212151819\nTalk:Flight Model/@comment-81.210.12.147-20200113072700\nTalk:Focus Crystals/@comment-168.99.197.15-20180306211139\nTalk:Focus Crystals/@comment-168.99.197.15-20180306211139/@comment-2804:7F2:288D:4E21:ADED:D784:48E7:B126-20190604222451\nTalk:Focus Crystals/@comment-168.99.197.15-20180306211139/@comment-73.223.225.250-20190101055813\nTalk:Focus Crystals/@comment-2003:DE:D74B:101:64CB:ADC6:3374:84C9-20180722182834\nTalk:Focus Crystals/@comment-2003:E8:3E6:7861:A802:A862:6BB8:9B3B-20180707220425\nTalk:Focus Crystals/@comment-76.102.0.25-20180714200714\nTalk:Focused Weapon/@comment-2602:306:CE29:B0D0:9C67:1E8D:BAF0:BB47-20190918013331\nTalk:Focused Weapon/@comment-2602:306:CE29:B0D0:9C67:1E8D:BAF0:BB47-20190918013331/@comment-44180665-20200520160754\nTalk:Focused Weapon/@comment-44180665-20200520160506\nTalk:Food Cartridges/@comment-2.101.39.74-20151021140726\nTalk:Food Cartridges/@comment-2.101.39.74-20151021140726/@comment-136.8.33.71-20180221135751\nTalk:Food Cartridges/@comment-2.101.39.74-20151021140726/@comment-192.136.161.33-20180221140925\nTalk:Food Cartridges/@comment-207.255.250.241-20170725172234\nTalk:Food Cartridges/@comment-36352121-20190119203345\nTalk:Food Cartridges/@comment-36352121-20190119203345/@comment-36352121-20190119203802\nTalk:Food Cartridges/@comment-36352121-20190119203345/@comment-36352121-20190119204149\nTalk:Food Cartridges/@comment-4030403-20171109041224\nTalk:Force Shell/@comment-109.248.78.5-20180419104319\nTalk:Force Shell/@comment-109.248.78.5-20180419104319/@comment-192.136.161.33-20180419130732\nTalk:Force Shell/@comment-2601:189:C37F:9A42:DD07:B202:EB7F:ED9C-20190721045201\nTalk:Force Shell/@comment-2601:189:C37F:9A42:DD07:B202:EB7F:ED9C-20190721045201/@comment-206.19.54.254-20190722234013\nTalk:Force Shell/@comment-2601:406:4081:4940:60A1:8BBA:889:40CA-20191202153317\nTalk:Force Shell/@comment-2601:406:4081:4940:60A1:8BBA:889:40CA-20191202153317/@comment-90.195.95.48-20200120213514\nTalk:Formorian Frontier/@comment-82.37.171.147-20190125185215\nTalk:Founders World/@comment-172.56.5.159-20180620041250\nTalk:Founders World/@comment-172.56.5.159-20180620041250/@comment-1709744-20200831085949\nTalk:Founders World/@comment-172.56.5.159-20180620041250/@comment-35245756-20180816040137\nTalk:Founders World/@comment-172.56.5.159-20180620041250/@comment-98.238.90.10-20180827134713\nTalk:Founders World/@comment-2601:681:8600:BBF:4808:CB26:AE60:AD18-20190323003329\nTalk:Founders World/@comment-2601:681:8600:BBF:4808:CB26:AE60:AD18-20190323003329/@comment-192.136.170.98-20190323165000\nTalk:Founders World/@comment-36352121-20190117161623\nTalk:Founders World/@comment-71.199.250.29-20170501060034\nTalk:Founders World/@comment-71.199.250.29-20170501060034/@comment-192.136.161.52-20170501113607\nTalk:Founders World/@comment-71.199.250.29-20170501060034/@comment-73.209.152.39-20180731000057\nTalk:Founders World/@comment-82.43.94.186-20170503223252\nTalk:Founders World/@comment-82.43.94.186-20170503223252/@comment-2001:569:BC37:1E00:A5FF:12D5:F9A:D2A8-20190113215253\nTalk:Founders World/@comment-82.43.94.186-20170503223252/@comment-61.68.242.102-20171014125902\nTalk:Founders World/@comment-90.200.46.38-20181115212330\nTalk:Fragment Cannon/@comment-110.175.170.237-20150322022244\nTalk:Fragment Cannon/@comment-192.136.161.52-20170122175848\nTalk:Fragment Cannon/@comment-192.136.161.52-20170122175848/@comment-192.136.161.52-20170130122826\nTalk:Fragment Cannon/@comment-192.136.161.52-20170122175848/@comment-30561179-20170403080035\nTalk:Fragment Cannon/@comment-192.136.161.52-20170122175848/@comment-94.181.99.243-20170130114128\nTalk:Fragment Cannon/@comment-213.219.154.151-20150516110943\nTalk:Fragment Cannon/@comment-27034370-20160104104838\nTalk:Fragment Cannon/@comment-4632371-20151110091548\nTalk:Fragment Cannon/@comment-4632371-20151110091548/@comment-26391992-20151208175831\nTalk:Fragment Cannon/@comment-4632371-20151110091548/@comment-27311754-20151211113303\nTalk:Fragment Cannon/@comment-4632371-20151110091548/@comment-81.233.188.161-20151203024921\nTalk:Fragment Cannon/@comment-490933-20150120224653\nTalk:Fragment Cannon/@comment-490933-20150120224653/@comment-104.178.13.235-20150719034020\nTalk:Fragment Cannon/@comment-490933-20150120224653/@comment-104.178.13.235-20150719034355\nTalk:Fragment Cannon/@comment-490933-20150120224653/@comment-220.233.117.211-20150515013615\nTalk:Fragment Cannon/@comment-490933-20150120224653/@comment-746248-20150122122743\nTalk:Fragment Cannon/@comment-490933-20150120224653/@comment-80.7.103.106-20151112171808\nTalk:Fragment Cannon/@comment-70.15.250.41-20151019181309\nTalk:Fragment Cannon/@comment-72.224.237.155-20150401040507\nTalk:Fragment Cannon/@comment-73.140.157.130-20151002092043\nTalk:Fragment Cannon/@comment-73.235.208.55-20151226032526\nTalk:Fragment Cannon/@comment-73.254.229.37-20180317082246\nTalk:Fragment Cannon/@comment-73.254.229.37-20180317082246/@comment-90.200.46.38-20181029101606\nTalk:Fragment Cannon/@comment-82.49.169.40-20150313124801\nTalk:Fragment Cannon/@comment-82.49.169.40-20150313124801/@comment-93.223.123.140-20150318171256\nTalk:Fragment Cannon/@comment-84.173.105.208-20150630231400\nTalk:Fragment Cannon/@comment-90.200.46.38-20181020221749\nTalk:Fragment Cannon/@comment-90.200.46.38-20181020221749/@comment-203.104.15.95-20191024005608\nTalk:Fragment Cannon/@comment-90.200.46.38-20181118000450\nTalk:Fragment Cannon/@comment-90.200.46.38-20181118000450/@comment-90.200.46.38-20181123023010\nTalk:Fragment Cannon/@comment-94.12.31.80-20170723203448\nTalk:Fragment Cannon/@comment-94.12.31.80-20170723203448/@comment-34641605-20180825164808\nTalk:Fragment Cannon/@comment-94.12.31.80-20170723203448/@comment-90.200.46.38-20181031145911\nTalk:Fragment Cannon/@comment-94.12.31.80-20170805233649\nTalk:Fragment Cannon/@comment-94.12.31.80-20170805233649/@comment-192.136.161.33-20170924234740\nTalk:Fragment Cannon/@comment-94.12.31.80-20170805233649/@comment-192.136.161.6-20170807200913\nTalk:Fragment Cannon/@comment-94.12.31.80-20170805233649/@comment-192.195.66.4-20170924164857\nTalk:Fragment Cannon/@comment-94.12.31.80-20170805233649/@comment-90.200.46.38-20181029102117\nTalk:Fragment Cannon/@comment-94.12.31.80-20170805233649/@comment-90.200.46.38-20181104195657\nTalk:Fragment Cannon/@comment-99.0.13.106-20150320021623\nTalk:Frame Shift Drive/@comment-109.152.94.54-20150207093754\nTalk:Frame Shift Drive/@comment-109.152.94.54-20150207093754/@comment-27.253.112.101-20150410094444\nTalk:Frame Shift Drive/@comment-109.252.67.168-20161030211418\nTalk:Frame Shift Drive/@comment-109.73.208.55-20150118104012\nTalk:Frame Shift Drive/@comment-109.73.208.55-20150118104012/@comment-71.88.114.133-20150208024329\nTalk:Frame Shift Drive/@comment-109.73.208.55-20150220140957\nTalk:Frame Shift Drive/@comment-124.148.163.184-20191211231822\nTalk:Frame Shift Drive/@comment-124.148.163.184-20191211231822/@comment-28123952-20200520200711\nTalk:Frame Shift Drive/@comment-128.78.170.65-20151216114244\nTalk:Frame Shift Drive/@comment-128.78.170.65-20151216114244/@comment-128.78.170.65-20151216180310\nTalk:Frame Shift Drive/@comment-137.132.232.152-20161202135201\nTalk:Frame Shift Drive/@comment-137.132.232.152-20161202135201/@comment-46.196.17.167-20170421090406\nTalk:Frame Shift Drive/@comment-137.132.232.152-20161202135201/@comment-46972410-20200926031406\nTalk:Frame Shift Drive/@comment-137.132.232.152-20161202135201/@comment-63.145.88.222-20190326205939\nTalk:Frame Shift Drive/@comment-146.52.34.126-20150321165618\nTalk:Frame Shift Drive/@comment-146.52.34.126-20150321165618/@comment-146.52.34.126-20150321171412\nTalk:Frame Shift Drive/@comment-162.229.66.46-20150803013509\nTalk:Frame Shift Drive/@comment-173.20.28.32-20150424195339\nTalk:Frame Shift Drive/@comment-177.98.11.58-20150425134743\nTalk:Frame Shift Drive/@comment-182.54.220.247-20150331072259\nTalk:Frame Shift Drive/@comment-182.54.220.247-20150331072259/@comment-26009169-20150331110400\nTalk:Frame Shift Drive/@comment-188.100.39.173-20150406160120\nTalk:Frame Shift Drive/@comment-189.27.190.79-20170101123501\nTalk:Frame Shift Drive/@comment-189.27.190.79-20170101123501/@comment-192.136.161.52-20170101124514\nTalk:Frame Shift Drive/@comment-189.27.190.79-20170101123501/@comment-92.217.17.215-20170428150812\nTalk:Frame Shift Drive/@comment-189.35.4.75-20151201011105\nTalk:Frame Shift Drive/@comment-189.35.4.75-20151201011105/@comment-209.121.203.45-20151201020512\nTalk:Frame Shift Drive/@comment-189.35.4.75-20151201011105/@comment-91.156.148.106-20160325011009\nTalk:Frame Shift Drive/@comment-193.11.161.135-20150414211253\nTalk:Frame Shift Drive/@comment-193.11.161.135-20150414211253/@comment-220.233.117.211-20150517222503\nTalk:Frame Shift Drive/@comment-195.243.28.250-20160222151023\nTalk:Frame Shift Drive/@comment-195.243.28.250-20160222151023/@comment-4900524-20160512145728\nTalk:Frame Shift Drive/@comment-1969007-20180424030147\nTalk:Frame Shift Drive/@comment-1969007-20180424030147/@comment-30972879-20181212131848\nTalk:Frame Shift Drive/@comment-1969007-20180424030147/@comment-63.145.88.222-20190326204702\nTalk:Frame Shift Drive/@comment-200.165.164.244-20150623205144\nTalk:Frame Shift Drive/@comment-2003:ED:4BDD:500:9192:CB96:BAA8:B7F9-20191208181609\nTalk:Frame Shift Drive/@comment-2003:ED:4BDD:500:9192:CB96:BAA8:B7F9-20191208181609/@comment-30928085-20191209012944\nTalk:Frame Shift Drive/@comment-212.35.27.63-20171202071842\nTalk:Frame Shift Drive/@comment-220.209.22.41-20150106134111\nTalk:Frame Shift Drive/@comment-220.209.22.41-20150106134111/@comment-81.152.20.197-20150121175407\nTalk:Frame Shift Drive/@comment-25411947-20151115212308\nTalk:Frame Shift Drive/@comment-25450485-20150924131308\nTalk:Frame Shift Drive/@comment-25450485-20150924133415\nTalk:Frame Shift Drive/@comment-25466501-20150111053654\nTalk:Frame Shift Drive/@comment-25466501-20150111053654/@comment-81.152.20.197-20150121183057\nTalk:Frame Shift Drive/@comment-257099-20150818135200\nTalk:Frame Shift Drive/@comment-25891569-20141218220033\nTalk:Frame Shift Drive/@comment-25891569-20141218220033/@comment-121.211.74.21-20150115080201\nTalk:Frame Shift Drive/@comment-25891569-20141218220033/@comment-122.108.186.164-20150101130233\nTalk:Frame Shift Drive/@comment-25891569-20141218220033/@comment-82.36.103.204-20141227192037\nTalk:Frame Shift Drive/@comment-26537865-20150629040226\nTalk:Frame Shift Drive/@comment-26537865-20150629040226/@comment-24.253.75.17-20150724065448\nTalk:Frame Shift Drive/@comment-26959616-20151006194953\nTalk:Frame Shift Drive/@comment-27079681-20151015190156\nTalk:Frame Shift Drive/@comment-27079681-20151015190156/@comment-107.128.48.46-20151021223110\nTalk:Frame Shift Drive/@comment-27079681-20151015190156/@comment-107.128.48.46-20151021223145\nTalk:Frame Shift Drive/@comment-27079681-20151015190156/@comment-107.128.48.46-20151021223839\nTalk:Frame Shift Drive/@comment-42.112.88.75-20161004054432\nTalk:Frame Shift Drive/@comment-42.112.88.75-20161004054432/@comment-125.237.3.1-20161013071310\nTalk:Frame Shift Drive/@comment-42.112.88.75-20161004054432/@comment-1969007-20180424025731\nTalk:Frame Shift Drive/@comment-42.112.88.75-20161004054432/@comment-2A02:C7D:7229:7500:354A:42A7:CB26:10D6-20170704153529\nTalk:Frame Shift Drive/@comment-42.112.88.75-20161004054432/@comment-83.49.45.46-20161004141540\nTalk:Frame Shift Drive/@comment-42.112.88.75-20161004054432/@comment-86.29.114.119-20171228150713\nTalk:Frame Shift Drive/@comment-44180665-20200522170656\nTalk:Frame Shift Drive/@comment-5.29.54.125-20150524104350\nTalk:Frame Shift Drive/@comment-5.29.54.125-20150524104350/@comment-162.229.66.46-20150805023719\nTalk:Frame Shift Drive/@comment-5562446-20191122062118\nTalk:Frame Shift Drive/@comment-5579199-20150728033539\nTalk:Frame Shift Drive/@comment-64.136.192.220-20150116130131\nTalk:Frame Shift Drive/@comment-64.136.192.220-20150116130131/@comment-86.132.116.75-20150117234639\nTalk:Frame Shift Drive/@comment-68.2.208.151-20171228063610\nTalk:Frame Shift Drive/@comment-68.2.208.151-20171228063610/@comment-2001:8003:C105:2400:55E2:CBB3:ED96:665A-20180411044807\nTalk:Frame Shift Drive/@comment-68.2.208.151-20171228063610/@comment-25450485-20181123091245\nTalk:Frame Shift Drive/@comment-68.2.208.151-20171228063610/@comment-2601:201:0:CE90:3D38:76A3:5A6F:89B1-20190113194723\nTalk:Frame Shift Drive/@comment-68.2.208.151-20171228063610/@comment-34004391-20180105095302\nTalk:Frame Shift Drive/@comment-70.113.58.190-20150519041746\nTalk:Frame Shift Drive/@comment-72.146.35.160-20141226192613\nTalk:Frame Shift Drive/@comment-72.146.35.160-20141226192613/@comment-86.12.81.174-20141228201859\nTalk:Frame Shift Drive/@comment-76.114.183.18-20160918202249\nTalk:Frame Shift Drive/@comment-81.166.196.79-20150125145513\nTalk:Frame Shift Drive/@comment-81.166.196.79-20150125145513/@comment-109.73.208.55-20150220132442\nTalk:Frame Shift Drive/@comment-81.166.196.79-20150125145513/@comment-220.233.117.211-20150517225243\nTalk:Frame Shift Drive/@comment-82.1.165.161-20150119150722\nTalk:Frame Shift Drive/@comment-82.1.165.161-20150119150722/@comment-26044922-20150127200352\nTalk:Frame Shift Drive/@comment-82.29.169.45-20150524004430\nTalk:Frame Shift Drive/@comment-8256051-20150120035903\nTalk:Frame Shift Drive/@comment-8256051-20150120035903/@comment-178.84.5.249-20150120065502\nTalk:Frame Shift Drive/@comment-8256051-20150120035903/@comment-25679378-20150227133333\nTalk:Frame Shift Drive/@comment-8256051-20150120035903/@comment-74.115.245.116-20150206233716\nTalk:Frame Shift Drive/@comment-8256051-20150120035903/@comment-8256051-20150120134212\nTalk:Frame Shift Drive/@comment-83.95.121.223-20150120183422\nTalk:Frame Shift Drive/@comment-83.95.121.223-20150120183422/@comment-86.16.25.74-20150124195343\nTalk:Frame Shift Drive/@comment-84.195.191.69-20160204234007\nTalk:Frame Shift Drive/@comment-86.155.247.69-20150120103646\nTalk:Frame Shift Drive/@comment-86.155.247.69-20150120103646/@comment-86.155.247.69-20150120103751\nTalk:Frame Shift Drive/@comment-86.52.37.178-20141228102015\nTalk:Frame Shift Drive/@comment-88.10.69.188-20150816171839\nTalk:Frame Shift Drive/@comment-88.10.69.188-20150816171839/@comment-92.4.168.112-20150914225305\nTalk:Frame Shift Drive/@comment-91.11.106.189-20150506085959\nTalk:Frame Shift Drive/@comment-92.208.175.201-20160123184411\nTalk:Frame Shift Drive/@comment-92.9.145.2-20141225134704\nTalk:Frame Shift Drive/@comment-92.9.145.2-20141225134704/@comment-12138097-20141226013522\nTalk:Frame Shift Drive/@comment-95.16.69.173-20150502223831\nTalk:Frame Shift Drive/@comment-95.16.69.173-20150502223831/@comment-162.229.66.46-20150805025336\nTalk:Frame Shift Drive/@comment-95.16.69.173-20150502223831/@comment-90.210.206.69-20150820121634\nTalk:Frame Shift Drive/@comment-99.113.49.199-20150205194218\nTalk:Frame Shift Drive/@comment-99.113.49.199-20150205194420\nTalk:Frame Shift Drive Interdictor/@comment-12.5.54.135-20151009150228\nTalk:Frame Shift Drive Interdictor/@comment-12.5.54.135-20151009150228/@comment-49.3.192.13-20170710131956\nTalk:Frame Shift Drive Interdictor/@comment-26113847-20150228043500\nTalk:Frame Shift Drive Interdictor/@comment-26113847-20150228043500/@comment-162.229.93.140-20150305010225\nTalk:Frame Shift Drive Interdictor/@comment-26113847-20150228043500/@comment-77.6.150.91-20150427002252\nTalk:Frame Shift Drive Interdictor/@comment-26113847-20150228043500/@comment-88.85.155.146-20150303174432\nTalk:Frame Shift Drive Interdictor/@comment-27986221-20160408165734\nTalk:Frame Shift Drive Interdictor/@comment-27986221-20160408165734/@comment-26391992-20160409114749\nTalk:Frame Shift Drive Interdictor/@comment-30204622-20170221143832\nTalk:Frame Shift Drive Interdictor/@comment-30204622-20170221143832/@comment-188.146.108.111-20170711000945\nTalk:Frame Shift Drive Interdictor/@comment-30204622-20170221143832/@comment-94.12.31.80-20170725171342\nTalk:Frame Shift Drive Interdictor/@comment-44180665-20200428173451\nTalk:Frame Shift Drive Interdictor/@comment-44180665-20200428173451/@comment-44180665-20200428173809\nTalk:Frame Shift Drive Interdictor/@comment-50.88.121.45-20150203031439\nTalk:Frame Shift Drive Interdictor/@comment-50.88.121.45-20150203031439/@comment-26005414-20150206053954\nTalk:Frame Shift Drive Interdictor/@comment-50.88.121.45-20150203031439/@comment-50.88.121.45-20150206093123\nTalk:Frame Shift Drive Interdictor/@comment-67.170.141.141-20141223090402\nTalk:Frame Shift Drive Interdictor/@comment-67.170.141.141-20141223090402/@comment-129.21.70.139-20160202151746\nTalk:Frame Shift Drive Interdictor/@comment-67.170.141.141-20141223090402/@comment-66.249.83.232-20141230060156\nTalk:Frame Shift Drive Interdictor/@comment-77.96.3.131-20151010152724\nTalk:Frame Shift Drive Interdictor/@comment-77.96.3.131-20151010152724/@comment-49.3.192.13-20170710132026\nTalk:Frame Shift Drive Interdictor/@comment-79.37.27.30-20151006231013\nTalk:Frame Shift Drive Interdictor/@comment-79.37.27.30-20151006231013/@comment-71.53.148.157-20151021080623\nTalk:Frame Shift Drive Interdictor/@comment-87.127.164.177-20150820144559\nTalk:Frame Shift Drive Interdictor/@comment-88.112.91.114-20150109171843\nTalk:Frame Shift Drive Interdictor/@comment-88.112.91.114-20150109171843/@comment-24776661-20150223045214\nTalk:Frame Shift Drive Interdictor/@comment-89.168.133.96-20160407215302\nTalk:Frame Shift Drive Interdictor/@comment-89.168.133.96-20160407215302/@comment-192.136.172.78-20160408112431\nTalk:Frame Shift Drive Interdictor/@comment-89.73.219.205-20141223233327\nTalk:Frame Shift Drive Interdictor/@comment-89.73.219.205-20141223233327/@comment-108.19.86.227-20150105032628\nTalk:Frame Shift Drive Interdictor/@comment-92.211.2.27-20150206213741\nTalk:Frame Shift Drive Interdictor/@comment-92.211.2.27-20150206213741/@comment-86.19.157.214-20150221023424\nTalk:Frame Shift Drive Interdictor/@comment-94.79.174.218-20150109230007\nTalk:Frame Shift Drive Interdictor/@comment-94.79.174.218-20150109230007/@comment-78.143.199.122-20151125214237\nTalk:Frame Shift Drive Interdictor/@comment-94.79.174.218-20150109230007/@comment-81.110.55.228-20150722232243\nTalk:Frame Shift Drive Interdictor/@comment-94.79.174.218-20150109230007/@comment-94.79.174.218-20150109230057\nTalk:Frame Shift Drive Interdictor/@comment-94.79.174.218-20150109230028\nTalk:Frame Shift Drive Interdictor/@comment-94.79.174.218-20150109230028/@comment-1250011-20150110001039\nTalk:Frame Shift Drive Interdictor/@comment-94.79.174.218-20150109230028/@comment-24.251.2.89-20150810230120\nTalk:Frame Shift Drive Interdictor/@comment-94.79.174.218-20150109230028/@comment-94.79.174.218-20150109231605\nTalk:Frame Shift Drive Interdictor/@comment-94.79.174.218-20150109230028/@comment-94.79.174.218-20150109234023\nTalk:Frame Shift Drive Wake/@comment-38128635-20190613075520\nTalk:Frame Shift Drive Wake/@comment-38128635-20190613075520/@comment-2601:189:C37F:9A42:E8F3:1D3:A473:A706-20190701103925\nTalk:Frame Shift Wake Scanner/@comment-121.211.216.213-20141228110747\nTalk:Frame Shift Wake Scanner/@comment-151.228.93.10-20150708203944\nTalk:Frame Shift Wake Scanner/@comment-151.228.93.10-20150708203944/@comment-34641605-20180430003757\nTalk:Frame Shift Wake Scanner/@comment-153.46.97.98-20160309132201\nTalk:Frame Shift Wake Scanner/@comment-153.46.97.98-20160309132201/@comment-153.46.97.98-20160310113914\nTalk:Frame Shift Wake Scanner/@comment-153.46.97.98-20160309132201/@comment-2155082-20160310050846\nTalk:Frame Shift Wake Scanner/@comment-210.49.91.112-20150103214351\nTalk:Frame Shift Wake Scanner/@comment-210.49.91.112-20150103214351/@comment-68.224.239.130-20150613185605\nTalk:Frame Shift Wake Scanner/@comment-210.49.91.112-20150103214351/@comment-86.0.130.106-20150219002001\nTalk:Frame Shift Wake Scanner/@comment-210.49.91.112-20150103214351/@comment-86.0.130.106-20150225211802\nTalk:Frame Shift Wake Scanner/@comment-210.55.18.198-20150904030554\nTalk:Frame Shift Wake Scanner/@comment-32118528-20191103033325\nTalk:Frame Shift Wake Scanner/@comment-32118528-20191104063813\nTalk:Frame Shift Wake Scanner/@comment-38128635-20190613082103\nTalk:Frame Shift Wake Scanner/@comment-68.104.25.123-20150307012003\nTalk:Frame Shift Wake Scanner/@comment-80.217.179.50-20181125222510\nTalk:Frame Shift Wake Scanner/@comment-86.3.205.254-20150610235757\nTalk:Frame Shift Wake Scanner/@comment-86.3.205.254-20150610235757/@comment-26454645-20151231172357\nTalk:Frame Shift Wake Scanner/@comment-88.112.91.114-20150315014242\nTalk:Frame Shift Wake Scanner/@comment-88.112.91.114-20150315014242/@comment-88.112.91.114-20150315020404\nTalk:Frameshift Drive/@comment-184.65.106.238-20141108183754\nTalk:Frameshift Drive/@comment-82.47.167.18-20141108223027\nTalk:Frameshift Drive/@comment-82.47.167.18-20141108223027/@comment-67.255.214.226-20141127051923\nTalk:Frameshift Drive/@comment-99.114.68.181-20141018232441\nTalk:Frameshift Drive/@comment-99.114.68.181-20141018232441/@comment-108.217.160.83-20141019013228\nTalk:Frontier: Elite II/@comment-108.231.240.230-20150218044534\nTalk:Frontier: Elite II/@comment-108.231.240.230-20150218044658\nTalk:Frontier: Elite II/@comment-108.231.240.230-20150218044754\nTalk:Frontier: Elite II/@comment-108.231.240.230-20150218044907\nTalk:Frontier: Elite II/@comment-151.229.84.136-20141117133511\nTalk:Frontier: Elite II/@comment-45720510-20200507201334\nTalk:Frontier: Elite II/@comment-90.200.46.38-20181113011335\nTalk:Frontier: Elite II/@comment-90.200.46.38-20181113011335/@comment-90.200.46.38-20181126225257\nTalk:Frontier: First Encounters/@comment-188.29.165.240-20151002200257\nTalk:Frontier: First Encounters/@comment-212.250.169.98-20150506172250\nTalk:Frontier: First Encounters/@comment-2600:8804:7100:1880:7C02:42B8:D2A7:D492-20171012222741\nTalk:Frontier: First Encounters/@comment-79.215.227.123-20150720212953\nTalk:Frontier: First Encounters/@comment-81.132.13.30-20150116234051\nTalk:Frontier: First Encounters/@comment-81.132.13.30-20150116234051/@comment-207.50.148.172-20191024105948\nTalk:Frontier Developments/@comment-97.121.218.26-20181217192210\nTalk:Frontier Developments/@comment-97.121.218.26-20181217192210/@comment-192.136.170.98-20181218042314\nTalk:Frontier Developments/@comment-97.121.218.26-20181217192210/@comment-192.136.170.98-20181219201135\nTalk:Frontier Developments/@comment-97.121.218.26-20181217192210/@comment-79.92.244.47-20181219190445\nTalk:Frontier Expo/@comment-26009169-20170727132511\nTalk:Fuel\nTalk:Fuel/@comment-122.148.153.93-20150920010350\nTalk:Fuel/@comment-122.148.153.93-20150920010350/@comment-122.148.153.93-20150922143810\nTalk:Fuel/@comment-122.148.153.93-20150920010350/@comment-122.148.153.93-20150922232242\nTalk:Fuel/@comment-122.148.153.93-20150920010350/@comment-122.148.153.93-20150923153307\nTalk:Fuel/@comment-122.148.153.93-20150920010350/@comment-122.148.153.93-20150926084708\nTalk:Fuel/@comment-122.148.153.93-20150920010350/@comment-122.148.153.93-20150926104436\nTalk:Fuel/@comment-122.148.153.93-20150920010350/@comment-26599825-20150922171105\nTalk:Fuel/@comment-122.148.153.93-20150920010350/@comment-26599825-20150923125143\nTalk:Fuel/@comment-122.148.153.93-20150920010350/@comment-26599825-20150926070521\nTalk:Fuel/@comment-122.148.153.93-20150920010350/@comment-72.10.219.10-20150921202657\nTalk:Fuel/@comment-122.148.153.93-20150920010350/@comment-73.90.204.140-20180609004912\nTalk:Fuel/@comment-122.148.153.93-20150920010350/@comment-86.183.78.247-20160426234524\nTalk:Fuel/@comment-122.148.153.93-20150920010350/@comment-91.158.15.3-20161129042916\nTalk:Fuel/@comment-212.219.39.137-20141014121341\nTalk:Fuel/@comment-212.219.39.137-20141014121341/@comment-50.204.82.30-20150711193735\nTalk:Fuel/@comment-212.219.39.137-20141014121341/@comment-68.230.98.108-20150207152903\nTalk:Fuel/@comment-213.114.157.12-20160207184316\nTalk:Fuel/@comment-216.251.21.87-20160416190404\nTalk:Fuel/@comment-26163293-20150302225818\nTalk:Fuel/@comment-26163293-20150302225818/@comment-100.11.200.187-20150721142036\nTalk:Fuel/@comment-26163293-20150302225818/@comment-216.251.21.87-20160416191632\nTalk:Fuel/@comment-26163293-20150302225818/@comment-64.206.209.98-20150327131731\nTalk:Fuel/@comment-50.150.51.32-20141225220506\nTalk:Fuel/@comment-50.150.51.32-20141225220506/@comment-12138097-20141226012601\nTalk:Fuel/@comment-6033893-20140808175802\nTalk:Fuel/@comment-6033893-20140808175802/@comment-68.230.98.108-20150207153216\nTalk:Fuel/@comment-67.247.139.249-20141218032605\nTalk:Fuel/@comment-70.122.217.227-20141218062352\nTalk:Fuel/@comment-70.122.217.227-20141218062352/@comment-80.42.159.101-20150128165830\nTalk:Fuel/@comment-72.193.8.88-20150926030221\nTalk:Fuel/@comment-73.41.243.141-20150927043626\nTalk:Fuel/@comment-73.53.211.21-20141219194628\nTalk:Fuel/@comment-73.53.211.21-20141219194628/@comment-174.52.104.159-20141230222428\nTalk:Fuel/@comment-73.53.211.21-20141219194628/@comment-68.230.98.108-20150207152603\nTalk:Fuel/@comment-75.165.52.62-20141128202330\nTalk:Fuel/@comment-76.88.40.102-20150616141138\nTalk:Fuel/@comment-76.88.40.102-20150616141138/@comment-26009169-20150616143959\nTalk:Fuel/@comment-83.240.126.50-20150218172600\nTalk:Fuel/@comment-83.240.126.50-20150218172600/@comment-173.32.146.21-20150314181249\nTalk:Fuel/@comment-91.153.81.197-20151101111502\nTalk:Fuel/@comment-91.153.81.197-20151101111502/@comment-69.178.7.165-20160206120352\nTalk:Fuel/@comment-99.61.168.9-20141231044928\nTalk:Fuel/@comment-99.61.168.9-20141231044928/@comment-104.207.136.81-20150828224034\nTalk:Fuel/@comment-99.61.168.9-20141231044928/@comment-24.141.225.61-20150825144320\nTalk:Fuel/@comment-99.61.168.9-20141231044928/@comment-50.204.82.30-20150711193553\nTalk:Fuel/@comment-99.61.168.9-20141231044928/@comment-68.230.98.108-20150207152045\nTalk:Fuel/@comment-99.61.168.9-20141231044928/@comment-91.186.159.111-20150411130800\nTalk:Fuel/@comment-99.61.168.9-20141231044928/@comment-92.21.193.149-20150307012251\nTalk:Fuel Rats/@comment-115.164.49.113-20181130084943\nTalk:Fuel Rats/@comment-149.254.234.87-20190131143409\nTalk:Fuel Rats/@comment-149.254.234.87-20190131143409/@comment-192.136.170.98-20190131191939\nTalk:Fuel Rats/@comment-27115814-20151130155701\nTalk:Fuel Rats/@comment-31893945-20170502014440\nTalk:Fuel Rats/@comment-34957720-20180310154305\nTalk:Fuel Rats/@comment-35404709-20181126181056\nTalk:Fuel Rats/@comment-74.58.144.45-20181026005726\nTalk:Fuel Rats/@comment-74.58.144.45-20181026005726/@comment-44910113-20200913165236\nTalk:Fuel Rats/@comment-86.164.91.165-20171229155536\nTalk:Fuel Rats/@comment-90.200.46.38-20181105105712\nTalk:Fuel Rats/@comment-93.138.102.25-20180408134653\nTalk:Fuel Scoop/@comment-104.159.219.44-20150121034814\nTalk:Fuel Scoop/@comment-104.159.219.44-20150121034814/@comment-147.194.22.179-20150123034024\nTalk:Fuel Scoop/@comment-104.159.219.44-20150121034814/@comment-210.55.18.198-20150913192943\nTalk:Fuel Scoop/@comment-104.159.219.44-20150121034814/@comment-27034370-20160108031927\nTalk:Fuel Scoop/@comment-108.83.4.195-20190306030039\nTalk:Fuel Scoop/@comment-109.246.120.209-20150123210319\nTalk:Fuel Scoop/@comment-109.246.120.209-20150123210319/@comment-104.159.219.44-20150124012355\nTalk:Fuel Scoop/@comment-109.246.120.209-20150123210319/@comment-108.19.86.227-20150201015916\nTalk:Fuel Scoop/@comment-109.246.120.209-20150123210319/@comment-25985607-20150505092019\nTalk:Fuel Scoop/@comment-109.246.120.209-20150123210319/@comment-75.73.171.22-20150227074829\nTalk:Fuel Scoop/@comment-109.246.120.209-20150123210319/@comment-92.233.112.147-20150630130225\nTalk:Fuel Scoop/@comment-139.194.109.27-20170111120139\nTalk:Fuel Scoop/@comment-139.194.109.27-20170111120139/@comment-188.238.176.75-20170705125140\nTalk:Fuel Scoop/@comment-139.194.109.27-20170111120139/@comment-192.136.161.52-20170111121306\nTalk:Fuel Scoop/@comment-173.57.1.190-20141227015946\nTalk:Fuel Scoop/@comment-184.99.166.214-20150618225713\nTalk:Fuel Scoop/@comment-184.99.166.214-20150618225713/@comment-70.74.188.18-20150619182540\nTalk:Fuel Scoop/@comment-193.17.248.26-20180204233446\nTalk:Fuel Scoop/@comment-193.17.248.26-20180204233446/@comment-90.200.46.38-20181104215022\nTalk:Fuel Scoop/@comment-2001:56A:7421:B300:DD66:D7D2:6CEE:85AC-20181125173837\nTalk:Fuel Scoop/@comment-2001:56A:7421:B300:DD66:D7D2:6CEE:85AC-20181125173837/@comment-192.136.170.98-20181125193752\nTalk:Fuel Scoop/@comment-2003:C9:9F47:C690:1CA3:B06F:A02A:22E9-20180325133837\nTalk:Fuel Scoop/@comment-207.255.249.142-20160822180458\nTalk:Fuel Scoop/@comment-207.255.249.142-20160822180458/@comment-213.81.131.34-20170522005812\nTalk:Fuel Scoop/@comment-213.235.62.194-20171120104946\nTalk:Fuel Scoop/@comment-213.235.62.194-20171120104946/@comment-5151386-20171120214641\nTalk:Fuel Scoop/@comment-213.235.62.194-20171120104946/@comment-90.200.46.38-20181104215301\nTalk:Fuel Scoop/@comment-218.155.15.161-20191201215600\nTalk:Fuel Scoop/@comment-220.233.117.211-20150517133359\nTalk:Fuel Scoop/@comment-220.233.117.211-20150517133359/@comment-220.233.117.211-20150517134511\nTalk:Fuel Scoop/@comment-220.233.117.211-20150517133359/@comment-27567218-20160112231554\nTalk:Fuel Scoop/@comment-24.18.105.176-20150328021146\nTalk:Fuel Scoop/@comment-24.228.248.215-20170115172155\nTalk:Fuel Scoop/@comment-24.228.248.215-20170115172155/@comment-24.228.248.215-20170115172235\nTalk:Fuel Scoop/@comment-24.228.248.215-20170115172155/@comment-24.228.248.215-20170116155248\nTalk:Fuel Scoop/@comment-25085299-20151020173654\nTalk:Fuel Scoop/@comment-25085299-20151020173654/@comment-26391992-20151119165354\nTalk:Fuel Scoop/@comment-25985607-20150108131400\nTalk:Fuel Scoop/@comment-25985607-20150108131400/@comment-72.172.221.234-20150109215952\nTalk:Fuel Scoop/@comment-25985607-20150109041728\nTalk:Fuel Scoop/@comment-27380851-20170218045111\nTalk:Fuel Scoop/@comment-27380851-20170218045111/@comment-37171230-20190129144754\nTalk:Fuel Scoop/@comment-27380851-20170218045111/@comment-84.105.44.248-20171007210039\nTalk:Fuel Scoop/@comment-27629766-20160117205421\nTalk:Fuel Scoop/@comment-27629766-20160117205421/@comment-190.148.39.244-20160819200135\nTalk:Fuel Scoop/@comment-33252114-20180713214651\nTalk:Fuel Scoop/@comment-50.29.140.85-20150701094056\nTalk:Fuel Scoop/@comment-5151386-20161215145225\nTalk:Fuel Scoop/@comment-5151386-20161215145225/@comment-192.136.161.52-20161215210436\nTalk:Fuel Scoop/@comment-67.149.225.251-20170201041903\nTalk:Fuel Scoop/@comment-67.149.225.251-20170201041903/@comment-2001:56A:7421:B300:7453:C148:B4B3:B365-20181123171713\nTalk:Fuel Scoop/@comment-69.144.110.181-20150618034107\nTalk:Fuel Scoop/@comment-73.41.243.141-20150927043948\nTalk:Fuel Scoop/@comment-73.41.243.141-20150927043948/@comment-24.10.25.42-20160207163708\nTalk:Fuel Scoop/@comment-73.41.243.141-20150927043948/@comment-746248-20151129110538\nTalk:Fuel Scoop/@comment-75.80.156.124-20141221000900\nTalk:Fuel Scoop/@comment-75.80.156.124-20141221000900/@comment-173.27.146.27-20141221172744\nTalk:Fuel Scoop/@comment-75.80.156.124-20141221000900/@comment-4968814-20141221180846\nTalk:Fuel Scoop/@comment-75.80.156.124-20141221000900/@comment-68.111.89.35-20141221004904\nTalk:Fuel Scoop/@comment-75.80.156.124-20141221000900/@comment-94.22.120.242-20171009201452\nTalk:Fuel Scoop/@comment-75.80.156.124-20141221000900/@comment-97.100.173.121-20141221050916\nTalk:Fuel Scoop/@comment-77.101.224.164-20141222135025\nTalk:Fuel Scoop/@comment-81.101.97.103-20150109020943\nTalk:Fuel Scoop/@comment-81.101.97.103-20150109020943/@comment-92.233.112.147-20150630130350\nTalk:Fuel Scoop/@comment-81.101.97.103-20150109020943/@comment-98.116.207.126-20150119200928\nTalk:Fuel Scoop/@comment-81.101.97.103-20150109020943/@comment-98.89.131.219-20150119021904\nTalk:Fuel Scoop/@comment-86.4.163.185-20150101215036\nTalk:Fuel Scoop/@comment-86.4.163.185-20150101215036/@comment-85.218.24.76-20150308111610\nTalk:Fuel Scoop/@comment-87.114.189.20-20141223084438\nTalk:Fuel Scoop/@comment-87.55.109.238-20141229192426\nTalk:Fuel Scoop/@comment-87.55.109.238-20141229192426/@comment-104.159.219.44-20150121035021\nTalk:Fuel Scoop/@comment-87.55.109.238-20141229192426/@comment-4968814-20141229192907\nTalk:Fuel Scoop/@comment-87.55.109.238-20141229192426/@comment-91.181.50.244-20150505083123\nTalk:Fuel Scoop/@comment-89.23.234.93-20190310032603\nTalk:Fuel Scoop/@comment-90.200.46.38-20181104215144\nTalk:Fuel Scoop/@comment-90.230.3.38-20150101145859\nTalk:Fuel Scoop/@comment-92.233.112.147-20150630130101\nTalk:Fuel Scoop/@comment-98.30.105.178-20141228184050\nTalk:Fuel Scoop/@comment-98.67.244.100-20141228154626\nTalk:Fuel Scoop/@comment-98.67.244.100-20141228154626/@comment-104.159.219.44-20150121035604\nTalk:Fuel Scoop/@comment-98.67.244.100-20141228154626/@comment-4968814-20141229193047\nTalk:Fuel Tank/@comment-12.5.54.135-20160311160124\nTalk:Fuel Tank/@comment-12.5.54.135-20160311160124/@comment-96.8.252.208-20191002202748\nTalk:Fuel Tank/@comment-2.108.218.116-20151101022629\nTalk:Fuel Tank/@comment-2.108.218.116-20151101022629/@comment-173.226.237.130-20151111212928\nTalk:Fuel Tank/@comment-2.125.235.54-20150224094025\nTalk:Fuel Tank/@comment-26391992-20150614093740\nTalk:Fuel Tank/@comment-73.41.209.77-20150212223054\nTalk:Fuel Tank/@comment-73.41.209.77-20150212223054/@comment-122.150.113.55-20150227111108\nTalk:Fuel Tank/@comment-73.41.209.77-20150212223054/@comment-188.238.176.75-20170705124532\nTalk:Fuel Tank/@comment-73.41.209.77-20150212223054/@comment-70.73.57.13-20160924070443\nTalk:Fuel Tank/@comment-73.41.209.77-20150212223054/@comment-92.108.91.178-20150326222959\nTalk:Fuel Tank/@comment-73.41.243.141-20150927043852\nTalk:Fuel Tank/@comment-94.16.146.105-20150606144844\nTalk:Fuel Tank/@comment-94.16.146.105-20150606144844/@comment-26009169-20150606151936\nTalk:Fuel Tank/@comment-94.16.146.105-20150606144844/@comment-26470896-20150606145807\nTalk:Fuel Tank/@comment-94.16.146.105-20150606144844/@comment-26470896-20150717132047\nTalk:Fuel Tank/@comment-94.16.146.105-20150606144844/@comment-50.204.82.30-20150711194020\nTalk:Fujin Tea/@comment-1.136.104.248-20170908235624\nTalk:Fujin Tea/@comment-139.218.2.103-20190601073709\nTalk:Fujin Tea/@comment-139.218.2.103-20190601073709/@comment-139.218.72.15-20190601140847\nTalk:Fujin Tea/@comment-162.224.151.94-20180830142814\nTalk:Fujin Tea/@comment-162.224.151.94-20180830142814/@comment-167.224.196.254-20200125130729\nTalk:Fujin Tea/@comment-188.192.244.233-20180331125240\nTalk:Fujin Tea/@comment-188.192.244.233-20180331125240/@comment-188.192.244.233-20180331160036\nTalk:Fujin Tea/@comment-188.192.244.233-20180331125240/@comment-32733414-20180816131419\nTalk:Fujin Tea/@comment-188.192.244.233-20180331125240/@comment-77.103.203.34-20180519022558\nTalk:Fujin Tea/@comment-188.192.244.233-20180331125240/@comment-90.241.24.102-20180821100845\nTalk:Fujin Tea/@comment-188.192.244.233-20180331125240/@comment-90.241.28.43-20180906005547\nTalk:Fujin Tea/@comment-24.107.198.174-20181104190238\nTalk:Fujin Tea/@comment-24.107.198.174-20181104190238/@comment-104.249.225.228-20181106235801\nTalk:Fujin Tea/@comment-24.107.198.174-20181104190238/@comment-173.181.3.87-20181209224659\nTalk:Fujin Tea/@comment-24.107.198.174-20181104190238/@comment-179.35.222.57-20190122030536\nTalk:Fujin Tea/@comment-2605:A000:DFC0:C:78BD:1E4D:90AE:11EC-20180612145953\nTalk:Fujin Tea/@comment-2A02:8109:B5C0:F0:1C9B:5D1E:ED0D:480B-20180306193149\nTalk:Fujin Tea/@comment-2A02:8109:B5C0:F0:1C9B:5D1E:ED0D:480B-20180306193149/@comment-77.103.203.34-20180519022318\nTalk:Fujin Tea/@comment-35650861-20181221174958\nTalk:Fujin Tea/@comment-35650861-20181221174958/@comment-27283317-20190106181117\nTalk:Fujin Tea/@comment-35650861-20181221174958/@comment-71.91.201.158-20190101051146\nTalk:Fujin Tea/@comment-37.130.226.82-20170305090652\nTalk:Fujin Tea/@comment-38815805-20200510001643\nTalk:Fujin Tea/@comment-45749054-20200510180310\nTalk:Fujin Tea/@comment-50.126.116.115-20180313102410\nTalk:Fujin Tea/@comment-50.126.116.115-20180313102410/@comment-77.103.203.34-20180519022858\nTalk:Fujin Tea/@comment-68.103.153.239-20180207192341\nTalk:Fujin Tea/@comment-68.103.153.239-20180207192341/@comment-77.103.203.34-20180519023128\nTalk:Fujin Tea/@comment-68.103.153.239-20180207194442\nTalk:Fujin Tea/@comment-69.158.143.145-20180620185022\nTalk:Fujin Tea/@comment-77.50.26.143-20160930211254\nTalk:Fujin Tea/@comment-77.50.26.143-20160930211254/@comment-108.234.143.191-20180903074252\nTalk:Fujin Tea/@comment-77.50.26.143-20160930211254/@comment-182.239.138.96-20171014101543\nTalk:Fujin Tea/@comment-77.50.26.143-20160930211254/@comment-2155082-20170115235404\nTalk:Fujin Tea/@comment-77.50.26.143-20160930211254/@comment-2155082-20170212011606\nTalk:Fujin Tea/@comment-77.50.26.143-20160930211254/@comment-60293-20171110010638\nTalk:Fujin Tea/@comment-77.50.26.143-20160930211254/@comment-77.103.203.34-20180519024820\nTalk:Fujin Tea/@comment-77.50.26.143-20160930211254/@comment-77.103.203.34-20180519024852\nTalk:Fujin Tea/@comment-77.50.26.143-20160930211254/@comment-77.103.203.34-20180519024903\nTalk:Fujin Tea/@comment-77.50.26.143-20160930211254/@comment-77.103.203.34-20180519024929\nTalk:Fujin Tea/@comment-77.50.26.143-20160930211254/@comment-77.103.203.34-20180519025010\nTalk:Fujin Tea/@comment-77.50.26.143-20160930211254/@comment-77.22.179.35-20180620201353\nTalk:Fujin Tea/@comment-77.50.26.143-20160930211254/@comment-92.237.172.232-20170211221340\nTalk:Fujin Tea/@comment-77.50.26.143-20160930211254/@comment-99.244.50.94-20170115161950\nTalk:Fujin Tea/@comment-88.153.33.59-20190710223705\nTalk:Fujin Tea/@comment-91.115.180.170-20171114010450\nTalk:Fujin Tea/@comment-91.115.180.170-20171114010450/@comment-2A02:C7D:101C:1000:8A7:5359:8FB7:9F75-20171218153018\nTalk:Fujin Tea/@comment-94.254.8.87-20160822090900\nTalk:Fujin Tea/@comment-94.254.8.87-20160822090900/@comment-104.139.55.207-20160830184147\nTalk:Full Spectrum System Scanner/@comment-111.220.68.22-20190117215404\nTalk:Full Spectrum System Scanner/@comment-111.220.68.22-20190117215404/@comment-111.220.68.22-20190204113144\nTalk:Full Spectrum System Scanner/@comment-111.220.68.22-20190117215404/@comment-130.206.158.173-20190513104257\nTalk:Full Spectrum System Scanner/@comment-111.220.68.22-20190117215404/@comment-2601:5C4:4301:3670:E12D:D542:1C4C:F0F4-20190118040307\nTalk:Full Spectrum System Scanner/@comment-111.220.68.22-20190117215404/@comment-39762167-20190616050257\nTalk:Full Spectrum System Scanner/@comment-111.220.68.22-20190117215404/@comment-40.133.125.106-20190128141241\nTalk:Full Spectrum System Scanner/@comment-2600:1007:B117:7D57:2592:2A10:2B0:EF90-20200110211925\nTalk:Full Spectrum System Scanner/@comment-2600:1007:B117:7D57:2592:2A10:2B0:EF90-20200110211925/@comment-1201546-20200612014843\nTalk:Full Spectrum System Scanner/@comment-2600:1702:4130:D970:48F8:5BF0:1430:4E25-20191130100550\nTalk:Full Spectrum System Scanner/@comment-2601:401:100:41B4:24E2:9F7:1807:29CD-20191106003822\nTalk:Full Spectrum System Scanner/@comment-2A00:23C5:9809:B601:21AF:52AC:4B73:791D-20191007193842\nTalk:Full Spectrum System Scanner/@comment-37820584-20190512083122\nTalk:Full Spectrum System Scanner/@comment-39762167-20190616034448\nTalk:Full Spectrum System Scanner/@comment-82.77.103.5-20200120002346\nTalk:Full Spectrum System Scanner/@comment-88.81.34.78-20190103104022\nTalk:Full Spectrum System Scanner/@comment-88.81.34.78-20190103104022/@comment-2001:56A:72A4:D900:A09D:6824:B330:7A20-20190113202036\nTalk:Full Spectrum System Scanner/@comment-98.232.151.219-20190101181437\nTalk:Full Spectrum System Scanner/@comment-98.232.151.219-20190101181437/@comment-2001:56A:72A4:D900:A09D:6824:B330:7A20-20190113202150\nTalk:Funeral Ship/@comment-27311171-20160120070355\nTalk:Funeral Ship/@comment-69.125.156.220-20150418235726\nTalk:Funeral Ship/@comment-69.125.156.220-20150418235726/@comment-187.14.200.77-20150422004725\nTalk:Funeral Ship/@comment-69.125.156.220-20150418235726/@comment-60.229.147.15-20160117090848\nTalk:Fungal Life/@comment-2182702-20191001210918\nTalk:Fungal Life/@comment-39293979-20190606020418\nTalk:Fungal Life/@comment-46568492-20200808040439\nTalk:Gagarin Gate/@comment-146.88.224.64-20190913104814\nTalk:GalNet/3301/January/@comment-1028741-20151221010908\nTalk:GalNet/3301/January/@comment-1028741-20151221010908/@comment-27433902-20151228020612\nTalk:GalNet/@comment-2601:243:2080:3930:2054:67DE:FEA3:ADB1-20191001220156\nTalk:GalNet/@comment-2601:243:2080:3930:2054:67DE:FEA3:ADB1-20191001220156/@comment-37820584-20191001235820\nTalk:GalNet/@comment-83.160.98.174-20191001063553\nTalk:Galactic Centre/@comment-37949556-20200419235219\nTalk:Galactic Insurance Company/@comment-202.166.164.130-20190702142155\nTalk:Galactic Insurance Company/@comment-202.166.164.130-20190702142155/@comment-206.19.54.254-20191004233427\nTalk:Galactic Insurance Company/@comment-2605:6000:101B:878B:A03A:5EE1:7CCA:C017-20181222071612\nTalk:Galactic Insurance Company/@comment-2605:6000:101B:878B:A03A:5EE1:7CCA:C017-20181222071612/@comment-123.2.238.54-20190307150959\nTalk:Galaxy/@comment-94.12.31.80-20170723210914\nTalk:Galaxy/@comment-94.12.31.80-20170723210914/@comment-30928085-20170723212149\nTalk:Galaxy Map/@comment-116.12.164.66-20151002090909\nTalk:Galaxy Map/@comment-116.12.164.66-20151002090909/@comment-70.198.76.215-20151002172500\nTalk:Galaxy Map/@comment-124.189.143.181-20150927044413\nTalk:Galaxy Map/@comment-216.81.94.70-20150808181103\nTalk:Galaxy Map/@comment-46272760-20200922175739\nTalk:Galaxy Map/@comment-82.131.17.223-20181008105646\nTalk:Gallite/@comment-173.20.28.32-20150205100523\nTalk:Gallite/@comment-2001:569:71B5:1800:C429:DD3A:C457:7B94-20180104173733\nTalk:Gallite/@comment-2001:569:71B5:1800:C429:DD3A:C457:7B94-20180104173733/@comment-173.73.27.230-20180801190055\nTalk:Gallite/@comment-75.70.18.113-20150201201802\nTalk:Galvanising Alloys/@comment-24.255.17.45-20180516010523\nTalk:Gateway/@comment-3428652-20160226055756\nTalk:Gateway/@comment-86.10.64.111-20151005183612\nTalk:Geawen Dance Dust/@comment-2A02:C7D:D675:FD00:3C21:D78D:26D2:3FA5-20180428121141\nTalk:Geawen Dance Dust/@comment-83.248.104.120-20150602123948\nTalk:Geawen Dance Dust/@comment-83.248.104.120-20150602123948/@comment-173.25.77.29-20150906215920\nTalk:Generation Ship/@comment-1.136.104.182-20180819011214\nTalk:Generation Ship/@comment-108.94.9.222-20180705070536\nTalk:Generation Ship/@comment-130.193.186.97-20180312155630\nTalk:Generation Ship/@comment-146.199.244.69-20170910194722\nTalk:Generation Ship/@comment-179.176.100.196-20170505195157\nTalk:Generation Ship/@comment-179.176.100.196-20170505195157/@comment-96.250.78.181-20170810102330\nTalk:Generation Ship/@comment-184.35.0.215-20170504205756\nTalk:Generation Ship/@comment-187.134.253.101-20180708025916\nTalk:Generation Ship/@comment-216.164.232.183-20170513065005\nTalk:Generation Ship/@comment-216.164.232.183-20170513065005/@comment-178.191.67.160-20170528212658\nTalk:Generation Ship/@comment-27160012-20170709091943\nTalk:Generation Ship/@comment-27160012-20170709091943/@comment-33075480-20180531042838\nTalk:Generation Ship/@comment-35929517-20180619192830\nTalk:Generation Ship/@comment-44180665-20200422102601\nTalk:Generation Ship/@comment-44904441-20200615231629\nTalk:Generation Ship/@comment-44904441-20200615231629/@comment-26810597-20200616015856\nTalk:Generation Ship/@comment-44904441-20200615231629/@comment-44904441-20200616155757\nTalk:Generation Ship/@comment-4616657-20170917101025\nTalk:Generation Ship/@comment-4616657-20170917101025/@comment-71.91.154.209-20190925040922\nTalk:Generation Ship/@comment-4616657-20180615171339\nTalk:Generation Ship/@comment-5959508-20161228144616\nTalk:Generation Ship/@comment-5959508-20161228144616/@comment-30496832-20161228173624\nTalk:Generation Ship/@comment-5959508-20161228144616/@comment-96.227.81.214-20170212054855\nTalk:Generation Ship/@comment-72.241.147.127-20180314141414\nTalk:Generation Ship/@comment-72.241.147.127-20180314141414/@comment-72.241.147.127-20180315012151\nTalk:Generation Ship/@comment-81.97.42.7-20170611072614\nTalk:Generation Ship/@comment-81.97.42.7-20170611072614/@comment-34703548-20180215093727\nTalk:Generation Ship/@comment-83.25.216.14-20181113230635\nTalk:Generation Ship/@comment-83.25.216.14-20181113230734\nTalk:Generation Ship/@comment-903860-20190708021426\nTalk:Generation Ship/@comment-903860-20190708021426/@comment-43623494-20190825233712\nTalk:Generation Ship/@comment-95.25.91.68-20170819225816\nTalk:Generation Ship/@comment-95.25.91.68-20170819225816/@comment-62.159.185.194-20170905091136\nTalk:Generation Ship/@comment-95.25.91.68-20170819225816/@comment-68.12.170.86-20170822074705\nTalk:Genetic engineering/@comment-71.221.139.246-20190303195935\nTalk:Gerasian Gueuze Beer/@comment-68.149.154.203-20150826222816\nTalk:Gerasian Gueuze Beer/@comment-771847-20160808220244\nTalk:Gerasian Gueuze Beer/@comment-86.20.14.215-20150302001756\nTalk:Gerasian Gueuze Beer/@comment-86.20.14.215-20150302001756/@comment-73.76.142.173-20160320004208\nTalk:Gerasian Gueuze Beer/@comment-86.20.14.215-20150302001756/@comment-78.148.15.128-20150628221904\nTalk:Germanium/@comment-24.118.224.118-20161126014751\nTalk:Germanium/@comment-72.239.106.15-20160615141713\nTalk:Germanium/@comment-72.239.106.15-20160615141713/@comment-62.165.158.196-20190123153117\nTalk:Germanium/@comment-72.239.106.15-20160615141713/@comment-96.255.18.100-20160706172556\nTalk:Geysers/@comment-178.41.248.139-20171107000723\nTalk:Geysers/@comment-83.134.191.166-20180804151744\nTalk:Giant Irukama Snails/@comment-77.50.26.143-20160814204537\nTalk:Giant Verrix/@comment-1028741-20151116000038\nTalk:Giant Verrix/@comment-1028741-20151116000038/@comment-90.200.46.38-20181122144327\nTalk:Giant Verrix/@comment-1028741-20151116000038/@comment-98.31.38.3-20160217201518\nTalk:Giant Verrix/@comment-77.50.26.143-20160814210959\nTalk:Gilya Signature Weapons/@comment-187.67.3.61-20180116180534\nTalk:Gilya Signature Weapons/@comment-187.67.3.61-20180116180534/@comment-27283317-20180116181540\nTalk:Gilya Signature Weapons/@comment-92.234.50.61-20151110204653\nTalk:Gilya Signature Weapons/@comment-92.234.50.61-20151110204653/@comment-1028741-20151125031018\nTalk:Glide/@comment-31178037-20170204133859\nTalk:Glide/@comment-34004391-20180116095702\nTalk:Glide/@comment-69.10.163.63-20160314235536\nTalk:Glide/@comment-77.249.45.245-20200111012834\nTalk:Glide/@comment-79.55.59.230-20170412212943\nTalk:Gold/@comment-216.6.241.157-20141217234310\nTalk:Gold/@comment-216.6.241.157-20141217234310/@comment-43354983-20200423121439\nTalk:Gold/@comment-26113847-20150216002714\nTalk:Gold/@comment-26113847-20150216002714/@comment-43354983-20200423121428\nTalk:Gold/@comment-26113847-20150221000928\nTalk:Goman Yaupon Coffee/@comment-172.78.201.158-20150726042722\nTalk:Goman Yaupon Coffee/@comment-77.50.26.143-20160814204823\nTalk:Goslarite/@comment-114.77.168.203-20160207123626\nTalk:Goslarite/@comment-27553562-20160105210650\nTalk:Goslarite/@comment-68.39.155.229-20160412022957\nTalk:Goslarite/@comment-76.180.146.166-20160105152906\nTalk:Goslarite/@comment-86.5.70.43-20151218194508\nTalk:Gourd Mollusc/@comment-46022248-20200607121110\nTalk:Gourd Mollusc/@comment-62.194.145.192-20190131193435\nTalk:Gourd Mollusc/@comment-62.194.145.192-20190131193435/@comment-105.226.93.87-20200209150716\nTalk:Gourd Mollusc/@comment-62.194.145.192-20190131193435/@comment-2607:FB90:3A5C:B319:21D9:4FB:870C:3ABC-20190421200331\nTalk:Government/@comment-27616182-20200903132116\nTalk:Grandidierite/@comment-2003:C1:8F42:6F00:A528:499D:C2AA:D987-20200207191837\nTalk:Grandidierite/@comment-2003:C1:8F42:6F00:A528:499D:C2AA:D987-20200207191837/@comment-86.175.171.50-20200208204617\nTalk:Gravity/@comment-2602:306:CE29:B0D0:8529:2FDC:5C82:3BB1-20190906104709\nTalk:Gravity/@comment-45677112-20200526135854\nTalk:Gravity/@comment-45677112-20200526135854/@comment-34004391-20200804142854\nTalk:Gravity/@comment-546749-20190224212342\nTalk:Gravity/@comment-546749-20190224212342/@comment-2602:306:CE29:B0D0:8529:2FDC:5C82:3BB1-20190906104149\nTalk:Gravity/@comment-6670822-20200802201419\nTalk:Gravity/@comment-6670822-20200802201419/@comment-34004391-20200804142948\nTalk:Gravity/@comment-67.142.235.252-20190212224054\nTalk:Gravity/@comment-67.142.235.252-20190212224054/@comment-192.136.170.98-20190218191927\nTalk:Gravity/@comment-67.142.235.252-20190212224054/@comment-83.245.254.113-20190218100942\nTalk:Gravity/@comment-70.49.162.9-20170704125449\nTalk:Gravity/@comment-70.49.162.9-20170704125449/@comment-34004391-20171220112019\nTalk:Gravity/@comment-70.49.162.9-20170704125449/@comment-86.176.235.194-20170804180123\nTalk:Gravity/@comment-70.49.162.9-20170704125449/@comment-86.52.94.247-20180819194052\nTalk:Gravity/@comment-85.255.236.198-20180102212759\nTalk:Great Annihilator/@comment-5.71.0.142-20160726213455\nTalk:Great Annihilator/@comment-50.135.5.168-20151224010705\nTalk:Great Annihilator/@comment-50.135.5.168-20151224010705/@comment-25411947-20151224201028\nTalk:Griefers/@comment-109.146.20.25-20190618172213\nTalk:Griefers/@comment-119.224.28.32-20150116212200\nTalk:Griefers/@comment-119.224.28.32-20150116212200/@comment-119.224.28.32-20150116212242\nTalk:Griefers/@comment-119.224.28.32-20150116212200/@comment-168.99.198.77-20180212022836\nTalk:Griefers/@comment-119.224.28.32-20150116212200/@comment-173.244.134.123-20200211001756\nTalk:Griefers/@comment-119.224.28.32-20150116212200/@comment-198.166.16.161-20150121223311\nTalk:Griefers/@comment-119.224.28.32-20150116212200/@comment-47.64.227.197-20150116221800\nTalk:Griefers/@comment-119.224.28.32-20150116212200/@comment-66.249.93.154-20150123161248\nTalk:Griefers/@comment-119.224.28.32-20150116212200/@comment-72.200.109.110-20150120024605\nTalk:Griefers/@comment-119.224.28.32-20150116212200/@comment-86.10.38.10-20180106204508\nTalk:Griefers/@comment-142.169.78.130-20190618133123\nTalk:Griefers/@comment-176.186.6.144-20190521202848\nTalk:Griefers/@comment-176.186.6.144-20190521202848/@comment-129.130.19.35-20190807154640\nTalk:Griefers/@comment-176.186.6.144-20190521202848/@comment-2001:16B8:A0E5:FF00:9DB1:D8EC:7272:5774-20190618222805\nTalk:Griefers/@comment-195.70.101.49-20150921130033\nTalk:Griefers/@comment-198.178.56.27-20150626192033\nTalk:Griefers/@comment-198.178.56.27-20150626192033/@comment-33202525-20190210185800\nTalk:Griefers/@comment-2003:D4:C3F1:2E00:6161:1A93:221B:B37E-20190119173552\nTalk:Griefers/@comment-2003:D4:C3F1:2E00:6161:1A93:221B:B37E-20190119173552/@comment-129.130.19.35-20190807154805\nTalk:Griefers/@comment-2003:D4:C3F1:2E00:6161:1A93:221B:B37E-20190119173552/@comment-2601:189:C37F:9A42:3C8F:514D:A947:A4D3-20190803083850\nTalk:Griefers/@comment-2003:D4:C3F1:2E00:6161:1A93:221B:B37E-20190119173552/@comment-39961749-20190628090638\nTalk:Griefers/@comment-2003:D4:C3F1:2E00:6161:1A93:221B:B37E-20190119173552/@comment-47.183.217.12-20190209214328\nTalk:Griefers/@comment-2003:D4:C3F1:2E00:6161:1A93:221B:B37E-20190119173552/@comment-84.190.131.105-20190709071309\nTalk:Griefers/@comment-2003:DB:13CA:7A00:7910:991E:E75B:42F9-20170901165124\nTalk:Griefers/@comment-2003:DB:13CA:7A00:7910:991E:E75B:42F9-20170901165124/@comment-2601:40D:480:24F0:4CD3:B767:63F4:96F3-20191130000916\nTalk:Griefers/@comment-203.45.151.71-20150203140625\nTalk:Griefers/@comment-203.45.151.71-20150203140625/@comment-173.244.134.123-20200211001252\nTalk:Griefers/@comment-213.127.233.19-20191014014144\nTalk:Griefers/@comment-213.205.194.255-20190618133220\nTalk:Griefers/@comment-220.240.129.158-20191106011256\nTalk:Griefers/@comment-24.45.93.5-20150226004746\nTalk:Griefers/@comment-24.45.93.5-20150226004746/@comment-173.244.134.123-20200211001133\nTalk:Griefers/@comment-24.45.93.5-20150226004746/@comment-79.139.243.2-20150726031610\nTalk:Griefers/@comment-24.45.93.5-20150226004746/@comment-86.41.207.96-20170531205546\nTalk:Griefers/@comment-24.45.93.5-20150226004746/@comment-90.216.228.6-20170329081757\nTalk:Griefers/@comment-2600:387:A:6:0:0:0:7A-20180626183457\nTalk:Griefers/@comment-2600:387:A:6:0:0:0:7A-20180626183457/@comment-129.130.19.35-20190807154906\nTalk:Griefers/@comment-2600:387:A:6:0:0:0:7A-20180626183457/@comment-160.3.38.154-20190427094109\nTalk:Griefers/@comment-2600:387:A:6:0:0:0:7A-20180626183457/@comment-92.233.101.128-20180811220423\nTalk:Griefers/@comment-2601:645:503:CD8:4BB:7611:6ADE:1F8D-20190113101820\nTalk:Griefers/@comment-2601:645:503:CD8:4BB:7611:6ADE:1F8D-20190113101820/@comment-109.146.20.25-20190618172249\nTalk:Griefers/@comment-2602:302:D1E3:9C0:DDA4:BDDD:66FE:2998-20171006213736\nTalk:Griefers/@comment-34004391-20180126091527\nTalk:Griefers/@comment-34004391-20180126091527/@comment-39961749-20190628093323\nTalk:Griefers/@comment-34009139-20171218185245\nTalk:Griefers/@comment-34009139-20171218185245/@comment-129.130.19.35-20190807155140\nTalk:Griefers/@comment-39672320-20190602131851\nTalk:Griefers/@comment-39672320-20190602131851/@comment-192.136.172.54-20190602231131\nTalk:Griefers/@comment-39961749-20190628090445\nTalk:Griefers/@comment-39961749-20190628090445/@comment-34004391-20190628102640\nTalk:Griefers/@comment-39961749-20190628090445/@comment-39961749-20190628130530\nTalk:Griefers/@comment-39961749-20190628090445/@comment-84.190.131.105-20190709070815\nTalk:Griefers/@comment-62.83.10.194-20150131130052\nTalk:Griefers/@comment-62.83.10.194-20150131130052/@comment-213.185.226.15-20150425112404\nTalk:Griefers/@comment-73.126.122.142-20190718050149\nTalk:Griefers/@comment-74.90.92.146-20150405234723\nTalk:Griefers/@comment-74.90.92.146-20150405234723/@comment-24.246.5.87-20160125210148\nTalk:Griefers/@comment-77.102.200.67-20171204122842\nTalk:Griefers/@comment-77.102.200.67-20171204122842/@comment-129.130.19.35-20190807155158\nTalk:Griefers/@comment-77.102.200.67-20171204122842/@comment-192.136.172.44-20190818140420\nTalk:Griefers/@comment-77.102.200.67-20171204122842/@comment-2601:189:C37F:9A42:28C2:CB56:4867:37BD-20190815031455\nTalk:Griefers/@comment-80.229.13.26-20150921024223\nTalk:Griefers/@comment-80.229.13.26-20150921024223/@comment-80.147.137.81-20160816150407\nTalk:Griefers/@comment-82.35.148.35-20170119180529\nTalk:Griefers/@comment-82.39.104.24-20151031154106\nTalk:Griefers/@comment-82.39.104.24-20151031154106/@comment-173.244.134.123-20200211000640\nTalk:Griefers/@comment-87.81.175.224-20150527225100\nTalk:Griefers/@comment-87.81.175.224-20150527225100/@comment-213.14.152.246-20161130151329\nTalk:Griefers/@comment-87.81.175.224-20150527225100/@comment-46.92.31.248-20170118194212\nTalk:Griefers/@comment-87.81.175.224-20150527225100/@comment-86.10.38.10-20180106194225\nTalk:Griefers/@comment-89.69.253.138-20180222222914\nTalk:Griefers/@comment-91.148.101.184-20180325185342\nTalk:Griefers/@comment-94.223.174.230-20170311193614\nTalk:Griefers/@comment-94.223.174.230-20170311193614/@comment-50.36.214.87-20170606053736\nTalk:Griefers/@comment-96.60.81.157-20180218001447\nTalk:Griefers/@comment-96.60.81.157-20180218001447/@comment-34004391-20180218105358\nTalk:Gryph Jones/@comment-1028741-20151221055853\nTalk:Gu-97/@comment-100.36.127.151-20160217005236\nTalk:Gu-97/@comment-100.36.127.151-20160217005236/@comment-26391992-20160217204832\nTalk:Gu-97/@comment-100.36.127.151-20160217005236/@comment-27032150-20160226080712\nTalk:Gu-97/@comment-100.36.127.151-20160217005236/@comment-71.14.212.34-20160308191847\nTalk:Gu-97/@comment-100.36.127.151-20160217005236/@comment-77.102.250.232-20170226073120\nTalk:Gu-97/@comment-108.16.36.43-20170317033438\nTalk:Gu-97/@comment-108.16.36.43-20170328004343\nTalk:Gu-97/@comment-108.16.36.43-20170328004343/@comment-108.16.36.43-20170328004446\nTalk:Gu-97/@comment-108.16.36.43-20170328004343/@comment-222.155.17.79-20191127183230\nTalk:Gu-97/@comment-108.2.148.152-20170506233114\nTalk:Gu-97/@comment-118.93.125.86-20150731194014\nTalk:Gu-97/@comment-118.93.125.86-20150731194014/@comment-207.179.224.29-20151005152817\nTalk:Gu-97/@comment-12.5.54.135-20151015144433\nTalk:Gu-97/@comment-12.5.54.135-20151120163749\nTalk:Gu-97/@comment-12.5.54.135-20151120163749/@comment-12.5.54.135-20151203152708\nTalk:Gu-97/@comment-12.5.54.135-20151120163749/@comment-173.198.6.106-20151130173313\nTalk:Gu-97/@comment-12.5.54.135-20151120163749/@comment-86.150.114.98-20151231142523\nTalk:Gu-97/@comment-121.45.235.85-20161126171825\nTalk:Gu-97/@comment-121.45.235.85-20161126171825/@comment-121.223.162.244-20161206101517\nTalk:Gu-97/@comment-121.45.235.85-20161126171825/@comment-149.3.71.240-20170130093524\nTalk:Gu-97/@comment-121.45.235.85-20161126171825/@comment-192.136.161.52-20161206123840\nTalk:Gu-97/@comment-121.45.235.85-20161126171825/@comment-82.53.50.162-20170130134130\nTalk:Gu-97/@comment-151.225.215.252-20160825140723\nTalk:Gu-97/@comment-151.225.215.252-20160825140723/@comment-122.58.239.177-20161121202354\nTalk:Gu-97/@comment-156.3.54.203-20150610164339\nTalk:Gu-97/@comment-156.3.54.203-20150915160520\nTalk:Gu-97/@comment-174.95.45.251-20150518211608\nTalk:Gu-97/@comment-174.95.45.251-20150518211608/@comment-73.1.55.15-20151011161702\nTalk:Gu-97/@comment-2003:DA:CBFE:E000:F5E7:34BC:5EE7:1AAF-20180722215335\nTalk:Gu-97/@comment-2003:DA:CBFE:E000:F5E7:34BC:5EE7:1AAF-20180722215335/@comment-32843761-20180723201005\nTalk:Gu-97/@comment-204.112.29.249-20151206142455\nTalk:Gu-97/@comment-204.112.29.249-20151206142455/@comment-204.112.29.249-20151206232503\nTalk:Gu-97/@comment-204.112.29.249-20151206142455/@comment-27032150-20160226081345\nTalk:Gu-97/@comment-204.112.29.249-20151206142455/@comment-27311754-20151206210903\nTalk:Gu-97/@comment-209.52.10.218-20160110005439\nTalk:Gu-97/@comment-209.52.10.218-20160110005439/@comment-27311754-20160110005953\nTalk:Gu-97/@comment-209.52.10.218-20160110005439/@comment-5959508-20160110083752\nTalk:Gu-97/@comment-26051758-20150128102743\nTalk:Gu-97/@comment-26051758-20150128102743/@comment-27034370-20151002190952\nTalk:Gu-97/@comment-26894595-20170317203923\nTalk:Gu-97/@comment-26894595-20170317203923/@comment-2155082-20170318032049\nTalk:Gu-97/@comment-26894595-20170317203923/@comment-32843761-20170814235152\nTalk:Gu-97/@comment-26894595-20170317203923/@comment-42.200.197.137-20171106091305\nTalk:Gu-97/@comment-26951902-20150929090617\nTalk:Gu-97/@comment-26951902-20150929090617/@comment-99.135.98.174-20151119214316\nTalk:Gu-97/@comment-27311754-20151207011730\nTalk:Gu-97/@comment-27413501-20151217064658\nTalk:Gu-97/@comment-46.169.58.187-20161027152512\nTalk:Gu-97/@comment-4978876-20150628102022\nTalk:Gu-97/@comment-4978876-20150628102022/@comment-66.44.57.58-20160110171757\nTalk:Gu-97/@comment-66.87.18.159-20150319003654\nTalk:Gu-97/@comment-66.87.18.159-20150319003654/@comment-203.14.52.144-20150324011957\nTalk:Gu-97/@comment-69.159.68.169-20180702171144\nTalk:Gu-97/@comment-71.14.212.34-20160308191925\nTalk:Gu-97/@comment-71.14.212.34-20160308191925/@comment-192.136.174.152-20160308192651\nTalk:Gu-97/@comment-71.14.212.34-20160308191925/@comment-76.26.61.217-20160924205934\nTalk:Gu-97/@comment-71.21.3.159-20150308060917\nTalk:Gu-97/@comment-71.21.3.159-20150308060917/@comment-101.183.242.79-20151208161202\nTalk:Gu-97/@comment-71.21.3.159-20150308060917/@comment-135.0.26.15-20150718221056\nTalk:Gu-97/@comment-71.21.3.159-20150308060917/@comment-24.23.253.235-20150414035050\nTalk:Gu-97/@comment-71.21.3.159-20150308060917/@comment-73.1.55.15-20151011161810\nTalk:Gu-97/@comment-71.21.3.159-20150308060917/@comment-82.5.118.61-20150415164147\nTalk:Gu-97/@comment-71.65.58.72-20161028051509\nTalk:Gu-97/@comment-71.65.58.72-20161028051509/@comment-2155082-20161028053813\nTalk:Gu-97/@comment-75.142.22.102-20170211085748\nTalk:Gu-97/@comment-77.102.200.67-20171112180604\nTalk:Gu-97/@comment-83.135.63.220-20150206181252\nTalk:Gu-97/@comment-86.26.19.129-20150523144255\nTalk:Gu-97/@comment-92.22.154.195-20151114163954\nTalk:Gu-97/@comment-94.4.2.23-20150618102637\nTalk:Gu-97/@comment-94.4.2.23-20150618102637/@comment-12.5.54.135-20151203152729\nTalk:Gu-97/@comment-94.4.2.23-20150618102637/@comment-12.5.54.135-20151207153234\nTalk:Gu-97/@comment-94.4.2.23-20150618102637/@comment-26009169-20150618115301\nTalk:Guardian/@comment-107.77.253.1-20190222212222\nTalk:Guardian/@comment-107.77.253.1-20190222212222/@comment-192.136.170.98-20190223042250\nTalk:Guardian/@comment-107.77.253.1-20190222212222/@comment-98.254.212.149-20190223130048\nTalk:Guardian/@comment-2602:306:CE29:B0D0:5D22:1D64:56F:78C2-20191006021524\nTalk:Guardian/@comment-2607:FB90:4ED5:7B55:575A:A05F:6C0C:9A92-20200101193027\nTalk:Guardian/@comment-26810597-20170111012538\nTalk:Guardian/@comment-30928085-20170111011617\nTalk:Guardian/@comment-30928085-20170111011617/@comment-26810597-20170111011824\nTalk:Guardian/@comment-30928085-20170111011617/@comment-90.219.136.177-20170114005051\nTalk:Guardian/@comment-34004391-20180328133547\nTalk:Guardian/@comment-34004391-20180328133547/@comment-2601:586:C801:6181:9C1D:DB54:75F5:47BD-20190223005246\nTalk:Guardian/@comment-72.141.229.177-20191027092116\nTalk:Guardian/@comment-72.141.229.177-20191027092116/@comment-2607:FB90:4ED5:7B55:575A:A05F:6C0C:9A92-20200101193141\nTalk:Guardian/@comment-73.171.167.137-20190609013429\nTalk:Guardian/@comment-89.15.238.134-20180519043318\nTalk:Guardian Beacon/@comment-194.8.197.45-20180824175538\nTalk:Guardian Beacon/@comment-194.8.197.45-20180824175538/@comment-62.131.129.182-20181106221228\nTalk:Guardian Beacon/@comment-2001:16B8:2E4C:F200:241E:B0C9:5963:3609-20180825153210\nTalk:Guardian Beacon/@comment-2001:16B8:2E4C:F200:241E:B0C9:5963:3609-20180825153210/@comment-34641605-20180825234622\nTalk:Guardian Beacon/@comment-2001:8003:F09C:3C00:FC79:31D7:E0E0:93CC-20180829095025\nTalk:Guardian Beacon/@comment-2001:8003:F09C:3C00:FC79:31D7:E0E0:93CC-20180829095025/@comment-26810597-20180829204410\nTalk:Guardian Beacon/@comment-2001:8003:F09C:3C00:FC79:31D7:E0E0:93CC-20180829095025/@comment-2A02:810A:8900:3CF:600C:56BA:852D:7D6C-20190620123116\nTalk:Guardian Beacon/@comment-2001:8003:F09C:3C00:FC79:31D7:E0E0:93CC-20180829095025/@comment-3027622-20180829224006\nTalk:Guardian Beacon/@comment-24.79.139.122-20180828203430\nTalk:Guardian Beacon/@comment-24.79.139.122-20180828203430/@comment-3027622-20180829002110\nTalk:Guardian Beacon/@comment-3027622-20180828182419\nTalk:Guardian Beacon/@comment-36352121-20190124185334\nTalk:Guardian Beacon/@comment-36352121-20190124185334/@comment-1070376-20200503194554\nTalk:Guardian Beacon/@comment-36352121-20190124185334/@comment-36352121-20190124185426\nTalk:Guardian Beacon/@comment-36352121-20190124185334/@comment-36352121-20190124190621\nTalk:Guardian Beacon/@comment-81.159.38.222-20190801011435\nTalk:Guardian Frame Shift Drive Booster/@comment-107.190.1.224-20190120063633\nTalk:Guardian Frame Shift Drive Booster/@comment-107.190.1.224-20190120063633/@comment-218.186.41.116-20190521170644\nTalk:Guardian Frame Shift Drive Booster/@comment-107.190.1.224-20190120063633/@comment-2605:6000:1713:E2A8:64E3:63D:9E52:3FFA-20190123154234\nTalk:Guardian Frame Shift Drive Booster/@comment-107.190.1.224-20190120063633/@comment-39293979-20190605025927\nTalk:Guardian Frame Shift Drive Booster/@comment-107.190.1.224-20190120063633/@comment-68.102.213.121-20190130222427\nTalk:Guardian Frame Shift Drive Booster/@comment-107.190.1.224-20190120063633/@comment-69.166.69.101-20190514035533\nTalk:Guardian Frame Shift Drive Booster/@comment-124.149.196.159-20190412024535\nTalk:Guardian Frame Shift Drive Booster/@comment-124.149.196.159-20190412024535/@comment-192.136.170.30-20190412031913\nTalk:Guardian Frame Shift Drive Booster/@comment-124.149.196.159-20190412024535/@comment-37820584-20190412033031\nTalk:Guardian Frame Shift Drive Booster/@comment-135.84.101.21-20180718030442\nTalk:Guardian Frame Shift Drive Booster/@comment-135.84.101.21-20180718030442/@comment-86.52.123.136-20180721182419\nTalk:Guardian Frame Shift Drive Booster/@comment-2001:14BB:51:61D9:41C7:816C:2365:FD5A-20190114144528\nTalk:Guardian Frame Shift Drive Booster/@comment-2001:14BB:51:61D9:41C7:816C:2365:FD5A-20190114144528/@comment-192.136.170.98-20190114202203\nTalk:Guardian Frame Shift Drive Booster/@comment-25803634-20180407043439\nTalk:Guardian Frame Shift Drive Booster/@comment-25803634-20180407043439/@comment-160.3.60.45-20180408012117\nTalk:Guardian Frame Shift Drive Booster/@comment-2600:387:2:804:0:0:0:34-20180701001139\nTalk:Guardian Frame Shift Drive Booster/@comment-2600:387:2:804:0:0:0:34-20180701001139/@comment-2.102.229.205-20190124114619\nTalk:Guardian Frame Shift Drive Booster/@comment-2600:387:2:804:0:0:0:34-20180701001139/@comment-2600:387:2:804:0:0:0:8C-20180701013719\nTalk:Guardian Frame Shift Drive Booster/@comment-2600:387:2:804:0:0:0:34-20180701001139/@comment-31.51.143.44-20180703200549\nTalk:Guardian Frame Shift Drive Booster/@comment-2600:387:2:804:0:0:0:34-20180701001139/@comment-87.74.205.103-20180711003519\nTalk:Guardian Frame Shift Drive Booster/@comment-2601:601:C97F:E6C2:A09D:2100:2FF2:480-20180711013948\nTalk:Guardian Frame Shift Drive Booster/@comment-2607:FB90:7D7B:9CC7:65BB:D99A:83EA:6DED-20190108003547\nTalk:Guardian Frame Shift Drive Booster/@comment-2607:FB90:7D7B:9CC7:65BB:D99A:83EA:6DED-20190108003547/@comment-2001:14BB:51:61D9:41C7:816C:2365:FD5A-20190114144615\nTalk:Guardian Frame Shift Drive Booster/@comment-27164624-20181022010530\nTalk:Guardian Frame Shift Drive Booster/@comment-2A00:23C4:9603:F900:D4DE:666F:E688:FB75-20190611114249\nTalk:Guardian Frame Shift Drive Booster/@comment-2A00:23C4:9603:F900:D4DE:666F:E688:FB75-20190611114249/@comment-39293979-20190611140644\nTalk:Guardian Frame Shift Drive Booster/@comment-2A01:CB04:87D:2C00:D033:4E73:DF81:8066-20180629092147\nTalk:Guardian Frame Shift Drive Booster/@comment-35716095-20180628205044\nTalk:Guardian Frame Shift Drive Booster/@comment-35716095-20180628205044/@comment-2A02:A456:EAA2:1:D9DA:244A:1E54:5797-20180630220340\nTalk:Guardian Frame Shift Drive Booster/@comment-35716095-20180628205044/@comment-35716095-20180629031119\nTalk:Guardian Frame Shift Drive Booster/@comment-35716095-20180628205044/@comment-86.52.114.104-20180629152004\nTalk:Guardian Frame Shift Drive Booster/@comment-36087093-20180705111733\nTalk:Guardian Frame Shift Drive Booster/@comment-36087093-20180705111733/@comment-2001:5B0:4BC1:4C00:0:FF:FEBD:63F2-20181108085343\nTalk:Guardian Frame Shift Drive Booster/@comment-36087093-20180705111733/@comment-86.52.116.115-20180706103029\nTalk:Guardian Frame Shift Drive Booster/@comment-37820584-20190925040923\nTalk:Guardian Frame Shift Drive Booster/@comment-47.221.41.126-20181022203034\nTalk:Guardian Frame Shift Drive Booster/@comment-64.26.134.201-20180415035048\nTalk:Guardian Frame Shift Drive Booster/@comment-64.26.134.201-20180415035048/@comment-105.158.21.38-20180429201034\nTalk:Guardian Frame Shift Drive Booster/@comment-64.26.134.201-20180415035048/@comment-196.117.198.148-20180615164739\nTalk:Guardian Frame Shift Drive Booster/@comment-64.26.134.201-20180415035048/@comment-196.72.232.47-20180622093344\nTalk:Guardian Frame Shift Drive Booster/@comment-64.26.134.201-20180415035048/@comment-50.126.116.115-20180608095238\nTalk:Guardian Frame Shift Drive Booster/@comment-64.26.134.201-20180415035048/@comment-86.52.85.36-20180611234256\nTalk:Guardian Frame Shift Drive Booster/@comment-64.26.134.201-20180415035048/@comment-86.52.85.36-20180615203355\nTalk:Guardian Frame Shift Drive Booster/@comment-81.142.182.50-20190418104410\nTalk:Guardian Frame Shift Drive Booster/@comment-86.52.90.161-20180702020155\nTalk:Guardian Frame Shift Drive Booster/@comment-90.200.46.38-20181130003638\nTalk:Guardian Frame Shift Drive Booster/@comment-90.200.46.38-20181130003638/@comment-188.243.119.180-20190104042325\nTalk:Guardian Frame Shift Drive Booster/@comment-91.83.143.191-20180414090709\nTalk:Guardian Gauss Cannon/@comment-103.35.231.188-20180703012928\nTalk:Guardian Gauss Cannon/@comment-108.234.143.191-20180810063551\nTalk:Guardian Gauss Cannon/@comment-173.189.74.62-20180311020549\nTalk:Guardian Gauss Cannon/@comment-173.189.74.62-20180311020549/@comment-202.50.0.100-20180326223103\nTalk:Guardian Gauss Cannon/@comment-173.189.74.62-20180311020549/@comment-2606:A000:6E8A:6400:C482:2F7C:AFD5:913-20180314224955\nTalk:Guardian Gauss Cannon/@comment-173.189.74.62-20180311020549/@comment-52.129.120.199-20180722180222\nTalk:Guardian Gauss Cannon/@comment-173.189.74.62-20180311020549/@comment-68.184.110.81-20180326185050\nTalk:Guardian Gauss Cannon/@comment-185.71.41.240-20180322092346\nTalk:Guardian Gauss Cannon/@comment-185.71.41.240-20180322092346/@comment-32843761-20180322173705\nTalk:Guardian Gauss Cannon/@comment-188.31.112.8-20180401135855\nTalk:Guardian Gauss Cannon/@comment-2600:1700:BDA0:AB20:F1E8:D7FD:FD31:BDA2-20180302010326\nTalk:Guardian Gauss Cannon/@comment-2600:1700:BDA0:AB20:F1E8:D7FD:FD31:BDA2-20180302010326/@comment-2600:1700:BDA0:AB20:F1E8:D7FD:FD31:BDA2-20180302011000\nTalk:Guardian Gauss Cannon/@comment-2601:204:CE00:2EC4:3955:108D:220E:251F-20180325043808\nTalk:Guardian Gauss Cannon/@comment-2601:204:CE00:2EC4:3955:108D:220E:251F-20180325043808/@comment-2003:C9:572D:9400:85F:7BBA:ACC7:9F7A-20200111163416\nTalk:Guardian Gauss Cannon/@comment-35716139-20180528174815\nTalk:Guardian Gauss Cannon/@comment-50.201.158.82-20181119152604\nTalk:Guardian Gauss Cannon/@comment-66.185.66.188-20180301033813\nTalk:Guardian Gauss Cannon/@comment-66.185.66.188-20180301033813/@comment-192.136.161.33-20180301040925\nTalk:Guardian Gauss Cannon/@comment-66.185.66.188-20180301033813/@comment-2601:243:480:98D9:7847:6E76:6D6C:2356-20180314001215\nTalk:Guardian Gauss Cannon/@comment-66.185.66.188-20180301033813/@comment-90.230.204.36-20180301204420\nTalk:Guardian Gauss Cannon/@comment-72.90.131.183-20180310032137\nTalk:Guardian Hull Reinforcement Package/@comment-150.107.173.187-20180707180736\nTalk:Guardian Hull Reinforcement Package/@comment-150.107.173.187-20180707180736/@comment-2001:5B0:4BC1:4C00:0:FF:FEBD:63F2-20181108084224\nTalk:Guardian Hull Reinforcement Package/@comment-150.107.173.187-20180707180736/@comment-62.143.152.192-20180908234928\nTalk:Guardian Hull Reinforcement Package/@comment-150.107.173.187-20180707180736/@comment-86.213.176.9-20180915185600\nTalk:Guardian Hull Reinforcement Package/@comment-188.163.112.128-20190318231926\nTalk:Guardian Hull Reinforcement Package/@comment-188.163.112.128-20190318231926/@comment-192.136.170.98-20190320190415\nTalk:Guardian Hull Reinforcement Package/@comment-188.163.112.128-20190318231926/@comment-27941085-20200222053635\nTalk:Guardian Hull Reinforcement Package/@comment-2602:306:CE29:B0D0:5148:3E6C:3019:AFBF-20191012004145\nTalk:Guardian Hybrid Power Distributor/@comment-118.93.246.156-20180408201936\nTalk:Guardian Hybrid Power Distributor/@comment-118.93.246.156-20180408201936/@comment-119.123.205.162-20180520180645\nTalk:Guardian Hybrid Power Distributor/@comment-118.93.246.156-20180408201936/@comment-26005414-20180410175551\nTalk:Guardian Hybrid Power Distributor/@comment-118.93.246.156-20180408201936/@comment-91.208.153.1-20180410113501\nTalk:Guardian Hybrid Power Distributor/@comment-2001:5B0:4BC0:D040:0:FF:FEBD:1C0-20180524013933\nTalk:Guardian Hybrid Power Distributor/@comment-2001:5B0:4BC0:D040:0:FF:FEBD:1C0-20180524013933/@comment-26810597-20180524041645\nTalk:Guardian Hybrid Power Distributor/@comment-2001:5B0:4BDA:3D90:0:FF:FEBD:1C0-20180825213131\nTalk:Guardian Hybrid Power Distributor/@comment-2001:5B0:4BDA:3D90:0:FF:FEBD:1C0-20180825213131/@comment-26810597-20180825215712\nTalk:Guardian Hybrid Power Distributor/@comment-26005414-20180604143431\nTalk:Guardian Hybrid Power Distributor/@comment-26005414-20180615185308\nTalk:Guardian Hybrid Power Distributor/@comment-2600:1700:80E0:2DC0:1901:42C7:CAEC:9ED6-20190125150334\nTalk:Guardian Hybrid Power Distributor/@comment-2600:1700:80E0:2DC0:1901:42C7:CAEC:9ED6-20190125150334/@comment-73.164.133.238-20190204224553\nTalk:Guardian Hybrid Power Distributor/@comment-71.164.101.74-20180418003435\nTalk:Guardian Hybrid Power Distributor/@comment-90.200.46.38-20181024114051\nTalk:Guardian Hybrid Power Plant/@comment-176.198.246.134-20180302092736\nTalk:Guardian Hybrid Power Plant/@comment-176.198.246.134-20180302092736/@comment-52.206.255.195-20180413143905\nTalk:Guardian Hybrid Power Plant/@comment-26005414-20180302160706\nTalk:Guardian Hybrid Power Plant/@comment-26005414-20180302160706/@comment-187.162.236.82-20180311074543\nTalk:Guardian Hybrid Power Plant/@comment-2602:306:8304:5CB0:7C1F:9AE8:2A25:FC1E-20180308203545\nTalk:Guardian Hybrid Power Plant/@comment-2602:306:8304:5CB0:7C1F:9AE8:2A25:FC1E-20180308203545/@comment-52.206.255.195-20180413143944\nTalk:Guardian Hybrid Power Plant/@comment-33129463-20180601161536\nTalk:Guardian Hybrid Power Plant/@comment-33129463-20180601161536/@comment-103.35.231.188-20180703011257\nTalk:Guardian Hybrid Power Plant/@comment-33129463-20180601161536/@comment-196.117.198.148-20180615171158\nTalk:Guardian Hybrid Power Plant/@comment-81.230.234.173-20180302155216\nTalk:Guardian Hybrid Power Plant/@comment-86.12.246.144-20180331172125\nTalk:Guardian Hybrid Power Plant/@comment-86.12.246.144-20180331172125/@comment-105.158.21.38-20180429202444\nTalk:Guardian Hybrid Power Plant/@comment-86.12.246.144-20180331172125/@comment-150.107.174.105-20180403105236\nTalk:Guardian Hybrid Power Plant/@comment-86.12.246.144-20180331172125/@comment-26005414-20180410144710\nTalk:Guardian Hybrid Power Plant/@comment-86.12.246.144-20180331172125/@comment-52.206.255.195-20180413144031\nTalk:Guardian Hybrid Power Plant/@comment-86.12.246.144-20180331172125/@comment-91.208.153.1-20180410113622\nTalk:Guardian Module Blueprint Fragment/@comment-217.104.28.102-20180317165542\nTalk:Guardian Module Blueprint Fragment/@comment-45.56.150.17-20180307182612\nTalk:Guardian Module Blueprint Fragment/@comment-45.56.150.17-20180307182612/@comment-100.14.49.140-20180307203219\nTalk:Guardian Module Blueprint Fragment/@comment-45.56.150.17-20180307182612/@comment-190.189.24.205-20180704162809\nTalk:Guardian Module Blueprint Fragment/@comment-45.56.150.17-20180307182612/@comment-2601:2C6:4F00:2D75:1062:8462:314D:7F66-20180307185514\nTalk:Guardian Module Blueprint Fragment/@comment-45.56.150.17-20180307182612/@comment-80.84.214.156-20180310142518\nTalk:Guardian Module Blueprint Fragment/@comment-78.147.33.154-20180307220305\nTalk:Guardian Module Blueprint Fragment/@comment-78.147.33.154-20180307220305/@comment-196.72.232.47-20180622142911\nTalk:Guardian Module Blueprint Fragment/@comment-78.147.33.154-20180307220305/@comment-217.104.28.102-20180318180539\nTalk:Guardian Module Blueprint Fragment/@comment-78.147.33.154-20180307220305/@comment-45999617-20200604235640\nTalk:Guardian Module Reinforcement Package/@comment-100.2.252.64-20181111035522\nTalk:Guardian Module Reinforcement Package/@comment-2607:FB90:A75:6B35:BB91:40FC:E97F:5CCD-20190411123237\nTalk:Guardian Module Reinforcement Package/@comment-2607:FB90:A75:6B35:BB91:40FC:E97F:5CCD-20190411123237/@comment-37938660-20200125212027\nTalk:Guardian Module Reinforcement Package/@comment-2607:FEA8:BE5F:E397:5072:755D:F9BE:A44F-20200202043045\nTalk:Guardian Module Reinforcement Package/@comment-81.56.93.175-20190915140147\nTalk:Guardian Module Reinforcement Package/@comment-81.56.93.175-20190915140147/@comment-2602:306:CE29:B0D0:5148:3E6C:3019:AFBF-20191012004408\nTalk:Guardian Plasma Charger/@comment-103.35.231.188-20180703012627\nTalk:Guardian Plasma Charger/@comment-103.35.231.188-20180703012627/@comment-34716888-20180704093507\nTalk:Guardian Plasma Charger/@comment-176.78.161.211-20191118203330\nTalk:Guardian Plasma Charger/@comment-189.232.108.141-20180912025907\nTalk:Guardian Plasma Charger/@comment-189.232.108.141-20180912025907/@comment-80.65.245.53-20181025180506\nTalk:Guardian Plasma Charger/@comment-2001:8003:A944:DC00:199A:63AA:C74F:31E1-20180505092522\nTalk:Guardian Plasma Charger/@comment-2001:8003:A944:DC00:199A:63AA:C74F:31E1-20180505092522/@comment-62.143.152.192-20180917013214\nTalk:Guardian Plasma Charger/@comment-2003:DA:CBCA:400:57C:2D0D:5C81:C1D8-20180718233813\nTalk:Guardian Plasma Charger/@comment-2600:1700:BDA0:AB20:F1E8:D7FD:FD31:BDA2-20180302010908\nTalk:Guardian Plasma Charger/@comment-37820584-20190930070342\nTalk:Guardian Plasma Charger/@comment-44180665-20200505052700\nTalk:Guardian Relic/@comment-2607:FCC8:A091:C100:D466:281:E371:CE7-20190415004007\nTalk:Guardian Relic/@comment-43950998-20190928010327\nTalk:Guardian Relic/@comment-83.233.18.100-20190913004343\nTalk:Guardian Relic/@comment-83.233.18.100-20190913004343/@comment-1070376-20200505023835\nTalk:Guardian Sentinel/@comment-27941085-20191019185804\nTalk:Guardian Sentinel/@comment-39293979-20190605030154\nTalk:Guardian Sentinel/@comment-47.148.106.117-20180304003140\nTalk:Guardian Sentinel/@comment-47.148.106.117-20180304003140/@comment-51.174.201.53-20200113025937\nTalk:Guardian Sentinel/@comment-47.148.106.117-20180304003140/@comment-66.185.67.138-20180306080917\nTalk:Guardian Sentinel/@comment-47.148.106.117-20180304003140/@comment-99.254.1.94-20180313182950\nTalk:Guardian Shard Cannon/@comment-118.100.235.132-20180405164050\nTalk:Guardian Shard Cannon/@comment-141.70.21.163-20180701011950\nTalk:Guardian Shard Cannon/@comment-2A02:C7F:DA00:6500:34C8:E413:35A4:6119-20190607192112\nTalk:Guardian Shard Cannon/@comment-44180665-20200419164446\nTalk:Guardian Shard Cannon/@comment-71.164.101.74-20180418004200\nTalk:Guardian Shard Cannon/@comment-71.164.101.74-20180418004200/@comment-105.158.21.38-20180429195749\nTalk:Guardian Shard Cannon/@comment-92.109.180.240-20180405141102\nTalk:Guardian Shard Cannon/@comment-92.109.180.240-20180405141102/@comment-151.225.182.182-20190529213746\nTalk:Guardian Shard Cannon/@comment-92.109.180.240-20180405141102/@comment-2A02:C7F:5E5E:1300:242B:6CA9:C0D0:84A9-20181108182819\nTalk:Guardian Shield Reinforcement Package/@comment-141.70.21.163-20180701011813\nTalk:Guardian Shield Reinforcement Package/@comment-2001:5B0:4BC1:4C00:0:FF:FEBD:63F2-20181108082901\nTalk:Guardian Shield Reinforcement Package/@comment-205.175.226.101-20180710202011\nTalk:Guardian Shield Reinforcement Package/@comment-205.175.226.101-20180710202011/@comment-109.193.150.130-20180903225601\nTalk:Guardian Shield Reinforcement Package/@comment-205.175.226.101-20180710202011/@comment-172.242.75.177-20180718204610\nTalk:Guardian Shield Reinforcement Package/@comment-205.175.226.101-20180710202011/@comment-176.241.72.203-20190809223251\nTalk:Guardian Shield Reinforcement Package/@comment-25803634-20200523052024\nTalk:Guardian Shield Reinforcement Package/@comment-2806:104E:17:11DF:F82D:4829:1C47:7287-20190510040032\nTalk:Guardian Shield Reinforcement Package/@comment-2806:104E:17:11DF:F82D:4829:1C47:7287-20190510040032/@comment-152.238.24.97-20190510044610\nTalk:Guardian Shield Reinforcement Package/@comment-2806:104E:17:11DF:F82D:4829:1C47:7287-20190510040032/@comment-2806:104E:17:11DF:69AE:7D71:9787:7EFF-20190605062755\nTalk:Guardian Shield Reinforcement Package/@comment-86.52.94.247-20180724010228\nTalk:Guardian Shield Reinforcement Package/@comment-86.52.94.247-20180724010228/@comment-86.52.94.247-20180724011136\nTalk:Guardian Shield Reinforcement Package/@comment-94.140.208.154-20180710082943\nTalk:Guardian Shield Reinforcement Package/@comment-94.140.208.154-20180710082943/@comment-88.114.194.176-20190328114228\nTalk:Guardian Shield Reinforcement Package/@comment-98.155.209.123-20180704072357\nTalk:Guardian Shield Reinforcement Package/@comment-98.155.209.123-20180704072357/@comment-194.8.197.45-20180704082446\nTalk:Guardian Starship Blueprint Fragment/@comment-24.132.0.62-20180309113802\nTalk:Guardian Starship Blueprint Fragment/@comment-24.132.0.62-20180309113802/@comment-117.152.96.247-20180811051541\nTalk:Guardian Starship Blueprint Fragment/@comment-24.132.0.62-20180309113802/@comment-118.93.246.156-20180412015451\nTalk:Guardian Starship Blueprint Fragment/@comment-24.132.0.62-20180309113802/@comment-2601:1C2:1300:D38:201F:6CF2:AA7D:1265-20180503185420\nTalk:Guardian Starship Blueprint Fragment/@comment-24.132.0.62-20180309113802/@comment-97.102.130.87-20180428055033\nTalk:Guardian Starship Blueprint Fragment/@comment-27350684-20181223164440\nTalk:Guardian Starship Blueprint Fragment/@comment-37820584-20181215064025\nTalk:Guardian Starship Blueprint Fragment/@comment-37820584-20181215064025/@comment-2607:FEA8:BD9F:EAC5:2908:6BE5:61A0:A70F-20181219044020\nTalk:Guardian Starship Blueprint Fragment/@comment-68.67.80.249-20180822235631\nTalk:Guardian Structure/@comment-115.187.161.3-20180304100133\nTalk:Guardian Structure/@comment-115.187.161.3-20180304100133/@comment-101.180.76.95-20180305112814\nTalk:Guardian Structure/@comment-151.25.242.52-20180709003634\nTalk:Guardian Structure/@comment-151.25.242.52-20180709184656\nTalk:Guardian Structure/@comment-196.52.39.6-20180831035654\nTalk:Guardian Structure/@comment-2001:569:F841:6F00:65C8:83EB:B217:C169-20180308162454\nTalk:Guardian Structure/@comment-2001:569:F902:D00:D3C:2E3D:9155:433D-20180309191325\nTalk:Guardian Structure/@comment-2600:1700:2AD0:3A80:E99F:924F:855F:692A-20180926000547\nTalk:Guardian Structure/@comment-2600:1700:2AD0:3A80:E99F:924F:855F:692A-20180926000547/@comment-87.249.118.4-20190110151839\nTalk:Guardian Structure/@comment-36755146-20180829130240\nTalk:Guardian Structure/@comment-62.45.66.79-20180308205932\nTalk:Guardian Structure/@comment-62.45.66.79-20180308205932/@comment-2001:569:F902:D00:D3C:2E3D:9155:433D-20180309191218\nTalk:Guardian Structure/@comment-66.191.253.76-20180504014310\nTalk:Guardian Structure/@comment-66.191.253.76-20180504014310/@comment-66.191.253.76-20180504025116\nTalk:Guardian Structure/@comment-78.194.13.113-20180721095656\nTalk:Guardian Structure/@comment-78.194.13.113-20180721095656/@comment-78.194.13.113-20180721095842\nTalk:Guardian Structure/@comment-86.53.8.82-20180306095644\nTalk:Guardian Structure/@comment-86.53.8.82-20180306095644/@comment-151.25.242.52-20180708225050\nTalk:Guardian Structure/@comment-86.53.8.82-20180306095644/@comment-2001:569:F902:D00:D3C:2E3D:9155:433D-20180309191355\nTalk:Guardian Structure/@comment-86.53.8.82-20180306095644/@comment-71.213.20.201-20180314204248\nTalk:Guardian Structure/@comment-99.240.219.58-20180322204256\nTalk:Guardian Technology Component/@comment-217.96.163.164-20190325230347\nTalk:Guardian Weapon Blueprint Fragment/@comment-102.248.253.251-20180305204412\nTalk:Guardian Weapon Blueprint Fragment/@comment-146.90.208.16-20180305180432\nTalk:Guardian Weapon Blueprint Fragment/@comment-146.90.208.16-20180305180432/@comment-100.14.49.140-20180307203755\nTalk:Guardian Weapon Blueprint Fragment/@comment-146.90.208.16-20180305180432/@comment-32843761-20180306035405\nTalk:Guardian Weapon Blueprint Fragment/@comment-26005414-20180302161302\nTalk:Guardian Weapon Blueprint Fragment/@comment-26005414-20180302161302/@comment-78.96.202.34-20180302230757\nTalk:Guardian Weapon Blueprint Fragment/@comment-2A02:C7F:CC07:F900:49C7:9B61:942E:C859-20180307145203\nTalk:Guardian Weapon Blueprint Fragment/@comment-2A02:C7F:CC07:F900:49C7:9B61:942E:C859-20180307145203/@comment-118.93.246.156-20180412014339\nTalk:Gutamaya/@comment-157.233.100.33-20190930213443\nTalk:Gutamaya/@comment-26996176-20160131030530\nTalk:Gutamaya/@comment-26996176-20160131030530/@comment-10698960-20160216232843\nTalk:Gutamaya/@comment-88.115.190.42-20150208110318\nTalk:Gutamaya/@comment-88.115.190.42-20150208110318/@comment-143.238.133.138-20150606093737\nTalk:Gutamaya/@comment-88.115.190.42-20150208110318/@comment-143.81.103.35-20160116214926\nTalk:Gutamaya/@comment-88.115.190.42-20150208110318/@comment-157.233.100.33-20190930213406\nTalk:Gutamaya/@comment-88.115.190.42-20150208110318/@comment-174.89.132.60-20170313055856\nTalk:Gutamaya/@comment-88.115.190.42-20150208110318/@comment-188.67.96.209-20150606163652\nTalk:Gutamaya/@comment-88.115.190.42-20150208110318/@comment-192.136.174.139-20160217122210\nTalk:Gutamaya/@comment-88.115.190.42-20150208110318/@comment-196.215.48.33-20160115163532\nTalk:Gutamaya/@comment-88.115.190.42-20150208110318/@comment-2602:306:CE29:B0D0:D843:E477:F58:DA4C-20190927072855\nTalk:Gutamaya/@comment-88.115.190.42-20150208110318/@comment-50.176.247.65-20150227134309\nTalk:Gutamaya/@comment-88.115.190.42-20150208110318/@comment-70.78.139.111-20170322032705\nTalk:Gutamaya/@comment-88.115.190.42-20150208110318/@comment-87.104.197.109-20150606092925\nTalk:Gutamaya/@comment-88.115.190.42-20150208110318/@comment-91.117.5.94-20160124172930\nTalk:Gutamaya/@comment-88.220.45.222-20170217192531\nTalk:Gyre Tree/@comment-45154815-20200302233034\nTalk:H.E. Suits/@comment-174.106.15.16-20171119084222\nTalk:H.E. Suits/@comment-174.106.15.16-20171119084222/@comment-37450072-20190126231649\nTalk:H.E. Suits/@comment-34060750-20200306234107\nTalk:H.E. Suits/@comment-90.217.129.100-20150227201303\nTalk:H.E. Suits/@comment-90.217.129.100-20150227201303/@comment-1949871-20151203192804\nTalk:H.E. Suits/@comment-90.217.129.100-20150227201303/@comment-82.254.37.126-20151210191337\nTalk:H.E. Suits/@comment-96.19.242.105-20171125045733\nTalk:HIP 10175 Bush Meat/@comment-77.50.26.143-20160814204930\nTalk:HIP Organophosphates/@comment-110.22.41.252-20150511081925\nTalk:HIP Organophosphates/@comment-2.99.81.233-20150827230043\nTalk:HIP Organophosphates/@comment-73.142.176.57-20150523171128\nTalk:HIP Proto-Squid/@comment-168.99.198.77-20180223042033\nTalk:HIP Proto-Squid/@comment-168.99.198.77-20180223042033/@comment-27941085-20200202235831\nTalk:HIP Proto-Squid/@comment-77.102.250.232-20170502212558\nTalk:HN Shock Mount/@comment-192.228.232.114-20190111085630\nTalk:HN Shock Mount/@comment-43612153-20190825002708\nTalk:HN Shock Mount/@comment-69.168.161.190-20190621060640\nTalk:HN Shock Mount/@comment-69.168.161.190-20190621060640/@comment-176.241.72.203-20190720141410\nTalk:HN Shock Mount/@comment-69.168.161.190-20190621060640/@comment-176.241.72.203-20190823221709\nTalk:HN Shock Mount/@comment-69.168.161.190-20190621060640/@comment-2607:FCC8:AE0D:E600:8DDD:8496:B322:A3F2-20190727035229\nTalk:HN Shock Mount/@comment-69.168.161.190-20190621060640/@comment-2A00:23C6:F70D:1C00:8D4A:A680:15C2:3CA0-20190624184523\nTalk:HN Shock Mount/@comment-69.168.161.190-20190621060640/@comment-33886452-20190707180037\nTalk:HN Shock Mount/@comment-69.168.161.190-20190621060640/@comment-85.145.195.189-20191013204424\nTalk:HN Shock Mount/@comment-69.168.161.190-20190621060640/@comment-92.78.65.67-20190802002700\nTalk:HN Shock Mount/@comment-95.174.67.148-20190110014619\nTalk:HN Shock Mount/@comment-95.174.67.148-20190110014619/@comment-203.221.190.20-20190111084205\nTalk:HR 7221 Wheat/@comment-77.50.26.143-20160930211400\nTalk:HUD/@comment-195.243.28.250-20150424123930\nTalk:HUD/@comment-195.243.28.250-20150424123930/@comment-26009169-20150424152320\nTalk:HUD/@comment-195.243.28.250-20150424123930/@comment-31483360-20170309183828\nTalk:HUD/@comment-195.243.28.250-20150424123930/@comment-80.0.228.36-20151213200831\nTalk:HUD/@comment-28322317-20160905141457\nTalk:HUD/@comment-34526351-20190723063815\nTalk:HUD/@comment-81.244.95.49-20170418153046\nTalk:HUD/@comment-93.106.148.82-20170627105514\nTalk:HUD/Center/@comment-25974345-20150610153843\nTalk:HUD/Center/@comment-33823123-20200311172700\nTalk:HUD/Center/@comment-34004391-20180105130438\nTalk:HUD/Center/@comment-34004391-20180105130438/@comment-91.129.96.119-20190607175908\nTalk:HUD/Center/@comment-44056842-20200830190321\nTalk:HUD/Left/@comment-2003:DB:F70F:D637:D8F0:DEB9:B7A2:F93F-20200203144111\nTalk:HUD/Left/@comment-2003:DB:F70F:D637:D8F0:DEB9:B7A2:F93F-20200203144111/@comment-2003:DB:F70F:D637:D8F0:DEB9:B7A2:F93F-20200203144625\nTalk:HUD/Left/@comment-212.127.204.25-20150131134554\nTalk:HUD/Left/@comment-212.127.204.25-20150131134554/@comment-213.48.137.24-20150914145835\nTalk:HUD/Left/@comment-49.190.138.113-20191128024859\nTalk:HUD/Right/@comment-192.136.161.52-20161103165801\nTalk:HUD/Right/@comment-2601:40E:8100:48D5:103C:7649:81D1:9F71-20190901163513\nTalk:HUD Color Editor/@comment-2604:2D80:D003:BF00:9CD5:30C8:92F:CE21-20190930223731\nTalk:HUD Color Editor/@comment-2604:2D80:D003:BF00:9CD5:30C8:92F:CE21-20190930223731/@comment-45.72.186.150-20191019141113\nTalk:HUD Color Editor/@comment-45610676-20200426213824\nTalk:Hafnium 178/@comment-172.83.18.141-20180721091746\nTalk:Hafnium 178/@comment-26247661-20150326192226\nTalk:Hafnium 178/@comment-64.234.38.12-20150430191724\nTalk:Hafnium 178/@comment-78.48.82.91-20150527202051\nTalk:Hafnium 178/@comment-903860-20190211121522\nTalk:Hafnium 178/@comment-903860-20190211121522/@comment-96.40.125.238-20190220221625\nTalk:Haiden Black Brew/@comment-208.54.83.137-20170117000909\nTalk:Haiden Black Brew/@comment-208.54.83.137-20170117000909/@comment-206.81.135.95-20180707144726\nTalk:Haiden Black Brew/@comment-208.54.83.137-20170117000909/@comment-99.192.9.69-20190104210521\nTalk:Haiden Black Brew/@comment-27283317-20151222214717\nTalk:Haiden Black Brew/@comment-76.6.16.58-20180705232849\nTalk:Hardpoint/@comment-101.174.1.154-20151231015350\nTalk:Hardpoint/@comment-101.174.1.154-20151231015350/@comment-27311754-20151231113530\nTalk:Hardpoint/@comment-121.73.212.178-20150108141614\nTalk:Hardpoint/@comment-121.73.212.178-20150108141614/@comment-4968814-20150108171253\nTalk:Hardpoint/@comment-121.73.212.178-20150108141614/@comment-50.170.69.144-20150224100948\nTalk:Hardpoint/@comment-121.73.212.178-20150108141614/@comment-73.19.105.243-20150313003203\nTalk:Hardpoint/@comment-156.3.54.202-20150527153349\nTalk:Hardpoint/@comment-173.25.140.225-20151019154254\nTalk:Hardpoint/@comment-173.25.140.225-20151019154254/@comment-27311754-20151231114225\nTalk:Hardpoint/@comment-173.25.140.225-20151019154254/@comment-73.165.195.226-20151021011454\nTalk:Hardpoint/@comment-203.171.64.109-20171219085240\nTalk:Hardpoint/@comment-203.171.64.109-20171219085240/@comment-192.203.222.63-20180117204855\nTalk:Hardpoint/@comment-203.171.64.109-20171219085240/@comment-72.189.242.0-20200107224058\nTalk:Hardpoint/@comment-203.171.64.109-20171219085240/@comment-73.239.34.240-20180316054806\nTalk:Hardpoint/@comment-26344565-20150503015330\nTalk:Hardpoint/@comment-26344565-20150503015330/@comment-2001:8003:A944:DC00:9925:9372:5F1C:79D3-20180425232314\nTalk:Hardpoint/@comment-26344565-20150503015330/@comment-71.233.88.91-20160617215339\nTalk:Hardpoint/@comment-68.119.220.153-20150121033821\nTalk:Hardpoint/@comment-68.119.220.153-20150121033821/@comment-68.119.220.153-20150121034253\nTalk:Hardpoint/@comment-69.242.200.158-20150319234101\nTalk:Hardpoint/@comment-69.242.200.158-20150319234101/@comment-26009169-20150319234409\nTalk:Hardpoint/@comment-83.208.41.31-20161028173255\nTalk:Hardpoint/@comment-83.208.41.31-20161028173255/@comment-167.21.142.41-20170201171829\nTalk:Hardpoint/@comment-84.172.221.41-20160328123139\nTalk:Harold Duval/@comment-24.50.147.130-20150927155403\nTalk:Harold Duval/@comment-32509469-20200914143656\nTalk:Harold Duval/@comment-37253551-20200914205728\nTalk:Harold Duval/@comment-74.140.23.58-20191201090935\nTalk:Harold Duval/@comment-89.101.97.130-20160201151746\nTalk:Harold Duval/@comment-89.101.97.130-20160201151746/@comment-193.48.172.167-20170124002826\nTalk:Hauler/@comment-106.51.232.219-20141002070720\nTalk:Hauler/@comment-106.51.232.219-20141002070720/@comment-151.227.162.81-20141002214824\nTalk:Hauler/@comment-108.16.36.43-20170318194123\nTalk:Hauler/@comment-108.16.36.43-20170318194123/@comment-2155082-20170319042007\nTalk:Hauler/@comment-108.226.169.128-20170805211408\nTalk:Hauler/@comment-108.226.169.128-20170805211408/@comment-192.136.161.6-20170807201051\nTalk:Hauler/@comment-150.208.129.188-20170329141547\nTalk:Hauler/@comment-150.208.129.188-20170329141547/@comment-168.99.198.78-20180223065509\nTalk:Hauler/@comment-150.208.129.188-20170329141547/@comment-86.177.209.203-20180123181916\nTalk:Hauler/@comment-150.208.129.188-20170329141831\nTalk:Hauler/@comment-150.208.129.188-20170406191208\nTalk:Hauler/@comment-195.204.138.82-20140803073008\nTalk:Hauler/@comment-195.204.138.82-20140803073008/@comment-86.180.180.0-20150711090421\nTalk:Hauler/@comment-199.33.103.87-20150119132411\nTalk:Hauler/@comment-199.33.103.87-20150119132411/@comment-159.118.117.24-20150120165357\nTalk:Hauler/@comment-199.33.103.87-20150119132411/@comment-46.191.255.252-20150129195129\nTalk:Hauler/@comment-210.186.188.203-20151120121550\nTalk:Hauler/@comment-210.186.188.203-20151120121550/@comment-168.99.198.78-20180223065719\nTalk:Hauler/@comment-210.186.188.203-20151120121550/@comment-206.208.187.105-20161217142328\nTalk:Hauler/@comment-210.186.188.203-20151120121550/@comment-27385929-20160131173033\nTalk:Hauler/@comment-210.186.188.203-20151120121550/@comment-38.132.167.192-20160116062757\nTalk:Hauler/@comment-210.186.188.203-20151120121550/@comment-68.186.130.248-20180420042138\nTalk:Hauler/@comment-210.186.188.203-20151120121550/@comment-99.135.98.174-20151122231959\nTalk:Hauler/@comment-2155082-20160114021946\nTalk:Hauler/@comment-2155082-20160114021946/@comment-188.230.130.164-20160327202503\nTalk:Hauler/@comment-25282341-20140808232512\nTalk:Hauler/@comment-25282341-20140808232512/@comment-124.149.89.180-20140824043721\nTalk:Hauler/@comment-25282341-20140808232512/@comment-25249692-20140929181642\nTalk:Hauler/@comment-25282341-20140808232512/@comment-71.92.81.207-20140812220537\nTalk:Hauler/@comment-25282341-20140808232512/@comment-84.87.114.253-20140929180413\nTalk:Hauler/@comment-25282341-20140808232512/@comment-95.208.248.90-20140908113521\nTalk:Hauler/@comment-26048696-20150127124314\nTalk:Hauler/@comment-26116574-20150322015712\nTalk:Hauler/@comment-27115814-20151209185220\nTalk:Hauler/@comment-38675243-20190301162350\nTalk:Hauler/@comment-38675243-20190301162350/@comment-192.136.170.98-20190301190852\nTalk:Hauler/@comment-66.229.135.252-20141213140733\nTalk:Hauler/@comment-66.229.135.252-20141223164240\nTalk:Hauler/@comment-68.186.130.248-20180420041759\nTalk:Hauler/@comment-68.186.130.248-20180420041759/@comment-34641605-20180623182541\nTalk:Hauler/@comment-68.186.130.248-20180420041759/@comment-35650861-20180528105705\nTalk:Hauler/@comment-68.186.130.248-20180420041759/@comment-35650861-20180624091528\nTalk:Hauler/@comment-70.173.70.249-20140731173017\nTalk:Hauler/@comment-70.173.70.249-20140731173017/@comment-82.6.253.30-20140731213206\nTalk:Hauler/@comment-70.30.83.108-20141227165347\nTalk:Hauler/@comment-71.178.30.105-20141004200943\nTalk:Hauler/@comment-71.231.50.26-20151201193220\nTalk:Hauler/@comment-71.95.100.70-20141221054958\nTalk:Hauler/@comment-71.95.100.70-20141221054958/@comment-150.208.129.188-20170329142143\nTalk:Hauler/@comment-71.95.100.70-20141221054958/@comment-192.136.173.19-20160524204348\nTalk:Hauler/@comment-71.95.100.70-20141221054958/@comment-66.69.126.147-20150901185337\nTalk:Hauler/@comment-71.95.100.70-20141221054958/@comment-71.233.88.91-20160524152530\nTalk:Hauler/@comment-72.75.218.125-20140802181911\nTalk:Hauler/@comment-72.75.218.125-20140802181911/@comment-109.171.137.222-20140815004822\nTalk:Hauler/@comment-72.75.218.125-20140802181911/@comment-174.22.239.189-20140904065134\nTalk:Hauler/@comment-72.75.218.125-20140802181911/@comment-178.149.68.132-20140803143556\nTalk:Hauler/@comment-72.75.218.125-20140802181911/@comment-199.33.135.210-20140829112958\nTalk:Hauler/@comment-72.75.218.125-20140802181911/@comment-25249692-20140829151105\nTalk:Hauler/@comment-72.75.218.125-20140802181911/@comment-80.7.17.202-20140804001710\nTalk:Hauler/@comment-72.88.122.41-20170110073530\nTalk:Hauler/@comment-74.134.121.211-20150120174713\nTalk:Hauler/@comment-75.159.212.141-20150529230013\nTalk:Hauler/@comment-78.50.97.52-20150103212626\nTalk:Hauler/@comment-78.50.97.52-20150103212626/@comment-199.125.14.2-20150105204605\nTalk:Hauler/@comment-81.166.147.118-20140808132415\nTalk:Hauler/@comment-81.166.147.118-20140808132415/@comment-25074307-20140808170928\nTalk:Hauler/@comment-81.166.147.118-20140808132415/@comment-66.249.93.187-20150120182848\nTalk:Hauler/@comment-82.21.19.62-20141123211554\nTalk:Hauler/@comment-83.71.7.201-20150301204744\nTalk:Hauler/@comment-83.71.7.201-20150301204744/@comment-83.71.7.201-20150301204822\nTalk:Hauler/@comment-85.199.248.92-20141022135431\nTalk:Hauler/@comment-85.199.248.92-20141022135431/@comment-85.199.248.92-20141023123753\nTalk:Hauler/@comment-86.137.229.249-20160118134512\nTalk:Hauler/@comment-86.137.229.249-20160118134512/@comment-67.5.189.128-20160120042442\nTalk:Hauler/@comment-86.137.229.249-20160118134512/@comment-71.233.88.91-20160524145912\nTalk:Hauler/@comment-86.177.32.30-20140806201702\nTalk:Hauler/@comment-86.177.32.30-20140806201702/@comment-5733253-20150121061410\nTalk:Hauler/@comment-86.177.32.30-20140806201702/@comment-69.126.215.222-20150420030518\nTalk:Hauler/@comment-86.177.32.30-20140806201702/@comment-71.21.3.159-20150131184902\nTalk:Hauler/@comment-86.27.136.29-20150926225753\nTalk:Hauler/@comment-86.27.136.29-20150926225753/@comment-82.71.63.52-20150927155951\nTalk:Hauler/@comment-90.200.46.38-20181105152341\nTalk:Hauler/@comment-90.200.46.38-20181105152341/@comment-108.39.88.44-20190115223759\nTalk:Hauler/@comment-91.231.248.212-20170725002756\nTalk:Hauler/@comment-98.231.139.220-20151221062731\nTalk:Hauler/@comment-98.231.139.220-20151221062731/@comment-206.208.187.105-20161217142129\nTalk:Hauler/@comment-98.231.139.220-20151221062731/@comment-50.4.239.175-20160114013738\nTalk:Haumea/@comment-165.234.248.50-20181127163703\nTalk:Haumea/@comment-165.234.248.50-20181127163722\nTalk:Haumea/@comment-50.46.208.107-20171124075411\nTalk:Havasupai Dream Catcher/@comment-14.201.223.11-20160102063444\nTalk:Havasupai Dream Catcher/@comment-77.50.26.143-20160814201853\nTalk:Heart and Soul Nebulae/@comment-45653063-20200622005734\nTalk:Heat/@comment-164.90.7.2-20170501004855\nTalk:Heat/@comment-176.43.142.195-20160616030137\nTalk:Heat/@comment-176.43.142.195-20160616030137/@comment-2155082-20160616041229\nTalk:Heat/@comment-189.27.190.79-20170101143158\nTalk:Heat/@comment-189.27.190.79-20170101143158/@comment-114.75.68.157-20170121131922\nTalk:Heat/@comment-189.27.190.79-20170101143158/@comment-31840860-20170718103244\nTalk:Heat Conduction Wiring/@comment-2602:306:CE29:B0D0:8529:2FDC:5C82:3BB1-20190906105537\nTalk:Heat Conduction Wiring/@comment-2602:306:CE29:B0D0:8529:2FDC:5C82:3BB1-20190906105537/@comment-213.68.126.83-20200122113531\nTalk:Heat Conduction Wiring/@comment-45994993-20200604133541\nTalk:Heat Resistant Ceramics/@comment-71.174.1.131-20180821133002\nTalk:Heat Resistant Ceramics/@comment-71.174.1.131-20180821133002/@comment-90.200.46.38-20181127202429\nTalk:Heatsink Launcher/@comment-116.212.224.34-20150730045224\nTalk:Heatsink Launcher/@comment-116.212.224.34-20150730045224/@comment-71.233.88.91-20160524121955\nTalk:Heatsink Launcher/@comment-175.156.1.180-20160108190125\nTalk:Heatsink Launcher/@comment-217.155.64.19-20141222191137\nTalk:Heatsink Launcher/@comment-217.155.64.19-20141222191137/@comment-118.208.100.246-20141223200953\nTalk:Heatsink Launcher/@comment-25335609-20140901032003\nTalk:Heatsink Launcher/@comment-25335609-20140901032003/@comment-85.240.98.46-20140908204530\nTalk:Heatsink Launcher/@comment-2605:A601:4203:200:550:6540:8492:9C72-20190108225953\nTalk:Heatsink Launcher/@comment-2605:A601:4203:200:550:6540:8492:9C72-20190108225953/@comment-136.62.175.89-20190201175637\nTalk:Heatsink Launcher/@comment-2605:A601:4203:200:550:6540:8492:9C72-20190108225953/@comment-2806:104E:17:1DD5:E03E:942F:19CA:D8BF-20191104193013\nTalk:Heatsink Launcher/@comment-71.185.225.61-20150207093732\nTalk:Heatsink Launcher/@comment-81.242.129.225-20140901193445\nTalk:Heatsink Launcher/@comment-84.154.94.100-20150627221100\nTalk:Heatsink Launcher/@comment-84.154.94.100-20150627221100/@comment-135.0.26.15-20150719112001\nTalk:Heatsink Launcher/@comment-92.236.195.31-20150216071627\nTalk:Heatsink Launcher/@comment-95.29.191.89-20160624170032\nTalk:Heavy Duty Armour/@comment-2001:569:79A3:5E00:559C:F51D:E0DA:F882-20171228112343\nTalk:Heavy Duty Armour/@comment-41.50.83.214-20181011142706\nTalk:Heavy Duty Armour/@comment-41.50.83.214-20181011142706/@comment-5821715-20190301125132\nTalk:Heavy Duty Hull Reinforcement Package/@comment-141.163.104.133-20190924143538\nTalk:Heavy Duty Hull Reinforcement Package/@comment-141.163.104.133-20190924143538/@comment-24.254.170.239-20191008024612\nTalk:Heavy Duty Hull Reinforcement Package/@comment-141.163.104.133-20190924143538/@comment-2601:189:C37F:CA80:B12A:1D55:9083:CC55-20191008003907\nTalk:Heavy Duty Shield Booster/@comment-41.50.86.15-20181021194300\nTalk:Heavy Duty Shield Booster/@comment-41.50.86.15-20181021194300/@comment-192.136.170.46-20181021201428\nTalk:Helvetitj Pearls/@comment-77.50.26.143-20160814211558\nTalk:Hengist Duval/@comment-175.38.234.198-20150503005435\nTalk:Hengist Duval/@comment-175.38.234.198-20150503005435/@comment-69.125.156.220-20150607084000\nTalk:Hengist Duval/@comment-175.38.234.198-20150503005435/@comment-87.104.197.109-20150611070206\nTalk:Hengist Duval/@comment-88.196.200.74-20150805131254\nTalk:Hengist Duval/@comment-88.196.200.74-20150805131254/@comment-88.196.200.74-20150805131632\nTalk:Hengist Duval/@comment-98.125.97.96-20151011042906\nTalk:Henson Duval/@comment-189.27.54.58-20170601205640\nTalk:Hera Tani/@comment-175.38.55.171-20171017095552\nTalk:Hera Tani/@comment-175.38.55.171-20171017095552/@comment-2602:306:32D4:F060:28F4:709E:27D8:A32F-20180203232545\nTalk:Hera Tani/@comment-45551755-20200420232816\nTalk:Hera Tani/@comment-50.126.116.115-20180303080214\nTalk:Hera Tani/@comment-50.126.116.115-20180307115657\nTalk:Hera Tani/@comment-50.126.116.115-20180307120744\nTalk:Hera Tani/@comment-82.144.151.214-20190830003346\nTalk:Hera Tani/@comment-82.144.151.214-20190830003346/@comment-2A02:810A:8900:1784:C58C:1A84:8D49:91B9-20190830005021\nTalk:Hera Tani/@comment-95.90.214.137-20190830005751\nTalk:Hi'iaka/@comment-2601:3C8:4100:24F0:BDAD:1451:8786:86F5-20191001164614\nTalk:Hi-Cap/@comment-2604:6000:1517:83D9:B9BD:45E9:677:2391-20190522170729\nTalk:High Capacity Weapon/@comment-206.19.54.254-20191219211323\nTalk:High Capacity Weapon/@comment-206.19.54.254-20191219211323/@comment-24.254.170.239-20191231003146\nTalk:High Charge Capacity Power Distributor/@comment-176.249.62.114-20170813160306\nTalk:High Charge Capacity Power Distributor/@comment-24.28.70.126-20181217145816\nTalk:High Charge Capacity Power Distributor/@comment-24.28.70.126-20181217145816/@comment-192.136.170.98-20181217170710\nTalk:High Charge Capacity Power Distributor/@comment-92.80.13.151-20180524155729\nTalk:High Charge Capacity Power Distributor/@comment-92.80.13.151-20180524155729/@comment-192.136.170.98-20181217170748\nTalk:High Density Composites/@comment-2001:569:79A3:5E00:A14D:8321:C3B7:9569-20180314003235\nTalk:High Density Composites/@comment-71.190.159.81-20190720120552\nTalk:High Grade Emissions/@comment-189.32.29.99-20190111154803\nTalk:High Grade Emissions/@comment-189.32.29.99-20190111154803/@comment-192.136.170.98-20190111191401\nTalk:High Grade Emissions/@comment-2A00:801:214:66B1:3D96:A206:9C13:5E63-20190102231925\nTalk:High Grade Emissions/@comment-2A00:801:214:66B1:3D96:A206:9C13:5E63-20190102231925/@comment-192.136.170.98-20190103044047\nTalk:High Grade Emissions/@comment-46.167.31.138-20180112151632\nTalk:High Grade Emissions/@comment-46.167.31.138-20180112151632/@comment-189.32.29.99-20190111074326\nTalk:High Grade Emissions/@comment-46.167.31.138-20180112151632/@comment-192.136.161.33-20180112153942\nTalk:High Grade Emissions/@comment-46.167.31.138-20180112151632/@comment-192.136.170.98-20190111192151\nTalk:High Grade Emissions/@comment-46.167.31.138-20180112151632/@comment-2600:8800:7881:7300:D0EA:EF91:396:65DB-20180409170649\nTalk:High Grade Emissions/@comment-47.208.1.57-20190121045112\nTalk:High Grade Emissions/@comment-47.215.142.21-20180228200702\nTalk:Highliner Antares/@comment-2600:1702:2210:95F0:0:0:0:40-20191128012349\nTalk:Hillary Depot/@comment-2605:A000:1505:465E:C8D9:7B98:B91B:6BF8-20190203215952\nTalk:Hodack/@comment-903860-20190508070309\nTalk:Hodack/@comment-903860-20190508070309/@comment-45954383-20200531034846\nTalk:Holo-Me/@comment-2003:DA:CF37:A600:F5A7:E71E:764E:C2D1-20191117004116\nTalk:Holo-Me/@comment-3517850-20170515164454\nTalk:Holo-Me/@comment-3517850-20170515164454/@comment-30928085-20170515193049\nTalk:Honesty Pills/@comment-27897041-20160301143746\nTalk:Hors/@comment-189.32.29.99-20190115161048\nTalk:Hors/@comment-189.32.29.99-20190115161048/@comment-27.122.12.229-20190428091131\nTalk:Hors/@comment-189.32.29.99-20190115161048/@comment-86.13.195.241-20190511230410\nTalk:Hors/@comment-27441503-20151221083746\nTalk:Hors/@comment-27441503-20151221083746/@comment-27336833-20151221192742\nTalk:Hors/@comment-27441503-20151221083746/@comment-60.229.147.15-20160126214529\nTalk:Hors/@comment-27441503-20151221083746/@comment-66.191.253.76-20160725042859\nTalk:Hors/@comment-27441503-20151221083746/@comment-81.37.229.120-20160520131829\nTalk:Hull Reinforcement Package/@comment-108.197.146.68-20150505003820\nTalk:Hull Reinforcement Package/@comment-108.197.146.68-20150505003820/@comment-156.3.54.203-20150519151335\nTalk:Hull Reinforcement Package/@comment-108.197.146.68-20150505003820/@comment-26783275-20150728132845\nTalk:Hull Reinforcement Package/@comment-156.3.54.203-20150903164947\nTalk:Hull Reinforcement Package/@comment-156.3.54.203-20150903164947/@comment-135.0.26.15-20150915010308\nTalk:Hull Reinforcement Package/@comment-156.3.54.203-20150903164947/@comment-2001:5B0:4BC1:4C00:0:FF:FEBD:63F2-20181108084945\nTalk:Hull Reinforcement Package/@comment-216.164.232.183-20170526032912\nTalk:Hull Reinforcement Package/@comment-216.164.232.183-20170526032912/@comment-2155082-20170526033737\nTalk:Hull Reinforcement Package/@comment-2602:306:CE29:B0D0:48BD:E89F:1BCB:88A0-20191020070026\nTalk:Hull Reinforcement Package/@comment-27190931-20151219002727\nTalk:Hull Reinforcement Package/@comment-27190931-20151219002727/@comment-27530921-20160105090449\nTalk:Hull Reinforcement Package/@comment-62.194.145.192-20180501092931\nTalk:Hull Reinforcement Package/@comment-68.228.30.142-20150402033812\nTalk:Hull Reinforcement Package/@comment-68.228.30.142-20150402033812/@comment-156.3.54.203-20150519151236\nTalk:Hull Reinforcement Package/@comment-88.112.91.114-20150313182548\nTalk:Hull Reinforcement Package/@comment-88.112.91.114-20150313182548/@comment-12138097-20150313193000\nTalk:Hull Reinforcement Package/@comment-88.112.91.114-20150313182548/@comment-135.0.26.15-20150915010358\nTalk:Hull Reinforcement Package/@comment-88.112.91.114-20150313182548/@comment-173.61.193.177-20150914160831\nTalk:Hull Reinforcement Package/@comment-88.112.91.114-20150313182548/@comment-70.198.71.44-20151001125349\nTalk:Hull Reinforcement Package/@comment-88.112.91.114-20150313182548/@comment-86.169.54.249-20150313232930\nTalk:Human/@comment-2804:14C:71:2AAD:0:0:0:1000-20191207225829\nTalk:Hutton Orbital/@comment-1028741-20151025160723\nTalk:Hutton Orbital/@comment-11319-20200706231015\nTalk:Hutton Orbital/@comment-142.112.139.105-20180221052247\nTalk:Hutton Orbital/@comment-142.112.139.105-20180221052247/@comment-98.111.112.23-20190909005725\nTalk:Hutton Orbital/@comment-173.242.193.41-20170822021040\nTalk:Hutton Orbital/@comment-1784834-20171208104902\nTalk:Hutton Orbital/@comment-1784834-20171208104902/@comment-1784834-20171209093906\nTalk:Hutton Orbital/@comment-1784834-20171208104902/@comment-192.136.161.33-20171208140619\nTalk:Hutton Orbital/@comment-1784834-20171208104902/@comment-192.136.161.33-20171210220032\nTalk:Hutton Orbital/@comment-1784834-20171208104902/@comment-192.203.222.63-20180507154344\nTalk:Hutton Orbital/@comment-1784834-20171208104902/@comment-2601:2C0:4700:5C26:5453:9D6C:4A45:EE7D-20171212041833\nTalk:Hutton Orbital/@comment-2001:8003:52AF:FA00:C9B2:7774:F885:ED56-20180310014014\nTalk:Hutton Orbital/@comment-24.49.248.161-20171125232911\nTalk:Hutton Orbital/@comment-2600:387:2:805:0:0:0:B5-20190708075124\nTalk:Hutton Orbital/@comment-2600:387:2:805:0:0:0:B5-20190708075124/@comment-1784834-20191129230802\nTalk:Hutton Orbital/@comment-2600:387:2:805:0:0:0:B5-20190708075124/@comment-207.50.148.172-20191106011455\nTalk:Hutton Orbital/@comment-2600:387:2:805:0:0:0:B5-20190708075124/@comment-38659160-20200915101557\nTalk:Hutton Orbital/@comment-26391992-20151126123917\nTalk:Hutton Orbital/@comment-26391992-20151126123917/@comment-217.136.43.223-20160618224637\nTalk:Hutton Orbital/@comment-26391992-20151126123917/@comment-62.163.31.7-20160107153802\nTalk:Hutton Orbital/@comment-26937315-20151104233927\nTalk:Hutton Orbital/@comment-26937315-20151104233927/@comment-1028741-20151105020335\nTalk:Hutton Orbital/@comment-26937315-20151104233927/@comment-1028741-20151105021022\nTalk:Hutton Orbital/@comment-27375779-20200619110357\nTalk:Hutton Orbital/@comment-30821956-20190104000145\nTalk:Hutton Orbital/@comment-33276077-20171006214443\nTalk:Hutton Orbital/@comment-33276077-20171006214443/@comment-2601:2C0:4700:5C26:5453:9D6C:4A45:EE7D-20171212041920\nTalk:Hutton Orbital/@comment-41.149.72.132-20190108123606\nTalk:Hutton Orbital/@comment-41.149.72.132-20190108123606/@comment-30928085-20190108184319\nTalk:Hutton Orbital/@comment-73.50.15.211-20200105185015\nTalk:Hutton Orbital/@comment-82.78.158.244-20200106171757\nTalk:Hutton Orbital/@comment-87.239.222.42-20191110141949\nTalk:Hutton Orbital/@comment-89.72.218.9-20170406143808\nTalk:Hutton Orbital/@comment-89.72.218.9-20170406143808/@comment-2155082-20170406200224\nTalk:Hutton Orbital/@comment-89.72.218.9-20170406143808/@comment-74.70.124.235-20171203235229\nTalk:Hutton Orbital/@comment-95.91.228.62-20160101224258\nTalk:Hutton Orbital Truckers/@comment-217.121.218.161-20160105220814\nTalk:Hutton Orbital Truckers/@comment-217.121.218.161-20160105220814/@comment-109.150.167.170-20160313150703\nTalk:Hybrid Capacitors/@comment-104.148.151.240-20161219091637\nTalk:Hybrid Capacitors/@comment-104.148.151.240-20161219091637/@comment-146.198.173.40-20180802215000\nTalk:Hybrid Capacitors/@comment-188.2.22.207-20180123182520\nTalk:Hydrogen Fuel/@comment-25074307-20150905185749\nTalk:Hydrogen Fuel/@comment-25074307-20150905185749/@comment-188.238.176.75-20170705122738\nTalk:Hydrogen Fuel/@comment-25074307-20150905185749/@comment-31432358-20160218094047\nTalk:Hydrogen Fuel/@comment-26207911-20150731121436\nTalk:Hyperdiction/@comment-203.32.77.8-20191002053017\nTalk:Hyperdiction/@comment-203.32.77.8-20191002053017/@comment-27941085-20191121053254\nTalk:Hyperdiction/@comment-2602:306:32D4:F060:95C1:C749:222:2F27-20171229014419\nTalk:Hyperdiction/@comment-2602:306:CE29:B0D0:D843:E477:F58:DA4C-20190927075841\nTalk:Hyperdiction/@comment-2602:306:CE29:B0D0:D843:E477:F58:DA4C-20190927075841/@comment-173.17.74.116-20191128153235\nTalk:Hyperdiction/@comment-2602:306:CE29:B0D0:D843:E477:F58:DA4C-20190927075841/@comment-206.19.54.254-20191004223959\nTalk:Hyperdiction/@comment-2602:306:CE29:B0D0:D843:E477:F58:DA4C-20190927075841/@comment-2602:306:CE29:B0D0:5116:F35D:1759:419F-20191009040053\nTalk:Hyperdiction/@comment-2602:306:CE29:B0D0:D843:E477:F58:DA4C-20190927075841/@comment-27941085-20191118022106\nTalk:Hyperdiction/@comment-73.252.111.206-20180219222419\nTalk:Hyperdiction/@comment-73.252.111.206-20180219222419/@comment-192.38.135.152-20190726110645\nTalk:Hyperdiction/@comment-78.147.149.139-20180122111919\nTalk:Hyperdiction/@comment-78.147.149.139-20180122111919/@comment-221418-20190204061354\nTalk:Hyperdiction/@comment-82.247.216.222-20170628130047\nTalk:Hyperdiction/@comment-82.247.216.222-20170628130047/@comment-146.255.109.194-20170717162928\nTalk:Hyperdiction/@comment-92.247.237.211-20180105134749\nTalk:Hyperdrive/@comment-44180665-20200522171209\nTalk:Hyperdrive/@comment-85.76.51.203-20181214145222\nTalk:Hyperdrive/@comment-85.76.51.203-20181214145222/@comment-44180665-20200522171105\nTalk:Hyperspace/@comment-75.115.165.50-20171112205830\nTalk:Hyperspace/@comment-75.115.165.50-20171112205830/@comment-173.172.165.176-20180510234847\nTalk:Hyperspace/@comment-78.71.163.117-20170217090945\nTalk:Hyperspace/@comment-78.71.163.117-20170217090945/@comment-34004391-20180213121313\nTalk:Hyperspace/@comment-78.71.163.117-20170217090945/@comment-44180665-20200429163056\nTalk:Imperial Clipper/@comment-100.4.63.208-20151201043607\nTalk:Imperial Clipper/@comment-100.4.63.208-20151202033816\nTalk:Imperial Clipper/@comment-100.4.63.208-20151202052945\nTalk:Imperial Clipper/@comment-101.184.150.174-20160118054852\nTalk:Imperial Clipper/@comment-101.184.150.174-20160118054852/@comment-125.237.5.192-20161007083628\nTalk:Imperial Clipper/@comment-101.184.150.174-20160118054852/@comment-202.50.5.100-20160119002451\nTalk:Imperial Clipper/@comment-101.184.150.174-20160118054852/@comment-64.127.136.202-20160202144445\nTalk:Imperial Clipper/@comment-101.184.150.174-20160118054852/@comment-75.161.154.19-20160815105931\nTalk:Imperial Clipper/@comment-104.245.77.23-20150418173224\nTalk:Imperial Clipper/@comment-104.245.77.23-20150418173224/@comment-104.245.77.23-20150418173843\nTalk:Imperial Clipper/@comment-104.245.77.23-20150418173224/@comment-26009169-20150418173719\nTalk:Imperial Clipper/@comment-104.245.77.23-20150418175257\nTalk:Imperial Clipper/@comment-104.245.77.23-20150418175257/@comment-104.245.77.23-20150418175533\nTalk:Imperial Clipper/@comment-104.245.77.23-20150418175257/@comment-104.245.77.23-20150419195012\nTalk:Imperial Clipper/@comment-104.245.77.23-20150418175257/@comment-26009169-20150418175541\nTalk:Imperial Clipper/@comment-108.16.36.43-20161028161142\nTalk:Imperial Clipper/@comment-108.2.148.152-20170506171055\nTalk:Imperial Clipper/@comment-108.203.151.81-20151022144825\nTalk:Imperial Clipper/@comment-109.173.208.6-20150719191203\nTalk:Imperial Clipper/@comment-114.76.5.129-20160904051342\nTalk:Imperial Clipper/@comment-114.76.5.129-20160904051342/@comment-75.138.35.156-20170216123650\nTalk:Imperial Clipper/@comment-123.2.157.105-20150613063445\nTalk:Imperial Clipper/@comment-123.2.157.105-20150613063445/@comment-176.4.126.235-20150617030747\nTalk:Imperial Clipper/@comment-131.191.35.56-20150104062432\nTalk:Imperial Clipper/@comment-14.202.248.9-20150110052839\nTalk:Imperial Clipper/@comment-151.229.225.114-20151020073718\nTalk:Imperial Clipper/@comment-151.229.225.114-20151020073718/@comment-26444643-20151021040041\nTalk:Imperial Clipper/@comment-151.229.225.114-20151020073718/@comment-26599825-20151020095339\nTalk:Imperial Clipper/@comment-159.118.186.83-20150718160123\nTalk:Imperial Clipper/@comment-163.244.62.182-20150126092646\nTalk:Imperial Clipper/@comment-163.244.62.182-20150126092646/@comment-163.244.62.182-20150126093121\nTalk:Imperial Clipper/@comment-163.244.62.182-20150126092646/@comment-67.185.188.136-20150127081703\nTalk:Imperial Clipper/@comment-163.244.62.182-20150126092646/@comment-78.50.160.43-20150126182955\nTalk:Imperial Clipper/@comment-163.244.62.182-20150126093339\nTalk:Imperial Clipper/@comment-172.58.41.37-20180316213743\nTalk:Imperial Clipper/@comment-172.58.41.37-20180316213743/@comment-192.136.161.33-20180317031248\nTalk:Imperial Clipper/@comment-172.58.41.37-20180316213743/@comment-192.245.50.52-20180327211822\nTalk:Imperial Clipper/@comment-173.20.166.135-20151023004421\nTalk:Imperial Clipper/@comment-173.20.166.135-20151023004421/@comment-24.27.36.71-20151030224537\nTalk:Imperial Clipper/@comment-176.213.145.52-20151201163402\nTalk:Imperial Clipper/@comment-176.213.145.52-20151201163402/@comment-89.74.232.156-20151213133635\nTalk:Imperial Clipper/@comment-181.194.123.180-20150321164415\nTalk:Imperial Clipper/@comment-181.194.123.180-20150321164415/@comment-146.52.32.203-20150322175350\nTalk:Imperial Clipper/@comment-181.194.123.180-20150321164415/@comment-26009169-20150326162738\nTalk:Imperial Clipper/@comment-181.194.123.180-20150321164415/@comment-26247050-20150326162228\nTalk:Imperial Clipper/@comment-181.194.123.180-20150321164415/@comment-31.52.45.250-20150402232435\nTalk:Imperial Clipper/@comment-181.194.123.180-20150321164415/@comment-75.109.81.198-20150403021035\nTalk:Imperial Clipper/@comment-181.194.123.180-20150321164415/@comment-82.11.99.50-20150720120206\nTalk:Imperial Clipper/@comment-181.194.123.180-20150321164415/@comment-84.171.95.19-20150403232628\nTalk:Imperial Clipper/@comment-181.194.123.180-20150321164415/@comment-92.228.166.148-20150323214606\nTalk:Imperial Clipper/@comment-184.53.0.126-20180918051553\nTalk:Imperial Clipper/@comment-185.37.87.177-20150213224117\nTalk:Imperial Clipper/@comment-185.37.87.177-20150213224117/@comment-78.84.24.73-20150215021932\nTalk:Imperial Clipper/@comment-185.37.87.177-20150213224117/@comment-81.198.252.58-20150215143502\nTalk:Imperial Clipper/@comment-185.37.87.177-20150225105859\nTalk:Imperial Clipper/@comment-185.37.87.177-20150225105859/@comment-89.168.0.206-20150225133815\nTalk:Imperial Clipper/@comment-186.212.36.171-20151103150408\nTalk:Imperial Clipper/@comment-186.212.36.171-20151103150408/@comment-176.79.144.5-20151111232636\nTalk:Imperial Clipper/@comment-186.212.36.171-20151103150408/@comment-26599825-20151109190611\nTalk:Imperial Clipper/@comment-186.212.36.171-20151103150408/@comment-67.161.128.133-20151109170924\nTalk:Imperial Clipper/@comment-186.212.36.171-20151103150408/@comment-72.161.62.123-20151104200438\nTalk:Imperial Clipper/@comment-187.144.122.120-20180913002944\nTalk:Imperial Clipper/@comment-187.64.110.30-20180125185956\nTalk:Imperial Clipper/@comment-187.64.110.30-20180125185956/@comment-196.72.232.47-20180622091408\nTalk:Imperial Clipper/@comment-187.64.110.30-20180125185956/@comment-50.201.158.110-20181003143214\nTalk:Imperial Clipper/@comment-188.11.218.77-20151024000609\nTalk:Imperial Clipper/@comment-192.136.172.90-20160325153429\nTalk:Imperial Clipper/@comment-192.136.172.90-20160325153429/@comment-192.136.173.19-20160518165004\nTalk:Imperial Clipper/@comment-192.136.172.90-20160325153429/@comment-192.136.173.202-20160426112911\nTalk:Imperial Clipper/@comment-192.136.172.90-20160325153429/@comment-24748124-20160415150845\nTalk:Imperial Clipper/@comment-192.136.172.90-20160325153429/@comment-77.250.109.152-20160518164535\nTalk:Imperial Clipper/@comment-198.166.31.216-20151026234342\nTalk:Imperial Clipper/@comment-198.166.31.216-20151026234342/@comment-26599825-20151027103724\nTalk:Imperial Clipper/@comment-198.166.31.216-20151026234342/@comment-99.40.4.128-20151027002457\nTalk:Imperial Clipper/@comment-2.29.109.231-20150301002412\nTalk:Imperial Clipper/@comment-2.29.109.231-20150301002412/@comment-89.168.0.206-20150311135157\nTalk:Imperial Clipper/@comment-2001:5B0:4BDA:3D90:0:FF:FEBD:1C0-20180826105329\nTalk:Imperial Clipper/@comment-2001:5B0:4BDA:3D90:0:FF:FEBD:1C0-20180826105329/@comment-166.109.224.51-20190529150905\nTalk:Imperial Clipper/@comment-2001:5B0:4BDA:3D90:0:FF:FEBD:1C0-20180826105329/@comment-185.154.73.239-20190202225939\nTalk:Imperial Clipper/@comment-2001:5B0:4BDA:3D90:0:FF:FEBD:1C0-20180826105329/@comment-69.114.195.213-20180912195704\nTalk:Imperial Clipper/@comment-202.150.126.163-20150717045937\nTalk:Imperial Clipper/@comment-202.150.126.163-20150717045937/@comment-174.27.115.135-20150717203921\nTalk:Imperial Clipper/@comment-202.150.126.163-20150717045937/@comment-26599825-20150718103552\nTalk:Imperial Clipper/@comment-203.7.13.252-20161012102411\nTalk:Imperial Clipper/@comment-203.7.13.252-20161012102411/@comment-192.136.161.156-20161013113634\nTalk:Imperial Clipper/@comment-203.7.13.252-20161012102411/@comment-2601:243:480:98D9:5135:7998:407E:4E9-20180429011758\nTalk:Imperial Clipper/@comment-203.7.13.252-20161012102411/@comment-72.184.29.205-20180924010103\nTalk:Imperial Clipper/@comment-208.102.117.12-20151019223823\nTalk:Imperial Clipper/@comment-208.102.117.12-20151019223823/@comment-43.230.88.153-20151020162308\nTalk:Imperial Clipper/@comment-208.102.117.12-20151019223823/@comment-80.60.35.115-20151027154732\nTalk:Imperial Clipper/@comment-209.22.221.73-20150123114330\nTalk:Imperial Clipper/@comment-209.252.174.93-20200120030002\nTalk:Imperial Clipper/@comment-209.252.174.93-20200120030002/@comment-45677112-20200701185940\nTalk:Imperial Clipper/@comment-212.253.220.113-20151020194626\nTalk:Imperial Clipper/@comment-217.129.168.245-20151019215503\nTalk:Imperial Clipper/@comment-217.129.168.245-20151019215503/@comment-88.153.26.176-20151020155404\nTalk:Imperial Clipper/@comment-217.156.254.68-20160119152356\nTalk:Imperial Clipper/@comment-217.156.254.68-20160119152356/@comment-107.77.75.76-20161028015004\nTalk:Imperial Clipper/@comment-217.95.44.216-20150505115400\nTalk:Imperial Clipper/@comment-217.95.83.7-20151019191856\nTalk:Imperial Clipper/@comment-24.138.8.129-20150129025338\nTalk:Imperial Clipper/@comment-24.138.8.129-20150129025338/@comment-76.124.162.53-20150304060437\nTalk:Imperial Clipper/@comment-24.138.8.129-20150129025338/@comment-76.124.162.53-20150304061813\nTalk:Imperial Clipper/@comment-24.138.8.129-20150129025338/@comment-84.174.163.95-20150210144202\nTalk:Imperial Clipper/@comment-24.138.8.129-20150129025338/@comment-86.160.14.90-20150130143724\nTalk:Imperial Clipper/@comment-24.48.202.38-20151231081835\nTalk:Imperial Clipper/@comment-24.48.202.38-20151231081835/@comment-27311754-20151231115137\nTalk:Imperial Clipper/@comment-24.55.227.59-20151018203028\nTalk:Imperial Clipper/@comment-25282341-20141215112429\nTalk:Imperial Clipper/@comment-25282341-20141215112429/@comment-76.23.16.7-20150602185742\nTalk:Imperial Clipper/@comment-25282341-20141215112429/@comment-84.171.87.195-20141222020131\nTalk:Imperial Clipper/@comment-25981932-20150107131116\nTalk:Imperial Clipper/@comment-25981932-20150107131116/@comment-91.67.206.51-20150116075335\nTalk:Imperial Clipper/@comment-2601:283:4500:A8:1C36:7FBB:63ED:E177-20171206174949\nTalk:Imperial Clipper/@comment-26048696-20150130005801\nTalk:Imperial Clipper/@comment-26239226-20150810130930\nTalk:Imperial Clipper/@comment-26276243-20150409120945\nTalk:Imperial Clipper/@comment-26276243-20150409120945/@comment-26009169-20150409122446\nTalk:Imperial Clipper/@comment-26276243-20150409120945/@comment-26276243-20150409125132\nTalk:Imperial Clipper/@comment-26276243-20150409120945/@comment-26307924-20150413074354\nTalk:Imperial Clipper/@comment-26307924-20150413080036\nTalk:Imperial Clipper/@comment-26872380-20151119230849\nTalk:Imperial Clipper/@comment-26992851-20150916215329\nTalk:Imperial Clipper/@comment-26992851-20150916215329/@comment-176.63.17.78-20151007130913\nTalk:Imperial Clipper/@comment-27019965-20150926081312\nTalk:Imperial Clipper/@comment-27019965-20150926081312/@comment-26599825-20150926122911\nTalk:Imperial Clipper/@comment-27226617-20151119210709\nTalk:Imperial Clipper/@comment-27226617-20151201203309\nTalk:Imperial Clipper/@comment-27226617-20151201203309/@comment-27226617-20151201224930\nTalk:Imperial Clipper/@comment-27226617-20151201203309/@comment-31.16.29.201-20151201211445\nTalk:Imperial Clipper/@comment-27226617-20151201203309/@comment-31.16.29.201-20151202185024\nTalk:Imperial Clipper/@comment-27226617-20151226045410\nTalk:Imperial Clipper/@comment-2A00:23C5:588B:C800:CC0E:C219:D0DB:B150-20180628140615\nTalk:Imperial Clipper/@comment-2A00:23C5:588B:C800:CC0E:C219:D0DB:B150-20180628140615/@comment-2001:5B0:4BDA:3D90:0:FF:FEBD:1C0-20180826010628\nTalk:Imperial Clipper/@comment-2A00:23C5:588B:C800:CC0E:C219:D0DB:B150-20180628140615/@comment-61.164.41.54-20190820022808\nTalk:Imperial Clipper/@comment-2A00:23C5:588B:C800:CC0E:C219:D0DB:B150-20180628140615/@comment-74.187.212.246-20191019092840\nTalk:Imperial Clipper/@comment-31.187.28.221-20150122131814\nTalk:Imperial Clipper/@comment-31.187.28.221-20150122131814/@comment-88.115.190.42-20150122145417\nTalk:Imperial Clipper/@comment-31.28.6.108-20150630131143\nTalk:Imperial Clipper/@comment-31.28.6.108-20150630131143/@comment-45.50.114.69-20150711223145\nTalk:Imperial Clipper/@comment-31.46.252.206-20151227110120\nTalk:Imperial Clipper/@comment-31.46.252.206-20151227110120/@comment-125.237.7.64-20161129075604\nTalk:Imperial Clipper/@comment-31.46.252.206-20151227110120/@comment-26361572-20151227121952\nTalk:Imperial Clipper/@comment-31426051-20170301230827\nTalk:Imperial Clipper/@comment-37.4.249.122-20150817152826\nTalk:Imperial Clipper/@comment-46.177.149.48-20160608023638\nTalk:Imperial Clipper/@comment-46.177.149.48-20160608023638/@comment-46.177.149.48-20160608025006\nTalk:Imperial Clipper/@comment-46.177.149.48-20160608023638/@comment-50.65.89.52-20161224002336\nTalk:Imperial Clipper/@comment-5.146.179.178-20150607151048\nTalk:Imperial Clipper/@comment-5.146.179.178-20150607151048/@comment-82.226.121.139-20150611175305\nTalk:Imperial Clipper/@comment-50.170.117.254-20160123210309\nTalk:Imperial Clipper/@comment-50.201.158.110-20181003143059\nTalk:Imperial Clipper/@comment-50.80.89.103-20151010101142\nTalk:Imperial Clipper/@comment-60.240.109.68-20151107053050\nTalk:Imperial Clipper/@comment-62.101.170.128-20150105214308\nTalk:Imperial Clipper/@comment-62.101.170.128-20150105214308/@comment-25466501-20150112042236\nTalk:Imperial Clipper/@comment-62.101.170.128-20150105214308/@comment-25974778-20150105232123\nTalk:Imperial Clipper/@comment-62.101.170.128-20150105214308/@comment-62.101.170.128-20150106111622\nTalk:Imperial Clipper/@comment-62.101.170.128-20150105214308/@comment-69.196.162.221-20150111050848\nTalk:Imperial Clipper/@comment-62.101.170.128-20150105214308/@comment-82.2.79.60-20150119201500\nTalk:Imperial Clipper/@comment-62.101.170.128-20150105214308/@comment-88.112.91.114-20150118102334\nTalk:Imperial Clipper/@comment-62.101.170.128-20150105214308/@comment-88.112.91.114-20150118102412\nTalk:Imperial Clipper/@comment-62.101.170.128-20150105214308/@comment-88.112.91.114-20150119233847\nTalk:Imperial Clipper/@comment-62.101.170.128-20150105214308/@comment-88.112.91.114-20150120002921\nTalk:Imperial Clipper/@comment-62.101.170.128-20150105214308/@comment-88.115.190.42-20150122101928\nTalk:Imperial Clipper/@comment-62.163.31.7-20160331101111\nTalk:Imperial Clipper/@comment-62.163.31.7-20160331101111/@comment-125.237.7.64-20161129075346\nTalk:Imperial Clipper/@comment-62.163.31.7-20160331101111/@comment-170.211.150.62-20171013151516\nTalk:Imperial Clipper/@comment-62.163.31.7-20160331101111/@comment-174.18.60.147-20160608085025\nTalk:Imperial Clipper/@comment-62.163.31.7-20160331101111/@comment-27032150-20160331135309\nTalk:Imperial Clipper/@comment-62.163.31.7-20160331101111/@comment-50.170.117.254-20160507194932\nTalk:Imperial Clipper/@comment-650095-20150228033611\nTalk:Imperial Clipper/@comment-67.161.128.133-20151109165502\nTalk:Imperial Clipper/@comment-67.161.128.133-20151109165502/@comment-192.70.164.4-20151109174953\nTalk:Imperial Clipper/@comment-67.164.206.232-20151025024321\nTalk:Imperial Clipper/@comment-67.164.206.232-20151025024321/@comment-198.166.31.216-20151026154232\nTalk:Imperial Clipper/@comment-67.21.153.142-20170626171956\nTalk:Imperial Clipper/@comment-67.21.153.142-20170626171956/@comment-148.252.104.234-20180322160347\nTalk:Imperial Clipper/@comment-67.21.153.142-20170626171956/@comment-170.211.150.62-20171026150843\nTalk:Imperial Clipper/@comment-67.21.153.142-20170626171956/@comment-2605:E000:1E07:2016:0:2D79:4DD3:480D-20180506182706\nTalk:Imperial Clipper/@comment-67.21.153.142-20170626171956/@comment-32843761-20180506204949\nTalk:Imperial Clipper/@comment-68.197.23.46-20190608211449\nTalk:Imperial Clipper/@comment-68.197.23.46-20190608211449/@comment-2602:306:CE29:B0D0:8529:2FDC:5C82:3BB1-20190906121230\nTalk:Imperial Clipper/@comment-68.197.23.46-20190608211449/@comment-44180665-20200406130419\nTalk:Imperial Clipper/@comment-68.197.23.46-20190608211449/@comment-45677112-20200604173625\nTalk:Imperial Clipper/@comment-68.197.23.46-20190608211449/@comment-96.250.114.167-20190918020157\nTalk:Imperial Clipper/@comment-69.123.241.214-20171108003417\nTalk:Imperial Clipper/@comment-69.123.241.214-20171108003417/@comment-189.232.26.63-20180802175717\nTalk:Imperial Clipper/@comment-69.123.241.214-20171108003417/@comment-196.72.232.47-20180622091350\nTalk:Imperial Clipper/@comment-69.123.241.214-20171108003417/@comment-24.159.104.190-20180419100132\nTalk:Imperial Clipper/@comment-69.123.241.214-20171108003417/@comment-2601:243:480:98D9:788F:B55:563F:D8C3-20180420021038\nTalk:Imperial Clipper/@comment-69.123.241.214-20171108003417/@comment-2605:E000:1E07:2016:0:2D79:4DD3:480D-20180506182637\nTalk:Imperial Clipper/@comment-69.123.241.214-20171108003417/@comment-90.19.201.122-20180614020959\nTalk:Imperial Clipper/@comment-69.125.156.220-20150413041821\nTalk:Imperial Clipper/@comment-69.125.156.220-20150413041821/@comment-76.116.236.147-20150503010256\nTalk:Imperial Clipper/@comment-69.165.140.155-20150422200319\nTalk:Imperial Clipper/@comment-69.165.140.155-20150422200319/@comment-26307924-20150503220633\nTalk:Imperial Clipper/@comment-69.165.140.155-20150422200319/@comment-26361572-20150501191406\nTalk:Imperial Clipper/@comment-69.165.140.155-20150422200319/@comment-26361572-20150503214653\nTalk:Imperial Clipper/@comment-69.165.140.155-20150422200319/@comment-26361572-20150503231259\nTalk:Imperial Clipper/@comment-69.165.140.155-20150422200319/@comment-76.116.236.147-20150503003604\nTalk:Imperial Clipper/@comment-69.165.140.155-20150422200319/@comment-87.89.34.241-20150503214413\nTalk:Imperial Clipper/@comment-71.178.30.105-20141108220839\nTalk:Imperial Clipper/@comment-71.178.30.105-20141108220839/@comment-101.167.8.113-20141208054059\nTalk:Imperial Clipper/@comment-71.178.30.105-20141108220839/@comment-101.167.8.113-20150110075114\nTalk:Imperial Clipper/@comment-71.178.30.105-20141108220839/@comment-90.144.216.23-20141213152531\nTalk:Imperial Clipper/@comment-71.233.88.91-20160719124904\nTalk:Imperial Clipper/@comment-71.233.88.91-20160719124904/@comment-192.136.174.182-20160719134359\nTalk:Imperial Clipper/@comment-71.233.88.91-20160719124904/@comment-26937315-20160806130328\nTalk:Imperial Clipper/@comment-71.252.162.220-20150107044955\nTalk:Imperial Clipper/@comment-71.252.162.220-20150107044955/@comment-130.49.59.202-20150111153226\nTalk:Imperial Clipper/@comment-71.252.162.220-20150107044955/@comment-174.103.135.240-20150121024028\nTalk:Imperial Clipper/@comment-71.252.162.220-20150107044955/@comment-25466501-20150112041747\nTalk:Imperial Clipper/@comment-71.252.162.220-20150107044955/@comment-5.172.252.22-20150107113535\nTalk:Imperial Clipper/@comment-71.252.162.220-20150107044955/@comment-58.7.44.141-20150118103004\nTalk:Imperial Clipper/@comment-71.252.162.220-20150107044955/@comment-77.103.144.71-20150128011940\nTalk:Imperial Clipper/@comment-71.252.162.220-20150107044955/@comment-77.103.144.71-20150128015311\nTalk:Imperial Clipper/@comment-73.7.116.78-20151209072737\nTalk:Imperial Clipper/@comment-73.7.116.78-20151209072737/@comment-143.81.103.35-20160123023806\nTalk:Imperial Clipper/@comment-73.7.116.78-20151209072737/@comment-27408680-20151223081812\nTalk:Imperial Clipper/@comment-73.7.116.78-20151209072737/@comment-31.46.254.27-20151230225923\nTalk:Imperial Clipper/@comment-73.7.116.78-20151209072737/@comment-50.170.117.254-20160315115559\nTalk:Imperial Clipper/@comment-73.7.116.78-20151209072737/@comment-9472148-20160205232419\nTalk:Imperial Clipper/@comment-74.96.68.238-20150421195958\nTalk:Imperial Clipper/@comment-74.96.68.238-20150421195958/@comment-26361572-20150501191237\nTalk:Imperial Clipper/@comment-74.96.68.238-20150421195958/@comment-76.116.236.147-20150503004343\nTalk:Imperial Clipper/@comment-75.109.81.198-20150612023127\nTalk:Imperial Clipper/@comment-75.109.81.198-20150612023127/@comment-194.9.234.11-20150726183854\nTalk:Imperial Clipper/@comment-75.109.81.198-20150612023127/@comment-26116574-20150727164720\nTalk:Imperial Clipper/@comment-75.109.81.198-20150612023127/@comment-26599825-20150727073308\nTalk:Imperial Clipper/@comment-75.109.81.198-20150612023127/@comment-26599825-20150727205226\nTalk:Imperial Clipper/@comment-75.109.81.198-20150612023127/@comment-67.171.253.40-20150612201801\nTalk:Imperial Clipper/@comment-75.156.111.35-20190213053329\nTalk:Imperial Clipper/@comment-75.156.111.35-20190213053329/@comment-74.187.212.246-20191019091824\nTalk:Imperial Clipper/@comment-75.170.155.175-20141102033800\nTalk:Imperial Clipper/@comment-75.170.155.175-20141102033800/@comment-101.167.8.113-20141208063105\nTalk:Imperial Clipper/@comment-75.170.155.175-20141102033800/@comment-66.87.115.120-20141231102057\nTalk:Imperial Clipper/@comment-75.184.8.132-20141219034320\nTalk:Imperial Clipper/@comment-76.176.186.71-20190709143132\nTalk:Imperial Clipper/@comment-76.71.51.6-20170125000201\nTalk:Imperial Clipper/@comment-76.71.51.6-20170125000201/@comment-192.136.161.52-20170125132138\nTalk:Imperial Clipper/@comment-77.110.220.44-20151117140629\nTalk:Imperial Clipper/@comment-78.50.49.81-20150223172543\nTalk:Imperial Clipper/@comment-78.50.49.81-20150223172543/@comment-77.110.14.220-20150224085602\nTalk:Imperial Clipper/@comment-78.50.49.81-20150223172543/@comment-78.50.49.81-20150223172622\nTalk:Imperial Clipper/@comment-78.50.49.81-20150223172543/@comment-78.72.8.20-20150305161411\nTalk:Imperial Clipper/@comment-78.68.120.242-20150205190405\nTalk:Imperial Clipper/@comment-79.114.155.99-20170505201700\nTalk:Imperial Clipper/@comment-79.114.155.99-20170505201700/@comment-170.211.150.62-20171026150909\nTalk:Imperial Clipper/@comment-79.114.155.99-20170505201700/@comment-2.31.46.89-20170622105741\nTalk:Imperial Clipper/@comment-79.114.155.99-20170505201700/@comment-2601:243:480:98D9:5135:7998:407E:4E9-20180429012306\nTalk:Imperial Clipper/@comment-79.115.243.105-20150721091330\nTalk:Imperial Clipper/@comment-79.115.243.105-20150721091330/@comment-213.106.4.221-20150725150118\nTalk:Imperial Clipper/@comment-79.115.243.105-20150721091330/@comment-217.91.200.23-20151012114623\nTalk:Imperial Clipper/@comment-79.115.243.105-20150721091330/@comment-26454645-20150727225118\nTalk:Imperial Clipper/@comment-79.115.243.105-20150721091330/@comment-66.66.134.21-20150805080651\nTalk:Imperial Clipper/@comment-79.115.243.105-20150721091330/@comment-69.29.216.198-20150826024106\nTalk:Imperial Clipper/@comment-79.115.243.105-20150721091330/@comment-88.112.91.114-20150811230923\nTalk:Imperial Clipper/@comment-79.115.243.105-20150721091330/@comment-92.6.142.103-20150817091226\nTalk:Imperial Clipper/@comment-80.189.171.9-20141228171212\nTalk:Imperial Clipper/@comment-80.189.171.9-20141228171212/@comment-71.178.30.105-20150119181115\nTalk:Imperial Clipper/@comment-80.189.171.9-20141228173109\nTalk:Imperial Clipper/@comment-80.7.240.63-20171230011339\nTalk:Imperial Clipper/@comment-80.7.240.63-20171230011339/@comment-90.17.168.160-20180213001053\nTalk:Imperial Clipper/@comment-82.116.230.171-20150122165824\nTalk:Imperial Clipper/@comment-82.24.105.102-20150414164751\nTalk:Imperial Clipper/@comment-82.24.105.102-20150414164751/@comment-68.13.96.223-20150420011233\nTalk:Imperial Clipper/@comment-82.24.105.102-20150414164751/@comment-95.38.132.55-20150421105222\nTalk:Imperial Clipper/@comment-83.252.118.197-20151125231514\nTalk:Imperial Clipper/@comment-84.13.232.40-20150127192325\nTalk:Imperial Clipper/@comment-84.13.232.40-20150127192325/@comment-26304615-20150419112408\nTalk:Imperial Clipper/@comment-84.171.70.245-20150214151052\nTalk:Imperial Clipper/@comment-84.245.13.8-20151025133449\nTalk:Imperial Clipper/@comment-84.248.122.164-20150123154746\nTalk:Imperial Clipper/@comment-85.14.86.142-20141229180619\nTalk:Imperial Clipper/@comment-85.23.245.78-20141230234324\nTalk:Imperial Clipper/@comment-86.11.99.35-20150823140719\nTalk:Imperial Clipper/@comment-86.59.213.66-20160308215224\nTalk:Imperial Clipper/@comment-87.103.12.117-20150116110915\nTalk:Imperial Clipper/@comment-87.110.122.22-20150208221549\nTalk:Imperial Clipper/@comment-87.188.226.203-20150121105103\nTalk:Imperial Clipper/@comment-88.102.152.99-20141217235357\nTalk:Imperial Clipper/@comment-88.102.152.99-20141217235357/@comment-31.32.179.1-20141219215604\nTalk:Imperial Clipper/@comment-88.102.152.99-20141217235357/@comment-50.176.247.65-20141228125442\nTalk:Imperial Clipper/@comment-88.112.91.114-20150119022513\nTalk:Imperial Clipper/@comment-88.112.91.114-20150119022513/@comment-12138097-20150119044849\nTalk:Imperial Clipper/@comment-88.115.190.42-20150122122316\nTalk:Imperial Clipper/@comment-88.18.164.212-20160127155550\nTalk:Imperial Clipper/@comment-88.18.164.212-20160127155550/@comment-26391992-20160128071936\nTalk:Imperial Clipper/@comment-88.18.164.212-20160127155550/@comment-46.236.110.72-20160131020459\nTalk:Imperial Clipper/@comment-88.18.164.212-20160127155550/@comment-50.142.19.29-20160310170623\nTalk:Imperial Clipper/@comment-88.18.164.212-20160127155550/@comment-95.45.85.205-20160127181617\nTalk:Imperial Clipper/@comment-88.18.164.212-20160127155550/@comment-95.45.85.205-20160131023318\nTalk:Imperial Clipper/@comment-89.13.118.16-20151021172657\nTalk:Imperial Clipper/@comment-89.168.0.206-20150220161046\nTalk:Imperial Clipper/@comment-89.168.0.206-20150220161046/@comment-107.142.200.144-20150224055027\nTalk:Imperial Clipper/@comment-89.168.0.206-20150220161046/@comment-107.142.200.144-20150224055226\nTalk:Imperial Clipper/@comment-89.168.0.206-20150220161046/@comment-192.91.171.34-20150220215550\nTalk:Imperial Clipper/@comment-89.168.0.206-20150220161046/@comment-89.168.0.206-20150221175819\nTalk:Imperial Clipper/@comment-89.168.0.206-20150220161046/@comment-89.168.0.206-20150225133249\nTalk:Imperial Clipper/@comment-89.168.0.206-20150220161046/@comment-92.236.196.168-20150224235426\nTalk:Imperial Clipper/@comment-89.168.0.206-20150220161046/@comment-92.236.196.168-20150224235847\nTalk:Imperial Clipper/@comment-90.154.74.185-20150822104928\nTalk:Imperial Clipper/@comment-91.153.25.132-20150321134721\nTalk:Imperial Clipper/@comment-91.153.25.132-20150321134721/@comment-26009169-20150321141832\nTalk:Imperial Clipper/@comment-91.153.25.132-20150321134721/@comment-26116574-20150326015508\nTalk:Imperial Clipper/@comment-91.153.25.132-20150321134721/@comment-92.228.166.148-20150323215540\nTalk:Imperial Clipper/@comment-91.153.25.132-20150321134721/@comment-92.228.166.148-20150323215810\nTalk:Imperial Clipper/@comment-91.176.222.127-20150605124655\nTalk:Imperial Clipper/@comment-91.176.222.127-20150605124655/@comment-72.78.102.196-20150606202625\nTalk:Imperial Clipper/@comment-91.176.222.127-20150605124655/@comment-82.226.121.139-20150605164844\nTalk:Imperial Clipper/@comment-91.65.154.243-20150122213133\nTalk:Imperial Clipper/@comment-91.67.206.51-20150113050846\nTalk:Imperial Clipper/@comment-91.67.206.51-20150113050846/@comment-82.8.142.45-20150113051557\nTalk:Imperial Clipper/@comment-91.67.206.51-20150113050846/@comment-91.67.206.51-20150116074910\nTalk:Imperial Clipper/@comment-92.17.248.173-20150218020525\nTalk:Imperial Clipper/@comment-92.17.248.173-20150218020525/@comment-86.129.134.51-20150221133019\nTalk:Imperial Clipper/@comment-92.17.248.173-20150218020525/@comment-92.17.248.173-20150223231407\nTalk:Imperial Clipper/@comment-92.72.184.220-20150408123642\nTalk:Imperial Clipper/@comment-92.75.192.252-20160117225401\nTalk:Imperial Clipper/@comment-92.75.192.252-20160117225401/@comment-80.111.22.57-20160129085407\nTalk:Imperial Clipper/@comment-93.103.14.160-20150119110644\nTalk:Imperial Clipper/@comment-93.103.14.160-20150119110644/@comment-91.125.153.117-20150309194953\nTalk:Imperial Clipper/@comment-93.106.31.186-20170126192746\nTalk:Imperial Clipper/@comment-93.106.31.186-20170126192746/@comment-188.238.158.157-20170127082243\nTalk:Imperial Clipper/@comment-93.106.31.186-20170126192746/@comment-2155082-20170126215021\nTalk:Imperial Clipper/@comment-93.106.31.186-20170126192746/@comment-50.36.214.87-20170818192219\nTalk:Imperial Clipper/@comment-93.106.31.186-20170126192746/@comment-5959508-20170126215352\nTalk:Imperial Clipper/@comment-93.106.31.186-20170126192746/@comment-98.222.235.179-20170128010143\nTalk:Imperial Clipper/@comment-93.106.61.5-20170108220511\nTalk:Imperial Clipper/@comment-93.106.61.5-20170108220511/@comment-93.106.61.5-20170108221207\nTalk:Imperial Clipper/@comment-94.14.225.105-20150331092422\nTalk:Imperial Clipper/@comment-94.14.225.105-20150331092422/@comment-94.14.225.105-20150331092444\nTalk:Imperial Clipper/@comment-95.150.153.134-20170728151244\nTalk:Imperial Clipper/@comment-95.150.153.134-20170728151244/@comment-170.211.150.62-20171013151211\nTalk:Imperial Clipper/@comment-95.150.153.134-20170728151244/@comment-187.64.110.30-20180120211833\nTalk:Imperial Clipper/@comment-95.150.153.134-20170728151244/@comment-2601:243:480:98D9:5135:7998:407E:4E9-20180429012418\nTalk:Imperial Clipper/@comment-95.150.153.134-20170728151244/@comment-69.123.241.214-20171108003112\nTalk:Imperial Clipper/@comment-95.91.162.210-20150829011720\nTalk:Imperial Clipper/@comment-95.91.162.210-20150829011720/@comment-207.224.177.23-20150916165951\nTalk:Imperial Clipper/@comment-95.91.162.210-20150829011720/@comment-207.224.177.23-20150916170212\nTalk:Imperial Clipper/@comment-95.91.162.210-20150829011720/@comment-69.180.44.158-20150911172519\nTalk:Imperial Clipper/@comment-95.91.162.210-20150829011720/@comment-82.11.99.50-20151003084734\nTalk:Imperial Clipper/@comment-95.91.162.210-20150829011720/@comment-82.69.108.71-20150907172738\nTalk:Imperial Clipper/@comment-96.250.114.167-20190918020325\nTalk:Imperial Clipper/@comment-96.250.114.167-20190918020325/@comment-33493166-20191013065922\nTalk:Imperial Clipper/@comment-96.250.114.167-20190918020325/@comment-74.187.216.113-20191030035827\nTalk:Imperial Courier/@comment-1.32.70.213-20150801190112\nTalk:Imperial Courier/@comment-100.37.149.140-20180316045931\nTalk:Imperial Courier/@comment-100.4.63.208-20151201043501\nTalk:Imperial Courier/@comment-100.4.63.208-20151202052906\nTalk:Imperial Courier/@comment-107.141.65.99-20150531125420\nTalk:Imperial Courier/@comment-107.141.65.99-20150531125420/@comment-173.55.173.227-20150601050428\nTalk:Imperial Courier/@comment-107.141.65.99-20150607212405\nTalk:Imperial Courier/@comment-107.141.65.99-20150607212405/@comment-107.141.65.99-20150607212456\nTalk:Imperial Courier/@comment-107.141.65.99-20150607212405/@comment-107.141.65.99-20150607212627\nTalk:Imperial Courier/@comment-107.141.65.99-20150607212405/@comment-107.141.65.99-20150609021139\nTalk:Imperial Courier/@comment-107.141.65.99-20150607212405/@comment-96.58.254.124-20150608223718\nTalk:Imperial Courier/@comment-108.171.128.161-20160106130302\nTalk:Imperial Courier/@comment-108.171.128.161-20160106130302/@comment-108.171.128.161-20160107130350\nTalk:Imperial Courier/@comment-108.171.128.161-20160106130302/@comment-27034370-20160107093553\nTalk:Imperial Courier/@comment-108.171.128.161-20160106130302/@comment-27311754-20160107114520\nTalk:Imperial Courier/@comment-108.171.128.161-20160106130302/@comment-27311754-20160108002044\nTalk:Imperial Courier/@comment-108.2.148.152-20170506171218\nTalk:Imperial Courier/@comment-109.145.238.189-20150502182136\nTalk:Imperial Courier/@comment-109.145.238.189-20150502182136/@comment-108.132.229.131-20150504111735\nTalk:Imperial Courier/@comment-109.145.238.189-20150502182136/@comment-82.226.121.139-20150504162057\nTalk:Imperial Courier/@comment-109.227.40.78-20150408095243\nTalk:Imperial Courier/@comment-109.227.40.78-20150408095243/@comment-92.28.247.50-20150423125509\nTalk:Imperial Courier/@comment-114.76.5.129-20160904051351\nTalk:Imperial Courier/@comment-114.76.5.129-20160904051351/@comment-2601:243:480:98D9:9C45:C07E:EBC9:EE5C-20180306233408\nTalk:Imperial Courier/@comment-12.5.54.135-20151027144429\nTalk:Imperial Courier/@comment-122.58.239.177-20161122075348\nTalk:Imperial Courier/@comment-122.58.239.177-20161122075348/@comment-103.243.67.102-20180223103333\nTalk:Imperial Courier/@comment-122.58.239.177-20161122075348/@comment-173.216.48.69-20170716194525\nTalk:Imperial Courier/@comment-122.58.239.177-20161122075348/@comment-192.136.161.33-20180223135931\nTalk:Imperial Courier/@comment-146.52.104.24-20150527173036\nTalk:Imperial Courier/@comment-146.52.104.24-20150527173036/@comment-156.3.54.203-20150529150047\nTalk:Imperial Courier/@comment-148.66.78.139-20160217042109\nTalk:Imperial Courier/@comment-148.66.78.139-20160217042109/@comment-192.136.174.139-20160217121623\nTalk:Imperial Courier/@comment-148.66.78.139-20160217042109/@comment-209.33.126.70-20160526233647\nTalk:Imperial Courier/@comment-148.66.78.139-20160217042109/@comment-2601:243:480:98D9:1922:DE3E:510A:BD81-20180219000205\nTalk:Imperial Courier/@comment-148.66.78.139-20160217042109/@comment-27838177-20160615151329\nTalk:Imperial Courier/@comment-148.66.78.139-20160217042109/@comment-93.143.29.57-20160330110833\nTalk:Imperial Courier/@comment-151.225.94.241-20150525093451\nTalk:Imperial Courier/@comment-151.225.94.241-20150525093451/@comment-26009169-20150525114251\nTalk:Imperial Courier/@comment-151.225.94.241-20150525093451/@comment-67.186.92.128-20150528054653\nTalk:Imperial Courier/@comment-153.46.97.98-20150521081838\nTalk:Imperial Courier/@comment-156.3.54.202-20150427151539\nTalk:Imperial Courier/@comment-156.3.54.203-20150505215034\nTalk:Imperial Courier/@comment-156.3.54.203-20150519201438\nTalk:Imperial Courier/@comment-156.3.54.203-20150519201438/@comment-64.106.111.10-20150520232820\nTalk:Imperial Courier/@comment-156.3.54.203-20150519201438/@comment-90.231.177.208-20150521161518\nTalk:Imperial Courier/@comment-156.3.54.203-20150526162932\nTalk:Imperial Courier/@comment-156.3.54.203-20150526162932/@comment-88.85.155.146-20150526165859\nTalk:Imperial Courier/@comment-156.3.54.203-20150526205354\nTalk:Imperial Courier/@comment-156.3.54.203-20150526205354/@comment-156.3.54.203-20150526210510\nTalk:Imperial Courier/@comment-156.3.54.203-20150526205354/@comment-72.241.143.238-20150609122608\nTalk:Imperial Courier/@comment-156.3.54.203-20150526205354/@comment-90.221.134.174-20150607003735\nTalk:Imperial Courier/@comment-156.3.54.203-20150526210433\nTalk:Imperial Courier/@comment-156.3.54.203-20150526210433/@comment-156.3.54.203-20150526215153\nTalk:Imperial Courier/@comment-156.3.54.203-20150526210433/@comment-173.55.173.227-20150527015629\nTalk:Imperial Courier/@comment-156.3.54.203-20150526210433/@comment-92.22.57.38-20150526211523\nTalk:Imperial Courier/@comment-156.3.54.203-20150526210433/@comment-92.22.57.38-20150526211643\nTalk:Imperial Courier/@comment-156.3.54.203-20150526210433/@comment-98.246.54.51-20150601041152\nTalk:Imperial Courier/@comment-156.3.54.203-20150527194505\nTalk:Imperial Courier/@comment-156.3.54.203-20150527194505/@comment-101.191.12.113-20150528045745\nTalk:Imperial Courier/@comment-156.3.54.203-20150527194505/@comment-156.3.54.203-20150527195127\nTalk:Imperial Courier/@comment-156.3.54.203-20150527194505/@comment-156.3.54.203-20150529151657\nTalk:Imperial Courier/@comment-156.3.54.203-20150527194505/@comment-173.55.173.227-20150602053529\nTalk:Imperial Courier/@comment-156.3.54.203-20150527194505/@comment-82.226.121.139-20150529120355\nTalk:Imperial Courier/@comment-156.3.54.203-20150527194505/@comment-89.192.161.218-20150606170714\nTalk:Imperial Courier/@comment-156.3.54.203-20150527194505/@comment-98.246.54.51-20150601040716\nTalk:Imperial Courier/@comment-156.3.54.203-20150529151246\nTalk:Imperial Courier/@comment-156.3.54.203-20150529151246/@comment-125.39.35.45-20150530105042\nTalk:Imperial Courier/@comment-156.3.54.203-20150529151246/@comment-173.55.173.227-20150602053404\nTalk:Imperial Courier/@comment-156.3.54.203-20150529151246/@comment-72.241.143.238-20150609122154\nTalk:Imperial Courier/@comment-156.3.54.203-20150529151246/@comment-89.192.161.218-20150606170520\nTalk:Imperial Courier/@comment-156.3.54.204-20150428215101\nTalk:Imperial Courier/@comment-156.3.54.204-20150428215101/@comment-156.3.54.203-20150501152737\nTalk:Imperial Courier/@comment-156.3.54.204-20150428215101/@comment-156.3.54.204-20150428215140\nTalk:Imperial Courier/@comment-156.3.54.204-20150428215101/@comment-26009169-20150429002013\nTalk:Imperial Courier/@comment-156.3.54.204-20150915163015\nTalk:Imperial Courier/@comment-156.3.54.204-20150915163015/@comment-101.183.41.240-20150922052039\nTalk:Imperial Courier/@comment-156.3.54.204-20150915163015/@comment-108.47.237.140-20151004014409\nTalk:Imperial Courier/@comment-156.3.54.204-20150915163015/@comment-156.3.54.203-20150917160840\nTalk:Imperial Courier/@comment-156.3.54.204-20150915163015/@comment-26536231-20150915234253\nTalk:Imperial Courier/@comment-156.3.54.204-20150915163015/@comment-26536231-20150922080042\nTalk:Imperial Courier/@comment-162.255.63.134-20151216180122\nTalk:Imperial Courier/@comment-165.196.26.70-20150324164629\nTalk:Imperial Courier/@comment-165.196.26.70-20150324164629/@comment-86.144.234.165-20150405082703\nTalk:Imperial Courier/@comment-171.161.160.10-20180307203332\nTalk:Imperial Courier/@comment-172.90.77.127-20150716013446\nTalk:Imperial Courier/@comment-174.62.227.131-20151003151452\nTalk:Imperial Courier/@comment-175.139.46.101-20151130043156\nTalk:Imperial Courier/@comment-185.37.87.177-20150521190639\nTalk:Imperial Courier/@comment-186.212.36.171-20151103150153\nTalk:Imperial Courier/@comment-186.212.36.171-20151103150153/@comment-186.212.36.171-20151103150302\nTalk:Imperial Courier/@comment-187.64.110.30-20180204015625\nTalk:Imperial Courier/@comment-187.64.110.30-20180204015625/@comment-2601:243:480:98D9:9C45:C07E:EBC9:EE5C-20180306233237\nTalk:Imperial Courier/@comment-188.210.31.145-20150814203919\nTalk:Imperial Courier/@comment-188.210.31.145-20150814203919/@comment-188.210.31.145-20150814203945\nTalk:Imperial Courier/@comment-188.222.111.139-20151022124239\nTalk:Imperial Courier/@comment-188.222.111.139-20151022124239/@comment-101.183.242.79-20151121034047\nTalk:Imperial Courier/@comment-195.240.108.48-20150506211822\nTalk:Imperial Courier/@comment-195.240.108.48-20150506211822/@comment-108.184.142.252-20150528034853\nTalk:Imperial Courier/@comment-195.240.108.48-20150506211822/@comment-156.3.54.202-20150511203057\nTalk:Imperial Courier/@comment-195.240.108.48-20150506211822/@comment-46.142.84.24-20150508123236\nTalk:Imperial Courier/@comment-195.240.108.48-20150506211822/@comment-82.226.121.139-20150508200327\nTalk:Imperial Courier/@comment-195.240.108.48-20150506211822/@comment-91.212.44.254-20150507131341\nTalk:Imperial Courier/@comment-196.210.51.190-20171029110303\nTalk:Imperial Courier/@comment-2001:5B0:4BC0:D040:0:FF:FEBD:1C0-20180522071304\nTalk:Imperial Courier/@comment-2001:5B0:4BC0:D040:0:FF:FEBD:1C0-20180522071304/@comment-185.154.73.239-20190202230517\nTalk:Imperial Courier/@comment-206.75.171.242-20150606101451\nTalk:Imperial Courier/@comment-212.59.37.193-20160509080923\nTalk:Imperial Courier/@comment-216.58.25.50-20190909154340\nTalk:Imperial Courier/@comment-216.58.25.50-20190909154340/@comment-63.103.169.4-20200113171853\nTalk:Imperial Courier/@comment-24.104.70.146-20150526192445\nTalk:Imperial Courier/@comment-24.104.70.146-20150526192445/@comment-156.3.54.203-20150526204940\nTalk:Imperial Courier/@comment-24.253.218.93-20150625161256\nTalk:Imperial Courier/@comment-24.253.218.93-20150625161256/@comment-98.225.98.174-20150628045142\nTalk:Imperial Courier/@comment-24.48.202.38-20160103070349\nTalk:Imperial Courier/@comment-2601:18C:C901:14D0:D9B5:534E:AFF:E365-20180905013828\nTalk:Imperial Courier/@comment-2601:18C:C901:14D0:D9B5:534E:AFF:E365-20180905013828/@comment-216.15.112.226-20190205201655\nTalk:Imperial Courier/@comment-2601:18C:C901:14D0:D9B5:534E:AFF:E365-20180905013828/@comment-50.201.158.82-20181119151955\nTalk:Imperial Courier/@comment-2601:18C:C901:14D0:D9B5:534E:AFF:E365-20180905013828/@comment-90.200.46.38-20181127120529\nTalk:Imperial Courier/@comment-26044922-20150126071348\nTalk:Imperial Courier/@comment-26239617-20150324110014\nTalk:Imperial Courier/@comment-26239617-20150324110014/@comment-108.132.169.15-20150428001437\nTalk:Imperial Courier/@comment-26239617-20150522211010\nTalk:Imperial Courier/@comment-26247050-20151221072907\nTalk:Imperial Courier/@comment-26247050-20151221072907/@comment-27311754-20151221123534\nTalk:Imperial Courier/@comment-26247050-20151221072907/@comment-69.114.195.213-20180903041321\nTalk:Imperial Courier/@comment-26249366-20150530142105\nTalk:Imperial Courier/@comment-26249366-20150530142105/@comment-24754830-20150606025347\nTalk:Imperial Courier/@comment-26391992-20150611141752\nTalk:Imperial Courier/@comment-26391992-20150611141752/@comment-188.126.175.130-20150616221604\nTalk:Imperial Courier/@comment-26391992-20150611141752/@comment-77.176.70.111-20150725022343\nTalk:Imperial Courier/@comment-26391992-20151220112224\nTalk:Imperial Courier/@comment-26423976-20150607221942\nTalk:Imperial Courier/@comment-26423976-20150607221942/@comment-67.186.92.128-20150607224419\nTalk:Imperial Courier/@comment-26454645-20150731013411\nTalk:Imperial Courier/@comment-26544333-20150716132924\nTalk:Imperial Courier/@comment-26992851-20150916215528\nTalk:Imperial Courier/@comment-27032150-20151104100810\nTalk:Imperial Courier/@comment-27032150-20151104100810/@comment-27032150-20151105073057\nTalk:Imperial Courier/@comment-27032150-20151104100810/@comment-27032150-20151110080150\nTalk:Imperial Courier/@comment-27032150-20151104100810/@comment-46.12.86.11-20151108193737\nTalk:Imperial Courier/@comment-27032150-20151104100810/@comment-73.1.55.15-20151105015548\nTalk:Imperial Courier/@comment-27034370-20160104115349\nTalk:Imperial Courier/@comment-27646870-20160905172219\nTalk:Imperial Courier/@comment-27646870-20160905172219/@comment-2601:243:480:98D9:FCC1:F627:367E:82C7-20180226021029\nTalk:Imperial Courier/@comment-32843761-20180721200320\nTalk:Imperial Courier/@comment-38.132.119.232-20170723213200\nTalk:Imperial Courier/@comment-44180665-20200913083823\nTalk:Imperial Courier/@comment-46.194.48.14-20150606234151\nTalk:Imperial Courier/@comment-46.194.48.14-20150606234151/@comment-72.171.16.60-20150712065546\nTalk:Imperial Courier/@comment-5.172.239.182-20150526220535\nTalk:Imperial Courier/@comment-5.172.239.182-20150526220535/@comment-156.3.54.203-20150529151808\nTalk:Imperial Courier/@comment-5.172.239.182-20150526220535/@comment-84.151.203.73-20150526223112\nTalk:Imperial Courier/@comment-50.170.117.254-20160715025023\nTalk:Imperial Courier/@comment-5471809-20170719023255\nTalk:Imperial Courier/@comment-5471809-20170719023255/@comment-170.185.126.17-20191108135234\nTalk:Imperial Courier/@comment-5471809-20170719023255/@comment-185.6.245.138-20171115134854\nTalk:Imperial Courier/@comment-5471809-20170719023255/@comment-2601:243:480:98D9:FCC1:F627:367E:82C7-20180226020820\nTalk:Imperial Courier/@comment-5471809-20170719023255/@comment-2607:FB90:5AF:5B99:1125:E1C6:DFF9:7FBA-20170816091612\nTalk:Imperial Courier/@comment-5471809-20170719023255/@comment-32843761-20180122035558\nTalk:Imperial Courier/@comment-62.100.224.15-20150717092217\nTalk:Imperial Courier/@comment-62.100.224.15-20150717092217/@comment-26723303-20150717182343\nTalk:Imperial Courier/@comment-62.100.224.15-20150717092217/@comment-46.107.236.132-20150717180012\nTalk:Imperial Courier/@comment-62.100.224.15-20150717092217/@comment-62.100.224.15-20150717092513\nTalk:Imperial Courier/@comment-62.100.224.15-20150717092217/@comment-83.99.147.171-20150717140817\nTalk:Imperial Courier/@comment-62.163.31.7-20160104190715\nTalk:Imperial Courier/@comment-62.30.56.254-20150123045302\nTalk:Imperial Courier/@comment-62.30.56.254-20150123045302/@comment-108.68.77.226-20150126013246\nTalk:Imperial Courier/@comment-62.30.56.254-20150123045302/@comment-146.200.34.168-20150305053859\nTalk:Imperial Courier/@comment-62.30.56.254-20150123045302/@comment-174.22.224.172-20150303223023\nTalk:Imperial Courier/@comment-62.30.56.254-20150123045302/@comment-185.37.87.177-20150312081602\nTalk:Imperial Courier/@comment-62.30.56.254-20150123045302/@comment-65.191.24.61-20150406205657\nTalk:Imperial Courier/@comment-62.30.56.254-20150123045302/@comment-82.71.34.195-20150428114833\nTalk:Imperial Courier/@comment-66.87.125.67-20160719030124\nTalk:Imperial Courier/@comment-66.87.125.67-20160719030124/@comment-122.58.239.177-20161122075226\nTalk:Imperial Courier/@comment-66.87.125.67-20160719030124/@comment-82.46.123.131-20170716192811\nTalk:Imperial Courier/@comment-67.1.161.75-20150517100233\nTalk:Imperial Courier/@comment-67.1.161.75-20150531081816\nTalk:Imperial Courier/@comment-67.185.212.65-20160914040440\nTalk:Imperial Courier/@comment-68.187.181.113-20150720143541\nTalk:Imperial Courier/@comment-68.2.60.24-20150927035518\nTalk:Imperial Courier/@comment-69.114.195.213-20180903040817\nTalk:Imperial Courier/@comment-69.114.195.213-20180903040817/@comment-170.185.126.17-20191108134827\nTalk:Imperial Courier/@comment-69.114.195.213-20180903040817/@comment-50.201.158.82-20181119152052\nTalk:Imperial Courier/@comment-71.217.112.241-20150307022054\nTalk:Imperial Courier/@comment-71.217.112.241-20150307022054/@comment-78.48.118.158-20150310031159\nTalk:Imperial Courier/@comment-72.197.183.91-20150726080036\nTalk:Imperial Courier/@comment-72.28.184.211-20150610090856\nTalk:Imperial Courier/@comment-73.1.55.15-20151101184037\nTalk:Imperial Courier/@comment-75.109.81.198-20150612023426\nTalk:Imperial Courier/@comment-75.109.81.198-20150612023426/@comment-24.253.218.93-20150625161549\nTalk:Imperial Courier/@comment-75.22.101.114-20150524160856\nTalk:Imperial Courier/@comment-76.24.210.16-20180823010223\nTalk:Imperial Courier/@comment-77.222.184.134-20150526164250\nTalk:Imperial Courier/@comment-77.222.184.134-20150526164250/@comment-92.21.208.233-20150528182509\nTalk:Imperial Courier/@comment-77.222.184.134-20150526164250/@comment-92.9.53.84-20150526203930\nTalk:Imperial Courier/@comment-78.49.3.145-20150412195110\nTalk:Imperial Courier/@comment-78.49.3.145-20150412195110/@comment-156.3.54.203-20150505214821\nTalk:Imperial Courier/@comment-82.208.5.86-20151119213331\nTalk:Imperial Courier/@comment-82.208.5.86-20151119213331/@comment-174.62.227.131-20151123021208\nTalk:Imperial Courier/@comment-82.226.121.139-20150409114359\nTalk:Imperial Courier/@comment-82.226.121.139-20150430234136\nTalk:Imperial Courier/@comment-82.226.121.139-20150430234136/@comment-156.3.54.203-20150501152820\nTalk:Imperial Courier/@comment-82.226.121.139-20150516013357\nTalk:Imperial Courier/@comment-82.226.121.139-20150516013357/@comment-156.3.54.203-20150520164854\nTalk:Imperial Courier/@comment-82.226.121.139-20150521151656\nTalk:Imperial Courier/@comment-82.226.121.139-20150521151656/@comment-26009169-20150521152425\nTalk:Imperial Courier/@comment-82.226.121.139-20150521160752\nTalk:Imperial Courier/@comment-82.226.121.139-20150521160752/@comment-26358753-20150523040820\nTalk:Imperial Courier/@comment-82.226.121.139-20150521160752/@comment-67.1.161.75-20150524094318\nTalk:Imperial Courier/@comment-82.32.79.85-20150724175612\nTalk:Imperial Courier/@comment-82.32.79.85-20150724175612/@comment-143.200.40.136-20150908033116\nTalk:Imperial Courier/@comment-82.32.79.85-20150724175612/@comment-26536231-20150908164031\nTalk:Imperial Courier/@comment-82.32.79.85-20150724175612/@comment-26599825-20150724191921\nTalk:Imperial Courier/@comment-82.32.79.85-20150724175612/@comment-4555143-20150724182640\nTalk:Imperial Courier/@comment-82.32.79.85-20150724175612/@comment-77.176.70.111-20150725022234\nTalk:Imperial Courier/@comment-82.38.252.29-20150314020725\nTalk:Imperial Courier/@comment-82.38.252.29-20150314020725/@comment-185.37.87.177-20150322113729\nTalk:Imperial Courier/@comment-82.43.96.64-20160110122604\nTalk:Imperial Courier/@comment-82.43.96.64-20160110122604/@comment-192.136.174.139-20160217121853\nTalk:Imperial Courier/@comment-82.43.96.64-20160110122604/@comment-26536231-20160110194752\nTalk:Imperial Courier/@comment-83.252.118.197-20151125231528\nTalk:Imperial Courier/@comment-83.43.134.8-20150609145129\nTalk:Imperial Courier/@comment-84.135.27.214-20150601185809\nTalk:Imperial Courier/@comment-84.135.27.214-20150601185809/@comment-153.46.97.98-20150602092810\nTalk:Imperial Courier/@comment-84.135.27.214-20150601185809/@comment-156.3.54.203-20150603161215\nTalk:Imperial Courier/@comment-84.135.27.214-20150601185809/@comment-173.55.173.227-20150602053316\nTalk:Imperial Courier/@comment-84.135.27.214-20150601185809/@comment-188.67.96.209-20150603113442\nTalk:Imperial Courier/@comment-84.151.203.73-20150526215047\nTalk:Imperial Courier/@comment-84.151.203.73-20150526215047/@comment-153.46.97.98-20150528141200\nTalk:Imperial Courier/@comment-84.151.203.73-20150526215047/@comment-26391992-20150528181300\nTalk:Imperial Courier/@comment-84.151.203.73-20150526215047/@comment-70.167.57.234-20150611195315\nTalk:Imperial Courier/@comment-84.151.203.73-20150526215047/@comment-90.221.134.174-20150607003410\nTalk:Imperial Courier/@comment-84.151.203.73-20150526215047/@comment-98.246.54.51-20150601041020\nTalk:Imperial Courier/@comment-84.154.87.72-20150606160429\nTalk:Imperial Courier/@comment-84.82.15.219-20150613114425\nTalk:Imperial Courier/@comment-85.157.129.60-20150829051259\nTalk:Imperial Courier/@comment-86.1.61.9-20151224065921\nTalk:Imperial Courier/@comment-86.1.61.9-20151224065921/@comment-12.5.54.135-20160111161527\nTalk:Imperial Courier/@comment-86.1.61.9-20151224065921/@comment-62.163.31.7-20160104190304\nTalk:Imperial Courier/@comment-86.1.61.9-20151224065921/@comment-69.114.195.213-20180903041133\nTalk:Imperial Courier/@comment-86.1.61.9-20151224065921/@comment-95.90.222.220-20151225134730\nTalk:Imperial Courier/@comment-86.134.190.119-20151018193257\nTalk:Imperial Courier/@comment-86.134.190.119-20151018193257/@comment-186.105.241.84-20151018214101\nTalk:Imperial Courier/@comment-86.134.190.119-20151018193257/@comment-200.113.32.182-20151021190801\nTalk:Imperial Courier/@comment-86.134.190.119-20151018193257/@comment-83.165.1.101-20151022133418\nTalk:Imperial Courier/@comment-86.134.190.119-20151018193257/@comment-86.134.190.119-20151019085600\nTalk:Imperial Courier/@comment-86.149.119.194-20160912035744\nTalk:Imperial Courier/@comment-86.4.7.118-20171012172248\nTalk:Imperial Courier/@comment-87.127.164.177-20150506200246\nTalk:Imperial Courier/@comment-87.127.164.177-20150506200246/@comment-46.142.84.24-20150508123404\nTalk:Imperial Courier/@comment-87.127.164.177-20150506200246/@comment-82.226.121.139-20150508200534\nTalk:Imperial Courier/@comment-87.127.164.177-20150506200246/@comment-82.226.121.139-20150519041832\nTalk:Imperial Courier/@comment-88.84.189.177-20150528193307\nTalk:Imperial Courier/@comment-88.84.189.177-20150528193307/@comment-188.67.96.209-20150528202814\nTalk:Imperial Courier/@comment-88.84.189.177-20150528193307/@comment-26009169-20150528193511\nTalk:Imperial Courier/@comment-89.74.232.156-20151206221353\nTalk:Imperial Courier/@comment-89.74.232.156-20151206221353/@comment-12.5.54.135-20151209151134\nTalk:Imperial Courier/@comment-89.74.232.156-20151206221353/@comment-89.74.232.156-20151221170535\nTalk:Imperial Courier/@comment-90.185.98.78-20150209113632\nTalk:Imperial Courier/@comment-91.176.222.127-20150606092945\nTalk:Imperial Courier/@comment-91.176.222.127-20150606092945/@comment-107.141.65.99-20150607212746\nTalk:Imperial Courier/@comment-91.176.222.127-20150606092945/@comment-107.141.65.99-20150607212800\nTalk:Imperial Courier/@comment-91.176.222.127-20150606092945/@comment-109.151.231.156-20150612184757\nTalk:Imperial Courier/@comment-91.176.222.127-20150606092945/@comment-84.154.87.72-20150606160033\nTalk:Imperial Courier/@comment-91.176.222.127-20150606092945/@comment-90.221.134.174-20150607003054\nTalk:Imperial Courier/@comment-94.139.3.91-20150607125140\nTalk:Imperial Courier/@comment-94.139.3.91-20150607125140/@comment-188.67.96.209-20150609001901\nTalk:Imperial Courier/@comment-95.49.138.80-20151031111604\nTalk:Imperial Courier/@comment-97.84.134.173-20151222014735\nTalk:Imperial Courier/@comment-97.84.134.173-20151222014735/@comment-2601:243:480:98D9:FCC1:F627:367E:82C7-20180226021258\nTalk:Imperial Courier/@comment-97.92.39.44-20151225031516\nTalk:Imperial Courier/@comment-97.92.39.44-20151225031516/@comment-97.92.39.44-20151225031644\nTalk:Imperial Courier/@comment-98.225.98.174-20150625051359\nTalk:Imperial Courier/@comment-98.225.98.174-20150625051359/@comment-109.245.71.96-20150626143329\nTalk:Imperial Courier/@comment-98.225.98.174-20150625051359/@comment-24.253.218.93-20150625160917\nTalk:Imperial Courier/@comment-98.225.98.174-20150625051359/@comment-90.255.114.191-20190504155520\nTalk:Imperial Courier/@comment-98.225.98.174-20150625051359/@comment-98.225.98.174-20150628044720\nTalk:Imperial Courier/@comment-98.246.184.253-20150424033748\nTalk:Imperial Courier/@comment-98.246.184.253-20150424034359\nTalk:Imperial Courier/@comment-98.246.184.253-20150424034359/@comment-156.3.54.203-20150505214607\nTalk:Imperial Courier/@comment-98.246.184.253-20150424034359/@comment-156.3.54.203-20150505214701\nTalk:Imperial Courier/@comment-98.246.184.253-20150425183704\nTalk:Imperial Courier/@comment-98.246.184.253-20150425183704/@comment-151.225.94.241-20150506181728\nTalk:Imperial Courier/@comment-98.246.184.253-20150425183704/@comment-26009169-20150425205650\nTalk:Imperial Courier/@comment-99.0.13.106-20150522220733\nTalk:Imperial Courier/@comment-99.0.13.106-20150522220733/@comment-67.1.161.75-20150524094217\nTalk:Imperial Courier/@comment-99.255.61.118-20150529195523\nTalk:Imperial Courier/@comment-99.255.61.118-20150529195523/@comment-25769374-20150608092158\nTalk:Imperial Courier/@comment-99.255.61.118-20150529195523/@comment-99.135.98.174-20150605184413\nTalk:Imperial Cutter/@comment-101.184.150.174-20160111230925\nTalk:Imperial Cutter/@comment-101.184.150.174-20160113054125\nTalk:Imperial Cutter/@comment-101.184.150.174-20160113054125/@comment-185.12.152.254-20160114072627\nTalk:Imperial Cutter/@comment-101.184.150.174-20160113054125/@comment-26391992-20160113104116\nTalk:Imperial Cutter/@comment-101.184.150.174-20160113054125/@comment-31.46.255.108-20160114162024\nTalk:Imperial Cutter/@comment-101.184.150.174-20160113054125/@comment-4986699-20160113094656\nTalk:Imperial Cutter/@comment-101.184.150.174-20160113054125/@comment-7917909-20160204190819\nTalk:Imperial Cutter/@comment-104.245.77.23-20150729024519\nTalk:Imperial Cutter/@comment-104.245.77.23-20150729024519/@comment-104.245.77.23-20150729222813\nTalk:Imperial Cutter/@comment-104.245.77.23-20150729024519/@comment-26116574-20150729173856\nTalk:Imperial Cutter/@comment-104.245.77.23-20150729024519/@comment-26116574-20150730053850\nTalk:Imperial Cutter/@comment-104.245.77.23-20150729024519/@comment-26116574-20150730183936\nTalk:Imperial Cutter/@comment-104.245.77.23-20150729024519/@comment-26536231-20150729103110\nTalk:Imperial Cutter/@comment-104.245.77.23-20150729024519/@comment-26536231-20150730074218\nTalk:Imperial Cutter/@comment-104.245.77.23-20150729024519/@comment-26536231-20150731124811\nTalk:Imperial Cutter/@comment-108.169.234.38-20151110213505\nTalk:Imperial Cutter/@comment-108.169.234.38-20151110213505/@comment-26599825-20151110215643\nTalk:Imperial Cutter/@comment-108.169.234.38-20151110213505/@comment-86.20.122.182-20151110214141\nTalk:Imperial Cutter/@comment-108.169.234.38-20151110213505/@comment-93.199.235.188-20151110215407\nTalk:Imperial Cutter/@comment-108.169.234.38-20151110213505/@comment-93.199.235.188-20151110220136\nTalk:Imperial Cutter/@comment-108.18.199.4-20170314034252\nTalk:Imperial Cutter/@comment-108.18.199.4-20170314034252/@comment-2601:243:480:98D9:C5B6:A736:26BC:C6ED-20180319002108\nTalk:Imperial Cutter/@comment-108.18.199.4-20170314034252/@comment-31510018-20170324071333\nTalk:Imperial Cutter/@comment-108.18.199.4-20170314034252/@comment-32660357-20170723094734\nTalk:Imperial Cutter/@comment-108.2.148.152-20170506234705\nTalk:Imperial Cutter/@comment-108.86.9.46-20151118081942\nTalk:Imperial Cutter/@comment-108.86.9.46-20151118081942/@comment-27115814-20151118160042\nTalk:Imperial Cutter/@comment-108.86.9.46-20151118081942/@comment-27115814-20151119171120\nTalk:Imperial Cutter/@comment-108.86.9.46-20151118081942/@comment-31.46.249.169-20151118163411\nTalk:Imperial Cutter/@comment-108.86.9.46-20151118081942/@comment-83.6.223.216-20151122114620\nTalk:Imperial Cutter/@comment-108.86.9.46-20151219063546\nTalk:Imperial Cutter/@comment-108.86.9.46-20151219063546/@comment-26391992-20151220111205\nTalk:Imperial Cutter/@comment-114.76.5.129-20160904051407\nTalk:Imperial Cutter/@comment-120.144.54.250-20151015040434\nTalk:Imperial Cutter/@comment-120.144.54.250-20151015040434/@comment-27115814-20151102162826\nTalk:Imperial Cutter/@comment-121.98.178.238-20160110093157\nTalk:Imperial Cutter/@comment-121.98.178.238-20160110093157/@comment-78.11.219.52-20160116124004\nTalk:Imperial Cutter/@comment-121.98.178.238-20160110093157/@comment-78.11.219.52-20160116171519\nTalk:Imperial Cutter/@comment-129.22.41.188-20151113223703\nTalk:Imperial Cutter/@comment-129.22.41.188-20151113223703/@comment-191.114.103.217-20151114112046\nTalk:Imperial Cutter/@comment-129.22.41.188-20151113223703/@comment-71.175.97.11-20151113224517\nTalk:Imperial Cutter/@comment-131.156.157.169-20151123011216\nTalk:Imperial Cutter/@comment-143.81.103.35-20151224185515\nTalk:Imperial Cutter/@comment-146.90.208.16-20180304162412\nTalk:Imperial Cutter/@comment-146.90.208.16-20180304162412/@comment-192.136.161.33-20180305210608\nTalk:Imperial Cutter/@comment-146.90.208.16-20180304162412/@comment-2601:243:480:98D9:98A2:D697:8B24:AE92-20180311021145\nTalk:Imperial Cutter/@comment-151.225.61.134-20151019152040\nTalk:Imperial Cutter/@comment-156.3.54.204-20150921145415\nTalk:Imperial Cutter/@comment-156.3.54.204-20150921145415/@comment-156.3.54.206-20150928183028\nTalk:Imperial Cutter/@comment-156.3.54.204-20150921145415/@comment-25450485-20150924124015\nTalk:Imperial Cutter/@comment-156.3.54.204-20150921145415/@comment-69.141.172.169-20151002204646\nTalk:Imperial Cutter/@comment-156.3.54.206-20150928183157\nTalk:Imperial Cutter/@comment-156.3.54.206-20150928183157/@comment-156.3.54.206-20150928183238\nTalk:Imperial Cutter/@comment-156.3.54.206-20150928183157/@comment-65.129.227.204-20151002043514\nTalk:Imperial Cutter/@comment-160.3.141.17-20151115211502\nTalk:Imperial Cutter/@comment-160.3.141.17-20151115211502/@comment-160.3.141.17-20151116063716\nTalk:Imperial Cutter/@comment-160.3.141.17-20151115211502/@comment-188.220.194.51-20151116002613\nTalk:Imperial Cutter/@comment-160.3.141.17-20151115211502/@comment-188.220.194.51-20151116162355\nTalk:Imperial Cutter/@comment-160.3.141.17-20151115211502/@comment-27115814-20151116194339\nTalk:Imperial Cutter/@comment-173.172.165.176-20180510221033\nTalk:Imperial Cutter/@comment-173.172.165.176-20180510221033/@comment-192.136.161.33-20180511130652\nTalk:Imperial Cutter/@comment-173.172.165.176-20180510221033/@comment-2601:281:8200:50:3060:926B:FD96:92F2-20181103082726\nTalk:Imperial Cutter/@comment-173.172.165.176-20180510221033/@comment-30309427-20181218194605\nTalk:Imperial Cutter/@comment-173.49.73.157-20170829170429\nTalk:Imperial Cutter/@comment-173.80.93.74-20151231042213\nTalk:Imperial Cutter/@comment-173.80.93.74-20151231042213/@comment-27311754-20151231114823\nTalk:Imperial Cutter/@comment-174.102.154.114-20150802235227\nTalk:Imperial Cutter/@comment-174.102.154.114-20150802235227/@comment-174.102.154.114-20150817045931\nTalk:Imperial Cutter/@comment-174.102.154.114-20150802235227/@comment-174.102.154.114-20150822204852\nTalk:Imperial Cutter/@comment-174.102.154.114-20150802235227/@comment-26536231-20150803115230\nTalk:Imperial Cutter/@comment-174.102.154.114-20150802235227/@comment-26536231-20150818200126\nTalk:Imperial Cutter/@comment-174.126.248.172-20151126185738\nTalk:Imperial Cutter/@comment-174.126.248.172-20151126185738/@comment-26599825-20151126220828\nTalk:Imperial Cutter/@comment-176.221.77.250-20171228105151\nTalk:Imperial Cutter/@comment-180.216.23.53-20151115060619\nTalk:Imperial Cutter/@comment-180.216.23.53-20151115060619/@comment-182.239.134.212-20151115095611\nTalk:Imperial Cutter/@comment-180.216.23.53-20151115060619/@comment-185.37.87.177-20151115155333\nTalk:Imperial Cutter/@comment-180.216.23.53-20151115060619/@comment-26599825-20151115070255\nTalk:Imperial Cutter/@comment-182.239.134.212-20151115095553\nTalk:Imperial Cutter/@comment-182.239.134.212-20151115095553/@comment-185.37.87.177-20151115155303\nTalk:Imperial Cutter/@comment-182.239.134.212-20151115095553/@comment-25411947-20151115205551\nTalk:Imperial Cutter/@comment-182.239.134.212-20151115095553/@comment-26599825-20151115214247\nTalk:Imperial Cutter/@comment-182.239.134.212-20151115095553/@comment-4986699-20151115210144\nTalk:Imperial Cutter/@comment-185.37.87.177-20151115120402\nTalk:Imperial Cutter/@comment-185.37.87.177-20151115120402/@comment-200.113.32.182-20151116150235\nTalk:Imperial Cutter/@comment-185.37.87.177-20151115120402/@comment-200.113.32.182-20151117145734\nTalk:Imperial Cutter/@comment-185.37.87.177-20151115120402/@comment-26951902-20151116175749\nTalk:Imperial Cutter/@comment-185.37.87.177-20151129201122\nTalk:Imperial Cutter/@comment-185.37.87.177-20151129201122/@comment-185.37.87.177-20151130104311\nTalk:Imperial Cutter/@comment-185.37.87.177-20151129201122/@comment-26951902-20151201211301\nTalk:Imperial Cutter/@comment-185.37.87.177-20151129201122/@comment-31.46.250.132-20151130191641\nTalk:Imperial Cutter/@comment-185.37.87.177-20151129201122/@comment-62.178.151.83-20160119105400\nTalk:Imperial Cutter/@comment-185.37.87.177-20151129201122/@comment-89.184.130.188-20151130074704\nTalk:Imperial Cutter/@comment-188.162.245.213-20180517185304\nTalk:Imperial Cutter/@comment-192.136.172.214-20160401112444\nTalk:Imperial Cutter/@comment-192.136.172.214-20160401112444/@comment-2601:243:480:98D9:86E:EAC:6687:764-20180302012920\nTalk:Imperial Cutter/@comment-192.136.172.214-20160401112444/@comment-64.127.136.202-20160401124312\nTalk:Imperial Cutter/@comment-195.189.180.57-20151220110158\nTalk:Imperial Cutter/@comment-195.189.180.57-20151220110158/@comment-174.135.26.105-20151229053237\nTalk:Imperial Cutter/@comment-2.125.215.187-20151110195000\nTalk:Imperial Cutter/@comment-2.125.215.187-20151110195000/@comment-2.125.215.187-20151110195012\nTalk:Imperial Cutter/@comment-2.125.215.187-20151110195000/@comment-31.46.255.165-20151110222937\nTalk:Imperial Cutter/@comment-2.125.215.187-20151110195000/@comment-86.20.122.182-20151110214024\nTalk:Imperial Cutter/@comment-2.125.215.187-20151110195000/@comment-86.20.122.182-20151110222106\nTalk:Imperial Cutter/@comment-2.125.215.187-20151110195000/@comment-86.20.122.182-20151111115924\nTalk:Imperial Cutter/@comment-2.29.213.197-20170214205819\nTalk:Imperial Cutter/@comment-200.113.32.182-20151111151306\nTalk:Imperial Cutter/@comment-200.113.32.182-20151111151306/@comment-200.113.32.182-20151111153158\nTalk:Imperial Cutter/@comment-200.113.32.182-20151111151306/@comment-27032150-20151111151436\nTalk:Imperial Cutter/@comment-200.113.32.182-20151111151306/@comment-27032150-20151111163955\nTalk:Imperial Cutter/@comment-200.113.32.182-20151111151306/@comment-27032150-20151112073527\nTalk:Imperial Cutter/@comment-200.113.32.182-20151111151306/@comment-27139263-20151111220040\nTalk:Imperial Cutter/@comment-200.113.32.182-20151111151306/@comment-27139263-20151112193117\nTalk:Imperial Cutter/@comment-2001:5B0:4BC0:9F0:0:FF:FEBD:63F2-20180918055309\nTalk:Imperial Cutter/@comment-2001:5B0:4BC0:9F0:0:FF:FEBD:63F2-20180918055309/@comment-2602:306:CE29:B0D0:5116:F35D:1759:419F-20191009084819\nTalk:Imperial Cutter/@comment-2001:5B0:4BC0:D9E0:0:FF:FEBD:1C0-20180506200213\nTalk:Imperial Cutter/@comment-211.26.211.103-20170608121741\nTalk:Imperial Cutter/@comment-211.26.211.103-20170608121741/@comment-2600:6C5C:6C00:3B26:DA2:DE55:B32:5310-20171119215804\nTalk:Imperial Cutter/@comment-212.112.149.50-20160725144649\nTalk:Imperial Cutter/@comment-212.112.149.50-20160725144649/@comment-125.237.3.1-20161016012314\nTalk:Imperial Cutter/@comment-212.112.149.50-20160725144649/@comment-2601:243:480:98D9:788F:B55:563F:D8C3-20180420020713\nTalk:Imperial Cutter/@comment-212.112.149.50-20160725144649/@comment-32843761-20180421173851\nTalk:Imperial Cutter/@comment-212.112.154.177-20160516123552\nTalk:Imperial Cutter/@comment-212.112.154.177-20160516123552/@comment-125.237.7.64-20161125200748\nTalk:Imperial Cutter/@comment-212.112.154.177-20160516123552/@comment-2601:243:480:98D9:C5B6:A736:26BC:C6ED-20180319002339\nTalk:Imperial Cutter/@comment-212.112.154.177-20160516123552/@comment-26951902-20160530110650\nTalk:Imperial Cutter/@comment-212.112.154.177-20160516123552/@comment-75.130.28.30-20160521061911\nTalk:Imperial Cutter/@comment-212.59.37.193-20151119090944\nTalk:Imperial Cutter/@comment-212.59.37.193-20151119090944/@comment-212.59.37.193-20151120065540\nTalk:Imperial Cutter/@comment-212.59.37.193-20151119090944/@comment-212.59.37.193-20151123091901\nTalk:Imperial Cutter/@comment-212.59.37.193-20151119090944/@comment-25450485-20151122142152\nTalk:Imperial Cutter/@comment-212.59.37.193-20151119090944/@comment-78.49.75.139-20151119211527\nTalk:Imperial Cutter/@comment-24.132.70.227-20160127202902\nTalk:Imperial Cutter/@comment-24.183.224.105-20180507041900\nTalk:Imperial Cutter/@comment-24.183.224.105-20180507041900/@comment-71.12.150.53-20180906190500\nTalk:Imperial Cutter/@comment-25250354-20160816094149\nTalk:Imperial Cutter/@comment-25250354-20160816094149/@comment-125.237.3.1-20161013221854\nTalk:Imperial Cutter/@comment-25250354-20160816094149/@comment-168.99.198.78-20180222050059\nTalk:Imperial Cutter/@comment-25250354-20160816094149/@comment-25250354-20160816110259\nTalk:Imperial Cutter/@comment-25250354-20160816094149/@comment-25250354-20160816113848\nTalk:Imperial Cutter/@comment-25250354-20160816094149/@comment-2601:243:480:98D9:98A2:D697:8B24:AE92-20180311021408\nTalk:Imperial Cutter/@comment-25250354-20160816094149/@comment-28434084-20160816095549\nTalk:Imperial Cutter/@comment-25250354-20160816094149/@comment-28434084-20160816112315\nTalk:Imperial Cutter/@comment-25250354-20160816094149/@comment-28774381-20161216215043\nTalk:Imperial Cutter/@comment-25411947-20151126114236\nTalk:Imperial Cutter/@comment-25450485-20150916164738\nTalk:Imperial Cutter/@comment-25450485-20150916164738/@comment-25450485-20150916200419\nTalk:Imperial Cutter/@comment-25450485-20150916164738/@comment-26536231-20150916182154\nTalk:Imperial Cutter/@comment-25450485-20150916164738/@comment-78.48.77.74-20151006092356\nTalk:Imperial Cutter/@comment-25450485-20151010195843\nTalk:Imperial Cutter/@comment-25450485-20151010195843/@comment-185.37.87.177-20151019122631\nTalk:Imperial Cutter/@comment-25450485-20151010195843/@comment-24.10.133.211-20151011034727\nTalk:Imperial Cutter/@comment-25450485-20151122141537\nTalk:Imperial Cutter/@comment-2600:1008:B168:6A36:D30:CA2C:93EA:1244-20191013033049\nTalk:Imperial Cutter/@comment-2600:100D:B127:9412:52D:4E1C:C8A:3D7C-20190506000226\nTalk:Imperial Cutter/@comment-2602:306:CE29:B0D0:6C39:C1D4:D66B:310A-20190914063050\nTalk:Imperial Cutter/@comment-2602:306:CE29:B0D0:D4EB:30EB:96B9:9C46-20190928120132\nTalk:Imperial Cutter/@comment-26361572-20151129012333\nTalk:Imperial Cutter/@comment-26361572-20151129012333/@comment-26361572-20151130170051\nTalk:Imperial Cutter/@comment-26361572-20151129012333/@comment-27115814-20151130160923\nTalk:Imperial Cutter/@comment-26391992-20151114160414\nTalk:Imperial Cutter/@comment-26391992-20151115112840\nTalk:Imperial Cutter/@comment-26391992-20151115112840/@comment-195.70.101.49-20151118162109\nTalk:Imperial Cutter/@comment-26391992-20151115112840/@comment-200.113.32.182-20151116145516\nTalk:Imperial Cutter/@comment-26391992-20151115112840/@comment-200.113.32.182-20151117150152\nTalk:Imperial Cutter/@comment-26391992-20151115112840/@comment-26391992-20151116211616\nTalk:Imperial Cutter/@comment-26391992-20151115112840/@comment-27115814-20151118161135\nTalk:Imperial Cutter/@comment-26391992-20151122144303\nTalk:Imperial Cutter/@comment-26391992-20151123170904\nTalk:Imperial Cutter/@comment-26506222-20150721082223\nTalk:Imperial Cutter/@comment-26506222-20150721082223/@comment-104.245.77.23-20150729024955\nTalk:Imperial Cutter/@comment-26506222-20150721082223/@comment-26536231-20150729020903\nTalk:Imperial Cutter/@comment-26506222-20150721082223/@comment-27076524-20151014101849\nTalk:Imperial Cutter/@comment-27019965-20160617090814\nTalk:Imperial Cutter/@comment-27032150-20151111052243\nTalk:Imperial Cutter/@comment-27032150-20151113231025\nTalk:Imperial Cutter/@comment-27032150-20151115104653\nTalk:Imperial Cutter/@comment-27077258-20160225164111\nTalk:Imperial Cutter/@comment-27115814-20151111065410\nTalk:Imperial Cutter/@comment-27115814-20151111065410/@comment-24.10.133.211-20151111133952\nTalk:Imperial Cutter/@comment-27115814-20151111065410/@comment-27115814-20151112172049\nTalk:Imperial Cutter/@comment-27115814-20151112172219\nTalk:Imperial Cutter/@comment-27115814-20151112172219/@comment-27115814-20151116161511\nTalk:Imperial Cutter/@comment-27115814-20151112172219/@comment-68.110.3.225-20151114003918\nTalk:Imperial Cutter/@comment-27115814-20151117183733\nTalk:Imperial Cutter/@comment-27139263-20151114140429\nTalk:Imperial Cutter/@comment-27139263-20151114140429/@comment-4986699-20151114171021\nTalk:Imperial Cutter/@comment-27190931-20151110230615\nTalk:Imperial Cutter/@comment-27192512-20151111045020\nTalk:Imperial Cutter/@comment-27386894-20151222221430\nTalk:Imperial Cutter/@comment-27386894-20151222221430/@comment-1640573-20160115040431\nTalk:Imperial Cutter/@comment-27386894-20151222221430/@comment-27115814-20160106162815\nTalk:Imperial Cutter/@comment-27386894-20151224230633\nTalk:Imperial Cutter/@comment-27496372-20160208012844\nTalk:Imperial Cutter/@comment-27677046-20160126000720\nTalk:Imperial Cutter/@comment-27677046-20160126000720/@comment-79.244.2.47-20160214204932\nTalk:Imperial Cutter/@comment-27677046-20160126000720/@comment-82.131.42.61-20160126121604\nTalk:Imperial Cutter/@comment-27677046-20160126000720/@comment-91.154.94.135-20160604103725\nTalk:Imperial Cutter/@comment-28434084-20160511124204\nTalk:Imperial Cutter/@comment-28434084-20160511124204/@comment-192.136.173.19-20160518201805\nTalk:Imperial Cutter/@comment-28434084-20160511124204/@comment-192.136.173.19-20160523155604\nTalk:Imperial Cutter/@comment-28434084-20160511124204/@comment-27115814-20160511174757\nTalk:Imperial Cutter/@comment-28434084-20160511124204/@comment-28434084-20160522074227\nTalk:Imperial Cutter/@comment-28434084-20160511124204/@comment-77.250.109.152-20160518044936\nTalk:Imperial Cutter/@comment-28434084-20160618084239\nTalk:Imperial Cutter/@comment-2A02:587:3508:5400:2985:741E:6EA2:5F23-20180523104608\nTalk:Imperial Cutter/@comment-2A02:587:3508:5400:2985:741E:6EA2:5F23-20180523104608/@comment-187.144.97.1-20180627015444\nTalk:Imperial Cutter/@comment-2A02:587:3508:5400:2985:741E:6EA2:5F23-20180523104608/@comment-192.136.163.15-20180719210615\nTalk:Imperial Cutter/@comment-2A02:587:3508:5400:2985:741E:6EA2:5F23-20180523104608/@comment-25527827-20180621112323\nTalk:Imperial Cutter/@comment-2A02:587:3508:5400:2985:741E:6EA2:5F23-20180523104608/@comment-2601:281:8200:50:3060:926B:FD96:92F2-20181103082626\nTalk:Imperial Cutter/@comment-2A02:587:3508:5400:2985:741E:6EA2:5F23-20180523104608/@comment-2602:306:CE29:B0D0:5116:F35D:1759:419F-20191009085152\nTalk:Imperial Cutter/@comment-2A02:587:3508:5400:2985:741E:6EA2:5F23-20180523104608/@comment-32843761-20180621012405\nTalk:Imperial Cutter/@comment-2A02:587:3508:5400:2985:741E:6EA2:5F23-20180523104608/@comment-41.114.8.9-20180719133825\nTalk:Imperial Cutter/@comment-2A02:587:3508:5400:2985:741E:6EA2:5F23-20180523104608/@comment-50.201.158.110-20181017150416\nTalk:Imperial Cutter/@comment-2A02:587:3508:5400:2985:741E:6EA2:5F23-20180523104608/@comment-69.114.195.213-20180605020312\nTalk:Imperial Cutter/@comment-2A02:587:3508:5400:2985:741E:6EA2:5F23-20180523104608/@comment-71.12.150.53-20180906190306\nTalk:Imperial Cutter/@comment-2A02:587:3508:5400:2985:741E:6EA2:5F23-20180523104608/@comment-98.4.57.125-20180621010739\nTalk:Imperial Cutter/@comment-2A02:908:1581:740:259A:964C:ABCF:2A3A-20170920023835\nTalk:Imperial Cutter/@comment-2A02:908:1581:740:259A:964C:ABCF:2A3A-20170920023835/@comment-2604:6000:A403:D900:1868:384F:C66C:8ADE-20170922035935\nTalk:Imperial Cutter/@comment-30309427-20181116044853\nTalk:Imperial Cutter/@comment-30309427-20181116044853/@comment-185.154.73.239-20190201081813\nTalk:Imperial Cutter/@comment-30309427-20181116044853/@comment-43982350-20200914195450\nTalk:Imperial Cutter/@comment-31.46.249.104-20151208220100\nTalk:Imperial Cutter/@comment-31.46.249.104-20151208220100/@comment-27034370-20160105012503\nTalk:Imperial Cutter/@comment-31.46.249.104-20151208220100/@comment-27115814-20151209162217\nTalk:Imperial Cutter/@comment-31.46.249.104-20151208220100/@comment-31.46.253.185-20151209201402\nTalk:Imperial Cutter/@comment-31.46.249.19-20151128105419\nTalk:Imperial Cutter/@comment-31.46.249.19-20151128105419/@comment-26361572-20151129012814\nTalk:Imperial Cutter/@comment-31.46.249.19-20151128105419/@comment-27139263-20151128150239\nTalk:Imperial Cutter/@comment-31.46.249.19-20151128105419/@comment-31.18.194.107-20151128211406\nTalk:Imperial Cutter/@comment-31.46.249.19-20151128105419/@comment-31.46.249.141-20151128182342\nTalk:Imperial Cutter/@comment-31.46.249.19-20151128105419/@comment-94.42.253.237-20151202200440\nTalk:Imperial Cutter/@comment-31.46.249.196-20151129092004\nTalk:Imperial Cutter/@comment-31.46.249.196-20151129092004/@comment-26116574-20151201013930\nTalk:Imperial Cutter/@comment-31.46.249.196-20151129092004/@comment-26361572-20151129112601\nTalk:Imperial Cutter/@comment-31.46.249.196-20151129092004/@comment-67.187.119.225-20151202035438\nTalk:Imperial Cutter/@comment-31.46.249.196-20151129092004/@comment-94.42.253.237-20151202200150\nTalk:Imperial Cutter/@comment-31.46.250.136-20151117120834\nTalk:Imperial Cutter/@comment-31.46.250.136-20151117120834/@comment-185.37.87.177-20151117132925\nTalk:Imperial Cutter/@comment-31.46.250.136-20151117120834/@comment-200.113.32.182-20151117145501\nTalk:Imperial Cutter/@comment-31.46.250.136-20151117120834/@comment-200.113.32.182-20151118154141\nTalk:Imperial Cutter/@comment-31.46.250.136-20151117120834/@comment-26599825-20151117153816\nTalk:Imperial Cutter/@comment-31.46.250.136-20151117120834/@comment-26599825-20151117171323\nTalk:Imperial Cutter/@comment-31.46.250.136-20151117120834/@comment-31.46.249.216-20151117162855\nTalk:Imperial Cutter/@comment-31.46.250.136-20151117120834/@comment-91.236.210.184-20151120083956\nTalk:Imperial Cutter/@comment-31.46.251.244-20151123164417\nTalk:Imperial Cutter/@comment-31.46.251.244-20151123164417/@comment-109.196.60.79-20151123184632\nTalk:Imperial Cutter/@comment-31.46.251.244-20151123164417/@comment-25450485-20151124225751\nTalk:Imperial Cutter/@comment-31.46.251.244-20151123164417/@comment-25450485-20151124232031\nTalk:Imperial Cutter/@comment-31.46.251.244-20151123164417/@comment-26599825-20151127061438\nTalk:Imperial Cutter/@comment-31.46.251.244-20151123164417/@comment-26951902-20151123164620\nTalk:Imperial Cutter/@comment-31.46.251.244-20151123164417/@comment-26951902-20151124165950\nTalk:Imperial Cutter/@comment-31.46.251.244-20151123164417/@comment-27198286-20151124004317\nTalk:Imperial Cutter/@comment-31.46.251.244-20151123164417/@comment-27198286-20151124185441\nTalk:Imperial Cutter/@comment-31.46.251.244-20151123164417/@comment-27198286-20151124220331\nTalk:Imperial Cutter/@comment-31.46.251.244-20151123164417/@comment-27198286-20151124230619\nTalk:Imperial Cutter/@comment-31.46.251.244-20151123164417/@comment-31.46.248.196-20151124215225\nTalk:Imperial Cutter/@comment-31.46.251.244-20151123164417/@comment-31.46.255.40-20151124163351\nTalk:Imperial Cutter/@comment-31.46.251.244-20151123164417/@comment-95.45.48.113-20151127023711\nTalk:Imperial Cutter/@comment-31.46.251.244-20151123164417/@comment-95.45.48.113-20151127214659\nTalk:Imperial Cutter/@comment-31.46.253.158-20151203205049\nTalk:Imperial Cutter/@comment-31.46.253.158-20151203205049/@comment-12.5.54.135-20151209164205\nTalk:Imperial Cutter/@comment-31.46.253.158-20151203205049/@comment-99.239.182.156-20151205094721\nTalk:Imperial Cutter/@comment-31.46.253.158-20151203205049/@comment-99.239.182.156-20151212043222\nTalk:Imperial Cutter/@comment-31.46.254.23-20151202191621\nTalk:Imperial Cutter/@comment-31.46.254.23-20151202191621/@comment-12.5.54.135-20151209164227\nTalk:Imperial Cutter/@comment-31.46.254.23-20151202191621/@comment-185.37.87.177-20151219151809\nTalk:Imperial Cutter/@comment-31.46.254.23-20151202191621/@comment-24.10.133.211-20151203073542\nTalk:Imperial Cutter/@comment-31.46.254.23-20151202191621/@comment-26361572-20151203101705\nTalk:Imperial Cutter/@comment-31.46.254.23-20151202191621/@comment-26391992-20151203212959\nTalk:Imperial Cutter/@comment-31.46.254.23-20151202191621/@comment-27139263-20151202221253\nTalk:Imperial Cutter/@comment-31.46.254.23-20151202191621/@comment-27336833-20151203074306\nTalk:Imperial Cutter/@comment-31.46.254.23-20151202191621/@comment-86.161.199.25-20151202201500\nTalk:Imperial Cutter/@comment-31.46.254.23-20151202191621/@comment-94.42.253.237-20151202195905\nTalk:Imperial Cutter/@comment-33441314-20180124010933\nTalk:Imperial Cutter/@comment-33441314-20180124010933/@comment-192.136.161.33-20180124021027\nTalk:Imperial Cutter/@comment-33441314-20180124010933/@comment-2601:281:8200:50:3060:926B:FD96:92F2-20181103083426\nTalk:Imperial Cutter/@comment-33441314-20180124010933/@comment-33441314-20180125113813\nTalk:Imperial Cutter/@comment-41.114.0.130-20181012093536\nTalk:Imperial Cutter/@comment-41.114.0.130-20181012093536/@comment-173.49.250.165-20181013021155\nTalk:Imperial Cutter/@comment-41.114.0.130-20181012093536/@comment-192.136.170.98-20181128161738\nTalk:Imperial Cutter/@comment-41.114.0.130-20181012093536/@comment-192.136.170.98-20190105162225\nTalk:Imperial Cutter/@comment-41.114.0.130-20181012093536/@comment-2001:5B0:4BD9:A5F0:0:FF:FEBD:63F2-20181014212934\nTalk:Imperial Cutter/@comment-41.114.0.130-20181012093536/@comment-2001:5B0:4BD9:ED70:0:FF:FEBD:63F2-20181119192139\nTalk:Imperial Cutter/@comment-41.114.0.130-20181012093536/@comment-50.201.158.110-20181017150325\nTalk:Imperial Cutter/@comment-41.114.0.130-20181012093536/@comment-90.200.46.38-20181103100359\nTalk:Imperial Cutter/@comment-41.114.0.130-20181012093536/@comment-90.200.46.38-20181128154520\nTalk:Imperial Cutter/@comment-41.114.0.130-20181012093536/@comment-90.200.49.195-20190104164747\nTalk:Imperial Cutter/@comment-42.112.88.75-20161003055505\nTalk:Imperial Cutter/@comment-42.112.88.75-20161003055505/@comment-5959508-20161003081013\nTalk:Imperial Cutter/@comment-44180665-20200406135243\nTalk:Imperial Cutter/@comment-44180665-20200406135243/@comment-43982350-20200914192318\nTalk:Imperial Cutter/@comment-44180665-20200406135243/@comment-45677112-20200902180101\nTalk:Imperial Cutter/@comment-45406101-20200406110501\nTalk:Imperial Cutter/@comment-46611016-20200813113600\nTalk:Imperial Cutter/@comment-47.198.13.253-20191029170348\nTalk:Imperial Cutter/@comment-47.198.13.253-20191029170348/@comment-192.136.172.44-20191101202239\nTalk:Imperial Cutter/@comment-5.2.209.149-20191002074733\nTalk:Imperial Cutter/@comment-50.125.75.120-20161103214426\nTalk:Imperial Cutter/@comment-50.125.75.120-20161103214426/@comment-2601:243:480:98D9:C5B6:A736:26BC:C6ED-20180319002524\nTalk:Imperial Cutter/@comment-50.125.75.120-20161103214426/@comment-84.3.175.207-20161211153012\nTalk:Imperial Cutter/@comment-50.126.116.115-20180427104536\nTalk:Imperial Cutter/@comment-5471809-20170706204908\nTalk:Imperial Cutter/@comment-5471809-20170706204908/@comment-166.137.136.128-20171121041358\nTalk:Imperial Cutter/@comment-5471809-20170706204908/@comment-192.136.161.33-20171121204451\nTalk:Imperial Cutter/@comment-5471809-20170706204908/@comment-192.136.161.33-20180313174733\nTalk:Imperial Cutter/@comment-5471809-20170706204908/@comment-213.14.171.51-20170714135240\nTalk:Imperial Cutter/@comment-5471809-20170706204908/@comment-2601:243:480:98D9:788F:B55:563F:D8C3-20180420020542\nTalk:Imperial Cutter/@comment-5471809-20170706204908/@comment-2601:243:480:98D9:86E:EAC:6687:764-20180302012504\nTalk:Imperial Cutter/@comment-5471809-20170706204908/@comment-4986699-20171101075944\nTalk:Imperial Cutter/@comment-5471809-20170706204908/@comment-4986699-20171121073832\nTalk:Imperial Cutter/@comment-5471809-20170706204908/@comment-73.38.127.210-20180413012045\nTalk:Imperial Cutter/@comment-5471809-20170706204908/@comment-77.102.200.67-20171215173655\nTalk:Imperial Cutter/@comment-5471809-20170706204908/@comment-94.12.31.80-20170725172040\nTalk:Imperial Cutter/@comment-64.231.90.134-20180404063421\nTalk:Imperial Cutter/@comment-64.231.90.134-20180404063421/@comment-192.136.161.33-20180405031150\nTalk:Imperial Cutter/@comment-64.231.90.134-20180404063421/@comment-64.231.90.134-20180404063759\nTalk:Imperial Cutter/@comment-65.120.80.118-20200131163109\nTalk:Imperial Cutter/@comment-65.129.22.235-20151216034106\nTalk:Imperial Cutter/@comment-67.1.191.215-20151114011140\nTalk:Imperial Cutter/@comment-67.1.191.215-20151114011140/@comment-68.110.3.225-20151114013852\nTalk:Imperial Cutter/@comment-67.164.206.232-20151107152622\nTalk:Imperial Cutter/@comment-67.164.206.232-20151107152622/@comment-26599825-20151108102303\nTalk:Imperial Cutter/@comment-67.164.206.232-20151107152622/@comment-26599825-20151108154502\nTalk:Imperial Cutter/@comment-67.164.206.232-20151107152622/@comment-27032150-20151108153421\nTalk:Imperial Cutter/@comment-67.164.206.232-20151107152622/@comment-92.201.26.118-20151110211920\nTalk:Imperial Cutter/@comment-67.164.206.232-20151111051959\nTalk:Imperial Cutter/@comment-67.164.206.232-20151112235345\nTalk:Imperial Cutter/@comment-67.164.206.232-20151112235345/@comment-200.112.19.31-20151113113125\nTalk:Imperial Cutter/@comment-67.164.206.232-20151112235345/@comment-26599825-20151113072939\nTalk:Imperial Cutter/@comment-67.164.206.232-20151112235345/@comment-27139263-20151113072307\nTalk:Imperial Cutter/@comment-67.164.206.232-20151112235345/@comment-27156860-20151113085837\nTalk:Imperial Cutter/@comment-67.164.206.232-20151114021024\nTalk:Imperial Cutter/@comment-67.164.206.232-20151114021024/@comment-26391992-20151114210439\nTalk:Imperial Cutter/@comment-67.164.206.232-20151115015648\nTalk:Imperial Cutter/@comment-67.164.206.232-20151115015648/@comment-185.37.87.177-20151115155544\nTalk:Imperial Cutter/@comment-67.164.206.232-20151117043852\nTalk:Imperial Cutter/@comment-67.164.206.232-20151124222746\nTalk:Imperial Cutter/@comment-67.164.206.232-20151124222746/@comment-26391992-20151125091712\nTalk:Imperial Cutter/@comment-68.110.3.225-20151114004106\nTalk:Imperial Cutter/@comment-68.186.130.248-20180503035037\nTalk:Imperial Cutter/@comment-68.186.130.248-20180503035037/@comment-187.144.97.1-20180627015609\nTalk:Imperial Cutter/@comment-68.186.130.248-20180503035037/@comment-2600:1700:3480:5620:846E:8B0F:91B0:825-20190228171505\nTalk:Imperial Cutter/@comment-70.192.140.186-20151114011909\nTalk:Imperial Cutter/@comment-71.12.150.53-20180906185935\nTalk:Imperial Cutter/@comment-71.12.150.53-20180906185935/@comment-104.38.35.7-20180913210415\nTalk:Imperial Cutter/@comment-71.12.150.53-20180906185935/@comment-185.154.73.239-20190201082034\nTalk:Imperial Cutter/@comment-71.12.150.53-20180906185935/@comment-4986699-20180909152625\nTalk:Imperial Cutter/@comment-71.21.3.159-20150724223454\nTalk:Imperial Cutter/@comment-72.201.121.214-20151201084352\nTalk:Imperial Cutter/@comment-72.241.143.238-20151222093411\nTalk:Imperial Cutter/@comment-72.241.143.238-20151222093411/@comment-185.12.152.254-20160114071607\nTalk:Imperial Cutter/@comment-72.241.147.127-20180125172543\nTalk:Imperial Cutter/@comment-72.241.147.127-20180125172543/@comment-187.64.110.30-20180204005145\nTalk:Imperial Cutter/@comment-72.241.147.127-20180125172543/@comment-24.183.224.105-20180507041619\nTalk:Imperial Cutter/@comment-72.241.147.127-20180125172543/@comment-2601:243:480:98D9:86E:EAC:6687:764-20180302012251\nTalk:Imperial Cutter/@comment-72.241.147.127-20180125172543/@comment-2601:243:480:98D9:86E:EAC:6687:764-20180302012556\nTalk:Imperial Cutter/@comment-72.241.147.127-20180125172543/@comment-2602:306:CE29:B0D0:48BD:E89F:1BCB:88A0-20191020072833\nTalk:Imperial Cutter/@comment-72.241.147.127-20180125172543/@comment-32843761-20190213193152\nTalk:Imperial Cutter/@comment-72.241.147.127-20180125172543/@comment-69.114.195.213-20180915215353\nTalk:Imperial Cutter/@comment-72.241.147.127-20180125172543/@comment-76.115.197.126-20180314041647\nTalk:Imperial Cutter/@comment-73.1.55.15-20151017093940\nTalk:Imperial Cutter/@comment-73.244.35.11-20160208221214\nTalk:Imperial Cutter/@comment-73.244.35.11-20160208221214/@comment-27496372-20160209135322\nTalk:Imperial Cutter/@comment-75.88.60.139-20151222224428\nTalk:Imperial Cutter/@comment-76.71.51.6-20170308052605\nTalk:Imperial Cutter/@comment-76.71.51.6-20170308052605/@comment-192.136.161.52-20170308132309\nTalk:Imperial Cutter/@comment-77.153.203.82-20170905161629\nTalk:Imperial Cutter/@comment-77.153.203.82-20170905161629/@comment-2600:6C5A:407F:FAA4:83:9656:948F:4B81-20171014090854\nTalk:Imperial Cutter/@comment-77.182.158.152-20151216145006\nTalk:Imperial Cutter/@comment-78.50.163.130-20150805172929\nTalk:Imperial Cutter/@comment-79.179.58.49-20151110222625\nTalk:Imperial Cutter/@comment-79.179.58.49-20151110222625/@comment-185.37.87.177-20151110224125\nTalk:Imperial Cutter/@comment-79.179.58.49-20151110222625/@comment-67.161.40.245-20151114000036\nTalk:Imperial Cutter/@comment-79.179.58.49-20151110222625/@comment-82.166.140.125-20151111130557\nTalk:Imperial Cutter/@comment-79.179.58.49-20151110222625/@comment-90.231.177.208-20151112234454\nTalk:Imperial Cutter/@comment-79.51.109.51-20160607165330\nTalk:Imperial Cutter/@comment-79.51.109.51-20160607165330/@comment-9472148-20160707165250\nTalk:Imperial Cutter/@comment-80.213.234.192-20151202210507\nTalk:Imperial Cutter/@comment-80.213.234.192-20151202210507/@comment-26361572-20151203101442\nTalk:Imperial Cutter/@comment-80.54.231.252-20200111155008\nTalk:Imperial Cutter/@comment-81.104.211.104-20160116175233\nTalk:Imperial Cutter/@comment-81.104.211.104-20160116175233/@comment-101.184.150.174-20160117081112\nTalk:Imperial Cutter/@comment-81.104.211.104-20160116175233/@comment-185.37.87.177-20160217102532\nTalk:Imperial Cutter/@comment-81.104.211.104-20160116175233/@comment-71.9.25.119-20160225133330\nTalk:Imperial Cutter/@comment-81.104.211.104-20160116175233/@comment-81.104.211.104-20160117134502\nTalk:Imperial Cutter/@comment-82.20.218.159-20151220223429\nTalk:Imperial Cutter/@comment-82.20.218.159-20151220223429/@comment-2601:243:480:98D9:788F:B55:563F:D8C3-20180420020859\nTalk:Imperial Cutter/@comment-83.26.250.223-20151119182251\nTalk:Imperial Cutter/@comment-83.26.250.223-20151119182251/@comment-26951902-20151121142247\nTalk:Imperial Cutter/@comment-84.168.106.87-20151118204002\nTalk:Imperial Cutter/@comment-84.168.106.87-20151118204002/@comment-26391992-20151122144015\nTalk:Imperial Cutter/@comment-84.168.106.87-20151118204002/@comment-26951902-20151118233315\nTalk:Imperial Cutter/@comment-85.76.150.251-20151216065415\nTalk:Imperial Cutter/@comment-85.76.150.251-20151216065415/@comment-24.10.133.211-20151216181609\nTalk:Imperial Cutter/@comment-85.76.150.251-20151216065415/@comment-88.115.191.247-20151216084159\nTalk:Imperial Cutter/@comment-86.11.52.143-20151019142247\nTalk:Imperial Cutter/@comment-86.11.52.143-20151019142247/@comment-25450485-20151019193213\nTalk:Imperial Cutter/@comment-86.11.52.143-20151019142247/@comment-46.188.19.222-20151019155116\nTalk:Imperial Cutter/@comment-86.11.52.143-20151019142247/@comment-81.141.53.110-20151031170114\nTalk:Imperial Cutter/@comment-86.11.52.143-20151019142247/@comment-95.45.48.113-20151027155417\nTalk:Imperial Cutter/@comment-86.14.221.83-20160221001019\nTalk:Imperial Cutter/@comment-86.14.221.83-20160221001019/@comment-125.237.7.64-20161125201104\nTalk:Imperial Cutter/@comment-86.14.221.83-20160221001019/@comment-173.172.185.51-20160221045015\nTalk:Imperial Cutter/@comment-86.14.221.83-20160221001019/@comment-27077258-20160225174907\nTalk:Imperial Cutter/@comment-86.14.221.83-20160221001019/@comment-77.102.250.232-20170504091806\nTalk:Imperial Cutter/@comment-86.20.122.182-20151111120040\nTalk:Imperial Cutter/@comment-87.104.144.99-20151209225124\nTalk:Imperial Cutter/@comment-87.189.156.139-20151216170919\nTalk:Imperial Cutter/@comment-87.189.156.139-20151216170919/@comment-108.201.101.121-20151217133943\nTalk:Imperial Cutter/@comment-88.111.80.1-20191024172757\nTalk:Imperial Cutter/@comment-88.115.190.42-20151112130334\nTalk:Imperial Cutter/@comment-88.206.9.47-20151125142531\nTalk:Imperial Cutter/@comment-89.103.44.238-20150806210852\nTalk:Imperial Cutter/@comment-89.103.44.238-20150806210852/@comment-108.184.142.252-20150920014441\nTalk:Imperial Cutter/@comment-89.103.44.238-20150806210852/@comment-108.211.86.193-20150912010613\nTalk:Imperial Cutter/@comment-89.103.44.238-20150806210852/@comment-66.58.168.34-20150824023920\nTalk:Imperial Cutter/@comment-89.103.44.238-20150806210852/@comment-98.165.189.29-20151001195130\nTalk:Imperial Cutter/@comment-89.115.173.106-20180813145315\nTalk:Imperial Cutter/@comment-89.2.77.125-20150919135604\nTalk:Imperial Cutter/@comment-89.2.77.125-20150919135604/@comment-73.10.181.94-20150919145133\nTalk:Imperial Cutter/@comment-90.200.46.38-20181028192914\nTalk:Imperial Cutter/@comment-90.219.50.166-20160610220047\nTalk:Imperial Cutter/@comment-90.219.50.166-20160610220047/@comment-192.136.161.33-20180311041408\nTalk:Imperial Cutter/@comment-90.219.50.166-20160610220047/@comment-2601:243:480:98D9:98A2:D697:8B24:AE92-20180311021624\nTalk:Imperial Cutter/@comment-90.219.50.166-20160610220047/@comment-71.9.25.119-20160611233722\nTalk:Imperial Cutter/@comment-90.231.177.208-20151113210744\nTalk:Imperial Cutter/@comment-92.108.198.210-20160123145947\nTalk:Imperial Cutter/@comment-92.30.133.75-20151013013353\nTalk:Imperial Cutter/@comment-92.30.133.75-20151013013353/@comment-184.99.152.14-20151025015731\nTalk:Imperial Cutter/@comment-92.30.133.75-20151013013353/@comment-185.37.87.177-20151019122337\nTalk:Imperial Cutter/@comment-92.30.133.75-20151013013353/@comment-185.37.87.177-20151019122514\nTalk:Imperial Cutter/@comment-92.30.133.75-20151013013353/@comment-25450485-20151013151559\nTalk:Imperial Cutter/@comment-92.30.133.75-20151013013353/@comment-26599825-20151013094528\nTalk:Imperial Cutter/@comment-93.186.60.222-20151117074707\nTalk:Imperial Cutter/@comment-94.1.46.36-20150724234428\nTalk:Imperial Cutter/@comment-94.1.46.36-20150724234428/@comment-26599825-20150727205623\nTalk:Imperial Cutter/@comment-94.1.46.36-20150724234428/@comment-78.48.77.74-20151006092821\nTalk:Imperial Cutter/@comment-94.1.46.36-20150724234428/@comment-80.110.82.196-20150727113952\nTalk:Imperial Cutter/@comment-9472148-20160128145945\nTalk:Imperial Cutter/@comment-9472148-20160128145945/@comment-100.36.127.151-20160220034101\nTalk:Imperial Cutter/@comment-9472148-20160129031904\nTalk:Imperial Cutter/@comment-95.145.93.211-20151120130058\nTalk:Imperial Cutter/@comment-95.145.93.211-20151120130058/@comment-26391992-20151123174800\nTalk:Imperial Cutter/@comment-95.145.93.211-20151120130058/@comment-26951902-20151121221054\nTalk:Imperial Cutter/@comment-95.145.93.211-20151120130058/@comment-27139263-20151120225109\nTalk:Imperial Cutter/@comment-95.145.93.211-20151123223945\nTalk:Imperial Cutter/@comment-95.145.93.211-20151123223945/@comment-26951902-20151124135801\nTalk:Imperial Cutter/@comment-95.45.48.113-20151127220324\nTalk:Imperial Cutter/@comment-95.45.48.113-20151127220324/@comment-26599825-20151128093301\nTalk:Imperial Cutter/@comment-95.45.48.113-20151127220324/@comment-95.45.48.113-20151128020821\nTalk:Imperial Cutter/@comment-95.91.228.28-20160328183238\nTalk:Imperial Cutter/@comment-98.238.90.10-20181224065236\nTalk:Imperial Cutter/@comment-98.238.90.10-20181224065236/@comment-104.38.76.88-20190110035450\nTalk:Imperial Cutter/@comment-98.238.90.10-20181224065236/@comment-192.136.170.98-20181224195734\nTalk:Imperial Cutter/@comment-98.238.90.10-20181224065236/@comment-98.238.90.10-20181224070842\nTalk:Imperial Cutter/@comment-99.0.13.106-20151111164020\nTalk:Imperial Eagle/@comment-100.0.90.43-20150717181901\nTalk:Imperial Eagle/@comment-100.0.90.43-20150717181901/@comment-26009169-20150717201852\nTalk:Imperial Eagle/@comment-101.183.41.240-20150908071159\nTalk:Imperial Eagle/@comment-101.183.41.240-20150908071159/@comment-101.183.41.240-20150910112925\nTalk:Imperial Eagle/@comment-101.183.41.240-20150908071159/@comment-204.112.29.149-20150913020812\nTalk:Imperial Eagle/@comment-101.183.41.240-20150908071159/@comment-26536231-20150908163657\nTalk:Imperial Eagle/@comment-104.137.137.139-20160109073850\nTalk:Imperial Eagle/@comment-108.168.39.252-20150806040003\nTalk:Imperial Eagle/@comment-109.182.52.8-20160128225800\nTalk:Imperial Eagle/@comment-114.76.5.129-20160904051220\nTalk:Imperial Eagle/@comment-139.216.253.11-20150809115814\nTalk:Imperial Eagle/@comment-139.216.253.11-20150809115814/@comment-69.29.216.198-20150827174704\nTalk:Imperial Eagle/@comment-139.216.253.11-20150809115814/@comment-77.234.104.249-20150901181603\nTalk:Imperial Eagle/@comment-151.225.213.103-20151007144840\nTalk:Imperial Eagle/@comment-162.72.41.56-20160522212659\nTalk:Imperial Eagle/@comment-173.44.77.26-20150813102625\nTalk:Imperial Eagle/@comment-173.44.77.26-20150813102625/@comment-104.245.77.23-20150902235943\nTalk:Imperial Eagle/@comment-173.44.77.26-20150813102625/@comment-26536231-20150903011332\nTalk:Imperial Eagle/@comment-173.44.77.26-20150813102625/@comment-68.98.28.9-20150902043420\nTalk:Imperial Eagle/@comment-173.44.77.26-20150813102625/@comment-98.14.0.13-20151006113937\nTalk:Imperial Eagle/@comment-173.44.77.26-20150813102625/@comment-98.165.188.228-20150928050706\nTalk:Imperial Eagle/@comment-184.98.190.163-20151201233810\nTalk:Imperial Eagle/@comment-187.64.110.30-20180129061043\nTalk:Imperial Eagle/@comment-187.64.110.30-20180129061043/@comment-187.145.10.167-20180305051707\nTalk:Imperial Eagle/@comment-187.64.110.30-20180129061043/@comment-187.64.110.30-20180204020842\nTalk:Imperial Eagle/@comment-187.64.110.30-20180129061043/@comment-187.64.98.127-20180323070525\nTalk:Imperial Eagle/@comment-187.64.110.30-20180129061043/@comment-62.242.104.216-20190426082707\nTalk:Imperial Eagle/@comment-187.64.110.30-20180129061043/@comment-78.107.252.238-20180202183747\nTalk:Imperial Eagle/@comment-187.64.110.30-20180129061043/@comment-90.200.46.38-20181119184003\nTalk:Imperial Eagle/@comment-192.136.161.52-20170505121936\nTalk:Imperial Eagle/@comment-193.197.148.126-20160219111540\nTalk:Imperial Eagle/@comment-194.176.105.168-20150721140544\nTalk:Imperial Eagle/@comment-194.176.105.168-20150721140544/@comment-24.184.128.45-20150724010421\nTalk:Imperial Eagle/@comment-194.176.105.168-20150721140544/@comment-24.20.226.246-20150804223743\nTalk:Imperial Eagle/@comment-194.176.105.168-20150721140544/@comment-26536231-20150805021258\nTalk:Imperial Eagle/@comment-194.176.105.168-20150721140544/@comment-68.148.72.31-20150721154214\nTalk:Imperial Eagle/@comment-194.22.238.75-20160219105049\nTalk:Imperial Eagle/@comment-194.22.238.75-20160219105049/@comment-167.21.142.41-20170227155529\nTalk:Imperial Eagle/@comment-198.24.5.13-20151216110647\nTalk:Imperial Eagle/@comment-198.24.5.13-20151216110647/@comment-14.2.177.151-20151216170432\nTalk:Imperial Eagle/@comment-198.24.5.13-20151216110647/@comment-27311754-20151216140719\nTalk:Imperial Eagle/@comment-204.169.28.106-20151125161405\nTalk:Imperial Eagle/@comment-207.162.58.3-20151120014743\nTalk:Imperial Eagle/@comment-207.162.58.3-20151120042237\nTalk:Imperial Eagle/@comment-212.198.117.28-20151014132700\nTalk:Imperial Eagle/@comment-212.198.117.28-20151014132700/@comment-138.75.149.215-20151021132100\nTalk:Imperial Eagle/@comment-212.198.117.28-20151014132700/@comment-151.225.141.17-20151014191554\nTalk:Imperial Eagle/@comment-212.198.117.28-20151014132700/@comment-185.37.87.177-20151014183645\nTalk:Imperial Eagle/@comment-212.198.117.28-20151014132700/@comment-194.209.82.254-20151117120018\nTalk:Imperial Eagle/@comment-23.242.205.117-20150714005053\nTalk:Imperial Eagle/@comment-23.242.205.117-20150714005053/@comment-143.200.40.136-20150913072928\nTalk:Imperial Eagle/@comment-23.242.205.117-20150714005053/@comment-23.242.205.117-20150714005153\nTalk:Imperial Eagle/@comment-23.242.205.117-20150714005053/@comment-71.125.245.12-20150726060803\nTalk:Imperial Eagle/@comment-24.20.104.8-20170126223405\nTalk:Imperial Eagle/@comment-24.20.104.8-20170126223405/@comment-2155082-20170127043536\nTalk:Imperial Eagle/@comment-26391992-20151209090757\nTalk:Imperial Eagle/@comment-26676664-20150714011736\nTalk:Imperial Eagle/@comment-26676664-20150714011736/@comment-184.0.155.40-20150714163718\nTalk:Imperial Eagle/@comment-26676664-20150714011736/@comment-26599825-20150716160937\nTalk:Imperial Eagle/@comment-26676664-20150714011736/@comment-26676664-20150714225248\nTalk:Imperial Eagle/@comment-26676664-20150714011736/@comment-71.125.245.12-20150726060533\nTalk:Imperial Eagle/@comment-26676664-20150714011736/@comment-72.241.143.238-20150720125132\nTalk:Imperial Eagle/@comment-26676664-20150714011736/@comment-80.1.101.124-20150716160454\nTalk:Imperial Eagle/@comment-26676664-20150714011736/@comment-80.110.82.196-20150727000934\nTalk:Imperial Eagle/@comment-26937315-20151221210752\nTalk:Imperial Eagle/@comment-27311754-20151212104732\nTalk:Imperial Eagle/@comment-27311754-20151212104732/@comment-27034370-20160104120156\nTalk:Imperial Eagle/@comment-27573035-20160108200442\nTalk:Imperial Eagle/@comment-27573035-20160108200442/@comment-100.36.174.162-20160417135814\nTalk:Imperial Eagle/@comment-27573035-20160108200442/@comment-27573035-20160111001444\nTalk:Imperial Eagle/@comment-27573035-20160108200442/@comment-80.109.134.10-20160108200823\nTalk:Imperial Eagle/@comment-27646870-20160309225934\nTalk:Imperial Eagle/@comment-27646870-20160309225934/@comment-75.130.28.30-20160313214214\nTalk:Imperial Eagle/@comment-30816899-20200214222029\nTalk:Imperial Eagle/@comment-45677112-20200726151210\nTalk:Imperial Eagle/@comment-4980086-20151207122956\nTalk:Imperial Eagle/@comment-50.149.146.79-20151127033327\nTalk:Imperial Eagle/@comment-50.4.239.175-20160801225921\nTalk:Imperial Eagle/@comment-50.4.239.175-20160801225921/@comment-184.159.128.62-20171016134705\nTalk:Imperial Eagle/@comment-50.4.239.175-20160801225921/@comment-54.234.40.21-20180530172420\nTalk:Imperial Eagle/@comment-50.4.239.175-20160913013311\nTalk:Imperial Eagle/@comment-67.11.0.20-20160101102745\nTalk:Imperial Eagle/@comment-67.164.206.232-20151112233522\nTalk:Imperial Eagle/@comment-67.164.206.232-20151112233522/@comment-194.209.82.254-20151117115851\nTalk:Imperial Eagle/@comment-67.171.151.107-20180904225937\nTalk:Imperial Eagle/@comment-67.21.153.142-20170616150027\nTalk:Imperial Eagle/@comment-67.21.153.142-20170616150027/@comment-170.211.150.62-20171108175729\nTalk:Imperial Eagle/@comment-67.21.153.142-20170616150027/@comment-90.218.66.188-20190607205203\nTalk:Imperial Eagle/@comment-68.146.219.197-20150910180047\nTalk:Imperial Eagle/@comment-68.146.219.197-20150910180047/@comment-4986699-20151001185339\nTalk:Imperial Eagle/@comment-70.30.82.255-20151022001300\nTalk:Imperial Eagle/@comment-70.72.20.206-20160115100332\nTalk:Imperial Eagle/@comment-70.72.20.206-20160115100332/@comment-26391992-20160118081407\nTalk:Imperial Eagle/@comment-70.72.20.206-20160115100332/@comment-40.141.206.198-20180601133246\nTalk:Imperial Eagle/@comment-70.72.20.206-20160115100332/@comment-9472148-20160205232220\nTalk:Imperial Eagle/@comment-71.233.88.91-20160610000502\nTalk:Imperial Eagle/@comment-71.233.88.91-20160610000613\nTalk:Imperial Eagle/@comment-72.241.143.238-20150720125226\nTalk:Imperial Eagle/@comment-72.241.143.238-20150720125226/@comment-26391992-20150726151616\nTalk:Imperial Eagle/@comment-72.241.143.238-20151008073008\nTalk:Imperial Eagle/@comment-72.241.143.238-20151008073008/@comment-86.28.188.9-20151011113845\nTalk:Imperial Eagle/@comment-73.1.55.15-20151008074149\nTalk:Imperial Eagle/@comment-73.1.55.15-20151008074149/@comment-19838348-20151008231329\nTalk:Imperial Eagle/@comment-73.1.55.15-20151008074149/@comment-4986699-20151011144401\nTalk:Imperial Eagle/@comment-73.1.55.15-20151008074149/@comment-73.1.55.15-20151011162056\nTalk:Imperial Eagle/@comment-73.1.55.15-20151008074149/@comment-73.1.55.15-20151011162139\nTalk:Imperial Eagle/@comment-73.209.92.179-20151128211315\nTalk:Imperial Eagle/@comment-75.130.23.188-20150908230651\nTalk:Imperial Eagle/@comment-75.130.23.188-20150908230651/@comment-26536231-20150909002446\nTalk:Imperial Eagle/@comment-75.130.23.188-20150908230651/@comment-92.4.169.155-20150909203316\nTalk:Imperial Eagle/@comment-76.185.89.24-20150815173224\nTalk:Imperial Eagle/@comment-79.135.232.5-20160108195712\nTalk:Imperial Eagle/@comment-82.226.121.139-20150807025345\nTalk:Imperial Eagle/@comment-84.59.126.149-20150901180608\nTalk:Imperial Eagle/@comment-86.154.48.121-20151117204655\nTalk:Imperial Eagle/@comment-89.74.228.150-20150726202328\nTalk:Imperial Eagle/@comment-89.74.228.150-20150726202328/@comment-1.32.70.213-20150803221238\nTalk:Imperial Eagle/@comment-98.225.72.245-20151202231014\nTalk:Imperial Eagle/@comment-98.225.72.245-20151202231014/@comment-180.200.142.246-20151204095455\nTalk:Imperial Eagle/@comment-98.225.72.245-20151202231014/@comment-195.70.101.49-20151204112952\nTalk:Imperial Eagle/@comment-98.225.72.245-20151202231014/@comment-27311754-20151207133826\nTalk:Imperial Hammer/@comment-159.205.245.170-20191221085631\nTalk:Imperial Hammer/@comment-192.136.170.46-20181021164838\nTalk:Imperial Hammer/@comment-2001:5B0:4BD9:A5F0:0:FF:FEBD:63F2-20181020002557\nTalk:Imperial Hammer/@comment-2001:5B0:4BD9:A5F0:0:FF:FEBD:63F2-20181020002557/@comment-192.136.170.98-20181121042506\nTalk:Imperial Hammer/@comment-2001:5B0:4BD9:A5F0:0:FF:FEBD:63F2-20181020002557/@comment-90.200.46.38-20181121011353\nTalk:Imperial Hammer/@comment-2001:5B0:4BD9:A5F0:0:FF:FEBD:63F2-20181020002557/@comment-90.200.46.38-20181122114127\nTalk:Imperial Hammer/@comment-2003:DF:8F20:A449:9817:7E11:43D:E70C-20180414213135\nTalk:Imperial Hammer/@comment-2003:DF:8F20:A449:9817:7E11:43D:E70C-20180414213135/@comment-192.136.161.33-20180416031627\nTalk:Imperial Hammer/@comment-2003:DF:8F20:A449:9817:7E11:43D:E70C-20180414213210\nTalk:Imperial Hammer/@comment-213.127.72.24-20170114024801\nTalk:Imperial Hammer/@comment-213.127.72.24-20170114024801/@comment-213.106.167.9-20180905150953\nTalk:Imperial Hammer/@comment-213.127.72.24-20170114024801/@comment-69.10.114.39-20170422235952\nTalk:Imperial Hammer/@comment-213.127.72.24-20170114024801/@comment-80.26.205.177-20170422231904\nTalk:Imperial Hammer/@comment-213.61.152.30-20191105141722\nTalk:Imperial Hammer/@comment-26247050-20160104030250\nTalk:Imperial Hammer/@comment-26247050-20160104030250/@comment-27496372-20160108131453\nTalk:Imperial Hammer/@comment-26247050-20160104030250/@comment-90.200.46.38-20181113011910\nTalk:Imperial Hammer/@comment-27032150-20151027145330\nTalk:Imperial Hammer/@comment-27032150-20151027145330/@comment-212.10.25.166-20151027151847\nTalk:Imperial Hammer/@comment-27032150-20151027145330/@comment-212.10.25.166-20151027201333\nTalk:Imperial Hammer/@comment-27032150-20151027145330/@comment-27032150-20151027152354\nTalk:Imperial Hammer/@comment-27032150-20151027145330/@comment-27156860-20151105122758\nTalk:Imperial Hammer/@comment-34669020-20180512124601\nTalk:Imperial Hammer/@comment-34669020-20180512124601/@comment-108.234.143.191-20181126035433\nTalk:Imperial Hammer/@comment-44777384-20200102143509\nTalk:Imperial Hammer/@comment-73.15.64.28-20170622024431\nTalk:Imperial Hammer/@comment-73.15.64.28-20170622024431/@comment-25450485-20170718191820\nTalk:Imperial Hammer/@comment-79.132.19.230-20150720174336\nTalk:Imperial Hammer/@comment-79.132.19.230-20150720174336/@comment-25450485-20150908101946\nTalk:Imperial Hammer/@comment-90.194.227.248-20190921222107\nTalk:Imperial Hammer/@comment-90.200.46.38-20181121001345\nTalk:Imperial Hammer/@comment-90.200.46.38-20181121001345/@comment-203.104.15.77-20191104010149\nTalk:Imperial Hammer/@comment-90.200.46.38-20181121001345/@comment-90.200.46.38-20181121010726\nTalk:Imperial Navy/@comment-165.225.0.79-20180723165003\nTalk:Imperial Navy/@comment-165.225.0.79-20180723165003/@comment-108.195.208.54-20191004230324\nTalk:Imperial Navy/@comment-165.225.0.79-20180723165003/@comment-178.84.140.196-20180730102314\nTalk:Imperial Navy/@comment-165.225.0.79-20180723165003/@comment-79.69.9.113-20180822162744\nTalk:Imperial Navy/@comment-165.225.0.79-20180723165003/@comment-90.200.46.38-20181121152659\nTalk:Imperial Navy/@comment-175.32.91.66-20180504005343\nTalk:Imperial Navy/@comment-188.126.160.87-20160516133447\nTalk:Imperial Navy/@comment-188.126.160.87-20160516133447/@comment-184.102.214.229-20171210220549\nTalk:Imperial Navy/@comment-188.126.160.87-20160516133447/@comment-188.126.160.87-20160516133527\nTalk:Imperial Navy/@comment-24.1.76.43-20170307231641\nTalk:Imperial Navy/@comment-24.1.76.43-20170307231641/@comment-192.136.161.52-20170308130823\nTalk:Imperial Navy/@comment-50.205.42.50-20170605184442\nTalk:Imperial Navy/@comment-95.91.228.136-20160314175348\nTalk:Imperial Navy/@comment-95.91.228.136-20160314175348/@comment-192.136.174.152-20160314194649\nTalk:Imperial Navy/@comment-95.91.228.78-20160308074659\nTalk:Imperial Navy/@comment-95.91.228.78-20160308074659/@comment-175.32.91.66-20180504005251\nTalk:Imperial Navy/@comment-95.91.228.78-20160308074659/@comment-192.136.174.152-20160308122939\nTalk:Imperial Senate/@comment-121.210.33.50-20180202062735\nTalk:Imperial Senate/@comment-121.210.33.50-20180202062735/@comment-30928085-20180218073057\nTalk:Imperial Shielding/@comment-178.48.139.67-20180722211539\nTalk:Imperial Shielding/@comment-33723647-20171121155519\nTalk:Imperial Slaves/@comment-165.225.38.123-20190728232927\nTalk:Imperial Slaves/@comment-165.225.38.123-20190728232927/@comment-174.252.202.2-20190729060712\nTalk:Imperial Slaves/@comment-193.63.252.9-20190218095710\nTalk:Imperial Slaves/@comment-193.63.252.9-20190218095710/@comment-192.136.170.98-20190218192025\nTalk:Imperial Slaves/@comment-194.81.60.163-20160614075914\nTalk:Imperial Slaves/@comment-194.81.60.163-20160614075914/@comment-2155082-20160615032130\nTalk:Imperial Slaves/@comment-24.41.167.94-20191017220619\nTalk:Imperial Slaves/@comment-73.232.196.106-20200111094241\nTalk:Imperial Slaves/@comment-86.184.68.31-20180528224021\nTalk:Imperial Slaves/@comment-86.184.68.31-20180528224021/@comment-173.49.73.157-20180530023706\nTalk:Imperial Slaves/@comment-86.184.68.31-20180528224021/@comment-174.252.202.2-20190729060809\nTalk:Imperial Slaves/@comment-86.184.68.31-20180528224021/@comment-32843761-20180529030444\nTalk:Imperial Slaves/@comment-86.184.68.31-20180528224021/@comment-37810114-20190524143055\nTalk:Imperial Slaves/@comment-86.184.68.31-20180528224021/@comment-62.143.152.192-20180709195354\nTalk:Imperial Slaves/@comment-86.184.68.31-20180528224021/@comment-86.184.68.31-20180529075715\nTalk:Improvised Components/@comment-148.252.128.174-20171224150746\nTalk:Improvised Components/@comment-148.252.128.174-20171224150746/@comment-171.97.83.196-20180819173426\nTalk:Improvised Components/@comment-148.252.128.174-20171224150746/@comment-192.136.170.72-20180822192142\nTalk:Improvised Components/@comment-177.42.111.92-20190116211733\nTalk:Improvised Components/@comment-177.42.111.92-20190116211733/@comment-192.136.170.98-20190117042453\nTalk:Incendiary Rounds/@comment-109.154.174.235-20160705091808\nTalk:Incendiary Rounds/@comment-109.154.174.235-20160705091808/@comment-174.89.135.213-20161019232213\nTalk:Incendiary Rounds/@comment-135.26.163.137-20180530092957\nTalk:Incendiary Rounds/@comment-135.26.163.137-20180530092957/@comment-81.106.140.16-20200124115406\nTalk:Incendiary Rounds/@comment-75.85.2.89-20171023154438\nTalk:Incendiary Rounds/@comment-75.85.2.89-20171023154438/@comment-2604:2D80:4002:89C8:BDA6:D9EE:912E:3987-20180203044749\nTalk:Incendiary Rounds/@comment-75.85.2.89-20171023154438/@comment-90.200.46.38-20181123135752\nTalk:Incendiary Rounds/@comment-82.13.80.208-20181121103042\nTalk:Incendiary Rounds/@comment-87.148.202.51-20160602124021\nTalk:Incendiary Rounds/@comment-87.148.202.51-20160602124021/@comment-192.136.175.90-20160602161127\nTalk:Increased Range Frame Shift Drive/@comment-2003:DA:CBCB:1800:F942:A9FC:49B7:95B6-20180711113719\nTalk:Increased Range Frame Shift Drive/@comment-217.237.3.46-20180808200319\nTalk:Increased Range Frame Shift Drive/@comment-86.26.147.35-20170910223248\nTalk:Increased Range Frame Shift Drive/@comment-86.26.147.35-20170910223248/@comment-50.43.116.98-20170911015501\nTalk:Independent/@comment-2602:306:CE29:B0D0:48BD:E89F:1BCB:88A0-20191020073024\nTalk:Independent Defence Agency/@comment-63.116.31.198-20181026202629\nTalk:Independent Defence Agency/@comment-63.116.31.198-20181026202629/@comment-63.116.31.198-20181026205717\nTalk:Indi Bourbon/@comment-108.89.113.239-20160422023221\nTalk:Indi Bourbon/@comment-108.89.113.239-20160422023221/@comment-27283317-20160422024906\nTalk:Indi Bourbon/@comment-111.69.106.32-20151010204539\nTalk:Indi Bourbon/@comment-111.69.106.32-20151010205044\nTalk:Indi Bourbon/@comment-111.69.106.32-20151010213314\nTalk:Indi Bourbon/@comment-111.69.106.32-20151010213314/@comment-26009169-20151010230257\nTalk:Indi Bourbon/@comment-111.69.106.32-20151010213314/@comment-27283317-20160103230708\nTalk:Indi Bourbon/@comment-2155082-20160422031659\nTalk:Indi Bourbon/@comment-2155082-20160422031659/@comment-27283317-20160425195251\nTalk:Indi Bourbon/@comment-72.234.156.55-20160217043010\nTalk:Indi Bourbon/@comment-81.175.226.81-20151026210045\nTalk:Inertial Impact/@comment-2600:387:4:802:0:0:0:60-20180329160830\nTalk:Inertial Impact/@comment-2600:387:4:802:0:0:0:60-20180329160830/@comment-24.254.170.239-20191023010712\nTalk:Inertial Impact/@comment-2600:387:4:802:0:0:0:60-20180329160830/@comment-95.17.50.224-20180701200512\nTalk:Inertial Impact/@comment-2605:E000:1C0E:416C:A597:3466:A259:B1D5-20190701021323\nTalk:Inertial Impact/@comment-2605:E000:1C0E:416C:A597:3466:A259:B1D5-20190701021323/@comment-27941085-20190924074023\nTalk:Inertial Impact/@comment-37.187.104.40-20191222110844\nTalk:Inertial Impact/@comment-79.20.186.51-20180924101850\nTalk:Influence/@comment-14.207.41.137-20161021074509\nTalk:Influence/@comment-14.207.41.137-20161021074509/@comment-29011619-20161226194804\nTalk:Influence/@comment-176.78.158.9-20190530100134\nTalk:Influence/@comment-176.78.158.9-20190530100134/@comment-195.234.74.137-20191230124753\nTalk:Influence/@comment-176.78.158.9-20190530100134/@comment-2003:C1:2F26:B8F8:C8E3:5448:449B:24A5-20191214105051\nTalk:Influence/@comment-201.47.227.125-20170104110058\nTalk:Influence/@comment-201.47.227.125-20170104110058/@comment-29011619-20170119160627\nTalk:Influence/@comment-24.239.93.107-20150512011537\nTalk:Influence/@comment-24.239.93.107-20150512011537/@comment-26306474-20150512012134\nTalk:Influence/@comment-24.239.93.107-20150512012226\nTalk:Influence/@comment-24.239.93.107-20150512012226/@comment-26009169-20150512012843\nTalk:Influence/@comment-24503385-20150520013738\nTalk:Influence/@comment-24503385-20150520013738/@comment-107.215.244.16-20150915194401\nTalk:Influence/@comment-24503385-20150520013738/@comment-26009169-20150520113332\nTalk:Influence/@comment-24503385-20150520013738/@comment-68.225.207.50-20160210151741\nTalk:Influence/@comment-25985607-20150121101741\nTalk:Influence/@comment-25985607-20150121101741/@comment-206.173.9.66-20150128010444\nTalk:Influence/@comment-25985607-20150121101741/@comment-26009169-20150121122132\nTalk:Influence/@comment-25985607-20150121101741/@comment-66.249.82.221-20150121123731\nTalk:Influence/@comment-26306474-20150428115828\nTalk:Influence/@comment-26306474-20150428115828/@comment-26009169-20150428124849\nTalk:Influence/@comment-26306474-20150428115828/@comment-26306474-20150428160941\nTalk:Influence/@comment-26306474-20150513124854\nTalk:Influence/@comment-29011619-20161226195230\nTalk:Influence/@comment-45.48.248.69-20150720173514\nTalk:Influence/@comment-45.48.248.69-20150720173514/@comment-79.243.224.3-20150720184748\nTalk:Influence/@comment-4846780-20150421140140\nTalk:Influence/@comment-4846780-20150421140140/@comment-26009169-20150421142253\nTalk:Influence/@comment-62.78.239.134-20150202183041\nTalk:Influence/@comment-648662-20150421183814\nTalk:Influence/@comment-73.3.47.101-20190910130508\nTalk:Installation/@comment-176.166.6.137-20181214014924\nTalk:Installation/@comment-176.166.6.137-20181214014924/@comment-2001:8003:5280:E200:85E0:E1D0:C4FA:1ACE-20190114013655\nTalk:Installation/@comment-2601:18C:8600:CF21:A02F:BFFC:8569:2AE1-20181218014508\nTalk:Installation/@comment-31094186-20180203141240\nTalk:Installation/@comment-31094186-20180203141240/@comment-192.136.161.33-20180203170510\nTalk:Installation/@comment-34060750-20200331190906\nTalk:Installation/@comment-34848132-20180228081301\nTalk:Installation/@comment-34848132-20180228081301/@comment-192.136.161.33-20180228141355\nTalk:Insurance costs/@comment-108.242.216.67-20150503150220\nTalk:Insurance costs/@comment-108.242.216.67-20150503150220/@comment-173.217.50.78-20150529010411\nTalk:Insurance costs/@comment-121.45.199.96-20150313080523\nTalk:Insurance costs/@comment-121.45.199.96-20150313080523/@comment-78.22.108.5-20150322085859\nTalk:Insurance costs/@comment-121.45.199.96-20150313080523/@comment-98.160.203.30-20160112203155\nTalk:Insurance costs/@comment-163.118.166.124-20150327135936\nTalk:Insurance costs/@comment-163.118.166.124-20150327135936/@comment-26009169-20150327141056\nTalk:Insurance costs/@comment-163.118.166.124-20150327144111\nTalk:Insurance costs/@comment-163.118.166.124-20150327144111/@comment-26009169-20150327144921\nTalk:Insurance costs/@comment-2.219.247.44-20140812084853\nTalk:Insurance costs/@comment-2.219.247.44-20140812084853/@comment-122.57.114.143-20140813213820\nTalk:Insurance costs/@comment-202.174.174.123-20150504080318\nTalk:Insurance costs/@comment-202.174.174.123-20150504080318/@comment-26009169-20150504121218\nTalk:Insurance costs/@comment-202.174.174.123-20150504080318/@comment-6033893-20150504082313\nTalk:Insurance costs/@comment-2116780-20151230193855\nTalk:Insurance costs/@comment-23.16.196.177-20140921153921\nTalk:Insurance costs/@comment-23.16.196.177-20140921153921/@comment-25335609-20140921205808\nTalk:Insurance costs/@comment-24.16.82.73-20170506041006\nTalk:Insurance costs/@comment-24.32.124.85-20180224181733\nTalk:Insurance costs/@comment-24.32.124.85-20180224181733/@comment-129.71.207.101-20191016001523\nTalk:Insurance costs/@comment-24.32.124.85-20180224181733/@comment-162.18.172.11-20180427145047\nTalk:Insurance costs/@comment-30643772-20170115172634\nTalk:Insurance costs/@comment-30643772-20170115172634/@comment-192.136.170.98-20190102043020\nTalk:Insurance costs/@comment-30643772-20170115172634/@comment-192.136.170.98-20190228213953\nTalk:Insurance costs/@comment-30643772-20170115172634/@comment-2001:14BB:430:4081:30B0:61FC:BC6D:652A-20181215235821\nTalk:Insurance costs/@comment-30643772-20170115172634/@comment-2003:DB:23C0:C600:51A7:37A:532:244A-20190101194609\nTalk:Insurance costs/@comment-30643772-20170115172634/@comment-30643772-20170116003241\nTalk:Insurance costs/@comment-30643772-20170115172634/@comment-38.142.207.106-20190228212447\nTalk:Insurance costs/@comment-30643772-20170115172634/@comment-45488186-20200414202411\nTalk:Insurance costs/@comment-30643772-20170115172634/@comment-5959508-20170115200921\nTalk:Insurance costs/@comment-4766517-20150801225305\nTalk:Insurance costs/@comment-4766517-20150801225305/@comment-210.94.98.151-20170331062359\nTalk:Insurance costs/@comment-4766517-20150801225305/@comment-213.120.234.138-20150915192139\nTalk:Insurance costs/@comment-4766517-20150801225305/@comment-25335609-20150918010453\nTalk:Insurance costs/@comment-6033893-20140805185658\nTalk:Insurance costs/@comment-6033893-20140805185658/@comment-25249692-20140805201936\nTalk:Insurance costs/@comment-6033893-20140805185658/@comment-6033893-20140806195649\nTalk:Insurance costs/@comment-6033893-20140805185658/@comment-70.160.50.245-20140811150709\nTalk:Insurance costs/@comment-6033893-20140805185658/@comment-86.9.108.33-20140830234007\nTalk:Insurance costs/@comment-80.108.221.93-20150121194104\nTalk:Insurance costs/@comment-82.69.9.196-20140816082429\nTalk:Insurance costs/@comment-82.69.9.196-20140816082429/@comment-202.36.179.100-20140818041243\nTalk:Insurance costs/@comment-82.69.9.196-20140816082429/@comment-71.202.215.29-20141230001514\nTalk:Insurance costs/@comment-86.156.164.114-20150414173951\nTalk:Insurance costs/@comment-86.156.164.114-20150414173951/@comment-26009169-20150414180619\nTalk:Insurance costs/@comment-86.156.164.114-20150414173951/@comment-68.117.180.204-20150802045340\nTalk:Insurance costs/@comment-86.156.164.114-20150414173951/@comment-86.156.164.114-20150416084017\nTalk:Insurance costs/@comment-92.12.133.204-20150110194037\nTalk:Insurance costs/@comment-92.12.133.204-20150110194037/@comment-97.104.170.117-20150514154414\nTalk:Insurance costs/@comment-92.12.133.204-20150110194037/@comment-98.116.207.126-20150119184231\nTalk:Insurance costs/@comment-92.12.133.204-20150110194037/@comment-98.116.207.126-20150119184310\nTalk:Insurance costs/@comment-93.143.124.130-20150602123009\nTalk:Insurance costs/@comment-93.143.124.130-20150602123009/@comment-66.109.235.218-20160819165358\nTalk:Insurance costs/@comment-93.143.124.130-20150602123009/@comment-80.120.62.34-20160113091630\nTalk:Insurance costs/@comment-93.143.124.130-20150602123009/@comment-98.160.203.30-20160112203242\nTalk:Insurance costs/@comment-99.231.231.200-20181218130438\nTalk:Insurance costs/@comment-99.231.231.200-20181218130438/@comment-206.19.54.254-20191004233257\nTalk:Interdiction/@comment-109.146.71.137-20170707223857\nTalk:Interdiction/@comment-109.201.137.167-20150411075841\nTalk:Interdiction/@comment-109.201.137.167-20150411075841/@comment-25335609-20150820011352\nTalk:Interdiction/@comment-12.234.92.130-20141107000656\nTalk:Interdiction/@comment-12.234.92.130-20141107000656/@comment-25974345-20150107195043\nTalk:Interdiction/@comment-12.234.92.130-20141107000656/@comment-87.188.226.83-20141220173603\nTalk:Interdiction/@comment-143.81.103.35-20160123222924\nTalk:Interdiction/@comment-178.75.142.231-20151014204411\nTalk:Interdiction/@comment-178.75.142.231-20151014204411/@comment-76.22.84.106-20151017205327\nTalk:Interdiction/@comment-188.174.176.64-20141012203544\nTalk:Interdiction/@comment-188.174.176.64-20141012203544/@comment-188.174.176.64-20141012232039\nTalk:Interdiction/@comment-188.174.176.64-20141012203544/@comment-73.5.147.89-20150103165157\nTalk:Interdiction/@comment-24.63.55.33-20141215033909\nTalk:Interdiction/@comment-24.63.55.33-20141215033909/@comment-130.236.61.80-20150224113009\nTalk:Interdiction/@comment-2601:485:4000:33C0:D82B:5B42:C8D7:8140-20180808225103\nTalk:Interdiction/@comment-6033893-20140818075336\nTalk:Interdiction/@comment-6033893-20140818075336/@comment-122.57.114.143-20140818085428\nTalk:Interdiction/@comment-6033893-20140818075336/@comment-122.57.114.143-20140818085532\nTalk:Interdiction/@comment-6033893-20140818075336/@comment-6033893-20140819181638\nTalk:Interdiction/@comment-66.109.235.218-20150807182031\nTalk:Interdiction/@comment-66.109.235.218-20150807182031/@comment-25335609-20150820011019\nTalk:Interdiction/@comment-66.230.116.61-20151216191140\nTalk:Interdiction/@comment-66.230.116.61-20151228022055\nTalk:Interdiction/@comment-66.230.116.61-20151228022055/@comment-143.81.103.35-20160123222627\nTalk:Interdiction/@comment-66.230.116.61-20151228022055/@comment-82.28.239.89-20160111210805\nTalk:Interdiction/@comment-68.97.70.132-20160906212731\nTalk:Interdiction/@comment-68.97.70.132-20160906212731/@comment-176.249.62.114-20170823183158\nTalk:Interdiction/@comment-68.97.70.132-20160906212731/@comment-192.136.161.156-20160907025337\nTalk:Interdiction/@comment-68.97.70.132-20160906212731/@comment-192.136.161.156-20160907110344\nTalk:Interdiction/@comment-68.97.70.132-20160906212731/@comment-192.136.161.156-20160907110508\nTalk:Interdiction/@comment-68.97.70.132-20160906212731/@comment-192.136.161.156-20160907151846\nTalk:Interdiction/@comment-68.97.70.132-20160906212731/@comment-192.136.161.52-20161121133902\nTalk:Interdiction/@comment-68.97.70.132-20160906212731/@comment-213.254.131.239-20161121130412\nTalk:Interdiction/@comment-68.97.70.132-20160906212731/@comment-2155082-20160907012023\nTalk:Interdiction/@comment-68.97.70.132-20160906212731/@comment-2155082-20160907223527\nTalk:Interdiction/@comment-68.97.70.132-20160906212731/@comment-27032150-20160907072447\nTalk:Interdiction/@comment-68.97.70.132-20160906212731/@comment-5959508-20160907135816\nTalk:Interdiction/@comment-74.249.112.23-20180829181603\nTalk:Interdiction/@comment-74.249.112.23-20180829181603/@comment-70.78.116.240-20181231034818\nTalk:Interdiction/@comment-76.22.84.106-20151017204943\nTalk:Interdiction/@comment-76.22.84.106-20151017204943/@comment-151.76.42.27-20151101163209\nTalk:Interdiction/@comment-76.22.84.106-20151017204943/@comment-94.12.31.80-20170724000301\nTalk:Interdiction/@comment-81.88.116.141-20160808225942\nTalk:Interdiction/@comment-86.131.220.213-20171215140343\nTalk:Interdiction/@comment-86.131.220.213-20171215140352\nTalk:Interdiction/@comment-90.200.46.38-20181025204205\nTalk:Interdiction/@comment-90.200.46.38-20181025204205/@comment-90.200.46.38-20181031111049\nTalk:Interdiction/@comment-91.96.63.45-20150819210836\nTalk:Interdiction/@comment-91.96.63.45-20150819210836/@comment-25335609-20150820011125\nTalk:Interdiction/@comment-91.96.63.45-20150819210836/@comment-26599825-20150820070033\nTalk:Interdiction/@comment-92.78.245.143-20151231143424\nTalk:Interdiction/@comment-92.78.245.143-20151231143424/@comment-26454645-20160101043348\nTalk:Interdiction/@comment-92.78.245.143-20151231143424/@comment-91.125.239.5-20160402011627\nTalk:Interdiction/@comment-94.12.31.80-20170722175815\nTalk:Interdiction/@comment-94.12.31.80-20170722175815/@comment-32907084-20171223233802\nTalk:Interdiction/@comment-94.16.131.245-20150201102840\nTalk:Interdiction/@comment-94.16.131.245-20150201102840/@comment-149.254.224.252-20150220051137\nTalk:Interdiction/@comment-94.16.131.245-20150201102840/@comment-26009169-20150201144057\nTalk:Interdiction/@comment-94.16.131.245-20150201102840/@comment-82.28.239.89-20160111211200\nTalk:Interdiction/@comment-96.29.182.189-20150916005022\nTalk:Interdiction/@comment-96.29.182.189-20150916005022/@comment-25450485-20150917093744\nTalk:Interdiction/@comment-96.29.182.189-20150916005022/@comment-27034370-20151007080613\nTalk:Intergalactic Naval Reserve Arm/@comment-188.243.119.180-20190201181032\nTalk:Intergalactic Naval Reserve Arm/@comment-188.243.119.180-20190201181032/@comment-2003:DB:F70F:D6BE:492:1B55:899D:7556-20200207143713\nTalk:Intergalactic Naval Reserve Arm/@comment-2003:ED:4F17:AE00:41F:450E:D117:191D-20200125194443\nTalk:Intergalactic Naval Reserve Arm/@comment-2003:ED:4F17:AE00:41F:450E:D117:191D-20200125194443/@comment-2003:DB:F70F:D6BE:492:1B55:899D:7556-20200207143410\nTalk:Intergalactic Naval Reserve Arm/@comment-2601:243:2080:3930:A141:60B0:2616:4A29-20191006142618\nTalk:Intergalactic Naval Reserve Arm/@comment-3123744-20190618064134\nTalk:Intergalactic Naval Reserve Arm/@comment-33441314-20200106234134\nTalk:Internal Compartment/@comment-173.52.97.226-20161109195818\nTalk:Internal Compartment/@comment-173.52.97.226-20161109195818/@comment-2601:189:C37F:9A42:8123:295A:1BEA:D6E5-20190819184106\nTalk:Internal Compartment/@comment-46798253-20200904124511\nTalk:Internal Compartment/@comment-74.209.0.72-20161031181220\nTalk:Internal Compartment/@comment-77.68.229.241-20190527151929\nTalk:Internal Compartment/@comment-77.68.229.241-20190527151929/@comment-77.68.229.241-20190527153254\nTalk:Internal Compartment/@comment-86.136.152.44-20141230165935\nTalk:Internal Compartment/@comment-88.75.31.254-20170927194257\nTalk:Internal Compartment/@comment-98.119.78.103-20150315012747\nTalk:Internal Compartment/@comment-98.198.176.244-20141120064250\nTalk:Internal Compartment/@comment-98.198.176.244-20141120064250/@comment-87.81.135.167-20141216151738\nTalk:Interstellar Factors/@comment-108.205.236.85-20180802050639\nTalk:Interstellar Factors/@comment-142.167.169.114-20180322133933\nTalk:Interstellar Factors/@comment-142.167.169.114-20180322133933/@comment-104.240.110.2-20180327025945\nTalk:Interstellar Factors/@comment-142.167.169.114-20180322133933/@comment-108.205.236.85-20180802045828\nTalk:Interstellar Factors/@comment-142.167.169.114-20180322133933/@comment-2603:3016:1700:4D00:7919:F1E2:7B29:36A5-20180825023232\nTalk:Interstellar Factors/@comment-142.167.169.114-20180322133933/@comment-35906206-20180624005439\nTalk:Interstellar Factors/@comment-142.167.169.114-20180322133933/@comment-73.125.87.97-20180324070352\nTalk:Interstellar Factors/@comment-142.167.169.114-20180322133933/@comment-77.103.203.34-20180427231357\nTalk:Interstellar Factors/@comment-142.167.169.114-20180322133933/@comment-91.125.164.117-20180326142142\nTalk:Interstellar Factors/@comment-145.8.179.218-20190523080353\nTalk:Interstellar Factors/@comment-162.40.195.196-20171109090530\nTalk:Interstellar Factors/@comment-162.40.195.196-20171109090530/@comment-104.240.110.2-20180327030306\nTalk:Interstellar Factors/@comment-162.40.195.196-20171109090530/@comment-192.136.161.33-20171109141152\nTalk:Interstellar Factors/@comment-162.40.195.196-20171109090530/@comment-35906206-20180624005729\nTalk:Interstellar Factors/@comment-162.40.195.196-20171109090530/@comment-77.103.203.34-20180427231743\nTalk:Interstellar Factors/@comment-185.99.139.142-20190203164800\nTalk:Interstellar Factors/@comment-186.143.133.210-20180420222043\nTalk:Interstellar Factors/@comment-186.143.133.210-20180420222043/@comment-35906206-20180624005113\nTalk:Interstellar Factors/@comment-192.162.146.79-20180228015449\nTalk:Interstellar Factors/@comment-192.162.146.79-20180228015449/@comment-192.162.146.79-20180228020444\nTalk:Interstellar Factors/@comment-2602:304:68A6:21A0:15E0:BCBB:512D:8517-20180319233245\nTalk:Interstellar Factors/@comment-2602:304:68A6:21A0:15E0:BCBB:512D:8517-20180319233245/@comment-104.240.110.2-20180327030038\nTalk:Interstellar Factors/@comment-2602:304:68A6:21A0:15E0:BCBB:512D:8517-20180319233245/@comment-108.205.236.85-20180802051410\nTalk:Interstellar Factors/@comment-2602:304:68A6:21A0:15E0:BCBB:512D:8517-20180319233245/@comment-2605:A000:161A:4494:3D8C:6073:9594:1C12-20180703102905\nTalk:Interstellar Factors/@comment-2602:304:68A6:21A0:15E0:BCBB:512D:8517-20180319233245/@comment-77.103.203.34-20180427231614\nTalk:Interstellar Factors/@comment-2602:304:68A6:21A0:15E0:BCBB:512D:8517-20180319233245/@comment-79.175.198.139-20180327002206\nTalk:Interstellar Factors/@comment-2A02:120B:2C17:1980:1077:96C8:FCE2:2B14-20180301174918\nTalk:Interstellar Factors/@comment-2A02:120B:2C17:1980:1077:96C8:FCE2:2B14-20180301174918/@comment-187.145.10.167-20180305232946\nTalk:Interstellar Factors/@comment-2A02:120B:2C17:1980:1077:96C8:FCE2:2B14-20180301174918/@comment-222.130.138.47-20180302094017\nTalk:Interstellar Factors/@comment-2A02:120B:2C17:1980:1077:96C8:FCE2:2B14-20180301174918/@comment-2A02:120B:2C17:1980:E884:659A:4A4D:B6F2-20180305103349\nTalk:Interstellar Factors/@comment-2A02:1812:419:AD00:9559:1861:AABB:F1C0-20180512143341\nTalk:Interstellar Factors/@comment-2A02:1812:419:AD00:9559:1861:AABB:F1C0-20180512143341/@comment-2A02:1812:419:AD00:9559:1861:AABB:F1C0-20180512143548\nTalk:Interstellar Factors/@comment-35906206-20180624005856\nTalk:Interstellar Factors/@comment-36.227.3.76-20180409162558\nTalk:Interstellar Factors/@comment-36.227.3.76-20180409162558/@comment-2601:440:C500:780D:C5D5:BD97:C1F6:93F2-20180417024115\nTalk:Interstellar Factors/@comment-36352121-20190118223007\nTalk:Interstellar Factors/@comment-77.103.203.34-20180427230832\nTalk:Interstellar Factors/@comment-77.103.203.34-20180427230832/@comment-95.147.181.238-20181026133042\nTalk:Interstellar Factors/@comment-79.175.198.139-20180327004235\nTalk:Interstellar Factors/@comment-79.175.198.139-20180327004235/@comment-104.240.110.2-20180327025555\nTalk:Interstellar Factors/@comment-79.175.198.139-20180327004235/@comment-2605:A000:161A:4494:3D8C:6073:9594:1C12-20180703102541\nTalk:Interstellar Factors/@comment-79.175.198.139-20180327004235/@comment-77.103.203.34-20180427233041\nTalk:Interstellar Factors/@comment-88.69.134.69-20180228044518\nTalk:Interstellar Factors/@comment-88.69.134.69-20180228044518/@comment-88.69.134.69-20180228054016\nTalk:Interstellar Factors/@comment-94.127.25.138-20170730220144\nTalk:Interstellar Factors/@comment-94.127.25.138-20170730220144/@comment-104.240.110.2-20180327030403\nTalk:Interstellar Factors/@comment-94.127.25.138-20170730220144/@comment-2601:380:4100:E610:1864:3800:4845:FFBF-20170803193936\nTalk:Interstellar Factors/@comment-98.195.179.219-20161217175918\nTalk:Interstellar Factors/@comment-98.195.179.219-20161217175918/@comment-204.210.139.168-20180312070349\nTalk:Interstellar Factors/@comment-98.195.179.219-20161217175918/@comment-2601:484:100:527B:95FB:EC6B:76FB:ACDD-20180326033249\nTalk:Interstellar Factors/@comment-98.195.179.219-20161217175918/@comment-77.103.203.34-20180427232151\nTalk:Interstellar Initiative/@comment-39639239-20190530092635\nTalk:Interstellar Initiative/@comment-39639239-20190530092635/@comment-2600:8803:C200:CAF:85F:E428:7EBF:21D2-20190531001911\nTalk:Ion Disruptor/@comment-73.126.122.142-20190731050538\nTalk:Ion Disruptor/@comment-87.140.106.45-20180712124216\nTalk:Ion Disruptor/@comment-87.140.106.45-20180712124216/@comment-78.234.192.233-20180726224515\nTalk:Ion Disruptor/@comment-87.140.106.45-20180712124216/@comment-78.234.192.233-20180726225133\nTalk:Ishmael Palin/@comment-81.217.179.198-20190731230748\nTalk:Ishmael Palin/@comment-81.217.179.198-20190731230748/@comment-45519499-20200610180548\nTalk:Itorilleta/@comment-98.146.68.42-20180401012430\nTalk:Itorilleta/@comment-98.146.68.42-20180401012430/@comment-41.114.105.248-20180621072942\nTalk:Jackson's Lighthouse/@comment-50.4.239.175-20151222215513\nTalk:Jackson's Lighthouse/@comment-50.4.239.175-20151222215513/@comment-5.147.48.112-20161112035828\nTalk:Jackson's Lighthouse/@comment-903860-20200516000957\nTalk:Jameson Memorial/@comment-188.105.190.171-20171213180231\nTalk:Jameson Memorial/@comment-188.105.190.171-20171213180231/@comment-188.105.190.171-20171214221633\nTalk:Jameson Memorial/@comment-188.105.190.171-20171213180231/@comment-192.136.161.33-20171213211530\nTalk:Jameson Memorial/@comment-192.136.174.152-20160304155029\nTalk:Jameson Memorial/@comment-192.136.174.152-20160304155029/@comment-106.68.58.6-20181227055654\nTalk:Jameson Memorial/@comment-192.136.174.152-20160304155029/@comment-212.10.111.72-20190211040427\nTalk:Jameson Memorial/@comment-192.136.174.152-20160304155029/@comment-31510018-20170319233635\nTalk:Jameson Memorial/@comment-192.136.174.152-20160304155029/@comment-94.12.31.80-20170802113507\nTalk:Jameson Memorial/@comment-2001:999:82:5302:998:29F8:E7DC:5A31-20180703001510\nTalk:Jameson Memorial/@comment-240B:11:1760:2C00:8EB:805C:912D:E084-20171015193006\nTalk:Jameson Memorial/@comment-240B:11:1760:2C00:8EB:805C:912D:E084-20171015193006/@comment-192.136.161.33-20171016114744\nTalk:Jameson Memorial/@comment-26227424-20160620170159\nTalk:Jameson Memorial/@comment-26227424-20160620170159/@comment-125.237.1.45-20180110205346\nTalk:Jameson Memorial/@comment-26227424-20160620170159/@comment-73.126.122.142-20190813232530\nTalk:Jameson Memorial/@comment-26227424-20160620170159/@comment-86.172.38.213-20180303182557\nTalk:Jameson Memorial/@comment-26227424-20160620170159/@comment-95.91.228.84-20160626074206\nTalk:Jameson Memorial/@comment-46357064-20200813193047\nTalk:Jameson Memorial/@comment-77.20.93.193-20180425083712\nTalk:Jameson Memorial/@comment-79.84.22.172-20180309123439\nTalk:Jameson Memorial/@comment-79.84.22.172-20180309123439/@comment-2605:6001:ED8D:3D00:162:3830:A4F0:B60C-20180510210109\nTalk:Jameson Memorial/@comment-92.234.70.27-20151024205827\nTalk:Jameson Memorial/@comment-92.234.70.27-20151024205827/@comment-60293-20151113002316\nTalk:Jameson Memorial/@comment-92.234.70.27-20151024205827/@comment-69.168.163.169-20190703081902\nTalk:Jameson Memorial/@comment-93.73.191.171-20180708160842\nTalk:Jameson Memorial/@comment-93.73.191.171-20180708160842/@comment-73.2.80.186-20180831092421\nTalk:Jameson Memorial/@comment-95.91.228.98-20160410152308\nTalk:Jameson Memorial/@comment-95.91.228.98-20160410152308/@comment-174.109.34.239-20180915155604\nTalk:Jameson Memorial/@comment-95.91.228.98-20160410152308/@comment-76.71.51.6-20161024220528\nTalk:Jameson Memorial/@comment-95.91.228.98-20160410152308/@comment-77.173.225.63-20171120232830\nTalk:Jameson Memorial/@comment-96.84.207.12-20171208154943\nTalk:Jameson Memorial/@comment-96.84.207.12-20171208154943/@comment-129.130.18.15-20200127211321\nTalk:Jameson Memorial/@comment-96.84.207.12-20171208154943/@comment-77.101.146.114-20171210205030\nTalk:January Update/@comment-167.187.100.206-20200109223218\nTalk:January Update/@comment-2600:6C5D:6300:36C4:285C:F2F:D2C7:34F5-20200116025414\nTalk:January Update/@comment-2607:FEA8:4A0:26A8:A50B:DAC0:AF84:9AE6-20200114231109\nTalk:January Update/@comment-77.189.69.175-20200114164141\nTalk:January Update/@comment-90.213.243.181-20200102154720\nTalk:January Update/@comment-90.213.243.181-20200102154720/@comment-2001:982:4526:1:DD2D:ACA3:31AA:3D42-20200105065721\nTalk:Jaques Quinentian Still/@comment-176.27.219.146-20160508200907\nTalk:Jaques Quinentian Still/@comment-188.226.83.176-20161005200649\nTalk:Jaques Quinentian Still/@comment-188.226.83.176-20161005200649/@comment-192.136.161.52-20161129035714\nTalk:Jaques Quinentian Still/@comment-188.226.83.176-20161005200649/@comment-192.136.161.52-20161213214310\nTalk:Jaques Quinentian Still/@comment-188.226.83.176-20161005200649/@comment-29590738-20161021202506\nTalk:Jaques Quinentian Still/@comment-188.226.83.176-20161005200649/@comment-29590738-20161112225737\nTalk:Jaques Quinentian Still/@comment-188.226.83.176-20161005200649/@comment-89.130.224.86-20161009184054\nTalk:Jaques Quinentian Still/@comment-29590738-20160811160747\nTalk:Jaques Quinentian Still/@comment-29590738-20160812152931\nTalk:Jaques Quinentian Still/@comment-29590738-20160812152931/@comment-192.136.161.248-20160812174023\nTalk:Jaques Quinentian Still/@comment-29590738-20160813201034\nTalk:Jaques Quinentian Still/@comment-29590738-20160818151544\nTalk:Jaques Quinentian Still/@comment-29590738-20160822195650\nTalk:Jaques Quinentian Still/@comment-29590738-20161101203112\nTalk:Jaques Quinentian Still/@comment-77.50.26.143-20160814202248\nTalk:Jaques Quinentian Still/@comment-77.50.26.143-20160814202248/@comment-29590738-20160814222659\nTalk:Jaques Quinentian Still/@comment-89.129.30.32-20160811151442\nTalk:Jaques Quinentian Still/@comment-89.130.224.86-20161009184434\nTalk:Jaques Quinentian Still/@comment-89.130.224.86-20161009184434/@comment-192.136.161.156-20161009185559\nTalk:Jaques Quinentian Still/@comment-89.130.224.86-20161009185346\nTalk:Jaques Quinentian Still/@comment-89.130.224.86-20161009185346/@comment-29590738-20161012084939\nTalk:Jaques Station/@comment-2.25.104.132-20171202222734\nTalk:Jaques Station/@comment-2.25.104.132-20171202222734/@comment-2.25.104.132-20171202222812\nTalk:Jaques Station/@comment-2.25.104.132-20171202222734/@comment-2601:600:8780:1ED0:10B7:A506:7305:21CC-20181027003549\nTalk:Jaques Station/@comment-2.25.104.132-20171202222734/@comment-2601:601:957F:CADA:6540:AD63:A910:CB0C-20180428071929\nTalk:Jaradharre Puzzle Box/@comment-14.201.223.11-20160103091424\nTalk:Jaradharre Puzzle Box/@comment-50.161.122.216-20150202065930\nTalk:Jaradharre Puzzle Box/@comment-74.97.38.183-20150220034855\nTalk:Jaradharre Puzzle Box/@comment-94.174.172.9-20150512180603\nTalk:Jaroua Rice/@comment-77.50.26.143-20160814205046\nTalk:Jasmina Halsey/@comment-33493166-20190410091916\nTalk:Jasmina Halsey/@comment-92.106.23.229-20151222044513\nTalk:Jed Trager/@comment-903860-20180925215049\nTalk:Jed Trager/@comment-903860-20180925215049/@comment-26810597-20180925215401\nTalk:Jick Nackson Enterprises/@comment-35547326-20180602213604\nTalk:John Jameson/@comment-176.221.77.250-20171130113714\nTalk:John Jameson/@comment-189.166.9.65-20180524060100\nTalk:John Jameson/@comment-189.166.9.65-20180524060100/@comment-47.40.214.247-20180923165233\nTalk:John Jameson/@comment-189.166.9.65-20180524060100/@comment-5.19.7.89-20190102214310\nTalk:John Jameson/@comment-189.166.9.65-20180524060100/@comment-70.51.23.147-20181112070139\nTalk:John Jameson/@comment-189.166.9.65-20180524060100/@comment-77.85.58.141-20180526091839\nTalk:John Jameson/@comment-212.35.27.63-20190103175317\nTalk:John Jameson/@comment-24554408-20190201202217\nTalk:John Jameson/@comment-4629203-20171126090436\nTalk:John Jameson/@comment-72.141.229.177-20191117053037\nTalk:John Jameson/@comment-77.85.58.141-20180526095049\nTalk:Jotun/@comment-46060031-20200625212501\nTalk:Jotun Mookah/@comment-73.43.15.120-20160118031521\nTalk:Jump range/@comment-2001:44B8:2118:1100:A146:9B69:6B85:20D3-20180303073629\nTalk:Jump range/@comment-2001:44B8:2118:1100:A146:9B69:6B85:20D3-20180303073629/@comment-62.195.223.240-20180304131936\nTalk:Jump range/@comment-2003:DA:CBCB:1800:F942:A9FC:49B7:95B6-20180711123115\nTalk:Jump range/@comment-216.20.176.2-20190909204620\nTalk:Jump range/@comment-32680093-20170725134059\nTalk:Jump range/@comment-46224042-20200630032300\nTalk:Jump range/@comment-46224042-20200630032300/@comment-26810597-20200701004747\nTalk:Jump range/@comment-46224042-20200630032300/@comment-46224042-20200702084524\nTalk:Jump range/@comment-5.49.89.6-20171228133539\nTalk:Jump range/@comment-5.49.89.6-20171228133539/@comment-109.252.23.144-20180124132943\nTalk:Jump range/@comment-5.49.89.6-20171228133539/@comment-68.187.89.63-20180302223205\nTalk:Jump range/@comment-74.110.98.148-20180527065511\nTalk:Jump range/@comment-77.47.109.223-20170210180708\nTalk:Jump range/@comment-77.47.109.223-20170210180708/@comment-2155082-20170210184614\nTalk:Jump range/@comment-77.47.109.223-20170210180708/@comment-77.47.109.223-20170211095943\nTalk:Jump range/@comment-90.92.121.44-20170615142337\nTalk:Jump range/@comment-90.92.121.44-20170615142337/@comment-162.118.16.5-20170811041434\nTalk:Jump range/@comment-90.92.121.44-20170615142337/@comment-87.163.90.180-20190826180223\nTalk:Jupiter/@comment-49.199.9.112-20180408050752\nTalk:Jupiter/@comment-49.199.9.112-20180408050752/@comment-110.140.39.8-20190123213347\nTalk:Jupiter/@comment-68.199.182.232-20150728130015\nTalk:Juri Ishmaak/@comment-2001:5B0:4BC0:D9E0:0:FF:FEBD:1C0-20180504181804\nTalk:Juri Ishmaak/@comment-2602:306:8379:A4C0:A040:6AFF:933A:FB45-20171206015805\nTalk:Juri Ishmaak/@comment-2606:6000:D705:2600:2008:1A98:3044:F627-20180417020341\nTalk:K-Type Anomaly/@comment-185.182.144.1-20200124101714\nTalk:Kachirigin Filter Leeches/@comment-77.50.26.143-20160814211415\nTalk:Kaeso Mordanticus/@comment-90.200.49.195-20181208004502\nTalk:Kahina Tijani Loren/@comment-108.2.148.152-20170522012749\nTalk:Kahina Tijani Loren/@comment-108.2.148.152-20170522012749/@comment-76.6.16.80-20180715033259\nTalk:Kahina Tijani Loren/@comment-176.78.158.9-20190622044053\nTalk:Kahina Tijani Loren/@comment-176.78.158.9-20190622044604\nTalk:Kahina Tijani Loren/@comment-179.182.53.182-20170503041554\nTalk:Kahina Tijani Loren/@comment-179.182.53.182-20170503041554/@comment-43982350-20200730202120\nTalk:Kahina Tijani Loren/@comment-179.182.53.182-20170503041554/@comment-45169313-20200305143038\nTalk:Kahina Tijani Loren/@comment-2600:8801:1907:4900:615C:9FC:2F9D:AF87-20180111012154\nTalk:Kahina Tijani Loren/@comment-2600:8801:1907:4900:615C:9FC:2F9D:AF87-20180111012154/@comment-43982350-20200730201915\nTalk:Kahina Tijani Loren/@comment-2600:8801:1907:4900:615C:9FC:2F9D:AF87-20180111012154/@comment-45677112-20200726102854\nTalk:Kahina Tijani Loren/@comment-43495716-20200803030924\nTalk:Kahina Tijani Loren/@comment-44180665-20200426173835\nTalk:Kahina Tijani Loren/@comment-50.36.214.87-20170720110832\nTalk:Kahina Tijani Loren/@comment-50.36.214.87-20170720110832/@comment-44180665-20200426174408\nTalk:Kahina Tijani Loren/@comment-50.36.214.87-20170720110832/@comment-82.11.240.23-20171114190025\nTalk:Kahina Tijani Loren/@comment-71.13.23.42-20170430041440\nTalk:Kamadhenu/@comment-2C0F:F038:204:5C00:9870:284C:AB3A:35FF-20181217141521\nTalk:Kamadhenu/@comment-78.194.205.118-20170911192300\nTalk:Kamadhenu/@comment-78.194.205.118-20170911192300/@comment-2607:FB90:6A57:12DD:BC74:B5B6:3EF7:15C2-20180219035752\nTalk:Kamadhenu/@comment-78.194.205.118-20170911192300/@comment-66.44.49.220-20190829233317\nTalk:Kamitra Cigars/@comment-109.91.26.110-20170820144813\nTalk:Kamitra Cigars/@comment-109.91.26.110-20170821052144\nTalk:Kamitra Cigars/@comment-139.218.71.215-20190531121926\nTalk:Kamitra Cigars/@comment-145.94.155.114-20190107162402\nTalk:Kamitra Cigars/@comment-197.101.40.206-20180222185322\nTalk:Kamitra Cigars/@comment-197.101.40.206-20180222185322/@comment-91.89.175.165-20180413222404\nTalk:Kamitra Cigars/@comment-2001:1C05:1F00:7B00:4CE2:EB4B:2DE5:B86F-20180212113131\nTalk:Kamitra Cigars/@comment-213.138.232.103-20180206165355\nTalk:Kamitra Cigars/@comment-2406:E000:420F:1:9408:C533:F256:A7F-20180328083403\nTalk:Kamitra Cigars/@comment-2601:100:8600:6000:9C71:ED9:336D:CCC8-20170718225500\nTalk:Kamitra Cigars/@comment-2605:E000:A48B:8300:7532:8041:ED31:BAC7-20170923030316\nTalk:Kamitra Cigars/@comment-29011619-20160726021522\nTalk:Kamitra Cigars/@comment-2A02:C7F:3647:7400:E8D2:1DAB:2A6B:897C-20190523124913\nTalk:Kamitra Cigars/@comment-34232734-20180112215401\nTalk:Kamitra Cigars/@comment-44787138-20200524084700\nTalk:Kamitra Cigars/@comment-47.215.142.21-20180304072236\nTalk:Kamitra Cigars/@comment-47.215.142.21-20180304072236/@comment-47.215.142.21-20180304175957\nTalk:Kamitra Cigars/@comment-50.179.24.231-20170430171028\nTalk:Kamitra Cigars/@comment-50.71.221.96-20171221070917\nTalk:Kamitra Cigars/@comment-65.23.98.41-20180222175638\nTalk:Kamitra Cigars/@comment-65.23.98.41-20180222175638/@comment-83.219.47.210-20180413102807\nTalk:Kamitra Cigars/@comment-72.28.159.143-20191004121521\nTalk:Kamitra Cigars/@comment-74.138.209.205-20171224055347\nTalk:Kamitra Cigars/@comment-74.138.209.205-20171224055347/@comment-66.241.177.247-20180209053358\nTalk:Kamitra Cigars/@comment-74.138.209.205-20171224055347/@comment-68.103.153.239-20180205233230\nTalk:Kamitra Cigars/@comment-77.48.21.70-20180312181329\nTalk:Kamitra Cigars/@comment-79.181.196.127-20161029013330\nTalk:Kamitra Cigars/@comment-79.255.30.127-20160930224037\nTalk:Kamitra Cigars/@comment-81.100.226.60-20171230190823\nTalk:Kamitra Cigars/@comment-81.100.226.60-20171230190823/@comment-2601:646:877F:91DD:181D:CF3D:91B1:4595-20180323192305\nTalk:Kamitra Cigars/@comment-81.100.226.60-20171230190823/@comment-78.205.74.107-20171230221255\nTalk:Kamitra Cigars/@comment-86.156.108.141-20170202120459\nTalk:Kamitra Cigars/@comment-92.176.18.64-20180325105919\nTalk:Kamitra Cigars/@comment-92.176.18.64-20180325105919/@comment-72.79.35.58-20180325164143\nTalk:Kamitra Cigars/@comment-94.234.55.203-20171219000226\nTalk:Kamitra Cigars/@comment-94.254.8.87-20160822090729\nTalk:Kamitra Cigars/@comment-97.113.221.32-20191203020840\nTalk:Kamitra Cigars/@comment-98.190.248.72-20170116185115\nTalk:Kamorin Historic Weapons/@comment-4.31.13.17-20150409205801\nTalk:Kamorin Historic Weapons/@comment-4.31.13.17-20150409205801/@comment-115.188.72.54-20150504074836\nTalk:Kappa Fornacis/@comment-1250011-20150127022315\nTalk:Kappa Fornacis/@comment-195.250.50.47-20150313103816\nTalk:Kappa Fornacis/@comment-45664829-20200502093324\nTalk:Karsuki Locusts/@comment-77.50.26.143-20160814205210\nTalk:Kay Ross/@comment-37569552-20181120110008\nTalk:Kay Ross/@comment-37569552-20181120110008/@comment-30928085-20181120134010\nTalk:Kay Ross/@comment-37569552-20181120110108\nTalk:Keelback/@comment-100.0.23.143-20190426204015\nTalk:Keelback/@comment-100.0.23.143-20190426204015/@comment-26810597-20190427001959\nTalk:Keelback/@comment-109.150.17.68-20190219235702\nTalk:Keelback/@comment-150.208.129.188-20170502183143\nTalk:Keelback/@comment-160.3.38.154-20190424044447\nTalk:Keelback/@comment-166.109.224.51-20190214144216\nTalk:Keelback/@comment-166.109.224.51-20190214144216/@comment-192.136.170.98-20190214190319\nTalk:Keelback/@comment-174.3.116.101-20170301201453\nTalk:Keelback/@comment-174.3.116.101-20170301201453/@comment-5959508-20170302115751\nTalk:Keelback/@comment-188.238.41.137-20160531075708\nTalk:Keelback/@comment-188.238.41.137-20160531075708/@comment-28774381-20160619044933\nTalk:Keelback/@comment-191.114.103.217-20151114123139\nTalk:Keelback/@comment-191.114.103.217-20151114123139/@comment-27115814-20151120174648\nTalk:Keelback/@comment-191.114.103.217-20151114123139/@comment-72.241.143.238-20151222200250\nTalk:Keelback/@comment-24.138.177.246-20151029215025\nTalk:Keelback/@comment-24.138.177.246-20151029215025/@comment-86.190.83.101-20151030162233\nTalk:Keelback/@comment-26391992-20151125104803\nTalk:Keelback/@comment-26391992-20151202105054\nTalk:Keelback/@comment-26391992-20151202105054/@comment-176.25.248.74-20151219012024\nTalk:Keelback/@comment-26391992-20151202105054/@comment-26247050-20151221073211\nTalk:Keelback/@comment-26391992-20151202105054/@comment-26391992-20151202184228\nTalk:Keelback/@comment-26391992-20151202105054/@comment-27115814-20151202164249\nTalk:Keelback/@comment-27115814-20151112172431\nTalk:Keelback/@comment-31094186-20180304214542\nTalk:Keelback/@comment-31094186-20180304214542/@comment-192.136.161.33-20180306181600\nTalk:Keelback/@comment-50.167.240.190-20160722215619\nTalk:Keelback/@comment-54.175.255.176-20170131233052\nTalk:Keelback/@comment-54.175.255.176-20170131233052/@comment-30802664-20170214141733\nTalk:Keelback/@comment-54.175.255.176-20170131233052/@comment-54.175.255.176-20170214234512\nTalk:Keelback/@comment-5968971-20151104212001\nTalk:Keelback/@comment-62.163.31.7-20160101101957\nTalk:Keelback/@comment-67.164.206.232-20160220220014\nTalk:Keelback/@comment-71.91.186.252-20171221231536\nTalk:Keelback/@comment-71.91.186.252-20180131043139\nTalk:Keelback/@comment-71.91.186.252-20180131043139/@comment-192.136.161.33-20180131211838\nTalk:Keelback/@comment-71.91.186.252-20180131043139/@comment-2600:1700:DCB0:CC40:F90F:5711:554A:D26D-20180716022715\nTalk:Keelback/@comment-73.151.104.224-20151109184345\nTalk:Keelback/@comment-75.130.28.30-20160322013433\nTalk:Keelback/@comment-78.1.131.175-20151221122134\nTalk:Keelback/@comment-78.1.131.175-20151221122134/@comment-2155082-20160312035151\nTalk:Keelback/@comment-78.1.131.175-20151221122134/@comment-50.170.117.254-20160312033437\nTalk:Keelback/@comment-78.1.131.175-20151221122134/@comment-50.170.117.254-20160313002326\nTalk:Keelback/@comment-78.1.131.175-20151221122134/@comment-9472148-20160203211820\nTalk:Keelback/@comment-81.141.52.40-20160106174627\nTalk:Keelback/@comment-82.1.203.26-20200106200241\nTalk:Keelback/@comment-82.226.121.139-20151024021603\nTalk:Keelback/@comment-84.192.14.107-20151120182744\nTalk:Keelback/@comment-86.190.83.101-20151022204555\nTalk:Keelback/@comment-86.190.83.101-20151022204555/@comment-70.198.76.164-20151028195430\nTalk:Keelback/@comment-86.90.35.69-20160516091952\nTalk:Keelback/@comment-86.90.35.69-20160516091952/@comment-71.9.25.119-20160612010000\nTalk:Keelback/@comment-93.31.161.46-20190304212452\nTalk:Keelback/@comment-95.90.240.212-20160317160113\nTalk:Keelback/@comment-95.90.240.212-20160317160113/@comment-168.99.197.20-20180306174415\nTalk:Keelback/@comment-96.250.114.167-20191226232943\nTalk:Keelback/@comment-97.123.131.49-20170131214120\nTalk:Keelback/@comment-97.84.134.46-20161201043918\nTalk:Keelback/@comment-97.84.134.46-20161201043918/@comment-169.231.141.119-20161222201327\nTalk:Keelback/@comment-97.84.134.46-20161201043918/@comment-194.176.105.150-20170125163931\nTalk:Keelback/@comment-97.84.134.46-20161201043918/@comment-82.43.82.64-20161218171059\nTalk:Keelback/@comment-97.84.134.46-20161201043918/@comment-97.84.134.46-20161223074341\nTalk:Keelback/@comment-99.237.37.136-20160211012651\nTalk:Keelback/@comment-99.237.37.136-20160211012651/@comment-192.136.172.239-20160211220456\nTalk:Kill Warrant Scanner/@comment-134.191.220.71-20140829135108\nTalk:Kill Warrant Scanner/@comment-134.191.220.71-20140829135108/@comment-80.229.22.61-20150104101541\nTalk:Kill Warrant Scanner/@comment-184.0.77.93-20151126183609\nTalk:Kill Warrant Scanner/@comment-188.2.22.207-20180103220401\nTalk:Kill Warrant Scanner/@comment-192.31.106.35-20150120172732\nTalk:Kill Warrant Scanner/@comment-192.31.106.35-20150120172732/@comment-12138097-20150120234047\nTalk:Kill Warrant Scanner/@comment-192.31.106.35-20150120172732/@comment-1250011-20150121134959\nTalk:Kill Warrant Scanner/@comment-192.31.106.35-20150120172732/@comment-192.31.106.36-20150121174150\nTalk:Kill Warrant Scanner/@comment-192.31.106.35-20150120172732/@comment-80.5.101.139-20150123143303\nTalk:Kill Warrant Scanner/@comment-194.213.237.68-20180607004619\nTalk:Kill Warrant Scanner/@comment-194.213.237.68-20180607004619/@comment-176.241.72.203-20190712021730\nTalk:Kill Warrant Scanner/@comment-195.212.29.86-20141103110119\nTalk:Kill Warrant Scanner/@comment-195.212.29.86-20141103110119/@comment-213.47.57.226-20150102123345\nTalk:Kill Warrant Scanner/@comment-195.212.29.86-20141103110119/@comment-217.10.128.170-20141103114614\nTalk:Kill Warrant Scanner/@comment-195.212.29.86-20141103110119/@comment-50.88.121.45-20150130030759\nTalk:Kill Warrant Scanner/@comment-209.197.138.154-20151201030357\nTalk:Kill Warrant Scanner/@comment-209.197.138.154-20151201030357/@comment-70.73.57.13-20160924071152\nTalk:Kill Warrant Scanner/@comment-209.197.138.154-20151201030357/@comment-71.89.81.10-20151202012632\nTalk:Kill Warrant Scanner/@comment-209.95.50.50-20161228155126\nTalk:Kill Warrant Scanner/@comment-217.230.21.70-20150603174647\nTalk:Kill Warrant Scanner/@comment-217.230.21.70-20150603174647/@comment-217.230.21.70-20150603174825\nTalk:Kill Warrant Scanner/@comment-24.36.7.27-20141231000228\nTalk:Kill Warrant Scanner/@comment-2600:6C44:37F:E778:51CE:B7EC:E74B:9C28-20170711171448\nTalk:Kill Warrant Scanner/@comment-2600:6C44:37F:E778:51CE:B7EC:E74B:9C28-20170711171448/@comment-2403:6200:8850:6CE3:DC5E:A3B5:5223:CD6A-20170728165933\nTalk:Kill Warrant Scanner/@comment-2602:306:CE29:B0D0:9C67:1E8D:BAF0:BB47-20190918110202\nTalk:Kill Warrant Scanner/@comment-47.55.219.150-20191020204808\nTalk:Kill Warrant Scanner/@comment-71.114.112.198-20150801230330\nTalk:Kill Warrant Scanner/@comment-74.50.201.107-20180425214944\nTalk:Kill Warrant Scanner/@comment-78.70.42.26-20141229092307\nTalk:Kill Warrant Scanner/@comment-78.70.42.26-20141229092307/@comment-4968814-20141229192441\nTalk:Kill Warrant Scanner/@comment-88.104.253.1-20150119134203\nTalk:Kill Warrant Scanner/@comment-88.104.253.1-20150119134203/@comment-192.91.171.42-20150120173133\nTalk:Kill Warrant Scanner/@comment-88.104.253.1-20150119134203/@comment-91.97.80.118-20151228221942\nTalk:Kill Warrant Scanner/@comment-88.104.253.1-20150119134203/@comment-91.97.99.58-20151229225200\nTalk:Kinetic Resistant Shield Generator/@comment-25803634-20180325064045\nTalk:Kongga Ale/@comment-102.165.212.68-20190701170827\nTalk:Kongga Ale/@comment-121.210.33.50-20181007102832\nTalk:Kongga Ale/@comment-121.210.33.50-20181007102832/@comment-26810597-20181010234821\nTalk:Kongga Ale/@comment-141.70.21.163-20180617224156\nTalk:Kongga Ale/@comment-177.50.167.59-20191227134423\nTalk:Kongga Ale/@comment-184.103.248.183-20190109060614\nTalk:Kongga Ale/@comment-2.235.169.183-20180124175737\nTalk:Kongga Ale/@comment-2.235.169.183-20180124175737/@comment-73.125.87.97-20180125104958\nTalk:Kongga Ale/@comment-2001:14BA:2BFE:9500:85C5:D32B:DBBD:3C40-20191221154423\nTalk:Kongga Ale/@comment-203.219.120.64-20181015021750\nTalk:Kongga Ale/@comment-24.96.115.240-20190719135640\nTalk:Kongga Ale/@comment-2404:440C:1084:D900:8C50:ABD:C4A3:6C42-20180131041702\nTalk:Kongga Ale/@comment-2604:2000:1200:4454:39A8:C703:EFD6:24AB-20180812034127\nTalk:Kongga Ale/@comment-31.178.24.36-20191016174536\nTalk:Kongga Ale/@comment-32472095-20190127171256\nTalk:Kongga Ale/@comment-5.146.251.238-20190521183405\nTalk:Kongga Ale/@comment-69.122.159.25-20180823182612\nTalk:Kongga Ale/@comment-76.5.112.242-20180813014825\nTalk:Kongga Ale/@comment-80.111.33.140-20180101010101\nTalk:Kongga Ale/@comment-87.12.229.194-20180405183340\nTalk:Kongga Ale/@comment-90.241.0.136-20180830053058\nTalk:Kongga Ale/@comment-95.184.17.55-20180625071601\nTalk:Korro Kung Pellets/@comment-77.50.26.143-20160814201529\nTalk:Krait/@comment-24.132.0.62-20180628174436\nTalk:Krait/@comment-98.234.177.115-20180629000342\nTalk:Krait MkII/@comment-100.2.35.122-20180703035011\nTalk:Krait MkII/@comment-100.2.35.122-20180703035011/@comment-97.91.196.87-20181108190518\nTalk:Krait MkII/@comment-100.4.84.50-20180125185321\nTalk:Krait MkII/@comment-100.4.84.50-20180125185321/@comment-30928085-20180125185738\nTalk:Krait MkII/@comment-109.155.38.37-20141224061931\nTalk:Krait MkII/@comment-109.155.38.37-20141224061931/@comment-79.232.216.164-20141227181255\nTalk:Krait MkII/@comment-115.69.186.97-20151221065050\nTalk:Krait MkII/@comment-122.60.183.147-20190504144759\nTalk:Krait MkII/@comment-122.60.183.147-20190504144759/@comment-122.60.183.147-20190504150601\nTalk:Krait MkII/@comment-122.60.183.147-20190504144759/@comment-192.136.172.169-20190506032534\nTalk:Krait MkII/@comment-149.254.51.76-20150317032859\nTalk:Krait MkII/@comment-149.254.51.76-20150317032859/@comment-220.239.204.47-20150317135801\nTalk:Krait MkII/@comment-160.3.38.154-20190424044113\nTalk:Krait MkII/@comment-165.225.0.79-20180627200512\nTalk:Krait MkII/@comment-165.225.0.79-20180627200512/@comment-2601:246:C900:9AAA:21C9:D7D2:130E:7223-20180628155228\nTalk:Krait MkII/@comment-165.225.0.79-20180627200512/@comment-26810597-20180627225645\nTalk:Krait MkII/@comment-165.225.0.79-20180627200512/@comment-35716095-20180628205521\nTalk:Krait MkII/@comment-165.225.0.79-20180627200512/@comment-92.176.18.64-20180628232939\nTalk:Krait MkII/@comment-166.109.224.51-20190610170847\nTalk:Krait MkII/@comment-166.109.224.51-20190610171513\nTalk:Krait MkII/@comment-166.109.224.51-20190610171758\nTalk:Krait MkII/@comment-166.137.139.48-20171008002105\nTalk:Krait MkII/@comment-173.191.60.74-20180629062548\nTalk:Krait MkII/@comment-173.216.188.244-20180820035416\nTalk:Krait MkII/@comment-173.50.120.218-20180630022846\nTalk:Krait MkII/@comment-173.50.120.218-20180630022846/@comment-100.2.35.122-20180703034532\nTalk:Krait MkII/@comment-176.61.8.43-20180828164949\nTalk:Krait MkII/@comment-185.154.73.239-20190201125544\nTalk:Krait MkII/@comment-185.154.73.239-20190201125544/@comment-2001:5B0:4BC1:7268:E56F:96D1:25CA:89A8-20190426140043\nTalk:Krait MkII/@comment-185.154.73.239-20190201125544/@comment-74.249.117.162-20190609024239\nTalk:Krait MkII/@comment-186.205.112.48-20180627032421\nTalk:Krait MkII/@comment-186.205.112.48-20180627032421/@comment-26810597-20180627042332\nTalk:Krait MkII/@comment-187.144.97.1-20180629053441\nTalk:Krait MkII/@comment-188.238.168.210-20171012205722\nTalk:Krait MkII/@comment-188.238.168.210-20171012205722/@comment-100.4.84.50-20180123030203\nTalk:Krait MkII/@comment-188.238.168.210-20171012205722/@comment-2601:19B:4880:504:DCF3:FAB0:C24C:5835-20180108004033\nTalk:Krait MkII/@comment-188.238.168.210-20171012205722/@comment-2601:246:C900:9AAA:7124:1FF8:69C2:115-20180626171201\nTalk:Krait MkII/@comment-188.238.168.210-20171012205722/@comment-64.113.173.176-20180412180801\nTalk:Krait MkII/@comment-188.238.168.210-20171012205722/@comment-89.13.159.20-20180118224952\nTalk:Krait MkII/@comment-189.166.47.117-20180611194756\nTalk:Krait MkII/@comment-189.166.47.117-20180611194756/@comment-62.45.66.79-20180615120320\nTalk:Krait MkII/@comment-192.251.13.138-20180709142606\nTalk:Krait MkII/@comment-192.251.13.138-20180709142606/@comment-192.136.170.98-20190328204949\nTalk:Krait MkII/@comment-192.251.13.138-20180709142606/@comment-2602:306:CE29:B0D0:5D22:1D64:56F:78C2-20191006001906\nTalk:Krait MkII/@comment-192.251.13.138-20180709142606/@comment-61.10.142.127-20180709192717\nTalk:Krait MkII/@comment-192.251.13.138-20180709142606/@comment-72.8.214.189-20190326234108\nTalk:Krait MkII/@comment-194.118.242.67-20180628180325\nTalk:Krait MkII/@comment-194.176.105.168-20150721130407\nTalk:Krait MkII/@comment-194.176.105.168-20150721130407/@comment-165.120.97.180-20151014233954\nTalk:Krait MkII/@comment-194.176.105.168-20150721130407/@comment-192.136.172.239-20160203172017\nTalk:Krait MkII/@comment-194.176.105.168-20150721130407/@comment-26599825-20150725113716\nTalk:Krait MkII/@comment-194.176.105.168-20150721130407/@comment-76.31.138.244-20150912191316\nTalk:Krait MkII/@comment-199.249.157.129-20191030202439\nTalk:Krait MkII/@comment-199.249.157.129-20191030202439/@comment-82.1.203.26-20200112082205\nTalk:Krait MkII/@comment-2001:268:C0A7:D961:467:AB0B:7C21:BA78-20180723160417\nTalk:Krait MkII/@comment-2001:268:C0A7:D961:467:AB0B:7C21:BA78-20180723160417/@comment-27511717-20180904021623\nTalk:Krait MkII/@comment-2001:268:C0A7:D961:467:AB0B:7C21:BA78-20180723160417/@comment-34641605-20180730015302\nTalk:Krait MkII/@comment-2001:268:C0A7:D961:467:AB0B:7C21:BA78-20180723160417/@comment-50.201.158.110-20181026135931\nTalk:Krait MkII/@comment-205.175.226.97-20180705134739\nTalk:Krait MkII/@comment-205.175.226.97-20180705134739/@comment-205.175.226.97-20180705134901\nTalk:Krait MkII/@comment-205.175.226.97-20180705134739/@comment-27511717-20180904021832\nTalk:Krait MkII/@comment-205.175.226.97-20180705134739/@comment-28261226-20180713045952\nTalk:Krait MkII/@comment-205.175.226.97-20180705134739/@comment-88.112.115.142-20181010090905\nTalk:Krait MkII/@comment-205.175.227.98-20180626132551\nTalk:Krait MkII/@comment-205.175.227.98-20180626132551/@comment-187.144.97.1-20180627051149\nTalk:Krait MkII/@comment-205.175.227.98-20180626132551/@comment-91.157.10.8-20180628184806\nTalk:Krait MkII/@comment-209.217.192.194-20180912144653\nTalk:Krait MkII/@comment-209.217.192.194-20180912144653/@comment-209.217.192.194-20180926151549\nTalk:Krait MkII/@comment-209.217.192.194-20180912144653/@comment-70.249.189.124-20180919082806\nTalk:Krait MkII/@comment-24.132.0.62-20180628174728\nTalk:Krait MkII/@comment-24.4.56.79-20190912101232\nTalk:Krait MkII/@comment-24.4.56.79-20190912101232/@comment-33493166-20190928095645\nTalk:Krait MkII/@comment-24.45.89.88-20150327035957\nTalk:Krait MkII/@comment-2600:6C5D:6300:801:95FB:5034:44EC:D4C0-20181121231850\nTalk:Krait MkII/@comment-2600:6C5D:6300:801:95FB:5034:44EC:D4C0-20181121231850/@comment-185.154.73.239-20190201125347\nTalk:Krait MkII/@comment-2600:6C5D:6300:801:95FB:5034:44EC:D4C0-20181121231850/@comment-74.187.214.57-20190810065817\nTalk:Krait MkII/@comment-2600:8800:8401:2E00:C887:6B29:7D9F:244E-20180703031701\nTalk:Krait MkII/@comment-2600:8800:8401:2E00:C887:6B29:7D9F:244E-20180703031701/@comment-100.2.78.49-20180828031428\nTalk:Krait MkII/@comment-2601:80:C101:2BC8:AD67:2627:EFD1:B909-20180722221718\nTalk:Krait MkII/@comment-2601:82:C200:B074:6439:DB47:15C1:BFC0-20180804065029\nTalk:Krait MkII/@comment-2601:82:C200:B074:6439:DB47:15C1:BFC0-20180804065029/@comment-100.2.78.49-20180828031245\nTalk:Krait MkII/@comment-2601:82:C200:B074:6439:DB47:15C1:BFC0-20180804065029/@comment-26810597-20180804225940\nTalk:Krait MkII/@comment-2604:6000:1517:8053:F42B:BC67:EDEA:AE0D-20181107213512\nTalk:Krait MkII/@comment-2604:6000:1517:8053:F42B:BC67:EDEA:AE0D-20181107213512/@comment-207.106.153.252-20190415161816\nTalk:Krait MkII/@comment-2604:6000:1517:8053:F42B:BC67:EDEA:AE0D-20181107213512/@comment-70.249.189.124-20190115224244\nTalk:Krait MkII/@comment-2604:6000:1517:8053:F42B:BC67:EDEA:AE0D-20181107213512/@comment-90.200.46.38-20181114171125\nTalk:Krait MkII/@comment-2604:6000:1517:8053:F42B:BC67:EDEA:AE0D-20181107213512/@comment-90.200.49.195-20181212154633\nTalk:Krait MkII/@comment-2604:6000:1517:8053:F42B:BC67:EDEA:AE0D-20181107213512/@comment-98.193.10.19-20181115224301\nTalk:Krait MkII/@comment-26257537-20150329175305\nTalk:Krait MkII/@comment-26257537-20150329175305/@comment-25644972-20180324105241\nTalk:Krait MkII/@comment-27511717-20180904021447\nTalk:Krait MkII/@comment-27511717-20180904021447/@comment-107.77.90.62-20181028202346\nTalk:Krait MkII/@comment-27511717-20180904021447/@comment-69.114.195.213-20180906122916\nTalk:Krait MkII/@comment-27511717-20180904021447/@comment-69.114.195.213-20180908030518\nTalk:Krait MkII/@comment-27511717-20180904021447/@comment-69.114.195.213-20180908031108\nTalk:Krait MkII/@comment-27511717-20180904021447/@comment-74.249.115.226-20180905060147\nTalk:Krait MkII/@comment-27511717-20180904021447/@comment-90.200.46.38-20181108233403\nTalk:Krait MkII/@comment-28261226-20180629024932\nTalk:Krait MkII/@comment-2A01:CB19:681:4100:193F:92A7:C39F:D3AC-20181022215934\nTalk:Krait MkII/@comment-2A01:CB19:681:4100:193F:92A7:C39F:D3AC-20181022215934/@comment-2A01:CB19:681:4100:193F:92A7:C39F:D3AC-20181022220149\nTalk:Krait MkII/@comment-2A01:CB19:681:4100:193F:92A7:C39F:D3AC-20181022215934/@comment-69.114.195.213-20181104132553\nTalk:Krait MkII/@comment-2A01:CB19:681:4100:193F:92A7:C39F:D3AC-20181022215934/@comment-72.8.214.189-20190326233231\nTalk:Krait MkII/@comment-2A01:CB19:681:4100:193F:92A7:C39F:D3AC-20181022215934/@comment-90.200.46.38-20181029122953\nTalk:Krait MkII/@comment-2A02:C7F:1423:B800:3416:F998:B3B1:E05E-20180729110534\nTalk:Krait MkII/@comment-2A02:C7F:2218:7000:CC2:5CE0:FBBF:85A5-20180630133505\nTalk:Krait MkII/@comment-32907084-20180811020728\nTalk:Krait MkII/@comment-32907084-20180811020728/@comment-27511717-20180904021513\nTalk:Krait MkII/@comment-36020408-20180629014408\nTalk:Krait MkII/@comment-36026034-20180629160813\nTalk:Krait MkII/@comment-36026034-20180629160813/@comment-64.110.232.245-20180701065815\nTalk:Krait MkII/@comment-36087093-20180705102501\nTalk:Krait MkII/@comment-38.93.169.82-20180626105645\nTalk:Krait MkII/@comment-41.13.12.245-20141227045924\nTalk:Krait MkII/@comment-44180665-20200331165808\nTalk:Krait MkII/@comment-44180665-20200331165808/@comment-33402796-20200708121856\nTalk:Krait MkII/@comment-44180665-20200331165808/@comment-43982350-20200903202738\nTalk:Krait MkII/@comment-44180665-20200331165808/@comment-44180665-20200331170022\nTalk:Krait MkII/@comment-50.201.158.110-20181026135739\nTalk:Krait MkII/@comment-50.201.158.110-20181026135739/@comment-72.8.214.189-20190326233014\nTalk:Krait MkII/@comment-50.227.53.41-20180702015358\nTalk:Krait MkII/@comment-67.224.44.185-20180625022143\nTalk:Krait MkII/@comment-67.224.44.185-20180625022143/@comment-67.224.44.185-20180625022217\nTalk:Krait MkII/@comment-67.61.62.98-20160913213823\nTalk:Krait MkII/@comment-67.61.62.98-20160913213823/@comment-182.239.187.143-20160922130846\nTalk:Krait MkII/@comment-67.61.62.98-20160913213823/@comment-2600:6C5D:6300:801:1819:C20E:70A3:2B03-20180316025439\nTalk:Krait MkII/@comment-67.61.62.98-20160913213823/@comment-31.185.231.53-20180109141537\nTalk:Krait MkII/@comment-67.61.62.98-20160913213823/@comment-68.184.253.119-20180104231234\nTalk:Krait MkII/@comment-69.161.199.70-20190127054254\nTalk:Krait MkII/@comment-72.71.205.88-20150208082300\nTalk:Krait MkII/@comment-74.249.112.23-20180829185810\nTalk:Krait MkII/@comment-81.0.53.137-20180627200340\nTalk:Krait MkII/@comment-81.0.53.137-20180627200340/@comment-104.174.16.235-20180628195434\nTalk:Krait MkII/@comment-81.0.53.137-20180627200340/@comment-192.136.163.15-20180628115947\nTalk:Krait MkII/@comment-81.0.53.137-20180627200340/@comment-24.132.0.62-20180628175626\nTalk:Krait MkII/@comment-81.0.53.137-20180627200340/@comment-73.109.87.38-20180629003853\nTalk:Krait MkII/@comment-81.0.53.137-20180627200340/@comment-86.161.106.30-20180630071615\nTalk:Krait MkII/@comment-81.130.86.3-20150324104819\nTalk:Krait MkII/@comment-82.148.166.56-20180630103058\nTalk:Krait MkII/@comment-82.148.166.56-20180630124944\nTalk:Krait MkII/@comment-82.148.166.56-20180630124944/@comment-100.2.35.122-20180703034321\nTalk:Krait MkII/@comment-82.148.166.56-20180630124944/@comment-108.17.143.90-20180701102945\nTalk:Krait MkII/@comment-82.148.166.56-20180630124944/@comment-187.134.253.101-20180714045802\nTalk:Krait MkII/@comment-82.148.166.56-20180630124944/@comment-2600:8800:2C00:C420:69D9:6DBB:5736:2CFA-20180702092910\nTalk:Krait MkII/@comment-82.148.166.56-20180630124944/@comment-73.38.127.210-20180630215140\nTalk:Krait MkII/@comment-83.223.191.203-20151228205332\nTalk:Krait MkII/@comment-83.223.191.203-20151228205429\nTalk:Krait MkII/@comment-83.223.191.203-20151228205429/@comment-2001:8003:24DF:F700:ECE7:292E:F82B:FF6E-20180213134748\nTalk:Krait MkII/@comment-83.223.191.203-20151228205429/@comment-27311754-20151228235844\nTalk:Krait MkII/@comment-84.128.120.15-20190201211848\nTalk:Krait MkII/@comment-84.247.138.174-20180828115614\nTalk:Krait MkII/@comment-84.247.138.174-20180828115614/@comment-2604:6000:1517:8053:F42B:BC67:EDEA:AE0D-20181016141409\nTalk:Krait MkII/@comment-86.153.169.161-20181210230729\nTalk:Krait MkII/@comment-86.153.169.161-20181210230729/@comment-166.109.224.51-20190610171248\nTalk:Krait MkII/@comment-86.153.169.161-20181210230729/@comment-185.154.73.239-20190124121655\nTalk:Krait MkII/@comment-86.153.169.161-20181210230729/@comment-192.136.170.98-20181211043052\nTalk:Krait MkII/@comment-86.153.169.161-20181210230729/@comment-70.249.189.124-20190115223703\nTalk:Krait MkII/@comment-86.153.169.161-20181210230729/@comment-70.249.189.124-20190115223811\nTalk:Krait MkII/@comment-89.64.6.211-20181211193501\nTalk:Krait MkII/@comment-89.64.6.211-20181211193501/@comment-192.136.170.98-20181211210537\nTalk:Krait MkII/@comment-89.64.6.211-20181211193501/@comment-192.136.170.98-20181211210655\nTalk:Krait MkII/@comment-89.64.6.211-20181211193501/@comment-192.136.170.98-20181211210957\nTalk:Krait MkII/@comment-89.64.6.211-20181211193501/@comment-74.249.117.162-20190609024449\nTalk:Krait MkII/@comment-90.200.46.38-20181022142203\nTalk:Krait MkII/@comment-90.200.46.38-20181022142203/@comment-192.136.170.46-20181022202334\nTalk:Krait MkII/@comment-90.200.46.38-20181022142203/@comment-50.201.158.110-20181115153253\nTalk:Krait MkII/@comment-90.200.46.38-20181022142203/@comment-70.249.189.124-20181025210819\nTalk:Krait MkII/@comment-90.200.46.38-20181022142203/@comment-70.249.189.124-20181025211035\nTalk:Krait MkII/@comment-90.200.46.38-20181022142203/@comment-74.249.115.34-20181026022221\nTalk:Krait MkII/@comment-90.200.46.38-20181022142203/@comment-90.200.46.38-20181023220211\nTalk:Krait MkII/@comment-90.200.46.38-20181022142203/@comment-90.200.46.38-20181025232512\nTalk:Krait MkII/@comment-90.200.46.38-20181104150301\nTalk:Krait MkII/@comment-90.200.46.38-20181104150301/@comment-192.136.170.98-20190314031045\nTalk:Krait MkII/@comment-90.200.46.38-20181104150301/@comment-2001:8003:6E04:A900:758C:4DBD:B75E:6DBB-20181114015427\nTalk:Krait MkII/@comment-90.200.46.38-20181104150301/@comment-70.249.189.124-20181106185250\nTalk:Krait MkII/@comment-90.200.46.38-20181104150301/@comment-74.249.118.26-20190313200928\nTalk:Krait MkII/@comment-90.200.46.38-20181104150301/@comment-90.200.46.38-20181108135744\nTalk:Krait MkII/@comment-90.240.70.36-20190328160541\nTalk:Krait MkII/@comment-90.240.70.36-20190328160541/@comment-192.136.170.98-20190328204653\nTalk:Krait MkII/@comment-90.240.70.36-20190328160541/@comment-74.187.214.57-20190810065018\nTalk:Krait MkII/@comment-98.193.10.19-20181115224145\nTalk:Krait Phantom/@comment-160.3.38.154-20190414225559\nTalk:Krait Phantom/@comment-163.47.115.70-20181212120727\nTalk:Krait Phantom/@comment-163.47.115.70-20181212120727/@comment-192.136.170.98-20181212154055\nTalk:Krait Phantom/@comment-185.154.73.239-20190124121726\nTalk:Krait Phantom/@comment-185.154.73.239-20190124121726/@comment-185.154.73.239-20190124121815\nTalk:Krait Phantom/@comment-185.154.73.239-20190124121726/@comment-192.136.170.98-20190206211713\nTalk:Krait Phantom/@comment-185.154.73.239-20190124121726/@comment-72.8.214.189-20190326230145\nTalk:Krait Phantom/@comment-185.229.59.40-20181226204725\nTalk:Krait Phantom/@comment-185.229.59.40-20181226204725/@comment-189.232.14.15-20190130232752\nTalk:Krait Phantom/@comment-185.229.59.40-20181226204725/@comment-70.249.189.124-20190115230012\nTalk:Krait Phantom/@comment-185.229.59.40-20181226204725/@comment-74.249.118.26-20190313195512\nTalk:Krait Phantom/@comment-185.229.59.40-20181226205504\nTalk:Krait Phantom/@comment-185.229.59.40-20181226205504/@comment-185.229.59.40-20181226212640\nTalk:Krait Phantom/@comment-185.229.59.40-20181226205504/@comment-70.249.189.124-20190115225609\nTalk:Krait Phantom/@comment-194.166.214.68-20181123002613\nTalk:Krait Phantom/@comment-194.166.214.68-20181123002613/@comment-2605:B100:F64F:6F1E:1615:F735:F762:11F1-20190127044309\nTalk:Krait Phantom/@comment-194.166.214.68-20181123002613/@comment-70.249.189.124-20190115231200\nTalk:Krait Phantom/@comment-198.179.70.228-20181228035850\nTalk:Krait Phantom/@comment-198.179.70.228-20181228035850/@comment-173.245.143.62-20190109201913\nTalk:Krait Phantom/@comment-198.179.70.228-20181228035850/@comment-185.154.73.239-20190205231154\nTalk:Krait Phantom/@comment-198.179.70.228-20181228035850/@comment-185.154.73.239-20190205231302\nTalk:Krait Phantom/@comment-198.179.70.228-20181228035850/@comment-192.136.170.98-20190328205122\nTalk:Krait Phantom/@comment-198.179.70.228-20181228035850/@comment-69.114.196.254-20190111204754\nTalk:Krait Phantom/@comment-198.179.70.228-20181228035850/@comment-70.249.189.124-20190115225201\nTalk:Krait Phantom/@comment-198.179.70.228-20181228035850/@comment-72.8.214.189-20190326230945\nTalk:Krait Phantom/@comment-2001:18C0:49F:9500:6D23:C4E:F6C:DA8D-20181210213958\nTalk:Krait Phantom/@comment-2001:18C0:49F:9500:6D23:C4E:F6C:DA8D-20181210213958/@comment-192.136.170.98-20181211043215\nTalk:Krait Phantom/@comment-2001:18C0:49F:9500:6D23:C4E:F6C:DA8D-20181210213958/@comment-192.136.170.98-20190116041533\nTalk:Krait Phantom/@comment-2001:18C0:49F:9500:6D23:C4E:F6C:DA8D-20181210213958/@comment-70.249.189.124-20190115230644\nTalk:Krait Phantom/@comment-212.10.111.72-20190806231817\nTalk:Krait Phantom/@comment-24.28.20.90-20180716180832\nTalk:Krait Phantom/@comment-2600:100D:B10A:38F2:E882:762A:9BD1:C4DD-20190501053655\nTalk:Krait Phantom/@comment-2600:6C5D:6300:801:21C7:54EB:A2CA:41D3-20181017014802\nTalk:Krait Phantom/@comment-2600:6C5D:6300:801:21C7:54EB:A2CA:41D3-20181017014802/@comment-24.159.43.54-20181106234836\nTalk:Krait Phantom/@comment-2600:6C5D:6300:801:21C7:54EB:A2CA:41D3-20181017014802/@comment-69.114.195.213-20181021162519\nTalk:Krait Phantom/@comment-2601:246:C900:9AAA:3551:BEB1:D21E:9DAB-20181110175024\nTalk:Krait Phantom/@comment-2601:246:C900:9AAA:403:3558:F6ED:256C-20181115014245\nTalk:Krait Phantom/@comment-2601:246:C900:9AAA:403:3558:F6ED:256C-20181115014245/@comment-192.136.170.98-20181219182438\nTalk:Krait Phantom/@comment-2601:246:C900:9AAA:403:3558:F6ED:256C-20181115014245/@comment-30320815-20181118204126\nTalk:Krait Phantom/@comment-2601:246:C900:9AAA:403:3558:F6ED:256C-20181115014245/@comment-90.200.49.195-20181219142034\nTalk:Krait Phantom/@comment-2A02:A311:A241:C300:50C:1985:93D1:463-20190119112941\nTalk:Krait Phantom/@comment-33493300-20190921023254\nTalk:Krait Phantom/@comment-34380896-20190801212226\nTalk:Krait Phantom/@comment-35008671-20181015191557\nTalk:Krait Phantom/@comment-37.50.140.213-20181031124456\nTalk:Krait Phantom/@comment-37.50.140.213-20181031124456/@comment-24.159.43.54-20181106234636\nTalk:Krait Phantom/@comment-50.201.158.110-20181115151643\nTalk:Krait Phantom/@comment-50.201.158.110-20181115151643/@comment-2001:5B0:4BD5:DD10:0:FF:FEBD:63F2-20181115191815\nTalk:Krait Phantom/@comment-50.201.158.110-20181115151643/@comment-50.201.158.82-20181115195444\nTalk:Krait Phantom/@comment-69.114.195.213-20181101205127\nTalk:Krait Phantom/@comment-69.114.195.213-20181102020338\nTalk:Krait Phantom/@comment-69.114.195.213-20181105230541\nTalk:Krait Phantom/@comment-69.114.195.213-20181105230541/@comment-50.201.158.82-20181107152039\nTalk:Krait Phantom/@comment-69.114.195.213-20181105230541/@comment-50.201.158.82-20181107152354\nTalk:Krait Phantom/@comment-69.114.196.254-20181113033158\nTalk:Krait Phantom/@comment-69.114.196.254-20181113033158/@comment-24.159.43.54-20181113044959\nTalk:Krait Phantom/@comment-69.114.196.254-20181113033158/@comment-25527827-20181113141321\nTalk:Krait Phantom/@comment-69.114.196.254-20181113033158/@comment-50.201.158.82-20181114160418\nTalk:Krait Phantom/@comment-69.114.196.254-20181113033158/@comment-69.114.196.254-20181114041822\nTalk:Krait Phantom/@comment-69.114.196.254-20181115024700\nTalk:Krait Phantom/@comment-69.114.196.254-20181115024700/@comment-50.201.158.110-20181115151434\nTalk:Krait Phantom/@comment-81.5.201.126-20181101164551\nTalk:Krait Phantom/@comment-81.5.201.126-20181101164551/@comment-109.41.67.51-20181108015458\nTalk:Krait Phantom/@comment-81.5.201.126-20181101164551/@comment-50.201.158.82-20181107152134\nTalk:Krait Phantom/@comment-81.5.201.126-20181101164551/@comment-69.114.195.213-20181101224017\nTalk:Krait Phantom/@comment-81.5.201.126-20181101164551/@comment-81.5.201.126-20181101170501\nTalk:Krait Phantom/@comment-81.5.201.126-20181101164551/@comment-81.5.201.126-20181101170721\nTalk:Krait Phantom/@comment-81.5.201.126-20181101164551/@comment-81.5.201.126-20181102112226\nTalk:Krait Phantom/@comment-81.5.201.126-20181108192002\nTalk:Krait Phantom/@comment-81.5.201.126-20181108215020\nTalk:Krait Phantom/@comment-81.5.201.126-20181109203622\nTalk:Krait Phantom/@comment-81.5.201.126-20181109203622/@comment-192.136.170.98-20181111044049\nTalk:Krait Phantom/@comment-81.5.201.126-20181109203622/@comment-192.136.172.44-20190818164326\nTalk:Krait Phantom/@comment-81.5.201.126-20181109203622/@comment-2A04:4540:6503:D101:61C2:583:1748:32AB-20181110102807\nTalk:Krait Phantom/@comment-81.5.201.126-20181109203622/@comment-30972879-20181116194508\nTalk:Krait Phantom/@comment-81.5.201.126-20181109203622/@comment-62.46.67.213-20181111224144\nTalk:Krait Phantom/@comment-81.5.201.126-20181109203622/@comment-74.187.214.57-20190810072147\nTalk:Krait Phantom/@comment-81.5.201.126-20181109203622/@comment-78.104.174.9-20181114125749\nTalk:Krait Phantom/@comment-81.5.201.126-20181109203622/@comment-81.5.201.126-20181110130151\nTalk:Krait Phantom/@comment-81.5.201.126-20181109203622/@comment-88.114.194.176-20181110002040\nTalk:Krait Phantom/@comment-81.5.201.126-20181109203622/@comment-88.114.194.176-20181111170141\nTalk:Krait Phantom/@comment-81.5.201.126-20181109203622/@comment-93.143.55.199-20181113014412\nTalk:Krait Phantom/@comment-81.5.201.126-20181109203622/@comment-98.193.10.19-20181112215325\nTalk:Krait Phantom/@comment-82.15.255.45-20181108221302\nTalk:Krait Phantom/@comment-82.15.255.45-20181108221302/@comment-192.136.170.98-20181109041437\nTalk:Krait Phantom/@comment-82.15.255.45-20181108221302/@comment-26810597-20181108225739\nTalk:Krait Phantom/@comment-82.15.255.45-20181108221302/@comment-69.114.195.213-20181109203749\nTalk:Krait Phantom/@comment-82.15.255.45-20181108221302/@comment-93.142.146.122-20181109170337\nTalk:Krait Phantom/@comment-90.200.46.38-20181102210146\nTalk:Krait Phantom/@comment-90.200.46.38-20181102210146/@comment-69.114.195.213-20181105230442\nTalk:Krait Phantom/@comment-90.200.46.38-20181102210146/@comment-78.104.174.8-20181107104820\nTalk:Krait Phantom/@comment-93.137.20.115-20181111230049\nTalk:Krait Phantom/@comment-93.137.20.115-20181111230049/@comment-30972879-20181116194027\nTalk:Krait Phantom/@comment-93.137.20.115-20181111230049/@comment-50.201.158.110-20181115153104\nTalk:Krait Phantom/@comment-93.137.20.115-20181111230049/@comment-69.114.196.254-20181114042027\nTalk:Krait Phantom/@comment-93.137.20.115-20181111230049/@comment-93.143.55.199-20181113002332\nTalk:Krait Phantom/@comment-93.137.20.115-20181111230049/@comment-93.143.55.199-20181113003016\nTalk:Krait Phantom/@comment-93.137.20.115-20181111230049/@comment-98.193.10.19-20181112215300\nTalk:Krait Phantom/@comment-93.185.26.80-20181108201339\nTalk:Kumo Crew/@comment-115.64.182.216-20150613115155\nTalk:Kumo Crew/@comment-115.64.182.216-20150613115248\nTalk:LHS 3447/@comment-208.163.181.246-20171224103003\nTalk:LHS 3447/@comment-24.253.75.17-20150714035735\nTalk:LHS 3447/@comment-24.253.75.17-20150714035735/@comment-139.139.19.68-20150924122628\nTalk:LHS 3447/@comment-24754830-20150615005809\nTalk:LHS 3447/@comment-27283317-20161201200525\nTalk:LHS 3447/@comment-46290524-20200911000052\nTalk:LHS 3447/@comment-73.164.133.238-20190116194152\nTalk:LHS 3447/@comment-76.89.31.217-20150627154235\nTalk:LHS 3447/@comment-76.89.31.217-20150627154235/@comment-188.250.193.190-20180209044639\nTalk:LTT Hyper Sweet/@comment-27283317-20151125024450\nTalk:LTT Hyper Sweet/@comment-77.50.26.143-20160814205805\nTalk:Lagoon Nebula/@comment-2601:281:C502:B211:2079:90:DB57:C07F-20190715224055\nTalk:Lagrange Cloud/@comment-100.14.12.70-20190220143747\nTalk:Lagrange Cloud/@comment-2003:D8:8717:F83:8149:B1B3:8586:3543-20200204171805\nTalk:Lagrange Cloud/@comment-2607:FEA8:4E0:DA0:8D44:2078:9308:D975-20200203133329\nTalk:Lagrange Cloud/@comment-34004391-20190903083221\nTalk:Lagrange Cloud/@comment-90.200.46.38-20181123193216\nTalk:Lakon Spaceways/@comment-122.106.254.124-20150612180511\nTalk:Lakon Spaceways/@comment-122.106.254.124-20150612180511/@comment-26537865-20150710164652\nTalk:Lakon Spaceways/@comment-188.2.22.207-20180103220259\nTalk:Lakon Spaceways/@comment-217.104.28.102-20171202170259\nTalk:Lakon Spaceways/@comment-24.118.224.118-20160310210539\nTalk:Lakon Spaceways/@comment-24.118.224.118-20160310210539/@comment-66.191.253.76-20160725032719\nTalk:Lakon Type-6 Transporter/@comment-104.220.14.250-20141216005104\nTalk:Lakon Type-6 Transporter/@comment-104.220.14.250-20141216005104/@comment-81.102.75.101-20141219115136\nTalk:Lakon Type-6 Transporter/@comment-109.172.15.17-20141222150138\nTalk:Lakon Type-6 Transporter/@comment-12138097-20141227071506\nTalk:Lakon Type-6 Transporter/@comment-12138097-20141227071506/@comment-87.115.185.4-20150130094413\nTalk:Lakon Type-6 Transporter/@comment-134.191.220.72-20140829113333\nTalk:Lakon Type-6 Transporter/@comment-134.191.220.72-20140829113333/@comment-25249692-20140829151721\nTalk:Lakon Type-6 Transporter/@comment-194.50.240.42-20141003080019\nTalk:Lakon Type-6 Transporter/@comment-205.166.76.15-20140814153650\nTalk:Lakon Type-6 Transporter/@comment-24.155.171.152-20140731145940\nTalk:Lakon Type-6 Transporter/@comment-24.155.171.152-20140731145940/@comment-82.30.153.126-20140731210609\nTalk:Lakon Type-6 Transporter/@comment-24.20.5.143-20141007193727\nTalk:Lakon Type-6 Transporter/@comment-24.20.5.143-20141007193727/@comment-72.184.170.224-20141205185842\nTalk:Lakon Type-6 Transporter/@comment-24.20.5.143-20141007193727/@comment-90.192.168.68-20141025014455\nTalk:Lakon Type-6 Transporter/@comment-25225570-20140813061128\nTalk:Lakon Type-6 Transporter/@comment-25225570-20140813061128/@comment-202.36.179.100-20140814040654\nTalk:Lakon Type-6 Transporter/@comment-25225570-20140813061128/@comment-6033893-20140813195952\nTalk:Lakon Type-6 Transporter/@comment-25225570-20140813061128/@comment-96.2.123.81-20150111113456\nTalk:Lakon Type-6 Transporter/@comment-66.229.135.252-20141213140838\nTalk:Lakon Type-6 Transporter/@comment-70.30.83.108-20141223024716\nTalk:Lakon Type-6 Transporter/@comment-71.95.100.70-20141221054749\nTalk:Lakon Type-6 Transporter/@comment-72.184.170.224-20141205185758\nTalk:Lakon Type-6 Transporter/@comment-82.45.94.234-20140825145304\nTalk:Lakon Type-7/@comment-121.215.20.71-20141226080352\nTalk:Lakon Type-7/@comment-121.215.20.71-20141226080352/@comment-77.101.193.215-20150201222054\nTalk:Lakon Type-7/@comment-121.215.20.71-20141226080352/@comment-94.64.248.22-20141228150155\nTalk:Lakon Type-7/@comment-194.149.26.9-20141222154724\nTalk:Lakon Type-7/@comment-194.149.26.9-20141222154724/@comment-74.96.218.32-20150102070745\nTalk:Lakon Type-7/@comment-70.30.83.108-20141227165059/@comment-76.124.162.53-20150212175706\nTalk:Lakon Type-7/@comment-86.131.75.158-20141222091107\nTalk:Lakon Type-7/@comment-87.163.152.202-20141231212046\nTalk:Lakon Type-7/@comment-87.163.152.202-20141231212046/@comment-109.81.210.65-20150102131914\nTalk:Lakon Type-7/@comment-87.163.152.202-20141231212046/@comment-25974778-20150106142549\nTalk:Lakon Type-7/@comment-87.163.152.202-20141231212046/@comment-4968814-20150106173200\nTalk:Lakon Type-7/@comment-87.163.152.202-20141231212046/@comment-746248-20150107071027\nTalk:Lakon Type-7/@comment-87.163.152.202-20141231212046/@comment-83.250.97.74-20150106141159\nTalk:Lakon Type-7/@comment-87.163.152.202-20141231212046/@comment-92.152.168.126-20150122212508\nTalk:Lakon Type-7/@comment-87.163.152.202-20141231212046/@comment-93.212.87.2-20150119073044\nTalk:Lakon Type-7/@comment-88.102.152.99-20141215230048\nTalk:Lakon Type-7/@comment-88.102.152.99-20141215230048/@comment-109.228.87.198-20150104120702\nTalk:Lakon Type-7/@comment-88.102.152.99-20141215230048/@comment-12138097-20141216193249\nTalk:Lakon Type-7/@comment-88.102.152.99-20141215230048/@comment-74.96.218.32-20150102070851\nTalk:Lakon Type-7/@comment-88.102.152.99-20141215230048/@comment-82.8.142.45-20141231160045\nTalk:Lakon Type-9 Heavy/@comment-99.10.172.246-20140814230639\nTalk:Lakon Type-9 Heavy/@comment-99.10.172.246-20140814230639/@comment-202.36.179.100-20140815012016\nTalk:Lakon Type-9 Heavy/@comment-99.10.172.246-20140814230639/@comment-83.32.241.107-20140823214113\nTalk:Landing Gear/@comment-2601:280:C200:BF:6538:EC3A:5E64:BA26-20191227154507\nTalk:Landing Gear/@comment-46.7.141.111-20171112142651\nTalk:Landing Gear/@comment-46.7.141.111-20171112142651/@comment-197.101.54.113-20190131170013\nTalk:Landing Gear/@comment-46.7.141.111-20171112142651/@comment-62.165.231.224-20180806163659\nTalk:Landing Pad/@comment-192.193.216.150-20160206025041\nTalk:Landing Pad/@comment-192.193.216.150-20160206025041/@comment-206.19.54.254-20190723210007\nTalk:Landing Pad/@comment-193.60.81.2-20150112123825\nTalk:Landing Pad/@comment-80.221.138.150-20150506175031\nTalk:Landing Pad/@comment-80.221.138.150-20150506175031/@comment-109.240.200.43-20180120225101\nTalk:Landing Pad/@comment-80.221.138.150-20150506175031/@comment-2602:30A:C097:2D40:D10E:DB0E:8EFC:D86B-20170913041131\nTalk:Landing Pad/@comment-84.0.35.155-20141227200625\nTalk:Landing Pad/@comment-84.0.35.155-20141227200625/@comment-12138097-20141227223642\nTalk:Landing Pad/@comment-84.0.35.155-20141227200625/@comment-73.42.10.104-20150121234621\nTalk:Landing Pad/@comment-86.173.44.37-20141231110635\nTalk:Landing Pad/@comment-86.173.44.37-20141231110635/@comment-12138097-20141231215544\nTalk:Landing Pad/@comment-86.173.44.37-20141231110635/@comment-84.0.35.155-20141231170719\nTalk:Landing Pad/@comment-98.239.48.227-20150218174053\nTalk:Landing Pad/@comment-98.239.48.227-20150218174053/@comment-43354983-20200410230354\nTalk:Landmines/@comment-145.132.121.77-20180303020331\nTalk:Landmines/@comment-145.132.121.77-20180303020331/@comment-140.190.36.151-20180320064426\nTalk:Landmines/@comment-185.182.81.53-20180408153253\nTalk:Landmines/@comment-185.182.81.53-20180408153253/@comment-47.62.194.94-20190601022322\nTalk:Landmines/@comment-185.182.81.53-20180408153253/@comment-78.194.172.246-20180501184835\nTalk:Landmines/@comment-27431584-20151220010504\nTalk:Landmines/@comment-27431584-20151220010504/@comment-181.194.163.16-20151231234256\nTalk:Landmines/@comment-27431584-20151220010504/@comment-181.194.163.16-20160101010319\nTalk:Landmines/@comment-27431584-20151220010504/@comment-66.30.147.96-20170907224803\nTalk:Landmines/@comment-47.62.194.94-20190601022308\nTalk:Landmines/@comment-5.49.89.6-20171209210348\nTalk:Landmines/@comment-5.49.89.6-20171209210348/@comment-109.152.86.223-20180815012635\nTalk:Landmines/@comment-50.161.68.65-20170918050334\nTalk:Landmines/@comment-50.161.68.65-20170918050334/@comment-2182702-20190914044610\nTalk:Landmines/@comment-50.161.68.65-20170918050334/@comment-78.106.26.30-20171126193846\nTalk:Landmines/@comment-94.21.31.139-20160131175156\nTalk:Landmines/@comment-94.21.31.139-20160131175156/@comment-174.96.14.169-20171025221752\nTalk:Large Survey Data Cache/@comment-104.187.245.37-20151101165814\nTalk:Large Survey Data Cache/@comment-104.187.245.37-20151101165814/@comment-70.189.209.176-20151206140326\nTalk:Large Survey Data Cache/@comment-24.228.248.215-20170128105132\nTalk:Large Survey Data Cache/@comment-25227859-20161203110900\nTalk:Large Survey Data Cache/@comment-2602:306:C5AF:DFF0:C931:A60C:4AF7:C24E-20190116212219\nTalk:Large Survey Data Cache/@comment-2A02:1810:9C12:BC00:4EE:20D9:4EF1:101C-20180724103547\nTalk:Large Survey Data Cache/@comment-60.229.147.15-20160118213430\nTalk:Large Survey Data Cache/@comment-60.229.147.15-20160118213430/@comment-95.91.228.175-20160604164950\nTalk:Large Survey Data Cache/@comment-92.19.150.72-20151030211427\nTalk:Large Survey Data Cache/@comment-95.91.228.175-20160604173839\nTalk:Largest Stars/@comment-124.149.238.172-20190220025754\nTalk:Largest Stars/@comment-185.230.125.51-20180911002957\nTalk:Largest Stars/@comment-70.76.25.105-20181030211635\nTalk:Lave/@comment-27956849-20160830150909\nTalk:Lave/@comment-27956849-20160830150909/@comment-27620258-20161220125451\nTalk:Lave/@comment-34004391-20180107200849\nTalk:Lave/@comment-73.222.24.240-20180801184001\nTalk:Lave/@comment-73.222.24.240-20180801184001/@comment-90.200.46.38-20181127002352\nTalk:Lave/@comment-95.91.228.198-20160107020737\nTalk:Lave Station/@comment-2A00:23C5:448A:EB00:86A:B5F3:6CA3:EFE-20180101214544\nTalk:Lave Station/@comment-34004391-20180107200256\nTalk:Lavian Brandy/@comment-142.129.54.140-20180406144215\nTalk:Lavian Brandy/@comment-145.249.206.186-20170131011040\nTalk:Lavian Brandy/@comment-173.69.2.122-20170205222722\nTalk:Lavian Brandy/@comment-173.69.2.122-20170205222722/@comment-2155082-20170206021059\nTalk:Lavian Brandy/@comment-178.202.166.75-20170327185557\nTalk:Lavian Brandy/@comment-178.41.133.255-20170704224323\nTalk:Lavian Brandy/@comment-192.228.232.114-20190106043239\nTalk:Lavian Brandy/@comment-192.228.232.114-20190106043239/@comment-176.241.72.203-20190807210308\nTalk:Lavian Brandy/@comment-192.228.232.114-20190106043239/@comment-189.32.29.99-20190108045335\nTalk:Lavian Brandy/@comment-209.93.216.130-20170524004341\nTalk:Lavian Brandy/@comment-23.115.39.229-20180417154125\nTalk:Lavian Brandy/@comment-2401:7000:B051:100:5448:FC84:2481:C430-20180520074955\nTalk:Lavian Brandy/@comment-2401:7000:B051:100:5448:FC84:2481:C430-20180520074955/@comment-50.126.117.111-20180628043206\nTalk:Lavian Brandy/@comment-2607:FCC8:68C2:1500:9515:1D6E:E4C1:67F2-20190522021249\nTalk:Lavian Brandy/@comment-2607:FCC8:68C2:1500:9515:1D6E:E4C1:67F2-20190522021249/@comment-68.107.141.180-20190829224834\nTalk:Lavian Brandy/@comment-2607:FCC8:68C2:1500:9515:1D6E:E4C1:67F2-20190522021249/@comment-88.84.183.38-20200214141255\nTalk:Lavian Brandy/@comment-37.120.44.233-20170705040211\nTalk:Lavian Brandy/@comment-37.120.44.233-20170705040211/@comment-37.120.35.197-20170707201126\nTalk:Lavian Brandy/@comment-37.120.44.233-20170705040211/@comment-37.120.44.233-20170705042253\nTalk:Lavian Brandy/@comment-37.120.44.233-20170705040211/@comment-50.126.117.111-20180625002940\nTalk:Lavian Brandy/@comment-50.126.117.111-20180625002845\nTalk:Lavian Brandy/@comment-50.126.117.111-20180628043033\nTalk:Lavian Brandy/@comment-50.126.117.111-20180628175603\nTalk:Lavian Brandy/@comment-62.165.158.196-20190118135048\nTalk:Lavian Brandy/@comment-62.165.158.196-20190118135048/@comment-2600:8803:C201:8100:A05A:1DCB:1411:148B-20191017142040\nTalk:Lavian Brandy/@comment-62.165.158.196-20190118135048/@comment-2A02:1810:142F:8300:5CFA:A73B:1C35:DF02-20190118214245\nTalk:Lavian Brandy/@comment-62.165.158.196-20190118135048/@comment-2A02:A31C:224:F00:3953:6FD2:2F0B:EDFC-20190819171151\nTalk:Lavian Brandy/@comment-62.165.158.196-20190118135048/@comment-85.71.137.173-20190706201222\nTalk:Lavian Brandy/@comment-73.222.24.240-20180801171839\nTalk:Lavian Brandy/@comment-73.222.24.240-20180801173826\nTalk:Lavian Brandy/@comment-75.174.161.187-20171008150051\nTalk:Lavian Brandy/@comment-82.38.51.32-20160831225526\nTalk:Lavian Brandy/@comment-83.28.205.163-20180214112455\nTalk:Lavian Brandy/@comment-88.235.187.185-20160630080146\nTalk:Lavian Brandy/@comment-88.235.187.185-20160630080146/@comment-192.136.161.248-20160831151437\nTalk:Lavian Brandy/@comment-88.235.187.185-20160630080146/@comment-31.16.58.61-20160716231308\nTalk:Lavian Brandy/@comment-88.235.187.185-20160630080146/@comment-31.16.58.61-20160717064910\nTalk:Lavian Brandy/@comment-88.235.187.185-20160630080146/@comment-94.181.96.236-20161009162833\nTalk:Lavian Brandy/@comment-89.64.12.113-20191115191629\nTalk:Lavian Brandy/@comment-96.42.66.124-20170208050824\nTalk:Lavigny's Legion/@comment-33493166-20200606070734\nTalk:Leathery Eggs/@comment-2604:2D80:8019:C16B:CD25:3221:EA4E:35BE-20171124020707\nTalk:Leathery Eggs/@comment-34004391-20180111062846\nTalk:Leathery Eggs/@comment-82.25.132.84-20151205035338\nTalk:Leathery Eggs/@comment-94.200.8.198-20150426210635\nTalk:Leathery Eggs/@comment-94.200.8.198-20150426210635/@comment-81.231.85.115-20151117115948\nTalk:Leesti/@comment-217.71.46.34-20170105150144\nTalk:Leesti/@comment-217.71.46.34-20170105150144/@comment-2A02:C7F:605E:9B00:DDF3:E306:8BE7:8F56-20180907155655\nTalk:Leesti/@comment-217.71.46.34-20170105150144/@comment-34004391-20180220101945\nTalk:Leesti/@comment-45781825-20200519021622\nTalk:Leestian Evil Juice/@comment-24.179.244.193-20170523231823\nTalk:Leestian Evil Juice/@comment-24.54.133.217-20151029031717\nTalk:Leestian Evil Juice/@comment-27311754-20151201205042\nTalk:Leestian Evil Juice/@comment-68.113.207.201-20161219210415\nTalk:Leestian Evil Juice/@comment-71.21.3.159-20150128231328\nTalk:Leestian Evil Juice/@comment-71.21.3.159-20150128231328/@comment-86.6.216.241-20160114204056\nTalk:Leestian Evil Juice/@comment-77.98.203.106-20160116093632\nTalk:Leestian Evil Juice/@comment-82.153.112.55-20151221192505\nTalk:Lei Cheung/@comment-152.30.101.140-20190319173544\nTalk:Lei Cheung/@comment-2601:645:1:BCE0:DCE9:ECD2:7B26:F986-20190120230521\nTalk:Lei Cheung/@comment-2601:645:1:BCE0:DCE9:ECD2:7B26:F986-20190120230521/@comment-81.145.43.50-20190121163833\nTalk:Leonard Nimoy Station/@comment-206.173.9.66-20150306190223\nTalk:Leonard Nimoy Station/@comment-206.173.9.66-20150306190223/@comment-26176485-20150314201245\nTalk:Leonard Nimoy Station/@comment-5416774-20180611034516\nTalk:Leonard Nimoy Station/@comment-82.13.223.67-20180602133415\nTalk:Li Qin Jao/@comment-43495716-20200803000511\nTalk:Li Qin Jao/@comment-97.90.117.71-20190709211559\nTalk:Li Yong-Rui/@comment-151.225.141.168-20160308192746\nTalk:Li Yong-Rui/@comment-151.225.141.168-20160308192746/@comment-88.114.83.140-20170926232621\nTalk:Li Yong-Rui/@comment-194.98.70.135-20150610093033\nTalk:Li Yong-Rui/@comment-194.98.70.135-20150610093033/@comment-26033489-20150610094438\nTalk:Li Yong-Rui/@comment-42.200.197.137-20171101035500\nTalk:Li Yong-Rui/@comment-42.200.197.137-20171101035500/@comment-24740282-20180329210310\nTalk:Li Yong-Rui/@comment-42.200.197.137-20171101035500/@comment-37125580-20181007123222\nTalk:Li Yong-Rui/@comment-42.200.197.137-20171101035500/@comment-76.186.92.75-20190219122610\nTalk:Li Yong-Rui/@comment-42.200.197.137-20171101035500/@comment-77.177.2.189-20181113002800\nTalk:Li Yong-Rui/@comment-63.225.190.126-20151030035008\nTalk:Li Yong-Rui/@comment-63.225.190.126-20151030035008/@comment-1028741-20151129104416\nTalk:Li Yong-Rui/@comment-71.190.237.174-20170526233018\nTalk:Li Yong-Rui/@comment-71.233.88.91-20160601013256\nTalk:Li Yong-Rui/@comment-71.48.54.39-20181206051605\nTalk:Li Yong-Rui/@comment-71.48.54.39-20181206051605/@comment-192.136.170.30-20190408193939\nTalk:Li Yong-Rui/@comment-71.48.54.39-20181206051605/@comment-2600:1700:F8C0:FB80:E02C:7B63:F0ED:9566-20190604204425\nTalk:Li Yong-Rui/@comment-71.48.54.39-20181206051605/@comment-33493166-20190408172217\nTalk:Li Yong-Rui/@comment-72.179.20.51-20150829193539\nTalk:Li Yong-Rui/@comment-75.64.247.69-20160119144807\nTalk:Li Yong-Rui/@comment-75.64.247.69-20160119144807/@comment-26391992-20160119164519\nTalk:Li Yong-Rui/@comment-75.64.247.69-20160119144807/@comment-71.2.247.208-20160228205022\nTalk:Li Yong-Rui/@comment-75.64.247.69-20160119144807/@comment-71.233.88.91-20160601013448\nTalk:Li Yong-Rui/@comment-77.101.36.188-20170728082333\nTalk:Li Yong-Rui/@comment-82.131.175.253-20150613181123\nTalk:Li Yong-Rui/@comment-82.131.175.253-20150613181123/@comment-2003:DB:F70F:D6BE:492:1B55:899D:7556-20200207144104\nTalk:Li Yong-Rui/@comment-82.131.175.253-20150613181123/@comment-58.179.214.56-20150902175310\nTalk:Li Yong-Rui/@comment-82.131.175.253-20150613181123/@comment-58.179.214.56-20150903193730\nTalk:Li Yong-Rui/@comment-82.131.175.253-20150613181123/@comment-82.226.121.139-20150614131652\nTalk:Li Yong-Rui/@comment-90.200.46.38-20181123225128\nTalk:Life Support/@comment-122.58.239.177-20161120084324\nTalk:Life Support/@comment-122.58.239.177-20161120084324/@comment-192.136.170.98-20181211042811\nTalk:Life Support/@comment-122.58.239.177-20161120084324/@comment-192.136.172.54-20190605004121\nTalk:Life Support/@comment-122.58.239.177-20161120084324/@comment-204.11.129.240-20190603184533\nTalk:Life Support/@comment-122.58.239.177-20161120084324/@comment-90.200.49.195-20181211015554\nTalk:Life Support/@comment-145.236.69.124-20160125223003\nTalk:Life Support/@comment-145.236.69.124-20160125223003/@comment-122.58.239.177-20161120084422\nTalk:Life Support/@comment-145.236.69.124-20160125223003/@comment-5151386-20170116204312\nTalk:Life Support/@comment-209.173.14.125-20150112153446\nTalk:Life Support/@comment-209.173.14.125-20150112153446/@comment-108.197.8.245-20170206221431\nTalk:Life Support/@comment-209.173.14.125-20150112153446/@comment-89.146.142.73-20151129132009\nTalk:Life Support/@comment-213.120.94.197-20141231122348\nTalk:Life Support/@comment-213.120.94.197-20141231122348/@comment-12138097-20141231205516\nTalk:Life Support/@comment-31.51.120.173-20160116111743\nTalk:Life Support/@comment-49.2.30.245-20150404122844\nTalk:Life Support/@comment-49.2.30.245-20150404122844/@comment-26009169-20150404130227\nTalk:Life Support/@comment-69.25.45.6-20150401193139\nTalk:Life Support/@comment-69.25.45.6-20150401193139/@comment-73.30.246.161-20150627143512\nTalk:Life Support/@comment-79.118.222.228-20150622205135\nTalk:Life Support/@comment-79.118.222.228-20150622205135/@comment-24.223.203.14-20151004004316\nTalk:Life Support/@comment-79.118.222.228-20150622205135/@comment-80.134.43.83-20200211102802\nTalk:Life Support/@comment-79.118.222.228-20150622205135/@comment-80.134.43.83-20200211103248\nTalk:Lifetime Expansion Pass/@comment-5.68.250.222-20190102170817\nTalk:Lightweight Alloys/@comment-128.250.0.220-20180815011746\nTalk:Limpet Controller/@comment-145.53.114.86-20151018182913\nTalk:Limpet Controller/@comment-162.254.104.16-20150910221735\nTalk:Limpet Controller/@comment-162.254.104.16-20150910221735/@comment-70.198.71.44-20151001125719\nTalk:Limpet Controller/@comment-173.217.5.86-20150929224807\nTalk:Limpet Controller/@comment-173.217.5.86-20150929224807/@comment-3991220-20180109041204\nTalk:Limpet Controller/@comment-173.217.5.86-20150929224807/@comment-72.197.150.63-20181215075820\nTalk:Limpet Controller/@comment-202.138.12.126-20150531045946\nTalk:Limpet Controller/@comment-202.138.12.126-20150531045946/@comment-209.12.67.163-20150829001613\nTalk:Limpet Controller/@comment-202.138.12.126-20150531045946/@comment-209.12.67.163-20150829002039\nTalk:Limpet Controller/@comment-202.138.12.126-20150531045946/@comment-4968814-20150602223037\nTalk:Limpet Controller/@comment-26344565-20150503015755\nTalk:Limpet Controller/@comment-26344565-20150503015755/@comment-173.11.190.254-20150507192140\nTalk:Limpet Controller/@comment-26344565-20150503015755/@comment-210.55.18.198-20150906202454\nTalk:Limpet Controller/@comment-26344565-20150503015755/@comment-4968814-20150602222925\nTalk:Limpet Controller/@comment-26344565-20150503015755/@comment-70.198.71.44-20151001130520\nTalk:Limpet Controller/@comment-3991220-20180109041242\nTalk:Limpet Controller/@comment-3991220-20180109041242/@comment-174.105.172.14-20180204211740\nTalk:Limpet Controller/@comment-79.181.127.231-20150529235047\nTalk:Limpet Controller/@comment-79.181.127.231-20150529235047/@comment-26009169-20150529235306\nTalk:Limpet Controller/@comment-89.14.113.144-20150502113733\nTalk:Limpet Controller/@comment-89.14.113.144-20150502113733/@comment-26009169-20150502115014\nTalk:Limpet Controller/@comment-89.14.113.144-20150502113733/@comment-88.112.91.114-20150509174416\nTalk:Limpet Controller/Collector/@comment-107.196.11.73-20150606223832\nTalk:Limpet Controller/Collector/@comment-121.210.33.50-20180212021525\nTalk:Limpet Controller/Collector/@comment-121.210.33.50-20180212021525/@comment-67.128.161.51-20191028150022\nTalk:Limpet Controller/Collector/@comment-147.69.133.85-20160203070837\nTalk:Limpet Controller/Collector/@comment-156.3.54.202-20150527152423\nTalk:Limpet Controller/Collector/@comment-173.55.173.227-20150602050301\nTalk:Limpet Controller/Collector/@comment-173.55.173.227-20150602050301/@comment-98.208.216.52-20150810045701\nTalk:Limpet Controller/Collector/@comment-174.2.66.60-20150713180906\nTalk:Limpet Controller/Collector/@comment-174.2.66.60-20150713180906/@comment-65.25.6.184-20150716120438\nTalk:Limpet Controller/Collector/@comment-174.26.78.242-20150722000054\nTalk:Limpet Controller/Collector/@comment-189.27.190.79-20170101201731\nTalk:Limpet Controller/Collector/@comment-189.27.190.79-20170101201731/@comment-192.136.161.52-20170101222958\nTalk:Limpet Controller/Collector/@comment-191.113.140.151-20160124015449\nTalk:Limpet Controller/Collector/@comment-191.113.140.151-20160124015449/@comment-99.237.37.136-20160214165121\nTalk:Limpet Controller/Collector/@comment-1945404-20150606122638\nTalk:Limpet Controller/Collector/@comment-210.55.18.198-20150906201240\nTalk:Limpet Controller/Collector/@comment-212.42.177.213-20150621152603\nTalk:Limpet Controller/Collector/@comment-212.42.177.213-20150621152603/@comment-135.0.26.15-20150915005616\nTalk:Limpet Controller/Collector/@comment-212.42.177.213-20150621152603/@comment-25992270-20150622101055\nTalk:Limpet Controller/Collector/@comment-212.42.177.213-20150621152603/@comment-26748640-20150802165434\nTalk:Limpet Controller/Collector/@comment-2602:306:CE29:B0D0:5148:3E6C:3019:AFBF-20191012004659\nTalk:Limpet Controller/Collector/@comment-26344565-20150606163358\nTalk:Limpet Controller/Collector/@comment-38659160-20200923134840\nTalk:Limpet Controller/Collector/@comment-4900524-20151015225334\nTalk:Limpet Controller/Collector/@comment-62.24.73.137-20150727175232\nTalk:Limpet Controller/Collector/@comment-62.24.73.137-20150727175232/@comment-59.115.48.121-20150730104439\nTalk:Limpet Controller/Collector/@comment-68.188.152.130-20180228204554\nTalk:Limpet Controller/Collector/@comment-73.186.52.63-20160831001234\nTalk:Limpet Controller/Collector/@comment-73.186.52.63-20160831001234/@comment-209.5.238.8-20190429000924\nTalk:Limpet Controller/Collector/@comment-73.186.52.63-20160831001234/@comment-24.18.40.26-20161021004028\nTalk:Limpet Controller/Collector/@comment-78.63.36.243-20150930142718\nTalk:Limpet Controller/Collector/@comment-78.63.36.243-20150930142718/@comment-86.183.17.198-20160514123721\nTalk:Limpet Controller/Collector/@comment-79.181.127.231-20150529130409\nTalk:Limpet Controller/Collector/@comment-79.181.127.231-20150529130409/@comment-173.55.173.227-20150601051530\nTalk:Limpet Controller/Collector/@comment-80.67.7.141-20190427093702\nTalk:Limpet Controller/Collector/@comment-82.4.71.151-20150606164707\nTalk:Limpet Controller/Collector/@comment-82.4.71.151-20150606164707/@comment-72.241.143.238-20150607092028\nTalk:Limpet Controller/Collector/@comment-8256051-20150608012725\nTalk:Limpet Controller/Collector/@comment-8256051-20150608012725/@comment-135.0.26.15-20150915005634\nTalk:Limpet Controller/Collector/@comment-86.1.58.154-20180410192131\nTalk:Limpet Controller/Decontamination/@comment-45587726-20200509195643\nTalk:Limpet Controller/Decontamination/@comment-45587726-20200509195643/@comment-378306-20200709083948\nTalk:Limpet Controller/Fuel Transferer/@comment-141.226.217.246-20170312180231\nTalk:Limpet Controller/Fuel Transferer/@comment-192.130.224.24-20150811122031\nTalk:Limpet Controller/Fuel Transferer/@comment-192.130.224.24-20150811122031/@comment-82.25.20.248-20150822005349\nTalk:Limpet Controller/Fuel Transferer/@comment-207.179.224.29-20151001153326\nTalk:Limpet Controller/Fuel Transferer/@comment-26391992-20150614094234\nTalk:Limpet Controller/Fuel Transferer/@comment-26391992-20150614094234/@comment-70.73.57.13-20160924064212\nTalk:Limpet Controller/Fuel Transferer/@comment-26391992-20150614094234/@comment-90.204.159.25-20160109040346\nTalk:Limpet Controller/Fuel Transferer/@comment-68.144.173.78-20160826105930\nTalk:Limpet Controller/Fuel Transferer/@comment-68.144.173.78-20160826105930/@comment-70.73.57.13-20160924063809\nTalk:Limpet Controller/Fuel Transferer/@comment-99.114.68.181-20150608010129\nTalk:Limpet Controller/Fuel Transferer/@comment-99.114.68.181-20150608010129/@comment-26009169-20150608010253\nTalk:Limpet Controller/Fuel Transferer/@comment-99.114.68.181-20150608010129/@comment-31.109.249.84-20150908043516\nTalk:Limpet Controller/Hatch Breaker/@comment-122.150.113.55-20150226122026\nTalk:Limpet Controller/Hatch Breaker/@comment-122.150.113.55-20150226122026/@comment-12138097-20150226194916\nTalk:Limpet Controller/Hatch Breaker/@comment-122.150.113.55-20150226122026/@comment-173.79.1.94-20150418205402\nTalk:Limpet Controller/Hatch Breaker/@comment-173.79.1.94-20150418205203\nTalk:Limpet Controller/Hatch Breaker/@comment-173.79.1.94-20150418205203/@comment-173.79.1.94-20150418205711\nTalk:Limpet Controller/Hatch Breaker/@comment-173.79.1.94-20150418205203/@comment-26537865-20150724180725\nTalk:Limpet Controller/Hatch Breaker/@comment-173.79.1.94-20150418205203/@comment-66.109.235.218-20160215170828\nTalk:Limpet Controller/Hatch Breaker/@comment-173.79.1.94-20150418205203/@comment-83.31.105.24-20150812173724\nTalk:Limpet Controller/Hatch Breaker/@comment-173.79.1.94-20150418205203/@comment-92.208.167.229-20150503234239\nTalk:Limpet Controller/Hatch Breaker/@comment-2602:306:CE29:B0D0:13E:F6E0:66E4:7C57-20190912030215\nTalk:Limpet Controller/Hatch Breaker/@comment-28507382-20171006220212\nTalk:Limpet Controller/Hatch Breaker/@comment-28507382-20171006220212/@comment-4986699-20171028154521\nTalk:Limpet Controller/Hatch Breaker/@comment-29011619-20170509141025\nTalk:Limpet Controller/Hatch Breaker/@comment-29011619-20170509141025/@comment-212.130.241.198-20170601055958\nTalk:Limpet Controller/Hatch Breaker/@comment-47.72.234.151-20151201101031\nTalk:Limpet Controller/Hatch Breaker/@comment-47.72.234.151-20151201101031/@comment-47.72.234.151-20151201101056\nTalk:Limpet Controller/Hatch Breaker/@comment-50.88.121.45-20150129001011\nTalk:Limpet Controller/Hatch Breaker/@comment-50.88.121.45-20150129001011/@comment-12138097-20150129001510\nTalk:Limpet Controller/Hatch Breaker/@comment-50.88.121.45-20150129001011/@comment-50.88.121.45-20150130031005\nTalk:Limpet Controller/Hatch Breaker/@comment-50.88.121.45-20150129001011/@comment-50.88.121.45-20150130031115\nTalk:Limpet Controller/Hatch Breaker/@comment-71.228.151.147-20141218051957\nTalk:Limpet Controller/Hatch Breaker/@comment-71.228.151.147-20141218051957/@comment-88.112.91.114-20150109172605\nTalk:Limpet Controller/Hatch Breaker/@comment-73.209.92.179-20151222161455\nTalk:Limpet Controller/Hatch Breaker/@comment-74.74.176.116-20160603203549\nTalk:Limpet Controller/Hatch Breaker/@comment-84.132.217.71-20141214225835\nTalk:Limpet Controller/Hatch Breaker/@comment-84.132.217.71-20141214225835/@comment-12138097-20141215204745\nTalk:Limpet Controller/Hatch Breaker/@comment-84.132.217.71-20141214225835/@comment-66.109.235.218-20160215171253\nTalk:Limpet Controller/Hatch Breaker/@comment-84.132.217.71-20141214225835/@comment-92.104.171.77-20150105184633\nTalk:Limpet Controller/Hatch Breaker/@comment-88.112.91.114-20150316185623\nTalk:Limpet Controller/Hatch Breaker/@comment-88.112.91.114-20150316185623/@comment-88.85.155.146-20150319165948\nTalk:Limpet Controller/Hatch Breaker/@comment-88.85.155.146-20150320134709\nTalk:Limpet Controller/Prospector/@comment-135.0.26.15-20150915010038\nTalk:Limpet Controller/Prospector/@comment-135.0.26.15-20150915010038/@comment-173.160.232.227-20150927050339\nTalk:Limpet Controller/Prospector/@comment-14.200.159.54-20190105152342\nTalk:Limpet Controller/Prospector/@comment-14.200.159.54-20190105152342/@comment-2602:306:CE29:B0D0:5148:3E6C:3019:AFBF-20191012004820\nTalk:Limpet Controller/Prospector/@comment-156.3.54.203-20150604150827\nTalk:Limpet Controller/Prospector/@comment-156.3.54.203-20150604150827/@comment-75.65.57.178-20160304015102\nTalk:Limpet Controller/Prospector/@comment-173.55.173.227-20150601052157\nTalk:Limpet Controller/Prospector/@comment-173.55.173.227-20150601052157/@comment-173.55.173.227-20150602050036\nTalk:Limpet Controller/Prospector/@comment-173.55.173.227-20150601052157/@comment-26009169-20150601121135\nTalk:Limpet Controller/Prospector/@comment-173.55.173.227-20150601052157/@comment-84.106.111.176-20150609160039\nTalk:Limpet Controller/Prospector/@comment-173.55.173.227-20150601052157/@comment-84.251.68.190-20150627152731\nTalk:Limpet Controller/Prospector/@comment-178.202.48.107-20150724112657\nTalk:Limpet Controller/Prospector/@comment-178.202.48.107-20150724112657/@comment-107.159.23.30-20171115220630\nTalk:Limpet Controller/Prospector/@comment-178.202.48.107-20150724112657/@comment-26748640-20150802170104\nTalk:Limpet Controller/Prospector/@comment-188.193.174.14-20180415214123\nTalk:Limpet Controller/Prospector/@comment-188.193.174.14-20180415214123/@comment-68.53.47.118-20180705013756\nTalk:Limpet Controller/Prospector/@comment-209.12.67.163-20150828235404\nTalk:Limpet Controller/Prospector/@comment-213.127.72.24-20170114192336\nTalk:Limpet Controller/Prospector/@comment-213.127.72.24-20170114192336/@comment-192.31.105.173-20170124230907\nTalk:Limpet Controller/Prospector/@comment-2602:306:CE29:B0D0:5148:3E6C:3019:AFBF-20191012004756\nTalk:Limpet Controller/Prospector/@comment-26810344-20160319192540\nTalk:Limpet Controller/Prospector/@comment-26810344-20160319192540/@comment-70.73.57.13-20160924071027\nTalk:Limpet Controller/Prospector/@comment-64.211.150.164-20151006152800\nTalk:Limpet Controller/Prospector/@comment-64.211.150.164-20151006152800/@comment-110.174.240.10-20151009022143\nTalk:Limpet Controller/Prospector/@comment-76.71.1.67-20151118162731\nTalk:Limpet Controller/Prospector/@comment-76.71.1.67-20151118162731/@comment-26748640-20151118201508\nTalk:Limpet Controller/Prospector/@comment-78.48.82.91-20150528003910\nTalk:Limpet Controller/Prospector/@comment-78.48.82.91-20150528003910/@comment-173.55.173.227-20150602050110\nTalk:Limpet Controller/Prospector/@comment-86.9.62.138-20160116154351\nTalk:Limpet Controller/Prospector/@comment-86.9.62.138-20160116154351/@comment-189.27.189.28-20161229120840\nTalk:Limpet Controller/Prospector/@comment-99.237.37.136-20160214165802\nTalk:Limpet Controller/Recon/@comment-2001:8003:389E:AB00:5924:7B2B:9FF7:95D9-20180228093913\nTalk:Limpet Controller/Recon/@comment-2001:8003:389E:AB00:5924:7B2B:9FF7:95D9-20180228093913/@comment-2001:8003:38AD:DA00:BD6B:7F67:3BDA:D796-20180322112038\nTalk:Limpet Controller/Recon/@comment-2001:8003:389E:AB00:5924:7B2B:9FF7:95D9-20180228093913/@comment-47.145.55.163-20180430140404\nTalk:Limpet Controller/Recon/@comment-2A00:23C4:B509:1D01:F92D:BAD:385:4346-20181221194940\nTalk:Limpet Controller/Repair/@comment-108.161.29.75-20180419053641\nTalk:Limpet Controller/Repair/@comment-2001:4898:80E8:1:AD80:6F12:970D:1137-20190904190058\nTalk:Limpet Controller/Repair/@comment-2001:4898:80E8:1:AD80:6F12:970D:1137-20190904190058/@comment-2001:4898:80E8:1:AD80:6F12:970D:1137-20190904190140\nTalk:Limpet Controller/Repair/@comment-2003:DB:F70F:D663:FD26:6138:73D4:6FC7-20200209190533\nTalk:Limpet Controller/Repair/@comment-2003:DB:F70F:D663:FD26:6138:73D4:6FC7-20200209190533/@comment-2003:DB:F70F:D663:FD26:6138:73D4:6FC7-20200209193944\nTalk:Limpet Controller/Repair/@comment-217.103.106.42-20200210165520\nTalk:Limpet Controller/Repair/@comment-217.103.106.42-20200210165520/@comment-27941085-20200225061427\nTalk:Limpet Controller/Repair/@comment-25644972-20180315213303\nTalk:Limpet Controller/Repair/@comment-25644972-20180315213303/@comment-92.176.18.64-20180327002721\nTalk:Limpet Controller/Repair/@comment-2600:8806:A400:B10:FC8F:8899:354D:8430-20171211184832\nTalk:Limpet Controller/Repair/@comment-2600:8806:A400:B10:FC8F:8899:354D:8430-20171211184832/@comment-100.14.183.110-20171225012304\nTalk:Limpet Controller/Repair/@comment-2600:8806:A400:B10:FC8F:8899:354D:8430-20171211184832/@comment-74.82.35.84-20180119071921\nTalk:Limpet Controller/Research/@comment-109.193.150.130-20180905210633\nTalk:Limpet Controller/Research/@comment-109.193.150.130-20180905210633/@comment-143.52.30.109-20181106130407\nTalk:Limpet Controller/Research/@comment-205.122.234.108-20190611020350\nTalk:Limpet Controller/Research/@comment-205.122.234.108-20190611020350/@comment-26810597-20190611021954\nTalk:Ling Lang/@comment-1028741-20151031222643\nTalk:Liquor/@comment-64.127.136.202-20160121155455\nTalk:List of Pristine Metallic Rings/@comment-108.173.63.220-20160604212207\nTalk:List of Pristine Metallic Rings/@comment-108.173.63.220-20160604212207/@comment-108.173.63.220-20160604214701\nTalk:List of Pristine Metallic Rings/@comment-108.75.133.205-20151106032009\nTalk:List of Pristine Metallic Rings/@comment-108.75.133.205-20151106032009/@comment-108.75.133.205-20151203161933\nTalk:List of Pristine Metallic Rings/@comment-108.75.133.205-20151106032009/@comment-27077258-20151108155336\nTalk:List of Pristine Metallic Rings/@comment-128.70.195.254-20160601191743\nTalk:List of Pristine Metallic Rings/@comment-173.17.249.229-20160104224806\nTalk:List of Pristine Metallic Rings/@comment-173.17.249.229-20160104224806/@comment-27077258-20160224133710\nTalk:List of Pristine Metallic Rings/@comment-174.51.8.121-20151218025033\nTalk:List of Pristine Metallic Rings/@comment-201.3.105.98-20160107032633\nTalk:List of Pristine Metallic Rings/@comment-201.3.105.98-20160107032633/@comment-135.23.67.121-20160208201954\nTalk:List of Pristine Metallic Rings/@comment-208.127.124.18-20161026053526\nTalk:List of Pristine Metallic Rings/@comment-24.1.13.164-20151206002653\nTalk:List of Pristine Metallic Rings/@comment-25411947-20151015145224\nTalk:List of Pristine Metallic Rings/@comment-2600:8800:5B82:B500:B896:871B:3E8B:B985-20190105000639\nTalk:List of Pristine Metallic Rings/@comment-27269238-20160205141457\nTalk:List of Pristine Metallic Rings/@comment-27336833-20151209071501\nTalk:List of Pristine Metallic Rings/@comment-34252434-20180108123424\nTalk:List of Pristine Metallic Rings/@comment-70.30.80.224-20151217193121\nTalk:List of Pristine Metallic Rings/@comment-76.67.111.182-20151209020728\nTalk:List of Pristine Metallic Rings/@comment-77.152.251.48-20151101164616\nTalk:List of Pristine Metallic Rings/@comment-77.180.148.188-20190317202950\nTalk:List of Pristine Metallic Rings/@comment-88.23.79.23-20160124111523\nTalk:List of Pristine Metallic Rings/@comment-88.23.79.23-20160124111523/@comment-26987932-20160202104129\nTalk:List of Pristine Metallic Rings/@comment-92.138.196.196-20151229020249\nTalk:List of Pristine Metallic Rings/@comment-93.228.37.207-20160902185537\nTalk:List of Pristine Metallic Rings/@comment-99.252.245.211-20160509210357\nTalk:List of Pristine Metallic Rings/@comment-99.51.71.135-20171109060740\nTalk:List of Rare Commodities/@comment-14.2.98.70-20160611131521\nTalk:List of Rare Commodities/@comment-14.2.98.70-20160611131521/@comment-2155082-20160611193203\nTalk:List of Rare Commodities/@comment-173.26.133.14-20151227103803\nTalk:List of Rare Commodities/@comment-173.26.133.14-20151227103803/@comment-27283317-20160111035125\nTalk:List of Rare Commodities/@comment-174.102.96.147-20150307192835\nTalk:List of Rare Commodities/@comment-174.102.96.147-20150307192835/@comment-174.102.96.147-20150307195520\nTalk:List of Rare Commodities/@comment-174.125.96.212-20160820233916\nTalk:List of Rare Commodities/@comment-176.249.62.114-20170823190107\nTalk:List of Rare Commodities/@comment-188.2.7.104-20170801193504\nTalk:List of Rare Commodities/@comment-191.181.166.20-20150505175312\nTalk:List of Rare Commodities/@comment-191.181.166.20-20150505175312/@comment-191.181.166.20-20150505175452\nTalk:List of Rare Commodities/@comment-203.14.52.144-20151013014154\nTalk:List of Rare Commodities/@comment-203.14.52.144-20151013014154/@comment-104.200.154.77-20151104022615\nTalk:List of Rare Commodities/@comment-210.55.18.198-20151122183540\nTalk:List of Rare Commodities/@comment-210.55.18.198-20151124184846\nTalk:List of Rare Commodities/@comment-24.196.130.95-20160515182213\nTalk:List of Rare Commodities/@comment-2600:100A:B104:6110:798C:B073:15AE:E50F-20190414074033\nTalk:List of Rare Commodities/@comment-26534102-20150706084558\nTalk:List of Rare Commodities/@comment-26534102-20150706084558/@comment-141.0.146.135-20150713203930\nTalk:List of Rare Commodities/@comment-26534102-20150706084558/@comment-206.105.116.11-20150713135736\nTalk:List of Rare Commodities/@comment-26534102-20150706084558/@comment-210.55.18.198-20151122184044\nTalk:List of Rare Commodities/@comment-26534102-20150706084558/@comment-26534102-20150714092655\nTalk:List of Rare Commodities/@comment-26534102-20150706084558/@comment-26534102-20150715103134\nTalk:List of Rare Commodities/@comment-26534102-20150706084558/@comment-26534102-20150715165328\nTalk:List of Rare Commodities/@comment-26534102-20150706084558/@comment-69.141.172.169-20150927220739\nTalk:List of Rare Commodities/@comment-27283317-20151213205505\nTalk:List of Rare Commodities/@comment-27283317-20151220184728\nTalk:List of Rare Commodities/@comment-27283317-20151220184728/@comment-1028741-20151220185248\nTalk:List of Rare Commodities/@comment-27283317-20151220184728/@comment-27283317-20151220195755\nTalk:List of Rare Commodities/@comment-27283317-20160918193227\nTalk:List of Rare Commodities/@comment-27310166-20160723232916\nTalk:List of Rare Commodities/@comment-27310166-20160723232916/@comment-2601:84:8900:6D4E:980F:27BC:2273:2838-20171002203421\nTalk:List of Rare Commodities/@comment-27310166-20160723232916/@comment-27283317-20171002210503\nTalk:List of Rare Commodities/@comment-33835537-20180212045944\nTalk:List of Rare Commodities/@comment-5.64.211.198-20150928180134\nTalk:List of Rare Commodities/@comment-72.10.23.143-20150824213637\nTalk:List of Rare Commodities/@comment-72.10.23.143-20150824213637/@comment-72.234.32.209-20160213212123\nTalk:List of Rare Commodities/@comment-79.45.174.1-20150802175228\nTalk:List of Rare Commodities/@comment-86.1.43.146-20160604001901\nTalk:List of Rare Commodities/@comment-86.1.43.146-20160604001901/@comment-173.27.88.60-20160604180151\nTalk:List of Rare Commodities/@comment-903860-20190622023629\nTalk:List of Rare Commodities/@comment-92.234.50.61-20160110030505\nTalk:List of Rare Commodities/@comment-92.234.50.61-20160110030505/@comment-2155082-20160111042601\nTalk:List of Rare Commodities/@comment-92.234.50.61-20160110030505/@comment-27283317-20160110183559\nTalk:List of Rare Commodities/@comment-92.234.50.61-20160110030505/@comment-27283317-20160519041450\nTalk:List of Rare Commodities/@comment-92.234.50.61-20160110030505/@comment-27283317-20180708201553\nTalk:List of Rare Commodities/@comment-93.220.74.162-20150818151213\nTalk:List of Rare Commodities/@comment-97.126.139.151-20150921164959\nTalk:List of Rare Commodities/@comment-98.122.129.218-20180122012142\nTalk:List of Rare Commodities/@comment-98.122.129.218-20180122012142/@comment-27283317-20180123185632\nTalk:List of Rare Commodities/@comment-98.122.129.218-20180122012142/@comment-27283317-20181104193422\nTalk:List of minor factions/@comment-109.158.226.40-20150501171349\nTalk:List of minor factions/@comment-109.158.226.40-20150501171349/@comment-29746697-20160826233635\nTalk:List of minor factions/@comment-109.73.216.84-20160217174804\nTalk:List of minor factions/@comment-109.73.216.84-20160217174804/@comment-29746697-20160826231741\nTalk:List of minor factions/@comment-1181012-20150506190422\nTalk:List of minor factions/@comment-1181012-20150506190422/@comment-1181012-20150518014132\nTalk:List of minor factions/@comment-1181012-20150506190422/@comment-26014491-20150516211031\nTalk:List of minor factions/@comment-12138097-20141226083712\nTalk:List of minor factions/@comment-12138097-20141226083712/@comment-104.37.206.96-20150603034031\nTalk:List of minor factions/@comment-12138097-20141226083712/@comment-1250011-20150104220512\nTalk:List of minor factions/@comment-12138097-20141226083712/@comment-26247073-20150413085534\nTalk:List of minor factions/@comment-12138097-20141226083712/@comment-27496326-20160104125357\nTalk:List of minor factions/@comment-12138097-20141226083712/@comment-29746697-20160826234057\nTalk:List of minor factions/@comment-174.102.154.114-20150220044159\nTalk:List of minor factions/@comment-174.4.53.44-20150731041034\nTalk:List of minor factions/@comment-174.4.53.44-20150731041034/@comment-29746697-20160826232552\nTalk:List of minor factions/@comment-188.126.172.133-20161121102911\nTalk:List of minor factions/@comment-188.126.172.133-20161121102911/@comment-142.162.213.212-20170302000005\nTalk:List of minor factions/@comment-2.102.69.132-20150307010608\nTalk:List of minor factions/@comment-2.29.231.8-20150824153922\nTalk:List of minor factions/@comment-2.29.231.8-20150824153922/@comment-29746697-20160826232503\nTalk:List of minor factions/@comment-203.168.58.34-20160209052742\nTalk:List of minor factions/@comment-24.187.9.187-20150516164820\nTalk:List of minor factions/@comment-25985607-20150411201832\nTalk:List of minor factions/@comment-37.123.160.36-20150816141610\nTalk:List of minor factions/@comment-37.123.160.36-20150816141610/@comment-29746697-20160826232527\nTalk:List of minor factions/@comment-66.102.9.18-20151020095551\nTalk:List of minor factions/@comment-66.102.9.18-20151020095551/@comment-29746697-20160826232231\nTalk:List of minor factions/@comment-70.198.76.215-20151002194330\nTalk:List of minor factions/@comment-70.198.76.215-20151002194330/@comment-29746697-20160826232438\nTalk:List of minor factions/@comment-71.227.156.140-20150603060613\nTalk:List of minor factions/@comment-76.255.149.52-20150719073813\nTalk:List of minor factions/@comment-76.255.149.52-20150719073813/@comment-29746697-20160826233430\nTalk:List of minor factions/@comment-76.255.149.52-20150719073813/@comment-76.255.149.52-20150721043343\nTalk:List of minor factions/@comment-81.157.154.30-20150722105506\nTalk:List of minor factions/@comment-81.157.154.30-20150722105506/@comment-29746697-20160826233212\nTalk:List of minor factions/@comment-82.246.228.179-20150719121947\nTalk:List of minor factions/@comment-82.246.228.179-20150719121947/@comment-29746697-20160826233336\nTalk:List of minor factions/@comment-82.45.31.202-20150322224814\nTalk:List of minor factions/@comment-82.45.31.202-20150322224814/@comment-67.180.248.214-20150410163253\nTalk:List of minor factions/@comment-86.183.98.125-20150721151002\nTalk:List of minor factions/@comment-86.183.98.125-20150721151002/@comment-2A02:908:671:FA60:1197:4710:63E8:4CC9-20191206010030\nTalk:List of minor factions/@comment-90.193.239.170-20160316192448\nTalk:List of minor factions/@comment-90.193.239.170-20160316192448/@comment-29746697-20160826231625\nTalk:List of minor factions/@comment-91.11.106.189-20150506143051\nTalk:List of minor factions/@comment-92.17.203.159-20160201153231\nTalk:List of minor factions/@comment-93.40.64.32-20151015211552\nTalk:Listening post/@comment-109.115.103.168-20180326190052\nTalk:Listening post/@comment-2607:FEA8:BEDF:F813:D165:C5DA:3A05:A7D-20180830001344\nTalk:Listening post/@comment-4856174-20200208022106\nTalk:Lithium Hydroxide/@comment-2003:C1:8F42:6F00:A528:499D:C2AA:D987-20200207192507\nTalk:Live Hecate Sea Worms/@comment-173.244.36.4-20180913142929\nTalk:Live Hecate Sea Worms/@comment-176.249.62.114-20170823190654\nTalk:Live Hecate Sea Worms/@comment-77.50.26.143-20160930211513\nTalk:Livery/@comment-109.155.182.6-20150314185153\nTalk:Livery/@comment-1450770-20151025233924\nTalk:Livery/@comment-1450770-20151025233924/@comment-204.186.68.102-20151221210640\nTalk:Livery/@comment-1450770-20151025233924/@comment-66.55.134.206-20151110011409\nTalk:Livery/@comment-1450770-20151025233924/@comment-66.55.134.206-20151110011503\nTalk:Livery/@comment-1450770-20151025233924/@comment-66.55.134.206-20151110011544\nTalk:Livery/@comment-1450770-20151025233924/@comment-77.6.178.230-20151212034815\nTalk:Livery/@comment-1450770-20151025233924/@comment-90.200.46.38-20181119003019\nTalk:Livery/@comment-162.25.24.153-20160317114659\nTalk:Livery/@comment-180.222.64.124-20150210042448\nTalk:Livery/@comment-193.15.240.60-20200107141506\nTalk:Livery/@comment-201.37.232.159-20150725005150\nTalk:Livery/@comment-201.37.232.159-20150725005150/@comment-108.61.123.66-20160107180333\nTalk:Livery/@comment-201.37.232.159-20150725005150/@comment-4555143-20150725174000\nTalk:Livery/@comment-201.37.232.159-20150725005150/@comment-71.233.88.91-20160523183019\nTalk:Livery/@comment-201.37.232.159-20150725005150/@comment-73.1.55.15-20150816082611\nTalk:Livery/@comment-23929867-20151202162349\nTalk:Livery/@comment-62.150.121.250-20160210053956\nTalk:Livery/@comment-62.150.121.250-20160210053956/@comment-213.136.0.93-20160210112535\nTalk:Livery/@comment-78.0.24.146-20150628165200\nTalk:Livery/@comment-89.106.138.1-20150714171812\nTalk:Livery/@comment-89.106.138.1-20150714171812/@comment-24.120.35.36-20170203195745\nTalk:Livery/@comment-94.7.17.44-20190906154726\nTalk:Livery/@comment-99.14.137.192-20150413040956\nTalk:Livery/@comment-99.14.137.192-20150413040956/@comment-86.14.127.43-20150515214505\nTalk:Liz Ryder/@comment-185.22.140.253-20180124204709\nTalk:Liz Ryder/@comment-185.22.140.253-20180124204709/@comment-27587826-20180220023015\nTalk:Liz Ryder/@comment-2602:306:CE29:B0D0:2863:82B1:425C:79E3-20190907100435\nTalk:Liz Ryder/@comment-33100126-20170914040200\nTalk:Liz Ryder/@comment-33100126-20170914040200/@comment-192.136.161.33-20180119134219\nTalk:Liz Ryder/@comment-33100126-20170914040200/@comment-2602:306:80A6:5870:31B1:448B:9D4E:8D4-20170926133644\nTalk:Liz Ryder/@comment-33100126-20170914040200/@comment-84.112.150.24-20180103230523\nTalk:Liz Ryder/@comment-33100126-20170914040200/@comment-96.239.61.152-20180119070136\nTalk:Liz Ryder/@comment-72.192.134.103-20190119074425\nTalk:Loan/@comment-151.227.148.19-20150412204936\nTalk:Loan/@comment-151.227.148.19-20150412204936/@comment-26009169-20150412215800\nTalk:Loan/@comment-176.4.126.235-20150617015400\nTalk:Loan/@comment-176.4.79.99-20150618010540\nTalk:Loan/@comment-202.142.137.125-20180429024950\nTalk:Loan/@comment-202.142.137.125-20180429024950/@comment-72.234.73.81-20181216080625\nTalk:Loan/@comment-211.30.20.175-20160124074225\nTalk:Loan/@comment-211.30.20.175-20160124074225/@comment-50.53.93.163-20160229075438\nTalk:Loan/@comment-212.251.53.165-20150505060252\nTalk:Loan/@comment-212.251.53.165-20150505060252/@comment-71.93.237.247-20150518024700\nTalk:Loan/@comment-50.53.93.163-20160229074436\nTalk:Loan/@comment-50.53.93.163-20160229074436/@comment-29839692-20171220052614\nTalk:Loan/@comment-67.2.40.124-20150903031359\nTalk:Loan/@comment-73.200.247.238-20170104045125\nTalk:Loan/@comment-73.200.247.238-20170104045125/@comment-188.99.201.202-20170521142056\nTalk:Loan/@comment-73.200.247.238-20170104045125/@comment-24.234.123.18-20170118193254\nTalk:Loan/@comment-73.200.247.238-20170104045125/@comment-2600:1700:70E1:21A0:340D:9AF5:EB2D:4F76-20180206052755\nTalk:Loan/@comment-73.200.247.238-20170104045125/@comment-2601:98A:600:640D:3878:8A8C:8D3F:C142-20180715232259\nTalk:Loan/@comment-84.132.223.203-20150617164155\nTalk:Loan/@comment-86.156.164.114-20150418132247\nTalk:Loan/@comment-86.156.164.114-20150418132247/@comment-212.219.39.137-20150518183836\nTalk:Loan/@comment-86.156.164.114-20150418132247/@comment-91.125.91.192-20160531113218\nTalk:Loan/@comment-87.65.201.20-20150405141428\nTalk:Loan/@comment-87.65.201.20-20150405141428/@comment-92.249.142.62-20150412181730\nTalk:Loan/@comment-96.52.184.32-20151015163120\nTalk:Long Range Cannon/@comment-2003:E4:D3C5:6301:CDC8:3359:3DF2:5AFA-20170811175949\nTalk:Long Range Cannon/@comment-2003:E4:D3C5:6301:CDC8:3359:3DF2:5AFA-20170811175949/@comment-31363749-20170811221002\nTalk:Long Range Detailed Surface Scanner/@comment-33405632-20180310183715\nTalk:Long Range Detailed Surface Scanner/@comment-33405632-20180310183715/@comment-2605:A000:47CD:1800:50A1:737:BCC5:CBC9-20180811030739\nTalk:Long Range Detailed Surface Scanner/@comment-33405632-20180310183715/@comment-29839692-20180423145256\nTalk:Long Range Weapon/@comment-89.100.158.180-20181130183350\nTalk:Long Range Weapon/@comment-89.100.158.180-20181130183350/@comment-192.136.170.98-20181130191644\nTalk:Long Range Weapon/@comment-89.100.158.180-20181130183350/@comment-44180665-20200520161429\nTalk:Lore/@comment-50.199.255.189-20160711200348\nTalk:Lore/@comment-50.199.255.189-20160711200348/@comment-91.143.240.245-20160712075313\nTalk:Lori Jameson/@comment-2602:306:CE29:B0D0:13E:F6E0:66E4:7C57-20190911070726\nTalk:Lori Jameson/@comment-2602:306:CE29:B0D0:D5AB:F810:7EAA:C5A1-20191005011704\nTalk:Lori Jameson/@comment-73.125.87.97-20180402171347\nTalk:Lori Jameson/@comment-73.125.87.97-20180402171347/@comment-86.152.128.82-20180406102027\nTalk:Low Temperature Diamonds/@comment-2003:C1:8F42:6F00:A528:499D:C2AA:D987-20200207192125\nTalk:Low Temperature Diamonds/@comment-2003:C1:8F42:6F00:A528:499D:C2AA:D987-20200207192125/@comment-24.76.122.40-20200208164640\nTalk:Low Temperature Diamonds/@comment-2003:C1:8F42:6F00:A528:499D:C2AA:D987-20200207192125/@comment-27941085-20200616090546\nTalk:Low Temperature Diamonds/@comment-2003:C1:8F42:6F00:A528:499D:C2AA:D987-20200207192125/@comment-6296424-20200417222748\nTalk:Lucan Onion Head/@comment-86.191.74.65-20150404230625\nTalk:Lucan Onion Head/@comment-98.244.180.129-20151012154049\nTalk:Luyten's Star/@comment-24.0.117.57-20170804040610\nTalk:MacArthur Mining Ltd/@comment-110.145.142.110-20180815055602\nTalk:Magnetic Emitter Coil/@comment-2605:E000:308A:E500:E498:21DC:6730:6311-20180907045539\nTalk:Maia/@comment-108.197.86.20-20170303054744\nTalk:Maia/@comment-108.197.86.20-20170303054744/@comment-192.136.170.98-20190105161756\nTalk:Maia/@comment-108.197.86.20-20170303054744/@comment-212.10.126.89-20190105132156\nTalk:Maia/@comment-108.197.86.20-20170303054744/@comment-2602:306:37B9:18E0:8C14:7561:F0E5:A9A1-20170912034221\nTalk:Maia/@comment-108.197.86.20-20170303054744/@comment-82.0.120.182-20170711014559\nTalk:Maia/@comment-46.230.212.231-20160203133854\nTalk:Maia/@comment-46.230.212.231-20160203133854/@comment-125.237.3.1-20161014032850\nTalk:Maia/@comment-66.191.253.76-20160725042546\nTalk:Maia/@comment-66.191.253.76-20160725042546/@comment-170.185.126.17-20191107191529\nTalk:Maia/@comment-84.3.175.207-20170306192401\nTalk:Maia/@comment-84.3.175.207-20170306192401/@comment-71.63.99.146-20170307222314\nTalk:Maia/@comment-91.152.102.4-20160124133159\nTalk:Maia/@comment-92.255.195.135-20160124124849\nTalk:Maia/@comment-92.255.195.135-20160124124849/@comment-104.172.216.6-20160128112856\nTalk:Maia/@comment-92.255.195.135-20160124124849/@comment-170.185.126.17-20191107191640\nTalk:Maia/@comment-92.255.195.135-20160124124849/@comment-27032150-20160725071421\nTalk:Maia/@comment-92.255.195.135-20160124124849/@comment-66.191.253.76-20160725043041\nTalk:Maia/@comment-92.255.195.135-20160124124849/@comment-66.191.253.76-20160726184917\nTalk:Majestic Class Interdictor/@comment-108.16.36.43-20170317023753\nTalk:Majestic Class Interdictor/@comment-108.16.36.43-20170317023753/@comment-213.238.126.169-20191020103453\nTalk:Majestic Class Interdictor/@comment-109.235.156.174-20150405023000\nTalk:Majestic Class Interdictor/@comment-117.194.66.159-20180729201330\nTalk:Majestic Class Interdictor/@comment-122.58.239.177-20161121215219\nTalk:Majestic Class Interdictor/@comment-153.46.97.98-20160217121427\nTalk:Majestic Class Interdictor/@comment-153.46.97.98-20160217121427/@comment-122.58.239.177-20161121220126\nTalk:Majestic Class Interdictor/@comment-156.3.54.202-20150427150323\nTalk:Majestic Class Interdictor/@comment-162.25.24.153-20160316150100\nTalk:Majestic Class Interdictor/@comment-162.25.24.153-20160316150100/@comment-162.25.24.153-20160317104937\nTalk:Majestic Class Interdictor/@comment-162.25.24.153-20160316150100/@comment-27115814-20160503042005\nTalk:Majestic Class Interdictor/@comment-162.25.24.153-20160316150100/@comment-5959508-20160316182336\nTalk:Majestic Class Interdictor/@comment-187.64.91.253-20181010041824\nTalk:Majestic Class Interdictor/@comment-187.64.91.253-20181010041824/@comment-192.136.170.98-20181219201010\nTalk:Majestic Class Interdictor/@comment-187.64.91.253-20181010041824/@comment-2001:5B0:4BC0:7040:0:FF:FEBD:63F2-20181219192231\nTalk:Majestic Class Interdictor/@comment-187.64.91.253-20181010041824/@comment-33487100-20190116071022\nTalk:Majestic Class Interdictor/@comment-192.136.172.239-20160210204936\nTalk:Majestic Class Interdictor/@comment-192.136.175.219-20160222175826\nTalk:Majestic Class Interdictor/@comment-2.125.215.187-20151110165639\nTalk:Majestic Class Interdictor/@comment-2.125.215.187-20151110165639/@comment-122.58.239.177-20161121220233\nTalk:Majestic Class Interdictor/@comment-2.219.113.13-20160522175055\nTalk:Majestic Class Interdictor/@comment-2.219.113.13-20160522175055/@comment-79.194.108.67-20160825164830\nTalk:Majestic Class Interdictor/@comment-208.107.102.40-20150513172319\nTalk:Majestic Class Interdictor/@comment-2601:2C1:8700:CFD:4D45:EA75:FD72:5732-20180915014843\nTalk:Majestic Class Interdictor/@comment-26227424-20160608181627\nTalk:Majestic Class Interdictor/@comment-26227424-20160608181627/@comment-2155082-20160609033931\nTalk:Majestic Class Interdictor/@comment-26227424-20160608181627/@comment-5959508-20160608194819\nTalk:Majestic Class Interdictor/@comment-27032150-20160801135356\nTalk:Majestic Class Interdictor/@comment-27032150-20160801135356/@comment-192.136.161.248-20160801192018\nTalk:Majestic Class Interdictor/@comment-27115814-20160503161455\nTalk:Majestic Class Interdictor/@comment-27115814-20160503161455/@comment-2155082-20160504011034\nTalk:Majestic Class Interdictor/@comment-27136959-20160324230803\nTalk:Majestic Class Interdictor/@comment-27136959-20160324230803/@comment-108.16.36.43-20170227193546\nTalk:Majestic Class Interdictor/@comment-27136959-20160324230803/@comment-62.159.185.194-20170130153945\nTalk:Majestic Class Interdictor/@comment-27136959-20160324230803/@comment-64.127.136.202-20160425125515\nTalk:Majestic Class Interdictor/@comment-28225191-20160416145724\nTalk:Majestic Class Interdictor/@comment-28225191-20160416145724/@comment-5959508-20160608195141\nTalk:Majestic Class Interdictor/@comment-28434084-20160526070719\nTalk:Majestic Class Interdictor/@comment-31094186-20180203142515\nTalk:Majestic Class Interdictor/@comment-31094186-20180203142515/@comment-34252493-20180203235938\nTalk:Majestic Class Interdictor/@comment-37.191.164.153-20150209170806/@comment-71.95.100.70-20150310200049\nTalk:Majestic Class Interdictor/@comment-37.201.158.145-20191003160216\nTalk:Majestic Class Interdictor/@comment-37.201.158.145-20191003160216/@comment-43586739-20191231090710\nTalk:Majestic Class Interdictor/@comment-43586739-20191231073729\nTalk:Majestic Class Interdictor/@comment-44180665-20200503165906\nTalk:Majestic Class Interdictor/@comment-5959508-20151124095005\nTalk:Majestic Class Interdictor/@comment-5959508-20151124095005/@comment-26419093-20151202233000\nTalk:Majestic Class Interdictor/@comment-5959508-20160807101945\nTalk:Majestic Class Interdictor/@comment-5959508-20160807101945/@comment-5959508-20170227133927\nTalk:Majestic Class Interdictor/@comment-5959508-20160807101945/@comment-73.231.96.108-20170227030709\nTalk:Majestic Class Interdictor/@comment-61.10.142.127-20180730194835\nTalk:Majestic Class Interdictor/@comment-64.189.130.39-20180413063721\nTalk:Majestic Class Interdictor/@comment-66.162.11.146-20160426180309\nTalk:Majestic Class Interdictor/@comment-69.5.224.188-20150526203835/@comment-27034370-20160102054635\nTalk:Majestic Class Interdictor/@comment-71.232.241.210-20170516054946\nTalk:Majestic Class Interdictor/@comment-71.95.100.70-20141221053956\nTalk:Majestic Class Interdictor/@comment-71.95.100.70-20141221053956/@comment-146.200.19.46-20150328150911\nTalk:Majestic Class Interdictor/@comment-71.95.100.70-20141221053956/@comment-156.3.54.202-20150427150439\nTalk:Majestic Class Interdictor/@comment-74.105.174.28-20160911003421\nTalk:Majestic Class Interdictor/@comment-74.105.174.28-20160911003421/@comment-167.21.142.42-20170221141957\nTalk:Majestic Class Interdictor/@comment-74.105.174.28-20160911003421/@comment-77.102.250.232-20170317131654\nTalk:Majestic Class Interdictor/@comment-74.105.174.28-20160911003421/@comment-98.7.17.218-20170914025141\nTalk:Majestic Class Interdictor/@comment-76.106.37.30-20150406042730\nTalk:Majestic Class Interdictor/@comment-77.102.250.232-20170508163533\nTalk:Majestic Class Interdictor/@comment-77.102.250.232-20170508163533/@comment-192.136.161.52-20170509115308\nTalk:Majestic Class Interdictor/@comment-79.248.199.23-20141228165840\nTalk:Majestic Class Interdictor/@comment-80.94.160.227-20161010084556\nTalk:Majestic Class Interdictor/@comment-80.94.160.227-20161010084556/@comment-2155082-20161011035500\nTalk:Majestic Class Interdictor/@comment-84.80.186.77-20151022195625\nTalk:Majestic Class Interdictor/@comment-84.80.186.77-20151022195625/@comment-88.129.233.107-20151108174902\nTalk:Majestic Class Interdictor/@comment-84.80.186.77-20151022195625/@comment-96.48.145.152-20151221223938\nTalk:Majestic Class Interdictor/@comment-90.205.35.59-20160501235735\nTalk:Majestic Class Interdictor/@comment-90.205.35.59-20160501235735/@comment-27115814-20160503034725\nTalk:Majestic Class Interdictor/@comment-90.205.35.59-20160501235735/@comment-79.194.108.67-20160825164939\nTalk:Majestic Class Interdictor/@comment-90.205.35.59-20160501235735/@comment-88.152.98.102-20160817122543\nTalk:Majestic Class Interdictor/@comment-90.54.232.29-20160521173711\nTalk:Majestic Class Interdictor/@comment-90.54.232.29-20160521173711/@comment-122.58.239.177-20161121215824\nTalk:Majestic Class Interdictor/@comment-90.54.232.29-20160521173711/@comment-125.237.3.1-20161013071908\nTalk:Majestic Class Interdictor/@comment-90.54.232.29-20160521173711/@comment-27838177-20160524224738\nTalk:Majestic Class Interdictor/@comment-9472148-20160707165445\nTalk:Majestic Class Interdictor/@comment-9472148-20160707165445/@comment-213.238.126.169-20191020103535\nTalk:Majestic Class Interdictor/@comment-95.91.228.17-20160504174634\nTalk:Majestic Class Interdictor/@comment-99.53.199.120-20171229033153\nTalk:Makemake/@comment-165.234.248.50-20181127163529\nTalk:Makemake/@comment-165.234.248.50-20181127163540\nTalk:Mamba/@comment-10291972-20190214055612\nTalk:Mamba/@comment-10291972-20190214055612/@comment-192.136.170.98-20190214191221\nTalk:Mamba/@comment-10291972-20190214055612/@comment-192.136.170.98-20190312181119\nTalk:Mamba/@comment-10291972-20190214055612/@comment-26444643-20190312180413\nTalk:Mamba/@comment-119.18.3.132-20190730040002\nTalk:Mamba/@comment-145.8.179.218-20190412084623\nTalk:Mamba/@comment-160.3.38.154-20190427002940\nTalk:Mamba/@comment-163.47.115.80-20181103082334\nTalk:Mamba/@comment-163.47.115.80-20181103082334/@comment-37371629-20181104111600\nTalk:Mamba/@comment-163.47.115.80-20181103082334/@comment-50.201.158.82-20181105161325\nTalk:Mamba/@comment-163.47.115.80-20181103082334/@comment-69.114.195.213-20181105230848\nTalk:Mamba/@comment-163.47.115.80-20181103082334/@comment-70.249.189.124-20181103193915\nTalk:Mamba/@comment-163.47.115.80-20181103082334/@comment-73.252.80.183-20181103234324\nTalk:Mamba/@comment-163.47.115.80-20181103082334/@comment-90.200.46.38-20181103095958\nTalk:Mamba/@comment-185.154.73.239-20190204123752\nTalk:Mamba/@comment-185.154.73.239-20190204123752/@comment-192.136.170.98-20190204141932\nTalk:Mamba/@comment-185.154.73.239-20190204123752/@comment-26444643-20190302110923\nTalk:Mamba/@comment-195.200.70.54-20181109062753\nTalk:Mamba/@comment-195.200.70.54-20181109062753/@comment-195.200.70.54-20181109084004\nTalk:Mamba/@comment-195.200.70.54-20181109062753/@comment-2601:246:C900:9AAA:583F:4480:7439:7634-20181109160450\nTalk:Mamba/@comment-195.200.70.54-20181109062753/@comment-86346-20181109082612\nTalk:Mamba/@comment-195.200.70.54-20181109062753/@comment-86346-20181109144238\nTalk:Mamba/@comment-195.200.70.54-20181109062753/@comment-90.200.46.38-20181109103529\nTalk:Mamba/@comment-195.200.70.54-20181109062753/@comment-90.200.46.38-20181109230043\nTalk:Mamba/@comment-195.200.70.54-20181109062753/@comment-90.200.46.38-20181109230246\nTalk:Mamba/@comment-2.206.230.243-20190414194236\nTalk:Mamba/@comment-2.206.230.243-20190414194236/@comment-12.159.43.84-20200106143038\nTalk:Mamba/@comment-2.206.230.243-20190414194236/@comment-26810597-20190415034930\nTalk:Mamba/@comment-2003:DF:8F09:DE26:30C5:4043:9C90:6D2A-20181112101341\nTalk:Mamba/@comment-2003:DF:8F09:DE26:30C5:4043:9C90:6D2A-20181112101341/@comment-24.159.43.54-20181113043603\nTalk:Mamba/@comment-2003:DF:8F09:DE26:30C5:4043:9C90:6D2A-20181112101341/@comment-50.201.158.82-20181113183034\nTalk:Mamba/@comment-2003:DF:8F09:DE26:30C5:4043:9C90:6D2A-20181112101341/@comment-86346-20181113055714\nTalk:Mamba/@comment-2003:DF:8F09:DE26:30C5:4043:9C90:6D2A-20181112101341/@comment-90.200.46.38-20181112165659\nTalk:Mamba/@comment-201.110.36.37-20190409042553\nTalk:Mamba/@comment-201.110.36.37-20190409042553/@comment-26444643-20190411164556\nTalk:Mamba/@comment-213.120.234.106-20150914181419\nTalk:Mamba/@comment-213.120.234.106-20150914181419/@comment-1541210-20151112164149\nTalk:Mamba/@comment-24.159.43.54-20181111201235\nTalk:Mamba/@comment-24.159.43.54-20181111201235/@comment-2600:6C5D:6300:801:95FB:5034:44EC:D4C0-20181121233930\nTalk:Mamba/@comment-24.159.43.54-20181111201235/@comment-37371629-20181112093445\nTalk:Mamba/@comment-24.159.43.54-20181111201235/@comment-50.201.158.82-20181113183055\nTalk:Mamba/@comment-24.159.43.54-20181219014155\nTalk:Mamba/@comment-24.159.43.54-20181219014155/@comment-192.136.170.98-20181219043446\nTalk:Mamba/@comment-24.159.43.54-20181219014155/@comment-24.159.43.54-20181230063129\nTalk:Mamba/@comment-24.159.43.54-20181219014155/@comment-47.205.77.189-20181223154557\nTalk:Mamba/@comment-24.159.43.54-20181219014155/@comment-90.200.49.195-20181220005034\nTalk:Mamba/@comment-2601:246:C900:9AAA:2DA1:ED87:C4F1:8E0D-20181107024150\nTalk:Mamba/@comment-2601:246:C900:9AAA:2DA1:ED87:C4F1:8E0D-20181107024150/@comment-50.201.158.82-20181107151508\nTalk:Mamba/@comment-2601:246:C900:9AAA:2DA1:ED87:C4F1:8E0D-20181107024150/@comment-50.201.158.82-20181107151707\nTalk:Mamba/@comment-2601:246:C900:9AAA:2DA1:ED87:C4F1:8E0D-20181107024150/@comment-86346-20181107064555\nTalk:Mamba/@comment-2601:246:C900:9AAA:2DA1:ED87:C4F1:8E0D-20181107024150/@comment-90.200.46.38-20181107195915\nTalk:Mamba/@comment-2601:483:580:1F50:1019:BA0B:C1A:B673-20181217174928\nTalk:Mamba/@comment-2601:483:580:1F50:1019:BA0B:C1A:B673-20181217174928/@comment-192.136.170.98-20181217180611\nTalk:Mamba/@comment-2604:6000:1517:8328:196:C9FE:2EB3:F1D2-20181216071149\nTalk:Mamba/@comment-26444643-20181212163534\nTalk:Mamba/@comment-26444643-20181212163534/@comment-26444643-20181214141105\nTalk:Mamba/@comment-26444643-20181212163534/@comment-90.200.49.195-20181214010754\nTalk:Mamba/@comment-27115814-20151112174607\nTalk:Mamba/@comment-27115814-20151112174607/@comment-151.226.41.229-20151204150419\nTalk:Mamba/@comment-27115814-20151112174607/@comment-27311754-20151229010743\nTalk:Mamba/@comment-2A02:C7F:BA90:C700:986C:6F7:ADFD:8552-20181031212123\nTalk:Mamba/@comment-2A02:C7F:BA90:C700:986C:6F7:ADFD:8552-20181031212123/@comment-50.201.158.82-20181105162116\nTalk:Mamba/@comment-2A02:C7F:BA90:C700:986C:6F7:ADFD:8552-20181031212123/@comment-50.201.158.82-20181105162126\nTalk:Mamba/@comment-30972879-20181101180126\nTalk:Mamba/@comment-30972879-20181102135723\nTalk:Mamba/@comment-30972879-20181102135723/@comment-30972879-20181102142938\nTalk:Mamba/@comment-31808190-20181109222603\nTalk:Mamba/@comment-37.50.140.213-20181031124252\nTalk:Mamba/@comment-37.50.140.213-20181031124252/@comment-88.114.194.176-20181101054824\nTalk:Mamba/@comment-37354701-20181030201436\nTalk:Mamba/@comment-37820584-20190924084755\nTalk:Mamba/@comment-39760781-20190610054225\nTalk:Mamba/@comment-44180665-20200605165025\nTalk:Mamba/@comment-50.201.158.82-20181113183007\nTalk:Mamba/@comment-62.45.66.79-20181031004554\nTalk:Mamba/@comment-69.114.195.213-20181030234202\nTalk:Mamba/@comment-69.114.195.213-20181030234534\nTalk:Mamba/@comment-69.114.195.213-20181030234534/@comment-98.193.10.19-20181108001432\nTalk:Mamba/@comment-69.114.195.213-20181101015836\nTalk:Mamba/@comment-69.114.195.213-20181101224648\nTalk:Mamba/@comment-69.114.195.213-20181101224648/@comment-69.114.195.213-20181102020858\nTalk:Mamba/@comment-69.114.195.213-20181101224648/@comment-73.252.80.183-20181101234208\nTalk:Mamba/@comment-69.114.195.213-20181101224648/@comment-86346-20181102040047\nTalk:Mamba/@comment-69.114.195.213-20181101224648/@comment-93.142.137.42-20181103170246\nTalk:Mamba/@comment-69.114.195.213-20181101224648/@comment-98.193.10.19-20181105235831\nTalk:Mamba/@comment-69.114.196.254-20181114042348\nTalk:Mamba/@comment-69.114.196.254-20181114042348/@comment-25527827-20181114210225\nTalk:Mamba/@comment-69.114.196.254-20181114042348/@comment-37371629-20181115075617\nTalk:Mamba/@comment-69.114.196.254-20181114042348/@comment-50.201.158.110-20181115152355\nTalk:Mamba/@comment-69.114.196.254-20181114042348/@comment-50.201.158.110-20181115152810\nTalk:Mamba/@comment-69.114.196.254-20181114042348/@comment-50.201.158.82-20181114150935\nTalk:Mamba/@comment-69.114.196.254-20181114042348/@comment-90.200.46.38-20181114141536\nTalk:Mamba/@comment-69.114.196.254-20181114042348/@comment-90.200.46.38-20181114173040\nTalk:Mamba/@comment-69.114.196.254-20181114042348/@comment-90.200.46.38-20181115131626\nTalk:Mamba/@comment-69.114.196.254-20181114042348/@comment-90.200.46.38-20181115212447\nTalk:Mamba/@comment-69.114.196.254-20181114042348/@comment-98.193.10.19-20181114233824\nTalk:Mamba/@comment-69.114.196.254-20181116034745\nTalk:Mamba/@comment-69.114.196.254-20181116034745/@comment-192.136.170.98-20181116170238\nTalk:Mamba/@comment-69.114.196.254-20181116034745/@comment-90.200.46.38-20181116154411\nTalk:Mamba/@comment-69.114.196.254-20181116034745/@comment-90.200.46.38-20181117173102\nTalk:Mamba/@comment-69.114.196.254-20181116034745/@comment-90.200.46.38-20181117190939\nTalk:Mamba/@comment-69.114.196.254-20181119201726\nTalk:Mamba/@comment-69.114.196.254-20181119201726/@comment-26444643-20181214141349\nTalk:Mamba/@comment-69.114.196.254-20181211040306\nTalk:Mamba/@comment-69.114.196.254-20181211040306/@comment-192.136.170.98-20181211042640\nTalk:Mamba/@comment-69.137.188.155-20181122011642\nTalk:Mamba/@comment-69.137.188.155-20181122011642/@comment-12.244.42.10-20181210132649\nTalk:Mamba/@comment-69.137.188.155-20181122011642/@comment-192.136.170.98-20181126042930\nTalk:Mamba/@comment-69.137.188.155-20181122011642/@comment-192.136.170.98-20181128041005\nTalk:Mamba/@comment-69.137.188.155-20181122011642/@comment-192.136.170.98-20181204180539\nTalk:Mamba/@comment-69.137.188.155-20181122011642/@comment-192.136.170.98-20181209213618\nTalk:Mamba/@comment-69.137.188.155-20181122011642/@comment-24.159.43.54-20181126014736\nTalk:Mamba/@comment-69.137.188.155-20181122011642/@comment-24.159.43.54-20181127234305\nTalk:Mamba/@comment-69.137.188.155-20181122011642/@comment-26444643-20181214141148\nTalk:Mamba/@comment-69.137.188.155-20181122011642/@comment-90.200.46.38-20181204024309\nTalk:Mamba/@comment-69.137.188.155-20181122011642/@comment-90.200.46.38-20181204190248\nTalk:Mamba/@comment-69.137.188.155-20181122011642/@comment-90.200.49.195-20181209195654\nTalk:Mamba/@comment-73.254.38.86-20181213012911\nTalk:Mamba/@comment-81.203.78.228-20181114120401\nTalk:Mamba/@comment-81.203.78.228-20181114120401/@comment-25527827-20181114174358\nTalk:Mamba/@comment-81.203.78.228-20181114120401/@comment-50.201.158.82-20181114151306\nTalk:Mamba/@comment-82.13.80.208-20181214210157\nTalk:Mamba/@comment-82.13.80.208-20181214210157/@comment-37820584-20181215063144\nTalk:Mamba/@comment-85.210.94.219-20150915213624\nTalk:Mamba/@comment-85.210.94.219-20150915213624/@comment-1.65.209.209-20160404094420\nTalk:Mamba/@comment-87.70.8.40-20181121231235\nTalk:Mamba/@comment-87.70.8.40-20181121231235/@comment-109.231.18.107-20181207014024\nTalk:Mamba/@comment-87.70.8.40-20181121231235/@comment-192.136.170.98-20181126042406\nTalk:Mamba/@comment-87.70.8.40-20181121231235/@comment-192.136.170.98-20181207184131\nTalk:Mamba/@comment-87.70.8.40-20181121231235/@comment-192.136.170.98-20181214153746\nTalk:Mamba/@comment-87.70.8.40-20181121231235/@comment-24.159.43.54-20181126015610\nTalk:Mamba/@comment-87.70.8.40-20181121231235/@comment-26444643-20181214141330\nTalk:Mamba/@comment-87.70.8.40-20181121231235/@comment-26444643-20181214170320\nTalk:Mamba/@comment-90.200.46.38-20181101190250\nTalk:Mamba/@comment-90.200.46.38-20181101190250/@comment-50.201.158.82-20181105161409\nTalk:Mamba/@comment-90.200.46.38-20181101190250/@comment-90.200.46.38-20181108181939\nTalk:Mamba/@comment-90.200.46.38-20181106225626\nTalk:Mamba/@comment-90.200.46.38-20181106225626/@comment-192.136.170.98-20181111185606\nTalk:Mamba/@comment-90.200.46.38-20181106225626/@comment-2607:FEA8:1C80:5F4:C180:92C6:43D4:5AF4-20181109193435\nTalk:Mamba/@comment-90.200.46.38-20181106225626/@comment-50.201.158.82-20181107151534\nTalk:Mamba/@comment-90.200.46.38-20181106225626/@comment-90.200.46.38-20181108181959\nTalk:Mamba/@comment-90.200.46.38-20181106225626/@comment-90.200.46.38-20181112170238\nTalk:Mamba/@comment-90.200.46.38-20181106225626/@comment-97.91.196.87-20181108184702\nTalk:Mamba/@comment-90.200.46.38-20181106225626/@comment-98.193.10.19-20181111184028\nTalk:Mamba/@comment-90.200.46.38-20181111162145\nTalk:Mamba/@comment-90.200.46.38-20181111162145/@comment-90.200.46.38-20181111201648\nTalk:Mamba/@comment-90.200.46.38-20181111162145/@comment-90.200.46.38-20181114140401\nTalk:Mamba/@comment-90.200.46.38-20181111162145/@comment-98.193.10.19-20181111183922\nTalk:Mamba/@comment-90.200.46.38-20181112211257\nTalk:Mamba/@comment-90.200.46.38-20181112211257/@comment-2001:5B0:4BC1:7268:E56F:96D1:25CA:89A8-20190426135739\nTalk:Mamba/@comment-90.200.46.38-20181112211257/@comment-36853937-20181119221902\nTalk:Mamba/@comment-90.200.46.38-20181112211257/@comment-50.201.158.110-20181115152931\nTalk:Mamba/@comment-90.200.46.38-20181112211257/@comment-90.200.46.38-20181122230242\nTalk:Mamba/@comment-90.200.49.195-20181211014505\nTalk:Mamba/@comment-90.200.49.195-20181211014505/@comment-192.136.170.98-20181211042925\nTalk:Mamba/@comment-90.200.49.195-20181211014505/@comment-192.136.170.98-20181211042941\nTalk:Mamba/@comment-93.143.86.146-20181031144019\nTalk:Mamba/@comment-93.143.86.146-20181101085251\nTalk:Mamba/@comment-93.143.86.146-20181101085251/@comment-173.209.95.237-20181101205152\nTalk:Mamba/@comment-93.143.86.146-20181101085251/@comment-93.142.137.42-20181103165931\nTalk:Mamba/@comment-95.148.78.93-20151122231220\nTalk:Mamba/@comment-97.46.2.140-20181217003300\nTalk:Mamba/@comment-97.46.2.140-20181217003300/@comment-192.136.170.98-20181217041725\nTalk:Mamba/@comment-97.46.2.140-20181217003300/@comment-192.136.170.98-20190122193252\nTalk:Mamba/@comment-97.46.2.140-20181217003300/@comment-71.12.150.53-20190122095616\nTalk:Mamba/@comment-97.46.2.140-20181217003300/@comment-90.200.49.195-20181220005757\nTalk:Mamba/@comment-98.193.10.19-20181108001154\nTalk:Mamba/@comment-98.193.10.19-20181108001154/@comment-195.200.70.54-20181109072110\nTalk:Mamba/@comment-98.193.10.19-20181108001154/@comment-2601:246:C900:9AAA:3551:BEB1:D21E:9DAB-20181110174812\nTalk:Mamba/@comment-98.193.10.19-20181108001154/@comment-90.200.46.38-20181109225924\nTalk:Mamba/@comment-98.193.10.19-20181109031858\nTalk:Mamba/@comment-98.193.10.19-20181109031858/@comment-195.200.70.54-20181109072031\nTalk:Mamba/@comment-98.193.10.19-20181216213814\nTalk:Mamba/@comment-98.193.10.19-20181216213814/@comment-192.136.170.98-20181217041852\nTalk:Manifest Scanner/@comment-185.24.184.193-20151015064219\nTalk:Manifest Scanner/@comment-185.24.184.193-20151015064219/@comment-213.48.137.24-20151214113732\nTalk:Manifest Scanner/@comment-195.188.174.32-20150128140106\nTalk:Manifest Scanner/@comment-195.188.174.32-20150128140106/@comment-2601:189:C37F:9A42:DD07:B202:EB7F:ED9C-20190721042150\nTalk:Manifest Scanner/@comment-213.48.137.24-20151214112540\nTalk:Manifest Scanner/@comment-213.48.137.24-20151214112540/@comment-27408680-20151219075826\nTalk:Manifest Scanner/@comment-71.105.209.180-20151012063800\nTalk:Manifest Scanner/@comment-71.105.209.180-20151012063800/@comment-27311754-20151219104933\nTalk:Manifest Scanner/@comment-71.105.209.180-20151012063800/@comment-27408680-20151219080015\nTalk:Manifest Scanner/@comment-71.105.209.180-20151012063800/@comment-95.208.248.120-20151107191233\nTalk:Manifest Scanner/@comment-75.134.159.197-20141109160927\nTalk:Manifest Scanner/@comment-75.134.159.197-20141109160927/@comment-27408680-20151219080339\nTalk:Manifest Scanner/@comment-75.134.159.197-20141109160927/@comment-50.88.121.45-20150130024551\nTalk:Manifest Scanner/@comment-86.132.192.235-20140806210839\nTalk:Manifest Scanner/@comment-86.132.192.235-20140806210839/@comment-25074307-20140806221641\nTalk:Manufactured Materials/@comment-6477498-20180227221031\nTalk:Maps/@comment-151.224.15.98-20150118010358\nTalk:Maps/@comment-151.224.15.98-20150118010358/@comment-99.20.142.217-20150125191454\nTalk:Maps/@comment-199.30.121.97-20151118025154\nTalk:Maps/@comment-2600:6C55:6400:3E87:B4F9:13B9:3000:732A-20190607045906\nTalk:Maps/@comment-81.129.71.10-20150111234714\nTalk:Maps/@comment-81.129.71.10-20150111234714/@comment-94.197.120.8-20150201153331\nTalk:Maps/@comment-90.222.86.59-20150111021416\nTalk:Marco Qwent/@comment-151.25.131.208-20171005124244\nTalk:Marco Qwent/@comment-151.25.131.208-20171005124244/@comment-67.161.53.96-20171027210822\nTalk:Marco Qwent/@comment-174.101.226.205-20180114023218\nTalk:Marco Qwent/@comment-174.101.226.205-20180114023218/@comment-50.247.240.169-20180114124821\nTalk:Marco Qwent/@comment-189.180.162.195-20171007000917\nTalk:Marco Qwent/@comment-210.84.10.40-20200129102302\nTalk:Marco Qwent/@comment-216.137.248.47-20180710034951\nTalk:Marco Qwent/@comment-216.137.248.47-20180710034951/@comment-176.241.72.203-20190810105244\nTalk:Marco Qwent/@comment-216.137.248.47-20180710034951/@comment-29839692-20180711162257\nTalk:Marco Qwent/@comment-27190931-20170308091600\nTalk:Marco Qwent/@comment-27190931-20170308091600/@comment-82.26.164.83-20171126213143\nTalk:Marco Qwent/@comment-73.109.57.84-20181124212928\nTalk:Marco Qwent/@comment-73.109.57.84-20181124212928/@comment-212.35.27.63-20181201030111\nTalk:Marco Qwent/@comment-89.115.173.106-20180731120524\nTalk:Marco Qwent/@comment-92.155.236.206-20190116062808\nTalk:Marine Equipment/@comment-24849058-20150118101219\nTalk:Marine Equipment/@comment-24849058-20150118101219/@comment-490933-20150127234727\nTalk:Marine Equipment/@comment-24849058-20150118101219/@comment-85.179.67.168-20150224212856\nTalk:Mark Allen/@comment-2601:681:8300:3279:F910:BCF6:A699:6CCF-20181220224431\nTalk:Market Economy\nTalk:Market Economy/@comment-24.181.238.127-20180119031726\nTalk:Market Economy/@comment-2601:1C0:CC02:71F6:B623:FAD1:C925:9E56-20180109220904\nTalk:Mars/@comment-143.81.103.35-20160123192143\nTalk:Mars/@comment-143.81.103.35-20160123192143/@comment-24570716-20160611100324\nTalk:Mars/@comment-143.81.103.35-20160123192143/@comment-26227424-20160608175510\nTalk:Mars/@comment-143.81.103.35-20160123192143/@comment-93.133.150.90-20160208014201\nTalk:Mars/@comment-207.161.12.173-20180930014737\nTalk:Mars/@comment-207.161.162.186-20181228161607\nTalk:Mars/@comment-207.161.162.186-20190525010056\nTalk:Mars/@comment-207.183.171.49-20151001001822\nTalk:Mars/@comment-207.183.171.49-20151001001822/@comment-151.188.137.230-20180102165059\nTalk:Mars/@comment-207.183.171.49-20151001001822/@comment-153.46.105.98-20151105132519\nTalk:Mars/@comment-207.183.171.49-20151001001822/@comment-26227424-20160608175624\nTalk:Mars/@comment-207.183.171.49-20151001001822/@comment-97.101.181.23-20151230183041\nTalk:Mars/@comment-29003152-20160711211028\nTalk:Mars/@comment-29003152-20160711211028/@comment-151.43.1.9-20161102180045\nTalk:Mars/@comment-29003152-20160711211028/@comment-47.55.186.252-20181115010408\nTalk:Mars/@comment-29003152-20160711211028/@comment-50.53.119.55-20180119192420\nTalk:Mars/@comment-29003152-20160711211028/@comment-50.53.84.33-20170211032258\nTalk:Mars/@comment-29003152-20160711211028/@comment-60293-20181106021908\nTalk:Mars/@comment-29003152-20160711211028/@comment-73.14.173.234-20170214020418\nTalk:Mars/@comment-29003152-20160711211028/@comment-90.200.46.38-20181113140415\nTalk:Mars/@comment-47.55.186.252-20181115010207\nTalk:Mars/@comment-47.55.186.252-20181115010207/@comment-207.161.162.186-20190525010224\nTalk:Mars/@comment-50.4.239.175-20160214040436\nTalk:Mars/@comment-50.4.239.175-20160214040436/@comment-29488133-20160806143655\nTalk:Marsha Hicks/@comment-2601:197:702:745:8CC6:974A:FD94:D937-20181216200401\nTalk:Marsha Hicks/@comment-2601:197:702:745:8CC6:974A:FD94:D937-20181216200401/@comment-66.190.197.164-20191016202907\nTalk:Mass Lock/@comment-146.105.5.11-20181107142231\nTalk:Mass Lock/@comment-146.105.5.11-20181107142231/@comment-30309427-20181114005539\nTalk:Mass Lock/@comment-146.105.5.11-20181107142231/@comment-90.200.46.38-20181108233743\nTalk:Mass Lock/@comment-188.101.117.119-20180109163519\nTalk:Mass Lock/@comment-188.101.117.119-20180109163519/@comment-192.136.161.33-20180109164152\nTalk:Mass Lock/@comment-188.101.117.119-20180109163519/@comment-192.136.161.33-20180109180416\nTalk:Mass Lock/@comment-188.101.117.119-20180109163519/@comment-34252493-20180109174045\nTalk:Mass Lock/@comment-189.232.14.15-20181223071903\nTalk:Mass Lock/@comment-189.232.14.15-20181223071903/@comment-192.136.170.98-20181223153030\nTalk:Mass Lock/@comment-50.1.56.77-20200211233446\nTalk:Mass Manager/@comment-2003:DA:CBCB:1800:F942:A9FC:49B7:95B6-20180711115006\nTalk:Mass Manager/@comment-2003:DA:CBCB:1800:F942:A9FC:49B7:95B6-20180711115006/@comment-2600:1700:F8C0:FB80:44CC:9D10:3284:A67C-20190526225843\nTalk:Mass Manager/@comment-2003:DA:CBCB:1800:F942:A9FC:49B7:95B6-20180711115006/@comment-34526351-20200715010149\nTalk:Mass Manager/@comment-2003:DA:CBCB:1800:F942:A9FC:49B7:95B6-20180711115006/@comment-69.166.69.101-20190615043317\nTalk:Mass Manager/@comment-2003:DA:CBCB:1800:F942:A9FC:49B7:95B6-20180711115006/@comment-70.162.79.148-20180724084719\nTalk:Master Chefs/@comment-108.41.120.242-20160216044242\nTalk:Master Chefs/@comment-151.224.121.170-20170819024027\nTalk:Master Chefs/@comment-212.35.27.63-20161102112310\nTalk:Master Chefs/@comment-27283317-20180911220151\nTalk:Master Chefs/@comment-73.78.234.90-20170818044941\nTalk:Master Chefs/@comment-75.27.140.236-20170303231827\nTalk:Master Chefs/@comment-77.110.193.131-20160302133931\nTalk:Master Chefs/@comment-98.122.129.218-20180121123931\nTalk:Master Chefs/@comment-98.122.129.218-20180121123931/@comment-27283317-20180123184726\nTalk:Material Trader/@comment-124.244.186.105-20190106094747\nTalk:Material Trader/@comment-173.0.196.130-20190203041814\nTalk:Material Trader/@comment-173.0.196.130-20190203041814/@comment-176.241.72.203-20190725162632\nTalk:Material Trader/@comment-173.0.196.130-20190203041814/@comment-93.76.190.38-20190503164917\nTalk:Material Trader/@comment-188.2.22.207-20180506123956\nTalk:Material Trader/@comment-2A00:801:211:7936:998D:81EA:90D8:8DBD-20181228153119\nTalk:Material Trader/@comment-2A00:801:211:7936:998D:81EA:90D8:8DBD-20181228153119/@comment-216.81.46.100-20190930152442\nTalk:Material Trader/@comment-2A02:8071:A9A:FD00:652F:BCE5:3437:E89-20180305091526\nTalk:Material Trader/@comment-90.201.1.124-20180929113407\nTalk:Material Trader/@comment-92.37.62.248-20180317191836\nTalk:Material Trader/@comment-92.37.62.248-20180317191836/@comment-27655192-20180317202701\nTalk:Material Trader/@comment-96.60.81.157-20180314155907\nTalk:Materials/@comment-143.85.101.18-20151216235831\nTalk:Materials/@comment-143.85.101.18-20151216235831/@comment-75.174.28.1-20151217083659\nTalk:Materials/@comment-143.85.101.18-20151216235831/@comment-88.185.61.186-20151222200226\nTalk:Materials/@comment-174.49.124.129-20161116195057\nTalk:Materials/@comment-189.27.190.79-20170101112418\nTalk:Materials/@comment-189.27.190.79-20170101112418/@comment-24.108.196.243-20170613090743\nTalk:Materials/@comment-24.228.248.215-20170128070211\nTalk:Materials/@comment-24.228.248.215-20170128070211/@comment-76.71.51.6-20170308032149\nTalk:Materials/@comment-62.155.134.230-20170206063804\nTalk:Materials/@comment-68.49.171.49-20170420034629\nTalk:Materials/@comment-71.202.29.10-20151219005750\nTalk:Materials/@comment-71.202.29.10-20151219005750/@comment-26391992-20151222155702\nTalk:Materials/@comment-71.202.29.10-20151219005750/@comment-88.185.61.186-20151222200351\nTalk:Materials/@comment-73.212.245.154-20170616073337\nTalk:Materials/@comment-73.212.245.154-20170616073337/@comment-210.246.26.18-20170925225135\nTalk:Materials/@comment-73.212.245.154-20170616073337/@comment-2A02:810B:C8C0:4AC:6D34:A704:A3D2:8BF2-20180305155247\nTalk:Materials/@comment-73.212.245.154-20170616073337/@comment-35650861-20180803140910\nTalk:Materials/@comment-81.19.46.120-20160126123429\nTalk:Materials/@comment-81.19.46.120-20160126123429/@comment-95.91.228.55-20160529120904\nTalk:Materials/@comment-90.222.117.61-20170415151546\nTalk:Materials/@comment-94.113.145.17-20151223063926\nTalk:Materials/@comment-94.67.193.103-20170827080745\nTalk:Materials/@comment-95.91.228.100-20160619103844\nTalk:Mechanical Scrap/@comment-38330962-20190128012338\nTalk:Mechanical Scrap/@comment-38330962-20190128012338/@comment-2A00:23A8:19:2E00:69F1:1BD1:7793:E6FC-20190223022439\nTalk:Medb Starlube/@comment-25397785-20161011202808\nTalk:Medb Starlube/@comment-25397785-20161011202808/@comment-90.200.46.38-20181026125653\nTalk:Megaship/@comment-11319666-20180721043340\nTalk:Megaship/@comment-172.58.201.198-20180702052417\nTalk:Megaship/@comment-25450485-20181204092837\nTalk:Megaship/@comment-2601:18C:C901:14D0:8948:F8FB:396B:13E5-20180906155731\nTalk:Megaship/@comment-31094186-20170910172846\nTalk:Megaship/@comment-31094186-20170910172846/@comment-24.57.142.216-20170915150446\nTalk:Megaship/@comment-34004391-20180117090622\nTalk:Megaship/@comment-90.218.66.188-20190602233552\nTalk:Mel Brandon/@comment-2601:197:702:745:8CC6:974A:FD94:D937-20181216200421\nTalk:Mel Brandon/@comment-2602:306:CE29:B0D0:618F:D4A2:1E6E:E4AA-20191001065513\nTalk:Mel Brandon/@comment-31.54.229.176-20180829164342\nTalk:Mel Brandon/@comment-31.54.229.176-20180829164342/@comment-31.54.229.176-20180829164417\nTalk:Mel Brandon/@comment-31.54.229.176-20180829164342/@comment-35650861-20190201084028\nTalk:Mel Brandon/@comment-31.54.229.176-20180829164342/@comment-92.24.121.178-20200126171004\nTalk:Mel Brandon/@comment-78.26.34.189-20190502180238\nTalk:Mel Brandon/@comment-78.26.34.189-20190502180238/@comment-89.23.224.64-20190628221227\nTalk:Mel Brandon/@comment-82.69.47.81-20181216005145\nTalk:Mel Brandon/@comment-82.69.47.81-20181216005145/@comment-86.4.179.247-20190128011042\nTalk:Mercenary/@comment-174.102.96.147-20150102043448\nTalk:Mercenary/@comment-174.102.96.147-20150102043448/@comment-12138097-20150102051115\nTalk:Mercenary/@comment-174.102.96.147-20150102043448/@comment-12138097-20150103025540\nTalk:Mercenary/@comment-174.102.96.147-20150102043448/@comment-174.102.96.147-20150103011307\nTalk:Mercenary/@comment-174.102.96.147-20150102043448/@comment-174.102.96.147-20150103035511\nTalk:Mercenary/@comment-69.159.202.165-20150407182548\nTalk:Mercenary/@comment-69.159.202.165-20150407182548/@comment-26009169-20150407194011\nTalk:Mercenary/@comment-69.73.10.17-20150506203641\nTalk:Mercenary/@comment-69.73.10.17-20150506203641/@comment-115.166.40.252-20150516050807\nTalk:Mercenary/@comment-73.16.151.114-20150131221502\nTalk:Mercenary/@comment-73.16.151.114-20150131221502/@comment-107.77.75.126-20150206173524\nTalk:Mercenary/@comment-73.16.151.114-20150131221502/@comment-174.23.194.56-20150408222323\nTalk:Mercenary/@comment-77.65.87.248-20180109165947\nTalk:Mercenary/@comment-77.65.87.248-20180109165947/@comment-146.198.50.46-20180208150843\nTalk:Merits/@comment-104.173.8.168-20160522051012\nTalk:Merits/@comment-104.173.8.168-20160522051012/@comment-58.104.78.69-20160714065341\nTalk:Merits/@comment-172.243.110.156-20171121005522\nTalk:Merits/@comment-185.137.18.244-20171024000105\nTalk:Merits/@comment-187.145.43.95-20180109163125\nTalk:Merits/@comment-187.145.43.95-20180109163125/@comment-2003:DB:F70F:D663:FD26:6138:73D4:6FC7-20200209192322\nTalk:Merits/@comment-187.145.43.95-20180109163125/@comment-92.52.35.205-20180324211906\nTalk:Merits/@comment-188.193.174.14-20180225154309\nTalk:Merits/@comment-195.59.100.28-20180912105245\nTalk:Merits/@comment-31.54.101.205-20170303002105\nTalk:Merits/@comment-31.54.101.205-20170303002105/@comment-172.219.187.22-20170617220429\nTalk:Merits/@comment-31.54.101.205-20170303002105/@comment-76.235.25.214-20170324205456\nTalk:Merits/@comment-44180665-20200324141357\nTalk:Merits/@comment-67.160.70.175-20160719082400\nTalk:Merits/@comment-67.160.70.175-20160719082400/@comment-192.136.174.182-20160719114521\nTalk:Merlin/@comment-44180665-20200522165135\nTalk:Merope/@comment-72.240.133.177-20200121220900\nTalk:Meta-Alloys/@comment-101.184.126.84-20160130033027\nTalk:Meta-Alloys/@comment-101.184.126.84-20160130033027/@comment-77.100.60.91-20160130174755\nTalk:Meta-Alloys/@comment-108.242.216.67-20160726043850\nTalk:Meta-Alloys/@comment-108.242.216.67-20160726043850/@comment-200.85.54.26-20160808194813\nTalk:Meta-Alloys/@comment-108.242.216.67-20160726043850/@comment-217.211.174.175-20160804015228\nTalk:Meta-Alloys/@comment-108.242.216.67-20160726043850/@comment-25316627-20160814002340\nTalk:Meta-Alloys/@comment-108.242.216.67-20160726043850/@comment-27032150-20160726063225\nTalk:Meta-Alloys/@comment-108.242.216.67-20160726043850/@comment-27198286-20160813092031\nTalk:Meta-Alloys/@comment-108.242.216.67-20160726043850/@comment-29712041-20160821125143\nTalk:Meta-Alloys/@comment-108.242.216.67-20160726043850/@comment-50.135.183.66-20160801055836\nTalk:Meta-Alloys/@comment-108.242.216.67-20160726043850/@comment-73.186.180.52-20160811211400\nTalk:Meta-Alloys/@comment-108.242.216.67-20160726043850/@comment-74.91.70.136-20160730003716\nTalk:Meta-Alloys/@comment-108.242.216.67-20160726043850/@comment-78.16.225.77-20160826201902\nTalk:Meta-Alloys/@comment-108.242.216.67-20160726043850/@comment-82.192.226.115-20160816153858\nTalk:Meta-Alloys/@comment-118.136.28.250-20180226232116\nTalk:Meta-Alloys/@comment-129.186.251.157-20160120184317\nTalk:Meta-Alloys/@comment-129.186.251.157-20160120184317/@comment-50.82.64.66-20160528093213\nTalk:Meta-Alloys/@comment-177.235.110.238-20160815132927\nTalk:Meta-Alloys/@comment-177.235.110.238-20160815132927/@comment-123.243.22.178-20160815224723\nTalk:Meta-Alloys/@comment-177.235.110.238-20160815132927/@comment-70.171.11.149-20160901014717\nTalk:Meta-Alloys/@comment-177.235.110.238-20160815132927/@comment-82.192.226.115-20160816155723\nTalk:Meta-Alloys/@comment-179.55.71.193-20180202233044\nTalk:Meta-Alloys/@comment-179.55.71.193-20180202233044/@comment-189.236.237.229-20180329210013\nTalk:Meta-Alloys/@comment-192.91.171.36-20151210165036\nTalk:Meta-Alloys/@comment-192.91.171.36-20151210165036/@comment-184.167.194.78-20151223173820\nTalk:Meta-Alloys/@comment-2001:5B0:4BCF:2E0:0:FF:FEBD:1C0-20180430161304\nTalk:Meta-Alloys/@comment-2001:5B0:4BCF:2E0:0:FF:FEBD:1C0-20180430161304/@comment-205.174.22.25-20190918171834\nTalk:Meta-Alloys/@comment-2001:5B0:4BCF:2E0:0:FF:FEBD:1C0-20180430161304/@comment-2604:2000:800C:EB00:4D81:7940:90CE:DAC7-20180501035651\nTalk:Meta-Alloys/@comment-2001:5B0:4BCF:2E0:0:FF:FEBD:1C0-20180430161304/@comment-321446-20200328170106\nTalk:Meta-Alloys/@comment-2001:5B0:4BCF:2E0:0:FF:FEBD:1C0-20180430161304/@comment-80.6.136.127-20190124202403\nTalk:Meta-Alloys/@comment-2001:5B0:4BCF:2E0:0:FF:FEBD:1C0-20180430161304/@comment-86.190.44.42-20181117144820\nTalk:Meta-Alloys/@comment-2001:5B0:4BCF:2E0:0:FF:FEBD:1C0-20180430161304/@comment-90.200.46.38-20181102231213\nTalk:Meta-Alloys/@comment-2001:5B0:4BCF:2E0:0:FF:FEBD:1C0-20180430161304/@comment-90.200.46.38-20181130003404\nTalk:Meta-Alloys/@comment-2001:5B0:4BCF:2E0:0:FF:FEBD:1C0-20180430213045\nTalk:Meta-Alloys/@comment-217.50.252.90-20160529011400\nTalk:Meta-Alloys/@comment-217.50.252.90-20160529011400/@comment-71.82.114.224-20160530155710\nTalk:Meta-Alloys/@comment-24.63.64.198-20160606220029\nTalk:Meta-Alloys/@comment-24.63.64.198-20160606220029/@comment-192.136.173.223-20160608185931\nTalk:Meta-Alloys/@comment-24.63.64.198-20160606220029/@comment-68.14.85.35-20160723171126\nTalk:Meta-Alloys/@comment-24.63.64.198-20160606220029/@comment-71.233.88.91-20160721114830\nTalk:Meta-Alloys/@comment-24.63.64.198-20160606220029/@comment-80.229.23.190-20160819200008\nTalk:Meta-Alloys/@comment-24.63.64.198-20160606220029/@comment-80.229.23.190-20160819200129\nTalk:Meta-Alloys/@comment-24.63.64.198-20160606220029/@comment-80.229.23.190-20160819200610\nTalk:Meta-Alloys/@comment-24.63.64.198-20160606220029/@comment-86.164.124.32-20160608171908\nTalk:Meta-Alloys/@comment-27574709-20160109012251\nTalk:Meta-Alloys/@comment-27574709-20160109012251/@comment-26143530-20170607122910\nTalk:Meta-Alloys/@comment-27574709-20160109012251/@comment-92.106.23.229-20160110100810\nTalk:Meta-Alloys/@comment-27626210-20160117082342\nTalk:Meta-Alloys/@comment-27626210-20160117082342/@comment-80.229.23.190-20160819200744\nTalk:Meta-Alloys/@comment-29712041-20160821122735\nTalk:Meta-Alloys/@comment-33032068-20170904210154\nTalk:Meta-Alloys/@comment-33032068-20170904210154/@comment-109.49.40.80-20180108005757\nTalk:Meta-Alloys/@comment-33032068-20170904210154/@comment-109.49.40.80-20180108005826\nTalk:Meta-Alloys/@comment-33032068-20170904210154/@comment-174.96.14.169-20171024185642\nTalk:Meta-Alloys/@comment-33032068-20170904210154/@comment-192.136.161.33-20171024201313\nTalk:Meta-Alloys/@comment-34232734-20180106164201\nTalk:Meta-Alloys/@comment-45587726-20200624143403\nTalk:Meta-Alloys/@comment-46677443-20200820143155\nTalk:Meta-Alloys/@comment-47.198.66.142-20180716144049\nTalk:Meta-Alloys/@comment-47.198.66.142-20180716144049/@comment-2003:DB:F70F:D66E:6194:BCB3:D1D:4B6B-20200127220828\nTalk:Meta-Alloys/@comment-65.201.202.66-20151217191152\nTalk:Meta-Alloys/@comment-66.41.41.180-20180426162344\nTalk:Meta-Alloys/@comment-70.69.24.137-20170507220409\nTalk:Meta-Alloys/@comment-70.69.24.137-20170507220409/@comment-192.136.161.52-20170508130440\nTalk:Meta-Alloys/@comment-70.69.24.137-20170507220409/@comment-70.69.24.137-20170510142657\nTalk:Meta-Alloys/@comment-70.69.24.137-20170507220409/@comment-71.47.3.48-20170513180017\nTalk:Meta-Alloys/@comment-72.95.230.159-20160906020504\nTalk:Meta-Alloys/@comment-77.20.18.242-20161216022922\nTalk:Meta-Alloys/@comment-82.192.226.115-20160816152956\nTalk:Meta-Alloys/@comment-82.192.226.115-20160817023359\nTalk:Meta-Alloys/@comment-86.133.20.97-20161228151800\nTalk:Meta-Alloys/@comment-86.133.20.97-20161228151800/@comment-4941410-20161228173156\nTalk:Meta-Alloys/@comment-86.133.20.97-20161228151800/@comment-86.133.20.97-20161229112517\nTalk:Meta-Alloys/@comment-86.133.20.97-20161228151800/@comment-86.133.20.97-20161229131838\nTalk:Meta-Alloys/@comment-86.133.20.97-20161230115750\nTalk:Meta-Alloys/@comment-86.133.20.97-20161230115750/@comment-96.125.245.170-20170421035526\nTalk:Meta-Alloys/@comment-86.177.57.37-20160604070753\nTalk:Meta-Alloys/@comment-86.18.217.168-20180207040904\nTalk:Meta-Alloys/@comment-89.151.148.222-20161217004311\nTalk:Meta-Alloys/@comment-91.129.104.251-20180401144326\nTalk:Meta-Alloys/@comment-91.153.171.188-20161104143952\nTalk:Meta-Alloys/@comment-92.106.23.229-20160110100513\nTalk:Meta-Alloys/@comment-92.129.214.220-20160821145538\nTalk:Meta-Alloys/@comment-92.129.214.220-20160821145538/@comment-29717676-20160821215627\nTalk:Meta-Alloys/@comment-94.201.81.47-20161111052551\nTalk:Meta-Alloys/@comment-95.102.245.16-20170605195005\nTalk:Meta-Alloys/@comment-95.102.245.16-20170605195005/@comment-106.70.3.28-20170701004256\nTalk:Meta-Alloys/@comment-95.102.245.16-20170605195005/@comment-109.8.198.238-20170828092748\nTalk:Meta-Alloys/@comment-95.102.245.16-20170605195005/@comment-122.62.47.157-20191001000950\nTalk:Meta-Alloys/@comment-95.102.245.16-20170605195005/@comment-124.171.250.175-20170713062317\nTalk:Meta-Alloys/@comment-95.102.245.16-20170605195005/@comment-1339579-20171021195315\nTalk:Meta-Alloys/@comment-95.102.245.16-20170605195005/@comment-174.96.14.169-20171024190018\nTalk:Meta-Alloys/@comment-95.102.245.16-20170605195005/@comment-210.245.33.184-20170910095450\nTalk:Meta-Alloys/@comment-95.102.245.16-20170605195005/@comment-2600:8807:8201:CA0:D4D:C905:4B6E:451-20170924031644\nTalk:Meta-Alloys/@comment-95.102.245.16-20170605195005/@comment-2A02:908:697:CE40:796D:CEFD:AFB4:5280-20180222140458\nTalk:Meta-Alloys/@comment-95.102.245.16-20170605195005/@comment-5.166.41.75-20171102122736\nTalk:Meta-Alloys/@comment-95.102.245.16-20170605195005/@comment-5.29.185.245-20170825181303\nTalk:Meta-Alloys/@comment-95.102.245.16-20170605195005/@comment-71.38.73.114-20170904082517\nTalk:Meta-Alloys/@comment-95.102.245.16-20170605195005/@comment-85.66.26.121-20171007114116\nTalk:Meta Alloy Hull Reinforcement/@comment-103.35.231.188-20180703012119\nTalk:Meta Alloy Hull Reinforcement/@comment-118.93.246.156-20180408203744\nTalk:Meta Alloy Hull Reinforcement/@comment-2601:381:4200:D553:1D1F:2185:DE65:C85B-20180501082017\nTalk:Meta Alloy Hull Reinforcement/@comment-36087093-20180705112801\nTalk:Metal-Rich Body/@comment-155.192.33.251-20180509135749\nTalk:Metal-Rich Body/@comment-155.192.33.251-20180509135749/@comment-32843761-20180509142428\nTalk:Metallic Crystal/@comment-196.210.174.87-20190113141039\nTalk:Metallic Crystal/@comment-196.210.174.87-20190113141039/@comment-32010805-20190309013449\nTalk:Metallic Crystal/@comment-30692118-20200619223934\nTalk:Metallic Crystal/@comment-45432550-20200409052827\nTalk:Metallic Crystal/@comment-45432550-20200409052827/@comment-45432550-20200409052843\nTalk:Metallic Crystal/@comment-46807515-20200905145059\nTalk:Metallic Crystal/@comment-46807961-20200905155513\nTalk:Metallic Meteorite/@comment-2.107.239.233-20160801235939\nTalk:Metallic Meteorite/@comment-26391992-20151222154842\nTalk:Metallic Meteorite/@comment-60.34.2.5-20160120052706\nTalk:Methanol Monohydrate Crystals/@comment-2600:1005:B042:C51D:C9F8:C54E:BB9E:24DF-20190805162347\nTalk:Methanol Monohydrate Crystals/@comment-2600:1005:B042:C51D:C9F8:C54E:BB9E:24DF-20190805162347/@comment-93.138.77.252-20190810155342\nTalk:Methanol Monohydrate Crystals/@comment-79.116.50.243-20200214021112\nTalk:Michael Brookes/@comment-217.104.28.102-20180807235025\nTalk:Micro-Weave Cooling Hoses/@comment-173.73.27.230-20180804002838\nTalk:Micro-Weave Cooling Hoses/@comment-205.175.226.98-20180712211116\nTalk:Micro-Weave Cooling Hoses/@comment-2601:603:180:2D7:86B:A2DB:F17B:6B4A-20180323165253\nTalk:Micro-Weave Cooling Hoses/@comment-2601:603:180:2D7:86B:A2DB:F17B:6B4A-20180323165253/@comment-111.220.125.26-20180329133219\nTalk:Micro-Weave Cooling Hoses/@comment-2601:603:180:2D7:86B:A2DB:F17B:6B4A-20180323165253/@comment-112.184.58.49-20180326014828\nTalk:Micro-Weave Cooling Hoses/@comment-44180665-20200604114947\nTalk:Microbial Furnaces/@comment-24.15.53.43-20150131222117\nTalk:Microbial Furnaces/@comment-24.15.53.43-20150131222117/@comment-88.89.154.155-20150512155800\nTalk:Microbial Furnaces/@comment-46.193.0.57-20151107161850\nTalk:Microbial Furnaces/@comment-85.3.160.199-20150211024141\nTalk:Microbial Furnaces/@comment-88.115.190.42-20150208160604\nTalk:Microbial Furnaces/@comment-88.115.190.42-20150208160604/@comment-80.195.188.127-20150406124114\nTalk:Mikunn/@comment-1306378-20200224124907\nTalk:Military Grade Alloys/@comment-45519499-20200616141016\nTalk:Military Grade Alloys/@comment-46.167.26.252-20180801201132\nTalk:Military Grade Alloys/@comment-46.167.26.252-20180801201132/@comment-108.234.143.191-20190313030734\nTalk:Military Grade Alloys/@comment-46.167.26.252-20180801201132/@comment-1933852-20200801234752\nTalk:Military Grade Alloys/@comment-46.167.26.252-20180801201132/@comment-82.181.242.197-20180815190248\nTalk:Military Grade Composite/@comment-104.32.49.140-20150714204922\nTalk:Military Grade Composite/@comment-104.32.49.140-20150714204922/@comment-104.32.49.140-20150718165529\nTalk:Military Grade Composite/@comment-104.32.49.140-20150714204922/@comment-159.118.8.125-20150717054635\nTalk:Military Grade Composite/@comment-104.32.49.140-20150714204922/@comment-91.117.5.94-20151219214542\nTalk:Military Grade Composite/@comment-108.51.94.104-20150319025453\nTalk:Military Grade Composite/@comment-109.157.150.244-20150320171037\nTalk:Military Grade Composite/@comment-186.251.39.228-20150126103749\nTalk:Military Grade Composite/@comment-186.251.39.228-20150126103749/@comment-25490957-20150318120813\nTalk:Military Grade Composite/@comment-2.126.146.132-20150321185750\nTalk:Military Grade Composite/@comment-203.104.11.27-20160201235243\nTalk:Military Grade Composite/@comment-26362216-20150503094206\nTalk:Military Grade Composite/@comment-26362216-20150503094206/@comment-2804:7F4:3087:BBB9:D55C:372D:FC35:1902-20180629181819\nTalk:Military Grade Composite/@comment-34669020-20180417151758\nTalk:Military Grade Composite/@comment-34669020-20180417151758/@comment-2A00:801:320:DFF9:D460:373E:4E29:BEF1-20180417163402\nTalk:Military Grade Composite/@comment-46.7.153.70-20150430161212\nTalk:Military Grade Composite/@comment-67.21.153.142-20170420165723\nTalk:Military Grade Composite/@comment-67.21.153.142-20170420165723/@comment-192.136.161.52-20170420203520\nTalk:Military Grade Composite/@comment-67.21.153.142-20170420165723/@comment-4986699-20171127082340\nTalk:Military Grade Composite/@comment-67.233.114.123-20180305160436\nTalk:Military Grade Composite/@comment-76.126.244.102-20150707080743\nTalk:Military Grade Composite/@comment-76.126.244.102-20150707080743/@comment-67.210.67.219-20150922072904\nTalk:Military Grade Composite/@comment-76.126.244.102-20150707080743/@comment-67.210.67.219-20150922073408\nTalk:Military Grade Composite/@comment-76.126.244.102-20150707080743/@comment-67.210.67.219-20150922201213\nTalk:Military Grade Composite/@comment-76.239.57.147-20181118020531\nTalk:Military Grade Composite/@comment-76.239.57.147-20181118020531/@comment-84.83.239.239-20181119192151\nTalk:Military Grade Composite/@comment-83.177.139.41-20140827211518\nTalk:Military Grade Composite/@comment-83.177.139.41-20140827211518/@comment-26005414-20150114054022\nTalk:Military Grade Composite/@comment-83.177.139.41-20140827211518/@comment-6033893-20140828175245\nTalk:Military Grade Composite/@comment-85.237.181.214-20140803103033\nTalk:Military Grade Composite/@comment-85.237.181.214-20140803103033/@comment-26041881-20150125094825\nTalk:Military Grade Composite/@comment-85.237.181.214-20140803103033/@comment-6033893-20140803163956\nTalk:Military Grade Composite/@comment-88.112.91.114-20150316180456\nTalk:Military Grade Composite/@comment-88.112.91.114-20150316180456/@comment-108.51.94.104-20150319025341\nTalk:Military Grade Composite/@comment-88.112.91.114-20150316180456/@comment-67.21.153.142-20170420165900\nTalk:Military Plans/@comment-83.86.187.95-20150111233017\nTalk:Military Plans/@comment-83.86.187.95-20150111233017/@comment-77.166.33.109-20150201010529\nTalk:Military Plans/@comment-94.112.162.105-20151220183753\nTalk:Military Strike/@comment-29011619-20170906003658\nTalk:Military Supercapacitors/@comment-178.78.104.247-20180929163900\nTalk:Military Supercapacitors/@comment-213.143.119.107-20180826200611\nTalk:Military Supercapacitors/@comment-37938660-20181226193034\nTalk:Military Supercapacitors/@comment-46.167.26.252-20180801201112\nTalk:Military Supercapacitors/@comment-81.130.234.223-20181216165206\nTalk:Mine Launcher/@comment-135.0.26.15-20150727071355\nTalk:Mine Launcher/@comment-135.0.26.15-20150727071355/@comment-156.3.54.203-20150917162343\nTalk:Mine Launcher/@comment-156.3.54.203-20150429193657\nTalk:Mine Launcher/@comment-156.3.54.203-20150917162304\nTalk:Mine Launcher/@comment-156.3.54.203-20150917162601\nTalk:Mine Launcher/@comment-199.60.19.55-20150527191551\nTalk:Mine Launcher/@comment-199.60.19.55-20150527191551/@comment-83.93.62.53-20150813183859\nTalk:Mine Launcher/@comment-209.237.120.80-20160719204814\nTalk:Mine Launcher/@comment-209.237.120.80-20160719204814/@comment-209.237.120.80-20160719204953\nTalk:Mine Launcher/@comment-209.237.120.80-20160719204814/@comment-26810344-20160723082522\nTalk:Mine Launcher/@comment-209.237.120.80-20160719204814/@comment-70.214.32.228-20170207195829\nTalk:Mine Launcher/@comment-26313713-20150415023249\nTalk:Mine Launcher/@comment-26810344-20160716085247\nTalk:Mine Launcher/@comment-27019965-20151024235548\nTalk:Mine Launcher/@comment-40.131.116.2-20150614060106\nTalk:Mine Launcher/@comment-40.131.116.2-20150614060106/@comment-156.3.54.203-20150917162516\nTalk:Mine Launcher/@comment-40.131.116.2-20150614060106/@comment-185.37.87.177-20150810072513\nTalk:Mine Launcher/@comment-67.186.92.128-20150417070317\nTalk:Mine Launcher/@comment-67.186.92.128-20150417070317/@comment-209.217.213.114-20150610144429\nTalk:Mine Launcher/@comment-67.186.92.128-20150417070317/@comment-26313713-20150418040715\nTalk:Mine Launcher/@comment-67.186.92.128-20150417070317/@comment-66.222.218.15-20151223120140\nTalk:Mine Launcher/@comment-70.214.32.228-20170207195658\nTalk:Mine Launcher/@comment-70.214.32.228-20170207195658/@comment-121.44.37.73-20170707054629\nTalk:Mine Launcher/@comment-71.0.105.77-20151126120107\nTalk:Mine Launcher/@comment-71.0.105.77-20151126120107/@comment-27019965-20151127232901\nTalk:Mine Launcher/@comment-71.0.105.77-20151126120107/@comment-72.23.117.144-20151228222918\nTalk:Mine Launcher/@comment-71.0.105.77-20151126120107/@comment-72.241.143.238-20151220030554\nTalk:Mine Launcher/@comment-74.14.7.146-20150413005415\nTalk:Mine Launcher/@comment-74.90.92.146-20150530035450\nTalk:Mine Launcher/@comment-74.90.92.146-20150530035450/@comment-73.254.229.37-20180305060506\nTalk:Mine Launcher/@comment-85.72.182.172-20170518182508\nTalk:Mine Launcher/@comment-85.72.182.172-20170518182508/@comment-90.200.46.38-20181122020021\nTalk:Mine Launcher/@comment-90.200.46.38-20181028232035\nTalk:Miner/@comment-107.214.72.8-20170610212346\nTalk:Miner/@comment-107.214.72.8-20170610212346/@comment-27283317-20170611193158\nTalk:Miner/@comment-120.20.77.159-20150711060805\nTalk:Miner/@comment-120.20.77.159-20150711142541\nTalk:Miner/@comment-120.20.77.159-20150711142541/@comment-5959508-20151228115317\nTalk:Miner/@comment-121.211.33.244-20151228045306\nTalk:Miner/@comment-121.216.148.50-20150717155341\nTalk:Miner/@comment-149.255.33.155-20150507023209\nTalk:Miner/@comment-149.255.33.155-20150507023209/@comment-156.3.54.203-20150526163311\nTalk:Miner/@comment-149.255.33.155-20150507023209/@comment-173.55.173.227-20150512042942\nTalk:Miner/@comment-151.42.10.149-20141231140852\nTalk:Miner/@comment-151.42.10.149-20141231140852/@comment-12138097-20141231221357\nTalk:Miner/@comment-156.3.54.203-20150424163854\nTalk:Miner/@comment-156.3.54.203-20150424163854/@comment-26009169-20150424174625\nTalk:Miner/@comment-156.3.54.203-20150504194606\nTalk:Miner/@comment-156.3.54.203-20150604150035\nTalk:Miner/@comment-156.3.54.203-20150604150035/@comment-78.10.197.69-20150609082903\nTalk:Miner/@comment-192.136.175.90-20160602203117\nTalk:Miner/@comment-192.136.175.90-20160602203117/@comment-192.136.161.156-20160912030252\nTalk:Miner/@comment-192.136.175.90-20160602203117/@comment-192.136.175.90-20160603164839\nTalk:Miner/@comment-192.136.175.90-20160602203117/@comment-2155082-20160603035950\nTalk:Miner/@comment-192.136.175.90-20160602203117/@comment-64.127.136.202-20160603160421\nTalk:Miner/@comment-192.136.175.90-20160602203117/@comment-81.103.227.24-20160911172148\nTalk:Miner/@comment-192.136.175.90-20160602203117/@comment-81.103.227.24-20160911222526\nTalk:Miner/@comment-195.145.86.234-20190905071452\nTalk:Miner/@comment-199.185.233.5-20141124162053\nTalk:Miner/@comment-199.185.233.5-20141124162053/@comment-79.247.189.186-20141129190536\nTalk:Miner/@comment-199.255.117.76-20190429163410\nTalk:Miner/@comment-199.48.196.21-20170711203108\nTalk:Miner/@comment-199.48.196.21-20170711203108/@comment-27283317-20170711220207\nTalk:Miner/@comment-2003:C0:53F3:EB00:FC65:3833:EF6C:ACF5-20171015130413\nTalk:Miner/@comment-2003:C0:53F3:EB00:FC65:3833:EF6C:ACF5-20171015130413/@comment-2607:FCC8:E80F:2F00:C846:4ADB:D281:FE9C-20171118214909\nTalk:Miner/@comment-207.166.7.215-20160106171223\nTalk:Miner/@comment-207.166.7.215-20160106171223/@comment-99.237.37.136-20160219023553\nTalk:Miner/@comment-212.10.111.72-20190920212856\nTalk:Miner/@comment-212.10.111.72-20190920212856/@comment-2602:306:CE29:B0D0:24C7:A844:ACA4:74F-20190930012831\nTalk:Miner/@comment-212.23.9.210-20141111155752\nTalk:Miner/@comment-24.46.26.36-20160526225625\nTalk:Miner/@comment-24.46.26.36-20160526225625/@comment-79.136.165.43-20160529103918\nTalk:Miner/@comment-25787591-20141207201959\nTalk:Miner/@comment-2600:1700:DCB0:CC40:842B:5816:D5F:C7BE-20190220014152\nTalk:Miner/@comment-2602:306:CE29:B0D0:24C7:A844:ACA4:74F-20190930005149\nTalk:Miner/@comment-2602:306:CE29:B0D0:24C7:A844:ACA4:74F-20190930005149/@comment-212.10.111.72-20191001033510\nTalk:Miner/@comment-2602:306:CE29:B0D0:24C7:A844:ACA4:74F-20190930005149/@comment-91.127.192.80-20191006102742\nTalk:Miner/@comment-26807290-20150722070325\nTalk:Miner/@comment-26807290-20150722070325/@comment-121.211.33.244-20151228045519\nTalk:Miner/@comment-26807290-20150722070325/@comment-210.55.18.198-20150906213324\nTalk:Miner/@comment-26807290-20150722070325/@comment-210.55.18.198-20150913211723\nTalk:Miner/@comment-26807290-20150722070325/@comment-26757228-20150723040908\nTalk:Miner/@comment-26807290-20150722070325/@comment-26807290-20150722071147\nTalk:Miner/@comment-26807290-20150722070325/@comment-70.198.77.37-20150805141256\nTalk:Miner/@comment-27283317-20160519213054\nTalk:Miner/@comment-27283317-20170711191233\nTalk:Miner/@comment-27283317-20170730194333\nTalk:Miner/@comment-27668044-20160619153143\nTalk:Miner/@comment-27668044-20160619153143/@comment-192.136.174.182-20160620233554\nTalk:Miner/@comment-27668044-20160619153143/@comment-192.136.174.182-20160621112335\nTalk:Miner/@comment-27668044-20160619153143/@comment-2155082-20160620021916\nTalk:Miner/@comment-27668044-20160619153143/@comment-27283317-20160620195745\nTalk:Miner/@comment-27668044-20160619153143/@comment-27283317-20160620212842\nTalk:Miner/@comment-27668044-20160619153143/@comment-27283317-20160620235846\nTalk:Miner/@comment-27668044-20160619153143/@comment-27668044-20160620065911\nTalk:Miner/@comment-27668044-20160619153143/@comment-27668044-20160620212104\nTalk:Miner/@comment-27668044-20160722072153\nTalk:Miner/@comment-27668044-20160722072153/@comment-27283317-20160724202413\nTalk:Miner/@comment-28193329-20190128233745\nTalk:Miner/@comment-28434084-20160808152003\nTalk:Miner/@comment-28434084-20160808152003/@comment-27283317-20160808191314\nTalk:Miner/@comment-28434084-20160808152003/@comment-28434084-20160810071150\nTalk:Miner/@comment-28434084-20160808152003/@comment-81.103.227.24-20160911173620\nTalk:Miner/@comment-29011619-20160714124443\nTalk:Miner/@comment-31.51.232.109-20141102155954\nTalk:Miner/@comment-31.51.232.109-20141102155954/@comment-72.24.136.163-20141102193202\nTalk:Miner/@comment-31.52.45.250-20150401230152\nTalk:Miner/@comment-36390140-20180730120827\nTalk:Miner/@comment-37630258-20181126075921\nTalk:Miner/@comment-47.16.153.180-20180920085433\nTalk:Miner/@comment-47.16.153.180-20180920085433/@comment-47.145.12.143-20181230022557\nTalk:Miner/@comment-47.16.153.180-20180920085433/@comment-90.200.46.38-20181110145923\nTalk:Miner/@comment-70.191.82.171-20170125052720\nTalk:Miner/@comment-70.198.71.214-20151230183000\nTalk:Miner/@comment-70.198.71.214-20151230183000/@comment-5959508-20151230215359\nTalk:Miner/@comment-70.198.71.214-20151230183000/@comment-70.198.68.231-20151231142306\nTalk:Miner/@comment-70.198.76.181-20150928195003\nTalk:Miner/@comment-70.198.76.181-20150928195003/@comment-2620:160:E728:2:0:0:0:8-20180125211713\nTalk:Miner/@comment-70.208.230.139-20150104085953\nTalk:Miner/@comment-70.208.230.139-20150104085953/@comment-2.108.204.55-20150104155822\nTalk:Miner/@comment-70.208.230.139-20150104085953/@comment-87.114.179.44-20150118121126\nTalk:Miner/@comment-71.162.254.15-20151228092712\nTalk:Miner/@comment-71.162.254.15-20151228092712/@comment-27283317-20160217211242\nTalk:Miner/@comment-71.162.254.15-20151228092712/@comment-5959508-20151228114612\nTalk:Miner/@comment-71.162.254.15-20151228092712/@comment-64.127.136.202-20160112144417\nTalk:Miner/@comment-71.179.9.18-20150115131236\nTalk:Miner/@comment-71.179.9.18-20150115131236/@comment-26017069-20150117204943\nTalk:Miner/@comment-71.179.9.18-20150115131236/@comment-4968814-20150117175615\nTalk:Miner/@comment-71.194.78.95-20150125011730\nTalk:Miner/@comment-71.194.78.95-20150125011730/@comment-138.162.0.41-20151220202456\nTalk:Miner/@comment-71.194.78.95-20150125011730/@comment-14.201.187.44-20150321053610\nTalk:Miner/@comment-71.194.78.95-20150125011730/@comment-210.55.18.198-20150906212526\nTalk:Miner/@comment-71.194.78.95-20150125011730/@comment-24.132.173.88-20150502003229\nTalk:Miner/@comment-71.205.136.174-20150717194201\nTalk:Miner/@comment-71.205.136.174-20150717194201/@comment-26807290-20150722075333\nTalk:Miner/@comment-71.205.136.174-20150717194201/@comment-50.24.5.109-20151015111045\nTalk:Miner/@comment-71.205.136.174-20150717194201/@comment-70.198.76.181-20150928195407\nTalk:Miner/@comment-71.205.136.174-20150717194201/@comment-71.205.136.174-20150717194742\nTalk:Miner/@comment-71.205.136.174-20150717194201/@comment-72.241.143.238-20150820122600\nTalk:Miner/@comment-71.205.136.174-20150717194201/@comment-76.27.255.161-20150922092411\nTalk:Miner/@comment-71.205.136.174-20150717194201/@comment-81.103.227.24-20160911172921\nTalk:Miner/@comment-71.205.136.174-20150717194201/@comment-86.45.98.174-20150827212553\nTalk:Miner/@comment-74.90.92.146-20151003000038\nTalk:Miner/@comment-79.218.170.47-20190708003649\nTalk:Miner/@comment-79.218.170.47-20190708003649/@comment-79.218.170.47-20190708005727\nTalk:Miner/@comment-79.31.232.60-20181126074609\nTalk:Miner/@comment-86.41.207.96-20170531192427\nTalk:Miner/@comment-86.41.207.96-20170531192427/@comment-27283317-20170531200124\nTalk:Miner/@comment-87.128.14.118-20170831123622\nTalk:Miner/@comment-90.200.46.38-20181110114942\nTalk:Miner/@comment-90.200.46.38-20181110114942/@comment-37630258-20181127205447\nTalk:Miner/@comment-90.200.49.195-20181217212213\nTalk:Miner/@comment-91.89.40.136-20141227164245\nTalk:Miner/@comment-91.89.40.136-20141227164245/@comment-12138097-20141227224406\nTalk:Miner/@comment-91.89.40.136-20141227164245/@comment-65.32.191.96-20150221062902\nTalk:Miner/@comment-94.18.233.78-20141225040441\nTalk:Miner/@comment-94.215.20.106-20141224011942\nTalk:Miner/@comment-94.215.20.106-20141224011942/@comment-76.109.160.244-20141224032442\nTalk:Miner/@comment-98.220.73.80-20160121014826\nTalk:Miner/@comment-98.220.73.80-20160121014826/@comment-71.236.251.12-20160228042339\nTalk:Miner/@comment-98.220.73.80-20160121014826/@comment-99.237.37.136-20160223115318\nTalk:Miner/@comment-98.253.89.16-20141202215102\nTalk:Miner/@comment-98.253.89.16-20141202215102/@comment-156.3.54.203-20150424164038\nTalk:Miner/@comment-98.253.89.16-20141202215102/@comment-210.108.144.17-20150103082218\nTalk:Miner/@comment-98.253.89.16-20141202215102/@comment-25074307-20141204082951\nTalk:Miner/@comment-98.253.89.16-20141202215102/@comment-70.192.133.123-20141222072408\nTalk:Miner/@comment-99.17.198.206-20150212221026\nTalk:Miner/@comment-99.17.198.206-20150212221026/@comment-24.132.173.88-20150502001202\nTalk:Miner/@comment-99.17.198.206-20150212221026/@comment-99.17.198.206-20150212221157\nTalk:Miner/@comment-99.237.37.136-20160223115430\nTalk:Miner/@comment-99.237.37.136-20160228214711\nTalk:Mineral Extractors/@comment-77.234.44.145-20170502175113\nTalk:Mining Lance/@comment-118.93.246.156-20180329001834\nTalk:Mining Lance/@comment-124.149.57.252-20180315081138\nTalk:Mining Lance/@comment-2602:306:CE29:B0D0:7D6E:D1A2:1A68:171-20190910235408\nTalk:Mining Lance/@comment-43404895-20200528003209\nTalk:Mining Lance/@comment-68.184.110.81-20191017014515\nTalk:Mining Lance/@comment-68.184.110.81-20191017014515/@comment-2601:980:8281:4640:104C:2B88:E6E0:EB8F-20191018174230\nTalk:Mining Lance/@comment-68.184.110.81-20191017014515/@comment-65.30.78.34-20191108191735\nTalk:Mining Lance/@comment-71.164.96.187-20150707183730\nTalk:Mining Lance/@comment-71.164.96.187-20150707183730/@comment-174.55.166.100-20150711025924\nTalk:Mining Lance/@comment-71.164.96.187-20150707183730/@comment-26227424-20160802190206\nTalk:Mining Lance/@comment-86.41.111.72-20151012201732\nTalk:Mining Lance/@comment-90.200.46.38-20181028234702\nTalk:Mining Lance/@comment-90.200.46.38-20181028234702/@comment-90.200.46.38-20181029124905\nTalk:Mining Lance/@comment-90.200.46.38-20181028234702/@comment-90.200.46.38-20181029130704\nTalk:Mining Lance/@comment-90.200.46.38-20181115113717\nTalk:Mining Lance/@comment-90.200.46.38-20181115113717/@comment-90.201.205.200-20190511234445\nTalk:Mining Lance/@comment-90.200.46.38-20181130002752\nTalk:Mining Laser/@comment-149.254.250.129-20150202102542\nTalk:Mining Laser/@comment-149.254.250.129-20150202102542/@comment-12.5.54.135-20170103135130\nTalk:Mining Laser/@comment-149.254.250.129-20150202102542/@comment-83.251.73.238-20150207131125\nTalk:Mining Laser/@comment-156.3.54.204-20150428213133\nTalk:Mining Laser/@comment-156.3.54.204-20150428213133/@comment-12.5.54.135-20170103135057\nTalk:Mining Laser/@comment-156.3.54.204-20150428213133/@comment-195.234.74.137-20190206182441\nTalk:Mining Laser/@comment-156.3.54.204-20150428213133/@comment-26338094-20151101024251\nTalk:Mining Laser/@comment-156.3.54.204-20150428213133/@comment-90.200.46.38-20181106180240\nTalk:Mining Laser/@comment-172.58.41.1-20151204175740\nTalk:Mining Laser/@comment-175.141.192.12-20150329045230\nTalk:Mining Laser/@comment-175.141.192.12-20150329045230/@comment-26033489-20150329062600\nTalk:Mining Laser/@comment-175.141.192.12-20150329045405\nTalk:Mining Laser/@comment-175.141.192.12-20150329045405/@comment-156.3.54.204-20150428213000\nTalk:Mining Laser/@comment-24.45.93.5-20150331043031\nTalk:Mining Laser/@comment-24.45.93.5-20150331043031/@comment-156.3.54.203-20150501153709\nTalk:Mining Laser/@comment-24.45.93.5-20150331043031/@comment-71.231.50.26-20151026060833\nTalk:Mining Laser/@comment-30683812-20170421023737\nTalk:Mining Laser/@comment-30683812-20170421023737/@comment-109.228.166.46-20171025070420\nTalk:Mining Laser/@comment-30683812-20170421023737/@comment-91.196.8.74-20170422041218\nTalk:Mining Laser/@comment-32497773-20190120020007\nTalk:Mining Laser/@comment-32497773-20190120020007/@comment-28193329-20190127231115\nTalk:Mining Laser/@comment-32497773-20190120020007/@comment-32497773-20190127231738\nTalk:Mining Laser/@comment-32497773-20190120020007/@comment-43941713-20200409181030\nTalk:Mining Laser/@comment-34641605-20180328231218\nTalk:Mining Laser/@comment-34641605-20180328231218/@comment-63.116.31.198-20181026185904\nTalk:Mining Laser/@comment-46.231.152.228-20150330080058\nTalk:Mining Laser/@comment-46.231.152.228-20150330080058/@comment-94.69.201.158-20150427181932\nTalk:Mining Laser/@comment-70.123.111.143-20141231232731\nTalk:Mining Laser/@comment-70.123.111.143-20141231232731/@comment-12138097-20141231233908\nTalk:Mining Laser/@comment-70.123.111.143-20141231232731/@comment-2605:A000:161A:4494:C9E6:2329:A040:C4B5-20180712145937\nTalk:Mining Laser/@comment-79.97.180.45-20150501095056\nTalk:Mining Laser/@comment-79.97.180.45-20150501095056/@comment-156.3.54.203-20150501153528\nTalk:Mining Laser/@comment-79.97.180.45-20150501095056/@comment-90.200.46.38-20181102093939\nTalk:Mirrored Surface Composite/@comment-176.249.62.114-20170810170024\nTalk:Mirrored Surface Composite/@comment-176.249.62.114-20170810170024/@comment-176.249.62.114-20170811142751\nTalk:Mirrored Surface Composite/@comment-207.161.84.117-20150328004231\nTalk:Mirrored Surface Composite/@comment-207.161.84.117-20150328004231/@comment-176.249.62.114-20170810170237\nTalk:Mirrored Surface Composite/@comment-207.161.84.117-20150328004231/@comment-88.112.91.114-20150816224239\nTalk:Mirrored Surface Composite/@comment-207.161.84.117-20150328004231/@comment-89.73.90.167-20151018120402\nTalk:Mirrored Surface Composite/@comment-212.85.88.117-20150110213559\nTalk:Mirrored Surface Composite/@comment-212.85.88.117-20150110213559/@comment-71.245.80.141-20150119065455\nTalk:Mirrored Surface Composite/@comment-212.85.88.117-20150110213559/@comment-88.112.91.114-20150816224410\nTalk:Mirrored Surface Composite/@comment-42.112.81.61-20160830205228\nTalk:Mirrored Surface Composite/@comment-42.112.81.61-20160830205228/@comment-176.249.62.114-20170810170440\nTalk:Mirrored Surface Composite/@comment-76.126.244.102-20150707080330\nTalk:Mirrored Surface Composite/@comment-76.126.244.102-20150707080330/@comment-176.249.62.114-20170810170708\nTalk:Mirrored Surface Composite/@comment-85.180.213.204-20150120172357\nTalk:Missile Rack/@comment-153.107.192.212-20160406001520\nTalk:Missile Rack/@comment-156.3.54.204-20150428214821\nTalk:Missile Rack/@comment-156.3.54.204-20150428214821/@comment-156.3.54.202-20150527150218\nTalk:Missile Rack/@comment-156.3.54.204-20150428214821/@comment-156.3.54.203-20150501154738\nTalk:Missile Rack/@comment-156.3.54.204-20150428214821/@comment-156.3.54.203-20150512145038\nTalk:Missile Rack/@comment-156.3.54.204-20150428214821/@comment-174.100.137.70-20150430193634\nTalk:Missile Rack/@comment-156.3.54.204-20150428214821/@comment-72.241.143.238-20150523050126\nTalk:Missile Rack/@comment-156.3.54.204-20150428214821/@comment-95.90.196.141-20160602075709\nTalk:Missile Rack/@comment-168.99.198.77-20180211232945\nTalk:Missile Rack/@comment-170.211.241.25-20171020143105\nTalk:Missile Rack/@comment-170.211.241.25-20171020143105/@comment-34641605-20180705005939\nTalk:Missile Rack/@comment-173.80.93.74-20160109230823\nTalk:Missile Rack/@comment-187.145.10.167-20180304191400\nTalk:Missile Rack/@comment-192.136.161.33-20180109163128\nTalk:Missile Rack/@comment-198.146.57.1-20160624142950\nTalk:Missile Rack/@comment-2001:56A:7702:4800:CCF2:6077:A4C7:469-20181222141506\nTalk:Missile Rack/@comment-2001:56A:7702:4800:CCF2:6077:A4C7:469-20181222141506/@comment-90.200.49.195-20181223141832\nTalk:Missile Rack/@comment-2003:DA:CBCD:7700:412A:7BFB:7CCE:9474-20180720194101\nTalk:Missile Rack/@comment-26005414-20180901023932\nTalk:Missile Rack/@comment-2601:1C2:4C00:DE57:FD29:12A8:BB6:3A96-20170929022140\nTalk:Missile Rack/@comment-2601:1C2:4C00:DE57:FD29:12A8:BB6:3A96-20170929022140/@comment-32.212.131.1-20171006195547\nTalk:Missile Rack/@comment-26063183-20150131231158\nTalk:Missile Rack/@comment-26063183-20150131231158/@comment-125.237.3.1-20161017193638\nTalk:Missile Rack/@comment-26063183-20150131231158/@comment-184.155.171.193-20150430041843\nTalk:Missile Rack/@comment-26306474-20150428182403\nTalk:Missile Rack/@comment-47.208.10.105-20170206091930\nTalk:Missile Rack/@comment-47.208.10.105-20170206091930/@comment-121.3.201.205-20190413153658\nTalk:Missile Rack/@comment-47.208.10.105-20170206091930/@comment-2001:56A:7702:4800:CCF2:6077:A4C7:469-20181222141410\nTalk:Missile Rack/@comment-47.208.10.105-20170206091930/@comment-34004391-20200313120757\nTalk:Missile Rack/@comment-47.208.10.105-20170206091930/@comment-4508905-20170529005753\nTalk:Missile Rack/@comment-50.25.174.219-20160825031153\nTalk:Missile Rack/@comment-50.25.174.219-20160825031153/@comment-192.136.161.248-20160825110015\nTalk:Missile Rack/@comment-50.25.174.219-20160825031153/@comment-192.136.161.248-20160826112912\nTalk:Missile Rack/@comment-50.25.174.219-20160825031153/@comment-192.136.161.248-20160830104350\nTalk:Missile Rack/@comment-50.25.174.219-20160825031153/@comment-27032150-20160825073230\nTalk:Missile Rack/@comment-50.25.174.219-20160825031153/@comment-27032150-20160826142531\nTalk:Missile Rack/@comment-50.25.174.219-20160825235209\nTalk:Missile Rack/@comment-70.119.139.111-20150615204946\nTalk:Missile Rack/@comment-70.161.131.198-20150201135139\nTalk:Missile Rack/@comment-73.199.72.66-20161028173619\nTalk:Missile Rack/@comment-73.199.72.66-20161028173619/@comment-114.125.8.255-20161104180817\nTalk:Missile Rack/@comment-73.199.72.66-20161028173619/@comment-192.136.161.156-20161028175444\nTalk:Missile Rack/@comment-73.199.72.66-20161028173619/@comment-194.68.56.33-20170210090032\nTalk:Missile Rack/@comment-74.98.166.175-20150421044148\nTalk:Missile Rack/@comment-82.208.5.86-20150323173809\nTalk:Missile Rack/@comment-82.208.5.86-20150323173809/@comment-92.16.244.251-20150414185136\nTalk:Missile Rack/@comment-84.173.105.208-20150630231557\nTalk:Missile Rack/@comment-84.173.105.208-20150630231557/@comment-125.237.3.1-20161017193254\nTalk:Missile Rack/@comment-84.59.182.34-20150508183727\nTalk:Missile Rack/@comment-88.85.155.146-20150402200739\nTalk:Missile Rack/@comment-88.85.155.146-20150402200739/@comment-137.147.147.199-20150625151357\nTalk:Missile Rack/@comment-92.217.226.180-20150808234826\nTalk:Missile Rack/@comment-93.152.47.124-20150420113439\nTalk:Missile Rack/@comment-94.12.31.80-20170723175941\nTalk:Missile Rack/@comment-94.12.31.80-20170803132521\nTalk:Missile Rack/@comment-95.145.93.188-20150901135503\nTalk:Missile Rack/@comment-95.145.93.188-20150901135503/@comment-92.4.169.220-20151001211501\nTalk:Missile Rack/@comment-98.89.4.92-20180825183513\nTalk:Missile Rack/@comment-98.89.4.92-20180825183513/@comment-100.2.78.49-20180903013005\nTalk:Missile Rack/@comment-98.89.4.92-20180825183513/@comment-192.136.170.98-20181209183334\nTalk:Missile Rack/@comment-98.89.4.92-20180825183513/@comment-90.200.49.195-20181209164227\nTalk:Mission Board/@comment-143.81.103.35-20151220214216\nTalk:Mission Board/@comment-188.126.181.53-20151221153801\nTalk:Mission Board/@comment-188.126.181.53-20151221153801/@comment-188.126.161.29-20151222204809\nTalk:Mission Board/@comment-188.126.181.53-20151221153801/@comment-95.91.228.26-20160320003515\nTalk:Mission Board/@comment-192.136.161.33-20171003124446\nTalk:Mission Board/@comment-192.136.161.33-20171003124446/@comment-152.132.9.197-20171013203046\nTalk:Mission Board/@comment-192.136.161.33-20171003124446/@comment-152.132.9.197-20171013203711\nTalk:Mission Board/@comment-192.136.161.33-20171003124446/@comment-185.161.57.229-20180322080155\nTalk:Mission Board/@comment-192.136.161.33-20171003124446/@comment-2001:980:8E53:1:9575:A73D:42A0:89C1-20171003184325\nTalk:Mission Board/@comment-192.136.161.33-20171003124446/@comment-90.200.46.38-20181104211622\nTalk:Mission Board/@comment-192.136.174.182-20160721112645\nTalk:Mission Board/@comment-217.82.166.135-20151208191447\nTalk:Mission Board/@comment-24.118.224.118-20161025005307\nTalk:Mission Board/@comment-24.118.224.118-20161025005307/@comment-2155082-20161025040918\nTalk:Mission Board/@comment-24.240.67.75-20160827213529\nTalk:Mission Board/@comment-24.240.67.75-20160827213529/@comment-28954969-20160828062643\nTalk:Mission Board/@comment-24.240.67.75-20160827213529/@comment-29567000-20161027100422\nTalk:Mission Board/@comment-26876685-20150810201638\nTalk:Mission Board/@comment-27408680-20151217073933\nTalk:Mission Board/@comment-69.141.172.169-20150925205919\nTalk:Mission Board/@comment-70.29.96.221-20181030234432\nTalk:Mission Board/@comment-70.29.96.221-20181030234432/@comment-90.200.46.38-20181104113958\nTalk:Mission Board/@comment-70.54.137.215-20150531084238\nTalk:Mission Board/@comment-70.54.137.215-20150531084238/@comment-68.149.19.244-20160112022439\nTalk:Mission Board/@comment-70.54.137.215-20150531084238/@comment-87.179.78.51-20150531093635\nTalk:Mission Board/@comment-76.222.215.107-20200110131648\nTalk:Mission Board/@comment-90.200.46.38-20181104113243\nTalk:Mission Board/@comment-90.200.46.38-20181104113243/@comment-2602:306:CE29:B0D0:5148:3E6C:3019:AFBF-20191012012512\nTalk:Mission Board/Types/@comment-24.107.216.102-20190805044527\nTalk:Mission Depot/@comment-209.169.185.23-20180301021018\nTalk:Mission Depot/@comment-209.169.185.23-20180301021018/@comment-34375658-20180302190540\nTalk:Mission Depot/@comment-2600:1700:29E0:13B0:FCD5:5789:BD6:F4B0-20190414190752\nTalk:Mission Depot/@comment-2600:1700:29E0:13B0:FCD5:5789:BD6:F4B0-20190414194641\nTalk:Mission Depot/@comment-2601:5CE:8100:14DE:A43B:736:9478:3BF1-20181224194713\nTalk:Mission Depot/@comment-2A02:1810:1D07:1000:4CBB:59CD:FB3D:4CE4-20191007232847\nTalk:Mitterand Hollow/@comment-151.68.96.38-20180607225504\nTalk:Mitterand Hollow/@comment-151.68.96.38-20180607225504/@comment-104.156.228.131-20180708172220\nTalk:Mitterand Hollow/@comment-151.68.96.38-20180607225504/@comment-90.200.46.38-20181108141513\nTalk:Mitterand Hollow/@comment-82.70.121.110-20180706133838\nTalk:Mitterand Hollow/@comment-903860-20200808034946\nTalk:Modified Consumer Firmware/@comment-110.21.135.86-20180102084505\nTalk:Modified Consumer Firmware/@comment-110.21.135.86-20180102084505/@comment-170.52.8.45-20190111021131\nTalk:Modified Consumer Firmware/@comment-110.21.135.86-20180102084505/@comment-192.136.170.98-20190111192631\nTalk:Modified Consumer Firmware/@comment-24927320-20180701071822\nTalk:Modified Consumer Firmware/@comment-24927320-20180701071822/@comment-216.243.47.125-20180922034109\nTalk:Modified Consumer Firmware/@comment-31.223.104.160-20190727203717\nTalk:Modified Embedded Firmware/@comment-67.1.18.79-20191030154208\nTalk:Modular Terminals/@comment-107.3.157.117-20170925044847\nTalk:Modular Terminals/@comment-107.3.157.117-20170925044847/@comment-194.176.105.139-20180622145314\nTalk:Modular Terminals/@comment-107.3.157.117-20170925044847/@comment-212.112.149.50-20180201155744\nTalk:Modular Terminals/@comment-139.218.29.5-20190611042533\nTalk:Modular Terminals/@comment-17703786-20200806141242\nTalk:Modular Terminals/@comment-189.6.24.101-20170603212849\nTalk:Modular Terminals/@comment-189.6.24.101-20170603212849/@comment-204.156.175.186-20171016172824\nTalk:Modular Terminals/@comment-27646870-20160729163904\nTalk:Modular Terminals/@comment-27646870-20160729163904/@comment-148.75.214.166-20171021195748\nTalk:Modular Terminals/@comment-2A00:23C6:D82:400:7C91:6C2B:B1A7:B37B-20180306231148\nTalk:Modular Terminals/@comment-44180665-20200502100133\nTalk:Modular Terminals/@comment-44180665-20200502100133/@comment-45741214-20200509214401\nTalk:Modular Terminals/@comment-45519499-20200423205808\nTalk:Modular Terminals/@comment-45519499-20200423205808/@comment-44180665-20200502100441\nTalk:Modular Terminals/@comment-46368955-20200716201322\nTalk:Modular Terminals/@comment-70.71.243.188-20170428064309\nTalk:Modular Terminals/@comment-70.71.243.188-20170428064309/@comment-2600:8803:7A02:8BF0:7CA9:4C01:CE61:A975-20190118000831\nTalk:Modular Terminals/@comment-70.71.243.188-20170428064309/@comment-2601:603:80:DB0:8D9F:8D0:8439:FE33-20171024021615\nTalk:Modular Terminals/@comment-70.71.243.188-20170428064309/@comment-2602:304:CE3B:E5D0:24D6:7062:B2C:3DB8-20180915224653\nTalk:Modular Terminals/@comment-71.200.39.30-20200127033221\nTalk:Modular Terminals/@comment-76.113.148.225-20190209225541\nTalk:Modular Terminals/@comment-89.238.167.90-20190707122201\nTalk:Modular Terminals/@comment-92.155.236.206-20190116062845\nTalk:Module Reinforcement Package/@comment-2001:5B0:4BC0:D040:0:FF:FEBD:1C0-20180522055955\nTalk:Module Reinforcement Package/@comment-2001:5B0:4BC0:D040:0:FF:FEBD:1C0-20180522055955/@comment-212.10.111.72-20190505015417\nTalk:Module Reinforcement Package/@comment-2001:5B0:4BC0:D040:0:FF:FEBD:1C0-20180522055955/@comment-2806:104E:17:1DBD:218A:7C07:61A3:3973-20190426035902\nTalk:Module Reinforcement Package/@comment-2001:5B0:4BC0:D040:0:FF:FEBD:1C0-20180522055955/@comment-86.52.85.36-20180523153732\nTalk:Module Reinforcement Package/@comment-2001:5B0:4BC0:D040:0:FF:FEBD:1C0-20180522055955/@comment-86.52.85.36-20180523154712\nTalk:Module Reinforcement Package/@comment-2001:5B0:4BCF:E6F0:0:FF:FEBD:1C0-20180515011358\nTalk:Module Reinforcement Package/@comment-2001:5B0:4BCF:E6F0:0:FF:FEBD:1C0-20180515011358/@comment-192.136.161.33-20180515025110\nTalk:Module Reinforcement Package/@comment-25450485-20190825201024\nTalk:Module Reinforcement Package/@comment-2601:340:4202:5AD0:ED64:FAC8:3353:8645-20171026213816\nTalk:Module Reinforcement Package/@comment-2601:340:4202:5AD0:ED64:FAC8:3353:8645-20171026213816/@comment-2A02:8070:D87:8E00:8D7:32E0:E9C1:21B4-20171112151407\nTalk:Module Reinforcement Package/@comment-2601:340:4202:5AD0:ED64:FAC8:3353:8645-20171026213816/@comment-30245159-20171112160654\nTalk:Module Reinforcement Package/@comment-2602:306:CE29:B0D0:5148:3E6C:3019:AFBF-20191012004605\nTalk:Module priority control/@comment-216.121.235.144-20170519184827\nTalk:Module priority control/@comment-24.253.75.17-20150725225711\nTalk:Module priority control/@comment-66.109.235.218-20160211200409\nTalk:Module priority control/@comment-66.109.235.218-20160211200409/@comment-91.158.15.3-20161129005245\nTalk:Module priority control/@comment-74.214.41.170-20190718140331\nTalk:Module priority control/@comment-74.214.41.170-20190718140331/@comment-5.173.178.201-20200210153205\nTalk:Molybdenum/@comment-2.151.138.50-20200131201029\nTalk:Monazite/@comment-2003:C1:8F42:6F00:A528:499D:C2AA:D987-20200207191948\nTalk:Moon/@comment-192.245.50.52-20170802133450\nTalk:Moon/@comment-192.245.50.52-20170802133450/@comment-192.136.161.6-20170802135238\nTalk:Moon/@comment-192.245.50.52-20170802133450/@comment-2607:FB90:4C37:258B:16FC:D3A0:B0CB:8DB1-20190825175056\nTalk:Moon/@comment-192.245.50.52-20170802133450/@comment-75.102.132.106-20190101042537\nTalk:Moon/@comment-45166371-20200408225658\nTalk:Moon/@comment-84.199.100.122-20150305155254\nTalk:Moons/@comment-2182702-20190628054540\nTalk:Moons/@comment-2182702-20190628054540/@comment-43623494-20190914220918\nTalk:Mosher/@comment-87.115.200.79-20190705210001\nTalk:Motrona Experience Jelly/@comment-14.201.223.11-20160101045214\nTalk:Motrona Experience Jelly/@comment-187.67.3.61-20180112013305\nTalk:Motrona Experience Jelly/@comment-187.67.3.61-20180112013305/@comment-27283317-20180114181233\nTalk:Motrona Experience Jelly/@comment-188.107.0.52-20180908190512\nTalk:Motrona Experience Jelly/@comment-27283317-20161124214257\nTalk:Motrona Experience Jelly/@comment-74.97.38.183-20150225053623\nTalk:Motrona Experience Jelly/@comment-77.75.166.83-20141220195443\nTalk:Motrona Experience Jelly/@comment-77.75.166.83-20141220195443/@comment-81.141.34.77-20141230002302\nTalk:Motrona Experience Jelly/@comment-86.205.77.113-20141230171841\nTalk:Motrona Experience Jelly/@comment-92.148.141.169-20150104113053\nTalk:Motrona Experience Jelly/@comment-95.91.228.104-20160308153648\nTalk:Mukusubii Chitin-Os/@comment-77.50.26.143-20160814205939\nTalk:Mulachi Giant Fungus/@comment-2601:187:8081:BEFB:24B3:22A9:DC89:6B37-20181117134138\nTalk:Mulachi Giant Fungus/@comment-2601:187:8081:BEFB:24B3:22A9:DC89:6B37-20181117134138/@comment-24.6.140.103-20181117163106\nTalk:Mulachi Giant Fungus/@comment-903860-20181215040834\nTalk:Multi-cannon/@comment-101.169.255.225-20150404032719\nTalk:Multi-cannon/@comment-14.34.217.235-20160108155845\nTalk:Multi-cannon/@comment-14.34.217.235-20160108155845/@comment-30802664-20170113151813\nTalk:Multi-cannon/@comment-143.81.103.35-20160211201007\nTalk:Multi-cannon/@comment-144.131.34.218-20150413043046\nTalk:Multi-cannon/@comment-144.131.34.218-20150413043046/@comment-144.131.34.218-20150413054900\nTalk:Multi-cannon/@comment-144.131.34.218-20150413043046/@comment-147.69.130.192-20150414093319\nTalk:Multi-cannon/@comment-144.131.34.218-20150413043046/@comment-70.69.170.20-20150415011203\nTalk:Multi-cannon/@comment-156.3.54.202-20150427154624\nTalk:Multi-cannon/@comment-156.3.54.202-20150427154624/@comment-130.101.200.119-20150715225126\nTalk:Multi-cannon/@comment-156.3.54.202-20150427154624/@comment-156.3.54.203-20150505165423\nTalk:Multi-cannon/@comment-156.3.54.202-20150427154624/@comment-216.121.216.235-20150714040829\nTalk:Multi-cannon/@comment-156.3.54.202-20150427154624/@comment-73.53.96.176-20150503090540\nTalk:Multi-cannon/@comment-173.35.86.182-20150324231510\nTalk:Multi-cannon/@comment-173.35.86.182-20150324231510/@comment-173.35.86.182-20150324231632\nTalk:Multi-cannon/@comment-174.102.96.147-20150117060633\nTalk:Multi-cannon/@comment-174.52.214.245-20161113063112\nTalk:Multi-cannon/@comment-174.52.214.245-20161113063112/@comment-178.203.234.4-20161130171356\nTalk:Multi-cannon/@comment-176.222.224.253-20160527095655\nTalk:Multi-cannon/@comment-176.222.224.253-20160527095655/@comment-87.241.107.6-20160527234927\nTalk:Multi-cannon/@comment-176.249.62.114-20170810000800\nTalk:Multi-cannon/@comment-176.249.62.114-20170810000800/@comment-100.2.35.122-20180608145937\nTalk:Multi-cannon/@comment-176.249.62.114-20170810000800/@comment-176.249.62.114-20170810201348\nTalk:Multi-cannon/@comment-176.249.62.114-20170810000800/@comment-176.249.62.114-20170819115947\nTalk:Multi-cannon/@comment-176.249.62.114-20170810000800/@comment-176.249.62.114-20170822111844\nTalk:Multi-cannon/@comment-176.249.62.114-20170810000800/@comment-86.52.85.36-20170811144810\nTalk:Multi-cannon/@comment-176.249.62.114-20170810000800/@comment-86.52.85.36-20170917211732\nTalk:Multi-cannon/@comment-176.249.62.114-20170810000800/@comment-90.200.46.38-20181127020539\nTalk:Multi-cannon/@comment-176.43.142.195-20160616143005\nTalk:Multi-cannon/@comment-176.43.142.195-20160616143005/@comment-176.249.62.114-20170810001745\nTalk:Multi-cannon/@comment-176.43.142.195-20160616143005/@comment-176.43.142.195-20160616143546\nTalk:Multi-cannon/@comment-176.43.142.195-20160616143005/@comment-30802664-20170113151013\nTalk:Multi-cannon/@comment-176.43.142.195-20160616143005/@comment-73.225.21.128-20161203023014\nTalk:Multi-cannon/@comment-176.43.142.195-20160616143005/@comment-74.195.4.183-20160823151343\nTalk:Multi-cannon/@comment-176.63.141.52-20151218170042\nTalk:Multi-cannon/@comment-176.63.141.52-20151218170042/@comment-27157230-20160209190813\nTalk:Multi-cannon/@comment-176.63.141.52-20151218170042/@comment-30802664-20170113152334\nTalk:Multi-cannon/@comment-183.178.236.26-20170521053637\nTalk:Multi-cannon/@comment-184.91.189.54-20150321224722\nTalk:Multi-cannon/@comment-184.91.189.54-20150321224722/@comment-26033489-20150322043731\nTalk:Multi-cannon/@comment-2003:C6:C3E7:73AF:DCCE:56DB:C6FA:E523-20180720191040\nTalk:Multi-cannon/@comment-2003:C6:C3E7:73AF:DCCE:56DB:C6FA:E523-20180720191040/@comment-90.200.46.38-20181119203520\nTalk:Multi-cannon/@comment-2003:DA:CBCD:7700:85FB:B32A:F0B7:6E72-20180720173343\nTalk:Multi-cannon/@comment-2003:DA:CBCD:7700:85FB:B32A:F0B7:6E72-20180720173343/@comment-90.200.46.38-20181117224624\nTalk:Multi-cannon/@comment-213.125.176.250-20160126170526\nTalk:Multi-cannon/@comment-213.125.176.250-20160126170526/@comment-125.237.3.1-20161013205436\nTalk:Multi-cannon/@comment-213.125.176.250-20160126170526/@comment-125.237.3.1-20161019070453\nTalk:Multi-cannon/@comment-213.125.176.250-20160126170526/@comment-81.247.112.153-20161020121652\nTalk:Multi-cannon/@comment-26048354-20150127091436\nTalk:Multi-cannon/@comment-27032150-20151007125908\nTalk:Multi-cannon/@comment-27032150-20151007125908/@comment-125.237.3.1-20161019070645\nTalk:Multi-cannon/@comment-30800286-20171010144528\nTalk:Multi-cannon/@comment-31.124.35.110-20190829172657\nTalk:Multi-cannon/@comment-31.124.35.110-20190829172657/@comment-90.194.227.248-20190919201114\nTalk:Multi-cannon/@comment-34004391-20180105120619\nTalk:Multi-cannon/@comment-34004391-20180105120619/@comment-2001:16B8:4031:2C00:6D96:7683:CA35:6451-20180106031420\nTalk:Multi-cannon/@comment-34004391-20180105120619/@comment-2600:387:6:80E:0:0:0:88-20180326210609\nTalk:Multi-cannon/@comment-34004391-20180105120619/@comment-34004391-20180106101458\nTalk:Multi-cannon/@comment-34004391-20180105120619/@comment-90.200.46.38-20181028103655\nTalk:Multi-cannon/@comment-46.116.58.2-20160603063612\nTalk:Multi-cannon/@comment-46.116.58.2-20160603063612/@comment-30802664-20170113151131\nTalk:Multi-cannon/@comment-46.116.58.2-20160603063612/@comment-76.26.61.217-20160607034542\nTalk:Multi-cannon/@comment-4942948-20180729190627\nTalk:Multi-cannon/@comment-5.147.122.133-20151014074850\nTalk:Multi-cannon/@comment-5.147.122.133-20151014074850/@comment-209.226.83.236-20151109164341\nTalk:Multi-cannon/@comment-5.147.122.133-20151014074850/@comment-27019965-20151110063354\nTalk:Multi-cannon/@comment-5.147.122.133-20151014074850/@comment-27032150-20151109184434\nTalk:Multi-cannon/@comment-5.147.122.133-20151014074850/@comment-27034370-20160104104316\nTalk:Multi-cannon/@comment-5.147.122.133-20151014074850/@comment-27034370-20160104104404\nTalk:Multi-cannon/@comment-5.147.122.133-20151014074850/@comment-30802664-20170113152558\nTalk:Multi-cannon/@comment-71.197.100.191-20140812013349\nTalk:Multi-cannon/@comment-71.197.100.191-20140812013349/@comment-124.181.234.184-20141207121840\nTalk:Multi-cannon/@comment-71.198.118.111-20151125064326\nTalk:Multi-cannon/@comment-71.198.118.111-20151125064326/@comment-173.20.155.11-20151216161337\nTalk:Multi-cannon/@comment-71.198.118.111-20151125064326/@comment-26391992-20151218151621\nTalk:Multi-cannon/@comment-71.198.118.111-20151125064326/@comment-93.222.120.94-20160212215223\nTalk:Multi-cannon/@comment-71.198.118.111-20151125064326/@comment-99.237.37.136-20160206224539\nTalk:Multi-cannon/@comment-74.90.92.146-20151003001024\nTalk:Multi-cannon/@comment-74.90.92.146-20151003001024/@comment-24.242.49.9-20151007050655\nTalk:Multi-cannon/@comment-76.174.128.26-20150130072857\nTalk:Multi-cannon/@comment-78.96.200.67-20150404150003\nTalk:Multi-cannon/@comment-78.96.200.67-20150404150003/@comment-122.58.32.79-20150421040617\nTalk:Multi-cannon/@comment-78.96.200.67-20150404150003/@comment-122.58.32.79-20150430061007\nTalk:Multi-cannon/@comment-78.96.200.67-20150404150003/@comment-26009169-20150421104100\nTalk:Multi-cannon/@comment-78.96.200.67-20150404150003/@comment-73.1.55.15-20150826041511\nTalk:Multi-cannon/@comment-79.67.253.32-20150111123507\nTalk:Multi-cannon/@comment-80.189.171.9-20141229112154\nTalk:Multi-cannon/@comment-80.189.171.9-20141229112154/@comment-24.239.93.107-20150509235631\nTalk:Multi-cannon/@comment-80.189.171.9-20141229112154/@comment-4968814-20141229191923\nTalk:Multi-cannon/@comment-80.189.171.9-20141229112154/@comment-88.112.91.114-20141229180927\nTalk:Multi-cannon/@comment-80.212.158.185-20150413191441\nTalk:Multi-cannon/@comment-80.212.158.185-20150413191441/@comment-156.3.54.202-20150427154727\nTalk:Multi-cannon/@comment-80.212.158.185-20150413191441/@comment-67.186.92.128-20150508050327\nTalk:Multi-cannon/@comment-80.212.158.185-20150413191441/@comment-73.53.96.176-20150503091521\nTalk:Multi-cannon/@comment-84.113.8.35-20140917214958\nTalk:Multi-cannon/@comment-84.113.8.35-20140917214958/@comment-66.249.83.162-20141110001452\nTalk:Multi-cannon/@comment-84.113.8.35-20140917214958/@comment-73.1.55.15-20150826041812\nTalk:Multi-cannon/@comment-84.245.27.111-20140830215037\nTalk:Multi-cannon/@comment-84.245.27.111-20140830215037/@comment-26048354-20150205104700\nTalk:Multi-cannon/@comment-84.245.27.111-20140830215037/@comment-99.229.244.4-20150221032141\nTalk:Multi-cannon/@comment-86.149.18.26-20150409195045\nTalk:Multi-cannon/@comment-86.149.18.26-20150409195045/@comment-73.1.55.15-20150826041359\nTalk:Multi-cannon/@comment-86.56.68.95-20150302234050\nTalk:Multi-cannon/@comment-86.56.68.95-20150302234050/@comment-26005414-20150307221142\nTalk:Multi-cannon/@comment-86.56.68.95-20150302234050/@comment-71.125.245.12-20150731195325\nTalk:Multi-cannon/@comment-86.56.68.95-20150302234050/@comment-92.227.54.97-20150314134542\nTalk:Multi-cannon/@comment-87.241.107.6-20160527235245\nTalk:Multi-cannon/@comment-87.241.107.6-20160527235245/@comment-84.146.218.55-20160528082244\nTalk:Multi-cannon/@comment-90.200.46.38-20181028103211\nTalk:Multi-cannon/@comment-90.200.46.38-20181028103211/@comment-26005414-20181029015616\nTalk:Multi-cannon/@comment-90.200.46.38-20181028103211/@comment-90.200.46.38-20181123020809\nTalk:Multi-cannon/@comment-90.200.46.38-20181028103211/@comment-90.200.49.195-20181217205422\nTalk:Multi-cannon/@comment-90.200.46.38-20181028103211/@comment-90.200.49.195-20181219222752\nTalk:Multi-cannon/@comment-90.200.46.38-20181121142249\nTalk:Multi-cannon/@comment-93.222.120.94-20160213084414\nTalk:Multi-cannon/@comment-93.222.120.94-20160213084414/@comment-192.136.175.219-20160223120527\nTalk:Multi-cannon/@comment-93.222.120.94-20160213084414/@comment-27032150-20160223133717\nTalk:Multi-cannon/@comment-98.167.235.4-20150820000946\nTalk:Multicrew/@comment-107.11.249.33-20170216204804\nTalk:Multicrew/@comment-109.19.208.139-20160722194731\nTalk:Multicrew/@comment-109.19.208.139-20160722194731/@comment-109.19.208.139-20160722194802\nTalk:Multicrew/@comment-12.5.54.135-20160111160529\nTalk:Multicrew/@comment-12.5.54.135-20160111160529/@comment-212.219.240.75-20160113134520\nTalk:Multicrew/@comment-120.156.87.126-20160807035700\nTalk:Multicrew/@comment-120.156.87.126-20160807040019\nTalk:Multicrew/@comment-120.156.87.126-20160807040019/@comment-208.180.123.195-20170123090402\nTalk:Multicrew/@comment-120.156.87.126-20160807040019/@comment-71.194.66.202-20160901051517\nTalk:Multicrew/@comment-120.156.87.126-20160807040612\nTalk:Multicrew/@comment-122.59.154.16-20161029135239\nTalk:Multicrew/@comment-130.226.70.85-20170305075912\nTalk:Multicrew/@comment-130.226.70.85-20170305075912/@comment-220.244.63.162-20170322235213\nTalk:Multicrew/@comment-130.226.70.85-20170305075912/@comment-79.67.194.48-20170305081226\nTalk:Multicrew/@comment-135.0.88.207-20170411230434\nTalk:Multicrew/@comment-135.0.88.207-20170411230434/@comment-30928085-20170412002401\nTalk:Multicrew/@comment-172.88.243.38-20170414061444\nTalk:Multicrew/@comment-172.88.243.38-20170414061444/@comment-172.88.243.38-20170414063106\nTalk:Multicrew/@comment-173.30.161.210-20170508012113\nTalk:Multicrew/@comment-173.30.161.210-20170508012113/@comment-94.213.251.41-20170513144349\nTalk:Multicrew/@comment-173.30.161.210-20170508012113/@comment-98.232.151.219-20180915175622\nTalk:Multicrew/@comment-173.79.92.219-20161028192851\nTalk:Multicrew/@comment-173.79.92.219-20161028192851/@comment-109.155.96.86-20170220181256\nTalk:Multicrew/@comment-173.79.92.219-20161028192851/@comment-192.136.161.156-20161028204629\nTalk:Multicrew/@comment-173.79.92.219-20161028192851/@comment-67.193.229.113-20170209040949\nTalk:Multicrew/@comment-173.79.92.219-20161028192851/@comment-98.236.173.203-20170306053402\nTalk:Multicrew/@comment-176.26.233.188-20170422001928\nTalk:Multicrew/@comment-176.26.233.188-20170422001928/@comment-2604:2D80:8403:C35F:68AF:3F8A:B84F:C6FC-20170724234943\nTalk:Multicrew/@comment-188.126.171.68-20161207022218\nTalk:Multicrew/@comment-188.126.171.68-20161207022218/@comment-173.198.110.58-20161221195304\nTalk:Multicrew/@comment-188.126.171.68-20161207022218/@comment-192.136.161.52-20161207035931\nTalk:Multicrew/@comment-2.155.241.228-20170323191603\nTalk:Multicrew/@comment-2.155.241.228-20170323191603/@comment-220.244.63.162-20170324011134\nTalk:Multicrew/@comment-2.30.147.75-20160812130936\nTalk:Multicrew/@comment-213.89.72.142-20161119192951\nTalk:Multicrew/@comment-213.89.72.142-20161119192951/@comment-70.176.249.91-20161121235702\nTalk:Multicrew/@comment-24.18.127.9-20170419195930\nTalk:Multicrew/@comment-2601:246:4101:3100:FC55:A685:DB57:ACC0-20180828234637\nTalk:Multicrew/@comment-2601:246:4101:3100:FC55:A685:DB57:ACC0-20180828234637/@comment-98.232.151.219-20180915175226\nTalk:Multicrew/@comment-2605:E000:1B05:55C8:BD1B:F218:6565:9833-20190513214907\nTalk:Multicrew/@comment-26476653-20160528105403\nTalk:Multicrew/@comment-41.50.84.56-20181109211629\nTalk:Multicrew/@comment-50.24.185.109-20160512200131\nTalk:Multicrew/@comment-54.240.197.235-20160815091434\nTalk:Multicrew/@comment-54.240.197.235-20160815091434/@comment-24.156.204.195-20160818000629\nTalk:Multicrew/@comment-54.240.197.235-20160815091434/@comment-50.65.89.52-20160823005847\nTalk:Multicrew/@comment-64.113.173.176-20160921180530\nTalk:Multicrew/@comment-66.109.235.218-20170113183328\nTalk:Multicrew/@comment-66.109.235.218-20170113183328/@comment-112.210.148.121-20170521194531\nTalk:Multicrew/@comment-66.109.235.218-20170113183328/@comment-2155082-20170712195739\nTalk:Multicrew/@comment-66.109.235.218-20170113183328/@comment-31510018-20170314191555\nTalk:Multicrew/@comment-66.109.235.218-20170113183328/@comment-68.144.204.5-20170712062039\nTalk:Multicrew/@comment-68.108.171.200-20160616030058\nTalk:Multicrew/@comment-68.108.171.200-20160616030058/@comment-71.194.66.202-20160901051616\nTalk:Multicrew/@comment-68.191.8.86-20180126205353\nTalk:Multicrew/@comment-68.191.8.86-20180126205353/@comment-192.136.161.33-20180126214908\nTalk:Multicrew/@comment-68.191.8.86-20180126205353/@comment-192.136.161.33-20180221141034\nTalk:Multicrew/@comment-68.191.8.86-20180126205353/@comment-192.136.161.33-20180409143732\nTalk:Multicrew/@comment-68.191.8.86-20180126205353/@comment-209.201.36.148-20180409104301\nTalk:Multicrew/@comment-68.191.8.86-20180126205353/@comment-68.191.8.86-20180221000528\nTalk:Multicrew/@comment-73.31.66.93-20170511224745\nTalk:Multicrew/@comment-73.31.66.93-20170511224745/@comment-34641605-20180626005759\nTalk:Multicrew/@comment-73.31.66.93-20170511224745/@comment-82.16.43.241-20170514004528\nTalk:Multicrew/@comment-73.31.66.93-20170511224745/@comment-94.213.251.41-20170513144337\nTalk:Multicrew/@comment-73.4.148.119-20161209131425\nTalk:Multicrew/@comment-73.4.148.119-20161209131425/@comment-199.115.89.26-20161228180302\nTalk:Multicrew/@comment-74.102.103.177-20161203234835\nTalk:Multicrew/@comment-78.194.13.113-20180708163441\nTalk:Multicrew/@comment-78.194.13.113-20180708163441/@comment-2001:7E8:D413:CC01:24FA:7F4:1CCA:8154-20180714031533\nTalk:Multicrew/@comment-84.3.175.207-20170207144948\nTalk:Multicrew/@comment-84.3.175.207-20170207144948/@comment-198.105.28.77-20170306053136\nTalk:Multicrew/@comment-84.3.175.207-20170207144948/@comment-2.155.241.228-20170323191112\nTalk:Multicrew/@comment-84.3.175.207-20170207144948/@comment-67.193.229.113-20170209042318\nTalk:Multicrew/@comment-86.158.84.220-20160806142734\nTalk:Multicrew/@comment-90.200.46.38-20181125215020\nTalk:Multicrew/@comment-90.200.46.38-20181125215020/@comment-192.136.170.98-20181125223735\nTalk:Multicrew/@comment-91.141.3.77-20170417144131\nTalk:Multicrew/@comment-91.141.3.77-20170417144131/@comment-2605:E000:308A:E500:282A:A32:718:96A7-20180109020751\nTalk:Multicrew/@comment-94.14.122.39-20180922101555\nTalk:Multicrew/@comment-94.14.122.39-20180922101555/@comment-98.232.151.219-20180924032949\nTalk:Multicrew/@comment-98.232.151.219-20180924034132\nTalk:Multicrew/@comment-99.232.83.19-20160901022751\nTalk:Multicrew/@comment-99.232.83.19-20160901022751/@comment-2155082-20160901023934\nTalk:Musgravite/@comment-2003:C1:8F42:6F00:A528:499D:C2AA:D987-20200207191931\nTalk:Mycoid/@comment-2003:DF:8BD4:6200:6002:7809:259A:489D-20171112005748\nTalk:Mycoid/@comment-2003:DF:8BD4:6200:6002:7809:259A:489D-20171112005748/@comment-30928085-20171112021814\nTalk:Narcotics/@comment-186.151.60.166-20150203200006\nTalk:Narcotics/@comment-186.151.60.166-20150203200006/@comment-124.170.207.203-20150208002241\nTalk:Narcotics/@comment-5.49.48.74-20160822161947\nTalk:Narcotics/@comment-5.49.48.74-20160822161947/@comment-90.200.46.38-20181106230406\nTalk:Narcotics/@comment-5.49.48.74-20160822161947/@comment-94.12.31.80-20170707195802\nTalk:Narcotics/@comment-90.217.129.100-20150221134805\nTalk:Narcotics/@comment-90.217.129.100-20150221134805/@comment-176.25.248.74-20151219130632\nTalk:Narcotics/@comment-90.217.129.100-20150221134805/@comment-90.206.55.152-20150611121626\nTalk:Narwhal Liner/@comment-192.136.174.152-20160304123942\nTalk:Narwhal Liner/@comment-192.136.174.152-20160304123942/@comment-5.198.11.99-20170115063930\nTalk:Narwhal Liner/@comment-26227424-20160704131239\nTalk:Narwhal Liner/@comment-99.135.98.174-20160304025435\nTalk:Narwhal Liner/@comment-99.135.98.174-20160304025435/@comment-59.102.31.199-20170704090018\nTalk:Nav Beacon/@comment-26350856-20151017032505\nTalk:Nav Beacon/@comment-26350856-20151017032505/@comment-71.90.103.106-20151208022109\nTalk:Nav Beacon/@comment-31178037-20170204190528\nTalk:Nav Beacon/@comment-31178037-20170204190528/@comment-31178037-20170318093147\nTalk:Nav Beacon/@comment-31178037-20170204190528/@comment-99.95.4.38-20170315170438\nTalk:Nav Beacon/@comment-78.194.13.113-20180622151235\nTalk:Nav Beacon/@comment-78.194.13.113-20180622151235/@comment-1201546-20200613012332\nTalk:Nav Beacon/@comment-78.194.13.113-20180622151235/@comment-46262536-20200704145512\nTalk:Nebula/@comment-30643772-20180920185136\nTalk:Nebula/@comment-30643772-20180920185136/@comment-90.200.46.38-20181119152402\nTalk:Nebula/@comment-72.16.0.10-20181104195811\nTalk:Nebula/@comment-72.16.0.10-20181104195811/@comment-44180665-20200429163754\nTalk:Neofabric Insulation/@comment-109.57.195.210-20181027134110\nTalk:Neofabric Insulation/@comment-141.70.21.163-20180325185311\nTalk:Neofabric Insulation/@comment-141.70.21.163-20180325185311/@comment-29844362-20180326014107\nTalk:Neofabric Insulation/@comment-141.70.21.163-20180325185311/@comment-83.217.131.5-20180401040128\nTalk:Neofabric Insulation/@comment-77.7.102.172-20180905192127\nTalk:Neofabric Insulation/@comment-95.90.188.188-20181104151123\nTalk:Neritus Berries/@comment-28469459-20160515214605\nTalk:Nerve Agents/@comment-27438283-20151220220821\nTalk:Nerve Agents/@comment-27438283-20151220220821/@comment-78.232.201.196-20160831221857\nTalk:Nerve Agents/@comment-28111970-20160402085703\nTalk:Nerve Agents/@comment-28111970-20160402085703/@comment-95.91.228.58-20160406021411\nTalk:Nestor Cartesius/@comment-162.229.210.182-20180420133305\nTalk:Nestor Cartesius/@comment-162.229.210.182-20180420133305/@comment-5189247-20180420153832\nTalk:New Horizons/@comment-26247073-20180422180421\nTalk:New Horizons/@comment-26247073-20180422180421/@comment-151.177.223.22-20181004230734\nTalk:New Horizons/@comment-26247073-20180422180421/@comment-188.238.200.246-20180518085228\nTalk:New Horizons/@comment-26247073-20180422180421/@comment-2A01:CB08:8B92:7100:E05E:C21A:98BF:2AA4-20180706005057\nTalk:New Horizons/@comment-26247073-20180422180421/@comment-30928085-20180423052753\nTalk:New Horizons/@comment-26247073-20180422180421/@comment-90.200.46.38-20181101192619\nTalk:New Horizons/@comment-4213394-20191016194929\nTalk:New Horizons/@comment-92.234.69.106-20181204104531\nTalk:Ngadandari Fire Opals/@comment-187.67.3.61-20180112212222\nTalk:Ngadandari Fire Opals/@comment-72.224.237.155-20150305142841\nTalk:Ngadandari Fire Opals/@comment-86.20.14.215-20150301214730\nTalk:Nguna Modern Antiques/@comment-77.50.26.143-20160814202646\nTalk:Nickel/@comment-141.226.218.85-20170511102913\nTalk:Nickel/@comment-24.183.99.192-20161111174921\nTalk:Nickel/@comment-24.183.99.192-20161111174921/@comment-192.136.161.52-20161111180911\nTalk:Nickel/@comment-58.160.174.240-20160812052944\nTalk:Nickel/@comment-58.160.174.240-20160812052944/@comment-58.160.174.240-20160812053034\nTalk:Night Vision/@comment-2001:8003:8C91:3200:AD7E:9B06:4E4E:6A8-20190115030703\nTalk:Night Vision/@comment-2001:8003:8C91:3200:AD7E:9B06:4E4E:6A8-20190115030703/@comment-192.136.170.98-20190115042258\nTalk:Niobium/@comment-81.231.110.150-20190211165534\nTalk:Niobium/@comment-81.231.110.150-20190211165534/@comment-8.22.109.75-20190325173400\nTalk:Njangari Saddles/@comment-77.50.26.143-20160814202748\nTalk:Non-Human Signal Source/@comment-119.28.66.195-20181216185646\nTalk:Non-Human Signal Source/@comment-168.99.197.15-20180208214619\nTalk:Non-Human Signal Source/@comment-168.99.197.15-20180208214645\nTalk:Non-Human Signal Source/@comment-168.99.197.15-20180208214655\nTalk:Non-Human Signal Source/@comment-2001:8A0:65B3:7C00:7073:AB83:DF1:A832-20191023052423\nTalk:Non-Human Signal Source/@comment-216.164.232.183-20180131193701\nTalk:Non-Human Signal Source/@comment-216.164.232.183-20180131193701/@comment-34641605-20180829215435\nTalk:Non-Human Signal Source/@comment-2601:7C0:4100:BBCC:D51B:C333:191D:84BB-20180319200208\nTalk:Non-Human Signal Source/@comment-2601:7C0:4100:BBCC:D51B:C333:191D:84BB-20180319200208/@comment-61.90.6.181-20180908154152\nTalk:Non-Human Signal Source/@comment-49.183.154.208-20190310185625\nTalk:Non-Human Signal Source/@comment-49.183.154.208-20190310190609\nTalk:Non-Human Signal Source/@comment-66.71.248.233-20181231174145\nTalk:Non Euclidian Exotanks/@comment-101.188.162.9-20160820161103\nTalk:Non Euclidian Exotanks/@comment-27283317-20151202193445\nTalk:Non Euclidian Exotanks/@comment-77.50.26.143-20160814211126\nTalk:Notoriety/@comment-104.240.110.2-20180401221229\nTalk:Notoriety/@comment-159.118.98.41-20180329214829\nTalk:Notoriety/@comment-173.172.165.176-20180506081027\nTalk:Notoriety/@comment-174.0.183.254-20190606090957\nTalk:Notoriety/@comment-174.0.183.254-20190606090957/@comment-2003:DB:F709:7F8C:D814:C71E:76B4:DF41-20200119133243\nTalk:Notoriety/@comment-176.63.143.249-20180324140855\nTalk:Notoriety/@comment-176.63.143.249-20180324140855/@comment-104.240.110.2-20180327172328\nTalk:Notoriety/@comment-176.63.143.249-20180324140855/@comment-49.196.168.218-20180326132605\nTalk:Notoriety/@comment-180.235.3.248-20180302160240\nTalk:Notoriety/@comment-180.235.3.248-20180302160240/@comment-104.240.110.2-20180328071029\nTalk:Notoriety/@comment-180.235.3.248-20180302160240/@comment-34870057-20180304224742\nTalk:Notoriety/@comment-2001:8003:4084:6300:916:32B6:7772:AB0-20180319121735\nTalk:Notoriety/@comment-2001:8003:4084:6300:916:32B6:7772:AB0-20180319121735/@comment-2600:6C55:4800:77:0:DD0E:A0AD:F962-20180425032627\nTalk:Notoriety/@comment-2001:8003:4084:6300:916:32B6:7772:AB0-20180319121735/@comment-74.65.150.191-20180322154021\nTalk:Notoriety/@comment-2096048-20180309115948\nTalk:Notoriety/@comment-212.159.19.208-20180409153409\nTalk:Notoriety/@comment-216.167.241.36-20180428052800\nTalk:Notoriety/@comment-216.167.241.36-20180428052800/@comment-193.236.59.48-20180504143804\nTalk:Notoriety/@comment-216.167.241.36-20180428052800/@comment-2003:DB:F709:7F8C:D814:C71E:76B4:DF41-20200119132249\nTalk:Notoriety/@comment-216.167.241.36-20180428052800/@comment-80.129.36.129-20180429074026\nTalk:Notoriety/@comment-23.119.49.171-20180304224224\nTalk:Notoriety/@comment-23.119.49.171-20180304224224/@comment-34870057-20180304224558\nTalk:Notoriety/@comment-2406:E000:405F:1:60A0:14:733D:C809-20180410084635\nTalk:Notoriety/@comment-2406:E000:405F:1:60A0:14:733D:C809-20180410084635/@comment-2003:DB:F709:7F8C:D814:C71E:76B4:DF41-20200119132452\nTalk:Notoriety/@comment-2406:E000:405F:1:60A0:14:733D:C809-20180410084635/@comment-45311392-20200419165007\nTalk:Notoriety/@comment-2406:E000:405F:1:60A0:14:733D:C809-20180410084635/@comment-77.103.203.34-20180530112359\nTalk:Notoriety/@comment-2600:1700:4B90:26F0:85B8:74C8:C82:2152-20180923035126\nTalk:Notoriety/@comment-2600:1700:ED41:4B60:5C6E:C564:2470:BB1E-20180422234510\nTalk:Notoriety/@comment-2600:1700:F8C0:FB80:840E:C7EC:6656:8077-20190602034332\nTalk:Notoriety/@comment-2600:1700:F8C0:FB80:840E:C7EC:6656:8077-20190602034332/@comment-192.136.172.44-20190731025954\nTalk:Notoriety/@comment-2600:1700:F8C0:FB80:840E:C7EC:6656:8077-20190602034332/@comment-2003:DB:F709:7F8C:D814:C71E:76B4:DF41-20200119130203\nTalk:Notoriety/@comment-2600:1700:F8C0:FB80:840E:C7EC:6656:8077-20190602034332/@comment-2003:DB:F709:7F8C:D814:C71E:76B4:DF41-20200119130349\nTalk:Notoriety/@comment-2600:1700:F8C0:FB80:840E:C7EC:6656:8077-20190602034332/@comment-2003:DB:F709:7F8C:D814:C71E:76B4:DF41-20200119131106\nTalk:Notoriety/@comment-2600:1700:F8C0:FB80:840E:C7EC:6656:8077-20190602034332/@comment-2600:6C46:6800:3915:CD39:68EE:3FA:DC6F-20190727114616\nTalk:Notoriety/@comment-2600:1700:F8C0:FB80:840E:C7EC:6656:8077-20190602034332/@comment-44278296-20200215232529\nTalk:Notoriety/@comment-2601:80:C101:2BC8:2032:A8EC:C2A6:F099-20180901033931\nTalk:Notoriety/@comment-2601:80:C101:2BC8:2032:A8EC:C2A6:F099-20180901033931/@comment-2601:190:4300:685E:1513:3234:5E6B:F05D-20180916000711\nTalk:Notoriety/@comment-2601:80:C101:2BC8:2032:A8EC:C2A6:F099-20180901033931/@comment-35385031-20181208142145\nTalk:Notoriety/@comment-2601:80:C101:2BC8:2032:A8EC:C2A6:F099-20180901033931/@comment-69.165.220.242-20181106001525\nTalk:Notoriety/@comment-2601:80:C101:2BC8:2032:A8EC:C2A6:F099-20180901033931/@comment-74.249.114.2-20181202223340\nTalk:Notoriety/@comment-2605:A000:161A:4494:C96F:BA5:2E1B:8AA5-20180721230346\nTalk:Notoriety/@comment-2605:A000:161A:4494:C96F:BA5:2E1B:8AA5-20180721230346/@comment-2605:A000:161A:4494:C96F:BA5:2E1B:8AA5-20180721230517\nTalk:Notoriety/@comment-2605:A000:161A:4494:C96F:BA5:2E1B:8AA5-20180721230346/@comment-74.249.114.2-20181202224027\nTalk:Notoriety/@comment-2607:FCC8:9ACA:8700:5D57:E183:62FA:7CA1-20180313014557\nTalk:Notoriety/@comment-2A02:120B:2C17:1980:1077:96C8:FCE2:2B14-20180301170759\nTalk:Notoriety/@comment-2A02:120B:2C17:1980:1077:96C8:FCE2:2B14-20180301170759/@comment-104.240.110.2-20180328070805\nTalk:Notoriety/@comment-2A02:120B:2C17:1980:1077:96C8:FCE2:2B14-20180301170759/@comment-46.109.195.98-20180301180155\nTalk:Notoriety/@comment-2A02:8108:2EBF:EBEC:95A:122D:50D6:771-20180526084105\nTalk:Notoriety/@comment-2A02:C7F:2207:BD00:D9A2:E71A:5220:1008-20180308135218\nTalk:Notoriety/@comment-34934046-20180308030341\nTalk:Notoriety/@comment-34951325-20180309233953\nTalk:Notoriety/@comment-34951325-20180309233953/@comment-168.228.99.16-20180313061052\nTalk:Notoriety/@comment-35530485-20180508195326\nTalk:Notoriety/@comment-35530485-20180508195326/@comment-2A00:7660:AC7:0:C15F:BF6D:EBA1:AA68-20180702093506\nTalk:Notoriety/@comment-35530485-20180508195326/@comment-77.103.203.34-20180530112228\nTalk:Notoriety/@comment-37951043-20190510134455\nTalk:Notoriety/@comment-45751659-20200510231553\nTalk:Notoriety/@comment-51.6.74.117-20180304233232\nTalk:Notoriety/@comment-51.6.74.117-20180304234624\nTalk:Notoriety/@comment-68.201.9.182-20180301235938\nTalk:Notoriety/@comment-68.201.9.182-20180301235938/@comment-34870057-20180302142658\nTalk:Notoriety/@comment-70.112.232.28-20180315004642\nTalk:Notoriety/@comment-70.112.232.28-20180315004642/@comment-185.153.179.29-20180321184252\nTalk:Notoriety/@comment-70.112.232.28-20180315004642/@comment-185.161.57.229-20180321094248\nTalk:Notoriety/@comment-70.112.232.28-20180315004642/@comment-2600:1700:EF50:4810:D45A:E317:4FD7:59AD-20180315150607\nTalk:Notoriety/@comment-70.112.232.28-20180315004642/@comment-70.112.232.28-20180315010327\nTalk:Notoriety/@comment-70.112.232.28-20180315010719\nTalk:Notoriety/@comment-70.112.232.28-20180315010719/@comment-104.240.110.2-20180327172037\nTalk:Notoriety/@comment-70.112.232.28-20180315010719/@comment-185.161.57.229-20180321092632\nTalk:Notoriety/@comment-70.122.99.133-20180329002822\nTalk:Notoriety/@comment-71.219.194.220-20181212035116\nTalk:Notoriety/@comment-71.219.194.220-20181212035116/@comment-192.136.170.98-20181212154448\nTalk:Notoriety/@comment-71.7.131.23-20180628072602\nTalk:Notoriety/@comment-71.7.131.23-20180628072602/@comment-2003:DB:F709:7F8C:D814:C71E:76B4:DF41-20200119131851\nTalk:Notoriety/@comment-71.7.131.23-20180628072602/@comment-2607:F2C0:94DE:9600:7CCA:18A2:31EC:3634-20181102001141\nTalk:Notoriety/@comment-74.249.114.2-20181202224241\nTalk:Notoriety/@comment-77.20.252.143-20190104192244\nTalk:Notoriety/@comment-77.20.252.143-20190104192244/@comment-2003:DB:F709:7F8C:D814:C71E:76B4:DF41-20200119130749\nTalk:Notoriety/@comment-77.20.252.143-20190104192244/@comment-2600:6C4E:F7F:FB10:49D5:CCA8:D49:4DE0-20190722041729\nTalk:Notoriety/@comment-77.20.252.143-20190104192244/@comment-45311392-20200419160423\nTalk:Notoriety/@comment-77.23.100.109-20180302174951\nTalk:Notoriety/@comment-77.23.100.109-20180302174951/@comment-35385031-20181208143142\nTalk:Notoriety/@comment-79.18.194.96-20180409190230\nTalk:Notoriety/@comment-79.18.194.96-20180409190853\nTalk:Notoriety/@comment-79.18.194.96-20180409190853/@comment-73.38.127.210-20180426145442\nTalk:Notoriety/@comment-79.18.194.96-20180409190853/@comment-77.103.203.34-20180530112453\nTalk:Notoriety/@comment-80.129.36.129-20180502114151\nTalk:Notoriety/@comment-80.129.36.129-20180502114151/@comment-2605:A000:161A:4494:C96F:BA5:2E1B:8AA5-20180721231007\nTalk:Notoriety/@comment-82.41.225.183-20181204025926\nTalk:Notoriety/@comment-89.98.182.81-20190430220257\nTalk:Notoriety/@comment-90.254.73.135-20180521230028\nTalk:Notoriety/@comment-92.20.54.80-20180505104219\nTalk:Notoriety/@comment-92.20.54.80-20180505104219/@comment-26935004-20180714234532\nTalk:Notoriety/@comment-92.205.53.133-20180308140537\nTalk:Notoriety/@comment-96.241.153.129-20180317022847\nTalk:Notoriety/@comment-96.241.153.129-20180317022847/@comment-27.252.226.3-20180502081012\nTalk:Notoriety/@comment-99.255.34.27-20191221115657\nTalk:Notoriety/@comment-99.255.34.27-20191221115657/@comment-73.121.32.19-20200217152114\nTalk:Nova Imperium/@comment-109.81.208.16-20191122041658\nTalk:Nova Imperium/@comment-176.78.158.9-20190513033023\nTalk:Nova Imperium/@comment-2001:14BA:800E:7C01:304F:D9E0:FEC6:878-20190226154002\nTalk:Nova Imperium/@comment-2001:14BA:800E:7C01:304F:D9E0:FEC6:878-20190226154002/@comment-2001:14BA:800E:7C01:304F:D9E0:FEC6:878-20190226154048\nTalk:Nova Imperium/@comment-27069392-20200729120107\nTalk:Nova Imperium/@comment-2C0F:F038:204:5C00:A88D:1614:1632:8C77-20181222113406\nTalk:Nova Imperium/@comment-4986699-20191116172940\nTalk:Nova Imperium/@comment-73.254.38.86-20190110192300\nTalk:Nova Imperium/@comment-78.231.173.241-20190111154609\nTalk:Nova Imperium/@comment-78.231.173.241-20190111161111\nTalk:Nvidia Geforce GTX Titan Black/@comment-1028741-20151028015850\nTalk:Nvidia Geforce GTX Titan Black/@comment-1028741-20151028015850/@comment-1028741-20151124010949\nTalk:Nvidia Geforce GTX Titan Black/@comment-71.164.113.67-20150724013036\nTalk:Nvidia Geforce GTX Titan Black/@comment-71.164.113.67-20150724013036/@comment-2001:56A:7760:D800:C4BC:4840:5CFB:B68E-20180831030015\nTalk:Nvidia Geforce GTX Titan Black/@comment-71.164.113.67-20150724013036/@comment-4555143-20150724021325\nTalk:Obsidian Orbital/@comment-91.66.38.2-20180718183748\nTalk:Occupied CryoPod/@comment-108.180.120.86-20150915192403\nTalk:Occupied CryoPod/@comment-27115814-20151128075044\nTalk:Occupied CryoPod/@comment-27115814-20151128075044/@comment-174.24.238.158-20151205033800\nTalk:Occupied CryoPod/@comment-41.220.213.38-20150920153358\nTalk:Occupied CryoPod/@comment-41.220.213.38-20150920153358/@comment-5959508-20151230224514\nTalk:Occupied CryoPod/@comment-41.220.213.38-20150920153358/@comment-67.187.72.103-20151230223054\nTalk:Occupied CryoPod/@comment-67.161.218.143-20150912051005\nTalk:Occupied CryoPod/@comment-84.138.86.36-20151213113528\nTalk:Occupied CryoPod/@comment-84.138.86.36-20151213113528/@comment-26009169-20151213140446\nTalk:Occupied CryoPod/@comment-99.247.201.55-20151012075123\nTalk:Occupied CryoPod/@comment-99.247.201.55-20151012075123/@comment-26537865-20151015203444\nTalk:Occupied Escape Pod/@comment-109.252.67.177-20160828111127\nTalk:Occupied Escape Pod/@comment-109.252.67.177-20160828111127/@comment-188.176.126.19-20161126213418\nTalk:Occupied Escape Pod/@comment-156.57.233.221-20181220110405\nTalk:Occupied Escape Pod/@comment-2003:DB:23C0:3700:185B:2053:9A35:5F4B-20181126155103\nTalk:Occupied Escape Pod/@comment-2003:DB:23C0:3700:185B:2053:9A35:5F4B-20181126155103/@comment-2601:151:8200:A590:988:284:C997:2611-20181226230859\nTalk:Occupied Escape Pod/@comment-2003:DB:23C0:3700:185B:2053:9A35:5F4B-20181126155103/@comment-80.134.43.83-20200215160445\nTalk:Occupied Escape Pod/@comment-2003:DB:23C0:3700:185B:2053:9A35:5F4B-20181126155103/@comment-80.134.43.83-20200215161527\nTalk:Occupied Escape Pod/@comment-213.204.238.131-20180828222825\nTalk:Occupied Escape Pod/@comment-216.167.241.36-20180501200053\nTalk:Occupied Escape Pod/@comment-216.167.241.36-20180501200053/@comment-2601:545:C701:9586:E974:CE58:8D8F:AD-20190207210809\nTalk:Occupied Escape Pod/@comment-27115814-20151128075228\nTalk:Occupied Escape Pod/@comment-27115814-20151128075228/@comment-2.120.186.137-20151223170642\nTalk:Occupied Escape Pod/@comment-27545574-20160105211249\nTalk:Occupied Escape Pod/@comment-27545574-20160105211249/@comment-2605:6000:E8C1:2C00:4494:6CF4:5262:9147-20180317205602\nTalk:Occupied Escape Pod/@comment-27545574-20160105211249/@comment-81.140.232.49-20170409002602\nTalk:Occupied Escape Pod/@comment-34004391-20180130122613\nTalk:Occupied Escape Pod/@comment-36352121-20200105102457\nTalk:Occupied Escape Pod/@comment-80.134.43.83-20200215162600\nTalk:Occupied Escape Pod/@comment-93.106.39.48-20151119112353\nTalk:Occupied Escape Pod/@comment-93.106.39.48-20151119112353/@comment-217.46.67.248-20151120224824\nTalk:Occupied Escape Pod/@comment-93.106.39.48-20151119112353/@comment-27311754-20151205130343\nTalk:Ocellus/@comment-124.187.84.136-20150608151727\nTalk:Ocellus/@comment-26074478-20150204123435\nTalk:Ocellus/@comment-36352121-20190123184302\nTalk:Ocellus/@comment-36352121-20190123184302/@comment-43830134-20200102175625\nTalk:Ocellus/@comment-87.112.50.180-20150130180939\nTalk:Ocellus/@comment-87.112.50.180-20150130180939/@comment-167655-20170828204250\nTalk:Ochoeng Chillies/@comment-77.50.26.143-20160930211711\nTalk:Ochoeng Chillies/@comment-79.45.174.1-20150802174952\nTalk:Octahedral Pod/@comment-39085855-20200228184119\nTalk:Oevasy SG-Y d0/@comment-110.21.8.62-20181103104452\nTalk:Oevasy SG-Y d0/@comment-110.21.8.62-20181103104452/@comment-151.27.82.139-20190413133327\nTalk:Oevasy SG-Y d0/@comment-110.21.8.62-20181103104452/@comment-2A01:4B00:8405:E300:7ACA:39FF:FEBA:F5EB-20190802205451\nTalk:Oevasy SG-Y d0/@comment-110.21.8.62-20181103104452/@comment-81.219.29.241-20181227230351\nTalk:Oevasy SG-Y d0/@comment-110.21.8.62-20181103104452/@comment-91.110.45.226-20190822163151\nTalk:Oevasy SG-Y d0/@comment-110.21.8.62-20181103104452/@comment-93.76.190.38-20190528173230\nTalk:Oevasy SG-Y d0/@comment-189.203.174.144-20190503035115\nTalk:Omega Company/@comment-24510264-20200814031817\nTalk:Omega Company/@comment-68.110.91.165-20181005063355\nTalk:On-going Development Of Horizons/@comment-2607:FEA8:7D1F:E5C0:A0F5:2E35:3EE2:5154-20171004075548\nTalk:Onion Head/@comment-199.201.64.129-20150922062503\nTalk:Onion Head/@comment-69.141.172.169-20150927204208\nTalk:Onion Head/@comment-69.141.172.169-20150927204208/@comment-73.161.212.80-20151119173925\nTalk:Onion Head/@comment-86.151.194.46-20151122165627\nTalk:Onion Head/@comment-99.100.68.108-20151025202716\nTalk:Onionhead Beta Strain/@comment-72.186.61.7-20180307223940\nTalk:Onionhead Beta Strain/@comment-72.186.61.7-20180307223940/@comment-27283317-20180410010900\nTalk:Open Symmetric Keys/@comment-2003:8F:6F0F:4D99:2D3C:4BF1:2950:F59E-20180421170905\nTalk:Open Symmetric Keys/@comment-82.181.72.235-20180328153430\nTalk:Open Symmetric Keys/@comment-82.181.72.235-20180328153430/@comment-186.3.166.247-20180405210405\nTalk:Ophiuch Exino Artefacts/@comment-26014491-20151122231547\nTalk:Ophiuch Exino Artefacts/@comment-26014491-20151122231547/@comment-70.140.39.131-20160128113553\nTalk:Ophiuch Exino Artefacts/@comment-26014491-20151122231547/@comment-70.140.39.131-20160128113645\nTalk:Orbis/@comment-124.187.84.136-20150608151446\nTalk:Orbis/@comment-25803634-20180719034807\nTalk:Orbis/@comment-25803634-20180719034807/@comment-90.200.46.38-20181120185546\nTalk:Orbis/@comment-31094186-20170904220903\nTalk:Orbis/@comment-31094186-20170904220903/@comment-195.181.196.144-20171218084321\nTalk:Orbis/@comment-92.75.92.22-20160102122928\nTalk:Orbital Cruise/@comment-153.46.105.98-20151228094055\nTalk:Orbital Cruise/@comment-28138495-20180225032456\nTalk:Orbital Cruise/@comment-28138495-20180225032456/@comment-2601:600:9500:4880:B03C:EC5D:BE82:5FD6-20181009030256\nTalk:Orbital Junction/@comment-44180665-20200522160522\nTalk:Orbital Junction/@comment-71.202.29.10-20150916073538\nTalk:Orca/@comment-101.181.165.222-20150906154524\nTalk:Orca/@comment-118.93.237.4-20181218230734\nTalk:Orca/@comment-11990868-20150115131634\nTalk:Orca/@comment-12.5.54.135-20151203154902\nTalk:Orca/@comment-12.5.54.135-20151203154902/@comment-87.104.144.99-20151209225720\nTalk:Orca/@comment-143.214.2.4-20150925162215\nTalk:Orca/@comment-156.3.54.203-20150602204203\nTalk:Orca/@comment-156.3.54.203-20150602204203/@comment-11990868-20150707215205\nTalk:Orca/@comment-156.3.54.203-20150602204203/@comment-156.3.54.203-20150608211153\nTalk:Orca/@comment-156.3.54.203-20150602204203/@comment-90.221.134.174-20150607004448\nTalk:Orca/@comment-169.231.127.26-20180710171954\nTalk:Orca/@comment-169.231.127.26-20180710171954/@comment-192.136.170.98-20181211161601\nTalk:Orca/@comment-172.58.201.251-20170820032047\nTalk:Orca/@comment-172.58.201.251-20170820032047/@comment-192.136.161.33-20170820142922\nTalk:Orca/@comment-173.31.85.46-20150122050928\nTalk:Orca/@comment-173.31.85.46-20150122050928/@comment-88.115.190.42-20150425073035\nTalk:Orca/@comment-174.109.186.40-20160303222307\nTalk:Orca/@comment-184.175.29.85-20171009081527\nTalk:Orca/@comment-185.12.218.153-20150121205955\nTalk:Orca/@comment-188.238.189.126-20170501175842\nTalk:Orca/@comment-192.136.161.33-20171108043525\nTalk:Orca/@comment-192.136.163.15-20180605131812\nTalk:Orca/@comment-192.136.163.15-20180605131812/@comment-192.136.163.15-20180605172540\nTalk:Orca/@comment-192.136.163.15-20180605131812/@comment-25527827-20180605154450\nTalk:Orca/@comment-192.195.66.3-20171003192450\nTalk:Orca/@comment-192.195.66.3-20171003192450/@comment-192.136.161.33-20171005122258\nTalk:Orca/@comment-205.206.72.126-20150831170927\nTalk:Orca/@comment-207.81.21.65-20190107182932\nTalk:Orca/@comment-207.81.21.65-20190107182932/@comment-165.225.81.26-20190528112758\nTalk:Orca/@comment-213.128.227.193-20171121153623\nTalk:Orca/@comment-213.128.227.193-20171121153623/@comment-192.136.161.33-20171121204325\nTalk:Orca/@comment-24.45.93.5-20150225233649\nTalk:Orca/@comment-24.45.93.5-20150225233649/@comment-12138097-20150225234453\nTalk:Orca/@comment-24.45.93.5-20150225233649/@comment-72.24.18.61-20150520211252\nTalk:Orca/@comment-24.45.93.5-20150225233649/@comment-82.24.105.102-20150414164658\nTalk:Orca/@comment-24.99.224.197-20150217171121\nTalk:Orca/@comment-24.99.224.197-20150217171121/@comment-209.91.107.153-20150316233409\nTalk:Orca/@comment-24.99.224.197-20150217171121/@comment-62.31.177.227-20150305200105\nTalk:Orca/@comment-24.99.224.197-20150217171121/@comment-78.209.96.105-20150320095740\nTalk:Orca/@comment-26048696-20150203142952\nTalk:Orca/@comment-26048696-20150203142952/@comment-62.31.177.227-20150305195932\nTalk:Orca/@comment-26048696-20150203142952/@comment-82.36.112.212-20150222215310\nTalk:Orca/@comment-26048696-20150203142952/@comment-92.92.161.94-20150212173038\nTalk:Orca/@comment-26048696-20150203142952/@comment-92.92.161.94-20150214200627\nTalk:Orca/@comment-26258373-20150812005842\nTalk:Orca/@comment-26258373-20150812005842/@comment-14.2.50.157-20150816040346\nTalk:Orca/@comment-26258373-20150812005842/@comment-156.3.54.204-20150911214442\nTalk:Orca/@comment-26258373-20150812005842/@comment-50.73.242.166-20150923140820\nTalk:Orca/@comment-26292233-20150502125144\nTalk:Orca/@comment-26391992-20150914183558\nTalk:Orca/@comment-26391992-20150914183558/@comment-156.3.54.204-20150921161430\nTalk:Orca/@comment-26391992-20150914183558/@comment-99.73.152.212-20151011003416\nTalk:Orca/@comment-26454645-20150918164722\nTalk:Orca/@comment-26454645-20150923003919\nTalk:Orca/@comment-26937315-20160315110731\nTalk:Orca/@comment-26937315-20160315110731/@comment-26391992-20160315122247\nTalk:Orca/@comment-26937315-20160315110731/@comment-26937315-20160320151814\nTalk:Orca/@comment-26937315-20160827162647\nTalk:Orca/@comment-26937315-20160827162647/@comment-76.234.68.126-20170611004932\nTalk:Orca/@comment-27090681-20160401202352\nTalk:Orca/@comment-29835710-20160902151403\nTalk:Orca/@comment-37.5.153.66-20141224171743\nTalk:Orca/@comment-37.5.37.183-20160227172343\nTalk:Orca/@comment-37.5.37.183-20160227172343/@comment-77.250.109.152-20160520045915\nTalk:Orca/@comment-38.132.167.192-20160116090917\nTalk:Orca/@comment-38.132.167.192-20160116090917/@comment-92.132.34.9-20160916123406\nTalk:Orca/@comment-4225664-20141229052738\nTalk:Orca/@comment-43495716-20200803184734\nTalk:Orca/@comment-46.196.192.43-20180121005458\nTalk:Orca/@comment-4968814-20150115175938\nTalk:Orca/@comment-5.198.43.13-20150103085650\nTalk:Orca/@comment-50.170.117.254-20160107073156\nTalk:Orca/@comment-50.170.117.254-20160107073156/@comment-173.29.116.54-20160213050338\nTalk:Orca/@comment-50.170.117.254-20160107073156/@comment-27311754-20160107114341\nTalk:Orca/@comment-50.170.117.254-20160107073156/@comment-9472148-20160203213953\nTalk:Orca/@comment-50.4.239.175-20161017222236\nTalk:Orca/@comment-50.4.239.175-20161017222236/@comment-192.136.161.156-20161018114002\nTalk:Orca/@comment-50.4.239.175-20161017222236/@comment-192.136.163.15-20180718120521\nTalk:Orca/@comment-50.4.239.175-20161017222236/@comment-72.14.2.68-20180717194054\nTalk:Orca/@comment-50.73.242.166-20150922132215\nTalk:Orca/@comment-50.73.242.166-20150922132215/@comment-156.3.54.206-20150928182627\nTalk:Orca/@comment-5648936-20141224014827\nTalk:Orca/@comment-68.111.89.35-20141221010216\nTalk:Orca/@comment-68.111.89.35-20141221010216/@comment-109.155.38.37-20141224053304\nTalk:Orca/@comment-68.111.89.35-20141221010216/@comment-203.14.52.144-20150207074219\nTalk:Orca/@comment-68.111.89.35-20141221010216/@comment-213.125.131.226-20150113101042\nTalk:Orca/@comment-68.111.89.35-20141221010216/@comment-71.21.3.159-20150131185656\nTalk:Orca/@comment-70.72.46.245-20141129202347\nTalk:Orca/@comment-70.72.46.245-20141129202347/@comment-178.148.38.158-20150111201841\nTalk:Orca/@comment-70.72.46.245-20141129202347/@comment-75.22.106.106-20141224224000\nTalk:Orca/@comment-70.72.46.245-20141129202347/@comment-90.217.225.12-20141221004806\nTalk:Orca/@comment-71.12.150.53-20190304024754\nTalk:Orca/@comment-71.233.88.91-20160618223201\nTalk:Orca/@comment-71.95.100.70-20150428030800\nTalk:Orca/@comment-71.95.100.70-20150428030800/@comment-88.115.190.42-20150428080340\nTalk:Orca/@comment-71.95.100.70-20150428030800/@comment-99.135.98.174-20160304030733\nTalk:Orca/@comment-73.11.47.3-20150201022158\nTalk:Orca/@comment-75.5.251.23-20180222010530\nTalk:Orca/@comment-75.5.251.23-20180222010530/@comment-169.231.127.26-20180710172945\nTalk:Orca/@comment-75.5.251.23-20180222010530/@comment-192.136.161.33-20180222140718\nTalk:Orca/@comment-77.175.79.210-20150113195728\nTalk:Orca/@comment-82.226.121.139-20150611195740\nTalk:Orca/@comment-82.24.105.102-20150506201924\nTalk:Orca/@comment-82.43.87.96-20160102135418\nTalk:Orca/@comment-82.69.95.27-20150114165346\nTalk:Orca/@comment-86.158.252.212-20161105014040\nTalk:Orca/@comment-86.158.252.212-20161105014040/@comment-192.136.161.52-20161105033008\nTalk:Orca/@comment-86.158.252.212-20161105014040/@comment-2155082-20161105031758\nTalk:Orca/@comment-86.158.252.212-20161105014040/@comment-25450485-20170716114147\nTalk:Orca/@comment-87.114.31.223-20160123120323\nTalk:Orca/@comment-87.114.31.223-20160123120323/@comment-71.236.251.12-20160302090347\nTalk:Orca/@comment-88.115.190.42-20150428080735\nTalk:Orca/@comment-88.85.155.146-20150315175859\nTalk:Orca/@comment-88.85.155.146-20150315175859/@comment-12138097-20150315185132\nTalk:Orca/@comment-88.85.155.146-20150315175859/@comment-72.241.143.238-20150605233616\nTalk:Orca/@comment-88.85.155.146-20150315175859/@comment-86.26.19.129-20150523151719\nTalk:Orca/@comment-90.231.177.208-20150524122659\nTalk:Orca/@comment-91.2.251.140-20141130182154\nTalk:Orca/@comment-91.64.199.60-20150101203237\nTalk:Orca/@comment-91.67.22.246-20150101214153\nTalk:Orca/@comment-91.90.160.132-20160205205243\nTalk:Orca/@comment-91.90.160.132-20160205205243/@comment-217.71.47.196-20160220071757\nTalk:Orca/@comment-91.90.160.132-20160205205243/@comment-24.194.3.246-20160207023006\nTalk:Orca/@comment-92.40.249.131-20190417082718\nTalk:Orca/@comment-93.194.75.92-20150305191417\nTalk:Orerve/@comment-34004391-20180216123821\nTalk:Orerve/@comment-34004391-20180216123821/@comment-26810597-20180216220620\nTalk:Orion Nebula/@comment-165.225.64.70-20171123145733\nTalk:Orion Nebula/@comment-165.225.64.70-20171123145733/@comment-62.2.190.130-20180221075443\nTalk:Orrerian Vicious Brew/@comment-71.91.156.194-20160404222552\nTalk:Orrery System Map/@comment-2A02:A44E:E67:1:8564:EB99:D788:B417-20181020191334\nTalk:Orrery System Map/@comment-2A02:A44E:E67:1:8564:EB99:D788:B417-20181020191334/@comment-30928085-20181021055859\nTalk:Osmium/@comment-173.54.228.91-20150707014143\nTalk:Osmium/@comment-177.131.8.5-20190123124035\nTalk:Osmium/@comment-220.132.232.79-20151025184533\nTalk:Osmium/@comment-220.132.232.79-20151025184533/@comment-188.129.217.10-20180206160840\nTalk:Osmium/@comment-220.132.232.79-20151025184533/@comment-2003:7F:4E75:1473:11EF:8B51:BEF2:20D-20180201160521\nTalk:Osmium/@comment-31.52.251.8-20150818145803\nTalk:Osmium/@comment-31.52.251.8-20150818145803/@comment-24.239.58.122-20151102025747\nTalk:Osmium/@comment-31.52.251.8-20150818145803/@comment-31.35.241.102-20151104233824\nTalk:Osmium/@comment-31178037-20200125180828\nTalk:Osmium/@comment-31178037-20200125180828/@comment-80.134.43.83-20200211164301\nTalk:Osmium/@comment-73.254.229.37-20180227074844\nTalk:Osmium/@comment-73.254.229.37-20180227074844/@comment-2A01:CB11:3E1:3D00:8CB2:C071:F968:EA6C-20180726184739\nTalk:Outcrop/@comment-220.253.45.72-20170313080250\nTalk:Outcrop/@comment-220.253.45.72-20170313080250/@comment-37.108.43.156-20180107145515\nTalk:Outcrop/@comment-25803634-20180408065236\nTalk:Outcrop/@comment-2601:603:A80:1FB0:49D2:2764:4623:CC95-20171108050644\nTalk:Outcrop/@comment-34004391-20180306090322\nTalk:Outcrop/@comment-89.240.203.112-20161222225546\nTalk:Outcrop/@comment-89.240.203.112-20161222225546/@comment-77.173.160.84-20170129192338\nTalk:Outfitting/@comment-118.174.191.174-20170311021839\nTalk:Outfitting/@comment-118.174.191.174-20170311021839/@comment-51.6.137.58-20170715103151\nTalk:Outfitting/@comment-118.174.191.174-20170311021839/@comment-5120893-20180702172419\nTalk:Outfitting/@comment-118.174.191.174-20170311021839/@comment-73.189.163.108-20170503220647\nTalk:Outfitting/@comment-2601:19B:4600:2470:B193:EE19:10ED:57B0-20180109234651\nTalk:Outfitting/@comment-2601:19B:4600:2470:B193:EE19:10ED:57B0-20180109234651/@comment-75.5.251.23-20180225060736\nTalk:Outfitting/@comment-2601:19B:4600:2470:B193:EE19:10ED:57B0-20180109234651/@comment-90.200.46.38-20181110112654\nTalk:Outfitting/@comment-26220751-20200617035311\nTalk:Outpost/@comment-169.204.229.202-20160226174747\nTalk:Outpost/@comment-216.40.73.161-20170225015238\nTalk:Outpost/@comment-2605:6000:151B:8AAC:1DA1:6DF2:4291:2714-20190127223846\nTalk:Outpost/@comment-84.154.84.138-20151115125242\nTalk:Outpost/@comment-84.154.84.138-20151115125242/@comment-143.81.103.35-20160117030938\nTalk:Outpost/@comment-84.154.84.138-20151115125242/@comment-16416565-20151215154139\nTalk:Outpost/@comment-84.154.84.138-20151115125242/@comment-169.204.229.202-20160226174806\nTalk:Outpost/@comment-84.154.84.138-20151115125242/@comment-24.74.16.164-20151120194749\nTalk:Overcharged Beam Laser/@comment-71.114.112.90-20160823020226\nTalk:Overcharged Weapon/@comment-2A01:598:B887:FE49:F0E7:CEB:78D9:5679-20180321191016\nTalk:Overcharged Weapon/@comment-2A01:598:B887:FE49:F0E7:CEB:78D9:5679-20180321191016/@comment-2601:189:C37F:CA80:B0CA:6C87:57B4:F4EF-20191008225404\nTalk:Overcharged Weapon/@comment-2A01:598:B887:FE49:F0E7:CEB:78D9:5679-20180321191016/@comment-96.8.131.122-20190930020321\nTalk:Overcharged Weapon/@comment-72.211.139.224-20190116181421\nTalk:Overload Munitions/@comment-2606:A000:F846:700:ED29:5E03:E128:5BBC-20170819042827\nTalk:Overload Munitions/@comment-81.106.140.16-20190901233026\nTalk:PLX 695/@comment-173.49.106.221-20191220052524\nTalk:PLX 695/@comment-30643772-20180915225241\nTalk:PLX 695/@comment-30643772-20180915225241/@comment-189.32.29.99-20190115162514\nTalk:PLX 695/@comment-30643772-20180915225241/@comment-75.147.8.109-20181210172135\nTalk:PLX 695/@comment-30643772-20180915225241/@comment-82.20.230.179-20181208042015\nTalk:PLX 695/@comment-89.98.182.81-20190919222843\nTalk:Pacifier Frag-Cannon/@comment-104.129.192.116-20170329005304\nTalk:Pacifier Frag-Cannon/@comment-104.129.192.116-20170329005304/@comment-192.136.161.52-20170329114417\nTalk:Pacifier Frag-Cannon/@comment-104.129.192.116-20170329005304/@comment-90.200.46.38-20181119151220\nTalk:Pacifier Frag-Cannon/@comment-176.249.62.114-20170823182611\nTalk:Pacifier Frag-Cannon/@comment-176.249.62.114-20170823182611/@comment-192.136.170.98-20181130151410\nTalk:Pacifier Frag-Cannon/@comment-176.249.62.114-20170823182611/@comment-192.136.170.98-20181203203822\nTalk:Pacifier Frag-Cannon/@comment-176.249.62.114-20170823182611/@comment-192.136.170.98-20181204180625\nTalk:Pacifier Frag-Cannon/@comment-176.249.62.114-20170823182611/@comment-90.200.46.38-20181129210344\nTalk:Pacifier Frag-Cannon/@comment-176.249.62.114-20170823182611/@comment-90.200.46.38-20181203005200\nTalk:Pacifier Frag-Cannon/@comment-176.249.62.114-20170823182611/@comment-90.200.46.38-20181204023359\nTalk:Pacifier Frag-Cannon/@comment-71.125.245.12-20150809215851\nTalk:Pacifier Frag-Cannon/@comment-72.191.120.177-20160830033527\nTalk:Pacifier Frag-Cannon/@comment-72.191.120.177-20160830033527/@comment-2A00:23C4:75A9:6D00:90E8:78D4:E027:93C9-20190515133727\nTalk:Pacifier Frag-Cannon/@comment-88.152.65.199-20170329152235\nTalk:Pacifier Frag-Cannon/@comment-88.152.65.199-20170329152235/@comment-159.224.131.168-20170419113603\nTalk:Pacifier Frag-Cannon/@comment-88.152.65.199-20170329152235/@comment-176.249.62.114-20170823182651\nTalk:Pacifier Frag-Cannon/@comment-88.152.65.199-20170329152235/@comment-192.136.172.169-20190515211829\nTalk:Pacifier Frag-Cannon/@comment-88.152.65.199-20170329152235/@comment-2A00:23C4:75A9:6D00:90E8:78D4:E027:93C9-20190515133620\nTalk:Pacifier Frag-Cannon/@comment-88.152.65.199-20170329152235/@comment-69.159.13.145-20170419064406\nTalk:Pacifier Frag-Cannon/@comment-88.152.65.199-20170329152235/@comment-94.12.31.80-20170729133056\nTalk:Pacifier Frag-Cannon/@comment-90.200.46.38-20181029095756\nTalk:Pacifier Frag-Cannon/@comment-90.200.46.38-20181029095756/@comment-203.104.15.95-20191119012741\nTalk:Pack-Hound Missile Rack/@comment-108.209.190.156-20160908144708\nTalk:Pack-Hound Missile Rack/@comment-108.209.190.156-20160908144708/@comment-167.21.142.43-20170224174713\nTalk:Pack-Hound Missile Rack/@comment-108.209.190.156-20160908144708/@comment-212.112.149.50-20161212122537\nTalk:Pack-Hound Missile Rack/@comment-108.209.190.156-20160908144708/@comment-75.22.106.21-20161029015941\nTalk:Pack-Hound Missile Rack/@comment-108.209.190.156-20160908144708/@comment-79.225.231.187-20170119121809\nTalk:Pack-Hound Missile Rack/@comment-192.136.161.33-20180220140908\nTalk:Pack-Hound Missile Rack/@comment-192.136.161.33-20180220140908/@comment-90.200.46.38-20181109101952\nTalk:Pack-Hound Missile Rack/@comment-192.136.161.6-20170729150125\nTalk:Pack-Hound Missile Rack/@comment-192.136.161.6-20170729150125/@comment-2600:1700:BDA0:AB20:F1E8:D7FD:FD31:BDA2-20180519232721\nTalk:Pack-Hound Missile Rack/@comment-2001:5B0:4BD9:A5F0:0:FF:FEBD:63F2-20181020005547\nTalk:Pack-Hound Missile Rack/@comment-2001:5B0:4BD9:A5F0:0:FF:FEBD:63F2-20181020005547/@comment-74.249.114.2-20181130004940\nTalk:Pack-Hound Missile Rack/@comment-2001:5B0:4BD9:A5F0:0:FF:FEBD:63F2-20181020005547/@comment-90.200.46.38-20181123134152\nTalk:Pack-Hound Missile Rack/@comment-2601:2C7:780:2DC:E531:898A:9CEA:B3B2-20180909181314\nTalk:Pack-Hound Missile Rack/@comment-2601:2C7:780:2DC:E531:898A:9CEA:B3B2-20180909181314/@comment-2605:B100:11F:6CD7:E193:CAC7:886E:9F98-20191212180238\nTalk:Pack-Hound Missile Rack/@comment-2601:2C7:780:2DC:E531:898A:9CEA:B3B2-20180909181314/@comment-45587726-20200710125623\nTalk:Pack-Hound Missile Rack/@comment-26537865-20150803003339\nTalk:Pack-Hound Missile Rack/@comment-26537865-20150803003339/@comment-46.5.253.115-20170110220928\nTalk:Pack-Hound Missile Rack/@comment-44180665-20200312181807\nTalk:Pack-Hound Missile Rack/@comment-45.33.139.32-20150812104216\nTalk:Pack-Hound Missile Rack/@comment-45.33.139.32-20150812104216/@comment-92.75.131.22-20180523191532\nTalk:Pack-Hound Missile Rack/@comment-75.64.247.69-20160119155546\nTalk:Pack-Hound Missile Rack/@comment-75.64.247.69-20160119155546/@comment-71.76.244.78-20160209210633\nTalk:Pack-Hound Missile Rack/@comment-75.64.247.69-20160119155546/@comment-80.26.205.177-20170422233045\nTalk:Pack-Hound Missile Rack/@comment-75.64.247.69-20160119155546/@comment-90.200.46.38-20181123174547\nTalk:Painite/@comment-118.185.31.37-20170828135300\nTalk:Painite/@comment-118.185.31.37-20170828135300/@comment-73.209.152.39-20180809044339\nTalk:Painite/@comment-121.211.39.251-20150311232823\nTalk:Painite/@comment-121.211.39.251-20150311232823/@comment-174.0.47.184-20150314154134\nTalk:Painite/@comment-121.211.39.251-20150311232823/@comment-25057854-20150312054421\nTalk:Painite/@comment-121.211.39.251-20150311232823/@comment-64.231.211.252-20150519214648\nTalk:Painite/@comment-121.211.39.251-20150311232823/@comment-87.165.112.206-20150402203431\nTalk:Painite/@comment-121.211.39.251-20150311232823/@comment-88.175.110.191-20150313132830\nTalk:Painite/@comment-152.26.211.26-20180517124103\nTalk:Painite/@comment-156.3.54.203-20150608150314\nTalk:Painite/@comment-156.3.54.203-20150608150314/@comment-26033489-20150608181434\nTalk:Painite/@comment-172.58.144.247-20170418034815\nTalk:Painite/@comment-174.18.24.196-20190321065751\nTalk:Painite/@comment-176.73.127.181-20151216053718\nTalk:Painite/@comment-176.73.127.181-20151216053718/@comment-81.110.84.203-20151221143845\nTalk:Painite/@comment-186.159.169.66-20170810164406\nTalk:Painite/@comment-188.174.188.124-20150319165910\nTalk:Painite/@comment-188.174.188.124-20150319165910/@comment-121.211.33.244-20151227110214\nTalk:Painite/@comment-188.174.188.124-20150319165910/@comment-66.249.82.231-20151218020306\nTalk:Painite/@comment-188.174.188.124-20150319165910/@comment-72.241.143.238-20150505065139\nTalk:Painite/@comment-189.32.29.99-20190106042142\nTalk:Painite/@comment-189.32.29.99-20190106042142/@comment-24.101.57.124-20190120041950\nTalk:Painite/@comment-189.32.29.99-20190106042142/@comment-2605:A000:BFC0:5F:1013:AE31:7322:2C04-20190124070652\nTalk:Painite/@comment-189.32.29.99-20190106042142/@comment-94.120.77.16-20190122143541\nTalk:Painite/@comment-213.240.195.112-20181019230001\nTalk:Painite/@comment-217.32.220.171-20150608120635\nTalk:Painite/@comment-24.10.225.242-20181122190901\nTalk:Painite/@comment-24.10.225.242-20181122190901/@comment-90.200.46.38-20181127132836\nTalk:Painite/@comment-24313401-20150408235422\nTalk:Painite/@comment-24313401-20150408235422/@comment-24313401-20150409000441\nTalk:Painite/@comment-2601:248:527F:9B70:7183:9C86:9E69:A80D-20191031173513\nTalk:Painite/@comment-2606:A000:7A0A:A700:F026:9A8D:73E7:35DB-20180825025857\nTalk:Painite/@comment-2606:A000:7A0A:A700:F026:9A8D:73E7:35DB-20180825025857/@comment-74.219.0.154-20181022182409\nTalk:Painite/@comment-2606:A000:7A0A:A700:F026:9A8D:73E7:35DB-20180825025857/@comment-89.134.183.81-20180922212056\nTalk:Painite/@comment-2606:A000:7A0A:A700:F026:9A8D:73E7:35DB-20180825025857/@comment-90.200.46.38-20181127200845\nTalk:Painite/@comment-46.13.93.231-20151102155334\nTalk:Painite/@comment-46.13.93.231-20151102155334/@comment-204.75.125.134-20161014134644\nTalk:Painite/@comment-46.13.93.231-20151102155334/@comment-70.69.172.43-20151218133449\nTalk:Painite/@comment-49.178.52.46-20190419040247\nTalk:Painite/@comment-50.24.100.195-20180326190540\nTalk:Painite/@comment-50.24.100.195-20180326190540/@comment-37366790-20181101022822\nTalk:Painite/@comment-50.24.100.195-20180326190540/@comment-73.209.152.39-20180809052935\nTalk:Painite/@comment-64.114.239.61-20171002202130\nTalk:Painite/@comment-73.209.152.39-20180809041949\nTalk:Painite/@comment-73.209.152.39-20180809041949/@comment-73.209.152.39-20180809043240\nTalk:Painite/@comment-76.178.190.103-20150619214320\nTalk:Painite/@comment-76.178.23.25-20150314144939\nTalk:Painite/@comment-76.178.23.25-20150314144939/@comment-2401:7000:B051:100:30B8:1375:4B41:C2CE-20180515093641\nTalk:Painite/@comment-76.178.23.25-20150314144939/@comment-27530921-20160118032525\nTalk:Painite/@comment-76.178.23.25-20150314144939/@comment-71.184.251.177-20150416043817\nTalk:Painite/@comment-76.178.23.25-20150314144939/@comment-76.178.23.25-20150314161518\nTalk:Painite/@comment-76.178.23.25-20150314144939/@comment-76.178.23.25-20150314190821\nTalk:Painite/@comment-76.178.23.25-20150314144939/@comment-86.29.214.196-20150318011021\nTalk:Painite/@comment-76.178.23.25-20150314144939/@comment-94.67.239.32-20150521174844\nTalk:Painite/@comment-80.221.171.242-20150610002342\nTalk:Painite/@comment-81.110.84.203-20151221143824\nTalk:Painite/@comment-81.110.84.203-20151221143824/@comment-109.230.63.49-20160131230858\nTalk:Painite/@comment-81.110.84.203-20151221143824/@comment-176.86.164.55-20170911193056\nTalk:Painite/@comment-81.110.84.203-20151221143824/@comment-203.7.81.23-20170127081126\nTalk:Painite/@comment-91.93.95.216-20181222122925\nTalk:Painite/@comment-93.185.26.112-20170604143417\nTalk:Painite/@comment-93.185.26.112-20170604143417/@comment-188.146.131.47-20170820224054\nTalk:Painite/@comment-95.91.192.94-20150606135009\nTalk:Painite/@comment-95.91.192.94-20150606135009/@comment-26009169-20150608122519\nTalk:Painite/@comment-95.91.192.94-20150606135009/@comment-50.100.217.171-20150607225126\nTalk:Painite/@comment-95.91.192.94-20150606135009/@comment-76.18.220.223-20150608044836\nTalk:Painite/@comment-95.91.192.94-20150606135009/@comment-83.81.70.93-20150813185854\nTalk:Palin Institute/@comment-2605:6000:1B02:42:E4C8:8F21:9BE8:6B86-20190724060255\nTalk:Palladium/@comment-109.175.42.129-20150121113057\nTalk:Palladium/@comment-109.175.42.129-20150121113057/@comment-50.158.251.198-20151102214422\nTalk:Palladium/@comment-109.175.42.129-20150121113057/@comment-86.12.45.1-20150123190647\nTalk:Palladium/@comment-216.1.200.2-20151210220801\nTalk:Palladium/@comment-26113847-20150221000641\nTalk:Palladium/@comment-26113847-20150221000641/@comment-26113847-20150321153542\nTalk:Palladium/@comment-26113847-20150221000641/@comment-88.101.52.139-20150321145743\nTalk:Palladium/@comment-26113847-20150221000641/@comment-98.181.56.184-20150524184849\nTalk:Palladium/@comment-31.61.131.216-20150105233753\nTalk:Palladium/@comment-99.232.27.104-20150712205047\nTalk:Palladium/@comment-99.232.27.104-20150712205047/@comment-192.30.205.25-20180430203029\nTalk:Pantaa Prayer Sticks/@comment-73.125.87.97-20180108151734\nTalk:Pantaa Prayer Sticks/@comment-77.50.26.143-20160930212826\nTalk:Pantaa Prayer Sticks/@comment-78.34.163.119-20151231165206\nTalk:Pantaa Prayer Sticks/@comment-97.95.192.25-20181027040107\nTalk:Panther Clipper/@comment-101.184.150.174-20160112030919\nTalk:Panther Clipper/@comment-101.184.150.174-20160112030919/@comment-108.2.148.152-20170520173948\nTalk:Panther Clipper/@comment-101.184.150.174-20160112030919/@comment-178.62.6.233-20160120132721\nTalk:Panther Clipper/@comment-101.184.150.174-20160112030919/@comment-178.62.64.106-20160129132750\nTalk:Panther Clipper/@comment-101.184.150.174-20160112030919/@comment-26163293-20160124231814\nTalk:Panther Clipper/@comment-104.51.116.206-20150819180156\nTalk:Panther Clipper/@comment-104.51.116.206-20150819180156/@comment-156.3.54.204-20150911213906\nTalk:Panther Clipper/@comment-104.51.116.206-20150819180156/@comment-47.18.65.236-20150821235426\nTalk:Panther Clipper/@comment-104.51.116.206-20150819180156/@comment-85.178.61.110-20150819193017\nTalk:Panther Clipper/@comment-108.216.89.143-20150509185352\nTalk:Panther Clipper/@comment-121.211.39.251-20150117023750\nTalk:Panther Clipper/@comment-121.211.39.251-20150117023750/@comment-62.30.56.254-20150123050624\nTalk:Panther Clipper/@comment-121.211.39.251-20150117023750/@comment-73.163.191.50-20150118060430\nTalk:Panther Clipper/@comment-121.211.39.251-20150117023750/@comment-86.19.157.214-20150118040549\nTalk:Panther Clipper/@comment-121.211.39.251-20150313105225\nTalk:Panther Clipper/@comment-121.211.39.251-20150313105225/@comment-79.132.19.230-20150720200605\nTalk:Panther Clipper/@comment-121.211.39.251-20150313105225/@comment-82.208.5.86-20150316022851\nTalk:Panther Clipper/@comment-145.132.33.196-20170514185131\nTalk:Panther Clipper/@comment-146.52.32.203-20150322172936\nTalk:Panther Clipper/@comment-146.52.32.203-20150322172936/@comment-26005414-20150323045435\nTalk:Panther Clipper/@comment-146.52.32.203-20150322172936/@comment-26116574-20150323034820\nTalk:Panther Clipper/@comment-146.52.32.203-20150322172936/@comment-64.68.230.243-20150410075100\nTalk:Panther Clipper/@comment-146.52.32.203-20150322172936/@comment-76.67.109.27-20150401211018\nTalk:Panther Clipper/@comment-146.52.32.203-20150322172936/@comment-78.43.75.252-20150323170429\nTalk:Panther Clipper/@comment-156.3.54.202-20150511203914\nTalk:Panther Clipper/@comment-156.3.54.202-20150511203914/@comment-167.176.6.8-20150611190539\nTalk:Panther Clipper/@comment-156.3.54.202-20150511203914/@comment-173.55.173.227-20150512041914\nTalk:Panther Clipper/@comment-156.3.54.202-20150511203914/@comment-24.142.245.178-20150605131324\nTalk:Panther Clipper/@comment-156.3.54.202-20150511203914/@comment-26116574-20150511205708\nTalk:Panther Clipper/@comment-156.3.54.202-20150511203914/@comment-73.142.176.57-20150516190428\nTalk:Panther Clipper/@comment-156.3.54.202-20150511203914/@comment-82.11.99.50-20150628040203\nTalk:Panther Clipper/@comment-156.3.54.202-20150511203914/@comment-97.95.165.168-20150514023609\nTalk:Panther Clipper/@comment-156.3.54.203-20150529193230\nTalk:Panther Clipper/@comment-156.3.54.203-20150529193230/@comment-12.5.54.135-20160111162007\nTalk:Panther Clipper/@comment-156.3.54.203-20150529193230/@comment-26537865-20150804151554\nTalk:Panther Clipper/@comment-162.156.1.23-20141227070255\nTalk:Panther Clipper/@comment-162.156.1.23-20141227070255/@comment-66.249.82.197-20141229101422\nTalk:Panther Clipper/@comment-162.156.1.23-20141227070255/@comment-71.233.88.91-20160524141031\nTalk:Panther Clipper/@comment-162.156.1.23-20141227070255/@comment-79.232.209.124-20150125170801\nTalk:Panther Clipper/@comment-162.156.1.23-20141227070255/@comment-92.12.47.26-20150113002200\nTalk:Panther Clipper/@comment-172.242.75.177-20180412080604\nTalk:Panther Clipper/@comment-172.242.75.177-20180412080604/@comment-64.26.134.201-20180412081558\nTalk:Panther Clipper/@comment-176.221.122.85-20170313145256\nTalk:Panther Clipper/@comment-176.221.122.85-20170313145256/@comment-125.237.7.146-20170418192450\nTalk:Panther Clipper/@comment-176.221.122.85-20170313145256/@comment-150.208.129.188-20170316134354\nTalk:Panther Clipper/@comment-176.221.122.85-20170313145256/@comment-91.125.14.42-20170704130551\nTalk:Panther Clipper/@comment-176.249.62.114-20170826230415\nTalk:Panther Clipper/@comment-176.249.62.114-20170826230415/@comment-2A02:C7D:2177:2000:68DC:1CB:DD79:D666-20180130174411\nTalk:Panther Clipper/@comment-176.249.62.114-20170826230415/@comment-90.200.46.38-20181026113351\nTalk:Panther Clipper/@comment-177.83.193.94-20181202182910\nTalk:Panther Clipper/@comment-177.83.193.94-20181202182910/@comment-38675243-20190404020304\nTalk:Panther Clipper/@comment-177.83.193.94-20181202182910/@comment-44278296-20200215234957\nTalk:Panther Clipper/@comment-178.165.128.8-20180629055136\nTalk:Panther Clipper/@comment-178.212.43.167-20170419115213\nTalk:Panther Clipper/@comment-178.212.43.167-20170419115213/@comment-192.136.161.52-20170419120734\nTalk:Panther Clipper/@comment-178.212.43.167-20170419115213/@comment-90.205.91.129-20170628194105\nTalk:Panther Clipper/@comment-178.222.163.84-20190415080810\nTalk:Panther Clipper/@comment-180.254.226.183-20190415070632\nTalk:Panther Clipper/@comment-188.174.188.124-20150323013027\nTalk:Panther Clipper/@comment-188.174.188.124-20150323013027/@comment-183.96.187.33-20150530162729\nTalk:Panther Clipper/@comment-188.174.188.124-20150323013027/@comment-26116574-20150323034720\nTalk:Panther Clipper/@comment-191.183.180.80-20160218132934\nTalk:Panther Clipper/@comment-192.136.161.156-20160930171416\nTalk:Panther Clipper/@comment-203.173.29.85-20160503091745\nTalk:Panther Clipper/@comment-203.7.85.87-20170216163557\nTalk:Panther Clipper/@comment-220.240.137.235-20150617091841\nTalk:Panther Clipper/@comment-24.111.74.158-20160903000922\nTalk:Panther Clipper/@comment-24.111.74.158-20160903000922/@comment-125.237.2.240-20160912030433\nTalk:Panther Clipper/@comment-24.111.74.158-20160903000922/@comment-2155082-20160903022259\nTalk:Panther Clipper/@comment-24.111.74.158-20160903000922/@comment-94.254.8.87-20161010071925\nTalk:Panther Clipper/@comment-24.34.224.101-20150622080239\nTalk:Panther Clipper/@comment-24.34.224.101-20150622080239/@comment-11990868-20150708230223\nTalk:Panther Clipper/@comment-24.34.224.101-20150622080239/@comment-176.93.8.142-20150627190155\nTalk:Panther Clipper/@comment-24.34.224.101-20150622080239/@comment-71.227.133.181-20150802013356\nTalk:Panther Clipper/@comment-24.34.224.101-20150622080239/@comment-79.132.19.230-20150720200032\nTalk:Panther Clipper/@comment-24.34.224.101-20150622080239/@comment-89.249.2.53-20150820092755\nTalk:Panther Clipper/@comment-24.45.93.5-20150225234830\nTalk:Panther Clipper/@comment-26005414-20150307230108\nTalk:Panther Clipper/@comment-26005414-20161011032143\nTalk:Panther Clipper/@comment-26005414-20161011032143/@comment-93.106.178.84-20161022081429\nTalk:Panther Clipper/@comment-26005414-20161011032143/@comment-93.106.201.18-20161021124357\nTalk:Panther Clipper/@comment-2600:6C5D:6300:801:D4B8:7427:5BB8:30EC-20180625062915\nTalk:Panther Clipper/@comment-2600:6C5D:6300:801:D4B8:7427:5BB8:30EC-20180625062915/@comment-26005414-20180625133107\nTalk:Panther Clipper/@comment-2601:640:C680:6670:1495:3BB0:32E8:F5C9-20170926185210\nTalk:Panther Clipper/@comment-2605:E000:7EC9:FF00:612D:C329:48E1:DE24-20180701121458\nTalk:Panther Clipper/@comment-2605:E000:7EC9:FF00:612D:C329:48E1:DE24-20180701121458/@comment-2601:283:300:9230:E4CB:E952:689D:DB6D-20180702041843\nTalk:Panther Clipper/@comment-26227424-20160704133952\nTalk:Panther Clipper/@comment-26227424-20160704133952/@comment-125.237.3.1-20161023082750\nTalk:Panther Clipper/@comment-26239617-20150616011332\nTalk:Panther Clipper/@comment-26391992-20151126123535\nTalk:Panther Clipper/@comment-26391992-20151126123535/@comment-26372902-20151216205638\nTalk:Panther Clipper/@comment-26391992-20151126123535/@comment-27115814-20151202171149\nTalk:Panther Clipper/@comment-26391992-20160310092953\nTalk:Panther Clipper/@comment-26391992-20160310092953/@comment-26005414-20160926044019\nTalk:Panther Clipper/@comment-26391992-20160310092953/@comment-26005414-20160929034255\nTalk:Panther Clipper/@comment-26391992-20160310092953/@comment-27032150-20160926122012\nTalk:Panther Clipper/@comment-26391992-20160310092953/@comment-35.46.7.62-20160913000602\nTalk:Panther Clipper/@comment-26391992-20160310092953/@comment-75.64.247.69-20160912185309\nTalk:Panther Clipper/@comment-27115814-20151202171330\nTalk:Panther Clipper/@comment-27115814-20151202171330/@comment-163.7.142.51-20181031012342\nTalk:Panther Clipper/@comment-27115814-20151202171330/@comment-26391992-20151205095338\nTalk:Panther Clipper/@comment-27115814-20151202171330/@comment-27034370-20160102052300\nTalk:Panther Clipper/@comment-27115814-20151202171330/@comment-73.44.179.181-20160522045023\nTalk:Panther Clipper/@comment-27115814-20151202171330/@comment-87.89.34.241-20151204181023\nTalk:Panther Clipper/@comment-31.16.242.195-20171130142608\nTalk:Panther Clipper/@comment-31.16.242.195-20171130142608/@comment-192.136.161.33-20171130211617\nTalk:Panther Clipper/@comment-33493166-20190415085245\nTalk:Panther Clipper/@comment-37171230-20190128211010\nTalk:Panther Clipper/@comment-37938660-20190112095942\nTalk:Panther Clipper/@comment-37938660-20190112095942/@comment-64.43.43.118-20190814103212\nTalk:Panther Clipper/@comment-5.18.154.88-20150104125037\nTalk:Panther Clipper/@comment-5.18.154.88-20150104125037/@comment-62.30.56.254-20150123050816\nTalk:Panther Clipper/@comment-60.34.2.187-20151114125724\nTalk:Panther Clipper/@comment-60.34.2.187-20151114125724/@comment-27198286-20151114184115\nTalk:Panther Clipper/@comment-60.34.2.187-20151114125724/@comment-50.43.32.65-20160320015059\nTalk:Panther Clipper/@comment-60.34.2.187-20151114125724/@comment-94.177.32.154-20151203115825\nTalk:Panther Clipper/@comment-62.24.73.137-20160202205740\nTalk:Panther Clipper/@comment-62.24.73.137-20160202205740/@comment-64.127.136.202-20160412184123\nTalk:Panther Clipper/@comment-66.226.42.175-20170130003611\nTalk:Panther Clipper/@comment-66.226.42.175-20170130003611/@comment-89.182.56.174-20170211182747\nTalk:Panther Clipper/@comment-71.21.3.159-20150709170057\nTalk:Panther Clipper/@comment-71.21.3.159-20150709170057/@comment-12.5.54.135-20151027142536\nTalk:Panther Clipper/@comment-71.21.3.159-20150709170057/@comment-76.92.151.172-20150711075632\nTalk:Panther Clipper/@comment-71.21.3.159-20150709170057/@comment-89.249.2.53-20150820092643\nTalk:Panther Clipper/@comment-71.95.100.70-20150218205638\nTalk:Panther Clipper/@comment-71.95.100.70-20150218205638/@comment-12.5.54.135-20151027142647\nTalk:Panther Clipper/@comment-71.95.100.70-20150428030526\nTalk:Panther Clipper/@comment-71.95.100.70-20150428030526/@comment-156.3.54.203-20150428143826\nTalk:Panther Clipper/@comment-71.95.100.70-20150428030526/@comment-195.159.161.180-20150505103139\nTalk:Panther Clipper/@comment-71.95.100.70-20150428030526/@comment-24.34.224.101-20150806000959\nTalk:Panther Clipper/@comment-71.95.100.70-20150428030526/@comment-73.10.190.96-20150601135837\nTalk:Panther Clipper/@comment-72.224.253.20-20150417171217\nTalk:Panther Clipper/@comment-73.252.80.183-20181103234836\nTalk:Panther Clipper/@comment-74.90.92.146-20151017203422\nTalk:Panther Clipper/@comment-74.90.92.146-20151017203422/@comment-163.7.142.51-20181031012441\nTalk:Panther Clipper/@comment-74.90.92.146-20151017203422/@comment-27115814-20151105185026\nTalk:Panther Clipper/@comment-74.90.92.146-20151017203422/@comment-71.233.88.91-20160524134615\nTalk:Panther Clipper/@comment-74.90.92.146-20151017203422/@comment-86.1.61.9-20151026193755\nTalk:Panther Clipper/@comment-76.18.220.223-20150113202952\nTalk:Panther Clipper/@comment-76.25.140.130-20150703154152\nTalk:Panther Clipper/@comment-76.25.140.130-20150703154152/@comment-24.130.129.205-20150722033036\nTalk:Panther Clipper/@comment-76.25.140.130-20150703154152/@comment-76.92.151.172-20150711075656\nTalk:Panther Clipper/@comment-76.25.140.130-20150703154152/@comment-79.132.19.230-20150720195742\nTalk:Panther Clipper/@comment-76.67.109.27-20150401211350\nTalk:Panther Clipper/@comment-76.67.109.27-20150401211350/@comment-12.5.54.135-20151027142605\nTalk:Panther Clipper/@comment-76.67.109.27-20150401211350/@comment-74.96.68.238-20150406020140\nTalk:Panther Clipper/@comment-76.67.109.27-20150401211350/@comment-98.15.171.123-20150603101918\nTalk:Panther Clipper/@comment-77.102.200.67-20170528180734\nTalk:Panther Clipper/@comment-77.234.106.9-20150711222129\nTalk:Panther Clipper/@comment-77.234.106.9-20150711222129/@comment-24.130.129.205-20150722031956\nTalk:Panther Clipper/@comment-77.234.106.9-20150711222129/@comment-26537865-20150804151205\nTalk:Panther Clipper/@comment-77.37.166.144-20160207183449\nTalk:Panther Clipper/@comment-77.37.166.144-20160207183449/@comment-192.136.172.239-20160210180207\nTalk:Panther Clipper/@comment-77.37.166.144-20160207183449/@comment-95.91.228.78-20160308065933\nTalk:Panther Clipper/@comment-79.71.226.162-20180108045015\nTalk:Panther Clipper/@comment-79.71.226.162-20180108045015/@comment-79.71.226.162-20180108045711\nTalk:Panther Clipper/@comment-80.98.193.215-20150330232005\nTalk:Panther Clipper/@comment-80.98.193.215-20150330232005/@comment-24.129.88.88-20150520014914\nTalk:Panther Clipper/@comment-80.98.193.215-20150330232005/@comment-24.130.129.205-20150722032808\nTalk:Panther Clipper/@comment-81.129.247.82-20160107021134\nTalk:Panther Clipper/@comment-81.151.71.193-20160104044044\nTalk:Panther Clipper/@comment-81.151.71.193-20160104044044/@comment-163.7.142.51-20181031012253\nTalk:Panther Clipper/@comment-81.151.71.193-20160104044044/@comment-26227424-20160608182556\nTalk:Panther Clipper/@comment-81.151.71.193-20160104044044/@comment-77.102.250.232-20170309204423\nTalk:Panther Clipper/@comment-81.39.186.245-20190508130904\nTalk:Panther Clipper/@comment-81.39.186.245-20190508130904/@comment-69.166.69.101-20190619162340\nTalk:Panther Clipper/@comment-81.39.186.245-20190508130904/@comment-96.250.114.167-20190918020528\nTalk:Panther Clipper/@comment-82.208.5.86-20150327224855\nTalk:Panther Clipper/@comment-82.7.154.17-20160820215441\nTalk:Panther Clipper/@comment-85.138.251.218-20150418103810\nTalk:Panther Clipper/@comment-85.138.251.218-20150418103810/@comment-24.130.129.205-20150722032552\nTalk:Panther Clipper/@comment-85.138.251.218-20150418103810/@comment-26116574-20150419023230\nTalk:Panther Clipper/@comment-85.247.81.152-20160820201946\nTalk:Panther Clipper/@comment-86.147.246.39-20180517222906\nTalk:Panther Clipper/@comment-86.147.246.39-20180517222906/@comment-34641605-20180629034048\nTalk:Panther Clipper/@comment-86.149.18.26-20150407023420\nTalk:Panther Clipper/@comment-86.153.163.242-20170420055315\nTalk:Panther Clipper/@comment-86.153.163.242-20170420055315/@comment-192.136.161.52-20170420120934\nTalk:Panther Clipper/@comment-89.241.48.153-20171224152410\nTalk:Panther Clipper/@comment-90.200.46.38-20181101190402\nTalk:Panther Clipper/@comment-90.200.46.38-20181101190402/@comment-143.52.30.109-20181106130029\nTalk:Panther Clipper/@comment-90.200.46.38-20181101190402/@comment-69.166.69.101-20190620171331\nTalk:Panther Clipper/@comment-90.200.46.38-20181101190402/@comment-98.193.10.19-20181107225034\nTalk:Panther Clipper/@comment-91.141.3.94-20150918075633\nTalk:Panther Clipper/@comment-91.141.3.94-20150918075633/@comment-90.231.177.208-20150920145717\nTalk:Panther Clipper/@comment-94.6.251.44-20150831132434\nTalk:Panther Clipper/@comment-94.6.251.44-20150831132434/@comment-188.251.171.157-20161020165724\nTalk:Panther Clipper/@comment-94.6.251.44-20150831132434/@comment-79.194.120.121-20160821172617\nTalk:Panther Clipper/@comment-9472148-20160707164821\nTalk:Panther Clipper/@comment-96.60.81.157-20180314170339\nTalk:Panther Clipper/@comment-98.193.10.19-20181107225012\nTalk:Paresa/@comment-27069392-20200731023013\nTalk:Paresa/@comment-27069392-20200731023013/@comment-38697822-20200801145744\nTalk:Passenger Cabin/@comment-106.69.141.79-20170515223952\nTalk:Passenger Cabin/@comment-106.69.141.79-20170515223952/@comment-33441314-20180114212542\nTalk:Passenger Cabin/@comment-106.69.141.79-20170515223952/@comment-88.153.33.59-20190512214406\nTalk:Passenger Cabin/@comment-132.177.214.95-20180606135906\nTalk:Passenger Cabin/@comment-155.192.33.252-20180605075745\nTalk:Passenger Cabin/@comment-155.192.33.252-20180605075745/@comment-2A02:C7F:503E:3300:4058:AFB2:893B:B2FA-20180804093832\nTalk:Passenger Cabin/@comment-155.192.33.252-20180605075745/@comment-77.102.168.39-20190423194254\nTalk:Passenger Cabin/@comment-155.192.33.252-20180605075745/@comment-86.131.216.250-20180713141736\nTalk:Passenger Cabin/@comment-172.115.189.53-20180915034416\nTalk:Passenger Cabin/@comment-172.115.189.53-20180915034416/@comment-122.149.176.162-20190108063533\nTalk:Passenger Cabin/@comment-177.158.21.99-20170511041940\nTalk:Passenger Cabin/@comment-177.158.21.99-20170511041940/@comment-33441314-20180114212629\nTalk:Passenger Cabin/@comment-2195161-20200916175441\nTalk:Passenger Cabin/@comment-2195161-20200916175441/@comment-27008372-20200916205924\nTalk:Passenger Cabin/@comment-2601:100:8380:2460:94E6:FC32:E62E:6E59-20191201070101\nTalk:Passenger Cabin/@comment-2601:100:8380:2460:94E6:FC32:E62E:6E59-20191201070101/@comment-78.153.199.6-20200109204538\nTalk:Passenger Cabin/@comment-2601:643:C101:A5D0:387D:FA94:7031:3DBF-20180620000834\nTalk:Passenger Cabin/@comment-2602:306:CE29:B0D0:D843:E477:F58:DA4C-20190927072743\nTalk:Passenger Cabin/@comment-2602:306:CE29:B0D0:D843:E477:F58:DA4C-20190927072743/@comment-82.1.203.26-20191228161256\nTalk:Passenger Cabin/@comment-30630032-20161129004334\nTalk:Passenger Cabin/@comment-30630032-20161129004334/@comment-33441314-20180114212742\nTalk:Passenger Cabin/@comment-30630032-20161129004334/@comment-91.158.15.3-20161204224012\nTalk:Passenger Cabin/@comment-31153171-20170415013200\nTalk:Passenger Cabin/@comment-31153171-20170415013200/@comment-65.99.49.76-20170426065318\nTalk:Passenger Cabin/@comment-33441314-20180118123406\nTalk:Passenger Cabin/@comment-33493166-20190417211634\nTalk:Passenger Cabin/@comment-33493166-20190417211634/@comment-88.153.33.59-20190424211134\nTalk:Passenger Cabin/@comment-77.102.200.67-20170525124158\nTalk:Passenger Cabin/@comment-77.102.200.67-20170525124158/@comment-73.50.15.211-20190928144823\nTalk:Passenger Cabin/@comment-77.102.200.67-20170525124158/@comment-78.11.232.94-20170629004039\nTalk:Passenger Cabin/@comment-77.102.200.67-20170525124158/@comment-98.146.250.107-20191016194339\nTalk:Passenger Carrier/@comment-109.252.110.137-20180123202115\nTalk:Passenger Carrier/@comment-109.252.110.137-20180123202115/@comment-192.136.161.33-20180123210718\nTalk:Passenger Carrier/@comment-152.132.9.197-20171013225915\nTalk:Passenger Carrier/@comment-152.132.9.197-20171013225915/@comment-24.117.151.21-20171016045104\nTalk:Passenger Carrier/@comment-178.200.236.133-20180802095927\nTalk:Passenger Carrier/@comment-73.45.31.38-20170905161553\nTalk:Passenger Carrier/@comment-78.152.121.130-20180123155027\nTalk:Passenger Carrier/@comment-78.152.121.130-20180123155027/@comment-178.200.236.133-20180731132422\nTalk:Passenger Carrier/@comment-78.152.121.130-20180123155027/@comment-192.136.161.33-20180123180109\nTalk:Pattern Alpha Obelisk Data/@comment-45587726-20200504143507\nTalk:Pattern Delta Obelisk Data/@comment-45587726-20200504143529\nTalk:Pattern Epsilon Obelisk Data/@comment-109.193.150.130-20180902013227\nTalk:Pattern Epsilon Obelisk Data/@comment-109.193.150.130-20180902013227/@comment-132.254.81.1-20180917135453\nTalk:Pattern Epsilon Obelisk Data/@comment-109.193.150.130-20180902013227/@comment-2600:8805:5401:D0:D82D:B61E:D12:DFDC-20181027024528\nTalk:Pattern Epsilon Obelisk Data/@comment-2A01:CB19:690:CC00:E090:7A11:FDDA:2B03-20180630162947\nTalk:Pattern Epsilon Obelisk Data/@comment-46342175-20200713190243\nTalk:Pattern Epsilon Obelisk Data/@comment-77.102.93.43-20180504233958\nTalk:Pattern Epsilon Obelisk Data/@comment-77.102.93.43-20180504233958/@comment-83.103.231.31-20180513102215\nTalk:Pattern Gamma Obelisk Data/@comment-45587726-20200504143533\nTalk:Pavonis Ear Grubs/@comment-151.227.38.48-20150818222221\nTalk:Pavonis Ear Grubs/@comment-27.33.121.44-20150324085002\nTalk:Pavonis Ear Grubs/@comment-27283317-20161124214055\nTalk:Pavonis Ear Grubs/@comment-27283317-20180531192148\nTalk:Pavonis Ear Grubs/@comment-67.187.119.225-20150519023813\nTalk:Pavonis Ear Grubs/@comment-80.108.203.62-20150911000027\nTalk:Pavonis Ear Grubs/@comment-86.52.45.54-20160127004457\nTalk:Penetrator Munitions/@comment-167.201.241.175-20180313113232\nTalk:Penetrator Payload/@comment-144.132.97.136-20190801130624\nTalk:Penetrator Payload/@comment-144.132.97.136-20190801130624/@comment-192.136.172.44-20190803012626\nTalk:Penetrator Payload/@comment-144.132.97.136-20190801130624/@comment-203.104.15.196-20190905041632\nTalk:Penetrator Payload/@comment-144.132.97.136-20190801130624/@comment-27941085-20190919155112\nTalk:Peregrina/@comment-903860-20190121094723\nTalk:Peregrina/@comment-903860-20190121094723/@comment-2001:1284:F016:31CE:C4E9:D455:1872:6E56-20190505220929\nTalk:Peregrina/@comment-903860-20190121094723/@comment-220.101.40.225-20191119025423\nTalk:Peregrina/@comment-903860-20190121094723/@comment-24232410-20200518063634\nTalk:Performance Enhancers/@comment-192.185.1.20-20150123141556\nTalk:Performance Enhancers/@comment-192.185.1.20-20150123141556/@comment-26040397-20150126164950\nTalk:Performance Enhancers/@comment-38.81.153.113-20150829090751\nTalk:Performance Enhancers/@comment-38.81.153.113-20150829090751/@comment-121.45.160.147-20160712113358\nTalk:Permits/@comment-2001:981:4A1E:1:E5B5:E2AF:38AB:F7CF-20170918224451\nTalk:Permits/@comment-2001:981:4A1E:1:E5B5:E2AF:38AB:F7CF-20170918224451/@comment-79.69.78.159-20180116232853\nTalk:Permits/@comment-204.83.38.168-20150811032054\nTalk:Permits/@comment-23998256-20190606122704\nTalk:Permits/@comment-24.86.220.105-20151015181313\nTalk:Permits/@comment-26642794-20200609070114\nTalk:Permits/@comment-37.4.253.81-20151018223920\nTalk:Permits/@comment-37.4.253.81-20151018223920/@comment-216.157.200.126-20151019121455\nTalk:Permits/@comment-37826971-20181215204726\nTalk:Permits/@comment-44154184-20191016233946\nTalk:Permits/@comment-72.161.121.196-20160215185216\nTalk:Permits/@comment-72.161.121.196-20160215185216/@comment-143.81.103.35-20160225211455\nTalk:Permits/@comment-72.174.64.138-20160201202459\nTalk:Permits/@comment-72.174.64.138-20160201202459/@comment-72.174.64.138-20160201202556\nTalk:Permits/@comment-72.182.123.47-20150707221233\nTalk:Permits/@comment-75.159.212.141-20150729064400\nTalk:Permits/@comment-76.102.38.20-20150810104019\nTalk:Permits/@comment-76.71.248.132-20150720072519\nTalk:Permits/@comment-77.10.227.95-20150704133740\nTalk:Permits/@comment-77.10.227.95-20150704133740/@comment-26304615-20150721222026\nTalk:Permits/@comment-77.10.227.95-20150704133740/@comment-98.122.144.150-20150707130850\nTalk:Permits/@comment-78.84.230.229-20180702175239\nTalk:Permits/@comment-86.154.250.127-20180329151851\nTalk:Permits/@comment-86.154.250.127-20180329151851/@comment-2600:8801:2385:3300:D19E:972F:AED0:E4F0-20180330231106\nTalk:Permits/@comment-86.9.59.104-20191220040829\nTalk:Permits/@comment-86.9.59.104-20191220040829/@comment-58.250.174.71-20191228131625\nTalk:Permits/@comment-903860-20190211020911\nTalk:Permits/@comment-95.91.228.25-20160320113139\nTalk:Permits/@comment-95.91.228.25-20160320113139/@comment-162.25.24.153-20160321154535\nTalk:Permits/Alliance/@comment-160.44.230.197-20150717070321\nTalk:Permits/Alliance/@comment-160.44.230.197-20150717070321/@comment-24.77.55.221-20150820034943\nTalk:Permits/Alliance/@comment-91.61.47.95-20190522163519\nTalk:Permits/Empire/@comment-146.60.254.107-20150805171609\nTalk:Permits/Empire/@comment-146.60.254.107-20150805171609/@comment-86.156.202.56-20150806223127\nTalk:Permits/Empire/@comment-174.59.238.138-20151017174847\nTalk:Permits/Empire/@comment-174.59.238.138-20151017174847/@comment-66.109.235.218-20160819184538\nTalk:Permits/Empire/@comment-24.113.13.224-20151022140929\nTalk:Permits/Empire/@comment-64.138.234.25-20151022043300\nTalk:Permits/Empire/@comment-64.138.234.25-20151022043300/@comment-95.147.56.106-20151108221904\nTalk:Permits/Empire/@comment-82.132.224.110-20180724113910\nTalk:Permits/Empire/@comment-94.173.193.173-20150924220701\nTalk:Permits/Federation/@comment-84.118.193.4-20151108191712\nTalk:Permits/Federation/@comment-93.106.238.237-20151025102327\nTalk:Permits/Federation/@comment-93.106.238.237-20151025102327/@comment-86.181.87.197-20170520161150\nTalk:Permits/Federation/@comment-98.202.4.170-20160115204755\nTalk:Permits/Federation/@comment-98.202.4.170-20160115204755/@comment-66.109.235.218-20160819184750\nTalk:Permits/Independent/@comment-26537865-20150722012449\nTalk:Permits/Independent/@comment-26537865-20150722012449/@comment-26537865-20150728024657\nTalk:Permits/Independent/@comment-26537865-20150722012449/@comment-67.180.204.10-20150726182001\nTalk:Permits/Region/@comment-90.201.205.200-20190428140647\nTalk:Permits/Uninhabited/@comment-174.81.29.213-20191129201428\nTalk:Permits/Uninhabited/@comment-176.78.158.9-20190506044003\nTalk:Permits/Uninhabited/@comment-24.21.41.88-20191203102533\nTalk:Persephone/@comment-173.217.124.46-20181107223848\nTalk:Persephone/@comment-207.161.12.173-20180930234211\nTalk:Persephone/@comment-24.255.17.45-20180528172510\nTalk:Persephone/@comment-76.24.210.16-20180827125125\nTalk:Personal Gifts/@comment-77.50.26.143-20160814212008\nTalk:Personal Weapons/@comment-104.240.185.169-20150214033245\nTalk:Personal Weapons/@comment-107.133.32.147-20150424204121\nTalk:Personal Weapons/@comment-107.133.32.147-20150424204121/@comment-26009169-20150424210822\nTalk:Personal Weapons/@comment-173.69.136.212-20150415013105\nTalk:Personal Weapons/@comment-188.109.14.193-20150111133725\nTalk:Personal Weapons/@comment-188.192.57.242-20150219231120\nTalk:Personal Weapons/@comment-25935038-20141228174718\nTalk:Personal Weapons/@comment-25981098-20150107065821\nTalk:Personal Weapons/@comment-63.225.6.7-20150405060940\nTalk:Personal Weapons/@comment-71.180.64.90-20150211193805\nTalk:Personal Weapons/@comment-71.92.125.107-20150108123609\nTalk:Personal Weapons/@comment-71.92.125.107-20150108123609/@comment-65.35.194.48-20150131062042\nTalk:Personal Weapons/@comment-71.92.125.107-20150108123609/@comment-71.92.125.107-20150108125443\nTalk:Personal Weapons/@comment-74.90.92.146-20150419200045\nTalk:Personal Weapons/@comment-74.90.92.146-20150419200045/@comment-26009169-20150419205914\nTalk:Personal Weapons/@comment-76.178.23.25-20150308165218\nTalk:Personal Weapons/@comment-78.145.143.47-20141224155201\nTalk:Personal Weapons/@comment-78.145.143.47-20141224155201/@comment-198.48.235.150-20150103230915\nTalk:Personal Weapons/@comment-78.145.143.47-20141224155201/@comment-92.40.248.103-20150104174914\nTalk:Personal Weapons/@comment-79.223.132.169-20150204204904\nTalk:Personal Weapons/@comment-80.0.59.65-20150118164420\nTalk:Personal Weapons/@comment-80.0.59.65-20150118164420/@comment-26077237-20150215204228\nTalk:Personal Weapons/@comment-80.249.216.107-20150331081456\nTalk:Personal Weapons/@comment-80.249.216.107-20150331081456/@comment-108.242.216.67-20150407013315\nTalk:Personal Weapons/@comment-85.246.140.217-20150424101245\nTalk:Personal Weapons/@comment-87.67.188.79-20141228125301\nTalk:Personal Weapons/@comment-87.67.188.79-20141228125301/@comment-109.73.208.55-20150118084300\nTalk:Personal Weapons/@comment-87.67.188.79-20141228125301/@comment-25935038-20141228174732\nTalk:Personal Weapons/@comment-87.67.188.79-20141228125301/@comment-72.160.16.135-20150202194932\nTalk:Personal Weapons/@comment-90.222.86.59-20150115022847\nTalk:Personal Weapons/@comment-94.222.63.109-20150116000034\nTalk:Personal Weapons/@comment-94.222.63.109-20150116000034/@comment-50.157.251.244-20150129021038\nTalk:Personal Weapons/@comment-94.222.63.109-20150116000034/@comment-79.216.249.239-20150116190432\nTalk:Personal Weapons/@comment-94.224.205.48-20150103224228\nTalk:Personal Weapons/@comment-96.225.135.19-20150224214638\nTalk:Peter Jameson/@comment-24.255.17.45-20180516141943\nTalk:Petra Olmanova/@comment-192.228.232.114-20190109031838\nTalk:Petra Olmanova/@comment-192.228.232.114-20190109031838/@comment-2A02:8109:4C0:1B8:781D:3561:9729:80A8-20190111144534\nTalk:Petra Olmanova/@comment-2600:8807:1082:A00:4047:AA2A:AD7C:CE07-20180909133534\nTalk:Petra Olmanova/@comment-2600:8807:1082:A00:4047:AA2A:AD7C:CE07-20180909133534/@comment-2601:197:702:745:8CC6:974A:FD94:D937-20181216200536\nTalk:Petra Olmanova/@comment-2601:197:702:745:8CC6:974A:FD94:D937-20181216200434\nTalk:Pharmaceutical Isolators/@comment-36172442-20200209021538\nTalk:Pharmaceutical Isolators/@comment-36172442-20200209021538/@comment-90.255.196.183-20200209115631\nTalk:Pharmaceutical Isolators/@comment-38815805-20200411122907\nTalk:Pharmaceutical Isolators/@comment-45519499-20200609225021\nTalk:Phasing Sequence/@comment-1.157.15.190-20190901035741\nTalk:Phasing Sequence/@comment-109.40.2.222-20190214210054\nTalk:Phasing Sequence/@comment-109.40.2.222-20190214210054/@comment-192.136.170.98-20190215011238\nTalk:Phasing Sequence/@comment-192.136.161.33-20180507153637\nTalk:Phasing Sequence/@comment-192.136.161.33-20180507153637/@comment-2604:6000:1517:8053:B98C:8702:16D1:7557-20181108035921\nTalk:Phasing Sequence/@comment-2001:5B0:4BC1:4C00:0:FF:FEBD:63F2-20181111113109\nTalk:Phasing Sequence/@comment-2001:5B0:4BC1:4C00:0:FF:FEBD:63F2-20181111113109/@comment-192.136.170.98-20181126204849\nTalk:Phasing Sequence/@comment-2001:5B0:4BC1:4C00:0:FF:FEBD:63F2-20181111113109/@comment-2601:246:102:1B07:3895:A491:C936:A794-20181126171250\nTalk:Phasing Sequence/@comment-2A01:C23:7C1C:A868:5851:A915:56BB:A103-20180102233215\nTalk:Phasing Sequence/@comment-43982350-20200913002716\nTalk:Phasing Sequence/@comment-5.49.89.6-20171227211413\nTalk:Phasing Sequence/@comment-5.49.89.6-20171227211413/@comment-192.136.161.33-20180103205700\nTalk:Phasing Sequence/@comment-90.200.46.38-20181110171322\nTalk:Phasing Sequence/@comment-90.200.46.38-20181127203221\nTalk:Phasing Sequence/@comment-90.200.46.38-20181127203221/@comment-176.241.72.203-20190729021640\nTalk:Phasing Sequence/@comment-90.200.46.38-20181127203221/@comment-192.136.170.98-20181127203937\nTalk:Phasing Sequence/@comment-90.200.46.38-20181127203221/@comment-192.136.172.44-20190731025541\nTalk:Phasing Sequence/@comment-96.250.114.167-20191226231123\nTalk:Pilot/@comment-173.73.173.35-20170128233836\nTalk:Pilot/@comment-173.73.173.35-20170128233836/@comment-173.73.173.35-20170129022509\nTalk:Pilot/@comment-173.73.173.35-20170128233836/@comment-173.73.173.35-20170129023006\nTalk:Pilot/@comment-173.73.173.35-20170128233836/@comment-173.73.173.35-20170205004516\nTalk:Pilot/@comment-173.73.173.35-20170128233836/@comment-173.73.173.35-20170205013507\nTalk:Pilot/@comment-173.73.173.35-20170128233836/@comment-2003:DB:F70F:D60C:7D14:AAC5:15C1:17E0-20200124230114\nTalk:Pilot/@comment-173.73.173.35-20170128233836/@comment-30245159-20170128234045\nTalk:Pilot/@comment-173.73.173.35-20170128233836/@comment-30245159-20170129180455\nTalk:Pilot/@comment-173.73.173.35-20170128233836/@comment-52.129.120.199-20170829024038\nTalk:Pilot/@comment-199.185.188.42-20190701233040\nTalk:Pilot/@comment-199.185.188.42-20190701233040/@comment-192.136.172.44-20190708210711\nTalk:Pilot/@comment-199.185.188.42-20190701233040/@comment-2600:6C40:1080:D:0:179:7855:3E41-20200101092610\nTalk:Pilot/@comment-2003:DB:F70F:D6E2:A94A:602A:D0B7:92BC-20200123161428\nTalk:Pilot/@comment-2003:DB:F70F:D6E2:A94A:602A:D0B7:92BC-20200123161428/@comment-2003:DB:F70F:D6EA:ADB1:3BA5:2504:FB30-20200125130148\nTalk:Pilot/@comment-2003:DB:F70F:D6E2:A94A:602A:D0B7:92BC-20200123161428/@comment-43982350-20200915143305\nTalk:Pilot/@comment-76.14.169.25-20180128214032\nTalk:Pilot/@comment-76.14.169.25-20180128214032/@comment-185.128.217.105-20190428234629\nTalk:Pilot/@comment-76.14.169.25-20180128214032/@comment-2003:DB:F70F:D60C:7D14:AAC5:15C1:17E0-20200124151659\nTalk:Pilot/@comment-76.14.169.25-20180128214032/@comment-37.19.116.131-20180302093656\nTalk:Pilot/@comment-76.14.169.25-20180128214032/@comment-96.250.114.167-20190905232524\nTalk:Pilot/@comment-86.52.85.36-20171011190015\nTalk:Pilot/@comment-86.52.85.36-20171011190015/@comment-2003:DB:F70F:D60C:7D14:AAC5:15C1:17E0-20200124143722\nTalk:Pilot/@comment-86.52.85.36-20171011190015/@comment-2003:DB:F70F:D60C:7D14:AAC5:15C1:17E0-20200124144935\nTalk:Pilot/@comment-86.52.85.36-20171011190015/@comment-71.45.177.141-20171128175533\nTalk:Pilot/@comment-86.52.85.36-20171011190015/@comment-86.52.85.36-20171221165442\nTalk:Pilot/@comment-90.200.46.38-20181115141241\nTalk:Pilot/@comment-90.200.46.38-20181115141241/@comment-100.2.252.64-20181127080716\nTalk:Pilot/@comment-91.38.120.135-20180527200327\nTalk:Pilot/@comment-93.76.190.38-20190814161103\nTalk:Pilot/@comment-93.76.190.38-20190814161103/@comment-2003:DB:F70F:D60C:7D14:AAC5:15C1:17E0-20200124134417\nTalk:Pilots' Federation District/@comment-82.41.147.117-20200211135852\nTalk:Pilots' Federation District/@comment-82.41.147.117-20200211135852/@comment-24.80.76.57-20200216203333\nTalk:Pilots Federation/@comment-104.7.107.21-20150109025635\nTalk:Pilots Federation/@comment-104.7.107.21-20150109025635/@comment-165.228.8.88-20150120035227\nTalk:Pilots Federation/@comment-114.134.187.103-20150323120523\nTalk:Pilots Federation/@comment-114.134.187.103-20150323120523/@comment-110.76.145.134-20150717011720\nTalk:Pilots Federation/@comment-114.134.187.103-20150323120523/@comment-220.233.64.162-20150403131918\nTalk:Pilots Federation/@comment-114.134.187.103-20150323120523/@comment-68.144.118.152-20151106181817\nTalk:Pilots Federation/@comment-114.134.187.103-20150323120523/@comment-93.103.14.160-20150421094258\nTalk:Pilots Federation/@comment-12.47.78.2-20150126122414\nTalk:Pilots Federation/@comment-12.47.78.2-20150126122414/@comment-193.164.115.226-20150424100631\nTalk:Pilots Federation/@comment-12.47.78.2-20150126122414/@comment-77.243.41.13-20150219104938\nTalk:Pilots Federation/@comment-12.47.78.2-20150126122414/@comment-88.175.110.191-20150323000542\nTalk:Pilots Federation/@comment-12.47.78.2-20150126122414/@comment-92.233.155.30-20150201003817\nTalk:Pilots Federation/@comment-143.81.103.35-20160205192035\nTalk:Pilots Federation/@comment-151.224.0.41-20150118015747\nTalk:Pilots Federation/@comment-151.225.141.168-20160308180005\nTalk:Pilots Federation/@comment-151.225.141.168-20160308180005/@comment-24.191.104.87-20161102191024\nTalk:Pilots Federation/@comment-151.225.141.168-20160308180005/@comment-71.233.88.91-20160715142847\nTalk:Pilots Federation/@comment-153.184.96.8-20150921083256\nTalk:Pilots Federation/@comment-153.184.96.8-20150921083256/@comment-143.81.103.35-20160112194001\nTalk:Pilots Federation/@comment-153.184.96.8-20150921083256/@comment-195.70.101.49-20150921125536\nTalk:Pilots Federation/@comment-153.184.96.8-20150921083256/@comment-217.121.218.161-20151109095239\nTalk:Pilots Federation/@comment-153.184.96.8-20150921083256/@comment-26559030-20151012082410\nTalk:Pilots Federation/@comment-153.184.96.8-20150921083256/@comment-73.1.55.15-20151011225959\nTalk:Pilots Federation/@comment-153.184.96.8-20150921083256/@comment-94.6.152.78-20170808135324\nTalk:Pilots Federation/@comment-173.179.88.88-20161211131348\nTalk:Pilots Federation/@comment-173.179.88.88-20161211131348/@comment-121.99.54.42-20170114013108\nTalk:Pilots Federation/@comment-173.179.88.88-20161211131348/@comment-145.253.244.83-20170620081913\nTalk:Pilots Federation/@comment-173.179.88.88-20161211131348/@comment-186.206.63.29-20190118164512\nTalk:Pilots Federation/@comment-173.179.88.88-20161211131348/@comment-192.136.161.52-20161211154137\nTalk:Pilots Federation/@comment-173.179.88.88-20161211131348/@comment-82.46.123.131-20170713110035\nTalk:Pilots Federation/@comment-184.151.61.11-20150115171626\nTalk:Pilots Federation/@comment-184.91.189.54-20150601020311\nTalk:Pilots Federation/@comment-184.91.189.54-20150601020311/@comment-185.46.212.65-20150707105339\nTalk:Pilots Federation/@comment-184.91.189.54-20150601020311/@comment-24.188.190.253-20150908183833\nTalk:Pilots Federation/@comment-184.91.189.54-20150601020311/@comment-26361572-20151202171510\nTalk:Pilots Federation/@comment-184.91.189.54-20150601020311/@comment-86.163.248.194-20150912183351\nTalk:Pilots Federation/@comment-184.91.189.54-20150601020311/@comment-87.127.164.177-20150719153926\nTalk:Pilots Federation/@comment-184.91.189.54-20150601020311/@comment-95.90.250.113-20151107161016\nTalk:Pilots Federation/@comment-203.214.128.236-20150115133549\nTalk:Pilots Federation/@comment-205.222.248.112-20141218133801\nTalk:Pilots Federation/@comment-205.222.248.112-20141218133801/@comment-107.77.85.95-20150123203304\nTalk:Pilots Federation/@comment-205.222.248.112-20141218133801/@comment-70.68.43.197-20150117051146\nTalk:Pilots Federation/@comment-205.222.248.112-20141218133801/@comment-71.195.74.180-20141219020839\nTalk:Pilots Federation/@comment-205.222.248.112-20141218133801/@comment-71.95.100.70-20150109051843\nTalk:Pilots Federation/@comment-205.222.248.112-20141218133801/@comment-94.72.249.65-20141222145600\nTalk:Pilots Federation/@comment-213.7.33.89-20150423191847\nTalk:Pilots Federation/@comment-213.7.33.89-20150423191847/@comment-132.3.13.78-20150430021900\nTalk:Pilots Federation/@comment-213.7.33.89-20150423191847/@comment-26009169-20150430125245\nTalk:Pilots Federation/@comment-213.7.33.89-20150423191847/@comment-27032150-20160719092952\nTalk:Pilots Federation/@comment-217.115.65.19-20150122175224\nTalk:Pilots Federation/@comment-24.188.190.253-20150908184536\nTalk:Pilots Federation/@comment-24.72.128.134-20151113233542\nTalk:Pilots Federation/@comment-24423467-20150108225107\nTalk:Pilots Federation/@comment-25590341-20151020082502\nTalk:Pilots Federation/@comment-25590341-20151020082502/@comment-87.127.164.177-20161118195427\nTalk:Pilots Federation/@comment-25590341-20151201153132\nTalk:Pilots Federation/@comment-2600:6C64:6C7F:F58E:CD2E:F665:92C1:FF68-20170803213144\nTalk:Pilots Federation/@comment-26216551-20150317152432\nTalk:Pilots Federation/@comment-26244861-20150325232446\nTalk:Pilots Federation/@comment-26314127-20150415052733\nTalk:Pilots Federation/@comment-26314127-20150415052733/@comment-132.3.13.79-20150430022319\nTalk:Pilots Federation/@comment-26314127-20150415052733/@comment-70.114.176.75-20150427040509\nTalk:Pilots Federation/@comment-26314127-20150415052733/@comment-71.233.88.91-20160723144745\nTalk:Pilots Federation/@comment-47.33.180.22-20170212222827\nTalk:Pilots Federation/@comment-50.104.67.17-20150324005256\nTalk:Pilots Federation/@comment-50.88.121.45-20150125221422\nTalk:Pilots Federation/@comment-50.88.121.45-20150125221422/@comment-12138097-20150126030406\nTalk:Pilots Federation/@comment-5016083-20150209074120\nTalk:Pilots Federation/@comment-5016083-20150209074120/@comment-172.9.224.106-20150324004418\nTalk:Pilots Federation/@comment-5016083-20150209074120/@comment-174.102.96.147-20150302223806\nTalk:Pilots Federation/@comment-5016083-20150209074120/@comment-746248-20150316081928\nTalk:Pilots Federation/@comment-5016083-20150209074120/@comment-75.117.160.137-20150305001740\nTalk:Pilots Federation/@comment-5016083-20150209074120/@comment-92.1.13.66-20150507171712\nTalk:Pilots Federation/@comment-64.229.218.225-20150520025757\nTalk:Pilots Federation/@comment-64.229.218.225-20150520025757/@comment-129.130.18.62-20151031022006\nTalk:Pilots Federation/@comment-64.229.218.225-20150520025757/@comment-2155082-20160727044434\nTalk:Pilots Federation/@comment-64.229.218.225-20150520025757/@comment-66.191.253.76-20160726190128\nTalk:Pilots Federation/@comment-64.229.218.225-20150520025757/@comment-71.233.88.91-20160715143130\nTalk:Pilots Federation/@comment-64.229.218.225-20150520025757/@comment-71.233.88.91-20160723124541\nTalk:Pilots Federation/@comment-64.229.218.225-20150520025757/@comment-71.233.88.91-20160723124559\nTalk:Pilots Federation/@comment-67.186.92.128-20150527052251\nTalk:Pilots Federation/@comment-67.186.92.128-20150609091954\nTalk:Pilots Federation/@comment-68.150.167.0-20151122200930\nTalk:Pilots Federation/@comment-68.150.167.0-20151122200930/@comment-26361572-20151202171008\nTalk:Pilots Federation/@comment-70.71.131.151-20150214183327\nTalk:Pilots Federation/@comment-71.84.127.154-20151101062329\nTalk:Pilots Federation/@comment-71.95.100.70-20150109051931\nTalk:Pilots Federation/@comment-74.103.242.59-20150330034355\nTalk:Pilots Federation/@comment-74.103.242.59-20150330034355/@comment-71.233.88.91-20160723144923\nTalk:Pilots Federation/@comment-74.103.242.59-20150330034355/@comment-98.117.94.58-20150404173234\nTalk:Pilots Federation/@comment-77.68.144.102-20150116173252\nTalk:Pilots Federation/@comment-77.68.144.102-20150116173252/@comment-109.152.64.19-20150214230635\nTalk:Pilots Federation/@comment-77.68.144.102-20150116173252/@comment-186.120.170.72-20150120135123\nTalk:Pilots Federation/@comment-77.68.144.102-20150116173252/@comment-2.221.147.164-20150217181037\nTalk:Pilots Federation/@comment-80.212.158.137-20150425014759\nTalk:Pilots Federation/@comment-80.212.158.137-20150425014759/@comment-67.180.178.100-20160718193215\nTalk:Pilots Federation/@comment-80.212.158.137-20150425014759/@comment-71.2.247.208-20160306210528\nTalk:Pilots Federation/@comment-80.212.158.137-20150425014759/@comment-71.21.3.159-20150708135440\nTalk:Pilots Federation/@comment-80.212.158.137-20150425014759/@comment-82.25.185.43-20150520051034\nTalk:Pilots Federation/@comment-82.137.13.217-20150829114142\nTalk:Pilots Federation/@comment-82.137.13.217-20150829114142/@comment-216.116.252.50-20150916163823\nTalk:Pilots Federation/@comment-82.250.222.63-20150322234301\nTalk:Pilots Federation/@comment-82.45.170.141-20150622185806\nTalk:Pilots Federation/@comment-82.45.170.141-20150622185806/@comment-46.64.60.128-20150730203538\nTalk:Pilots Federation/@comment-82.45.170.141-20150622185806/@comment-68.112.82.234-20150706090304\nTalk:Pilots Federation/@comment-82.69.22.226-20150219091209\nTalk:Pilots Federation/@comment-83.254.38.215-20150820114045\nTalk:Pilots Federation/@comment-83.254.38.215-20150820114045/@comment-26361572-20151202171303\nTalk:Pilots Federation/@comment-84.105.246.107-20150326233059\nTalk:Pilots Federation/@comment-84.105.246.107-20150326233059/@comment-84.105.246.107-20150327232524\nTalk:Pilots Federation/@comment-85.7.20.185-20170120150630\nTalk:Pilots Federation/@comment-86.149.18.26-20150410052835\nTalk:Pilots Federation/@comment-86.149.18.26-20150410052835/@comment-50.88.128.103-20150416092443\nTalk:Pilots Federation/@comment-86.49.39.227-20150524010959\nTalk:Pilots Federation/@comment-86.49.39.227-20150524010959/@comment-26559030-20150810143258\nTalk:Pilots Federation/@comment-86.59.167.129-20150322232347\nTalk:Pilots Federation/@comment-87.158.143.128-20150106024346\nTalk:Pilots Federation/@comment-87.158.150.252-20150226102210\nTalk:Pilots Federation/@comment-89.102.141.56-20150115091558\nTalk:Pilots Federation/@comment-89.102.141.56-20150115091558/@comment-209.242.166.83-20150130175716\nTalk:Pilots Federation/@comment-89.102.141.56-20150115091558/@comment-77.176.187.21-20150115123545\nTalk:Pilots Federation/@comment-89.102.141.56-20150115091558/@comment-80.187.108.37-20150122220557\nTalk:Pilots Federation/@comment-89.102.141.56-20150115091558/@comment-85.165.212.157-20150119005237\nTalk:Pilots Federation/@comment-89.102.141.56-20150115091558/@comment-89.102.140.98-20150201092519\nTalk:Pilots Federation/@comment-89.102.141.56-20150115091558/@comment-89.102.140.98-20150201092610\nTalk:Pilots Federation/@comment-89.102.141.56-20150115091558/@comment-89.102.140.98-20150216103357\nTalk:Pilots Federation/@comment-92.108.91.178-20150317021309\nTalk:Pilots Federation/@comment-92.108.91.178-20150317021309/@comment-91.66.140.21-20150322193222\nTalk:Pilots Federation/@comment-92.108.91.178-20150317021309/@comment-92.108.91.178-20150317021459\nTalk:Pilots Federation/@comment-92.108.91.178-20150317021309/@comment-95.114.15.30-20150331125900\nTalk:Pilots Federation/@comment-92.108.91.178-20150317233749\nTalk:Pilots Federation/@comment-92.201.9.186-20150914212633\nTalk:Pilots Federation/@comment-94.12.31.80-20170726232614\nTalk:Pilots Federation/@comment-94.12.31.80-20170726232614/@comment-188.146.104.140-20170801204457\nTalk:Pilots Federation/@comment-95.114.15.30-20150331125912\nTalk:Pilots Federation/@comment-95.114.15.30-20150331125912/@comment-73.194.182.11-20150408221126\nTalk:Pilots Federation/@comment-95.114.15.30-20150331125912/@comment-89.101.53.58-20150404162036\nTalk:Pilots Federation/@comment-96.52.184.32-20151026013141\nTalk:Pilots Federation/@comment-99.135.98.174-20150326211812\nTalk:Pilots Federation/@comment-99.135.98.174-20150326211812/@comment-2087162-20150923190954\nTalk:Pilots Guide/@comment-104.240.110.2-20180328081242\nTalk:Pilots Guide/@comment-104.240.110.2-20180328081242/@comment-206.19.54.254-20190709220359\nTalk:Pilots Guide/@comment-124.171.190.104-20140804082106\nTalk:Pilots Guide/@comment-124.171.190.104-20140804082106/@comment-6033893-20140804211430\nTalk:Pilots Guide/@comment-124.171.190.104-20140804082106/@comment-72.222.195.70-20140809164204\nTalk:Pilots Guide/@comment-124.171.190.104-20140804082106/@comment-74.101.153.175-20141222042343\nTalk:Pilots Guide/@comment-124.171.190.104-20140804082106/@comment-93.220.65.146-20140813184554\nTalk:Pilots Guide/@comment-26483328-20150619122331\nTalk:Pilots Guide/@comment-27927301-20160306164634\nTalk:Pilots Guide/@comment-32.212.141.244-20140906211240\nTalk:Pilots Guide/@comment-32.212.141.244-20140906211240/@comment-121.73.137.206-20150224034656\nTalk:Pilots Guide/@comment-73.193.15.27-20151015001422\nTalk:Pilots Guide/@comment-82.31.177.188-20141218164457\nTalk:Pilots Guide/@comment-84.113.8.35-20140917220801\nTalk:Pilots Guide/@comment-84.113.8.35-20140917220801/@comment-109.155.59.229-20140922120453\nTalk:Pirate/@comment-108.16.36.43-20170325023411\nTalk:Pirate/@comment-109.146.134.215-20150411124950\nTalk:Pirate/@comment-131.228.32.167-20190325142435\nTalk:Pirate/@comment-153.107.193.211-20160223235652\nTalk:Pirate/@comment-153.107.193.211-20160223235652/@comment-153.107.193.211-20160223235919\nTalk:Pirate/@comment-153.107.193.211-20160223235652/@comment-66.191.253.76-20160725035926\nTalk:Pirate/@comment-153.107.193.211-20160223235652/@comment-84.3.175.207-20161126163743\nTalk:Pirate/@comment-153.107.193.211-20160223235652/@comment-98.186.84.109-20160821164247\nTalk:Pirate/@comment-156.3.54.203-20150520163219\nTalk:Pirate/@comment-198.53.185.172-20150430083156\nTalk:Pirate/@comment-209.203.31.186-20150423055617\nTalk:Pirate/@comment-24.61.235.218-20150308180028\nTalk:Pirate/@comment-24.61.235.218-20150308180028/@comment-156.34.185.85-20150406220013\nTalk:Pirate/@comment-24.61.235.218-20150308180028/@comment-24.14.215.87-20151221033139\nTalk:Pirate/@comment-27311754-20151204152951\nTalk:Pirate/@comment-27311754-20151204152951/@comment-143.81.103.35-20160124013307\nTalk:Pirate/@comment-27311754-20151204152951/@comment-98.186.84.109-20160821164434\nTalk:Pirate/@comment-35650861-20181215083959\nTalk:Pirate/@comment-37938660-20190110070700\nTalk:Pirate/@comment-6033893-20140818081343\nTalk:Pirate/@comment-6033893-20140818081343/@comment-122.57.114.143-20140818084511\nTalk:Pirate/@comment-6033893-20140818081343/@comment-6033893-20140818090047\nTalk:Pirate/@comment-68.110.93.194-20150702080548\nTalk:Pirate/@comment-68.110.93.194-20150702080548/@comment-108.194.60.226-20150711120137\nTalk:Pirate/@comment-68.110.93.194-20150702080548/@comment-12.5.54.135-20151209162706\nTalk:Pirate/@comment-68.110.93.194-20150702080548/@comment-12.5.54.135-20151209162733\nTalk:Pirate/@comment-68.110.93.194-20150702080548/@comment-129.130.19.35-20190807164433\nTalk:Pirate/@comment-68.110.93.194-20150702080548/@comment-173.70.28.248-20160929172055\nTalk:Pirate/@comment-68.110.93.194-20150702080548/@comment-176.252.138.89-20151025184909\nTalk:Pirate/@comment-68.110.93.194-20150702080548/@comment-194.25.30.9-20150708091309\nTalk:Pirate/@comment-68.110.93.194-20150702080548/@comment-24.239.249.103-20150719141415\nTalk:Pirate/@comment-68.110.93.194-20150702080548/@comment-39085855-20200304153349\nTalk:Pirate/@comment-68.110.93.194-20150702080548/@comment-73.53.248.49-20151126202543\nTalk:Pirate/@comment-74.90.92.146-20151002235024\nTalk:Pirate/@comment-80.194.73.78-20141226153750\nTalk:Pirate/@comment-80.194.73.78-20141226153750/@comment-151.227.121.6-20150402222303\nTalk:Pirate/@comment-80.194.73.78-20141226153750/@comment-24938102-20150426090148\nTalk:Pirate/@comment-80.194.73.78-20141226153750/@comment-81.90.253.5-20150804170317\nTalk:Pirate/@comment-83.31.105.24-20150812140816\nTalk:Pirate/@comment-88.85.155.146-20150502170032\nTalk:Pirate/@comment-88.85.155.146-20150502170032/@comment-66.191.253.76-20160725040058\nTalk:Pirate/@comment-88.85.155.146-20150502170032/@comment-88.112.91.114-20150509175628\nTalk:Pirate/@comment-90.200.46.38-20181103131032\nTalk:Pirate/@comment-94.12.31.80-20170803135319\nTalk:Pirate/@comment-99.192.50.108-20150125032503\nTalk:Pirate/@comment-99.192.50.108-20150125032503/@comment-66.76.53.124-20150225141947\nTalk:Pirate Activity Detected/@comment-121.211.17.37-20181022114947\nTalk:Pirate Activity Detected/@comment-2606:A000:C706:7C00:DDCA:65B5:608F:33FE-20181208153827\nTalk:Pirate Activity Detected/@comment-46031694-20200608120801\nTalk:Pirate Activity Detected/@comment-80.5.70.141-20180812222213\nTalk:Pirate Activity Detected/@comment-80.5.70.141-20180812222213/@comment-25527827-20180923014915\nTalk:Pirate Activity Detected/@comment-86.125.235.242-20180718090501\nTalk:Pirate Activity Detected/@comment-86.125.235.242-20180718090501/@comment-86.125.235.242-20180718091346\nTalk:Pirate Activity Detected/@comment-89.77.130.239-20180708120927\nTalk:Pirate Activity Detected/@comment-89.77.130.239-20180708120927/@comment-192.136.163.15-20180708223343\nTalk:Pirate Activity Detected/@comment-89.77.130.239-20180708120927/@comment-37938660-20200208121157\nTalk:Pirate Activity Detected/@comment-89.77.130.239-20180708120927/@comment-80.192.61.218-20180709101117\nTalk:Pirate Activity Detected/@comment-89.77.130.239-20180708120927/@comment-92.20.237.174-20180709190858\nTalk:Planet Lave/@comment-2602:306:CE29:B0D0:B09F:CAE2:C528:B782-20190901202203\nTalk:Planet Lave/@comment-27311754-20151204175604\nTalk:Planetary Approach Suite/@comment-165.132.128.158-20170629161207\nTalk:Planetary Approach Suite/@comment-212.252.98.10-20161029004646\nTalk:Planetary Approach Suite/@comment-212.252.98.10-20161029004646/@comment-173.69.129.2-20170712195709\nTalk:Planetary Approach Suite/@comment-212.252.98.10-20161029004646/@comment-202.80.212.204-20161029163033\nTalk:Planetary Approach Suite/@comment-212.252.98.10-20161029004646/@comment-2155082-20170712200132\nTalk:Planetary Approach Suite/@comment-212.252.98.10-20161029004646/@comment-2601:184:4A7F:F253:6080:C282:65D5:A8D8-20171229004025\nTalk:Planetary Approach Suite/@comment-212.252.98.10-20161029004646/@comment-73.12.9.164-20170123083846\nTalk:Planetary Approach Suite/@comment-2601:184:4A7F:F253:6080:C282:65D5:A8D8-20171229003911\nTalk:Planetary Approach Suite/@comment-2601:184:4A7F:F253:6080:C282:65D5:A8D8-20171229003911/@comment-34848132-20180228082649\nTalk:Planetary Approach Suite/@comment-28138495-20180225032610\nTalk:Planetary Approach Suite/@comment-28138495-20180225032610/@comment-192.136.161.33-20180225041557\nTalk:Planetary Approach Suite/@comment-28138495-20180225032610/@comment-192.136.161.33-20180226140826\nTalk:Planetary Approach Suite/@comment-28138495-20180225032610/@comment-28138495-20180225085019\nTalk:Planetary Approach Suite/@comment-83.87.73.52-20170527093902\nTalk:Planetary Landings/@comment-104.0.180.8-20190702044133\nTalk:Planetary Landings/@comment-104.0.180.8-20190702044133/@comment-159.117.166.12-20191212053819\nTalk:Planetary Vehicle Hangar/@comment-128.0.208.232-20160115210125\nTalk:Planetary Vehicle Hangar/@comment-128.0.208.232-20160115210125/@comment-26391992-20160116202747\nTalk:Planetary Vehicle Hangar/@comment-217.63.51.178-20170131230311\nTalk:Planetary Vehicle Hangar/@comment-217.63.51.178-20170131230311/@comment-79.73.178.109-20170218111405\nTalk:Planetary Vehicle Hangar/@comment-2601:183:200:81E7:7580:7A7:D9AB:6CC4-20180411235015\nTalk:Planetary Vehicle Hangar/@comment-2601:183:200:81E7:7580:7A7:D9AB:6CC4-20180411235015/@comment-189.166.9.65-20180524040919\nTalk:Planetary Vehicle Hangar/@comment-2601:183:200:81E7:7580:7A7:D9AB:6CC4-20180411235015/@comment-2003:DB:F70F:D66E:6194:BCB3:D1D:4B6B-20200127140212\nTalk:Planetary Vehicle Hangar/@comment-2601:183:200:81E7:7580:7A7:D9AB:6CC4-20180411235015/@comment-46280882-20200706173904\nTalk:Planetary Vehicle Hangar/@comment-27336833-20151216114604\nTalk:Planetary Vehicle Hangar/@comment-27336833-20151216114604/@comment-27437558-20151220203552\nTalk:Planetary Vehicle Hangar/@comment-27336833-20151216114604/@comment-5149958-20151216181600\nTalk:Planetary Vehicle Hangar/@comment-27336833-20151216114604/@comment-75.187.152.96-20151221225222\nTalk:Planetary Vehicle Hangar/@comment-27336833-20151216114604/@comment-90.212.134.180-20151216233528\nTalk:Planetary Vehicle Hangar/@comment-27336833-20151216114604/@comment-98.202.40.46-20160123221443\nTalk:Planetary Vehicle Hangar/@comment-27336833-20151216114604/@comment-98.202.40.46-20160123221553\nTalk:Planetary Vehicle Hangar/@comment-27680937-20170712065823\nTalk:Planetary Vehicle Hangar/@comment-27680937-20170712065823/@comment-2155082-20170712193708\nTalk:Planetary Vehicle Hangar/@comment-27680937-20170712065823/@comment-27680937-20170712205549\nTalk:Planetary Vehicle Hangar/@comment-45.59.56.122-20171231231348\nTalk:Planetary Vehicle Hangar/@comment-45.59.56.122-20171231231348/@comment-94.210.130.209-20180107213157\nTalk:Planetary Vehicle Hangar/@comment-84.104.54.118-20160913182837\nTalk:Planetary Vehicle Hangar/@comment-84.104.54.118-20160913182837/@comment-208.119.81.90-20190811183205\nTalk:Planetary Vehicle Hangar/@comment-85.87.44.86-20160111235915\nTalk:Planetary Vehicle Hangar/@comment-85.87.44.86-20160111235915/@comment-159.224.131.168-20170331095825\nTalk:Planetary Vehicle Hangar/@comment-90.217.42.150-20160224185915\nTalk:Planetary Vehicle Hangar/@comment-90.217.42.150-20160224185915/@comment-2155082-20160224204642\nTalk:Planets/@comment-108.52.86.237-20170301213616\nTalk:Planets/@comment-108.52.86.237-20170301213616/@comment-84.3.175.207-20170314215650\nTalk:Planets/@comment-125.237.5.238-20170707042323\nTalk:Planets/@comment-125.237.5.238-20170707042500\nTalk:Planets/@comment-172.74.44.60-20150621052850\nTalk:Planets/@comment-173.69.157.180-20170606000524\nTalk:Planets/@comment-173.69.157.180-20170606000524/@comment-2003:DD:B728:4B53:8D3F:EC76:6B47:7170-20190106133852\nTalk:Planets/@comment-173.69.157.180-20170606000524/@comment-30320815-20170612172801\nTalk:Planets/@comment-173.69.157.180-20170606000524/@comment-99.146.68.140-20170617201006\nTalk:Planets/@comment-24360696-20150108030644\nTalk:Planets/@comment-25981159-20150111073945\nTalk:Planets/@comment-25981159-20150111073945/@comment-24360696-20150111173129\nTalk:Planets/@comment-25981159-20150111073945/@comment-24360696-20150116141716\nTalk:Planets/@comment-25981159-20150111073945/@comment-25981159-20150116134539\nTalk:Planets/@comment-25981159-20150111073945/@comment-82.83.143.69-20150116134339\nTalk:Planets/@comment-25981159-20150111073945/@comment-82.83.143.69-20150116204230\nTalk:Planets/@comment-26198498-20160609225715\nTalk:Planets/@comment-26306474-20150426142901\nTalk:Planets/@comment-26306474-20150426142901/@comment-156.3.54.203-20150519145905\nTalk:Planets/@comment-27941085-20191214235702\nTalk:Planets/@comment-31178037-20170204214506\nTalk:Planets/@comment-5744735-20160731014707\nTalk:Planets/@comment-5744735-20160731014707/@comment-2155082-20160731040642\nTalk:Planets/@comment-70.198.73.224-20150731132437\nTalk:Planets/@comment-70.198.73.224-20150731132437/@comment-156.3.54.203-20150903164033\nTalk:Planets/@comment-70.198.73.224-20150731132437/@comment-65.116.116.6-20170912230129\nTalk:Planets/@comment-70.30.83.108-20150109193425\nTalk:Planets/@comment-70.30.83.108-20150109193425/@comment-24360696-20150111201508\nTalk:Planets/@comment-70.30.83.108-20150109193425/@comment-25981159-20150111071523\nTalk:Planets/@comment-73.211.5.139-20151220231221\nTalk:Planets/@comment-77.20.151.150-20150410054209\nTalk:Planets/@comment-77.20.151.150-20150410054209/@comment-77.20.151.150-20150410061519\nTalk:Planets/@comment-82.83.137.248-20150101140935\nTalk:Planets/@comment-84.9.81.209-20170328042818\nTalk:Planets/@comment-84.9.81.209-20170328042818/@comment-125.237.5.238-20170707055409\nTalk:Planets/@comment-84.9.81.209-20170328042818/@comment-99.91.149.243-20170918084514\nTalk:Planets/@comment-86.171.150.243-20160503221246\nTalk:Planets/@comment-86.171.150.243-20160503221246/@comment-86.171.150.243-20160503221416\nTalk:Planets/@comment-89.73.209.101-20150405002040\nTalk:Planets/@comment-89.73.52.82-20150126004029\nTalk:Planets/@comment-92.233.112.147-20150908200058\nTalk:Planets/@comment-92.233.112.147-20150908200058/@comment-176.63.31.242-20151116005811\nTalk:Planets/@comment-92.233.112.147-20150908200058/@comment-27667436-20160808051723\nTalk:Planets/@comment-92.233.112.147-20150908200058/@comment-60.229.147.15-20160126014805\nTalk:Planets/@comment-94.113.145.17-20151129113900\nTalk:Planets/@comment-94.113.145.17-20151129113900/@comment-1028741-20151129114206\nTalk:Planets/@comment-94.113.145.17-20151129113900/@comment-217.136.43.223-20160607091126\nTalk:Planets/@comment-94.113.145.17-20151129115147\nTalk:Planets/@comment-94.113.145.17-20151227060430\nTalk:Planets/@comment-94.113.145.17-20151227060430/@comment-94.113.145.17-20151227064852\nTalk:Plasma Accelerator/@comment-108.181.141.170-20150316120023\nTalk:Plasma Accelerator/@comment-108.181.141.170-20150316120023/@comment-26959616-20151003191918\nTalk:Plasma Accelerator/@comment-108.181.141.170-20150316120023/@comment-31.171.141.41-20170922072634\nTalk:Plasma Accelerator/@comment-108.181.141.170-20150316120023/@comment-67.186.92.128-20150420052225\nTalk:Plasma Accelerator/@comment-108.181.141.170-20150316120023/@comment-76.116.62.127-20150316143634\nTalk:Plasma Accelerator/@comment-108.41.120.242-20160210231921\nTalk:Plasma Accelerator/@comment-110.22.41.252-20150512023931\nTalk:Plasma Accelerator/@comment-156.3.54.202-20150527150027\nTalk:Plasma Accelerator/@comment-162.25.24.153-20160316105103\nTalk:Plasma Accelerator/@comment-166.137.14.108-20150102014533\nTalk:Plasma Accelerator/@comment-167.30.49.2-20150109020116\nTalk:Plasma Accelerator/@comment-212.50.119.23-20141227160812\nTalk:Plasma Accelerator/@comment-24.45.89.88-20150327035002\nTalk:Plasma Accelerator/@comment-25787591-20141207051543\nTalk:Plasma Accelerator/@comment-25787591-20141207051543/@comment-12138097-20150119203302\nTalk:Plasma Accelerator/@comment-25787591-20141207051543/@comment-174.52.214.245-20161113061909\nTalk:Plasma Accelerator/@comment-25787591-20141207051543/@comment-217.189.194.33-20150327224956\nTalk:Plasma Accelerator/@comment-25787591-20141207051543/@comment-25771674-20141228135304\nTalk:Plasma Accelerator/@comment-25787591-20141207051543/@comment-25787591-20141207125151\nTalk:Plasma Accelerator/@comment-25787591-20141207051543/@comment-76.124.162.53-20150208220336\nTalk:Plasma Accelerator/@comment-25787591-20141207051543/@comment-77.35.248.222-20150227022254\nTalk:Plasma Accelerator/@comment-25787591-20141207051543/@comment-80.41.21.62-20150305074112\nTalk:Plasma Accelerator/@comment-25787591-20141207051543/@comment-88.195.244.170-20150119170714\nTalk:Plasma Accelerator/@comment-2602:306:CE29:B0D0:64AD:A199:8DED:88E8-20190924223436\nTalk:Plasma Accelerator/@comment-2602:306:CE29:B0D0:64AD:A199:8DED:88E8-20190924223436/@comment-2003:DB:F70F:D66E:6194:BCB3:D1D:4B6B-20200127201245\nTalk:Plasma Accelerator/@comment-2604:6000:1517:8328:C4AA:76F8:487C:67A6-20181214035350\nTalk:Plasma Accelerator/@comment-26306474-20150428182535\nTalk:Plasma Accelerator/@comment-26306474-20150428182535/@comment-98.167.235.4-20150820001537\nTalk:Plasma Accelerator/@comment-26344565-20150425192212\nTalk:Plasma Accelerator/@comment-26959616-20151003173133\nTalk:Plasma Accelerator/@comment-26959616-20151003173133/@comment-2600:8800:E80:124:CC8B:377B:911A:5BAD-20180823013622\nTalk:Plasma Accelerator/@comment-26959616-20151003173133/@comment-26599825-20151004074452\nTalk:Plasma Accelerator/@comment-26959616-20151003173133/@comment-26959616-20151004193227\nTalk:Plasma Accelerator/@comment-30789796-20161219092307\nTalk:Plasma Accelerator/@comment-31.171.141.41-20170922072748\nTalk:Plasma Accelerator/@comment-31.185.234.204-20131117160452\nTalk:Plasma Accelerator/@comment-31.185.234.204-20131117160452/@comment-24.20.112.112-20150107080746\nTalk:Plasma Accelerator/@comment-32434760-20170630014943\nTalk:Plasma Accelerator/@comment-37.136.66.175-20151213181849\nTalk:Plasma Accelerator/@comment-50.36.214.87-20170530022202\nTalk:Plasma Accelerator/@comment-5959508-20130113192007\nTalk:Plasma Accelerator/@comment-64.113.173.176-20150121001857\nTalk:Plasma Accelerator/@comment-64.113.173.176-20150121001857/@comment-80.1.60.38-20150406213342\nTalk:Plasma Accelerator/@comment-64.113.173.176-20150121174714\nTalk:Plasma Accelerator/@comment-71.243.248.5-20150104222726\nTalk:Plasma Accelerator/@comment-71.243.248.5-20150104222726/@comment-25968528-20150104222821\nTalk:Plasma Accelerator/@comment-71.53.144.104-20160216200848\nTalk:Plasma Accelerator/@comment-72.181.180.191-20150315104657\nTalk:Plasma Accelerator/@comment-72.65.124.226-20141222023956\nTalk:Plasma Accelerator/@comment-72.65.124.226-20141222023956/@comment-72.65.124.226-20141222024131\nTalk:Plasma Accelerator/@comment-74.90.92.146-20150604042044\nTalk:Plasma Accelerator/@comment-75.156.175.143-20160413154014\nTalk:Plasma Accelerator/@comment-84.104.203.193-20150103153542\nTalk:Plasma Accelerator/@comment-85.177.49.86-20150116183428\nTalk:Plasma Accelerator/@comment-90.200.46.38-20181116120355\nTalk:Plasma Accelerator/@comment-91.23.70.81-20150330085332\nTalk:Plasma Accelerator/@comment-98.232.151.219-20190729234015\nTalk:Plasma Accelerator/@comment-98.232.151.219-20190729234015/@comment-2600:8800:7C00:250:8C94:7305:2150:F1A7-20190828005725\nTalk:Plasma Accelerator/@comment-98.232.151.219-20190729234015/@comment-2601:189:C37F:9A42:5803:8E29:13A9:BBDC-20190831064012\nTalk:Plasma Accelerator/@comment-98.232.151.219-20190729234015/@comment-73.126.122.142-20190730054953\nTalk:Plasma Slug/@comment-170.185.126.17-20191111142706\nTalk:Plasma Slug/@comment-213.160.5.114-20171025061344\nTalk:Plasma Slug/@comment-213.160.5.114-20171025061344/@comment-165.225.39.67-20200114160128\nTalk:Plasma Slug/@comment-2A01:CB11:3E1:3D00:8CB2:C071:F968:EA6C-20180726200654\nTalk:Plasma Slug/@comment-2A01:CB11:3E1:3D00:8CB2:C071:F968:EA6C-20180726200654/@comment-192.136.170.98-20181222041758\nTalk:Plasma Slug/@comment-2A01:CB11:3E1:3D00:8CB2:C071:F968:EA6C-20180726200654/@comment-2607:FEA8:BD9F:EAC5:487F:7980:190:3D07-20181220021653\nTalk:Plasma Slug/@comment-2A01:CB11:3E1:3D00:8CB2:C071:F968:EA6C-20180726200654/@comment-84.9.80.97-20180731100814\nTalk:Plasma Slug/@comment-2A01:CB11:3E1:3D00:8CB2:C071:F968:EA6C-20180726200654/@comment-92.14.240.149-20190719232048\nTalk:Platinum/@comment-143.85.167.18-20150123145842\nTalk:Platinum/@comment-143.85.167.18-20150123145842/@comment-151.225.186.250-20150124142138\nTalk:Platinum/@comment-189.34.74.71-20170325081206\nTalk:Platinum/@comment-190.138.225.54-20160203200946\nTalk:Platinum/@comment-2.121.181.144-20150811131333\nTalk:Platinum/@comment-212.198.89.104-20150128102621\nTalk:Platinum/@comment-212.198.89.104-20150128102621/@comment-90.217.129.100-20150221141606\nTalk:Platinum/@comment-26113847-20150221001216\nTalk:Platinum/@comment-81.100.120.55-20150920132213\nTalk:Platinum/@comment-92.19.249.180-20151017195800\nTalk:Platinum/@comment-95.148.160.0-20150823195545\nTalk:Player Minor Faction/@comment-176.78.161.211-20200213103420\nTalk:Player Minor Faction/@comment-46381461-20200804122633\nTalk:Pleiades Nebula/@comment-163.232.200.41-20171020012520\nTalk:Pleiades Nebula/@comment-163.232.200.41-20171020012520/@comment-211.27.31.124-20180319044914\nTalk:Pleiades Nebula/@comment-163.232.200.41-20171020012520/@comment-75.76.63.113-20180118060358\nTalk:Pleiades Nebula/@comment-163.232.200.41-20171020012520/@comment-86.19.86.141-20190601170458\nTalk:Pleiades Nebula/@comment-34004391-20180131094249\nTalk:Pleiades Nebula/@comment-34004391-20180131094249/@comment-30928085-20180219224104\nTalk:Pleiades Nebula/@comment-86.19.86.141-20190601170349\nTalk:Pleiades Nebula/@comment-86.19.86.141-20190601170349/@comment-104.62.162.150-20190625005105\nTalk:Pluto/@comment-205.174.22.25-20190925145206\nTalk:Pluto/@comment-213.87.250.15-20180907133121\nTalk:Point Defence Turret/@comment-109.193.59.21-20150203135237\nTalk:Point Defence Turret/@comment-156.3.54.203-20150504191123\nTalk:Point Defence Turret/@comment-185.182.144.1-20190627152735\nTalk:Point Defence Turret/@comment-185.182.144.1-20190627152735/@comment-81.106.140.16-20190727114654\nTalk:Point Defence Turret/@comment-188.120.86.62-20140809180057\nTalk:Point Defence Turret/@comment-188.120.86.62-20140809180057/@comment-6033893-20140818164517\nTalk:Point Defence Turret/@comment-194.9.234.11-20150513092555\nTalk:Point Defence Turret/@comment-194.9.234.11-20150513092555/@comment-202.36.179.81-20150515010136\nTalk:Point Defence Turret/@comment-207.155.87.153-20170816124211\nTalk:Point Defence Turret/@comment-209.169.196.5-20140928204751\nTalk:Point Defence Turret/@comment-209.169.196.5-20140928204751/@comment-24.71.229.161-20191005213910\nTalk:Point Defence Turret/@comment-209.169.196.5-20140928204751/@comment-25335609-20140928205908\nTalk:Point Defence Turret/@comment-220.244.63.162-20170219235636\nTalk:Point Defence Turret/@comment-220.244.63.162-20170219235636/@comment-192.136.161.52-20170221131304\nTalk:Point Defence Turret/@comment-220.244.63.162-20170219235636/@comment-220.244.63.162-20170220002254\nTalk:Point Defence Turret/@comment-220.244.63.162-20170219235636/@comment-58.10.107.140-20170322144539\nTalk:Point Defence Turret/@comment-24880027-20150425141942\nTalk:Point Defence Turret/@comment-24880027-20150425141942/@comment-26009169-20150425162042\nTalk:Point Defence Turret/@comment-25318722-20140818094207\nTalk:Point Defence Turret/@comment-25318722-20140818094207/@comment-6033893-20140818164500\nTalk:Point Defence Turret/@comment-26391992-20160421212146\nTalk:Point Defence Turret/@comment-28434084-20160805094254\nTalk:Point Defence Turret/@comment-28434084-20160805094254/@comment-173.239.232.145-20181110083127\nTalk:Point Defence Turret/@comment-28434084-20160805094254/@comment-192.136.170.98-20190111192331\nTalk:Point Defence Turret/@comment-28434084-20160805094254/@comment-70.249.189.124-20190111004609\nTalk:Point Defence Turret/@comment-4968814-20141227172557\nTalk:Point Defence Turret/@comment-68.144.19.154-20140922233601\nTalk:Point Defence Turret/@comment-71.231.185.222-20140907035155\nTalk:Point Defence Turret/@comment-71.231.185.222-20140907035155/@comment-204.209.209.131-20150508160035\nTalk:Point Defence Turret/@comment-71.231.185.222-20140907035155/@comment-72.46.217.207-20141007221438\nTalk:Point Defence Turret/@comment-94.9.164.136-20140903160536\nTalk:Point Defence Turret/@comment-94.9.164.136-20140903160536/@comment-24.71.229.161-20191005214156\nTalk:Points of Interest/@comment-101.185.140.88-20170217223907\nTalk:Points of Interest/@comment-101.185.140.88-20170217223907/@comment-2155082-20170218050928\nTalk:Points of Interest/@comment-153.46.105.98-20151224131554\nTalk:Points of Interest/@comment-153.46.105.98-20151224131554/@comment-98.125.228.187-20160707211027\nTalk:Points of Interest/@comment-24.183.99.192-20161112172320\nTalk:Points of Interest/@comment-5562446-20191209074230\nTalk:Points of Interest/@comment-67.190.23.170-20151224161826\nTalk:Points of Interest/@comment-67.190.23.170-20151224161826/@comment-72.76.202.148-20160925051451\nTalk:Points of Interest/@comment-67.190.23.170-20151224161826/@comment-82.25.175.6-20160530145515\nTalk:Polonium/@comment-108.205.236.85-20180801084427\nTalk:Polonium/@comment-12.70.119.26-20190628144915\nTalk:Polonium/@comment-24.228.248.215-20170128064256\nTalk:Polonium/@comment-24.228.248.215-20170128073635\nTalk:Polonium/@comment-2601:8C0:C200:D616:DDF5:8C70:4074:C04B-20180311183950\nTalk:Polonium/@comment-31178037-20170204084930\nTalk:Polonium/@comment-75.142.238.107-20190504004456\nTalk:Polonium/@comment-80.108.150.38-20180408214402\nTalk:Polonium/@comment-81.152.49.243-20160725223616\nTalk:Polonium/@comment-81.152.49.243-20160725223616/@comment-207.30.135.138-20180313163339\nTalk:Polymer Capacitors/@comment-2A00:801:214:66B1:3C65:8E86:2EFE:93CD-20190104234047\nTalk:Polymers/@comment-97.115.178.154-20151110235304\nTalk:Polymers/@comment-97.115.178.154-20151110235304/@comment-97.115.178.154-20151110235335\nTalk:Power Converter/@comment-71.229.177.30-20180403005631\nTalk:Power Distributor/@comment-123.139.36.141-20151129070225\nTalk:Power Distributor/@comment-173.20.28.32-20150424195419\nTalk:Power Distributor/@comment-189.219.101.153-20150709014214\nTalk:Power Distributor/@comment-189.219.101.153-20150709014214/@comment-107.145.11.212-20150808031304\nTalk:Power Distributor/@comment-189.219.101.153-20150709014214/@comment-108.11.40.169-20150724051003\nTalk:Power Distributor/@comment-189.60.168.130-20150326234342\nTalk:Power Distributor/@comment-189.60.168.130-20150326234342/@comment-203.59.210.118-20150516060625\nTalk:Power Distributor/@comment-213.120.234.109-20160125140135\nTalk:Power Distributor/@comment-213.123.224.182-20151004180347\nTalk:Power Distributor/@comment-217.252.95.185-20150630012450\nTalk:Power Distributor/@comment-217.252.95.185-20150630012450/@comment-93.192.122.154-20150717165035\nTalk:Power Distributor/@comment-217.96.130.219-20190409001430\nTalk:Power Distributor/@comment-228629-20141120012828\nTalk:Power Distributor/@comment-25470813-20141020150320\nTalk:Power Distributor/@comment-26304615-20150706211225\nTalk:Power Distributor/@comment-26304615-20150706211225/@comment-58.168.116.207-20150712064726\nTalk:Power Distributor/@comment-26304615-20150706211225/@comment-93.192.122.154-20150717173407\nTalk:Power Distributor/@comment-26304615-20150718104719\nTalk:Power Distributor/@comment-26304615-20150718104719/@comment-173.226.237.130-20151111213004\nTalk:Power Distributor/@comment-27079681-20151015185806\nTalk:Power Distributor/@comment-27079681-20151015185806/@comment-27408680-20151217072419\nTalk:Power Distributor/@comment-2A01:CB19:8A7D:F000:4448:312C:E76E:B1EC-20171110112036\nTalk:Power Distributor/@comment-37.10.140.76-20160114171238\nTalk:Power Distributor/@comment-4968814-20141221181612\nTalk:Power Distributor/@comment-5.101.142.236-20150616160757\nTalk:Power Distributor/@comment-5.69.10.21-20150609222219\nTalk:Power Distributor/@comment-5.69.10.21-20150609222219/@comment-93.192.122.154-20150717170024\nTalk:Power Distributor/@comment-5.69.10.21-20150609222219/@comment-93.192.122.154-20150717173236\nTalk:Power Distributor/@comment-58.179.244.13-20150517141242\nTalk:Power Distributor/@comment-58.179.244.13-20150517141242/@comment-174.125.8.46-20150914004736\nTalk:Power Distributor/@comment-58.179.244.13-20150517141242/@comment-76.118.89.84-20150525211535\nTalk:Power Distributor/@comment-58.179.244.13-20150517141242/@comment-77.225.202.32-20150630220806\nTalk:Power Distributor/@comment-68.111.89.35-20141120013602\nTalk:Power Distributor/@comment-68.111.89.35-20141120013602/@comment-174.98.122.121-20141126153044\nTalk:Power Distributor/@comment-71.89.81.10-20151208130118\nTalk:Power Distributor/@comment-72.201.121.214-20150724190417\nTalk:Power Distributor/@comment-74.37.202.169-20160202212702\nTalk:Power Distributor/@comment-74.83.95.51-20150321231825\nTalk:Power Distributor/@comment-79.97.180.45-20150508004349\nTalk:Power Distributor/@comment-79.97.180.45-20150508004349/@comment-79.143.138.42-20150619163149\nTalk:Power Distributor/@comment-88.64.237.72-20141221225518\nTalk:Power Distributor/@comment-88.64.237.72-20141221225518/@comment-12138097-20141225092712\nTalk:Power Distributor/@comment-88.84.15.165-20151208214553\nTalk:Power Distributor/@comment-91.116.144.253-20151025133432\nTalk:Power Distributor/@comment-91.116.144.253-20151025133432/@comment-71.89.81.10-20151207175133\nTalk:Power Distributor/@comment-91.116.144.253-20151025133432/@comment-71.89.81.10-20151207180439\nTalk:Power Distributor/@comment-91.63.98.114-20151023205654\nTalk:Power Distributor/@comment-91.63.98.114-20151023205654/@comment-88.84.15.165-20151208193810\nTalk:Power Distributor/@comment-92.201.125.128-20150309153345\nTalk:Power Distributor/@comment-92.201.125.128-20150309153345/@comment-26009169-20150309153837\nTalk:Power Distributor/@comment-92.201.125.128-20150309153345/@comment-92.201.125.128-20150309221319\nTalk:Power Distributor/@comment-93.192.122.154-20150717173448\nTalk:Power Distributor/@comment-93.192.122.154-20150717173448/@comment-26821596-20150726050749\nTalk:Power Plant/@comment-108.31.25.62-20161209212445\nTalk:Power Plant/@comment-108.31.25.62-20161209212445/@comment-108.31.25.62-20161209212530\nTalk:Power Plant/@comment-108.31.25.62-20161209212445/@comment-192.136.161.52-20161209220102\nTalk:Power Plant/@comment-108.31.25.62-20161209212445/@comment-192.136.161.52-20161209220246\nTalk:Power Plant/@comment-108.31.25.62-20161219150753\nTalk:Power Plant/@comment-108.31.25.62-20161219150753/@comment-192.136.161.52-20161219211831\nTalk:Power Plant/@comment-108.31.25.62-20161219150753/@comment-78.19.151.226-20170222175638\nTalk:Power Plant/@comment-109.73.208.55-20150220132701\nTalk:Power Plant/@comment-109.73.208.55-20150220132701/@comment-75.109.173.125-20150323202233\nTalk:Power Plant/@comment-109.73.208.55-20150220141123\nTalk:Power Plant/@comment-109.73.208.55-20150220141123/@comment-109.73.208.55-20150531074209\nTalk:Power Plant/@comment-109.73.208.55-20150220141123/@comment-75.109.173.125-20150323204949\nTalk:Power Plant/@comment-109.91.35.182-20161210114036\nTalk:Power Plant/@comment-109.91.35.182-20161210114036/@comment-71.63.99.146-20170208031525\nTalk:Power Plant/@comment-151.26.97.208-20150412230013\nTalk:Power Plant/@comment-151.26.97.208-20150412230013/@comment-81.156.49.66-20150810182513\nTalk:Power Plant/@comment-153.107.193.203-20160226023237\nTalk:Power Plant/@comment-153.107.193.203-20160226023237/@comment-124.149.177.111-20160312094432\nTalk:Power Plant/@comment-153.107.193.203-20160226023237/@comment-162.25.24.153-20160229114306\nTalk:Power Plant/@comment-153.107.193.203-20160226023237/@comment-40.141.206.198-20180312174704\nTalk:Power Plant/@comment-173.20.28.32-20150423060355\nTalk:Power Plant/@comment-173.66.176.182-20150425193925\nTalk:Power Plant/@comment-173.66.176.182-20150425193925/@comment-91.36.54.203-20150426203945\nTalk:Power Plant/@comment-174.64.107.110-20150531173335\nTalk:Power Plant/@comment-174.64.107.110-20150531173335/@comment-216.108.25.5-20150624003755\nTalk:Power Plant/@comment-174.64.107.110-20150531173335/@comment-76.25.140.130-20150704172721\nTalk:Power Plant/@comment-178.238.155.181-20150108200849\nTalk:Power Plant/@comment-203.213.49.147-20150121120008\nTalk:Power Plant/@comment-203.213.49.147-20150121120008/@comment-26029536-20150121141723\nTalk:Power Plant/@comment-206.251.41.130-20150104025341\nTalk:Power Plant/@comment-208.119.81.90-20160309001116\nTalk:Power Plant/@comment-208.119.81.90-20160309001116/@comment-40.141.206.198-20180312174627\nTalk:Power Plant/@comment-212.60.176.218-20150328175857\nTalk:Power Plant/@comment-212.60.176.218-20150328175857/@comment-212.60.176.218-20150328175950\nTalk:Power Plant/@comment-217.225.187.252-20161024001138\nTalk:Power Plant/@comment-217.225.187.252-20161024001138/@comment-40.141.206.198-20180312174531\nTalk:Power Plant/@comment-217.252.82.25-20150615212149\nTalk:Power Plant/@comment-217.252.82.25-20150615212149/@comment-50.154.127.58-20150701193835\nTalk:Power Plant/@comment-217.252.85.44-20150622140632\nTalk:Power Plant/@comment-217.85.199.9-20160112131210\nTalk:Power Plant/@comment-217.85.199.9-20160112131210/@comment-108.31.25.62-20161209213116\nTalk:Power Plant/@comment-24.132.70.227-20150617214403\nTalk:Power Plant/@comment-24.132.70.227-20150617214403/@comment-85.228.106.168-20151226122231\nTalk:Power Plant/@comment-24.184.10.22-20151014220631\nTalk:Power Plant/@comment-24.184.10.22-20151014220631/@comment-89.155.22.46-20151020012609\nTalk:Power Plant/@comment-25803634-20180926083238\nTalk:Power Plant/@comment-25803634-20180926083238/@comment-8839944-20191024053327\nTalk:Power Plant/@comment-25891569-20141218221015\nTalk:Power Plant/@comment-25891569-20141218221015/@comment-66.189.14.112-20150329004850\nTalk:Power Plant/@comment-25891569-20141218221015/@comment-80.212.230.137-20150322121855\nTalk:Power Plant/@comment-25992270-20150131232147\nTalk:Power Plant/@comment-25992270-20150131232147/@comment-26107982-20150214061120\nTalk:Power Plant/@comment-25992270-20150131232147/@comment-81.156.49.66-20150810182830\nTalk:Power Plant/@comment-26016954-20150118020153\nTalk:Power Plant/@comment-2603:9001:4202:775C:60B0:5630:3DD1:1A46-20191022020908\nTalk:Power Plant/@comment-2603:9001:4202:775C:60B0:5630:3DD1:1A46-20191022020908/@comment-2603:9001:4202:775C:60B0:5630:3DD1:1A46-20191022021529\nTalk:Power Plant/@comment-26230909-20150321213615\nTalk:Power Plant/@comment-26230909-20150321213615/@comment-173.20.28.32-20150423032518\nTalk:Power Plant/@comment-26411381-20151030013329\nTalk:Power Plant/@comment-26411381-20151030013329/@comment-92.233.112.147-20160121213341\nTalk:Power Plant/@comment-27165814-20160220135733\nTalk:Power Plant/@comment-27165814-20160223124631\nTalk:Power Plant/@comment-27728953-20160203202902\nTalk:Power Plant/@comment-4968814-20141221181737\nTalk:Power Plant/@comment-50.138.159.119-20150316201909\nTalk:Power Plant/@comment-50.138.159.119-20150316201909/@comment-50.138.159.119-20150316202208\nTalk:Power Plant/@comment-68.39.115.18-20150929050006\nTalk:Power Plant/@comment-69.178.208.220-20150902045848\nTalk:Power Plant/@comment-75.109.173.125-20150327163921\nTalk:Power Plant/@comment-78.34.18.200-20150731134551\nTalk:Power Plant/@comment-78.34.18.200-20150731134551/@comment-108.59.68.114-20151012180924\nTalk:Power Plant/@comment-78.34.18.200-20150731134551/@comment-26599825-20150731171916\nTalk:Power Plant/@comment-81.104.19.169-20150813232703\nTalk:Power Plant/@comment-82.66.117.115-20151204213548\nTalk:Power Plant/@comment-86.126.174.136-20151219220924\nTalk:Power Plant/@comment-87.231.26.122-20150210125734\nTalk:Power Plant/@comment-88.173.202.245-20150627110430\nTalk:Power Plant/@comment-90.222.125.73-20160320120607\nTalk:Power Plant/@comment-93.221.13.67-20160703174804\nTalk:Power Plant/@comment-93.48.111.252-20150315144121\nTalk:Power Plant/@comment-93.48.111.252-20150315144121/@comment-88.85.155.146-20150316124725\nTalk:Power Plant/@comment-94.26.69.234-20150919161123\nTalk:Power Plant/@comment-95.140.2.29-20150520070403\nTalk:Power Plant/@comment-95.140.2.29-20150520070403/@comment-2.2.11.234-20150521162027\nTalk:Power Plant/@comment-95.140.2.29-20150520070403/@comment-93.0.249.1-20150912172507\nTalk:Power Plant/@comment-95.16.69.173-20150424090624\nTalk:Power Plant/@comment-95.16.69.173-20150502215011\nTalk:Power Plant/@comment-95.16.69.173-20150502215011/@comment-2.227.186.218-20150517134130\nTalk:Power Plant/@comment-95.91.234.132-20151015200505\nTalk:Powerplay/@comment-134.148.10.12-20150903022809\nTalk:Powerplay/@comment-134.148.10.12-20150903022809/@comment-2605:B100:F340:F619:8C01:9119:B97:CA4A-20190905002700\nTalk:Powerplay/@comment-134.148.10.12-20150903022809/@comment-27838177-20160509170133\nTalk:Powerplay/@comment-134.148.10.12-20150903022809/@comment-82.14.27.89-20160910165256\nTalk:Powerplay/@comment-134.148.10.12-20150903022809/@comment-86.18.84.96-20160908145821\nTalk:Powerplay/@comment-156.3.54.203-20150608145927\nTalk:Powerplay/@comment-156.3.54.203-20150608145927/@comment-66.109.235.218-20160210182311\nTalk:Powerplay/@comment-172.74.44.60-20150622062142\nTalk:Powerplay/@comment-172.74.44.60-20150622062142/@comment-174.52.1.8-20150702135801\nTalk:Powerplay/@comment-172.74.44.60-20150622062142/@comment-2601:644:202:D560:595A:6936:ED8B:A520-20180319040028\nTalk:Powerplay/@comment-172.74.44.60-20150622062142/@comment-66.109.235.218-20160210175513\nTalk:Powerplay/@comment-172.74.44.60-20150622062142/@comment-82.35.148.35-20161120191440\nTalk:Powerplay/@comment-173.55.173.227-20150608030934\nTalk:Powerplay/@comment-173.55.173.227-20150608030934/@comment-156.3.54.203-20150608144916\nTalk:Powerplay/@comment-176.78.158.9-20190327151039\nTalk:Powerplay/@comment-176.78.158.9-20190327151039/@comment-192.136.170.98-20190328204822\nTalk:Powerplay/@comment-188.126.175.130-20150616002251\nTalk:Powerplay/@comment-188.126.175.130-20150616002251/@comment-26009169-20150616023433\nTalk:Powerplay/@comment-194.14.58.11-20150708141648\nTalk:Powerplay/@comment-194.14.58.11-20150708141648/@comment-199.168.78.182-20150716184335\nTalk:Powerplay/@comment-194.14.58.11-20150708141648/@comment-66.109.235.218-20160210174752\nTalk:Powerplay/@comment-194.14.58.11-20150708141648/@comment-86.186.129.235-20150817215848\nTalk:Powerplay/@comment-2003:E9:E3CF:FB00:8839:2A19:FCA3:2E68-20180217202229\nTalk:Powerplay/@comment-207.155.87.153-20170215075435\nTalk:Powerplay/@comment-207.155.87.153-20170215075435/@comment-176.249.62.114-20170818172155\nTalk:Powerplay/@comment-207.155.87.153-20170215075435/@comment-67.87.64.184-20170220171228\nTalk:Powerplay/@comment-207.155.87.153-20170215075435/@comment-73.172.132.137-20170301082103\nTalk:Powerplay/@comment-207.155.87.153-20170215075435/@comment-82.2.74.231-20170425125041\nTalk:Powerplay/@comment-2602:306:CCB1:A130:21A0:80FB:91CB:A774-20180422231318\nTalk:Powerplay/@comment-2602:306:CCB1:A130:2C75:3C2C:EE7A:ABCD-20180426104742\nTalk:Powerplay/@comment-2602:306:CCB1:A130:2C75:3C2C:EE7A:ABCD-20180426104742/@comment-90.200.46.38-20181122192145\nTalk:Powerplay/@comment-26487689-20150611203914\nTalk:Powerplay/@comment-26487689-20150611203914/@comment-204.27.156.147-20160411204455\nTalk:Powerplay/@comment-26487689-20150611203914/@comment-66.227.206.155-20150811042745\nTalk:Powerplay/@comment-26487689-20150611203914/@comment-67.171.253.40-20150624034138\nTalk:Powerplay/@comment-26487689-20150611203914/@comment-71.28.204.115-20150723133812\nTalk:Powerplay/@comment-26487689-20150716202010\nTalk:Powerplay/@comment-26487689-20150716202010/@comment-64.47.27.194-20150721150712\nTalk:Powerplay/@comment-26599825-20150716092209\nTalk:Powerplay/@comment-26599825-20150716092209/@comment-66.109.235.218-20160210173856\nTalk:Powerplay/@comment-26599825-20150716092209/@comment-83.113.224.233-20150810110442\nTalk:Powerplay/@comment-43400328-20200104130018\nTalk:Powerplay/@comment-43400328-20200104130018/@comment-30928085-20200104174416\nTalk:Powerplay/@comment-66.74.41.156-20150710025936\nTalk:Powerplay/@comment-66.74.41.156-20150710025936/@comment-204.27.156.147-20160411203928\nTalk:Powerplay/@comment-68.107.53.197-20150528031541\nTalk:Powerplay/@comment-68.107.53.197-20150528031541/@comment-156.3.54.203-20150608145052\nTalk:Powerplay/@comment-68.107.53.197-20150528031541/@comment-90.197.15.46-20150606145519\nTalk:Powerplay/@comment-72.241.143.238-20150630055505\nTalk:Powerplay/@comment-72.241.143.238-20150630055505/@comment-26009169-20150630124300\nTalk:Powerplay/@comment-74.50.193.232-20150613220924\nTalk:Powerplay/@comment-74.50.193.232-20150613220924/@comment-46.208.213.19-20151219032001\nTalk:Powerplay/@comment-74.50.193.232-20150613220924/@comment-66.109.235.218-20160210180114\nTalk:Powerplay/@comment-74.50.193.232-20150613220924/@comment-72.241.143.238-20150630055321\nTalk:Powerplay/@comment-74.50.193.232-20150613220924/@comment-86.186.129.235-20150817220431\nTalk:Powerplay/@comment-78.90.225.217-20150606081021\nTalk:Powerplay/@comment-90.200.46.38-20181122192034\nTalk:Powerplay/@comment-90.200.46.38-20181122192034/@comment-192.136.170.98-20181123194015\nTalk:Powerplay/@comment-90.200.46.38-20181122192034/@comment-192.136.170.98-20181123194101\nTalk:Powerplay/@comment-90.200.46.38-20181122192034/@comment-192.136.170.98-20181123194232\nTalk:Powerplay/@comment-92.208.58.208-20170312165553\nTalk:Powerplay/@comment-92.208.58.208-20170312165553/@comment-176.249.62.114-20170818171811\nTalk:Powerplay/@comment-92.208.58.208-20170312165553/@comment-38659160-20200928011346\nTalk:Powerplay/@comment-92.208.58.208-20170312165553/@comment-92.208.58.208-20170312165735\nTalk:Powerplay/@comment-95.145.144.176-20161113014923\nTalk:Powerplay/@comment-95.145.144.176-20161113014923/@comment-192.136.161.52-20161113041736\nTalk:Powerplay/@comment-95.145.144.176-20161113014923/@comment-192.136.161.52-20161223211430\nTalk:Powerplay/@comment-95.145.144.176-20161113014923/@comment-30830236-20161223173541\nTalk:Powerplay/@comment-95.145.144.176-20161113014923/@comment-82.2.74.231-20170425125218\nTalk:Powerplay (bonds)/@comment-50.54.165.148-20170720013551\nTalk:Powerplay (bonds)/@comment-50.54.165.148-20170720013551/@comment-192.136.161.6-20170720200209\nTalk:Powerplay (bonds)/@comment-50.54.165.148-20170720013551/@comment-2605:B100:F340:93:982E:6892:4B5A:3D28-20190905230505\nTalk:Powerplay (bonds)/@comment-66.131.175.6-20150818014422\nTalk:Powerplay (bonds)/@comment-66.131.175.6-20150818014422/@comment-204.195.24.118-20150908051312\nTalk:Powerplay (bonds)/@comment-69.11.148.197-20150814024333\nTalk:Powerplay (bonds)/@comment-76.20.26.10-20150919062940\nTalk:Powerplay (bonds)/@comment-76.20.26.10-20150919062940/@comment-26599825-20150919111958\nTalk:Powerplay (bonds)/@comment-76.20.26.10-20150919062940/@comment-76.20.26.10-20150919063019\nTalk:Pranav Antal/@comment-116.87.33.12-20161009132319\nTalk:Pranav Antal/@comment-116.87.33.12-20161009132319/@comment-125.237.3.1-20161012070001\nTalk:Pranav Antal/@comment-68.103.180.178-20150811232449\nTalk:Pratchett's Disc/@comment-176.253.21.109-20160709190535\nTalk:Pratchett's Disc/@comment-1920239-20150825075634\nTalk:Pratchett's Disc/@comment-1920239-20150825075634/@comment-1541210-20151113034530\nTalk:Pratchett's Disc/@comment-1920239-20150825075634/@comment-173.34.29.135-20160404022534\nTalk:Pratchett's Disc/@comment-92.238.165.10-20150509192631\nTalk:Precious Gems/@comment-209.145.104.217-20190922230814\nTalk:Prism/@comment-2601:900:8380:365:9D19:8EB8:5AA5:E8AD-20190704230929\nTalk:Prism/@comment-71.196.173.11-20181119051632\nTalk:Prismatic Shield Generator/@comment-109.252.44.30-20170617165738\nTalk:Prismatic Shield Generator/@comment-109.252.44.30-20170617165738/@comment-109.252.44.30-20170617190611\nTalk:Prismatic Shield Generator/@comment-109.252.44.30-20170617165738/@comment-109.252.44.30-20170619191039\nTalk:Prismatic Shield Generator/@comment-109.252.44.30-20170617165738/@comment-192.136.161.52-20170617174547\nTalk:Prismatic Shield Generator/@comment-109.252.44.30-20170617165738/@comment-192.136.161.52-20170618005202\nTalk:Prismatic Shield Generator/@comment-123.2.22.240-20160616114556\nTalk:Prismatic Shield Generator/@comment-164.143.244.33-20171219092541\nTalk:Prismatic Shield Generator/@comment-164.143.244.33-20171219092541/@comment-192.136.161.33-20171219141318\nTalk:Prismatic Shield Generator/@comment-164.143.244.33-20171219092541/@comment-210.246.50.132-20180529010006\nTalk:Prismatic Shield Generator/@comment-164.143.244.33-20171219092541/@comment-2602:306:CE29:B0D0:D4EB:30EB:96B9:9C46-20190928064413\nTalk:Prismatic Shield Generator/@comment-164.143.244.33-20171219092541/@comment-27838177-20200210133650\nTalk:Prismatic Shield Generator/@comment-176.63.143.249-20180421034901\nTalk:Prismatic Shield Generator/@comment-177.142.217.184-20170218174317\nTalk:Prismatic Shield Generator/@comment-177.142.217.184-20170218174317/@comment-26009169-20170218174617\nTalk:Prismatic Shield Generator/@comment-177.142.217.184-20170218174317/@comment-80.192.102.25-20170219164438\nTalk:Prismatic Shield Generator/@comment-192.136.161.52-20161115211756\nTalk:Prismatic Shield Generator/@comment-192.136.161.52-20161115211756/@comment-64.229.71.91-20190122233755\nTalk:Prismatic Shield Generator/@comment-192.136.161.52-20161115211756/@comment-80.120.62.38-20161116080150\nTalk:Prismatic Shield Generator/@comment-217.229.5.33-20150727200551\nTalk:Prismatic Shield Generator/@comment-217.229.5.33-20150727200551/@comment-173.44.77.26-20150801210942\nTalk:Prismatic Shield Generator/@comment-217.229.5.33-20150727200551/@comment-25450485-20150908101812\nTalk:Prismatic Shield Generator/@comment-217.229.5.33-20150727200551/@comment-26599825-20150727204217\nTalk:Prismatic Shield Generator/@comment-217.229.5.33-20150727200551/@comment-26599825-20150728193818\nTalk:Prismatic Shield Generator/@comment-217.229.5.33-20150727200551/@comment-26599825-20150802082119\nTalk:Prismatic Shield Generator/@comment-217.229.5.33-20150727200551/@comment-26599825-20150802082406\nTalk:Prismatic Shield Generator/@comment-217.252.102.76-20151028222933\nTalk:Prismatic Shield Generator/@comment-27032150-20151015134946\nTalk:Prismatic Shield Generator/@comment-27032150-20151015134946/@comment-26599825-20151015210812\nTalk:Prismatic Shield Generator/@comment-35650861-20181226160047\nTalk:Prismatic Shield Generator/@comment-35650861-20181226160047/@comment-189.32.28.226-20190211061522\nTalk:Prismatic Shield Generator/@comment-35650861-20181226160047/@comment-192.136.170.98-20190211185600\nTalk:Prismatic Shield Generator/@comment-71.123.165.249-20150808043320\nTalk:Prismatic Shield Generator/@comment-71.123.165.249-20150808043320/@comment-25450485-20150908103708\nTalk:Prismatic Shield Generator/@comment-72.39.181.114-20160625183242\nTalk:Prismatic Shield Generator/@comment-72.39.181.114-20160625183242/@comment-27032150-20160626184525\nTalk:Prismatic Shield Generator/@comment-73.41.243.141-20150918212449\nTalk:Prismatic Shield Generator/@comment-73.41.243.141-20150918212449/@comment-206.47.31.145-20151007174959\nTalk:Prismatic Shield Generator/@comment-73.41.243.141-20150918212449/@comment-25450485-20150920142647\nTalk:Prismatic Shield Generator/@comment-73.41.243.141-20150918212449/@comment-26599825-20150919112838\nTalk:Prismatic Shield Generator/@comment-73.41.243.141-20150918212449/@comment-26599825-20151015212514\nTalk:Prismatic Shield Generator/@comment-82.154.97.210-20181102134537\nTalk:Prismatic Shield Generator/@comment-82.154.97.210-20181102134537/@comment-104.129.196.178-20190213000304\nTalk:Prismatic Shield Generator/@comment-82.154.97.210-20181102134537/@comment-173.216.67.131-20190925122217\nTalk:Prismatic Shield Generator/@comment-82.154.97.210-20181102134537/@comment-46.226.50.230-20190514143431\nTalk:Prismatic Shield Generator/@comment-82.154.97.210-20181102134537/@comment-71.150.129.58-20191030160341\nTalk:Prismatic Shield Generator/@comment-82.154.97.210-20181102134537/@comment-97.86.192.167-20181104154156\nTalk:Prismatic Shield Generator/@comment-82.71.34.195-20150706103738\nTalk:Prismatic Shield Generator/@comment-82.71.34.195-20150706103738/@comment-1394230-20150712112319\nTalk:Prismatic Shield Generator/@comment-82.71.34.195-20150706103738/@comment-25450485-20150920162303\nTalk:Prismatic Shield Generator/@comment-82.71.34.195-20150706103738/@comment-26599825-20150708153137\nTalk:Prismatic Shield Generator/@comment-88.156.75.132-20170916091915\nTalk:Prismatic Shield Generator/@comment-88.156.75.132-20170916091915/@comment-2001:5B0:4BC1:4C00:0:FF:FEBD:63F2-20181108071828\nTalk:Prismatic Shield Generator/@comment-88.156.75.132-20170916091915/@comment-2602:306:CE29:B0D0:10AD:175:89B7:25EB-20191019035327\nTalk:Prismatic Shield Generator/@comment-90.200.46.38-20181022101003\nTalk:Prismatic Shield Generator/@comment-90.200.46.38-20181022101003/@comment-192.136.170.46-20181022130104\nTalk:Prismatic Shield Generator/@comment-90.200.46.38-20181022101003/@comment-37378031-20181102045648\nTalk:Prismatic Shield Generator/@comment-90.200.46.38-20181022101003/@comment-90.200.46.38-20181118172730\nTalk:Prismatic Shield Generator/@comment-90.226.110.52-20170817105854\nTalk:Prismatic Shield Generator/@comment-90.226.110.52-20170817105854/@comment-2604:6000:1517:8053:F42B:BC67:EDEA:AE0D-20181106162318\nTalk:Prismatic Shield Generator/@comment-90.226.110.52-20170817105854/@comment-90.200.46.38-20181022101937\nTalk:Prismatic Shield Generator/@comment-94.12.31.80-20170730172859\nTalk:Prismatic Shield Generator/@comment-94.12.31.80-20170730172859/@comment-192.136.161.6-20170731210017\nTalk:Prismatic Shield Generator/@comment-94.12.31.80-20170730172859/@comment-192.136.161.6-20170804113705\nTalk:Prismatic Shield Generator/@comment-94.12.31.80-20170730172859/@comment-192.136.161.6-20170815104225\nTalk:Prismatic Shield Generator/@comment-94.12.31.80-20170730172859/@comment-2602:306:CE29:B0D0:10AD:175:89B7:25EB-20191019035532\nTalk:Prismatic Shield Generator/@comment-94.12.31.80-20170730172859/@comment-82.237.248.209-20170812110501\nTalk:Prismatic Shield Generator/@comment-94.12.31.80-20170730172859/@comment-94.12.31.80-20170803163721\nTalk:Prismatic Shield Generator/@comment-94.12.31.80-20170730172859/@comment-99.241.108.55-20180222002418\nTalk:Prismatic Shield Generator/@comment-96.48.16.219-20170902180813\nTalk:Prismatic Shield Generator/@comment-96.48.16.219-20170902180813/@comment-192.136.161.33-20170903145059\nTalk:Prismatic Shield Generator/@comment-96.48.16.219-20170902180813/@comment-91.127.138.184-20171205163441\nTalk:Prison Ship/@comment-2600:387:8:9:0:0:0:1E-20190407192419\nTalk:Prison Ship/@comment-73.180.84.74-20200104163304\nTalk:Private Data Beacons/@comment-45325976-20200328175926\nTalk:Private Data Beacons/@comment-45325976-20200328175926/@comment-45346382-20200330235456\nTalk:Private Data Beacons/@comment-84.195.98.41-20190613115510\nTalk:Private Data Beacons/@comment-84.195.98.41-20190613115510/@comment-196.210.67.29-20190623024801\nTalk:Private Data Beacons/@comment-84.195.98.41-20190613115510/@comment-85.145.1.191-20200105110727\nTalk:Procedural Cities/@comment-217.120.15.200-20181212201947\nTalk:Procedural Cities/@comment-2A02:A311:A03E:3280:E4BC:7417:ADD8:BA08-20180131185245\nTalk:Procedural Cities/@comment-2A02:A311:A03E:3280:E4BC:7417:ADD8:BA08-20180131185245/@comment-2A02:1810:421:F400:C5E2:FBBF:6EDC:49D-20180219131529\nTalk:Procedural Cities/@comment-2A02:A311:A03E:3280:E4BC:7417:ADD8:BA08-20180131185245/@comment-72.199.254.6-20181201055545\nTalk:Procedural Cities/@comment-45738583-20200916143609\nTalk:Progenitor Cells/@comment-100.32.118.45-20150620233749\nTalk:Progenitor Cells/@comment-100.32.118.45-20150620233749/@comment-178.240.8.18-20151201025756\nTalk:Progenitor Cells/@comment-100.32.118.45-20150620233749/@comment-26009169-20150620234525\nTalk:Progenitor Cells/@comment-100.32.118.45-20150620233749/@comment-89.66.219.62-20160331204457\nTalk:Progenitor Cells/@comment-149-20171217061922\nTalk:Progenitor Cells/@comment-35205827-20180404194118\nTalk:Progenitor Cells/@comment-35205827-20180404194118/@comment-192.228.232.114-20190106040953\nTalk:Progenitor Cells/@comment-35205827-20180404194118/@comment-209.17.40.42-20190822175251\nTalk:Progenitor Cells/@comment-35205827-20180404194118/@comment-82.154.50.194-20180505155816\nTalk:Project Dynasty/@comment-2001:67C:2660:425:20:0:0:B7F-20181119170627\nTalk:Project Dynasty/@comment-2001:67C:2660:425:20:0:0:B7F-20181119170627/@comment-188.147.100.104-20181216075643\nTalk:Project Dynasty/@comment-37493229-20181119170705\nTalk:Project Dynasty/@comment-86.26.138.210-20181224233743\nTalk:Propulsion Elements/@comment-2600:1003:B10D:88ED:D9C6:D2E4:7472:D467-20180907231550\nTalk:Proto Heat Radiators/@comment-47.199.18.20-20170906130940\nTalk:Proto Heat Radiators/@comment-47.199.18.20-20170906130940/@comment-101.100.136.47-20170907133030\nTalk:Proto Heat Radiators/@comment-68.194.58.37-20190113104440\nTalk:Proto Heat Radiators/@comment-68.194.58.37-20190113104440/@comment-178.80.53.38-20190126120633\nTalk:Proto Heat Radiators/@comment-68.194.58.37-20190113104440/@comment-68.194.58.37-20190113104609\nTalk:Proto Heat Radiators/@comment-82.10.117.97-20190129103827\nTalk:Proto Heat Radiators/@comment-97.80.123.129-20190211224229\nTalk:Prototype Tech/@comment-24.61.241.98-20150516150049\nTalk:Prototype Tech/@comment-24.61.241.98-20150516150049/@comment-26009169-20150516164233\nTalk:Prototype Tech/@comment-32105469-20170525103426\nTalk:Prototype Tech/@comment-64.187.172.44-20150508041106\nTalk:Proxima Centauri/@comment-172.164.31.152-20160825151432\nTalk:Proxima Centauri/@comment-172.164.31.152-20160825151432/@comment-68.205.182.114-20170218051642\nTalk:Pulse Disruptor/@comment-1.128.107.66-20190706044208\nTalk:Pulse Disruptor/@comment-1.128.107.66-20190706044208/@comment-192.136.172.44-20190708210623\nTalk:Pulse Disruptor/@comment-125.237.3.1-20161010033008\nTalk:Pulse Disruptor/@comment-186.151.62.230-20150730150016\nTalk:Pulse Disruptor/@comment-186.151.62.230-20150730150016/@comment-26599825-20150730165336\nTalk:Pulse Disruptor/@comment-193.105.140.131-20151216135709\nTalk:Pulse Disruptor/@comment-193.105.140.131-20151216135709/@comment-202.50.0.100-20160106231024\nTalk:Pulse Disruptor/@comment-193.105.140.131-20151216135709/@comment-26014491-20160112235908\nTalk:Pulse Disruptor/@comment-193.105.140.131-20151216135709/@comment-94.1.65.7-20160403164806\nTalk:Pulse Disruptor/@comment-2001:5B0:4BCF:2E0:0:FF:FEBD:1C0-20180502090725\nTalk:Pulse Disruptor/@comment-2001:5B0:4BCF:2E0:0:FF:FEBD:1C0-20180502090725/@comment-2600:1700:DCB0:CC40:545A:1FE3:B2A7:9116-20180921072724\nTalk:Pulse Disruptor/@comment-2003:EE:570C:8900:882B:61B:9094:E421-20180217000131\nTalk:Pulse Disruptor/@comment-27190931-20160122040819\nTalk:Pulse Disruptor/@comment-29011619-20170903142258\nTalk:Pulse Disruptor/@comment-29011619-20170903142258/@comment-107.189.225.241-20200105201159\nTalk:Pulse Disruptor/@comment-2A02:8070:D185:5C00:C42E:85A2:C894:2655-20170316224008\nTalk:Pulse Disruptor/@comment-30387291-20170518091625\nTalk:Pulse Disruptor/@comment-30387291-20170518091625/@comment-49.255.202.34-20170814230736\nTalk:Pulse Disruptor/@comment-30387291-20170518091625/@comment-49.255.202.34-20170814230807\nTalk:Pulse Disruptor/@comment-47.220.223.98-20190304044420\nTalk:Pulse Disruptor/@comment-47.220.223.98-20190304044420/@comment-90.201.205.200-20190511235046\nTalk:Pulse Disruptor/@comment-49.255.202.34-20170814045041\nTalk:Pulse Disruptor/@comment-49.255.202.34-20170814045041/@comment-2003:EE:570C:8900:882B:61B:9094:E421-20180217000521\nTalk:Pulse Disruptor/@comment-49.255.202.34-20170814045041/@comment-2003:EE:570C:8900:882B:61B:9094:E421-20180217000628\nTalk:Pulse Disruptor/@comment-49.255.202.34-20170814045041/@comment-49.255.202.34-20170814045348\nTalk:Pulse Disruptor/@comment-49.255.202.34-20170814045041/@comment-49.255.202.34-20170814230640\nTalk:Pulse Laser/@comment-100.3.148.85-20150507032726\nTalk:Pulse Laser/@comment-100.3.148.85-20150507032751\nTalk:Pulse Laser/@comment-121.223.22.61-20150526172306\nTalk:Pulse Laser/@comment-121.223.22.61-20150526172306/@comment-101.1.104.169-20150812152740\nTalk:Pulse Laser/@comment-124.168.61.65-20160223034221\nTalk:Pulse Laser/@comment-1250011-20150108145036\nTalk:Pulse Laser/@comment-1250011-20150108145036/@comment-80.1.60.38-20150406214337\nTalk:Pulse Laser/@comment-1250011-20150108145036/@comment-92.72.184.220-20150408143732\nTalk:Pulse Laser/@comment-156.3.54.203-20150529194940\nTalk:Pulse Laser/@comment-156.3.54.203-20150529194940/@comment-121.223.22.61-20150530120524\nTalk:Pulse Laser/@comment-199.190.10.27-20141219161109\nTalk:Pulse Laser/@comment-202.171.168.172-20150524124458\nTalk:Pulse Laser/@comment-202.171.168.172-20150524124458/@comment-207.96.211.31-20151017140123\nTalk:Pulse Laser/@comment-209.58.128.143-20141214163954\nTalk:Pulse Laser/@comment-209.58.128.143-20141214163954/@comment-12138097-20141218092315\nTalk:Pulse Laser/@comment-209.58.128.143-20141214163954/@comment-64.128.133.180-20141218215543\nTalk:Pulse Laser/@comment-209.58.128.143-20141214163954/@comment-90.222.86.59-20150111013705\nTalk:Pulse Laser/@comment-209.58.128.143-20141214163954/@comment-90.222.86.59-20150111014150\nTalk:Pulse Laser/@comment-209.58.128.143-20141214163954/@comment-99.244.166.37-20141224005916\nTalk:Pulse Laser/@comment-26537865-20150803001951\nTalk:Pulse Laser/@comment-27115814-20151128073521\nTalk:Pulse Laser/@comment-27115814-20151128073521/@comment-108.233.117.252-20151211153124\nTalk:Pulse Laser/@comment-27115814-20151128073521/@comment-143.81.103.35-20160122234239\nTalk:Pulse Laser/@comment-31.38.77.43-20150420194757\nTalk:Pulse Laser/@comment-50.147.112.25-20160902191238\nTalk:Pulse Laser/@comment-70.123.111.143-20141230234322\nTalk:Pulse Laser/@comment-70.123.111.143-20141230234322/@comment-136.251.224.51-20150108140359\nTalk:Pulse Laser/@comment-70.123.111.143-20141230234322/@comment-70.123.111.143-20150116222128\nTalk:Pulse Laser/@comment-72.184.208.73-20150414103020\nTalk:Pulse Laser/@comment-72.184.208.73-20150414103020/@comment-74.104.123.47-20150430145115\nTalk:Pulse Laser/@comment-82.37.7.24-20151018171149\nTalk:Pulse Laser/@comment-82.37.7.24-20151018171149/@comment-167655-20151224060916\nTalk:Pulse Laser/@comment-83.33.38.223-20150429133750\nTalk:Pulse Laser/@comment-83.60.167.215-20150327215328\nTalk:Pulse Laser/@comment-83.60.167.215-20150327215328/@comment-80.1.60.38-20150406214254\nTalk:Pulse Laser/@comment-84.91.206.98-20150105022810\nTalk:Pulse Laser/@comment-84.91.206.98-20150105022810/@comment-209.51.65.158-20150107031508\nTalk:Pulse Laser/@comment-84.91.206.98-20150105022810/@comment-24.218.184.200-20150122192207\nTalk:Pulse Laser/@comment-84.91.206.98-20150105022810/@comment-84.91.206.98-20150111062151\nTalk:Pulse Laser/@comment-86.180.181.193-20150111102744\nTalk:Pulse Laser/@comment-90.200.46.38-20181127123508\nTalk:Pulse Laser/@comment-90.200.46.38-20181127123508/@comment-2.49.197.150-20190312002750\nTalk:Pulse Wave Analyser/@comment-189.4.62.61-20181220073851\nTalk:Pulse Wave Analyser/@comment-2601:181:4600:3160:BC93:42E9:3B8F:FC20-20190504153247\nTalk:Pulse Wave Analyser/@comment-2601:603:7F:9C30:5D77:D329:99A3:E2F9-20190116031930\nTalk:Pulse Wave Analyser/@comment-2607:FEA8:6060:12F6:D919:A022:79D3:B905-20181111170532\nTalk:Pulse Wave Analyser/@comment-44287110-20191117201439\nTalk:Pulse Wave Analyser/@comment-44287110-20191117201439/@comment-93.25.109.25-20191213150835\nTalk:Pulse Wave Analyser/@comment-62.107.85.84-20181214074103\nTalk:Pulse Wave Analyser/@comment-62.107.85.84-20181214074103/@comment-37829208-20181216014308\nTalk:Pulse Wave Analyser/@comment-73.169.14.6-20181107195647\nTalk:Pulse Wave Analyser/@comment-73.169.14.6-20181107195647/@comment-73.169.14.6-20181109041224\nTalk:Pulse Wave Analyser/@comment-77.100.66.218-20181213103429\nTalk:Pulse Wave Analyser/@comment-81.163.67.131-20181221183725\nTalk:Pulse Wave Analyser/@comment-81.163.67.131-20181221183725/@comment-37.57.110.167-20181224122738\nTalk:Pulse Wave Analyser/@comment-83.252.72.184-20181212153455\nTalk:Pulse Wave Analyser/@comment-83.40.151.70-20181212003027\nTalk:Pulse Wave Analyser/@comment-90.246.245.75-20190511134342\nTalk:Python/@comment-109.152.193.114-20190214140000\nTalk:Python/@comment-109.152.193.114-20190214140000/@comment-192.136.170.98-20190214190507\nTalk:Python/@comment-109.152.193.114-20190214140000/@comment-2602:306:CE29:B0D0:64AD:A199:8DED:88E8-20190924121315\nTalk:Python/@comment-138.163.0.41-20150112183422\nTalk:Python/@comment-138.163.0.41-20150112183422/@comment-188.39.84.242-20150123161205\nTalk:Python/@comment-138.163.0.41-20150112183422/@comment-50.88.121.45-20150113120905\nTalk:Python/@comment-144.85.168.61-20150310014427\nTalk:Python/@comment-144.85.168.61-20150310014427/@comment-203.173.179.166-20150312070918\nTalk:Python/@comment-144.85.168.61-20150310014427/@comment-26009169-20150310014631\nTalk:Python/@comment-144.85.168.61-20150310014427/@comment-80.1.60.38-20150310052555\nTalk:Python/@comment-144.85.168.61-20150310014427/@comment-81.175.150.135-20150403110003\nTalk:Python/@comment-150.208.129.188-20170405143600\nTalk:Python/@comment-150.208.129.188-20170405143600/@comment-184.159.128.62-20171016135345\nTalk:Python/@comment-150.208.129.188-20170405143600/@comment-94.1.115.61-20170807220950\nTalk:Python/@comment-150.208.129.188-20170405144029\nTalk:Python/@comment-150.208.129.188-20170405144029/@comment-24.225.29.221-20170708030334\nTalk:Python/@comment-150.208.129.188-20170405144029/@comment-79.69.77.76-20170602073757\nTalk:Python/@comment-156.3.54.202-20150429145422\nTalk:Python/@comment-156.3.54.203-20150501144501\nTalk:Python/@comment-156.3.54.203-20150501144501/@comment-26420537-20150528221224\nTalk:Python/@comment-156.3.54.203-20150501144501/@comment-82.226.121.139-20150505024518\nTalk:Python/@comment-156.3.54.203-20150501144501/@comment-87.89.34.241-20150501185837\nTalk:Python/@comment-156.3.54.203-20150601164445\nTalk:Python/@comment-156.3.54.203-20150601164445/@comment-156.3.54.203-20150608200415\nTalk:Python/@comment-156.3.54.203-20150601164445/@comment-193.109.254.20-20150721094438\nTalk:Python/@comment-156.3.54.203-20150601164445/@comment-193.109.254.20-20150721094559\nTalk:Python/@comment-156.3.54.203-20150601164445/@comment-82.226.121.139-20150605180455\nTalk:Python/@comment-156.3.54.203-20150601164445/@comment-82.226.121.139-20150611174114\nTalk:Python/@comment-162.25.24.152-20160523111402\nTalk:Python/@comment-162.25.24.152-20160523111402/@comment-26227424-20160527011018\nTalk:Python/@comment-167.177.39.6-20151202152242\nTalk:Python/@comment-167.177.39.6-20151202152242/@comment-23.228.175.189-20160108223639\nTalk:Python/@comment-167.177.39.6-20151202152242/@comment-26391992-20151215112213\nTalk:Python/@comment-167.177.39.6-20151202152242/@comment-50.255.40.41-20151215173436\nTalk:Python/@comment-167.177.39.6-20151202152242/@comment-73.202.191.73-20151206185058\nTalk:Python/@comment-167.177.39.6-20151202152242/@comment-80.44.139.102-20151220151840\nTalk:Python/@comment-167.177.39.6-20151202152242/@comment-92.43.71.143-20151214142915\nTalk:Python/@comment-173.191.151.131-20151224083620\nTalk:Python/@comment-173.67.1.174-20141208201911\nTalk:Python/@comment-174.89.135.213-20161019232335\nTalk:Python/@comment-174.89.135.213-20161019232335/@comment-2155082-20161020042526\nTalk:Python/@comment-175.156.150.184-20150216093552\nTalk:Python/@comment-175.156.150.184-20150216093552/@comment-108.20.148.111-20150328195558\nTalk:Python/@comment-176.183.193.156-20150124000447\nTalk:Python/@comment-176.183.193.156-20150124000447/@comment-108.20.148.111-20150328200515\nTalk:Python/@comment-176.183.193.156-20150124000447/@comment-108.39.33.131-20150124091539\nTalk:Python/@comment-176.183.193.156-20150124000447/@comment-176.183.193.156-20150124143015\nTalk:Python/@comment-176.183.193.156-20150124000447/@comment-176.183.193.156-20150124172853\nTalk:Python/@comment-176.183.193.156-20150124000447/@comment-26009169-20150124144130\nTalk:Python/@comment-176.183.193.156-20150124000447/@comment-86.19.157.214-20150124154902\nTalk:Python/@comment-176.221.77.250-20170712101007\nTalk:Python/@comment-176.233.132.40-20160213201136\nTalk:Python/@comment-176.249.62.114-20170810233406\nTalk:Python/@comment-176.249.62.114-20170810233406/@comment-184.159.128.62-20171016135153\nTalk:Python/@comment-176.249.62.114-20170810233406/@comment-192.136.161.33-20171016144007\nTalk:Python/@comment-176.249.62.114-20170810233406/@comment-62.141.232.225-20180330172928\nTalk:Python/@comment-176.249.62.114-20170810233406/@comment-93.244.100.104-20171218091809\nTalk:Python/@comment-176.93.8.142-20150630102535\nTalk:Python/@comment-179.179.141.24-20150825180608\nTalk:Python/@comment-179.179.141.24-20150825180608/@comment-177.96.244.191-20150826175653\nTalk:Python/@comment-179.179.141.24-20150825180608/@comment-72.241.143.238-20150826084436\nTalk:Python/@comment-180.222.68.7-20160211233947\nTalk:Python/@comment-183.96.153.115-20150428050531\nTalk:Python/@comment-183.96.153.115-20150428050531/@comment-121.75.9.61-20150502020721\nTalk:Python/@comment-183.96.153.115-20150428050531/@comment-156.3.54.203-20150501144535\nTalk:Python/@comment-183.96.153.115-20150428050531/@comment-46.194.39.76-20150507213335\nTalk:Python/@comment-183.96.153.115-20150428050531/@comment-67.165.239.95-20150430043720\nTalk:Python/@comment-184.91.189.54-20150510062707\nTalk:Python/@comment-184.91.189.54-20150510062707/@comment-156.3.54.203-20150520164406\nTalk:Python/@comment-184.91.189.54-20150510062707/@comment-24.242.80.8-20150520204942\nTalk:Python/@comment-184.91.189.54-20150510062707/@comment-73.44.65.107-20150721143628\nTalk:Python/@comment-185.12.218.153-20150131214648\nTalk:Python/@comment-185.12.218.153-20150131214648/@comment-131.107.147.49-20150326224531\nTalk:Python/@comment-185.12.218.153-20150131214648/@comment-69.172.149.42-20150316011037\nTalk:Python/@comment-185.22.142.72-20151017150404\nTalk:Python/@comment-185.37.87.177-20150606145916\nTalk:Python/@comment-185.37.87.177-20150606145916/@comment-156.3.54.203-20150608200555\nTalk:Python/@comment-185.37.87.177-20150606145916/@comment-208.38.124.35-20150608201822\nTalk:Python/@comment-185.37.87.177-20150606145916/@comment-2155082-20150629112224\nTalk:Python/@comment-185.37.87.177-20150606145916/@comment-2155082-20150630045514\nTalk:Python/@comment-185.37.87.177-20150606145916/@comment-72.241.143.238-20150629041255\nTalk:Python/@comment-185.37.87.177-20150606145916/@comment-72.241.143.238-20150629142305\nTalk:Python/@comment-185.37.87.177-20150606145916/@comment-82.30.236.238-20150610094529\nTalk:Python/@comment-186.105.241.84-20151019050441\nTalk:Python/@comment-186.105.241.84-20151019050441/@comment-200.113.32.182-20151021192607\nTalk:Python/@comment-186.105.241.84-20151019050441/@comment-200.113.32.182-20151026200336\nTalk:Python/@comment-186.105.241.84-20151019050441/@comment-73.1.55.15-20151025192803\nTalk:Python/@comment-186.105.241.84-20151019050441/@comment-73.44.65.107-20151019140827\nTalk:Python/@comment-187.64.91.253-20180921053417\nTalk:Python/@comment-187.64.91.253-20180921053417/@comment-176.241.72.203-20190729235812\nTalk:Python/@comment-187.64.91.253-20180921053417/@comment-189.4.36.206-20200114040556\nTalk:Python/@comment-187.64.91.253-20180921053417/@comment-2601:342:C003:5D60:F53E:3D4E:C2B2:F040-20200112013407\nTalk:Python/@comment-187.64.91.253-20180921053417/@comment-70.249.189.124-20181016144014\nTalk:Python/@comment-187.64.91.253-20180921053417/@comment-74.249.114.246-20190219071642\nTalk:Python/@comment-187.64.91.253-20180921053417/@comment-90.200.46.38-20181107094107\nTalk:Python/@comment-188.177.3.159-20150110175817\nTalk:Python/@comment-188.177.3.159-20150110175817/@comment-141.0.8.141-20150114082224\nTalk:Python/@comment-188.177.3.159-20150110175817/@comment-4968814-20150110181840\nTalk:Python/@comment-188.177.3.159-20150110175817/@comment-70.114.225.55-20150112180900\nTalk:Python/@comment-188.181.94.5-20170825173906\nTalk:Python/@comment-188.222.111.139-20151023164833\nTalk:Python/@comment-188.222.111.139-20151023164833/@comment-165.233.45.159-20151224082457\nTalk:Python/@comment-188.222.111.139-20151023164833/@comment-68.186.99.18-20151024040757\nTalk:Python/@comment-188.222.111.139-20151023164833/@comment-73.1.55.15-20151025192706\nTalk:Python/@comment-189.4.18.48-20151110013941\nTalk:Python/@comment-189.4.18.48-20151110013941/@comment-122.178.153.136-20151206051134\nTalk:Python/@comment-189.4.18.48-20151110013941/@comment-147.210.28.3-20151118160744\nTalk:Python/@comment-189.4.18.48-20151110013941/@comment-173.65.132.78-20151119190544\nTalk:Python/@comment-189.4.18.48-20151110013941/@comment-31.46.126.78-20151126212600\nTalk:Python/@comment-189.4.18.48-20151110013941/@comment-46.59.151.206-20151213075627\nTalk:Python/@comment-189.4.18.48-20151110013941/@comment-68.46.7.130-20160212063725\nTalk:Python/@comment-189.4.18.48-20151110013941/@comment-79.97.30.226-20160102030754\nTalk:Python/@comment-189.4.18.48-20151110013941/@comment-91.42.216.240-20151129122746\nTalk:Python/@comment-189.4.18.48-20151110013941/@comment-95.90.199.164-20151222150252\nTalk:Python/@comment-189.4.18.48-20151110013941/@comment-97.117.244.127-20151206004108\nTalk:Python/@comment-192.136.172.239-20160204124818\nTalk:Python/@comment-192.189.29.41-20161008214941\nTalk:Python/@comment-192.189.29.41-20161008214941/@comment-35650861-20180825151443\nTalk:Python/@comment-193.150.37.193-20170623140653\nTalk:Python/@comment-193.150.37.193-20170623140653/@comment-184.159.128.62-20171016135222\nTalk:Python/@comment-193.80.24.237-20150202224457\nTalk:Python/@comment-193.80.24.237-20150202224457/@comment-80.187.110.208-20150203065825\nTalk:Python/@comment-193.80.85.194-20141129212649\nTalk:Python/@comment-193.80.85.194-20141129212649/@comment-96.244.223.120-20141130000551\nTalk:Python/@comment-195.241.120.40-20150104211640\nTalk:Python/@comment-195.241.120.40-20150104211640/@comment-195.241.120.40-20150104211847\nTalk:Python/@comment-2.101.122.1-20150914034908\nTalk:Python/@comment-2.101.122.1-20150914034908/@comment-194.9.234.11-20150914135331\nTalk:Python/@comment-202.50.0.100-20150506010941\nTalk:Python/@comment-202.50.0.100-20150506010941/@comment-202.50.5.100-20150512004848\nTalk:Python/@comment-202.50.0.100-20150506010941/@comment-5968971-20150511193853\nTalk:Python/@comment-202.50.0.100-20150506010941/@comment-72.177.53.221-20150508001121\nTalk:Python/@comment-204.8.193.172-20150827201554\nTalk:Python/@comment-206.74.17.157-20180115040730\nTalk:Python/@comment-206.74.17.157-20180115040730/@comment-192.136.161.33-20180115042131\nTalk:Python/@comment-206.74.17.157-20180115040730/@comment-206.74.17.157-20180116005400\nTalk:Python/@comment-206.74.17.157-20180115040730/@comment-69.114.195.213-20181104133111\nTalk:Python/@comment-208.108.127.250-20150122160425\nTalk:Python/@comment-208.108.127.250-20150122160425/@comment-26009169-20150122160800\nTalk:Python/@comment-210.124.128.146-20160305114508\nTalk:Python/@comment-210.86.93.108-20150615005033\nTalk:Python/@comment-24.10.194.73-20150809073227\nTalk:Python/@comment-24.10.194.73-20150809073227/@comment-24.10.194.73-20150809222523\nTalk:Python/@comment-24.184.15.59-20150425190805\nTalk:Python/@comment-24.184.15.59-20150425190805/@comment-216.36.8.153-20150429224705\nTalk:Python/@comment-24.184.15.59-20150425190805/@comment-95.33.147.84-20150427030301\nTalk:Python/@comment-24.196.238.21-20141229040159\nTalk:Python/@comment-24522059-20170115114517\nTalk:Python/@comment-24522059-20170115114517/@comment-13269387-20170115123130\nTalk:Python/@comment-24522059-20170115114517/@comment-192.136.161.52-20170117213532\nTalk:Python/@comment-24522059-20170115114517/@comment-24522059-20170115122413\nTalk:Python/@comment-24522059-20170115114517/@comment-86.14.78.108-20170115115038\nTalk:Python/@comment-24522059-20170115114517/@comment-86.14.78.108-20170115115215\nTalk:Python/@comment-24754830-20150612224816\nTalk:Python/@comment-24754830-20150612224816/@comment-118.208.48.18-20150620222123\nTalk:Python/@comment-24754830-20150612224816/@comment-209.197.6.182-20150624080542\nTalk:Python/@comment-24754830-20150612224816/@comment-26362216-20150614033523\nTalk:Python/@comment-24754830-20150612224816/@comment-84.248.64.145-20150624221015\nTalk:Python/@comment-25411947-20141118091941\nTalk:Python/@comment-25655456-20141110125658\nTalk:Python/@comment-2600:100D:B10A:38F2:2040:D888:533:6F12-20190430043706\nTalk:Python/@comment-2600:100D:B10A:38F2:2040:D888:533:6F12-20190430043706/@comment-176.241.72.203-20190729235434\nTalk:Python/@comment-2600:100D:B10A:38F2:2040:D888:533:6F12-20190430043706/@comment-43354983-20200312185852\nTalk:Python/@comment-2600:100D:B10A:38F2:2040:D888:533:6F12-20190430043706/@comment-45677112-20200610190458\nTalk:Python/@comment-2600:100D:B10A:38F2:2040:D888:533:6F12-20190430043706/@comment-45771967-20200516012819\nTalk:Python/@comment-2600:100D:B15B:AC1F:250C:BC24:E0EF:A0CE-20190415013148\nTalk:Python/@comment-2600:100D:B15B:AC1F:250C:BC24:E0EF:A0CE-20190415013148/@comment-45677112-20200610191301\nTalk:Python/@comment-2600:100D:B15B:AC1F:250C:BC24:E0EF:A0CE-20190415013148/@comment-82.1.203.26-20200206195453\nTalk:Python/@comment-2600:100D:B15B:AC1F:250C:BC24:E0EF:A0CE-20190415013148/@comment-90.241.141.244-20190415135610\nTalk:Python/@comment-2600:100D:B15B:AC1F:250C:BC24:E0EF:A0CE-20190415013148/@comment-90.241.141.244-20190415135710\nTalk:Python/@comment-2600:8800:7881:7300:964:82F6:3C00:F8C4-20180417000122\nTalk:Python/@comment-2600:8800:7881:7300:964:82F6:3C00:F8C4-20180417000122/@comment-100.2.35.122-20180703042236\nTalk:Python/@comment-2600:8800:7881:7300:964:82F6:3C00:F8C4-20180417000122/@comment-192.136.170.98-20190328205314\nTalk:Python/@comment-2600:8800:7881:7300:964:82F6:3C00:F8C4-20180417000122/@comment-69.114.195.213-20181104133020\nTalk:Python/@comment-2600:8800:7881:7300:964:82F6:3C00:F8C4-20180417000122/@comment-72.8.214.189-20190326225431\nTalk:Python/@comment-26048696-20150130005631\nTalk:Python/@comment-26063183-20150411150706\nTalk:Python/@comment-26077237-20150219191140\nTalk:Python/@comment-26391992-20150808181601\nTalk:Python/@comment-26391992-20150808181601/@comment-26537865-20150810191827\nTalk:Python/@comment-26391992-20150808181601/@comment-73.1.55.15-20151011162622\nTalk:Python/@comment-26602149-20150708185624\nTalk:Python/@comment-26602149-20160214174134\nTalk:Python/@comment-26602149-20160214174134/@comment-124.149.177.111-20160312082856\nTalk:Python/@comment-26602149-20160214174134/@comment-192.136.174.139-20160219144637\nTalk:Python/@comment-26602149-20160214174134/@comment-192.136.175.219-20160302170952\nTalk:Python/@comment-26602149-20160214174134/@comment-26391992-20160302165624\nTalk:Python/@comment-26602149-20160214174134/@comment-27032150-20160222084904\nTalk:Python/@comment-26602149-20160214174134/@comment-59.13.255.5-20160302153921\nTalk:Python/@comment-26602149-20160214174134/@comment-63.159.0.197-20160222061635\nTalk:Python/@comment-26602149-20160214174134/@comment-77.37.166.144-20160214184637\nTalk:Python/@comment-27032150-20160823140431\nTalk:Python/@comment-27032150-20160823140431/@comment-101.180.69.158-20160826141418\nTalk:Python/@comment-27032150-20160823140431/@comment-192.136.161.248-20160902144016\nTalk:Python/@comment-27032150-20160823140431/@comment-27032150-20160826142424\nTalk:Python/@comment-27032150-20160823140431/@comment-27032150-20160902170341\nTalk:Python/@comment-27032150-20160823140431/@comment-35.46.5.61-20160904045501\nTalk:Python/@comment-27032150-20160823140431/@comment-74.51.220.27-20160902142620\nTalk:Python/@comment-27032150-20161103142526\nTalk:Python/@comment-27032150-20161103142526/@comment-192.136.161.52-20161103160504\nTalk:Python/@comment-27032150-20161103142526/@comment-192.136.161.52-20161103164811\nTalk:Python/@comment-27032150-20161103142526/@comment-27032150-20161103161153\nTalk:Python/@comment-27034370-20160104114304\nTalk:Python/@comment-27115814-20151102164102\nTalk:Python/@comment-27115814-20151102164102/@comment-195.70.101.49-20151214161359\nTalk:Python/@comment-27115814-20151102164102/@comment-27032150-20151103100545\nTalk:Python/@comment-27115814-20151102164102/@comment-27115814-20151103155247\nTalk:Python/@comment-27115814-20151102164102/@comment-92.43.71.143-20151214143010\nTalk:Python/@comment-27115814-20160511161823\nTalk:Python/@comment-27115814-20160511161823/@comment-188.126.160.72-20160815035042\nTalk:Python/@comment-27115814-20160511161823/@comment-27032150-20160815110922\nTalk:Python/@comment-27115814-20160511161823/@comment-85.199.49.197-20160511162434\nTalk:Python/@comment-27353480-20160301161522\nTalk:Python/@comment-27402982-20190107112635\nTalk:Python/@comment-27402982-20190107112635/@comment-30309427-20190113025426\nTalk:Python/@comment-28689414-20160608113621\nTalk:Python/@comment-28774381-20160618041512\nTalk:Python/@comment-28774381-20160618041512/@comment-2155082-20160618145717\nTalk:Python/@comment-28774381-20160618041512/@comment-28774381-20160618175926\nTalk:Python/@comment-2A01:110:A008:4:0:0:0:753-20171218132037\nTalk:Python/@comment-2A01:110:A008:4:0:0:0:753-20171218132037/@comment-184.159.128.62-20180205152506\nTalk:Python/@comment-2A01:110:A008:4:0:0:0:753-20171218132037/@comment-192.136.161.33-20180205170845\nTalk:Python/@comment-2A01:110:A008:4:0:0:0:753-20171218132037/@comment-25888671-20190115165312\nTalk:Python/@comment-2A01:110:A008:4:0:0:0:753-20171218132037/@comment-2601:243:480:98D9:788F:B55:563F:D8C3-20180420015951\nTalk:Python/@comment-2A01:110:A008:4:0:0:0:753-20171218132037/@comment-2A02:587:3500:5300:7529:DE:AFCE:7EAB-20171222105416\nTalk:Python/@comment-2A01:110:A008:4:0:0:0:753-20171218132037/@comment-90.200.46.38-20181108140900\nTalk:Python/@comment-3051607-20150204000448\nTalk:Python/@comment-3051607-20150204000448/@comment-212.183.111.145-20150211214107\nTalk:Python/@comment-3051607-20150204000448/@comment-24740410-20150204173722\nTalk:Python/@comment-3051607-20150204000448/@comment-26009169-20150204184125\nTalk:Python/@comment-3051607-20150204000448/@comment-31.151.208.204-20150209225907\nTalk:Python/@comment-3051607-20150226043217\nTalk:Python/@comment-3051607-20150226043217/@comment-91.67.18.218-20150228231052\nTalk:Python/@comment-31.181.36.123-20161110084249\nTalk:Python/@comment-31.181.36.123-20161110084249/@comment-173.80.57.110-20161111120044\nTalk:Python/@comment-34043634-20171222110350\nTalk:Python/@comment-34043634-20171222110350/@comment-176.241.72.203-20190730000022\nTalk:Python/@comment-34043634-20171222110350/@comment-184.159.128.62-20180205152431\nTalk:Python/@comment-34043634-20171222110350/@comment-192.136.161.33-20180205182652\nTalk:Python/@comment-34043634-20171222110350/@comment-69.114.195.213-20181104133159\nTalk:Python/@comment-4030403-20171211020054\nTalk:Python/@comment-43982350-20200903202500\nTalk:Python/@comment-46.182.141.197-20150722023640\nTalk:Python/@comment-46.182.141.197-20150722023640/@comment-119.39.48.131-20150803030250\nTalk:Python/@comment-46.182.141.197-20150722023640/@comment-189.83.141.137-20150722042751\nTalk:Python/@comment-46.182.141.197-20150722023640/@comment-208.86.202.10-20150807211002\nTalk:Python/@comment-46.182.141.197-20150722023640/@comment-216.121.135.133-20150725230412\nTalk:Python/@comment-46.182.141.197-20150722023640/@comment-217.187.172.211-20150801022459\nTalk:Python/@comment-46.182.141.197-20150722023640/@comment-24.230.225.107-20150824000723\nTalk:Python/@comment-46.182.141.197-20150722023640/@comment-46.182.141.197-20150722023653\nTalk:Python/@comment-46.182.141.197-20150722023640/@comment-86.161.153.188-20150807221921\nTalk:Python/@comment-46.182.141.197-20150722023640/@comment-88.112.91.114-20150814133216\nTalk:Python/@comment-46.182.141.197-20150722023640/@comment-93.47.115.157-20150806131817\nTalk:Python/@comment-46.182.141.197-20150722023640/@comment-99.112.17.13-20150727055115\nTalk:Python/@comment-50.88.121.45-20150109164354\nTalk:Python/@comment-50.88.121.45-20150109164354/@comment-4968814-20150109165747\nTalk:Python/@comment-50.88.121.45-20150109164354/@comment-4968814-20150110181937\nTalk:Python/@comment-50.88.121.45-20150109164354/@comment-50.88.121.45-20150110011627\nTalk:Python/@comment-50.88.121.45-20150109164354/@comment-50.88.121.45-20150113121354\nTalk:Python/@comment-50.88.121.45-20150113120938\nTalk:Python/@comment-50.88.121.45-20150113120938/@comment-141.0.8.141-20150114082857\nTalk:Python/@comment-59.13.255.5-20160126151348\nTalk:Python/@comment-60.228.130.74-20150208091707\nTalk:Python/@comment-65.128.175.200-20150626002455\nTalk:Python/@comment-65.94.28.169-20150702191424\nTalk:Python/@comment-67.5.189.128-20160120042919\nTalk:Python/@comment-67.5.189.128-20160120042919/@comment-27032150-20160120101933\nTalk:Python/@comment-67.5.189.128-20160120042919/@comment-5.43.161.166-20160125212921\nTalk:Python/@comment-67.5.189.128-20160120042919/@comment-67.5.189.128-20160121033829\nTalk:Python/@comment-67.5.189.128-20160120042919/@comment-75.164.228.73-20160128040539\nTalk:Python/@comment-68.186.99.18-20151024040312\nTalk:Python/@comment-68.186.99.18-20151024040312/@comment-192.0.221.241-20151211050522\nTalk:Python/@comment-68.186.99.18-20151024040312/@comment-63.64.75.10-20151211193312\nTalk:Python/@comment-70.138.97.190-20160222095743\nTalk:Python/@comment-70.138.97.190-20160222095743/@comment-162.25.24.153-20160411141542\nTalk:Python/@comment-71.21.3.159-20150131185948\nTalk:Python/@comment-71.21.3.159-20150131185948/@comment-121.75.9.61-20150502020919\nTalk:Python/@comment-71.21.3.159-20150131185948/@comment-26009169-20150131190704\nTalk:Python/@comment-71.51.221.138-20141229171731\nTalk:Python/@comment-71.51.37.51-20150319022218\nTalk:Python/@comment-71.51.37.51-20150319022218/@comment-24.243.230.171-20150323175908\nTalk:Python/@comment-71.51.37.51-20150319022218/@comment-31.217.106.136-20150415160251\nTalk:Python/@comment-71.51.37.51-20150319022218/@comment-78.72.31.223-20150408013723\nTalk:Python/@comment-71.51.37.51-20150319022218/@comment-80.1.60.38-20150323113231\nTalk:Python/@comment-71.51.37.51-20150319022218/@comment-80.1.60.38-20150324060224\nTalk:Python/@comment-71.51.37.51-20150319022218/@comment-82.208.5.86-20150321235854\nTalk:Python/@comment-71.51.37.51-20150319022218/@comment-92.228.166.148-20150323220605\nTalk:Python/@comment-72.241.143.238-20150826084305\nTalk:Python/@comment-73.15.64.28-20170520215615\nTalk:Python/@comment-73.15.64.28-20170520215615/@comment-2607:FB90:4AB5:98DE:6190:DDF0:C629:6597-20170810170717\nTalk:Python/@comment-73.54.10.209-20141231012256\nTalk:Python/@comment-73.54.10.209-20141231012256/@comment-118.93.126.234-20150127003840\nTalk:Python/@comment-73.54.10.209-20141231012256/@comment-70.74.166.173-20141231225933\nTalk:Python/@comment-75.109.81.198-20141224025443\nTalk:Python/@comment-75.109.81.198-20141224025443/@comment-108.242.216.67-20150325052035\nTalk:Python/@comment-75.109.81.198-20141224025443/@comment-109.155.38.37-20141224054414\nTalk:Python/@comment-75.109.81.198-20141224025443/@comment-109.68.168.63-20141225012348\nTalk:Python/@comment-75.109.81.198-20141224025443/@comment-118.93.126.234-20150127003702\nTalk:Python/@comment-75.109.81.198-20141224025443/@comment-195.241.120.40-20150104211455\nTalk:Python/@comment-75.109.81.198-20141224025443/@comment-201.233.2.45-20141224043726\nTalk:Python/@comment-75.109.81.198-20141224025443/@comment-67.172.68.198-20141226110906\nTalk:Python/@comment-75.109.81.198-20141224025443/@comment-70.191.166.223-20141231063123\nTalk:Python/@comment-75.109.81.198-20141224025443/@comment-73.54.10.209-20141231012027\nTalk:Python/@comment-75.109.81.198-20141224025443/@comment-75.69.169.219-20150109222137\nTalk:Python/@comment-75.109.81.198-20141224025443/@comment-78.72.8.20-20150201001153\nTalk:Python/@comment-75.109.81.198-20141224025443/@comment-86.144.240.217-20141226105529\nTalk:Python/@comment-75.109.81.198-20141224025443/@comment-86.85.183.80-20150105085055\nTalk:Python/@comment-75.164.228.73-20160128040503\nTalk:Python/@comment-75.164.228.73-20160128040503/@comment-77.37.166.144-20160207231823\nTalk:Python/@comment-75.167.141.198-20170117102128\nTalk:Python/@comment-75.167.141.198-20170117102128/@comment-24.113.174.125-20170130043724\nTalk:Python/@comment-75.167.141.198-20170117102128/@comment-98.239.13.251-20170120043937\nTalk:Python/@comment-75.167.141.198-20170117102128/@comment-98.4.53.237-20170311023414\nTalk:Python/@comment-75.64.247.69-20151030202447\nTalk:Python/@comment-75.64.247.69-20151030202447/@comment-186.195.196.106-20151030225334\nTalk:Python/@comment-75.64.247.69-20151030202447/@comment-86.154.51.83-20151105035349\nTalk:Python/@comment-75.75.67.51-20150129091332\nTalk:Python/@comment-75.75.67.51-20150129091332/@comment-203.173.179.166-20150301010205\nTalk:Python/@comment-75.75.67.51-20150129091332/@comment-93.222.237.96-20150129110256\nTalk:Python/@comment-78.53.123.247-20150329142908\nTalk:Python/@comment-78.53.123.247-20150329142908/@comment-25105805-20150401004011\nTalk:Python/@comment-78.53.123.247-20150329142908/@comment-78.72.31.223-20150408012755\nTalk:Python/@comment-78.53.123.247-20150329142908/@comment-86.28.203.34-20150412073329\nTalk:Python/@comment-78.54.111.183-20150130233041\nTalk:Python/@comment-79.117.38.118-20150626133449\nTalk:Python/@comment-79.117.38.118-20150626133449/@comment-106.69.134.173-20150627233949\nTalk:Python/@comment-79.117.38.118-20150626133449/@comment-217.66.152.45-20150628005622\nTalk:Python/@comment-79.117.38.118-20150626133449/@comment-67.177.33.248-20150710150812\nTalk:Python/@comment-79.117.38.118-20150626133449/@comment-77.58.96.13-20150630035416\nTalk:Python/@comment-79.216.244.91-20150123163238\nTalk:Python/@comment-79.71.106.176-20160517181245\nTalk:Python/@comment-79.71.106.176-20160517181245/@comment-27032150-20160523124015\nTalk:Python/@comment-81.132.38.91-20150905010837\nTalk:Python/@comment-81.132.38.91-20150905010837/@comment-26825579-20150905153415\nTalk:Python/@comment-81.132.38.91-20150905010837/@comment-4900524-20150910000424\nTalk:Python/@comment-81.132.38.91-20150905010837/@comment-78.148.163.167-20150913015326\nTalk:Python/@comment-81.132.38.91-20150905010837/@comment-81.132.38.91-20150905175508\nTalk:Python/@comment-81.132.38.91-20150905010837/@comment-81.159.96.241-20150919184849\nTalk:Python/@comment-81.132.38.91-20150905010837/@comment-81.159.96.241-20150919185136\nTalk:Python/@comment-81.132.38.91-20150905010837/@comment-82.197.195.147-20150910062915\nTalk:Python/@comment-82.1.203.26-20200206195056\nTalk:Python/@comment-82.222.130.189-20150124102606\nTalk:Python/@comment-82.228.231.76-20160515231145\nTalk:Python/@comment-82.237.248.209-20170119185225\nTalk:Python/@comment-82.237.248.209-20170119185225/@comment-192.136.161.52-20170120125001\nTalk:Python/@comment-82.237.248.209-20170119185225/@comment-24.225.29.221-20170708030522\nTalk:Python/@comment-82.237.248.209-20170119185225/@comment-2601:243:480:98D9:788F:B55:563F:D8C3-20180420020124\nTalk:Python/@comment-82.237.248.209-20170119185225/@comment-82.237.248.209-20170120074159\nTalk:Python/@comment-82.47.94.124-20161130200642\nTalk:Python/@comment-83.61.247.145-20171123173753\nTalk:Python/@comment-84.135.10.124-20141129133724\nTalk:Python/@comment-84.135.10.124-20141129133724/@comment-96.244.223.120-20141129235751\nTalk:Python/@comment-84.135.30.179-20141127202934\nTalk:Python/@comment-84.138.22.152-20161223233134\nTalk:Python/@comment-84.138.22.152-20161223233134/@comment-112.120.187.212-20161227205806\nTalk:Python/@comment-84.154.94.100-20150625045708\nTalk:Python/@comment-84.154.94.100-20150625045708/@comment-209.41.116.253-20150625053725\nTalk:Python/@comment-84.178.26.71-20150702210208\nTalk:Python/@comment-84.178.26.71-20150702210208/@comment-108.67.228.190-20150712071755\nTalk:Python/@comment-84.178.26.71-20150702210208/@comment-134.99.254.77-20150703131819\nTalk:Python/@comment-84.178.26.71-20150702210208/@comment-26391992-20150714210503\nTalk:Python/@comment-84.178.26.71-20150702210208/@comment-26537865-20150811034439\nTalk:Python/@comment-84.178.26.71-20150702210208/@comment-71.231.12.141-20150718073352\nTalk:Python/@comment-87.163.145.24-20150202195941\nTalk:Python/@comment-87.163.145.24-20150202195941/@comment-131.107.147.49-20150326224437\nTalk:Python/@comment-87.163.145.24-20150202195941/@comment-193.80.24.237-20150202222627\nTalk:Python/@comment-87.163.145.24-20150202195941/@comment-26009169-20150202200322\nTalk:Python/@comment-89.168.0.206-20150301003805\nTalk:Python/@comment-89.168.0.206-20150301003805/@comment-109.152.206.83-20150606085819\nTalk:Python/@comment-89.168.0.206-20150301003805/@comment-174.22.224.172-20150309212758\nTalk:Python/@comment-89.168.0.206-20150301003805/@comment-69.172.149.42-20150316010619\nTalk:Python/@comment-89.168.0.206-20150301003805/@comment-86.19.157.214-20150301032458\nTalk:Python/@comment-89.168.0.206-20150301003805/@comment-86.19.157.214-20150301160729\nTalk:Python/@comment-89.168.0.206-20150301003805/@comment-89.168.0.206-20150301035025\nTalk:Python/@comment-89.168.0.206-20150301003805/@comment-89.168.0.206-20150301183159\nTalk:Python/@comment-89.172.68.75-20160205234813\nTalk:Python/@comment-89.172.68.75-20160205234813/@comment-89.172.68.75-20160205234954\nTalk:Python/@comment-90.200.46.38-20181106224009\nTalk:Python/@comment-90.200.46.38-20181106224009/@comment-124.171.192.232-20190224230203\nTalk:Python/@comment-90.200.46.38-20181106224009/@comment-176.123.216.115-20190429080203\nTalk:Python/@comment-90.200.46.38-20181106224009/@comment-189.232.14.15-20190110071950\nTalk:Python/@comment-90.200.46.38-20181106224009/@comment-192.136.170.98-20181128181632\nTalk:Python/@comment-90.200.46.38-20181106224009/@comment-2001:5B0:4BD5:DD10:0:FF:FEBD:63F2-20181115201240\nTalk:Python/@comment-90.200.46.38-20181106224009/@comment-2001:5B0:4BD5:DD10:0:FF:FEBD:63F2-20181115202759\nTalk:Python/@comment-90.200.46.38-20181106224009/@comment-2003:CB:63C1:D55A:8CAF:5C6F:4990:411F-20181208211949\nTalk:Python/@comment-90.200.46.38-20181106224009/@comment-223.16.70.223-20190204172348\nTalk:Python/@comment-90.200.46.38-20181106224009/@comment-24.159.43.54-20181128051109\nTalk:Python/@comment-90.200.46.38-20181106224009/@comment-25888671-20190115163553\nTalk:Python/@comment-90.200.46.38-20181106224009/@comment-2602:306:CE29:B0D0:64AD:A199:8DED:88E8-20190924122707\nTalk:Python/@comment-90.200.46.38-20181106224009/@comment-2602:306:CE29:B0D0:64AD:A199:8DED:88E8-20190924122752\nTalk:Python/@comment-90.200.46.38-20181106224009/@comment-30972879-20190705205824\nTalk:Python/@comment-90.200.46.38-20181106224009/@comment-33441314-20191124090805\nTalk:Python/@comment-90.200.46.38-20181106224009/@comment-34004391-20190916082748\nTalk:Python/@comment-90.200.46.38-20181106224009/@comment-43478160-20190813144349\nTalk:Python/@comment-90.200.46.38-20181106224009/@comment-45771967-20200516013822\nTalk:Python/@comment-90.200.46.38-20181106224009/@comment-50.201.158.82-20181218155103\nTalk:Python/@comment-90.200.46.38-20181106224009/@comment-66.64.37.202-20200109213250\nTalk:Python/@comment-90.200.46.38-20181106224009/@comment-72.8.214.189-20190326224857\nTalk:Python/@comment-90.200.46.38-20181106224009/@comment-75.106.89.114-20181229210337\nTalk:Python/@comment-90.200.46.38-20181106224009/@comment-75.106.89.114-20181229210705\nTalk:Python/@comment-91.228.164.28-20170208162104\nTalk:Python/@comment-91.228.164.28-20170208162104/@comment-77.102.250.232-20170313144912\nTalk:Python/@comment-91.67.22.246-20150101214332\nTalk:Python/@comment-93.143.32.90-20160412114832\nTalk:Python/@comment-93.143.32.90-20160412114832/@comment-192.136.173.202-20160412134733\nTalk:Python/@comment-93.143.32.90-20160412114832/@comment-64.127.136.202-20160412132434\nTalk:Python/@comment-93.143.32.90-20160412114832/@comment-93.143.32.90-20160412181744\nTalk:Python/@comment-94.197.120.20-20190328164405\nTalk:Python/@comment-94.197.120.20-20190328164405/@comment-160.3.38.154-20190424052310\nTalk:Python/@comment-94.197.120.20-20190328164405/@comment-192.136.170.30-20190416031737\nTalk:Python/@comment-94.197.120.20-20190328164405/@comment-192.136.170.98-20190328204606\nTalk:Python/@comment-94.197.120.20-20190328164405/@comment-2602:306:CE29:B0D0:9C67:1E8D:BAF0:BB47-20190918103816\nTalk:Python/@comment-94.197.120.20-20190328164405/@comment-33487100-20190417041813\nTalk:Python/@comment-94.197.120.20-20190328164405/@comment-45771967-20200516013437\nTalk:Python/@comment-94.197.120.20-20190328164405/@comment-82.1.203.26-20200206200159\nTalk:Python/@comment-94.197.120.20-20190328164405/@comment-90.241.141.244-20190415135511\nTalk:Python/@comment-94.64.113.189-20141124135804\nTalk:Python/@comment-94.79.174.218-20141230134845\nTalk:Python/@comment-94.79.174.218-20150103215723\nTalk:Python/@comment-9472148-20151224185915\nTalk:Python/@comment-9472148-20151224185915/@comment-67.5.189.128-20160121033903\nTalk:Python/@comment-95.90.206.84-20150106174111\nTalk:Python/@comment-95.90.206.84-20150106174111/@comment-26009169-20150121151009\nTalk:Python/@comment-95.90.240.212-20160317155748\nTalk:Python/@comment-95.90.240.212-20160317155748/@comment-192.136.172.90-20160317161843\nTalk:Python/@comment-95.91.203.141-20150416214042\nTalk:Python/@comment-96.10.15.138-20150105204627\nTalk:Python/@comment-96.244.223.120-20141123192504\nTalk:Python/@comment-96.244.223.120-20141123193115\nTalk:Python/@comment-96.47.139.228-20170111214224\nTalk:Python/@comment-96.95.63.49-20160414200351\nTalk:Python/@comment-97.83.226.123-20141231072653\nTalk:Python/@comment-97.83.226.123-20141231072653/@comment-73.54.10.209-20141231124340\nTalk:Python/@comment-97.83.226.123-20141231072653/@comment-73.54.10.209-20141231124528\nTalk:Python/@comment-98.26.87.63-20150621021436\nTalk:Python/@comment-99.237.37.136-20160214151829\nTalk:Python/@comment-99.237.37.136-20160214151829/@comment-71.2.247.208-20160220010059\nTalk:Python/@comment-99.239.198.38-20150917041244\nTalk:Python/@comment-99.239.198.38-20150917041244/@comment-128.214.60.119-20151006123654\nTalk:Python/@comment-99.239.198.38-20150917041244/@comment-27403912-20151215162328\nTalk:Python/@comment-99.239.198.38-20150917041244/@comment-46.59.254.35-20151010201514\nTalk:Python/@comment-99.239.198.38-20150917041244/@comment-68.10.117.232-20151020105249\nTalk:Python/@comment-99.239.198.38-20150917041244/@comment-76.183.87.184-20151017041743\nTalk:Python/@comment-99.239.198.38-20150917041244/@comment-77.174.249.189-20151008142129\nTalk:Python/@comment-99.239.198.38-20150917041244/@comment-78.22.25.244-20151203212358\nTalk:Python/@comment-99.239.198.38-20150917041244/@comment-82.11.55.208-20150926184024\nTalk:Python/@comment-99.239.198.38-20150917041244/@comment-83.252.190.254-20151013154711\nTalk:Python/@comment-99.239.198.38-20150917041244/@comment-85.254.79.173-20151102084035\nTalk:Python/@comment-99.239.198.38-20150917041244/@comment-86.1.61.9-20151029164643\nTalk:Python/@comment-99.239.198.38-20150917041244/@comment-86.157.9.232-20151022223347\nTalk:Python/@comment-99.239.198.38-20150917041244/@comment-88.153.26.176-20151022150018\nTalk:Python/@comment-99.239.198.38-20150917041244/@comment-90.18.13.49-20150923201235\nTalk:Python/@comment-99.239.198.38-20150917041244/@comment-91.231.24.73-20151103024248\nTalk:Q-Type Anomaly/@comment-145.255.21.147-20191212160540\nTalk:Q-Type Anomaly/@comment-46026212-20200607210551\nTalk:Q-Type Anomaly/@comment-98.213.122.84-20191223002249\nTalk:Q-Type Anomaly/@comment-98.213.122.84-20191223002249/@comment-192.154.145.132-20191230174147\nTalk:Quadripartite Pod/@comment-37820584-20190512082048\nTalk:Quince/@comment-104.240.110.2-20180327171844\nTalk:Quince/@comment-104.240.110.2-20180327171844/@comment-176.241.72.203-20190719054511\nTalk:Quince/@comment-2001:8003:2446:AB00:CD81:C5F5:40D7:7541-20170722115508\nTalk:Quince/@comment-2602:306:BD56:CF0:393A:E152:92D7:F487-20170927014126\nTalk:Quince/@comment-2A02:C7F:C80A:4500:F4F2:3101:611A:EC82-20170828145324\nTalk:Quince/@comment-30800286-20171010143248\nTalk:Quince/@comment-69.125.156.220-20170626062437\nTalk:Quince/@comment-81.138.5.166-20170820095655\nTalk:Quince/@comment-81.138.5.166-20170820095655/@comment-115.66.130.225-20170822175456\nTalk:Quince/@comment-87.128.14.118-20170831122348\nTalk:Quince/@comment-98.167.16.254-20170930014445\nTalk:Quince/@comment-98.167.16.254-20170930014445/@comment-30800286-20171010143514\nTalk:Radiation Baffle/@comment-2001:16B8:6827:A800:CC9:B4B1:1784:1699-20181003221338\nTalk:Radioplankton/@comment-34004391-20180205091711\nTalk:Radioplankton/@comment-90.200.49.195-20181224215953\nTalk:Radioplankton/@comment-90.200.49.195-20181224215953/@comment-24.71.232.93-20191027014654\nTalk:Railgun/@comment-108.16.36.43-20170314170229\nTalk:Railgun/@comment-108.16.36.43-20170314170229/@comment-85.5.2.71-20170620013746\nTalk:Railgun/@comment-125.237.3.1-20161013211739\nTalk:Railgun/@comment-156.3.54.202-20150511202623\nTalk:Railgun/@comment-156.3.54.202-20150511202623/@comment-156.3.54.202-20150511202709\nTalk:Railgun/@comment-156.3.54.202-20150511202623/@comment-46.242.1.85-20150512053337\nTalk:Railgun/@comment-174.89.135.213-20161020042606\nTalk:Railgun/@comment-174.89.135.213-20161020042606/@comment-192.136.161.156-20161020205331\nTalk:Railgun/@comment-174.89.135.213-20161020042606/@comment-2601:243:480:98D9:C4C4:EFAF:411C:414D-20180223020140\nTalk:Railgun/@comment-176.249.62.114-20170810201830\nTalk:Railgun/@comment-176.249.62.114-20170810201830/@comment-189.232.22.1-20180829181843\nTalk:Railgun/@comment-176.249.62.114-20170810201830/@comment-32843761-20180329033811\nTalk:Railgun/@comment-176.249.62.114-20170810201830/@comment-33441314-20180126041451\nTalk:Railgun/@comment-194.9.234.11-20150511195611\nTalk:Railgun/@comment-194.9.234.11-20150511195611/@comment-125.237.3.1-20161013212102\nTalk:Railgun/@comment-194.9.234.11-20150511195611/@comment-125.237.7.64-20161126034948\nTalk:Railgun/@comment-194.9.234.11-20150511195611/@comment-156.3.54.202-20150511202438\nTalk:Railgun/@comment-194.9.234.11-20150511195611/@comment-2601:243:480:98D9:C4C4:EFAF:411C:414D-20180223020227\nTalk:Railgun/@comment-198.166.31.216-20150109092923\nTalk:Railgun/@comment-198.166.31.216-20150109092923/@comment-12138097-20150109094707\nTalk:Railgun/@comment-198.166.31.216-20150109092923/@comment-185.12.218.153-20150121213721\nTalk:Railgun/@comment-198.166.31.216-20150109092923/@comment-62.0.34.139-20150111135341\nTalk:Railgun/@comment-2003:DB:F70F:D637:D8F0:DEB9:B7A2:F93F-20200203135644\nTalk:Railgun/@comment-24.184.11.243-20150817214309\nTalk:Railgun/@comment-26344565-20150503062547\nTalk:Railgun/@comment-26391992-20150908133349\nTalk:Railgun/@comment-26391992-20150908133349/@comment-156.3.54.204-20150915164516\nTalk:Railgun/@comment-26391992-20150908133349/@comment-99.135.98.174-20151118221515\nTalk:Railgun/@comment-37.187.104.40-20191231025546\nTalk:Railgun/@comment-39085855-20200123163035\nTalk:Railgun/@comment-39085855-20200123163035/@comment-217.103.106.42-20200209160308\nTalk:Railgun/@comment-44180665-20200407103626\nTalk:Railgun/@comment-46.5.235.146-20150104164108\nTalk:Railgun/@comment-46.5.235.146-20150104164108/@comment-162.156.20.215-20150118184031\nTalk:Railgun/@comment-66.235.17.144-20180209151716\nTalk:Railgun/@comment-70.139.211.38-20170503032609\nTalk:Railgun/@comment-70.139.211.38-20170503032609/@comment-33441314-20180126041537\nTalk:Railgun/@comment-70.139.211.38-20170503032609/@comment-67.171.151.107-20180904220254\nTalk:Railgun/@comment-70.193.16.117-20150113191119\nTalk:Railgun/@comment-70.193.16.117-20150113191119/@comment-12138097-20150114012444\nTalk:Railgun/@comment-70.193.16.117-20150113191119/@comment-125.237.2.240-20160913004731\nTalk:Railgun/@comment-70.193.16.117-20150113191119/@comment-70.193.16.46-20150114125307\nTalk:Railgun/@comment-72.197.150.63-20170813171529\nTalk:Railgun/@comment-72.197.150.63-20170813171529/@comment-31363749-20170815001252\nTalk:Railgun/@comment-73.54.10.209-20150101020710\nTalk:Railgun/@comment-73.54.10.209-20150101020710/@comment-151.227.1.18-20150405130125\nTalk:Railgun/@comment-74.249.120.184-20190427071749\nTalk:Railgun/@comment-74.249.120.184-20190427071749/@comment-90.201.205.200-20190511233221\nTalk:Railgun/@comment-78.107.252.238-20180131010138\nTalk:Railgun/@comment-78.107.252.238-20180131010138/@comment-189.232.22.1-20180829181257\nTalk:Railgun/@comment-78.107.252.238-20180131010138/@comment-192.136.161.33-20180131042632\nTalk:Railgun/@comment-79.199.110.193-20141218124225\nTalk:Railgun/@comment-79.199.110.193-20141218124225/@comment-24.237.93.59-20141224121609\nTalk:Railgun/@comment-79.199.110.193-20141218124225/@comment-59.167.133.185-20150116025342\nTalk:Railgun/@comment-88.85.155.146-20150323160535\nTalk:Railgun/@comment-88.85.155.146-20150323160535/@comment-130.160.143.133-20150420114533\nTalk:Railgun/@comment-88.85.155.146-20150323160535/@comment-198.200.77.251-20150723153222\nTalk:Railgun/@comment-88.85.155.146-20150323160535/@comment-67.181.26.155-20150604094853\nTalk:Railgun/@comment-88.85.155.146-20150323160535/@comment-72.241.143.238-20150609124154\nTalk:Railgun/@comment-90.200.46.38-20181029093524\nTalk:Railgun/@comment-90.200.46.38-20181029093524/@comment-73.76.236.236-20181114035426\nTalk:Railgun/@comment-90.241.135.49-20190327191756\nTalk:Railgun/@comment-90.241.135.49-20190327191756/@comment-192.136.170.98-20190328204801\nTalk:Railgun/@comment-92.201.87.115-20141230184359\nTalk:Railgun/@comment-92.201.87.115-20141230184359/@comment-87.253.63.54-20141231185532\nTalk:Railgun/@comment-94.194.142.143-20170323145118\nTalk:Rajukru Multi-Stoves/@comment-37315376-20181027034558\nTalk:Rajukru Multi-Stoves/@comment-37315376-20181027035326\nTalk:Rajukru Multi-Stoves/@comment-37315376-20181027035404\nTalk:Rajukru Multi-Stoves/@comment-37315376-20181027035540\nTalk:Rajukru Multi-Stoves/@comment-37315376-20181027035704\nTalk:Rajukru Multi-Stoves/@comment-37315376-20181027035807\nTalk:Rajukru Multi-Stoves/@comment-50.154.136.52-20160214020943\nTalk:Rajukru Multi-Stoves/@comment-73.142.176.57-20150524010635\nTalk:Rajukru Multi-Stoves/@comment-97.95.192.25-20181027034603\nTalk:Rajukru Multi-Stoves/@comment-97.95.192.25-20181027034634\nTalk:Rajukru Multi-Stoves/@comment-97.95.192.25-20181027034640\nTalk:Rajukru Multi-Stoves/@comment-97.95.192.25-20181027034643\nTalk:Rajukru Multi-Stoves/@comment-97.95.192.25-20181027034655\nTalk:Rajukru Multi-Stoves/@comment-97.95.192.25-20181027034916\nTalk:Rajukru Multi-Stoves/@comment-97.95.192.25-20181027035109\nTalk:Rajukru Multi-Stoves/@comment-97.95.192.25-20181027035217\nTalk:Rajukru Multi-Stoves/@comment-97.95.192.25-20181027035437\nTalk:Rajukru Multi-Stoves/@comment-97.95.192.25-20181027035514\nTalk:Rajukru Multi-Stoves/@comment-97.95.192.25-20181027035514/@comment-97.95.192.25-20181027035526\nTalk:Rajukru Multi-Stoves/@comment-97.95.192.25-20181027035643\nTalk:Ram Tah/@comment-2601:189:C37F:9A42:2D2B:B62B:7D57:66BB-20190805005101\nTalk:Ram Tah/@comment-45587726-20200424143327\nTalk:Ram Tah/@comment-69.157.83.19-20190422130220\nTalk:Ram Tah/@comment-69.157.83.19-20190422130220/@comment-2607:FCC8:6703:1000:F9DF:F767:3D1C:97E3-20190629063804\nTalk:Ranks/@comment-44180665-20200522155515\nTalk:Ranks/@comment-44180665-20200522155515/@comment-34731634-20200904154903\nTalk:Ranks/@comment-64.134.166.117-20181114210436\nTalk:Ranks/@comment-70.249.189.124-20180918210113\nTalk:Ranks/@comment-70.249.189.124-20180918210113/@comment-211.26.134.214-20200110030305\nTalk:Rapa Bao Snake Skins/@comment-77.50.26.143-20160814212323\nTalk:Rapid Charge Shield Cell Bank/@comment-2806:104E:17:11DF:78BC:F0E9:6481:5379-20190618042250\nTalk:Rapid Charge Shield Cell Bank/@comment-2806:104E:17:11DF:78BC:F0E9:6481:5379-20190618042250/@comment-27941085-20200120000617\nTalk:Rapid Fire Weapon/@comment-86.140.137.187-20180705223404\nTalk:Rapid Fire Weapon/@comment-86.140.137.187-20180705223404/@comment-2600:6C58:4280:396:70FA:AA:C7D:48E7-20180713024923\nTalk:Rapid Fire Weapon/@comment-86.140.137.187-20180705223404/@comment-90.200.46.38-20181117201318\nTalk:Rapid Fire Weapon/@comment-90.200.46.38-20181125011841\nTalk:Rapid Fire Weapon/@comment-90.200.46.38-20181125011841/@comment-178.115.131.56-20190106193415\nTalk:Rapid Fire Weapon/@comment-90.200.46.38-20181125011841/@comment-192.136.170.98-20181125042646\nTalk:Rare Artwork/@comment-26109641-20150214184848\nTalk:Rare Artwork/@comment-26362216-20150503151124\nTalk:Rare Artwork/@comment-67.186.92.128-20150425064442\nTalk:Rare Artwork/@comment-77.163.150.115-20150705131840\nTalk:Rare Artwork/@comment-77.163.150.115-20150705131840/@comment-77.163.150.115-20150705133405\nTalk:Ratings/@comment-105.6.99.222-20161220124657\nTalk:Ratings/@comment-107.145.122.40-20160211071600\nTalk:Ratings/@comment-107.145.122.40-20160211071600/@comment-68.62.76.55-20160211135136\nTalk:Ratings/@comment-128.74.170.132-20180825003117\nTalk:Ratings/@comment-176.127.74.153-20160408051814\nTalk:Ratings/@comment-176.127.74.153-20160408051814/@comment-100.15.97.232-20160409090358\nTalk:Ratings/@comment-176.127.74.153-20160408051814/@comment-184.90.54.127-20160811022105\nTalk:Ratings/@comment-176.127.74.153-20160408051814/@comment-2155082-20160811030445\nTalk:Ratings/@comment-192.198.3.161-20160112013832\nTalk:Ratings/@comment-192.198.3.161-20160112013832/@comment-68.62.76.55-20160211135223\nTalk:Ratings/@comment-35245756-20180923000652\nTalk:Ratings/@comment-98.225.69.62-20150801062321\nTalk:Ratings/@comment-98.225.69.62-20150801062321/@comment-177.100.118.211-20150810172423\nTalk:Ratings/@comment-98.225.69.62-20150801062321/@comment-210.55.18.198-20150904025825\nTalk:Ratings/@comment-98.225.69.62-20150801062321/@comment-76.188.89.242-20150806145738\nTalk:Raw Materials/@comment-46148999-20200621124028\nTalk:Raw Materials/@comment-46148999-20200621124028/@comment-26810597-20200622005316\nTalk:Raxxla/@comment-108.210.146.89-20190401123009\nTalk:Raxxla/@comment-108.210.146.89-20190401123009/@comment-165.189.26.135-20200207141012\nTalk:Raxxla/@comment-108.210.146.89-20190401123009/@comment-67.84.152.251-20200118165750\nTalk:Raxxla/@comment-108.210.146.89-20190401123009/@comment-79.100.19.100-20190507194004\nTalk:Raxxla/@comment-176.78.158.9-20190513032410\nTalk:Raxxla/@comment-192.136.161.52-20161104163723\nTalk:Raxxla/@comment-192.136.170.98-20190226212607\nTalk:Raxxla/@comment-192.136.170.98-20190226212607/@comment-176.78.158.9-20190505145306\nTalk:Raxxla/@comment-192.136.170.98-20190226212607/@comment-192.136.170.98-20190312180935\nTalk:Raxxla/@comment-192.136.170.98-20190226212607/@comment-84.118.91.133-20190311123426\nTalk:Raxxla/@comment-24.255.168.35-20160310165357\nTalk:Raxxla/@comment-24.255.168.35-20160310165357/@comment-95.91.228.136-20160314131428\nTalk:Raxxla/@comment-37938660-20200124112855\nTalk:Raxxla/@comment-37938660-20200124112855/@comment-44904441-20200127224720\nTalk:Raxxla/@comment-38832069-20190316210240\nTalk:Raxxla/@comment-45781825-20200513190651\nTalk:Raxxla/@comment-50.138.159.119-20160901234955\nTalk:Raxxla/@comment-6033893-20140804212654\nTalk:Raxxla/@comment-6120634-20190317093311\nTalk:Raxxla/@comment-69.125.156.220-20150821073458\nTalk:Raxxla/@comment-69.125.156.220-20150821073458/@comment-99.231.66.128-20161213033534\nTalk:Raxxla/@comment-69.125.156.220-20150821073458/@comment-99.231.66.128-20161213033956\nTalk:Raxxla/@comment-70.187.151.32-20150913012750\nTalk:Raxxla/@comment-70.68.14.60-20170802043936\nTalk:Raxxla/@comment-86.139.195.109-20150307164522\nTalk:Raxxla/@comment-86.19.158.165-20171104222029\nTalk:Raxxla/@comment-86.19.158.165-20171104222758\nTalk:Raxxla/@comment-86.19.158.165-20171104224124\nTalk:Raxxla/@comment-86.42.60.84-20150726213800\nTalk:Raxxla/@comment-86.42.60.84-20150726213800/@comment-103.254.134.240-20160806225032\nTalk:Raxxla/@comment-89.167.129.95-20190524150032\nTalk:Raxxla/@comment-89.167.129.95-20190524150032/@comment-176.241.72.203-20190823220135\nTalk:Raxxla/@comment-89.167.129.95-20190524150032/@comment-87.115.200.79-20190705012047\nTalk:Raxxla/@comment-95.90.196.42-20160531151620\nTalk:Raxxla/@comment-98.232.165.129-20190225084320\nTalk:Raxxla/@comment-98.232.165.129-20190225084320/@comment-209.237.111.162-20190302140644\nTalk:Raxxla/@comment-98.232.165.129-20190225084320/@comment-37432099-20200408040306\nTalk:Raxxla/@comment-98.232.165.129-20190225084320/@comment-50.53.177.97-20190420214830\nTalk:Reactive Armour/@comment-148.3.31.132-20160112233650\nTalk:Reactive Armour/@comment-27633668-20160118133017\nTalk:Reactive Armour/@comment-31.52.45.250-20150401200000\nTalk:Reactive Armour/@comment-73.206.125.82-20150611160555\nTalk:Reactive Armour/@comment-73.206.125.82-20150611160555/@comment-73.206.125.82-20150611160634\nTalk:Reactive Surface Composite/@comment-138.163.0.42-20150112181336\nTalk:Reactive Surface Composite/@comment-138.163.0.42-20150112181336/@comment-12138097-20150112220414\nTalk:Reactive Surface Composite/@comment-138.163.0.42-20150112181336/@comment-176.249.62.114-20170810171913\nTalk:Reactive Surface Composite/@comment-138.163.0.42-20150112181336/@comment-25992270-20150305114112\nTalk:Reactive Surface Composite/@comment-138.163.0.42-20150112181336/@comment-84.83.239.239-20181119205349\nTalk:Reactive Surface Composite/@comment-176.249.62.114-20170810171345\nTalk:Reactive Surface Composite/@comment-184.57.10.24-20151218221001\nTalk:Reactive Surface Composite/@comment-185.26.182.38-20151024155444\nTalk:Reactive Surface Composite/@comment-195.200.70.54-20151023084328\nTalk:Reactive Surface Composite/@comment-1969007-20180420003336\nTalk:Reactive Surface Composite/@comment-210.55.18.198-20150904020057\nTalk:Reactive Surface Composite/@comment-2A02:2F07:C303:2401:E93C:8AC0:D3B4:1E3E-20190720071145\nTalk:Reactive Surface Composite/@comment-37.58.168.167-20150106123653\nTalk:Reactive Surface Composite/@comment-37.58.168.167-20150106123653/@comment-25974778-20150106142217\nTalk:Reactive Surface Composite/@comment-90.217.129.100-20150221142519\nTalk:Rebel Transmissions/@comment-174.74.81.170-20150409063648\nTalk:Rebel Transmissions/@comment-174.74.81.170-20150409063648/@comment-23.16.181.220-20150428021513\nTalk:Rebel Transmissions/@comment-27051516-20151007082234\nTalk:Rebel Transmissions/@comment-2A02:C7D:49CB:5E00:A41E:71A2:D5A1:F2CB-20170808162527\nTalk:Rebel Transmissions/@comment-72.47.31.154-20151007080300\nTalk:Rebel Transmissions/@comment-74.106.14.110-20150212032007\nTalk:Rebel Transmissions/@comment-76.121.158.50-20150107094837\nTalk:Rebel Transmissions/@comment-76.121.158.50-20150107094837/@comment-59.89.206.151-20150216153304\nTalk:Rebel Transmissions/@comment-86.153.76.75-20150111135209\nTalk:Rebel Transmissions/@comment-92.237.210.92-20150317062426\nTalk:Rebel Transmissions/@comment-92.237.210.92-20150317062426/@comment-1250011-20150317113431\nTalk:Rebel Transmissions/@comment-92.237.210.92-20150317062426/@comment-135.0.26.15-20150728235515\nTalk:Reboot and Repair/@comment-105.112.39.11-20180211105649\nTalk:Reboot and Repair/@comment-105.112.39.11-20180211105649/@comment-108.205.236.85-20180720100233\nTalk:Reboot and Repair/@comment-174.134.139.244-20150306041908\nTalk:Reboot and Repair/@comment-189.232.14.15-20181214204850\nTalk:Reboot and Repair/@comment-189.232.14.15-20181214204850/@comment-24.164.64.128-20181224045045\nTalk:Reboot and Repair/@comment-189.232.14.15-20181214204850/@comment-26810597-20181224053751\nTalk:Reboot and Repair/@comment-213.58.177.206-20190112143733\nTalk:Reboot and Repair/@comment-23.241.88.81-20150416044045\nTalk:Reboot and Repair/@comment-24.203.68.225-20160717160218\nTalk:Reboot and Repair/@comment-24503385-20150530194042\nTalk:Reboot and Repair/@comment-50.35.25.222-20150406023257\nTalk:Reboot and Repair/@comment-58.106.156.207-20150317142340\nTalk:Reboot and Repair/@comment-66.109.235.218-20150807163907\nTalk:Reboot and Repair/@comment-67.169.13.177-20160117185302\nTalk:Reboot and Repair/@comment-72.66.98.147-20160607223223\nTalk:Reboot and Repair/@comment-77.12.128.11-20160626194631\nTalk:Reboot and Repair/@comment-94.154.25.226-20160102133810\nTalk:Refinery/@comment-108.11.158.188-20151220033107\nTalk:Refinery/@comment-121.211.39.251-20150129233741\nTalk:Refinery/@comment-121.211.39.251-20150129233741/@comment-26009169-20150130004653\nTalk:Refinery/@comment-210.55.18.198-20150904032216\nTalk:Refinery/@comment-213.47.77.205-20151205063631\nTalk:Refinery/@comment-213.47.77.205-20151205063631/@comment-213.47.77.205-20151205064123\nTalk:Refinery/@comment-26005414-20150206053148\nTalk:Refinery/@comment-26005414-20150206053148/@comment-86.20.14.215-20150302001559\nTalk:Refinery/@comment-26005414-20150206053148/@comment-86.9.113.9-20190112172300\nTalk:Refinery/@comment-71.89.74.119-20151206040550\nTalk:Refinery/@comment-71.89.74.119-20151206040550/@comment-24.179.244.193-20170524010217\nTalk:Refinery/@comment-71.89.74.119-20151206040550/@comment-66.239.62.72-20151206070507\nTalk:Refinery/@comment-71.89.74.119-20151206040550/@comment-86.129.91.235-20151220230144\nTalk:Refinery/@comment-81.101.97.103-20150109021342\nTalk:Refinery/@comment-81.101.97.103-20150109021342/@comment-12138097-20150109042818\nTalk:Refinery/@comment-81.101.97.103-20150109021342/@comment-91.181.50.244-20150505080656\nTalk:Refinery/@comment-81.101.97.103-20150110184855\nTalk:Refinery/@comment-85.197.35.31-20160606173527\nTalk:Refinery/@comment-85.197.35.31-20160606173527/@comment-192.136.175.90-20160606195339\nTalk:Refinery/@comment-96.226.91.232-20150124140901\nTalk:Refinery/@comment-96.226.91.232-20150124140901/@comment-72.21.196.64-20160901042341\nTalk:Refinery/@comment-96.226.91.232-20150124140901/@comment-84.93.144.196-20150124163822\nTalk:Regeneration Sequence/@comment-165.225.72.89-20171204142301\nTalk:Regeneration Sequence/@comment-165.225.72.89-20171204142301/@comment-192.136.161.33-20171204211223\nTalk:Regeneration Sequence/@comment-172.58.35.196-20161129205146\nTalk:Regeneration Sequence/@comment-192.136.161.52-20161129213720\nTalk:Regeneration Sequence/@comment-204.83.116.180-20170118053239\nTalk:Regeneration Sequence/@comment-204.83.116.180-20170118053239/@comment-192.136.161.33-20171204211233\nTalk:Regeneration Sequence/@comment-77.96.186.135-20180505093413\nTalk:Regeneration Sequence/@comment-77.96.186.135-20180505093413/@comment-92.176.18.64-20180527213004\nTalk:Regeneration Sequence/@comment-94.254.8.87-20161022164712\nTalk:Regeneration Sequence/@comment-94.254.8.87-20161022164712/@comment-176.71.177.202-20161107180357\nTalk:Reinforced Alloys/@comment-176.2.122.137-20150812014645\nTalk:Reinforced Alloys/@comment-176.2.122.137-20150812014645/@comment-81.174.250.56-20150819212245\nTalk:Reinforced Alloys/@comment-213.21.33.78-20141220174011\nTalk:Reinforced Alloys/@comment-213.21.33.78-20141220174011/@comment-50.245.134.27-20150309024627\nTalk:Reinforced Alloys/@comment-213.21.33.78-20141220174011/@comment-62.178.217.184-20150222181350\nTalk:Reinforced Alloys/@comment-24.57.176.5-20150416175803\nTalk:Reinforced Shield Generator/@comment-2.137.15.194-20190816120911\nTalk:Reinforced Shield Generator/@comment-89.99.102.107-20180325203547\nTalk:Reinforced Shield Generator/@comment-89.99.102.107-20180325203547/@comment-35716095-20180628204858\nTalk:Remote Release Flak Launcher/@comment-2001:8003:3CF0:2A00:94A7:FAB:8E6D:9B06-20171224014014\nTalk:Remote Release Flak Launcher/@comment-2001:8003:3CF0:2A00:94A7:FAB:8E6D:9B06-20171224014014/@comment-125.237.1.45-20180117215335\nTalk:Remote Release Flak Launcher/@comment-2001:8003:3CF0:2A00:94A7:FAB:8E6D:9B06-20171224014014/@comment-32843761-20180314033457\nTalk:Remote Release Flak Launcher/@comment-2605:A000:140E:15C:3C7F:3B86:B75E:3C56-20171221013247\nTalk:Remote Release Flak Launcher/@comment-2605:A000:140E:15C:3C7F:3B86:B75E:3C56-20171221013247/@comment-44180665-20200312184345\nTalk:Remote Release Flak Launcher/@comment-44164282-20191018004734\nTalk:Remote Release Flak Launcher/@comment-62.194.230.173-20171015204927\nTalk:Remote Release Flak Launcher/@comment-62.194.230.173-20171015204927/@comment-178.148.206.106-20171109043147\nTalk:Remote Release Flak Launcher/@comment-67.60.240.149-20191222204206\nTalk:Remote Release Flak Launcher/@comment-77.6.194.108-20190105090632\nTalk:Remote Release Flak Launcher/@comment-77.6.194.108-20190105090632/@comment-87.92.106.113-20190725201026\nTalk:Remote Release Flak Launcher/@comment-84.142.219.247-20180312235353\nTalk:Remote Release Flechette Launcher/@comment-146.115.171.192-20180513012117\nTalk:Remote Release Flechette Launcher/@comment-146.115.171.192-20180513012117/@comment-103.35.231.188-20180703013130\nTalk:Remote Release Flechette Launcher/@comment-188.193.174.14-20180404140018\nTalk:Remote Release Flechette Launcher/@comment-188.193.174.14-20180404140018/@comment-33405632-20180406112240\nTalk:Remote Release Flechette Launcher/@comment-188.193.174.14-20180410123736\nTalk:Remote Release Flechette Launcher/@comment-2.96.200.18-20180303160746\nTalk:Remote Release Flechette Launcher/@comment-2.96.200.18-20180303160746/@comment-33405632-20180307012114\nTalk:Remote Release Flechette Launcher/@comment-216.164.232.183-20180120070456\nTalk:Remote Release Flechette Launcher/@comment-216.164.232.183-20180120070456/@comment-192.136.161.33-20180120152531\nTalk:Remote Release Flechette Launcher/@comment-216.164.232.183-20180120070456/@comment-24.32.58.164-20180125183140\nTalk:Remote Release Flechette Launcher/@comment-216.164.232.183-20180120070456/@comment-47.184.143.3-20180204045232\nTalk:Remote Release Flechette Launcher/@comment-216.164.232.183-20180120070456/@comment-74.208.134.1-20180302140354\nTalk:Remote Release Flechette Launcher/@comment-2600:1007:B117:7D57:A198:CE78:EF01:BA8D-20200116152334\nTalk:Remote Release Flechette Launcher/@comment-2601:189:C37F:9A42:C94B:5F47:87ED:5B2-20190804084926\nTalk:Remote Release Flechette Launcher/@comment-81.106.140.16-20190709164208\nTalk:Remote Release Flechette Launcher/@comment-91.208.153.1-20180504071009\nTalk:Remote Release Flechette Launcher/@comment-99.248.246.6-20180824132332\nTalk:Remote Release Flechette Launcher/@comment-99.248.246.6-20180824132332/@comment-173.33.46.126-20180921191505\nTalk:Remote Release Flechette Launcher/@comment-99.248.246.6-20180824132332/@comment-2601:147:C201:CB59:BD6F:D571:5C49:7044-20180905145138\nTalk:Remote Release Flechette Launcher/@comment-99.248.246.6-20180824132332/@comment-67.242.215.145-20181123144902\nTalk:Remote Release Flechette Launcher/@comment-99.248.246.6-20180824132332/@comment-76.21.73.76-20190705220838\nTalk:Remote Workshop/@comment-2003:69:AD0E:2D00:81E:355F:3C00:F4A7-20180314061345\nTalk:Remote Workshop/@comment-2A02:2149:8136:3200:C5A2:9B4A:5688:F665-20180522170644\nTalk:Remote Workshop/@comment-2A02:2149:8136:3200:C5A2:9B4A:5688:F665-20180522170644/@comment-146.199.203.103-20190305101618\nTalk:Remote Workshop/@comment-2A02:2149:8136:3200:C5A2:9B4A:5688:F665-20180522170644/@comment-212.10.111.72-20190731134041\nTalk:Remote Workshop/@comment-73.209.152.39-20180724032722\nTalk:Reorte/@comment-5959508-20170127102532\nTalk:Reputation/@comment-26009169-20150209014148\nTalk:Reputation/@comment-26009169-20150209014148/@comment-2155082-20161103035542\nTalk:Reputation/@comment-26009169-20150209014148/@comment-27390802-20160120025255\nTalk:Reputation/@comment-26009169-20150209014148/@comment-68.227.123.98-20150406021503\nTalk:Reputation/@comment-26009169-20150209014148/@comment-82.20.30.42-20160723010341\nTalk:Reputation/@comment-26009169-20150209014148/@comment-85.159.168.177-20161025130105\nTalk:Reputation/@comment-76.11.115.154-20161127044235\nTalk:Reputation/@comment-76.11.115.154-20161127044235/@comment-31226940-20170320231910\nTalk:Reputation/@comment-77.186.252.96-20180529200239\nTalk:Reputation/@comment-86.139.12.100-20171210142208\nTalk:Reputation/@comment-94.209.127.220-20161230211138\nTalk:Reputation/@comment-98.232.151.219-20190116022733\nTalk:Reputation/@comment-98.245.210.143-20170108002730\nTalk:Reputation/@comment-98.245.210.143-20170108002730/@comment-192.136.161.52-20170108020943\nTalk:Rescue Vessel/@comment-2603:9000:AA85:E600:2472:1BA8:63CB:F798-20180904072210\nTalk:Rescue Vessel/@comment-2A01:CB11:3E1:3D00:D8E6:6678:4436:CFCE-20180716174024\nTalk:Resource Extraction Site/@comment-156.3.54.203-20150608151315\nTalk:Resource Extraction Site/@comment-162.232.140.150-20150307221035\nTalk:Resource Extraction Site/@comment-162.232.140.150-20150307221035/@comment-162.232.140.150-20150307221201\nTalk:Resource Extraction Site/@comment-162.232.140.150-20150307221035/@comment-26005414-20150307223414\nTalk:Resource Extraction Site/@comment-173.65.131.178-20160304051819\nTalk:Resource Extraction Site/@comment-176.221.77.250-20170712131653\nTalk:Resource Extraction Site/@comment-24.184.10.253-20151025153245\nTalk:Resource Extraction Site/@comment-24503385-20150422112841\nTalk:Resource Extraction Site/@comment-24503385-20150422112841/@comment-24503385-20150426140305\nTalk:Resource Extraction Site/@comment-24503385-20150422112841/@comment-26009169-20150422123504\nTalk:Resource Extraction Site/@comment-24503385-20150422112841/@comment-26009169-20150425161822\nTalk:Resource Extraction Site/@comment-24503385-20150422112841/@comment-26328406-20150425151529\nTalk:Resource Extraction Site/@comment-24503385-20150422112841/@comment-26328406-20150426125016\nTalk:Resource Extraction Site/@comment-24503385-20150422112841/@comment-82.14.162.11-20150816011726\nTalk:Resource Extraction Site/@comment-24503385-20151223104624\nTalk:Resource Extraction Site/@comment-27115814-20151029022525\nTalk:Resource Extraction Site/@comment-27115814-20151111065001\nTalk:Resource Extraction Site/@comment-27115814-20151111065001/@comment-174.7.36.10-20160302230951\nTalk:Resource Extraction Site/@comment-27115814-20151111065001/@comment-27115814-20151111200745\nTalk:Resource Extraction Site/@comment-27115814-20151111065001/@comment-27156860-20151111070637\nTalk:Resource Extraction Site/@comment-27533991-20160103050928\nTalk:Resource Extraction Site/@comment-27533991-20160103050928/@comment-46.223.128.121-20160220181030\nTalk:Resource Extraction Site/@comment-27533991-20160103050928/@comment-46.223.128.121-20160221181118\nTalk:Resource Extraction Site/@comment-50.10.178.138-20150409102740\nTalk:Resource Extraction Site/@comment-50.10.178.138-20150409102740/@comment-174.74.18.56-20160210015510\nTalk:Resource Extraction Site/@comment-50.181.47.16-20150922064857\nTalk:Resource Extraction Site/@comment-50.181.47.16-20150922064857/@comment-131.91.4.35-20151002030102\nTalk:Resource Extraction Site/@comment-50.181.47.16-20150922064857/@comment-188.29.165.130-20151027153401\nTalk:Resource Extraction Site/@comment-50.181.47.16-20150922064857/@comment-73.1.55.15-20151012234758\nTalk:Resource Extraction Site/@comment-50.181.47.16-20150922064857/@comment-79.169.89.30-20150928003519\nTalk:Resource Extraction Site/@comment-50.181.47.16-20150922064857/@comment-94.213.251.41-20150928190111\nTalk:Resource Extraction Site/@comment-67.181.26.155-20150621161625\nTalk:Resource Extraction Site/@comment-67.181.26.155-20150621161625/@comment-82.14.162.11-20150724214828\nTalk:Resource Extraction Site/@comment-67.234.218.133-20151011234544\nTalk:Resource Extraction Site/@comment-71.231.12.141-20150705084614\nTalk:Resource Extraction Site/@comment-71.251.56.156-20150328230737\nTalk:Resource Extraction Site/@comment-71.47.27.251-20150408133015\nTalk:Resource Extraction Site/@comment-71.47.27.251-20150408133015/@comment-192.136.172.239-20160211221906\nTalk:Resource Extraction Site/@comment-71.47.27.251-20150408133015/@comment-25134518-20150413170844\nTalk:Resource Extraction Site/@comment-78.18.217.217-20150312012639\nTalk:Resource Extraction Site/@comment-79.78.180.136-20171215151810\nTalk:Resource Extraction Site/@comment-79.78.180.136-20171215151810/@comment-71.114.74.7-20180227072120\nTalk:Resource Extraction Site/@comment-82.209.144.12-20150112170718\nTalk:Resource Extraction Site/@comment-82.209.144.12-20150112170718/@comment-81.100.120.55-20150215101731\nTalk:Resource Extraction Site/@comment-85.96.27.240-20150122194835\nTalk:Resource Extraction Site/@comment-86.135.73.136-20150614234145\nTalk:Resource Extraction Site/@comment-86.135.73.136-20150614234145/@comment-24503385-20150620104041\nTalk:Resource Extraction Site/@comment-86.135.73.136-20150614234145/@comment-50.181.47.16-20151016132825\nTalk:Resource Extraction Site/@comment-86.135.73.136-20150614234145/@comment-70.198.70.236-20151016185511\nTalk:Resource Extraction Site/@comment-86.172.35.13-20150828121838\nTalk:Resource Extraction Site/@comment-869149-20151014181803\nTalk:Resource Extraction Site/@comment-90.230.130.74-20150906105544\nTalk:Resource Extraction Site/@comment-90.230.130.74-20150906105544/@comment-156.3.54.206-20151013172358\nTalk:Resource Extraction Site/@comment-91.8.154.54-20150406185652\nTalk:Resource Extraction Site/@comment-91.8.154.54-20150406185652/@comment-91.8.148.90-20150408160543\nTalk:Resource Extraction Site/@comment-92.97.210.35-20150501081601\nTalk:Resource Extraction Site/@comment-92.97.210.35-20150501081601/@comment-142.163.142.106-20150617164559\nTalk:Resource Extraction Site/@comment-92.97.210.35-20150501081601/@comment-90.218.113.180-20150531073849\nTalk:Respawn/@comment-63.116.31.198-20181107173958\nTalk:Respawn/@comment-63.116.31.198-20181107173958/@comment-144.121.97.26-20190116170408\nTalk:Retributor/@comment-24.124.77.87-20150831000005\nTalk:Retributor/@comment-24.124.77.87-20150831000005/@comment-80.94.160.227-20161010082547\nTalk:Retributor/@comment-26664214-20150817102101\nTalk:Retributor/@comment-26664214-20150817102101/@comment-118.208.98.52-20170710090033\nTalk:Retributor/@comment-26664214-20150817102101/@comment-208.58.52.242-20160112132356\nTalk:Retributor/@comment-26664214-20150817102101/@comment-71.202.183.229-20150920085135\nTalk:Retributor/@comment-26664214-20150817102101/@comment-97.34.130.50-20151025150536\nTalk:Retributor/@comment-72.241.143.238-20150820184553\nTalk:Retributor/@comment-72.241.143.238-20150820184553/@comment-208.108.212.70-20151013140909\nTalk:Retributor/@comment-72.241.143.238-20150820184553/@comment-94.1.65.7-20160405215710\nTalk:Retributor/@comment-74.109.112.130-20150822213128\nTalk:Retributor/@comment-74.109.112.130-20150822213128/@comment-1430497-20150822224922\nTalk:Retributor/@comment-90.200.46.38-20181030184156\nTalk:Retributor/@comment-90.200.46.38-20181030184156/@comment-192.136.170.98-20181121200017\nTalk:Retributor/@comment-90.200.46.38-20181030184156/@comment-90.200.46.38-20181031145500\nTalk:Retributor/@comment-90.200.46.38-20181030184156/@comment-90.200.46.38-20181121161724\nTalk:Retributor/@comment-90.200.46.38-20181030184156/@comment-90.200.46.38-20181122001643\nTalk:Retributor/@comment-90.200.49.195-20181218145027\nTalk:Retributor/@comment-90.200.49.195-20181218145027/@comment-192.136.170.98-20181218180002\nTalk:Retributor/@comment-90.200.49.195-20181218145027/@comment-90.201.205.200-20190511234054\nTalk:Retributor/@comment-94.12.31.80-20170805234151\nTalk:Reverberating Cascade/@comment-203.104.15.192-20190827005505\nTalk:Reverberating Cascade/@comment-203.104.15.192-20190827005505/@comment-27941085-20191003020728\nTalk:Reverberating Cascade/@comment-222.130.137.53-20180123060634\nTalk:Reverberating Cascade/@comment-222.130.137.53-20180123060634/@comment-192.136.161.33-20180123202059\nTalk:Reverberating Cascade/@comment-222.130.137.53-20180123060634/@comment-192.136.170.98-20181125042754\nTalk:Reverberating Cascade/@comment-222.130.137.53-20180123060634/@comment-192.136.170.98-20181127043234\nTalk:Reverberating Cascade/@comment-222.130.137.53-20180123060634/@comment-2600:1700:BDA0:AB20:BC37:EEE3:B939:E189-20180123200011\nTalk:Reverberating Cascade/@comment-222.130.137.53-20180123060634/@comment-29447082-20180127190808\nTalk:Reverberating Cascade/@comment-222.130.137.53-20180123060634/@comment-86.52.94.247-20180725041938\nTalk:Reverberating Cascade/@comment-222.130.137.53-20180123060634/@comment-90.200.46.38-20181125010858\nTalk:Reverberating Cascade/@comment-222.130.137.53-20180123060634/@comment-90.200.46.38-20181126230128\nTalk:Reverberating Cascade/@comment-24.71.229.161-20191006165509\nTalk:Reverberating Cascade/@comment-24.71.229.161-20191006165509/@comment-27941085-20200110043042\nTalk:Reverberating Cascade/@comment-24.71.229.161-20191221164546\nTalk:Reverberating Cascade/@comment-44180665-20200408131001\nTalk:Reverberating Cascade/@comment-44180665-20200408131001/@comment-34342495-20200419155907\nTalk:Reverberating Cascade/@comment-44180665-20200408131001/@comment-44180665-20200520114739\nTalk:Reverberating Cascade/@comment-44180665-20200408131001/@comment-44180665-20200520114905\nTalk:Reverberating Cascade/@comment-44180665-20200408131001/@comment-45677112-20200611175039\nTalk:Reverberating Cascade/@comment-46105471-20200628115715\nTalk:Reverberating Cascade/@comment-73.181.95.196-20190620091410\nTalk:Reverberating Cascade/@comment-73.181.95.196-20190620091410/@comment-170.185.126.17-20191111142851\nTalk:Reverberating Cascade/@comment-73.181.95.196-20190620091410/@comment-192.136.172.54-20190621222151\nTalk:Reverberating Cascade/@comment-86.171.245.8-20180311111338\nTalk:Reverberating Cascade/@comment-86.52.94.247-20180724014242\nTalk:Reverberating Cascade/@comment-86.52.94.247-20180724014242/@comment-195.234.74.137-20180725125432\nTalk:Reverberating Cascade/@comment-86.52.94.247-20180724014242/@comment-86.52.94.247-20180726000859\nTalk:Reverberating Cascade/@comment-86.52.94.247-20180724014242/@comment-86.52.94.247-20180726005706\nTalk:Rhea/@comment-108.249.78.148-20160603171927\nTalk:Rhea/@comment-204.191.154.122-20160118230330\nTalk:Rhea/@comment-204.191.154.122-20160118230330/@comment-50.53.99.17-20180201011608\nTalk:Rhenium/@comment-109.144.223.171-20190831190722\nTalk:Rhenium/@comment-50.53.178.6-20180322215332\nTalk:Rhenium/@comment-50.53.178.6-20180322215332/@comment-2602:306:39DE:CF0:C6D:E069:43B1:18BA-20180412185150\nTalk:Rhenium/@comment-72.74.130.29-20180417234259\nTalk:Rhodplumsite/@comment-2003:C1:8F42:6F00:A528:499D:C2AA:D987-20200207192007\nTalk:Rhodplumsite/@comment-2003:C1:8F42:6F00:A528:499D:C2AA:D987-20200207192007/@comment-37.164.108.74-20200212235016\nTalk:Riedquat/@comment-90.200.46.38-20181127001631\nTalk:Riedquat/@comment-90.200.46.38-20181127001631/@comment-2603:9000:8708:7A51:C22:D80B:7279:D8AF-20200207044028\nTalk:Robotics/@comment-26292233-20150502124726\nTalk:Robotics/@comment-76.185.89.24-20150709155702\nTalk:Robotics/@comment-90.194.43.190-20150303134101\nTalk:Robotics/@comment-90.194.43.190-20150303134101/@comment-90.194.43.190-20150303181456\nTalk:Rockforth Corporation/@comment-185.31.50.30-20191015080815\nTalk:Rockforth Corporation/@comment-185.31.50.30-20191015080815/@comment-2602:306:CE29:B0D0:31B1:49:303A:20EC-20191017093700\nTalk:Rockforth Fertiliser/@comment-2A02:C7F:46B1:7800:8B6:5E14:61E9:A3FF-20190922230841\nTalk:Rockforth Fertiliser/@comment-2A02:C7F:46B1:7800:8B6:5E14:61E9:A3FF-20190922230841/@comment-145.34.128.130-20190926052641\nTalk:Rockforth Fertiliser/@comment-2A02:C7F:46B1:7800:8B6:5E14:61E9:A3FF-20190922230841/@comment-208.122.107.251-20190925182742\nTalk:Roles/@comment-103.251.38.101-20181031104929\nTalk:Roles/@comment-103.251.38.101-20181031104929/@comment-44180665-20200501062025\nTalk:Roles/@comment-122.106.150.248-20141127162840\nTalk:Roles/@comment-122.106.150.248-20141127162840/@comment-107.188.30.12-20150319040121\nTalk:Roles/@comment-122.106.150.248-20141127162840/@comment-213.10.174.205-20141213235436\nTalk:Roles/@comment-134.191.220.72-20140829113957\nTalk:Roles/@comment-134.191.220.72-20140829113957/@comment-25335609-20140831090103\nTalk:Roles/@comment-134.191.220.72-20140829113957/@comment-2601:140:8700:4150:71B1:9803:1E54:CD94-20190522005629\nTalk:Roles/@comment-134.191.220.72-20140829113957/@comment-94.216.181.100-20170523041526\nTalk:Roles/@comment-150.134.245.5-20141030162251\nTalk:Roles/@comment-177.94.238.176-20180630202623\nTalk:Roles/@comment-211.24.50.45-20131224015235\nTalk:Roles/@comment-211.24.50.45-20131224015235/@comment-202.36.179.100-20140818014015\nTalk:Roles/@comment-211.24.50.45-20131224015235/@comment-98.71.149.5-20140719170912\nTalk:Roles/@comment-222.129.17.251-20150605102235\nTalk:Roles/@comment-222.129.17.251-20150605102235/@comment-26009169-20150605115346\nTalk:Roles/@comment-222.129.17.251-20150605102235/@comment-74.51.220.27-20160913140331\nTalk:Roles/@comment-24.77.80.72-20171008142240\nTalk:Roles/@comment-33441314-20191120022621\nTalk:Roles/@comment-33441314-20191120022621/@comment-44180665-20200501061950\nTalk:Roles/@comment-77.48.233.146-20150110093825\nTalk:Roles/@comment-77.48.233.146-20150110093825/@comment-135.19.167.83-20150121161409\nTalk:Roles/@comment-77.48.233.146-20150110093825/@comment-189.224.164.194-20150921005611\nTalk:Roles/@comment-77.48.233.146-20150110093825/@comment-194.230.159.193-20150121152345\nTalk:Roles/@comment-77.48.233.146-20150110093825/@comment-2.31.81.162-20150118194036\nTalk:Roles/@comment-77.48.233.146-20150110093825/@comment-24.22.27.163-20150110151047\nTalk:Roles/@comment-77.48.233.146-20150110093825/@comment-44180665-20200501062614\nTalk:Roles/@comment-77.48.233.146-20150110093825/@comment-4968814-20150120184306\nTalk:Roles/@comment-77.48.233.146-20150110093825/@comment-72.10.104.5-20150312141526\nTalk:Roles/@comment-77.48.233.146-20150110093825/@comment-86.19.157.214-20150111022057\nTalk:Roles/@comment-81.225.209.238-20140714211342\nTalk:Roles/@comment-81.225.209.238-20140803093027\nTalk:Roles/@comment-89.144.207.73-20141005200444\nTalk:Roles/@comment-89.144.207.73-20141005200444/@comment-2601:243:480:98D9:98A2:D697:8B24:AE92-20180311015833\nTalk:Roles/@comment-9472148-20160128150840\nTalk:Roles/@comment-9472148-20160128150840/@comment-109.228.166.46-20171025062854\nTalk:Roles/@comment-9472148-20160128150840/@comment-194.22.238.75-20170412071042\nTalk:Roles/@comment-9472148-20160128150840/@comment-27032150-20160129074011\nTalk:Roles/@comment-9472148-20160128150840/@comment-37.187.104.40-20170704060238\nTalk:Roles/@comment-9472148-20160128150840/@comment-44180665-20200501062109\nTalk:Roles/@comment-98.239.48.227-20150201163800\nTalk:Roles/@comment-98.239.48.227-20150201163800/@comment-165.234.40.254-20161105150652\nTalk:Roles/@comment-98.239.48.227-20150201163800/@comment-172.56.5.159-20180620061917\nTalk:Roles/@comment-98.239.48.227-20150201163800/@comment-173.209.211.148-20150302235949\nTalk:Roles/@comment-98.239.48.227-20150201163800/@comment-184.169.52.154-20181104194255\nTalk:Roles/@comment-98.239.48.227-20150201163800/@comment-216.36.147.237-20191015123116\nTalk:Roles/@comment-98.239.48.227-20150201163800/@comment-24.135.228.106-20180103003923\nTalk:Roles/@comment-98.239.48.227-20150201163800/@comment-81.231.248.122-20151118104542\nTalk:Roles/@comment-98.239.48.227-20150201163800/@comment-99.191.24.26-20150417211138\nTalk:Roles/@comment-99.242.240.234-20140320073219\nTalk:Roles/@comment-99.242.240.234-20140320073219/@comment-131.107.147.30-20140627184241\nTalk:Roles/@comment-99.242.240.234-20140320073219/@comment-188.94.18.118-20150106134032\nTalk:Roles/@comment-99.242.240.234-20140320073219/@comment-4259120-20140803100202\nTalk:Roles/@comment-99.242.240.234-20140320073219/@comment-82.197.212.7-20150108005513\nTalk:Ross 128/@comment-130.105.160.104-20180212164142\nTalk:Ross 128/@comment-130.105.160.104-20180212164142/@comment-189.32.29.99-20190115162047\nTalk:Ross 128/@comment-130.105.160.104-20180212164142/@comment-2003:75:8F3F:3B47:A481:E36D:2627:2FCE-20180323095042\nTalk:Ross 128/@comment-132.254.93.1-20181019170114\nTalk:Ross 128/@comment-132.254.93.1-20181019170114/@comment-132.254.93.1-20181019170321\nTalk:Ross 128/@comment-2A02:A311:640:E680:2592:4B16:72:2025-20171119161052\nTalk:Ross 128/@comment-2A02:A311:640:E680:2592:4B16:72:2025-20171119161052/@comment-50.27.186.128-20180329024332\nTalk:Ross 128/@comment-31226940-20170204101035\nTalk:Ross 128/@comment-31226940-20170204101035/@comment-2A02:C7F:120D:9B00:BD09:2449:D46C:CC62-20170914021641\nTalk:Ross 128/@comment-31226940-20170204101035/@comment-75.155.80.12-20170405070830\nTalk:Ruthenium/@comment-86.5.98.114-20180219203634\nTalk:Ruthenium/@comment-86.5.98.114-20180219203634/@comment-2003:F0:ABC5:7A00:782B:9099:853:9BA3-20190519131314\nTalk:Ruthenium/@comment-86.5.98.114-20180219203634/@comment-2003:F0:ABC5:7A00:782B:9099:853:9BA3-20190519134910\nTalk:Ruthenium/@comment-86.5.98.114-20180219203634/@comment-29839692-20180320074855\nTalk:Rutile/@comment-198.37.240.132-20161031212024\nTalk:S4 Sentry/@comment-117.194.66.159-20180729202848\nTalk:S4 Sentry/@comment-12.5.54.135-20151019143414\nTalk:S4 Sentry/@comment-31094186-20180430140951\nTalk:S9 Goliath/@comment-109.204.215.35-20170804195126\nTalk:S9 Goliath/@comment-109.204.215.35-20170804195126/@comment-25450485-20171202093145\nTalk:S9 Goliath/@comment-109.204.215.35-20170804195126/@comment-44180665-20200417174712\nTalk:S9 Goliath/@comment-2A02:C7F:A855:3D00:85C0:EC6F:84B7:A805-20180203162218\nTalk:SAP 8 Core Container/@comment-118.210.233.229-20151013124124\nTalk:SAP 8 Core Container/@comment-2607:FEA8:BE5F:FB5C:6858:1DA6:80D7:AD0E-20180809195535\nTalk:SAP 8 Core Container/@comment-62.176.13.167-20150618081921\nTalk:SAP 8 Core Container/@comment-62.176.13.167-20150618081921/@comment-176.124.224.33-20150730094552\nTalk:SAP 8 Core Container/@comment-62.176.13.167-20150618081921/@comment-26748640-20150719164904\nTalk:SAP 8 Core Container/@comment-62.176.13.167-20150618081921/@comment-4968814-20150619005131\nTalk:SAP 8 Core Container/@comment-81.100.120.55-20150803195746\nTalk:SAP 8 Core Container/@comment-81.100.120.55-20150803195746/@comment-135.19.26.124-20150803214826\nTalk:SAP 8 Core Container/@comment-81.100.120.55-20150803195746/@comment-69.70.13.118-20150803202729\nTalk:SAP 8 Core Container/@comment-81.100.120.55-20150803195746/@comment-903860-20180916034025\nTalk:SAP 8 Core Container/@comment-903860-20190715194618\nTalk:SAP 8 Core Container/@comment-96.40.125.238-20190220221910\nTalk:Sacaqawea Space Port/@comment-46306112-20200709134931\nTalk:Sadler's Song/@comment-176.78.158.9-20190512233151\nTalk:Sagittarius A*/@comment-100.36.168.163-20161002195119\nTalk:Sagittarius A*/@comment-100.36.168.163-20161002195119/@comment-100.36.168.163-20161002195134\nTalk:Sagittarius A*/@comment-107.167.109.164-20170905175743\nTalk:Sagittarius A*/@comment-107.167.109.164-20170905175743/@comment-107.167.109.166-20170906190334\nTalk:Sagittarius A*/@comment-107.167.109.164-20170905175743/@comment-192.136.161.33-20170905200412\nTalk:Sagittarius A*/@comment-107.167.109.164-20170905175743/@comment-192.136.161.33-20170906165251\nTalk:Sagittarius A*/@comment-107.167.109.164-20170905175743/@comment-5151386-20181224001920\nTalk:Sagittarius A*/@comment-107.167.109.164-20170905175743/@comment-74.92.88.233-20190219183758\nTalk:Sagittarius A*/@comment-107.167.109.164-20170905175743/@comment-77.243.25.98-20170905223816\nTalk:Sagittarius A*/@comment-12.5.54.135-20151001152317\nTalk:Sagittarius A*/@comment-12.5.54.135-20151001152317/@comment-60.229.147.15-20160118104031\nTalk:Sagittarius A*/@comment-173.240.33.219-20171029180413\nTalk:Sagittarius A*/@comment-188.32.125.130-20180507160214\nTalk:Sagittarius A*/@comment-188.32.125.130-20180507160214/@comment-2003:CA:A732:4C64:CC29:CB31:99E3:9E1C-20180507200518\nTalk:Sagittarius A*/@comment-200.113.32.182-20150925202940\nTalk:Sagittarius A*/@comment-200.113.32.182-20150925202940/@comment-63828-20200806234448\nTalk:Sagittarius A*/@comment-203.104.15.2-20190514045207\nTalk:Sagittarius A*/@comment-204.186.195.72-20170121210030\nTalk:Sagittarius A*/@comment-204.186.195.72-20170121210030/@comment-73.97.214.209-20191005054327\nTalk:Sagittarius A*/@comment-212.59.37.193-20150828061943\nTalk:Sagittarius A*/@comment-24.233.46.168-20150915062447\nTalk:Sagittarius A*/@comment-25411947-20150915104334\nTalk:Sagittarius A*/@comment-25411947-20150915104334/@comment-82.44.159.112-20161122190800\nTalk:Sagittarius A*/@comment-2601:600:9780:847:5113:1054:7494:899-20181223182052\nTalk:Sagittarius A*/@comment-2601:600:9780:847:5113:1054:7494:899-20181223182052/@comment-5151386-20181223221300\nTalk:Sagittarius A*/@comment-26702911-20181030125541\nTalk:Sagittarius A*/@comment-27588595-20190126002227\nTalk:Sagittarius A*/@comment-27588595-20190126002227/@comment-206.80.218.229-20190913012522\nTalk:Sagittarius A*/@comment-27588595-20190126002227/@comment-77.111.246.22-20200217175505\nTalk:Sagittarius A*/@comment-31580373-20170323015806\nTalk:Sagittarius A*/@comment-31580373-20170323015806/@comment-206.80.218.229-20190913012546\nTalk:Sagittarius A*/@comment-34438222-20180219134609\nTalk:Sagittarius A*/@comment-64.127.136.202-20160225150134\nTalk:Sagittarius A*/@comment-71.222.134.188-20190120222102\nTalk:Sagittarius A*/@comment-71.222.134.188-20190120222102/@comment-76.122.1.72-20191231225929\nTalk:Sagittarius A*/@comment-74.15.221.180-20170418042941\nTalk:Sagittarius A*/@comment-74.15.221.180-20170418042941/@comment-5151386-20181224002507\nTalk:Sagittarius A*/@comment-78.229.202.48-20160703234120\nTalk:Sagittarius A*/@comment-92.236.114.198-20160731114629\nTalk:Sagittarius Eye/@comment-27164624-20180831022239\nTalk:Sagittarius Eye/@comment-27164624-20180831022239/@comment-903860-20180915223312\nTalk:Sagittarius Eye/@comment-80.78.162.228-20180831114356\nTalk:Sagittarius Eye/@comment-903860-20180915223223\nTalk:Salvageable Wreckage/@comment-2.222.68.197-20160502194423\nTalk:Salvageable Wreckage/@comment-76.165.35.173-20160216154218\nTalk:Salvageable Wreckage/@comment-84.138.86.36-20151213113628\nTalk:Samarium/@comment-9522-20190508012653\nTalk:Samarium/@comment-9522-20190508012653/@comment-177.70.149.179-20190908145754\nTalk:Samarium/@comment-9522-20190508012653/@comment-177.70.149.179-20190908145809\nTalk:Samarium/@comment-9522-20190508012653/@comment-46808745-20200905180055\nTalk:Samarium/@comment-9522-20190508012653/@comment-46879954-20200913165051\nTalk:Sandro Sammarco/@comment-107.167.109.95-20181120211813\nTalk:Sandro Sammarco/@comment-107.167.109.95-20181120211813/@comment-91.245.131.95-20190424172736\nTalk:Sandro Sammarco/@comment-88.202.231.49-20180915191924\nTalk:Satellite/@comment-32333972-20181108131046\nTalk:Satellite/@comment-44904441-20200928193448\nTalk:Satellite/@comment-95.223.81.37-20180727094000\nTalk:Saud Kruger/@comment-94.54.100.211-20180812224716\nTalk:Scarab/@comment-107.182.64.199-20150807161909\nTalk:Scarab/@comment-107.182.64.199-20150807161909/@comment-24.117.207.202-20151009022044\nTalk:Scarab/@comment-107.182.64.199-20150807161909/@comment-26659268-20150808144951\nTalk:Scarab/@comment-12.5.54.135-20151207152839\nTalk:Scarab/@comment-123.100.106.196-20151027013328\nTalk:Scarab/@comment-123.100.106.196-20151027013328/@comment-27115814-20151201014715\nTalk:Scarab/@comment-138.59.121.175-20180811201517\nTalk:Scarab/@comment-155.192.180.12-20180607121710\nTalk:Scarab/@comment-156.3.54.203-20150902184151\nTalk:Scarab/@comment-156.3.54.203-20150902184151/@comment-27115814-20151201014648\nTalk:Scarab/@comment-156.3.54.203-20150902184151/@comment-27115814-20151207190836\nTalk:Scarab/@comment-156.3.54.203-20150902184151/@comment-50.106.63.136-20151011075724\nTalk:Scarab/@comment-156.3.54.203-20150902184151/@comment-97.81.64.207-20151202055214\nTalk:Scarab/@comment-173.237.109.109-20160202211309\nTalk:Scarab/@comment-1903369-20170906140631\nTalk:Scarab/@comment-1903369-20170906140631/@comment-34004391-20180130163441\nTalk:Scarab/@comment-2182702-20190706181202\nTalk:Scarab/@comment-2182702-20190706181202/@comment-25450485-20190925085159\nTalk:Scarab/@comment-2182702-20190706181202/@comment-25450485-20200412172619\nTalk:Scarab/@comment-24.228.248.215-20161223162422\nTalk:Scarab/@comment-24.228.248.215-20161223162422/@comment-105.158.21.38-20180429211543\nTalk:Scarab/@comment-24.228.248.215-20161223162422/@comment-24.228.248.215-20161223172256\nTalk:Scarab/@comment-25450485-20190923094017\nTalk:Scarab/@comment-26391992-20151201063640\nTalk:Scarab/@comment-26444643-20151223053654\nTalk:Scarab/@comment-26863649-20150807014349\nTalk:Scarab/@comment-26863649-20150807014349/@comment-12.5.54.135-20151013142705\nTalk:Scarab/@comment-26863649-20150807014349/@comment-156.3.54.203-20150903191943\nTalk:Scarab/@comment-26863649-20150807014349/@comment-156.3.54.205-20150921173705\nTalk:Scarab/@comment-26863649-20150807014349/@comment-86.158.249.22-20150811110557\nTalk:Scarab/@comment-26959616-20151005164728\nTalk:Scarab/@comment-26959616-20151005164728/@comment-27032150-20151006070825\nTalk:Scarab/@comment-27115814-20151207190534\nTalk:Scarab/@comment-27115814-20151207190534/@comment-26391992-20151215112944\nTalk:Scarab/@comment-27115814-20151207190534/@comment-27115814-20151218055359\nTalk:Scarab/@comment-27115814-20151207190534/@comment-72.241.143.238-20151223201450\nTalk:Scarab/@comment-27115814-20151207190534/@comment-79.154.39.223-20190331180001\nTalk:Scarab/@comment-29338189-20170503161722\nTalk:Scarab/@comment-29338189-20170503161722/@comment-192.136.161.52-20170503193417\nTalk:Scarab/@comment-29338189-20170503161722/@comment-29338189-20170503163051\nTalk:Scarab/@comment-67.164.206.232-20151206120043\nTalk:Scarab/@comment-67.164.206.232-20151206120043/@comment-27115814-20151207190721\nTalk:Scarab/@comment-71.206.159.168-20160212050004\nTalk:Scarab/@comment-71.206.159.168-20160212050004/@comment-162.25.24.153-20160223131439\nTalk:Scarab/@comment-92.28.249.166-20160105201636\nTalk:Scarab/@comment-92.28.249.166-20160105201636/@comment-38078413-20190106211716\nTalk:Scarab/@comment-92.28.249.166-20160105201636/@comment-71.114.112.182-20160824040848\nTalk:Scarab/@comment-92.28.249.166-20160105201636/@comment-94.134.38.132-20170109003632\nTalk:Scavenger/@comment-213.14.171.51-20170628141226\nTalk:Scavenger/@comment-70.181.224.118-20170627145611\nTalk:Scavenger/@comment-78.151.246.220-20190504192133\nTalk:Scramble Spectrum/@comment-203.104.15.192-20190823023845\nTalk:Scramble Spectrum/@comment-46105471-20200709154716\nTalk:Scramble Spectrum/@comment-5.49.89.6-20171227211004\nTalk:Scramble Spectrum/@comment-5.49.89.6-20171227211004/@comment-33405632-20180409225526\nTalk:Scramble Spectrum/@comment-84.93.212.106-20181125151317\nTalk:Scramble Spectrum/@comment-84.93.212.106-20181125151317/@comment-192.136.170.98-20181125152802\nTalk:Screening Shell/@comment-193.120.220.3-20180404104947\nTalk:Screening Shell/@comment-193.120.220.3-20180404104947/@comment-192.136.161.33-20180405031014\nTalk:Screening Shell/@comment-2001:5B0:4BC0:9F0:0:FF:FEBD:63F2-20180921045818\nTalk:Screening Shell/@comment-2001:5B0:4BC0:9F0:0:FF:FEBD:63F2-20180921045818/@comment-2602:306:CE29:B0D0:7D6E:D1A2:1A68:171-20190910231622\nTalk:Screening Shell/@comment-2600:8807:8000:178:2CDA:5530:73EF:7B9-20170901034141\nTalk:Screening Shell/@comment-2600:8807:8000:178:2CDA:5530:73EF:7B9-20170901034141/@comment-210.246.26.18-20171009201817\nTalk:Screening Shell/@comment-2600:8807:8000:178:2CDA:5530:73EF:7B9-20170901034141/@comment-31363749-20170901060347\nTalk:Screening Shell/@comment-2602:306:CE29:B0D0:7D6E:D1A2:1A68:171-20190910231446\nTalk:Scythe of Panem/@comment-86.199.152.40-20191025084951\nTalk:Search and Rescue/@comment-115.87.48.39-20190710151013\nTalk:Search and Rescue/@comment-2003:C2:6F31:617D:D9FC:4DC0:BEDE:1EF7-20190908044109\nTalk:Search and Rescue/@comment-2003:C2:6F31:617D:D9FC:4DC0:BEDE:1EF7-20190908044109/@comment-36264955-20191108201222\nTalk:Search and Rescue/@comment-2603:9000:8F0B:500:6135:E533:1134:FF2B-20190409024500\nTalk:Search and Rescue/@comment-31.124.35.110-20190823163407\nTalk:Search and Rescue/@comment-31.124.35.110-20190823163407/@comment-2601:249:C01:2420:9981:20C0:E0B:2359-20191212040115\nTalk:Search and Rescue/@comment-31.124.35.110-20190823163407/@comment-84.213.205.198-20190825104916\nTalk:Search and Rescue Agent/@comment-173.73.27.230-20180802010535\nTalk:Search and Rescue Agent/@comment-173.73.27.230-20180802011311\nTalk:Search and Rescue Agent/@comment-88.220.45.222-20180309123113\nTalk:Second Thargoid War/@comment-98.254.212.149-20190223013634\nTalk:Second Thargoid War/@comment-98.254.212.149-20190223013634/@comment-2605:6000:6314:DD00:A194:2E22:D243:4B21-20190223065112\nTalk:Security Firmware Patch/@comment-75.133.241.51-20190827005123\nTalk:Security Firmware Patch/@comment-75.133.241.51-20190827005123/@comment-32487688-20190905190536\nTalk:Sedna/@comment-26122331-20170922125328\nTalk:Seismic Charge Launcher/@comment-109.152.193.114-20190213200153\nTalk:Seismic Charge Launcher/@comment-189.4.62.61-20181219062636\nTalk:Seismic Charge Launcher/@comment-199.200.31.94-20190115041038\nTalk:Seismic Charge Launcher/@comment-199.200.31.94-20190115041038/@comment-2605:6000:151B:8AAC:F8C9:15A3:AE0C:6B8E-20190129003321\nTalk:Seismic Charge Launcher/@comment-199.200.31.94-20190115041038/@comment-2605:6000:151B:8AAC:F8C9:15A3:AE0C:6B8E-20190129021046\nTalk:Seismic Charge Launcher/@comment-220.239.198.249-20181221143103\nTalk:Seismic Charge Launcher/@comment-220.239.198.249-20181221143103/@comment-101.100.130.240-20181227091054\nTalk:Seismic Charge Launcher/@comment-2600:8804:8B80:6B30:984F:76A8:37F1:D23B-20181216181248\nTalk:Seismic Charge Launcher/@comment-2600:8804:8B80:6B30:984F:76A8:37F1:D23B-20181216181248/@comment-70.36.159.172-20181227033805\nTalk:Seismic Charge Launcher/@comment-64.234.9.3-20191021125949\nTalk:Seismic Charge Launcher/@comment-64.234.9.3-20191021125949/@comment-27941085-20200106012444\nTalk:Seismic Charge Launcher/@comment-65.27.249.133-20181220201041\nTalk:Seismic Charge Launcher/@comment-67.2.59.23-20181213002143\nTalk:Seismic Charge Launcher/@comment-67.2.59.23-20181213002143/@comment-192.136.170.98-20181213042309\nTalk:Seismic Charge Launcher/@comment-67.2.59.23-20181213002143/@comment-37577375-20181214182315\nTalk:Seismic Charge Launcher/@comment-67.2.59.23-20181213002143/@comment-77.12.16.193-20181213004703\nTalk:Seismic Charge Launcher/@comment-67.2.59.23-20181213002143/@comment-77.190.166.73-20181213174435\nTalk:Seismic Charge Launcher/@comment-81.232.161.79-20190426002418\nTalk:Seismic Charge Launcher/@comment-81.232.161.79-20190426002418/@comment-36811367-20190604134409\nTalk:Seismic Charge Launcher/@comment-81.232.161.79-20190426002418/@comment-69.166.69.101-20190502115736\nTalk:Seismic Charge Launcher/@comment-86.5.99.64-20181215234349\nTalk:Seismic Charge Launcher/@comment-86.5.99.64-20181216094132\nTalk:Seismic Charge Launcher/@comment-86.5.99.64-20181216094132/@comment-189.204.162.31-20181219084421\nTalk:Seismic Charge Launcher/@comment-99.233.33.225-20190912183259\nTalk:Seismic Charge Launcher/@comment-99.233.33.225-20190912183259/@comment-31178037-20200125180102\nTalk:Selene Jean/@comment-170.185.126.17-20191111141630\nTalk:Selene Jean/@comment-2605:6000:F549:1100:24BA:8F14:B04:68F9-20180823051922\nTalk:Selene Jean/@comment-31.173.85.228-20190101025840\nTalk:Selene Jean/@comment-49.184.214.64-20190505105621\nTalk:Selene Jean/@comment-49.184.214.64-20190505105621/@comment-192.136.172.169-20190506032110\nTalk:Selene Jean/@comment-82.16.141.78-20180808163543\nTalk:Selene Jean/@comment-82.16.141.78-20180808163543/@comment-78.43.219.3-20190504205451\nTalk:Selenium/@comment-1936616-20190613013331\nTalk:Selenium/@comment-213.205.194.50-20181209143126\nTalk:Selenium/@comment-213.205.194.50-20181209143126/@comment-192.136.170.98-20181209153219\nTalk:Selenium/@comment-96.22.114.180-20181117152625\nTalk:Selenium/@comment-96.22.114.180-20181117152625/@comment-45121312-20200226051108\nTalk:Self Destruct/@comment-108.24.123.203-20150406235645\nTalk:Self Destruct/@comment-198.27.14.102-20190821233850\nTalk:Self Destruct/@comment-198.27.14.102-20190821233850/@comment-192.136.172.44-20190822030843\nTalk:Self Destruct/@comment-2.84.32.80-20150924082624\nTalk:Self Destruct/@comment-24552985-20150723085541\nTalk:Self Destruct/@comment-24552985-20150723085541/@comment-4555143-20150723091911\nTalk:Self Destruct/@comment-26024274-20150119233850\nTalk:Self Destruct/@comment-2A01:CB14:82FC:DC00:35E4:A53:1572:BAD5-20171129211624\nTalk:Self Destruct/@comment-36562996-20200628170802\nTalk:Self Destruct/@comment-66.68.137.254-20160728042512\nTalk:Self Destruct/@comment-74.83.50.222-20150808062723\nTalk:Self Destruct/@comment-74.83.50.222-20150808062723/@comment-173.23.35.207-20171111000106\nTalk:Self Destruct/@comment-76.126.244.102-20150726025415\nTalk:Self Destruct/@comment-82.25.20.248-20150822005202\nTalk:Self Destruct/@comment-82.25.20.248-20150822005202/@comment-47.16.151.196-20151018120943\nTalk:Self Destruct/@comment-82.25.20.248-20150822005202/@comment-5269732-20160911034137\nTalk:Sensors/@comment-162.245.22.219-20150326210837\nTalk:Sensors/@comment-162.245.22.219-20150326210837/@comment-27.78.231.77-20191017084857\nTalk:Sensors/@comment-24.9.80.183-20141230001949\nTalk:Sensors/@comment-24.9.80.183-20141230002110\nTalk:Sensors/@comment-24.9.80.183-20141230002110/@comment-24.9.80.183-20141230002202\nTalk:Sensors/@comment-2602:306:CE29:B0D0:10AD:175:89B7:25EB-20191019035920\nTalk:Sensors/@comment-2602:306:CE29:B0D0:10AD:175:89B7:25EB-20191019035920/@comment-2602:306:CE29:B0D0:10AD:175:89B7:25EB-20191019040358\nTalk:Sensors/@comment-26391992-20150915170038\nTalk:Sensors/@comment-5.146.6.95-20180506161549\nTalk:Sensors/@comment-5.146.6.95-20180506161549/@comment-2602:306:CE29:B0D0:10AD:175:89B7:25EB-20191019040141\nTalk:Sensors/@comment-5.146.6.95-20180506161549/@comment-43982350-20200914221452\nTalk:Sensors/@comment-73.174.241.48-20150329173923\nTalk:Sensors/@comment-80.72.153.238-20150110232855\nTalk:Sensors/@comment-81.130.215.225-20141229224723\nTalk:Sensors/@comment-81.130.215.225-20141229224723/@comment-12138097-20141229231342\nTalk:Sensors/@comment-86.197.249.33-20151018130648\nTalk:Sensors/@comment-86.197.249.33-20151018130648/@comment-50.13.185.43-20151022032228\nTalk:Sensors/@comment-87.114.218.231-20141220004032\nTalk:Sensors/@comment-87.114.218.231-20141220004032/@comment-12138097-20141220010454\nTalk:Sensors/@comment-87.114.218.231-20141220004032/@comment-73.182.89.219-20150104051649\nTalk:Sensors/@comment-87.114.218.231-20141220004032/@comment-86.170.131.85-20150113085634\nTalk:Sensors/@comment-90.26.73.59-20150620145456\nTalk:Sensors/@comment-90.26.73.59-20150620145456/@comment-162.252.63.203-20151207172807\nTalk:Sensors/@comment-90.26.73.59-20150620145456/@comment-79.132.22.204-20150730112341\nTalk:Sensors/@comment-90.26.73.59-20150620145456/@comment-79.132.22.204-20150730112948\nTalk:Sensors/@comment-90.26.73.59-20150620145456/@comment-90.201.253.73-20190702162823\nTalk:Sensors/@comment-98.167.121.196-20150116093107\nTalk:Sensors/@comment-98.167.121.196-20150116093107/@comment-12138097-20150116093716\nTalk:September Update/@comment-119.247.164.169-20190919055001\nTalk:September Update/@comment-119.247.164.169-20190919055001/@comment-210.18.214.38-20190920054715\nTalk:September Update/@comment-119.247.164.169-20190919055001/@comment-37820584-20190925035955\nTalk:September Update/@comment-152.115.132.38-20190913120335\nTalk:September Update/@comment-174.255.195.186-20190918084152\nTalk:September Update/@comment-203.104.15.192-20190913023042\nTalk:September Update/@comment-2601:240:8200:A7F0:44A:3635:99B:A023-20190918233403\nTalk:September Update/@comment-2601:240:8200:A7F0:44A:3635:99B:A023-20190918233403/@comment-26810597-20190919004914\nTalk:September Update/@comment-63.155.46.182-20190826224028\nTalk:September Update/@comment-63.155.46.182-20190826224028/@comment-209.67.216.5-20190911204916\nTalk:September Update/@comment-63.155.46.182-20190826224028/@comment-73.125.90.91-20190917233322\nTalk:September Update/@comment-86.243.180.116-20190903195252\nTalk:September Update/@comment-86.243.180.116-20190903195252/@comment-37161734-20190908001524\nTalk:September Update/@comment-86.243.180.116-20190903195252/@comment-37820584-20190924083043\nTalk:Serendibite/@comment-2003:C1:8F42:6F00:A528:499D:C2AA:D987-20200207192321\nTalk:Serendibite/@comment-2003:C1:8F42:6F00:A528:499D:C2AA:D987-20200207192321/@comment-1933852-20200522015015\nTalk:Settlement/@comment-162.197.72.154-20160110040716\nTalk:Settlement/@comment-162.197.72.154-20160110040716/@comment-27548386-20160116073325\nTalk:Settlement/@comment-162.197.72.154-20160110040716/@comment-67.171.151.107-20180908124604\nTalk:Settlement/@comment-24.62.136.8-20160825070021\nTalk:Settlement/@comment-24.62.136.8-20160825070021/@comment-69.159.13.145-20170413111215\nTalk:Settlement/@comment-27681382-20160315175620\nTalk:Settlement/@comment-77.173.160.84-20190201160857\nTalk:Settlement/@comment-81.15.241.12-20160222151555\nTalk:Settlement/@comment-81.15.241.12-20160222151555/@comment-27681382-20160315180416\nTalk:Settlement/@comment-87.128.14.118-20170817114544\nTalk:Settlement/@comment-87.128.14.118-20170817114544/@comment-2601:87:4100:1052:C827:8362:7112:630E-20180828191827\nTalk:Settlement/@comment-95.91.228.91-20160109131709\nTalk:Shan's Charis Orchid/@comment-210.246.25.204-20161127023134\nTalk:Shield Booster/@comment-173.22.120.160-20150314172128\nTalk:Shield Booster/@comment-173.22.120.160-20150314172128/@comment-2188654-20150711220829\nTalk:Shield Booster/@comment-173.22.120.160-20150314172128/@comment-77.234.104.249-20150804175628\nTalk:Shield Booster/@comment-185.37.87.177-20150322190944\nTalk:Shield Booster/@comment-185.37.87.177-20150322190944/@comment-26009169-20150322191148\nTalk:Shield Booster/@comment-185.37.87.177-20150322190944/@comment-26515877-20150904150722\nTalk:Shield Booster/@comment-194.32.49.218-20160125105702\nTalk:Shield Booster/@comment-194.32.49.218-20160125105702/@comment-27390802-20160131043338\nTalk:Shield Booster/@comment-24.107.39.228-20150312062239\nTalk:Shield Booster/@comment-24.107.39.228-20150312062239/@comment-25490957-20150312111115\nTalk:Shield Booster/@comment-24.211.170.178-20150315203110\nTalk:Shield Booster/@comment-24.211.170.178-20150315203110/@comment-24.211.170.178-20150316120422\nTalk:Shield Booster/@comment-24.211.170.178-20150315203110/@comment-46.114.35.149-20150730074340\nTalk:Shield Booster/@comment-24.211.170.178-20150315203110/@comment-70.117.97.13-20150316092814\nTalk:Shield Booster/@comment-25450485-20150926201907\nTalk:Shield Booster/@comment-25450485-20150926201907/@comment-26599825-20150926210354\nTalk:Shield Booster/@comment-26391992-20150513102054\nTalk:Shield Booster/@comment-26391992-20150513102054/@comment-2601:2C3:780:460:BC93:306A:C304:9D3B-20170814181316\nTalk:Shield Booster/@comment-26391992-20150513102054/@comment-26391992-20150904134731\nTalk:Shield Booster/@comment-26391992-20150513102054/@comment-46.114.35.149-20150730074110\nTalk:Shield Booster/@comment-26391992-20150513102054/@comment-75.177.113.208-20150520042136\nTalk:Shield Booster/@comment-26391992-20150513102054/@comment-77.234.104.249-20150804173844\nTalk:Shield Booster/@comment-26391992-20150513102054/@comment-77.234.104.249-20150804174245\nTalk:Shield Booster/@comment-41.50.84.34-20180924185431\nTalk:Shield Booster/@comment-68.104.25.123-20150314214636\nTalk:Shield Booster/@comment-68.104.25.123-20150314214636/@comment-26009169-20150314215712\nTalk:Shield Booster/@comment-70.29.247.117-20190118163711\nTalk:Shield Booster/@comment-70.29.247.117-20190118163711/@comment-192.136.170.98-20190118184654\nTalk:Shield Booster/@comment-74.94.78.2-20150312032458\nTalk:Shield Booster/@comment-81.102.62.62-20150618135802\nTalk:Shield Booster/@comment-81.102.62.62-20150618135802/@comment-26033489-20150618164607\nTalk:Shield Booster/@comment-84.26.251.5-20150315123227\nTalk:Shield Booster/@comment-97.95.165.168-20150515001733\nTalk:Shield Booster/@comment-97.95.165.168-20150515001733/@comment-2188654-20150711214519\nTalk:Shield Cell Bank/@comment-108.181.141.170-20150312020617\nTalk:Shield Cell Bank/@comment-108.181.141.170-20150312020617/@comment-108.181.141.170-20150312104403\nTalk:Shield Cell Bank/@comment-108.181.141.170-20150312020617/@comment-203.206.5.115-20150312085551\nTalk:Shield Cell Bank/@comment-108.181.141.170-20150312020617/@comment-91.151.207.102-20150412173131\nTalk:Shield Cell Bank/@comment-199.231.118.208-20150317064303\nTalk:Shield Cell Bank/@comment-199.231.118.208-20150317064303/@comment-25490957-20150317122717\nTalk:Shield Cell Bank/@comment-208.79.244.64-20141223173933\nTalk:Shield Cell Bank/@comment-208.79.244.64-20141223173933/@comment-80.133.109.188-20141223174758\nTalk:Shield Cell Bank/@comment-212.35.27.63-20181206223823\nTalk:Shield Cell Bank/@comment-212.35.27.63-20181206223823/@comment-176.241.72.203-20190725171715\nTalk:Shield Cell Bank/@comment-212.35.27.63-20181206223823/@comment-176.241.72.203-20190725172054\nTalk:Shield Cell Bank/@comment-212.35.27.63-20181206223823/@comment-192.136.170.98-20181207184255\nTalk:Shield Cell Bank/@comment-212.35.27.63-20181206223823/@comment-80.134.43.83-20200128152432\nTalk:Shield Cell Bank/@comment-24.118.47.100-20150416184144\nTalk:Shield Cell Bank/@comment-2600:6C58:4280:396:1CEE:C040:3107:5B20-20180718072834\nTalk:Shield Cell Bank/@comment-2602:306:CE29:B0D0:8529:2FDC:5C82:3BB1-20190906114214\nTalk:Shield Cell Bank/@comment-26391992-20151115144227\nTalk:Shield Cell Bank/@comment-68.104.25.123-20150310034025\nTalk:Shield Cell Bank/@comment-68.104.25.123-20150310062505\nTalk:Shield Cell Bank/@comment-68.104.25.123-20150310062505/@comment-1394230-20150513040543\nTalk:Shield Cell Bank/@comment-77.103.203.34-20180525065221\nTalk:Shield Cell Bank/@comment-79.132.20.171-20150820191800\nTalk:Shield Cell Bank/@comment-81.130.215.225-20141229225740\nTalk:Shield Cell Bank/@comment-81.130.215.225-20141229225740/@comment-1266685-20150314125006\nTalk:Shield Cell Bank/@comment-81.130.215.225-20141229225740/@comment-81.130.215.225-20141229230216\nTalk:Shield Cell Bank/@comment-82.114.198.67-20150111125912\nTalk:Shield Cell Bank/@comment-82.114.198.67-20150111125912/@comment-50.156.160.90-20150122210908\nTalk:Shield Cell Bank/@comment-82.114.198.67-20150111125912/@comment-67.8.222.213-20150202160259\nTalk:Shield Cell Bank/@comment-86.129.165.81-20150811203326\nTalk:Shield Cell Bank/@comment-86.52.85.36-20171006090009\nTalk:Shield Cell Bank/@comment-87.81.231.236-20141226144620\nTalk:Shield Cell Bank/@comment-88.112.91.114-20150308224949\nTalk:Shield Cell Bank/@comment-92.78.3.156-20150321181058\nTalk:Shield Cell Bank/@comment-94.213.76.55-20150211114857\nTalk:Shield Cell Bank/@comment-94.213.76.55-20150211114857/@comment-193.164.143.246-20150216160547\nTalk:Shield Cell Bank/@comment-94.29.73.129-20141225061211\nTalk:Shield Cell Bank/@comment-94.29.73.129-20141225061431\nTalk:Shield Cell Bank/@comment-94.29.73.129-20141225063104\nTalk:Shield Cell Bank/@comment-98.116.207.126-20150120223502\nTalk:Shield Generator/@comment-108.209.190.156-20170115211831\nTalk:Shield Generator/@comment-108.209.190.156-20170115211831/@comment-2001:5B0:4BC1:4C00:0:FF:FEBD:63F2-20181108065258\nTalk:Shield Generator/@comment-108.209.190.156-20170115211831/@comment-26005414-20170227015933\nTalk:Shield Generator/@comment-108.209.190.156-20170115211831/@comment-95.150.153.179-20170530144115\nTalk:Shield Generator/@comment-108.226.12.142-20150121203103\nTalk:Shield Generator/@comment-108.226.12.142-20150121203103/@comment-5016083-20150203013306\nTalk:Shield Generator/@comment-108.226.12.142-20150121203103/@comment-93.130.140.87-20150304003112\nTalk:Shield Generator/@comment-135.0.26.15-20150911161153\nTalk:Shield Generator/@comment-135.0.26.15-20150911161153/@comment-2001:5B0:4BC1:7268:E56F:96D1:25CA:89A8-20190426081423\nTalk:Shield Generator/@comment-151.225.106.17-20170226232521\nTalk:Shield Generator/@comment-151.225.106.17-20170226232521/@comment-26005414-20170227015839\nTalk:Shield Generator/@comment-151.225.106.17-20170226232521/@comment-72.213.50.31-20170306101806\nTalk:Shield Generator/@comment-16235054-20150315161040\nTalk:Shield Generator/@comment-16235054-20150315161040/@comment-78.209.96.105-20150319194601\nTalk:Shield Generator/@comment-163.118.166.92-20150325143350\nTalk:Shield Generator/@comment-163.118.166.92-20150325143350/@comment-70.199.3.137-20150409132301\nTalk:Shield Generator/@comment-176.240.96.204-20150713140917\nTalk:Shield Generator/@comment-176.240.96.204-20150713140917/@comment-135.0.26.15-20150911161241\nTalk:Shield Generator/@comment-176.240.96.204-20150713140917/@comment-26537865-20150814230514\nTalk:Shield Generator/@comment-178.191.225.135-20200216164731\nTalk:Shield Generator/@comment-179.181.180.33-20170509180228\nTalk:Shield Generator/@comment-179.181.180.33-20170509180228/@comment-77.102.200.67-20170826003804\nTalk:Shield Generator/@comment-185.59.105.30-20160127110111\nTalk:Shield Generator/@comment-185.59.105.30-20160127110111/@comment-2001:5B0:4BC1:4C00:0:FF:FEBD:63F2-20181108070214\nTalk:Shield Generator/@comment-185.59.105.30-20160127110111/@comment-26391992-20160127125720\nTalk:Shield Generator/@comment-185.59.105.30-20160127110111/@comment-27032150-20160127121819\nTalk:Shield Generator/@comment-185.59.105.30-20160127110111/@comment-27032150-20160127144417\nTalk:Shield Generator/@comment-185.59.105.30-20160127110111/@comment-27686057-20160127110756\nTalk:Shield Generator/@comment-185.59.105.30-20160127110111/@comment-27686057-20160127151947\nTalk:Shield Generator/@comment-189.219.80.74-20150721010901\nTalk:Shield Generator/@comment-200.165.164.244-20150623205358\nTalk:Shield Generator/@comment-200.165.164.244-20150623205358/@comment-26005414-20150623222000\nTalk:Shield Generator/@comment-2001:56A:7080:DD00:EDB8:D376:33BC:2CC4-20190509131951\nTalk:Shield Generator/@comment-2001:5B0:4BD9:A5F0:0:FF:FEBD:63F2-20181020211315\nTalk:Shield Generator/@comment-213.118.7.57-20150925155633\nTalk:Shield Generator/@comment-213.118.7.57-20150925155633/@comment-26599825-20150925162057\nTalk:Shield Generator/@comment-213.118.7.57-20150927181158\nTalk:Shield Generator/@comment-24.45.93.5-20150227035502\nTalk:Shield Generator/@comment-24.45.93.5-20150227035502/@comment-135.0.26.15-20150911161401\nTalk:Shield Generator/@comment-24.45.93.5-20150227035502/@comment-26005414-20150307035639\nTalk:Shield Generator/@comment-24.45.93.5-20150227035502/@comment-92.201.227.36-20150302162253\nTalk:Shield Generator/@comment-26005414-20150114060824\nTalk:Shield Generator/@comment-26005414-20150114060824/@comment-86.149.18.26-20150407031136\nTalk:Shield Generator/@comment-26005414-20150623221820\nTalk:Shield Generator/@comment-26537865-20150814230613\nTalk:Shield Generator/@comment-27646870-20160814022715\nTalk:Shield Generator/@comment-30309427-20181115015957\nTalk:Shield Generator/@comment-43354983-20200607002147\nTalk:Shield Generator/@comment-4968814-20141226171336\nTalk:Shield Generator/@comment-4968814-20141226171336/@comment-12138097-20150102203000\nTalk:Shield Generator/@comment-4968814-20141226171336/@comment-4968814-20150102184811\nTalk:Shield Generator/@comment-4968814-20141226171336/@comment-73.34.133.18-20141230203441\nTalk:Shield Generator/@comment-66.109.235.218-20151123190551\nTalk:Shield Generator/@comment-66.109.235.218-20151123190551/@comment-1028741-20151123190751\nTalk:Shield Generator/@comment-71.77.207.83-20150324050602\nTalk:Shield Generator/@comment-72.200.116.46-20150314062635\nTalk:Shield Generator/@comment-72.200.116.46-20150314062635/@comment-121.223.22.61-20150529112324\nTalk:Shield Generator/@comment-72.200.116.46-20150314062635/@comment-79.117.55.0-20150501151136\nTalk:Shield Generator/@comment-76.25.140.130-20150704172246\nTalk:Shield Generator/@comment-81.130.215.225-20141229222056\nTalk:Shield Generator/@comment-81.130.215.225-20141229222241\nTalk:Shield Generator/@comment-82.114.198.67-20150107170020\nTalk:Shield Generator/@comment-82.114.198.67-20150107170020/@comment-4968814-20150107172643\nTalk:Shield Generator/@comment-82.18.133.13-20160422135148\nTalk:Shield Generator/@comment-82.18.133.13-20160422135148/@comment-72.213.50.31-20170306100629\nTalk:Shield Generator/@comment-86.0.250.148-20151213112139\nTalk:Shield Generator/@comment-86.174.156.237-20150922165242\nTalk:Shield Generator/@comment-91.156.236.227-20150111212033\nTalk:Shield Generator/@comment-93.223.68.4-20150503003404\nTalk:Shield Generator/@comment-93.223.68.4-20150503003404/@comment-77.173.135.226-20150507111659\nTalk:Shield Generator/@comment-94.29.73.129-20150113065013\nTalk:Shield Generator/@comment-94.29.73.129-20150113065013/@comment-12138097-20150113072402\nTalk:Shield Generator/@comment-94.29.73.129-20150113065013/@comment-94.29.73.129-20150113095834\nTalk:Shield Generator/@comment-98.237.193.126-20150322195935\nTalk:Shield Generator/@comment-98.237.193.126-20150322195935/@comment-75.109.173.125-20150325014648\nTalk:Shield Generator/@comment-98.237.193.126-20150322195935/@comment-75.109.173.125-20150325020926\nTalk:Shielded Module/@comment-2003:DB:F70F:D667:3942:8CF4:6E91:D5F3-20200208180319\nTalk:Shielded Module/@comment-2003:DB:F70F:D667:3942:8CF4:6E91:D5F3-20200208180319/@comment-2003:DB:F70F:D667:3942:8CF4:6E91:D5F3-20200208180414\nTalk:Shinrarta Dezhra/@comment-2001:5B0:4BCF:3B50:0:FF:FEBD:1C0-20180624104430\nTalk:Shinrarta Dezhra/@comment-2001:5B0:4BCF:3B50:0:FF:FEBD:1C0-20180624104430/@comment-165.225.0.79-20180716165101\nTalk:Shinrarta Dezhra/@comment-46.109.195.98-20180519185106\nTalk:Shinrarta Dezhra/@comment-71.205.238.39-20191213152957\nTalk:Shinrarta Dezhra/@comment-79.139.184.153-20180211214359\nTalk:Shinrarta Dezhra/@comment-79.139.184.153-20180211214359/@comment-170.185.126.17-20191101193507\nTalk:Shinrarta Dezhra/@comment-79.139.184.153-20180211214359/@comment-49.199.9.112-20180408051038\nTalk:Shinrarta Dezhra/@comment-79.139.184.153-20180211214359/@comment-69.166.69.101-20190602221016\nTalk:Shinrarta Dezhra/@comment-79.139.184.153-20180211214359/@comment-73.125.87.97-20180402171626\nTalk:Shinrarta Dezhra/@comment-79.139.184.153-20180211214359/@comment-79.139.184.153-20180211214732\nTalk:Ship-Launched Fighters/@comment-187.64.110.30-20180128101729\nTalk:Ship-Launched Fighters/@comment-187.64.110.30-20180128101729/@comment-44180665-20200401143104\nTalk:Ship-Launched Fighters/@comment-192.0.145.104-20180103070505\nTalk:Ship-Launched Fighters/@comment-192.0.145.104-20180103070505/@comment-118.93.246.156-20180403232821\nTalk:Ship-Launched Fighters/@comment-192.0.145.104-20180103070505/@comment-44180665-20200401143129\nTalk:Ship-Launched Fighters/@comment-192.0.145.104-20180103070505/@comment-77.180.237.194-20190327123740\nTalk:Ship-Launched Fighters/@comment-2001:16B8:125C:C200:3034:8508:E22C:5D12-20180130232400\nTalk:Ship-Launched Fighters/@comment-2001:16B8:125C:C200:3034:8508:E22C:5D12-20180130232400/@comment-76.115.197.126-20180312200538\nTalk:Ship-Launched Fighters/@comment-25450485-20170720213751\nTalk:Ship-Launched Fighters/@comment-25450485-20170720213751/@comment-108.203.26.19-20180411202029\nTalk:Ship-Launched Fighters/@comment-25450485-20170720213751/@comment-30245159-20170720234049\nTalk:Ship-Launched Fighters/@comment-25450485-20170720213751/@comment-74.249.114.2-20181201053443\nTalk:Ship-Launched Fighters/@comment-25450485-20170720213751/@comment-7753017-20171107104751\nTalk:Ship-Launched Fighters/@comment-2600:387:3:802:0:0:0:22-20181108144013\nTalk:Ship-Launched Fighters/@comment-2600:387:3:802:0:0:0:22-20181108144013/@comment-90.200.46.38-20181116154856\nTalk:Ship-Launched Fighters/@comment-2602:306:CE29:B0D0:5148:3E6C:3019:AFBF-20191012010710\nTalk:Ship-Launched Fighters/@comment-2602:306:CE29:B0D0:5148:3E6C:3019:AFBF-20191012010710/@comment-44180665-20200401142828\nTalk:Ship-Launched Fighters/@comment-30643772-20171010152609\nTalk:Ship-Launched Fighters/@comment-30643772-20171010152609/@comment-33441314-20180122131038\nTalk:Ship-Launched Fighters/@comment-44180665-20200401143352\nTalk:Ship-Launched Fighters/@comment-70.249.189.124-20181107224025\nTalk:Ship-Launched Fighters/@comment-82.28.247.248-20190112163019\nTalk:Ship-Launched Fighters/@comment-82.28.247.248-20190112163019/@comment-82.46.26.131-20190601191757\nTalk:Ship-Launched Fighters/@comment-90.200.46.38-20181116154753\nTalk:Ship-Launched Fighters/@comment-90.200.46.38-20181116154753/@comment-88.112.115.142-20181201124026\nTalk:Ship Canopy/@comment-90.200.46.38-20181107113658\nTalk:Ship Canopy/@comment-90.200.46.38-20181107113658/@comment-30928085-20181107181317\nTalk:Ship Canopy/@comment-90.200.46.38-20181107114902\nTalk:Ship Canopy/@comment-90.200.46.38-20181107114902/@comment-30928085-20181107180612\nTalk:Ship Canopy/@comment-90.200.46.38-20181107114902/@comment-90.200.46.38-20181107232859\nTalk:Ship Interiors/@comment-185.161.57.229-20180321120900\nTalk:Ship Interiors/@comment-185.161.57.229-20180321120900/@comment-125.187.170.112-20180801122004\nTalk:Ship Interiors/@comment-185.161.57.229-20180321120900/@comment-192.136.163.15-20180802032227\nTalk:Ship Interiors/@comment-185.161.57.229-20180321120900/@comment-71.239.154.63-20190811235947\nTalk:Ship Interiors/@comment-2600:8801:B505:A00:21E8:7EDF:A9F3:8995-20180322052541\nTalk:Ship Interiors/@comment-2600:8801:B505:A00:21E8:7EDF:A9F3:8995-20180322052541/@comment-71.239.154.63-20190811235904\nTalk:Ship Interiors/@comment-2600:8801:B505:A00:21E8:7EDF:A9F3:8995-20180322052541/@comment-71.239.154.63-20190812000041\nTalk:Ship Interiors/@comment-4616657-20171113060411\nTalk:Ship Interiors/@comment-85.29.120.239-20190828204357\nTalk:Ship Interiors/@comment-85.29.120.239-20190828204357/@comment-208.122.107.250-20191211150250\nTalk:Ship Interiors/@comment-86.52.94.247-20180819083819\nTalk:Ships/@comment-107.182.64.199-20150720011914\nTalk:Ships/@comment-107.182.64.199-20150720011914/@comment-107.182.64.199-20150723044157\nTalk:Ships/@comment-107.219.200.244-20150115191206\nTalk:Ships/@comment-107.219.200.244-20150115191206/@comment-12138097-20150115210426\nTalk:Ships/@comment-107.219.200.244-20150115191206/@comment-12138097-20150119092928\nTalk:Ships/@comment-107.219.200.244-20150115191206/@comment-1250011-20150119150330\nTalk:Ships/@comment-107.219.200.244-20150115191206/@comment-46.11.18.188-20150225150439\nTalk:Ships/@comment-107.219.200.244-20150115191206/@comment-62.30.33.193-20150120103455\nTalk:Ships/@comment-107.219.200.244-20150115191206/@comment-68.103.83.242-20150118054336\nTalk:Ships/@comment-107.219.200.244-20150115191206/@comment-82.181.36.147-20150117152604\nTalk:Ships/@comment-108.59.74.46-20160722190540\nTalk:Ships/@comment-128.220.159.83-20141207070138\nTalk:Ships/@comment-13269387-20180211230756\nTalk:Ships/@comment-133748-20150723034810\nTalk:Ships/@comment-133748-20150723034810/@comment-107.182.64.199-20150723044325\nTalk:Ships/@comment-133748-20150723034810/@comment-206.208.187.105-20161012011611\nTalk:Ships/@comment-1441282-20150627235907\nTalk:Ships/@comment-1441282-20150627235907/@comment-26009169-20150628002208\nTalk:Ships/@comment-150.134.245.5-20141027210911\nTalk:Ships/@comment-150.134.245.5-20141027210911/@comment-23.120.124.81-20141115220027\nTalk:Ships/@comment-150.134.245.5-20141027210911/@comment-71.95.100.70-20141123070930\nTalk:Ships/@comment-155.188.123.19-20180601172243\nTalk:Ships/@comment-155.188.123.19-20180601172243/@comment-36249090-20180720104449\nTalk:Ships/@comment-156.3.54.203-20150520164627\nTalk:Ships/@comment-156.3.54.203-20150520164627/@comment-101.183.159.193-20150818035326\nTalk:Ships/@comment-156.3.54.203-20150520164627/@comment-76.92.151.172-20150616081551\nTalk:Ships/@comment-156.3.54.204-20150911171455\nTalk:Ships/@comment-156.3.54.204-20150911171455/@comment-72.182.78.229-20151003143208\nTalk:Ships/@comment-162.156.1.23-20141225052646\nTalk:Ships/@comment-162.25.24.153-20160316141726\nTalk:Ships/@comment-162.25.24.153-20160316141726/@comment-162.25.24.153-20160323101219\nTalk:Ships/@comment-162.25.24.153-20160316141726/@comment-2155082-20160319201718\nTalk:Ships/@comment-162.25.24.153-20160316141726/@comment-26810344-20160319200100\nTalk:Ships/@comment-162.25.24.153-20160316141726/@comment-27032150-20160316153945\nTalk:Ships/@comment-174.118.181.77-20171019182603\nTalk:Ships/@comment-174.89.132.60-20170430063500\nTalk:Ships/@comment-174.89.132.60-20170430063500/@comment-75.66.4.124-20170604090957\nTalk:Ships/@comment-178.39.71.219-20171019174746\nTalk:Ships/@comment-178.39.71.219-20171019174746/@comment-30928085-20171019175451\nTalk:Ships/@comment-178.39.71.219-20171030142159\nTalk:Ships/@comment-178.39.71.219-20171030142159/@comment-108.173.98.109-20190902162446\nTalk:Ships/@comment-178.39.71.219-20171030142159/@comment-192.136.161.33-20171030161345\nTalk:Ships/@comment-188.2.22.207-20180123181124\nTalk:Ships/@comment-188.2.7.104-20170922160613\nTalk:Ships/@comment-189.241.110.234-20180628033755\nTalk:Ships/@comment-189.241.110.234-20180628033755/@comment-109.157.42.183-20180919182531\nTalk:Ships/@comment-189.241.110.234-20180628033755/@comment-36249090-20180720104456\nTalk:Ships/@comment-189.241.110.234-20180628033755/@comment-82.14.210.105-20190713071143\nTalk:Ships/@comment-192.136.161.33-20180311162851\nTalk:Ships/@comment-192.136.161.33-20180311162851/@comment-24740282-20180314024009\nTalk:Ships/@comment-192.136.161.33-20180311162851/@comment-2600:6C5D:6300:801:B0C1:7B36:DE93:9895-20180603051052\nTalk:Ships/@comment-192.136.161.33-20180311162851/@comment-50.201.158.110-20181017145512\nTalk:Ships/@comment-192.136.161.33-20180311162851/@comment-78.152.220.249-20190614090903\nTalk:Ships/@comment-192.136.161.33-20180311162851/@comment-98.193.10.19-20181111190352\nTalk:Ships/@comment-194.106.220.86-20150227133112\nTalk:Ships/@comment-194.106.220.86-20150227133112/@comment-26009169-20150227135940\nTalk:Ships/@comment-194.106.220.86-20150227133112/@comment-82.69.95.27-20150228085417\nTalk:Ships/@comment-194.191.226.23-20180719125157\nTalk:Ships/@comment-194.191.226.23-20180719125157/@comment-36249090-20180720104502\nTalk:Ships/@comment-194.191.226.23-20180719125157/@comment-82.14.210.105-20190713071059\nTalk:Ships/@comment-198.84.137.41-20160115230809\nTalk:Ships/@comment-198.84.137.41-20160115230809/@comment-198.84.137.41-20160128024442\nTalk:Ships/@comment-198.84.137.41-20160115230809/@comment-206.208.187.105-20161012010309\nTalk:Ships/@comment-198.84.137.41-20160115230809/@comment-27311754-20160116004854\nTalk:Ships/@comment-2.126.247.125-20151024173944\nTalk:Ships/@comment-2.126.247.125-20151024173944/@comment-188.230.130.164-20160117150528\nTalk:Ships/@comment-2003:6B:A19:9100:41EF:1153:19E6:D870-20171213192305\nTalk:Ships/@comment-2003:6B:A19:9100:41EF:1153:19E6:D870-20171213192305/@comment-192.136.161.33-20171213211433\nTalk:Ships/@comment-202.50.0.100-20151015182717\nTalk:Ships/@comment-205.206.90.137-20141128191456\nTalk:Ships/@comment-205.206.90.137-20141205234917\nTalk:Ships/@comment-205.206.90.137-20141205234917/@comment-25502337-20141206063854\nTalk:Ships/@comment-205.206.90.137-20141210223011\nTalk:Ships/@comment-205.206.90.137-20141210223011/@comment-199.101.142.18-20150204090906\nTalk:Ships/@comment-205.206.90.137-20141210223011/@comment-88.139.99.207-20141210233431\nTalk:Ships/@comment-207.107.127.178-20181119165001\nTalk:Ships/@comment-212.18.176.6-20150122163138\nTalk:Ships/@comment-212.18.176.6-20150122163138/@comment-107.134.108.56-20150131145710\nTalk:Ships/@comment-212.18.176.6-20150122163138/@comment-71.21.3.159-20150302164643\nTalk:Ships/@comment-213.93.179.103-20140928202307\nTalk:Ships/@comment-213.93.179.103-20140928202307/@comment-25249692-20140928203544\nTalk:Ships/@comment-24.20.104.8-20170129010626\nTalk:Ships/@comment-24.20.104.8-20170129010626/@comment-2155082-20170129013035\nTalk:Ships/@comment-24.20.104.8-20170129010626/@comment-24.20.104.8-20170129023427\nTalk:Ships/@comment-24714988-20160222001600\nTalk:Ships/@comment-24714988-20160222001600/@comment-192.136.175.219-20160222170528\nTalk:Ships/@comment-24714988-20160222001600/@comment-206.208.187.105-20161012003844\nTalk:Ships/@comment-24714988-20160222001600/@comment-73.44.65.107-20160222153547\nTalk:Ships/@comment-25249692-20140922150128\nTalk:Ships/@comment-25249692-20140922150128/@comment-25249692-20140922190015\nTalk:Ships/@comment-25249692-20140922150128/@comment-50.83.105.34-20141011135206\nTalk:Ships/@comment-25249692-20140922150128/@comment-82.45.41.26-20140922183301\nTalk:Ships/@comment-25335609-20141001223010\nTalk:Ships/@comment-25335609-20141001223010/@comment-25335609-20141002020555\nTalk:Ships/@comment-25490483-20141003101444\nTalk:Ships/@comment-25506386-20150108133333\nTalk:Ships/@comment-25506386-20150108133333/@comment-25506386-20150108142044\nTalk:Ships/@comment-25936977-20150107014952\nTalk:Ships/@comment-25987666-20150109012637\nTalk:Ships/@comment-26009169-20150203151541\nTalk:Ships/@comment-26009169-20170902094803\nTalk:Ships/@comment-26009169-20170902094803/@comment-178.39.71.219-20171019174827\nTalk:Ships/@comment-26009169-20170902094803/@comment-2600:6C5A:407F:FAA4:E440:4754:5C0C:9048-20170914103754\nTalk:Ships/@comment-26009169-20170902094803/@comment-84.203.7.208-20170903112620\nTalk:Ships/@comment-2601:380:4100:E610:5BE:9170:A65E:84C0-20171226170156\nTalk:Ships/@comment-2605:E000:2402:B000:E50C:6A6B:EEFD:E453-20190628014846\nTalk:Ships/@comment-2605:E000:2402:B000:E50C:6A6B:EEFD:E453-20190628014846/@comment-82.14.210.105-20190713071552\nTalk:Ships/@comment-2605:E000:308A:E500:282A:A32:718:96A7-20180108050553\nTalk:Ships/@comment-26127089-20150807015714\nTalk:Ships/@comment-26127089-20150807015714/@comment-156.3.54.203-20150902182430\nTalk:Ships/@comment-26127089-20150807015714/@comment-156.3.54.203-20150902182639\nTalk:Ships/@comment-26127089-20150807015714/@comment-206.208.187.105-20161012011301\nTalk:Ships/@comment-26127089-20150807015714/@comment-70.160.108.1-20150815022026\nTalk:Ships/@comment-26304615-20150706095853\nTalk:Ships/@comment-26304615-20150706095853/@comment-26009169-20150706123952\nTalk:Ships/@comment-27034370-20160108034522\nTalk:Ships/@comment-27034370-20160108034522/@comment-2155082-20160108061114\nTalk:Ships/@comment-27808564-20160216080421\nTalk:Ships/@comment-27808564-20160216080421/@comment-27032150-20160216120556\nTalk:Ships/@comment-2A02:8109:9F40:22DC:85B1:137D:1232:3C15-20190115104100\nTalk:Ships/@comment-2A02:A311:A241:C300:D054:14AD:F283:F0D5-20180601071818\nTalk:Ships/@comment-2A02:A311:A241:C300:D054:14AD:F283:F0D5-20180601071818/@comment-192.136.163.15-20180601131323\nTalk:Ships/@comment-34903452-20180305072954\nTalk:Ships/@comment-34903452-20180305072954/@comment-36249090-20180720104434\nTalk:Ships/@comment-36249090-20180720104245\nTalk:Ships/@comment-4030403-20171109042814\nTalk:Ships/@comment-4030403-20171109042814/@comment-98.193.10.19-20181111190431\nTalk:Ships/@comment-4055590-20141124141821\nTalk:Ships/@comment-45098779-20200222170225\nTalk:Ships/@comment-46.132.185.20-20140926223504\nTalk:Ships/@comment-50.139.244.177-20141203041942\nTalk:Ships/@comment-50.139.244.177-20141203041953\nTalk:Ships/@comment-50.66.162.37-20170418070730\nTalk:Ships/@comment-50.66.162.37-20170418070730/@comment-50.66.162.37-20170418073921\nTalk:Ships/@comment-5016083-20150128184725\nTalk:Ships/@comment-5016083-20150128184725/@comment-12138097-20150128222329\nTalk:Ships/@comment-5016083-20150128184725/@comment-204.187.101.227-20150201230356\nTalk:Ships/@comment-5016083-20150128184725/@comment-5016083-20150128234158\nTalk:Ships/@comment-62.77.119.80-20140911090032\nTalk:Ships/@comment-62.77.119.80-20140911090032/@comment-25249692-20140911090944\nTalk:Ships/@comment-62.77.119.80-20140911090032/@comment-62.77.119.80-20140911092952\nTalk:Ships/@comment-68.49.171.49-20170117051758\nTalk:Ships/@comment-68.49.171.49-20170117051758/@comment-30245159-20170118015906\nTalk:Ships/@comment-68.5.56.109-20151008003810\nTalk:Ships/@comment-68.8.234.197-20151220030534\nTalk:Ships/@comment-69.119.152.145-20150416100417\nTalk:Ships/@comment-69.249.171.123-20140713153046\nTalk:Ships/@comment-69.249.171.123-20140713153046/@comment-2.30.120.182-20140810141457\nTalk:Ships/@comment-69.249.171.123-20140713153046/@comment-6033893-20140805004634\nTalk:Ships/@comment-69.249.171.123-20140713153046/@comment-69.249.171.123-20140713153208\nTalk:Ships/@comment-69.249.171.123-20140713153046/@comment-86.150.87.184-20140802033511\nTalk:Ships/@comment-73.155.182.193-20170621035359\nTalk:Ships/@comment-73.155.182.193-20170621035359/@comment-26950991-20170621145245\nTalk:Ships/@comment-75.107.126.23-20180326114909\nTalk:Ships/@comment-75.107.126.23-20180326114909/@comment-30928085-20180330214457\nTalk:Ships/@comment-75.5.248.67-20170902060020\nTalk:Ships/@comment-76.111.164.208-20140802152900\nTalk:Ships/@comment-76.111.164.208-20140802152900/@comment-2.30.120.182-20140802183724\nTalk:Ships/@comment-76.111.164.208-20141003122857\nTalk:Ships/@comment-76.111.164.208-20141003122857/@comment-213.21.90.11-20141003171057\nTalk:Ships/@comment-76.111.164.208-20141003122857/@comment-25249692-20141017012647\nTalk:Ships/@comment-76.111.164.208-20141003122857/@comment-50.158.150.75-20141116144435\nTalk:Ships/@comment-76.111.164.208-20141003122857/@comment-50.96.208.137-20141123010034\nTalk:Ships/@comment-76.111.164.208-20141003122857/@comment-72.211.212.172-20141017005328\nTalk:Ships/@comment-76.111.164.208-20141003122857/@comment-94.11.230.225-20141102094402\nTalk:Ships/@comment-76.92.151.172-20150616081725\nTalk:Ships/@comment-78.134.11.27-20190123221839\nTalk:Ships/@comment-78.134.11.27-20190123221839/@comment-82.14.210.105-20190713071623\nTalk:Ships/@comment-81.105.110.197-20141104220037\nTalk:Ships/@comment-81.144.150.66-20150212105008\nTalk:Ships/@comment-81.144.150.66-20150212105008/@comment-26009169-20150212141714\nTalk:Ships/@comment-81.144.150.66-20150212105008/@comment-46.11.18.188-20150225150158\nTalk:Ships/@comment-81.159.72.252-20170822174512\nTalk:Ships/@comment-81.159.72.252-20170822174512/@comment-30245159-20170822215548\nTalk:Ships/@comment-82.14.210.105-20190713071513\nTalk:Ships/@comment-82.14.210.105-20190713071711\nTalk:Ships/@comment-82.18.232.243-20141130170538\nTalk:Ships/@comment-82.18.232.243-20141130170538/@comment-166.137.139.51-20141215053746\nTalk:Ships/@comment-82.18.232.243-20141130170538/@comment-166.137.139.51-20141215054020\nTalk:Ships/@comment-82.18.232.243-20141130170538/@comment-70.197.197.172-20150201101038\nTalk:Ships/@comment-82.38.171.240-20180317141558\nTalk:Ships/@comment-82.38.171.240-20180317141558/@comment-2A02:A311:A241:C300:D054:14AD:F283:F0D5-20180601071900\nTalk:Ships/@comment-84.171.70.245-20150311201012\nTalk:Ships/@comment-84.203.7.208-20170830042710\nTalk:Ships/@comment-84.203.7.208-20170830042710/@comment-75.5.248.67-20170901062840\nTalk:Ships/@comment-84.45.239.248-20140805090911\nTalk:Ships/@comment-85.229.110.38-20150105144542\nTalk:Ships/@comment-86.135.233.85-20140812140718\nTalk:Ships/@comment-86.135.233.85-20140812140718/@comment-122.57.114.143-20140813213955\nTalk:Ships/@comment-86.178.183.109-20150108172530\nTalk:Ships/@comment-86.178.183.109-20150108172530/@comment-4968814-20150108172940\nTalk:Ships/@comment-86.29.78.113-20140810164046\nTalk:Ships/@comment-86.29.78.113-20140810164046/@comment-202.36.179.100-20140812024912\nTalk:Ships/@comment-86.29.78.113-20140810164046/@comment-65.184.106.104-20140912224543\nTalk:Ships/@comment-86.88.84.100-20171228034017\nTalk:Ships/@comment-86.88.84.100-20171228034017/@comment-26810597-20171228040831\nTalk:Ships/@comment-87.15.111.108-20151020095903\nTalk:Ships/@comment-87.15.111.108-20151020095903/@comment-206.208.187.105-20161012010924\nTalk:Ships/@comment-87.15.111.108-20151020095903/@comment-72.194.70.33-20151026023248\nTalk:Ships/@comment-87.15.111.108-20151020095903/@comment-72.194.70.33-20151124185849\nTalk:Ships/@comment-88.159.77.1-20141021195949\nTalk:Ships/@comment-89.240.60.254-20150701143435\nTalk:Ships/@comment-89.240.60.254-20150701143435/@comment-89.240.60.254-20150701143512\nTalk:Ships/@comment-91.53.194.25-20160622154306\nTalk:Ships/@comment-91.53.194.25-20160622154306/@comment-91.53.194.25-20160622163429\nTalk:Ships/@comment-92.201.14.171-20151027142857\nTalk:Ships/@comment-92.201.14.171-20151027142857/@comment-188.230.130.164-20160117150411\nTalk:Ships/@comment-92.201.14.171-20151027142857/@comment-24.96.25.44-20151028160929\nTalk:Ships/@comment-92.201.14.171-20151027142857/@comment-27311754-20160117151942\nTalk:Ships/@comment-92.201.14.171-20151027142857/@comment-46.255.183.66-20151027171225\nTalk:Ships/@comment-92.201.14.171-20151027142857/@comment-73.151.104.224-20151113210607\nTalk:Ships/@comment-92.201.14.171-20151027142857/@comment-92.201.34.131-20151028195831\nTalk:Ships/@comment-92.26.38.151-20150316201857\nTalk:Ships/@comment-95.147.181.238-20181028114634\nTalk:Ships/@comment-95.147.181.238-20181028114634/@comment-78.99.189.34-20181102144923\nTalk:Ships/@comment-95.242.92.82-20161101075547\nTalk:Ships/@comment-95.242.92.82-20161101075547/@comment-192.136.161.52-20161101111145\nTalk:Ships/@comment-95.91.228.189-20160224212906\nTalk:Ships/@comment-95.91.228.189-20160224212906/@comment-162.25.24.153-20160316142424\nTalk:Ships/@comment-95.91.228.189-20160224212906/@comment-162.25.24.153-20160317113103\nTalk:Ships/@comment-95.91.228.189-20160224212906/@comment-162.25.24.153-20160317113212\nTalk:Ships/@comment-95.91.228.189-20160224212906/@comment-188.230.130.164-20160228181155\nTalk:Ships/@comment-95.91.228.189-20160224212906/@comment-192.136.174.152-20160304133211\nTalk:Ships/@comment-95.91.228.189-20160224212906/@comment-27032150-20160307091634\nTalk:Ships/@comment-95.91.228.189-20160224212906/@comment-27032150-20160316154011\nTalk:Ships/@comment-95.91.228.189-20160224212906/@comment-95.91.228.162-20160305153538\nTalk:Ships/@comment-98.193.10.19-20181111190304\nTalk:Ships/@comment-98.223.133.113-20150314155443\nTalk:Ships/@comment-98.223.133.113-20150314155443/@comment-26009169-20150314161501\nTalk:Ships/@comment-98.237.193.126-20150322200020\nTalk:Ships/@comment-99.29.0.151-20161029202043\nTalk:Ships/@comment-99.29.0.151-20161029202043/@comment-2155082-20161030042134\nTalk:Ships (Update)/@comment-186.19.130.81-20160117150459\nTalk:Ships (Update)/@comment-63.239.65.11-20151207184208\nTalk:Shipwreck/@comment-45657657-20200501141828\nTalk:Shipwreck/@comment-82.1.203.26-20200115135333\nTalk:Shipwreck/@comment-82.1.203.26-20200115135333/@comment-2003:DB:F70F:D6A7:14E4:EE2C:ED34:9307-20200204160455\nTalk:Shipyard/@comment-109.246.96.109-20151004150726\nTalk:Shipyard/@comment-109.246.96.109-20151004150726/@comment-26999933-20151004174200\nTalk:Shipyard/@comment-25085299-20151118192537\nTalk:Shipyard/@comment-25085299-20151118192537/@comment-73.186.196.55-20161031223233\nTalk:Shipyard/@comment-25085299-20151118192537/@comment-82.28.239.89-20160111214226\nTalk:Shipyard/@comment-2605:E000:308A:E500:282A:A32:718:96A7-20180217044356\nTalk:Shipyard/@comment-69.141.172.169-20150924184706\nTalk:Shipyard/@comment-69.141.172.169-20150924184706/@comment-69.141.172.169-20150924184838\nTalk:Shipyard/@comment-69.141.172.169-20150924184706/@comment-94.192.91.84-20160307225237\nTalk:Shipyard/@comment-87.221.79.230-20191012190153\nTalk:Shipyard/@comment-87.221.79.230-20191012190153/@comment-204.63.40.39-20191029203441\nTalk:Shock Cannon/@comment-141.70.21.163-20180403025414\nTalk:Shock Cannon/@comment-141.70.21.163-20180403025414/@comment-176.241.72.203-20190804100728\nTalk:Shock Cannon/@comment-141.70.21.163-20180403025414/@comment-189.32.28.226-20190212025757\nTalk:Shock Cannon/@comment-141.70.21.163-20180403025414/@comment-2601:246:102:1B07:5883:8733:6CA7:CA21-20181106050414\nTalk:Shock Cannon/@comment-141.70.21.163-20180403025414/@comment-62.143.152.192-20180925143850\nTalk:Shock Cannon/@comment-141.70.21.163-20180403025414/@comment-98.193.10.19-20181112215521\nTalk:Shock Cannon/@comment-177.191.227.197-20180312205709\nTalk:Shock Cannon/@comment-177.191.227.197-20180312205709/@comment-118.93.246.156-20180410025600\nTalk:Shock Cannon/@comment-177.191.227.197-20180312205709/@comment-62.143.152.192-20180706221131\nTalk:Shock Cannon/@comment-177.191.227.197-20180312205709/@comment-95.220.183.153-20180324035833\nTalk:Shock Cannon/@comment-197.188.54.199-20190408174824\nTalk:Shock Cannon/@comment-197.188.54.199-20190408174824/@comment-192.136.170.30-20190408193857\nTalk:Shock Cannon/@comment-2003:DA:CBCD:7700:A973:D7D3:B090:E249-20180720205350\nTalk:Shock Cannon/@comment-2003:DA:CBCD:7700:A973:D7D3:B090:E249-20180720205350/@comment-66.91.22.40-20180726132257\nTalk:Shock Cannon/@comment-2003:DB:F70F:D6FE:51B3:393:A44E:B808-20200201170336\nTalk:Shock Cannon/@comment-2003:DB:F70F:D6FE:51B3:393:A44E:B808-20200201170336/@comment-2003:DB:F70F:D6A7:1DED:D8B6:9A47:FE88-20200204214403\nTalk:Shock Cannon/@comment-2003:DB:F70F:D6FE:51B3:393:A44E:B808-20200201170336/@comment-38023170-20200201173119\nTalk:Shock Cannon/@comment-2003:DB:F70F:D6FE:51B3:393:A44E:B808-20200201170336/@comment-38023170-20200205030043\nTalk:Shock Cannon/@comment-216.164.232.183-20180120102341\nTalk:Shock Cannon/@comment-216.164.232.183-20180120102341/@comment-212.112.149.50-20180208223846\nTalk:Shock Cannon/@comment-216.164.232.183-20180120102341/@comment-37.47.143.2-20180316164422\nTalk:Shock Cannon/@comment-216.164.232.183-20180120102341/@comment-79.119.238.186-20180201003746\nTalk:Shock Cannon/@comment-2806:104E:17:49F5:B5C0:9778:1435:CF9D-20200131074907\nTalk:Shock Cannon/@comment-2806:104E:17:49F5:B5C0:9778:1435:CF9D-20200131074907/@comment-38023170-20200131084839\nTalk:Shock Cannon/@comment-44164282-20191018004242\nTalk:Shock Cannon/@comment-46337850-20200713074725\nTalk:Shock Cannon/@comment-98.193.10.19-20181112215913\nTalk:Shock Cannon/@comment-98.193.10.19-20181112215913/@comment-192.136.170.98-20181219182348\nTalk:Shock Cannon/@comment-98.193.10.19-20181112215913/@comment-192.136.170.98-20190202154241\nTalk:Shock Cannon/@comment-98.193.10.19-20181112215913/@comment-90.200.45.179-20190202153042\nTalk:Shock Cannon/@comment-98.193.10.19-20181112215913/@comment-90.200.49.195-20181219171907\nTalk:Shock Mine Launcher/@comment-122.109.163.110-20160213104515\nTalk:Shock Mine Launcher/@comment-122.109.163.110-20160213104515/@comment-192.136.172.239-20160213193643\nTalk:Shock Mine Launcher/@comment-122.109.163.110-20160213104515/@comment-2001:5B0:4BCF:58C0:0:FF:FEBD:63F2-20181106115344\nTalk:Shock Mine Launcher/@comment-122.109.163.110-20160213104515/@comment-222.153.155.209-20171104075246\nTalk:Shock Mine Launcher/@comment-187.65.137.246-20191016204121\nTalk:Shock Mine Launcher/@comment-193.104.162.7-20160614073903\nTalk:Shock Mine Launcher/@comment-193.104.162.7-20160614073903/@comment-222.153.155.209-20171104075231\nTalk:Shock Mine Launcher/@comment-193.104.162.7-20160614073903/@comment-64.127.136.202-20160614131224\nTalk:Shock Mine Launcher/@comment-32497773-20190109021544\nTalk:Shock Mine Launcher/@comment-32497773-20190109021544/@comment-90.200.49.195-20190114230843\nTalk:Shock Mine Launcher/@comment-37820584-20190930070653\nTalk:Shock Mine Launcher/@comment-90.200.46.38-20181122013246\nTalk:Shock Mine Launcher/@comment-95.28.62.129-20160811192318\nTalk:Shock Mine Launcher/@comment-95.28.62.129-20160811192318/@comment-192.136.161.248-20160811203536\nTalk:Short Range Composition Scanner/@comment-66.215.193.16-20191224191752\nTalk:Short Range Composition Scanner/@comment-66.215.193.16-20191224191752/@comment-45653063-20200501011740\nTalk:Short Range Weapon/@comment-34252493-20180204115202\nTalk:Shutdown Field Neutraliser/@comment-174.105.40.253-20190225014058\nTalk:Shutdown Field Neutraliser/@comment-174.105.40.253-20190225014058/@comment-192.136.170.98-20190226212651\nTalk:Shutdown Field Neutraliser/@comment-176.164.28.43-20180309000854\nTalk:Shutdown Field Neutraliser/@comment-176.164.28.43-20180309000854/@comment-143.159.101.4-20180531002240\nTalk:Shutdown Field Neutraliser/@comment-176.164.28.43-20180309000854/@comment-90.178.5.222-20180309200156\nTalk:Shutdown Field Neutraliser/@comment-25803634-20180630031939\nTalk:Shutdown Field Neutraliser/@comment-25803634-20180630031939/@comment-72.50.144.40-20200119062838\nTalk:Shutdown Field Neutraliser/@comment-25803634-20180630031939/@comment-72.50.144.40-20200119063042\nTalk:Shutdown Field Neutraliser/@comment-31.51.143.44-20180701082932\nTalk:Shutdown Field Neutraliser/@comment-46290524-20200919080419\nTalk:Shutdown Field Neutraliser/@comment-77.117.53.147-20180626223336\nTalk:Sidewinder/@comment-81.146.24.187-20150815185413\nTalk:Sidewinder MkI/@comment-108.223.4.15-20141114044520\nTalk:Sidewinder MkI/@comment-108.223.4.15-20141114044520/@comment-129.89.104.180-20141221174517\nTalk:Sidewinder MkI/@comment-121.220.195.176-20150111100856\nTalk:Sidewinder MkI/@comment-121.220.195.176-20150111100856/@comment-156.3.54.204-20150428212521\nTalk:Sidewinder MkI/@comment-125.39.35.23-20151012131542\nTalk:Sidewinder MkI/@comment-125.39.35.23-20151012131542/@comment-125.237.3.1-20161023081839\nTalk:Sidewinder MkI/@comment-125.39.35.23-20151012131542/@comment-142.217.17.69-20170704111258\nTalk:Sidewinder MkI/@comment-125.39.35.23-20151012131542/@comment-142.217.17.69-20170704112245\nTalk:Sidewinder MkI/@comment-125.39.35.23-20151012131542/@comment-142.217.17.69-20170704112735\nTalk:Sidewinder MkI/@comment-143.81.103.35-20160226231341\nTalk:Sidewinder MkI/@comment-143.81.103.35-20160226231341/@comment-192.136.175.219-20160227145918\nTalk:Sidewinder MkI/@comment-143.81.103.35-20160226231341/@comment-66.249.88.185-20160305042749\nTalk:Sidewinder MkI/@comment-156.3.54.203-20150924154529\nTalk:Sidewinder MkI/@comment-178.192.134.124-20150121153706\nTalk:Sidewinder MkI/@comment-178.192.134.124-20150121153706/@comment-90.231.177.208-20150326210527\nTalk:Sidewinder MkI/@comment-180.255.248.132-20141102230346\nTalk:Sidewinder MkI/@comment-180.255.248.132-20141102230346/@comment-27047377-20151005134411\nTalk:Sidewinder MkI/@comment-2001:5B0:4BC2:1C20:0:FF:FEBD:1C0-20180426235214\nTalk:Sidewinder MkI/@comment-2001:5B0:4BC2:1C20:0:FF:FEBD:1C0-20180426235214/@comment-2600:6C5D:6300:801:95FB:5034:44EC:D4C0-20181121224805\nTalk:Sidewinder MkI/@comment-2001:5B0:4BC2:1C20:0:FF:FEBD:1C0-20180426235214/@comment-90.200.46.38-20181104151447\nTalk:Sidewinder MkI/@comment-2001:5B0:4BC2:1C20:0:FF:FEBD:1C0-20180426235214/@comment-90.200.46.38-20181108182130\nTalk:Sidewinder MkI/@comment-2003:CC:6BEA:2781:C833:6245:9228:4136-20170701214905\nTalk:Sidewinder MkI/@comment-2600:6C5D:6300:801:1819:C20E:70A3:2B03-20180316024049\nTalk:Sidewinder MkI/@comment-26048696-20150127222503\nTalk:Sidewinder MkI/@comment-26211383-20150813133255\nTalk:Sidewinder MkI/@comment-27047377-20151005134303\nTalk:Sidewinder MkI/@comment-27047377-20151005134303/@comment-108.41.120.242-20151216004820\nTalk:Sidewinder MkI/@comment-27047377-20151005134303/@comment-27047377-20160114153901\nTalk:Sidewinder MkI/@comment-27047377-20151005134303/@comment-27380851-20151211092037\nTalk:Sidewinder MkI/@comment-27496372-20160213172305\nTalk:Sidewinder MkI/@comment-27668044-20160626184241\nTalk:Sidewinder MkI/@comment-29468965-20160806034124\nTalk:Sidewinder MkI/@comment-29468965-20160806034124/@comment-110.238.45.102-20170117032324\nTalk:Sidewinder MkI/@comment-29468965-20160806034124/@comment-2600:6C5D:6300:801:E99D:3B8A:91A7:39A5-20180315034746\nTalk:Sidewinder MkI/@comment-29468965-20160806034124/@comment-68.186.130.248-20180421053314\nTalk:Sidewinder MkI/@comment-32892070-20170818223753\nTalk:Sidewinder MkI/@comment-32892070-20170818223753/@comment-30245159-20170818234759\nTalk:Sidewinder MkI/@comment-34641605-20180328232205\nTalk:Sidewinder MkI/@comment-34641605-20180328232205/@comment-34641605-20180328232328\nTalk:Sidewinder MkI/@comment-34641605-20180328232205/@comment-68.186.130.248-20180420040256\nTalk:Sidewinder MkI/@comment-38.132.167.192-20160116081154\nTalk:Sidewinder MkI/@comment-38.132.167.192-20160116081621\nTalk:Sidewinder MkI/@comment-38.132.167.192-20160116081621/@comment-68.186.130.248-20180421053444\nTalk:Sidewinder MkI/@comment-73.9.170.44-20160727215231\nTalk:Sidewinder MkI/@comment-76.124.162.53-20150128230719\nTalk:Sidewinder MkI/@comment-76.124.162.53-20150128230719/@comment-220.239.204.47-20150408070925\nTalk:Sidewinder MkI/@comment-85.225.6.86-20160629011456\nTalk:Sidewinder MkI/@comment-86.1.61.9-20151018223257\nTalk:Sidewinder MkI/@comment-86.1.61.9-20151018223257/@comment-143.81.103.35-20160116194434\nTalk:Sidewinder MkI/@comment-86.1.61.9-20151018223257/@comment-192.136.172.239-20160203204447\nTalk:Sidewinder MkI/@comment-86.1.61.9-20151018223257/@comment-27034370-20160104113539\nTalk:Sidewinder MkI/@comment-86.1.61.9-20151018223257/@comment-27115814-20151025195553\nTalk:Sidewinder MkI/@comment-86.1.61.9-20151029032300\nTalk:Sidewinder MkI/@comment-86.1.61.9-20151029032300/@comment-125.237.3.1-20161023081731\nTalk:Sidewinder MkI/@comment-86.1.61.9-20151029032300/@comment-27034370-20160104113431\nTalk:Sidewinder MkI/@comment-89.66.59.144-20161105192748\nTalk:Sidewinder MkI/@comment-89.66.59.144-20161105192748/@comment-192.136.161.52-20161106031121\nTalk:Sidewinder MkI/@comment-89.66.59.144-20161105192748/@comment-192.136.161.52-20161106173928\nTalk:Sidewinder MkI/@comment-89.66.59.144-20161105192748/@comment-89.66.59.144-20161106170258\nTalk:Sidewinder MkI/@comment-94.254.0.87-20160211092515\nTalk:Sidewinder MkI/@comment-94.254.0.87-20160211092515/@comment-192.136.172.239-20160211220155\nTalk:Sidewinder MkI/@comment-94.254.0.87-20160211092515/@comment-2600:6C5D:6300:801:E99D:3B8A:91A7:39A5-20180315034858\nTalk:Sidewinder MkI/@comment-96.250.114.167-20190917025045\nTalk:Sidewinder MkI/@comment-98.245.12.110-20150504040827\nTalk:Sidewinder MkI/@comment-98.245.12.110-20150504040827/@comment-156.3.54.203-20150529200425\nTalk:Sidewinder MkI/@comment-98.245.12.110-20150504040827/@comment-27838177-20160501145023\nTalk:Silent Running/@comment-188.193.191.31-20150103205234\nTalk:Silent Running/@comment-188.193.191.31-20150103205234/@comment-25335609-20150104205644\nTalk:Silent Running/@comment-192.136.161.156-20161019123343\nTalk:Silent Running/@comment-192.136.161.156-20161019123343/@comment-150.208.129.188-20170425132930\nTalk:Silent Running/@comment-192.136.161.52-20170525120108\nTalk:Silent Running/@comment-203.206.35.105-20150413145312\nTalk:Silent Running/@comment-203.206.35.105-20150413145312/@comment-107.196.87.12-20150820184626\nTalk:Silent Running/@comment-203.206.35.105-20150413145312/@comment-2.86.195.8-20161031081613\nTalk:Silent Running/@comment-203.206.35.105-20150413145312/@comment-202.36.179.100-20150427231307\nTalk:Silent Running/@comment-203.206.35.105-20150413145312/@comment-24.84.28.169-20150828030755\nTalk:Silent Running/@comment-203.206.35.105-20150413145312/@comment-26537865-20150629034528\nTalk:Silent Running/@comment-203.206.35.105-20150413145312/@comment-71.175.97.11-20151221152559\nTalk:Silent Running/@comment-203.206.35.105-20150413145312/@comment-72.241.143.238-20150523054500\nTalk:Silent Running/@comment-203.206.35.105-20150413145312/@comment-73.178.98.248-20150511195724\nTalk:Silent Running/@comment-203.206.35.105-20150413145312/@comment-76.103.34.243-20150414021815\nTalk:Silent Running/@comment-203.206.35.105-20150413145312/@comment-82.11.99.50-20150427084128\nTalk:Silent Running/@comment-203.206.35.105-20150413145312/@comment-88.192.81.190-20150414135001\nTalk:Silent Running/@comment-216.164.232.183-20170403193333\nTalk:Silent Running/@comment-216.164.232.183-20170403193333/@comment-213.68.126.83-20191021104446\nTalk:Silent Running/@comment-216.164.232.183-20170403193333/@comment-2155082-20170403194536\nTalk:Silent Running/@comment-24.45.93.5-20150227044540\nTalk:Silent Running/@comment-24.45.93.5-20150227044540/@comment-25227859-20150227100342\nTalk:Silent Running/@comment-24897855-20140905184633\nTalk:Silent Running/@comment-24897855-20140905184633/@comment-2.203.87.240-20140916204537\nTalk:Silent Running/@comment-24897855-20140905184633/@comment-25335609-20140907012601\nTalk:Silent Running/@comment-24897855-20140905184633/@comment-25335609-20140916233256\nTalk:Silent Running/@comment-24897855-20140905184633/@comment-32.212.141.244-20140906213042\nTalk:Silent Running/@comment-24897855-20140905184633/@comment-67.246.176.164-20141221165353\nTalk:Silent Running/@comment-71.90.103.106-20151216113505\nTalk:Silent Running/@comment-71.90.103.106-20151216113505/@comment-125.237.2.240-20160913035551\nTalk:Silent Running/@comment-71.90.103.106-20151216113505/@comment-81.39.30.135-20170302182254\nTalk:Silent Running/@comment-74.249.112.23-20180829180403\nTalk:Silent Running/@comment-74.249.112.23-20180829180403/@comment-213.68.126.83-20191021104327\nTalk:Silent Running/@comment-74.249.112.23-20180829180403/@comment-74.249.112.23-20180829180509\nTalk:Silent Running/@comment-74.249.112.23-20180829180403/@comment-89.135.249.166-20191126092947\nTalk:Silent Running/@comment-90.200.46.38-20181107230508\nTalk:Silver/@comment-26113847-20150221002301\nTalk:Silver/@comment-26113847-20150221002301/@comment-82.45.170.141-20150604202320\nTalk:Sirius Corporation/@comment-108.26.118.129-20170204023951\nTalk:Sirius Corporation/@comment-192.136.175.90-20160602165010\nTalk:Sirius Corporation/@comment-192.136.175.90-20160602165010/@comment-192.136.175.90-20160603111838\nTalk:Sirius Corporation/@comment-192.136.175.90-20160602165010/@comment-2155082-20160603033539\nTalk:Sirius Corporation/@comment-218.250.142.212-20160704062717\nTalk:Sirius Corporation/@comment-218.250.142.212-20160704062717/@comment-98.186.164.103-20160909235943\nTalk:Sirius Corporation/@comment-24.132.173.88-20160630100042\nTalk:Sirius Corporation/@comment-24.132.173.88-20160630100042/@comment-2155082-20160701041129\nTalk:Sirius Corporation/@comment-24.132.173.88-20160630100042/@comment-2155082-20160701041430\nTalk:Sirius Corporation/@comment-84.156.114.89-20190730125134\nTalk:Sirius Corporation/@comment-85.30.188.48-20170214204414\nTalk:Slaves/@comment-107.13.240.118-20180518162446\nTalk:Slaves/@comment-108.74.101.114-20150516171827\nTalk:Slaves/@comment-108.74.101.114-20150516171827/@comment-108.74.101.114-20150516172031\nTalk:Slaves/@comment-108.74.101.114-20150516171827/@comment-68.112.230.72-20150528130438\nTalk:Slaves/@comment-116.123.134.10-20150228171119\nTalk:Slaves/@comment-124.169.187.134-20150121104811\nTalk:Slaves/@comment-124.169.187.134-20150121104811/@comment-50.65.152.15-20150122040710\nTalk:Slaves/@comment-1338166-20150102115726\nTalk:Slaves/@comment-1338166-20150102115726/@comment-26113847-20150221001502\nTalk:Slaves/@comment-1338166-20150102115726/@comment-91.158.175.250-20150210231732\nTalk:Slaves/@comment-150.101.171.247-20150308093328\nTalk:Slaves/@comment-150.101.171.247-20150320054020\nTalk:Slaves/@comment-176.25.248.74-20151219130815\nTalk:Slaves/@comment-176.25.248.74-20151219130815/@comment-14.200.155.229-20160210113604\nTalk:Slaves/@comment-176.25.248.74-20151219130815/@comment-27311754-20160210114349\nTalk:Slaves/@comment-176.25.248.74-20151219130815/@comment-6187938-20180816193224\nTalk:Slaves/@comment-176.25.248.74-20151219130815/@comment-6296424-20180222233523\nTalk:Slaves/@comment-187.21.56.251-20150415153542\nTalk:Slaves/@comment-187.21.56.251-20150415153542/@comment-81.235.174.224-20150420101547\nTalk:Slaves/@comment-193.14.9.74-20150209081804\nTalk:Slaves/@comment-195.177.74.226-20141225120925\nTalk:Slaves/@comment-195.177.74.226-20141225120925/@comment-209.173.14.125-20150122164912\nTalk:Slaves/@comment-195.177.74.226-20141225120925/@comment-90.144.200.153-20141225184657\nTalk:Slaves/@comment-2.85.229.199-20150416193303\nTalk:Slaves/@comment-213.29.118.223-20150113202005\nTalk:Slaves/@comment-213.29.118.223-20150113202005/@comment-92.129.244.178-20150125233111\nTalk:Slaves/@comment-24.4.216.147-20150401071445\nTalk:Slaves/@comment-25063809-20150307023144\nTalk:Slaves/@comment-26113847-20150221001919\nTalk:Slaves/@comment-26234394-20150322194644\nTalk:Slaves/@comment-26292233-20150504145104\nTalk:Slaves/@comment-26292233-20150504145104/@comment-71.233.88.91-20160718233226\nTalk:Slaves/@comment-26292233-20150504145104/@comment-77.3.80.114-20150512074652\nTalk:Slaves/@comment-69.119.152.145-20150414044335\nTalk:Slaves/@comment-69.119.152.145-20150414044335/@comment-62.158.216.100-20150421235147\nTalk:Slaves/@comment-70.198.73.202-20150321021520\nTalk:Slaves/@comment-74.88.196.15-20150412120722\nTalk:Slaves/@comment-79.21.150.108-20150304115924\nTalk:Slaves/@comment-79.21.150.108-20150304115924/@comment-79.21.150.108-20150304121210\nTalk:Slaves/@comment-79.21.150.108-20150304121402\nTalk:Slaves/@comment-79.21.150.108-20150304121402/@comment-79.21.150.108-20150304121501\nTalk:Slaves/@comment-82.156.116.254-20150401121928\nTalk:Slaves/@comment-83.228.134.154-20150125142343\nTalk:Slaves/@comment-83.228.134.154-20150125150155\nTalk:Slaves/@comment-84.13.50.128-20150425143019\nTalk:Slaves/@comment-84.13.50.128-20150425143019/@comment-125.237.15.105-20150511034101\nTalk:Slaves/@comment-84.13.50.128-20150425143019/@comment-208.125.193.34-20150502000539\nTalk:Slaves/@comment-84.13.50.128-20150425143019/@comment-26372902-20150505193937\nTalk:Slaves/@comment-84.13.50.128-20150425143019/@comment-26388733-20150511034226\nTalk:Slaves/@comment-84.13.50.128-20150425143019/@comment-80.3.149.141-20150505150709\nTalk:Slaves/@comment-85.226.211.156-20150408141150\nTalk:Slaves/@comment-85.226.211.156-20150408141150/@comment-85.226.211.156-20150408142054\nTalk:Slaves/@comment-85.226.211.156-20150408194527\nTalk:Slaves/@comment-86.1.17.5-20150331172917\nTalk:Slaves/@comment-86.172.50.175-20150127144302\nTalk:Slaves/@comment-90.201.34.97-20150223223724\nTalk:Slaves/@comment-92.129.244.178-20150125233219\nTalk:Slaves/@comment-95.208.248.80-20150106120150\nTalk:Slaves/@comment-96.52.151.7-20150114024911\nTalk:Slaves/@comment-98.148.83.230-20150305013500\nTalk:Slaves/@comment-98.242.36.239-20150324094036\nTalk:Small Hardpoint/@comment-98.216.193.104-20141112214003\nTalk:Small Hardpoint/@comment-98.216.193.104-20141112214003/@comment-70.179.129.16-20141217001519\nTalk:Smuggler/@comment-143.81.103.35-20160117153216\nTalk:Smuggler/@comment-146.198.211.148-20150905004508\nTalk:Smuggler/@comment-173.24.227.48-20150204124250\nTalk:Smuggler/@comment-195.189.180.51-20150106160921\nTalk:Smuggler/@comment-195.189.180.51-20150106160921/@comment-152.132.10.195-20150607063700\nTalk:Smuggler/@comment-195.189.180.51-20150106160921/@comment-158.125.69.147-20150106161453\nTalk:Smuggler/@comment-195.189.180.51-20150106160921/@comment-172.248.16.23-20150113082850\nTalk:Smuggler/@comment-195.189.180.51-20150106160921/@comment-47.18.207.88-20150228211723\nTalk:Smuggler/@comment-212.59.37.193-20150928130256\nTalk:Smuggler/@comment-212.59.37.193-20150928130256/@comment-153.107.192.204-20160315230113\nTalk:Smuggler/@comment-212.59.37.193-20150928130256/@comment-67.190.51.3-20151017042200\nTalk:Smuggler/@comment-24.3.229.5-20150826002322\nTalk:Smuggler/@comment-24.3.229.5-20150826002322/@comment-28077370-20161101113915\nTalk:Smuggler/@comment-24.3.229.5-20150826002322/@comment-86.45.98.174-20150827214844\nTalk:Smuggler/@comment-26544017-20150629124512\nTalk:Smuggler/@comment-28077370-20161101113353\nTalk:Smuggler/@comment-2A02:120B:2C1A:3460:D435:31AC:546:9BD0-20180528122142\nTalk:Smuggler/@comment-45.31.8.111-20160913015115\nTalk:Smuggler/@comment-67.255.252.24-20150704221026\nTalk:Smuggler/@comment-73.183.165.165-20161014191615\nTalk:Smuggler/@comment-74.90.92.146-20151017184942\nTalk:Smuggler/@comment-75.71.81.249-20151024093351\nTalk:Smuggler/@comment-75.71.81.249-20151024093351/@comment-153.107.192.204-20160315225938\nTalk:Smuggler/@comment-76.71.51.6-20170310055212\nTalk:Smuggler/@comment-76.71.51.6-20170310055212/@comment-192.136.161.52-20170310200206\nTalk:Smuggler/@comment-76.71.51.6-20170310055212/@comment-62.143.152.192-20180917223621\nTalk:Smuggler/@comment-94.9.142.131-20150214002059\nTalk:Smuggler/@comment-9472148-20160128152503\nTalk:Sol/@comment-109.158.152.97-20161219084250\nTalk:Sol/@comment-109.158.152.97-20161219084250/@comment-125.237.6.217-20170522082630\nTalk:Sol/@comment-124.148.124.104-20150102124513\nTalk:Sol/@comment-124.148.124.104-20150102124513/@comment-12138097-20150102202514\nTalk:Sol/@comment-124.148.124.104-20150102124513/@comment-70.194.128.89-20150212230804\nTalk:Sol/@comment-143.81.103.35-20160122231221\nTalk:Sol/@comment-143.81.103.35-20160122231221/@comment-125.237.6.217-20170522083033\nTalk:Sol/@comment-143.81.103.35-20160122231221/@comment-143.81.103.35-20160122231515\nTalk:Sol/@comment-143.81.103.35-20160122231221/@comment-79.198.108.239-20160406021203\nTalk:Sol/@comment-165.225.0.79-20180530164126\nTalk:Sol/@comment-165.225.0.79-20180530164126/@comment-90.200.46.38-20181113005704\nTalk:Sol/@comment-174.102.96.147-20150112052359\nTalk:Sol/@comment-174.102.96.147-20150112052359/@comment-184.57.55.31-20150401162126\nTalk:Sol/@comment-174.102.96.147-20150112052359/@comment-32871253-20171023155416\nTalk:Sol/@comment-174.102.96.147-20150112052359/@comment-37171230-20190128203417\nTalk:Sol/@comment-174.102.96.147-20150112052359/@comment-92.110.134.241-20180417203834\nTalk:Sol/@comment-24.100.136.1-20170124114153\nTalk:Sol/@comment-24.100.136.1-20170124114153/@comment-24.159.216.8-20170523172050\nTalk:Sol/@comment-26258373-20150810120028\nTalk:Sol/@comment-26258373-20150810120028/@comment-139.62.24.136-20151015211636\nTalk:Sol/@comment-26258373-20150810120028/@comment-146.200.85.59-20160315135928\nTalk:Sol/@comment-26258373-20150810120028/@comment-173.64.201.135-20151003073647\nTalk:Sol/@comment-26258373-20150810120028/@comment-26361572-20151122131722\nTalk:Sol/@comment-26258373-20150810120028/@comment-46400-20150909175917\nTalk:Sol/@comment-26258373-20150810120028/@comment-50.184.66.16-20151031212106\nTalk:Sol/@comment-26258373-20150810120028/@comment-68.83.116.126-20150823034500\nTalk:Sol/@comment-26262705-20161212025845\nTalk:Sol/@comment-26262705-20161212025845/@comment-125.237.6.217-20170522082711\nTalk:Sol/@comment-26262705-20161212025845/@comment-192.136.161.52-20161212041331\nTalk:Sol/@comment-26262705-20161212025845/@comment-24.71.229.161-20190827154237\nTalk:Sol/@comment-26262705-20161212025845/@comment-25450485-20170901154646\nTalk:Sol/@comment-26262705-20161212025845/@comment-26262705-20161213084050\nTalk:Sol/@comment-26262705-20161212025845/@comment-90.200.46.38-20181125150336\nTalk:Sol/@comment-27646870-20160406102513\nTalk:Sol/@comment-27646870-20160406102513/@comment-125.237.6.217-20170522082818\nTalk:Sol/@comment-27646870-20160406102513/@comment-192.136.172.78-20160406111710\nTalk:Sol/@comment-27646870-20160406102513/@comment-204.112.3.82-20160822032313\nTalk:Sol/@comment-27646870-20160406102513/@comment-24.159.216.8-20170523172225\nTalk:Sol/@comment-27646870-20160406102513/@comment-2607:FEA8:BD20:EBE:65BA:29BF:E7D1:E910-20170801153127\nTalk:Sol/@comment-28117108-20160402232846\nTalk:Sol/@comment-28117108-20160402232846/@comment-173.12.169.77-20170119001340\nTalk:Sol/@comment-28117108-20160402232846/@comment-2155082-20160402235137\nTalk:Sol/@comment-28117108-20160402232846/@comment-30928085-20170119023402\nTalk:Sol/@comment-43623494-20190914221526\nTalk:Sol/@comment-46060031-20200625212022\nTalk:Sol/@comment-71.228.151.147-20141219065551\nTalk:Sol/@comment-71.228.151.147-20141219065551/@comment-1541210-20151115155303\nTalk:Sol/@comment-71.228.151.147-20141219065551/@comment-212.200.132.81-20141219071154\nTalk:Sol/@comment-77.7.221.149-20160712004153\nTalk:Sol/@comment-77.7.221.149-20160712004153/@comment-5.103.207.71-20160717162945\nTalk:Sol/@comment-77.7.221.149-20160712004153/@comment-50.53.178.6-20161101195430\nTalk:Sol/@comment-77.7.221.149-20160712004153/@comment-99.254.2.135-20161113012446\nTalk:Sol/@comment-78.42.135.254-20150106172149\nTalk:Sol/@comment-78.42.135.254-20150106172149/@comment-4968814-20150106172353\nTalk:Sol/@comment-84.177.221.188-20150612161412\nTalk:Sol/@comment-84.177.221.188-20150612161412/@comment-151.188.137.230-20180102164651\nTalk:Sol/@comment-86.189.246.17-20170503172821\nTalk:Sol/@comment-86.189.246.17-20170503172821/@comment-77.4.127.210-20170508191540\nTalk:Sol/@comment-86.189.246.17-20170503172821/@comment-86.189.246.17-20170503172855\nTalk:Sol/@comment-86.189.246.17-20170503172821/@comment-90.200.46.38-20181125125122\nTalk:Sol/@comment-90.152.7.182-20150417140642\nTalk:Sol/@comment-90.152.7.182-20150417140642/@comment-125.237.6.217-20170522083314\nTalk:Sol/@comment-90.200.46.38-20181105160221\nTalk:Sol/@comment-92.155.176.2-20141223143339\nTalk:Sol/@comment-93.128.165.141-20150626172659\nTalk:Sol/@comment-BritishAdmiral-20160402232846/@comment-121.222.121.55-20161018221451\nTalk:Sol/Asteroid Belt/@comment-43623494-20190914221700\nTalk:Sol/Europa/@comment-1208701-20170621093549\nTalk:Sol/Mercury/@comment-207.161.12.173-20181005121437\nTalk:Sol/Mercury/@comment-207.161.12.173-20181005121437/@comment-30928085-20181113063354\nTalk:Sol/Mercury/@comment-207.161.12.173-20181005121437/@comment-90.200.46.38-20181113140031\nTalk:Sol/Rhea/@comment-44180665-20200617162239\nTalk:Sol/Sol/@comment-2003:6B:A19:9100:1120:CD83:734F:D8A6-20171214160230\nTalk:Sol/Sol/@comment-207.161.12.173-20181004223355\nTalk:Sol/Sol/@comment-207.161.12.173-20181004223355/@comment-73.223.225.250-20181229002227\nTalk:Sol/Sol/@comment-94.137.220.195-20150804163803\nTalk:Sol/Sol/@comment-94.137.220.195-20150804163803/@comment-27311754-20151227134255\nTalk:Sol/Sol/@comment-94.137.220.195-20150804163803/@comment-86.10.7.58-20151015171308\nTalk:Sol/Sol/@comment-94.137.220.195-20150804163803/@comment-90.200.46.38-20181111004038\nTalk:Sol/Triton/@comment-4563132-20171009230251\nTalk:Sol/Triton/@comment-4563132-20171009230251/@comment-91.181.77.172-20180326092919\nTalk:Sol/Triton/@comment-50.53.178.6-20161101193923\nTalk:Sol/Triton/@comment-50.53.178.6-20161101193923/@comment-151.188.137.230-20180102163959\nTalk:Sol/Triton/@comment-50.53.178.6-20161101193923/@comment-192.136.161.52-20161101212013\nTalk:Sol/Triton/@comment-50.53.178.6-20161101193923/@comment-95.91.76.222-20170923045641\nTalk:Sol/Triton/@comment-58.178.81.245-20181111080557\nTalk:Sol/Triton/@comment-90.30.200.207-20190520013211\nTalk:Sol/Triton/@comment-90.30.200.207-20190520013211/@comment-83.250.76.44-20191001133407\nTalk:Solid Mineral Sphere/@comment-45432550-20200409052940\nTalk:Solid Mineral Sphere/@comment-45775174-20200513034031\nTalk:Soontill Relics/@comment-104.228.224.138-20170310014130\nTalk:Soontill Relics/@comment-107.217.177.68-20170414082416\nTalk:Soontill Relics/@comment-109.240.24.155-20170322151124\nTalk:Soontill Relics/@comment-109.48.235.220-20170404201740\nTalk:Soontill Relics/@comment-112.206.201.14-20180706102216\nTalk:Soontill Relics/@comment-112.206.201.14-20180706102216/@comment-78.147.51.255-20191110012335\nTalk:Soontill Relics/@comment-115.70.83.138-20160901094317\nTalk:Soontill Relics/@comment-118.210.141.99-20170318153306\nTalk:Soontill Relics/@comment-121.147.94.156-20180117195014\nTalk:Soontill Relics/@comment-121.147.94.156-20180117195014/@comment-2600:8805:1606:5500:396D:B60B:F4C9:D274-20180128003201\nTalk:Soontill Relics/@comment-122.58.55.245-20160828005303\nTalk:Soontill Relics/@comment-1339579-20171014010756\nTalk:Soontill Relics/@comment-141.0.15.34-20170115023637\nTalk:Soontill Relics/@comment-151.25.131.208-20171004234742\nTalk:Soontill Relics/@comment-172.73.222.204-20161114021827\nTalk:Soontill Relics/@comment-173.178.23.110-20171030195414\nTalk:Soontill Relics/@comment-173.178.23.110-20171030195414/@comment-174.96.14.169-20171115050508\nTalk:Soontill Relics/@comment-173.178.23.110-20171030195414/@comment-2601:204:C004:CFD0:C2:6F0:C52D:B46E-20171116014822\nTalk:Soontill Relics/@comment-173.213.212.213-20170801010245\nTalk:Soontill Relics/@comment-176.11.104.134-20170921175640\nTalk:Soontill Relics/@comment-176.241.72.203-20190726162637\nTalk:Soontill Relics/@comment-177.50.136.44-20190124174058\nTalk:Soontill Relics/@comment-178.83.12.151-20160605103859\nTalk:Soontill Relics/@comment-180.150.11.97-20171013235313\nTalk:Soontill Relics/@comment-183.88.190.239-20160914084341\nTalk:Soontill Relics/@comment-184.152.63.26-20160913135815\nTalk:Soontill Relics/@comment-188.126.161.52-20180302025735\nTalk:Soontill Relics/@comment-188.126.161.52-20180302031417\nTalk:Soontill Relics/@comment-188.195.35.116-20160911154959\nTalk:Soontill Relics/@comment-189.163.115.183-20160930195409\nTalk:Soontill Relics/@comment-190.215.67.197-20170315210544\nTalk:Soontill Relics/@comment-193.93.94.59-20170924125409\nTalk:Soontill Relics/@comment-2.123.24.85-20160831010542\nTalk:Soontill Relics/@comment-2003:CC:ABC1:5100:88FC:3148:47B0:9287-20171016162837\nTalk:Soontill Relics/@comment-201.81.241.117-20161004043828\nTalk:Soontill Relics/@comment-205.204.21.78-20160831055401\nTalk:Soontill Relics/@comment-209.107.210.64-20170823223832\nTalk:Soontill Relics/@comment-217.51.8.152-20161005000417\nTalk:Soontill Relics/@comment-24.125.101.86-20170114004029\nTalk:Soontill Relics/@comment-24.251.53.120-20171014182121\nTalk:Soontill Relics/@comment-24.49.208.114-20160923184144\nTalk:Soontill Relics/@comment-2600:8805:1606:5500:396D:B60B:F4C9:D274-20180128003015\nTalk:Soontill Relics/@comment-2600:8805:1606:5500:396D:B60B:F4C9:D274-20180128003015/@comment-205.153.130.30-20180130160545\nTalk:Soontill Relics/@comment-2600:8805:1606:5500:396D:B60B:F4C9:D274-20180128003015/@comment-34494755-20180128003447\nTalk:Soontill Relics/@comment-2601:484:8100:5B7C:2D6B:692A:E806:C447-20171011072916\nTalk:Soontill Relics/@comment-2601:4A:C400:5D50:FCE4:1F4B:292E:32FA-20170817144416\nTalk:Soontill Relics/@comment-2601:544:4280:3387:5CF:A2BD:4383:EE51-20171027050249\nTalk:Soontill Relics/@comment-2601:5C0:C000:4271:FD25:4590:FF0F:C7D1-20171012023926\nTalk:Soontill Relics/@comment-26113847-20160627042052\nTalk:Soontill Relics/@comment-26113847-20160627050252\nTalk:Soontill Relics/@comment-26113847-20160627050252/@comment-184.100.187.9-20160813175600\nTalk:Soontill Relics/@comment-26113847-20160627050252/@comment-68.231.64.187-20170303230701\nTalk:Soontill Relics/@comment-26113847-20160627050252/@comment-70.171.48.59-20160713232028\nTalk:Soontill Relics/@comment-29717676-20160821220518\nTalk:Soontill Relics/@comment-2A02:810D:14C0:1788:482A:9288:EE32:640D-20171009200621\nTalk:Soontill Relics/@comment-2A02:908:191:5E20:D0E2:E4EF:4E6:7638-20170911133114\nTalk:Soontill Relics/@comment-31.11.129.84-20170306174329\nTalk:Soontill Relics/@comment-37811603-20190218192922\nTalk:Soontill Relics/@comment-37811603-20190218192922/@comment-192.136.170.98-20190218202422\nTalk:Soontill Relics/@comment-39537576-20190521025944\nTalk:Soontill Relics/@comment-39537576-20190521025944/@comment-176.241.72.203-20190726162251\nTalk:Soontill Relics/@comment-47.25.45.89-20181008205502\nTalk:Soontill Relics/@comment-47.25.45.89-20181008205502/@comment-46511109-20200801200322\nTalk:Soontill Relics/@comment-50.38.37.16-20170330233558\nTalk:Soontill Relics/@comment-50.38.37.16-20170330233558/@comment-50.150.167.77-20170331040422\nTalk:Soontill Relics/@comment-50.68.163.227-20170413161759\nTalk:Soontill Relics/@comment-64.56.20.60-20170502182023\nTalk:Soontill Relics/@comment-65.242.55.2-20160922213304\nTalk:Soontill Relics/@comment-65.30.144.78-20171021001814\nTalk:Soontill Relics/@comment-68.117.244.13-20160601172515\nTalk:Soontill Relics/@comment-68.151.85.35-20171004042708\nTalk:Soontill Relics/@comment-68.2.97.86-20170418064549\nTalk:Soontill Relics/@comment-68.4.190.124-20170518045842\nTalk:Soontill Relics/@comment-68.4.190.124-20170518045842/@comment-71.47.3.48-20170525003549\nTalk:Soontill Relics/@comment-68.4.190.124-20170518045842/@comment-71.47.3.48-20170525004139\nTalk:Soontill Relics/@comment-68.8.221.191-20171108032849\nTalk:Soontill Relics/@comment-69.14.53.150-20160823032519\nTalk:Soontill Relics/@comment-71.67.178.224-20171019223212\nTalk:Soontill Relics/@comment-72.141.246.18-20170512023107\nTalk:Soontill Relics/@comment-72.208.168.109-20161230024247\nTalk:Soontill Relics/@comment-72.234.56.55-20170924011631\nTalk:Soontill Relics/@comment-73.160.132.64-20170829020014\nTalk:Soontill Relics/@comment-75.141.149.197-20170301235844\nTalk:Soontill Relics/@comment-75.141.149.197-20170301235844/@comment-50.4.144.82-20170303112152\nTalk:Soontill Relics/@comment-75.141.231.12-20170417175909\nTalk:Soontill Relics/@comment-77.53.125.239-20170501175716\nTalk:Soontill Relics/@comment-78.147.51.255-20191110012736\nTalk:Soontill Relics/@comment-78.17.57.178-20170828161509\nTalk:Soontill Relics/@comment-79.136.64.95-20180101201918\nTalk:Soontill Relics/@comment-79.136.64.95-20180101201918/@comment-46511109-20200801200340\nTalk:Soontill Relics/@comment-79.136.64.95-20180101201918/@comment-78.147.51.255-20191110012502\nTalk:Soontill Relics/@comment-79.213.216.193-20170827163615\nTalk:Soontill Relics/@comment-80.188.206.28-20171008153845\nTalk:Soontill Relics/@comment-81.101.244.165-20170414185808\nTalk:Soontill Relics/@comment-81.106.30.12-20171020194339\nTalk:Soontill Relics/@comment-82.43.173.210-20170731190811\nTalk:Soontill Relics/@comment-82.43.173.210-20170731190811/@comment-82.43.173.210-20170731190946\nTalk:Soontill Relics/@comment-83.254.244.172-20170416161305\nTalk:Soontill Relics/@comment-85.64.48.41-20171010202418\nTalk:Soontill Relics/@comment-86.142.146.174-20170410132632\nTalk:Soontill Relics/@comment-86.142.146.174-20170410132632/@comment-31.11.130.218-20170419182400\nTalk:Soontill Relics/@comment-86.149.147.109-20170325143521\nTalk:Soontill Relics/@comment-87.151.29.113-20170430131355\nTalk:Soontill Relics/@comment-87.158.28.227-20170430091414\nTalk:Soontill Relics/@comment-88.224.215.68-20171110160318\nTalk:Soontill Relics/@comment-89.73.55.19-20160531214801\nTalk:Soontill Relics/@comment-91.140.113.105-20170920151510\nTalk:Soontill Relics/@comment-91.152.181.45-20171003081019\nTalk:Soontill Relics/@comment-91.180.98.181-20170121222644\nTalk:Soontill Relics/@comment-91.93.168.66-20171013103451\nTalk:Soontill Relics/@comment-91.93.95.95-20170815205550\nTalk:Soontill Relics/@comment-95.147.153.138-20170830010423\nTalk:Soontill Relics/@comment-95.160.152.196-20170311125242\nTalk:Soontill Relics/@comment-95.33.120.203-20160608214631\nTalk:Soontill Relics/@comment-95.91.228.159-20160527182239\nTalk:Soontill Relics/@comment-98.246.37.142-20170213041846\nTalk:Soontill Relics/@comment-98.246.37.142-20170213041846/@comment-50.150.167.77-20170331040532\nTalk:Soontill Relics/@comment-98.246.37.142-20170213041846/@comment-70.77.56.28-20170213173000\nTalk:Soontill Relics/@comment-98.246.37.142-20170213041846/@comment-92.247.124.114-20170213122807\nTalk:Sothis/@comment-82.219.52.13-20180427124930\nTalk:Sothis Crystalline Gold/@comment-31.49.60.193-20160920140754\nTalk:Sothis Crystalline Gold/@comment-77.50.26.143-20160930212942\nTalk:Sothis Crystalline Gold/@comment-86.52.45.54-20160121141252\nTalk:Sothis Crystalline Gold/@comment-86.52.45.54-20160121141252/@comment-92.52.35.205-20160713151711\nTalk:Sothis Crystalline Gold/@comment-89.101.53.58-20151017042153\nTalk:Sothis Crystalline Gold/@comment-95.91.228.79-20160707171057\nTalk:Sound/@comment-33493166-20190407083549\nTalk:Sound/@comment-33493166-20190407083549/@comment-192.136.170.30-20190407141730\nTalk:Sound/@comment-33493166-20190407083549/@comment-2001:569:7B65:B500:71DA:F30C:6466:52E7-20190905175612\nTalk:Sound/@comment-33622550-20171222134039\nTalk:Source 2/@comment-77.102.250.232-20170517085621\nTalk:Source 2/@comment-77.102.250.232-20170517085621/@comment-61.6.69.152-20171124165904\nTalk:Space Legs/@comment-166.137.136.128-20171210150722\nTalk:Space Legs/@comment-167.187.101.178-20181118060621\nTalk:Space Legs/@comment-167.187.101.178-20181118060621/@comment-167.187.101.178-20181118060700\nTalk:Space Legs/@comment-181.143.37.186-20181126141824\nTalk:Space Legs/@comment-198.245.109.232-20181219014906\nTalk:Space Legs/@comment-2605:6000:F212:3A00:811E:557C:8709:7AA7-20181004131239\nTalk:Space Legs/@comment-2605:6000:F212:3A00:811E:557C:8709:7AA7-20181004131239/@comment-212.10.111.72-20181015175447\nTalk:Space Legs/@comment-2A00:23C4:DF22:F200:793E:337:576D:5530-20190105055224\nTalk:Space Legs/@comment-2A00:23C4:DF22:F200:793E:337:576D:5530-20190105055224/@comment-212.10.111.72-20190107015412\nTalk:Space Legs/@comment-2A00:23C4:DF22:F200:793E:337:576D:5530-20190105055224/@comment-38085325-20190107121222\nTalk:Space Legs/@comment-2A01:4B00:8869:C500:30BA:F02E:1D85:E30F-20181219201234\nTalk:Space Legs/@comment-2A01:4B00:8869:C500:30BA:F02E:1D85:E30F-20181219201234/@comment-192.136.170.98-20181219211051\nTalk:Space Legs/@comment-2A01:4B00:8869:C500:30BA:F02E:1D85:E30F-20181219201234/@comment-212.10.111.72-20190107005142\nTalk:Space Legs/@comment-2A01:4B00:8869:C500:30BA:F02E:1D85:E30F-20181219201234/@comment-30928085-20181219201851\nTalk:Space Legs/@comment-2A02:8108:45C0:BEA:88E5:1D12:388C:C91-20171202090804\nTalk:Space Legs/@comment-30643772-20180920182836\nTalk:Space Legs/@comment-30643772-20191202045616\nTalk:Space Legs/@comment-30643772-20191202045616/@comment-30928085-20191202074648\nTalk:Space Legs/@comment-30643772-20191202204926\nTalk:Space Legs/@comment-38207462-20200530223544\nTalk:Space Legs/@comment-43623494-20190926220234\nTalk:Space Legs/@comment-45267608-20200321113416\nTalk:Space Legs/@comment-77.111.244.60-20180729100116\nTalk:Space Legs/@comment-77.111.244.60-20180729100625\nTalk:Space Legs/@comment-77.111.244.60-20180729100625/@comment-91.253.162.127-20180905144214\nTalk:Space Legs/@comment-78.12.229.102-20181021015841\nTalk:Space Legs/@comment-78.12.229.102-20181021015841/@comment-75.135.92.125-20190203125557\nTalk:Space Legs/@comment-78.144.61.32-20190925160720\nTalk:Space Legs/@comment-84.74.192.41-20170910131317\nTalk:Space Legs/@comment-84.74.192.41-20170910131317/@comment-163.232.200.41-20171017045635\nTalk:Specialised Legacy Firmware/@comment-2606:6000:D705:2600:2008:1A98:3044:F627-20180407163704\nTalk:Specialised Legacy Firmware/@comment-2606:6000:D705:2600:2008:1A98:3044:F627-20180407163704/@comment-79.64.82.104-20180817132615\nTalk:Specialised Legacy Firmware/@comment-2A00:23C4:869D:C600:7489:99A3:C55B:5D05-20181023131129\nTalk:Specialised Legacy Firmware/@comment-2A00:23C4:869D:C600:7489:99A3:C55B:5D05-20181023131129/@comment-192.136.170.46-20181023141722\nTalk:Specialised Shield Cell Bank/@comment-109.41.66.228-20190615143736\nTalk:Specialised Shield Cell Bank/@comment-35650861-20181226185918\nTalk:Species/@comment-185.9.28.168-20180116112918\nTalk:Species/@comment-2A02:C7D:A8EB:8700:2167:56B7:8A0E:4F62-20180109194944\nTalk:Species/@comment-2A02:C7D:A8EB:8700:2167:56B7:8A0E:4F62-20180109194944/@comment-34004391-20180123074446\nTalk:Species/@comment-34004391-20180123080013\nTalk:Species/@comment-45382617-20200403215436\nTalk:Species/@comment-9627550-20170825225257\nTalk:Species/@comment-9627550-20170825225257/@comment-2601:280:C200:A3B2:883F:37B:9057:6914-20180208211837\nTalk:Species/@comment-9627550-20170825225257/@comment-30928085-20171023193115\nTalk:Species/@comment-9627550-20170825225257/@comment-6296424-20180208211953\nTalk:Speeding/@comment-26799362-20150804124248\nTalk:Speeding/@comment-26950991-20150902024002\nTalk:Speeding/@comment-90.221.7.222-20150710233212\nTalk:Squadrons/@comment-178.191.225.135-20200129111011\nTalk:Squadrons/@comment-24.182.179.146-20171231105618\nTalk:Squadrons/@comment-24.182.179.146-20171231105618/@comment-162.78.70.154-20180119184342\nTalk:Squadrons/@comment-24.182.179.146-20171231105618/@comment-173.50.100.83-20181215000922\nTalk:Squadrons/@comment-24.182.179.146-20171231105618/@comment-176.241.72.203-20190709205918\nTalk:Squadrons/@comment-24.182.179.146-20171231105618/@comment-4986699-20180315051510\nTalk:Squadrons/@comment-24.182.179.146-20171231105618/@comment-94.63.222.141-20180224052051\nTalk:Squadrons/@comment-71.42.139.10-20181214142229\nTalk:Squadrons/@comment-84.155.144.173-20200118171621\nTalk:Squadrons/@comment-89.236.142.53-20181215230158\nTalk:Squadrons/@comment-89.236.142.53-20181215230158/@comment-192.136.170.98-20181216041108\nTalk:Squadrons/@comment-89.236.142.53-20181215230158/@comment-38411605-20190203224949\nTalk:Squadrons/@comment-89.91.247.20-20180730115029\nTalk:Squadrons/@comment-90.227.218.252-20200128041548\nTalk:Squadrons/@comment-91.140.36.240-20180817100020\nTalk:Standard Docking Computer/@comment-104.158.16.87-20150703091447\nTalk:Standard Docking Computer/@comment-104.158.16.87-20150703091447/@comment-217.196.75.67-20150901134709\nTalk:Standard Docking Computer/@comment-104.53.24.68-20140805003748\nTalk:Standard Docking Computer/@comment-104.53.24.68-20140805003748/@comment-73.176.171.199-20140810164926\nTalk:Standard Docking Computer/@comment-108.185.240.146-20150616044254\nTalk:Standard Docking Computer/@comment-108.185.240.146-20150616044254/@comment-86.1.123.240-20150829010700\nTalk:Standard Docking Computer/@comment-108.242.216.67-20150808071309\nTalk:Standard Docking Computer/@comment-108.242.216.67-20150808071309/@comment-109.246.191.222-20150811094144\nTalk:Standard Docking Computer/@comment-108.242.216.67-20150808071309/@comment-73.1.55.15-20150820104124\nTalk:Standard Docking Computer/@comment-117.120.16.134-20150929215959\nTalk:Standard Docking Computer/@comment-1181012-20150608225130\nTalk:Standard Docking Computer/@comment-156.3.54.203-20150529164202\nTalk:Standard Docking Computer/@comment-156.3.54.203-20150903164830\nTalk:Standard Docking Computer/@comment-156.3.54.205-20150921172856\nTalk:Standard Docking Computer/@comment-173.189.159.193-20150605055507\nTalk:Standard Docking Computer/@comment-1784834-20191116023113\nTalk:Standard Docking Computer/@comment-181.163.83.163-20150426190918\nTalk:Standard Docking Computer/@comment-186.151.61.166-20150129182958\nTalk:Standard Docking Computer/@comment-2.127.116.54-20170201032159\nTalk:Standard Docking Computer/@comment-2.127.116.54-20170201032159/@comment-26005414-20170201235816\nTalk:Standard Docking Computer/@comment-2.247.161.111-20150809162558\nTalk:Standard Docking Computer/@comment-2.247.161.111-20150809162558/@comment-156.3.54.205-20150921173002\nTalk:Standard Docking Computer/@comment-2.247.161.111-20150809162558/@comment-26391992-20150921154526\nTalk:Standard Docking Computer/@comment-2.247.161.111-20150809162558/@comment-67.168.182.173-20151002071003\nTalk:Standard Docking Computer/@comment-208.88.170.206-20150711164050\nTalk:Standard Docking Computer/@comment-210.55.18.198-20150903185748\nTalk:Standard Docking Computer/@comment-210.55.18.198-20150903185748/@comment-156.3.54.205-20150921172914\nTalk:Standard Docking Computer/@comment-210.55.18.198-20150903185748/@comment-96.2.37.60-20150917183905\nTalk:Standard Docking Computer/@comment-25298528-20140813025353\nTalk:Standard Docking Computer/@comment-25298528-20140813025353/@comment-25298528-20140817022935\nTalk:Standard Docking Computer/@comment-25298528-20140813025353/@comment-84.13.108.51-20150115122937\nTalk:Standard Docking Computer/@comment-25298528-20140813025353/@comment-92.40.248.33-20150121145758\nTalk:Standard Docking Computer/@comment-26005414-20150114054812\nTalk:Standard Docking Computer/@comment-26005414-20150114054812/@comment-12138097-20150114081108\nTalk:Standard Docking Computer/@comment-2601:246:C700:7800:24B2:FDB9:3336:BA3B-20180212032439\nTalk:Standard Docking Computer/@comment-2601:246:C700:7800:24B2:FDB9:3336:BA3B-20180212032439/@comment-90.200.46.38-20181105153605\nTalk:Standard Docking Computer/@comment-26391992-20151201065505\nTalk:Standard Docking Computer/@comment-26391992-20151201065505/@comment-26391992-20151202111923\nTalk:Standard Docking Computer/@comment-26515877-20150620193141\nTalk:Standard Docking Computer/@comment-26515877-20150620193444\nTalk:Standard Docking Computer/@comment-26515877-20150620193444/@comment-26537865-20150807205927\nTalk:Standard Docking Computer/@comment-26537865-20150807205349\nTalk:Standard Docking Computer/@comment-26537865-20150807205349/@comment-108.197.137.192-20151126141312\nTalk:Standard Docking Computer/@comment-26537865-20150807205349/@comment-26227424-20160622172302\nTalk:Standard Docking Computer/@comment-27115814-20151102214258\nTalk:Standard Docking Computer/@comment-27115814-20151102214258/@comment-5959508-20151102230656\nTalk:Standard Docking Computer/@comment-27115814-20151202174247\nTalk:Standard Docking Computer/@comment-28839188-20170216233922\nTalk:Standard Docking Computer/@comment-31.54.142.156-20150922151111\nTalk:Standard Docking Computer/@comment-47.195.240.49-20191123041658\nTalk:Standard Docking Computer/@comment-47.195.240.49-20191123041658/@comment-30643772-20191123054646\nTalk:Standard Docking Computer/@comment-4978876-20150628092738\nTalk:Standard Docking Computer/@comment-4978876-20150628092738/@comment-68.113.17.78-20150905225402\nTalk:Standard Docking Computer/@comment-4978876-20150720100536\nTalk:Standard Docking Computer/@comment-4978876-20150720100536/@comment-26515877-20150826160204\nTalk:Standard Docking Computer/@comment-4978876-20150720100536/@comment-75.128.169.75-20150826153557\nTalk:Standard Docking Computer/@comment-50.137.0.220-20150702113118\nTalk:Standard Docking Computer/@comment-5959508-20151014173533\nTalk:Standard Docking Computer/@comment-5959508-20151014173533/@comment-27115814-20151102163025\nTalk:Standard Docking Computer/@comment-67.171.51.23-20150120075725\nTalk:Standard Docking Computer/@comment-68.238.154.135-20150518001217\nTalk:Standard Docking Computer/@comment-68.238.154.135-20150518001217/@comment-156.3.54.202-20150527161444\nTalk:Standard Docking Computer/@comment-68.238.154.135-20150518001217/@comment-156.3.54.203-20150520152642\nTalk:Standard Docking Computer/@comment-68.238.154.135-20150518001217/@comment-156.3.54.203-20150526213218\nTalk:Standard Docking Computer/@comment-68.238.154.135-20150518001217/@comment-24.239.249.103-20150720073645\nTalk:Standard Docking Computer/@comment-68.238.154.135-20150518001217/@comment-72.241.143.238-20150608060435\nTalk:Standard Docking Computer/@comment-68.238.154.135-20150518001217/@comment-73.1.55.15-20150820104444\nTalk:Standard Docking Computer/@comment-71.179.9.18-20150111122948\nTalk:Standard Docking Computer/@comment-71.194.79.82-20150701184918\nTalk:Standard Docking Computer/@comment-73.125.87.97-20180116192146\nTalk:Standard Docking Computer/@comment-73.125.87.97-20180116192146/@comment-192.136.161.33-20180116193858\nTalk:Standard Docking Computer/@comment-73.13.228.251-20170206152232\nTalk:Standard Docking Computer/@comment-74.134.243.160-20151216214736\nTalk:Standard Docking Computer/@comment-74.134.243.160-20151216214736/@comment-207.166.7.215-20160104192305\nTalk:Standard Docking Computer/@comment-74.70.124.235-20170704065838\nTalk:Standard Docking Computer/@comment-81.101.16.157-20140808184806\nTalk:Standard Docking Computer/@comment-81.101.16.157-20140808184806/@comment-216.98.56.41-20140809195345\nTalk:Standard Docking Computer/@comment-81.101.16.157-20140808184806/@comment-25298528-20140817025816\nTalk:Standard Docking Computer/@comment-82.12.186.71-20140807211810\nTalk:Standard Docking Computer/@comment-82.12.186.71-20140807211810/@comment-25295555-20140817030117\nTalk:Standard Docking Computer/@comment-82.12.186.71-20140807211810/@comment-6033893-20140808202508\nTalk:Standard Docking Computer/@comment-82.12.186.71-20140807211810/@comment-76.28.177.25-20140820203951\nTalk:Standard Docking Computer/@comment-82.47.191.91-20150106125432\nTalk:Standard Docking Computer/@comment-82.47.191.91-20150106125432/@comment-94.7.180.150-20150417190617\nTalk:Standard Docking Computer/@comment-8256051-20150120033942\nTalk:Standard Docking Computer/@comment-8256051-20150120033942/@comment-8256051-20150121010326\nTalk:Standard Docking Computer/@comment-8256051-20150120033942/@comment-8256051-20150205061454\nTalk:Standard Docking Computer/@comment-83.248.59.175-20150616022119\nTalk:Standard Docking Computer/@comment-83.248.59.175-20150616022119/@comment-1181012-20150616193649\nTalk:Standard Docking Computer/@comment-83.248.59.175-20150616022119/@comment-208.88.170.206-20150711164749\nTalk:Standard Docking Computer/@comment-83.248.59.175-20150616022119/@comment-83.248.59.175-20150617030838\nTalk:Standard Docking Computer/@comment-84.13.102.249-20150120202158\nTalk:Standard Docking Computer/@comment-84.13.102.249-20150120202158/@comment-1250011-20150121134337\nTalk:Standard Docking Computer/@comment-85.150.31.102-20160607202430\nTalk:Standard Docking Computer/@comment-85.150.31.102-20160607202430/@comment-26227424-20160622171824\nTalk:Standard Docking Computer/@comment-85.224.157.125-20150630145645\nTalk:Standard Docking Computer/@comment-85.224.157.125-20150630145645/@comment-26537865-20150807205739\nTalk:Standard Docking Computer/@comment-85.30.180.131-20141230222736\nTalk:Standard Docking Computer/@comment-85.30.180.131-20141230222736/@comment-125.237.3.1-20161013201816\nTalk:Standard Docking Computer/@comment-85.30.180.131-20141230222736/@comment-72.197.152.102-20150106011213\nTalk:Standard Docking Computer/@comment-87.253.63.54-20141231163533\nTalk:Standard Docking Computer/@comment-88.207.220.195-20150628192201\nTalk:Standard Docking Computer/@comment-88.207.220.195-20150628192201/@comment-26537865-20150807205828\nTalk:Standard Docking Computer/@comment-89.12.48.215-20150503105832\nTalk:Standard Docking Computer/@comment-89.12.48.215-20150503105832/@comment-194.9.234.11-20150513101527\nTalk:Standard Docking Computer/@comment-92.40.248.33-20150121143657\nTalk:Standard Docking Computer/@comment-92.40.248.33-20150121143951\nTalk:Standard Docking Computer/@comment-92.40.248.33-20150121143951/@comment-1250011-20150121154658\nTalk:Standard Docking Computer/@comment-92.40.248.33-20150121143951/@comment-186.32.181.205-20150223210215\nTalk:Standard Docking Computer/@comment-92.40.248.33-20150121143951/@comment-8256051-20150122015127\nTalk:Standard Docking Computer/@comment-94.254.0.87-20150607123019\nTalk:Standard Docking Computer/@comment-96.2.37.60-20150917183817\nTalk:Standard Docking Computer/@comment-96.2.37.60-20150917183817/@comment-156.3.54.205-20150921172731\nTalk:Standard Docking Computer/@comment-96.2.37.60-20150917183817/@comment-72.241.143.238-20151009003012\nTalk:Standard Docking Computer/@comment-98.125.220.72-20150813065041\nTalk:Standard Docking Computer/@comment-99.98.233.25-20151012005618\nTalk:Standard Docking Computer/@comment-99.98.233.25-20151012005618/@comment-156.3.54.206-20151013172859\nTalk:Standard Docking Computer/@comment-99.98.233.25-20151012005618/@comment-26599825-20151012094032\nTalk:Star Cluster/@comment-25981159-20170220080444\nTalk:Star Cluster/@comment-25981159-20170220080444/@comment-31178037-20170220090321\nTalk:Star Systems/@comment-134.191.220.71-20140829115304\nTalk:Star Systems/@comment-138.226.68.17-20141212205510\nTalk:Star Systems/@comment-176.58.179.80-20141022170253\nTalk:Star Systems/@comment-82.31.177.188-20141226171957\nTalk:Star Systems/@comment-82.31.177.188-20141226171957/@comment-82.31.177.188-20141226172717\nTalk:Star Systems/@comment-82.31.177.188-20141226172936\nTalk:Star Systems/@comment-83.145.205.176-20140908074940\nTalk:Star Systems/@comment-86.172.221.125-20140813182717\nTalk:Star Systems/@comment-86.172.221.125-20140813182717/@comment-6033893-20140813195710\nTalk:Star Systems/@comment-92.236.213.128-20140826065129\nTalk:Starport/@comment-120.151.41.100-20150517070728\nTalk:Starport/@comment-120.151.41.100-20150517070728/@comment-240E:390:EC3:5A40:398D:C4CE:81C9:3CCA-20190817140131\nTalk:Starport/@comment-2.28.211.214-20171213195440\nTalk:Starport/@comment-2.28.211.214-20171213195440/@comment-25450485-20200413201451\nTalk:Starport/@comment-2.28.211.214-20171213195440/@comment-31189012-20180405215750\nTalk:Starport/@comment-2.28.211.214-20171213195440/@comment-34004391-20171220202729\nTalk:Starport/@comment-24.161.66.185-20151027153455\nTalk:Starport/@comment-2601:249:301:DE20:70C5:9DD1:93F:2B0-20170917160631\nTalk:Starport/@comment-31189012-20180405215923\nTalk:Starport/@comment-37421170-20200813093034\nTalk:Starport/@comment-81.11.221.167-20150511000742\nTalk:Starport/@comment-82.1.69.183-20170725072906\nTalk:Starport/@comment-83.240.126.50-20150601021311\nTalk:Stars/@comment-101.186.0.140-20150115054554\nTalk:Stars/@comment-108.16.36.43-20170316181608\nTalk:Stars/@comment-108.16.36.43-20170316181608/@comment-31178037-20170326114314\nTalk:Stars/@comment-108.242.216.67-20150922033808\nTalk:Stars/@comment-108.242.216.67-20150922033808/@comment-191.250.7.161-20160604130309\nTalk:Stars/@comment-108.242.216.67-20150922033808/@comment-26959616-20151003020750\nTalk:Stars/@comment-108.242.216.67-20150922033808/@comment-90.200.46.38-20181105161205\nTalk:Stars/@comment-122.58.239.177-20161120085118\nTalk:Stars/@comment-122.58.239.177-20161120085118/@comment-109.158.152.97-20161218073445\nTalk:Stars/@comment-122.58.239.177-20161120085118/@comment-2.29.101.214-20161120155018\nTalk:Stars/@comment-125.237.5.238-20170710094016\nTalk:Stars/@comment-125.237.5.238-20170710094016/@comment-93.245.59.79-20170717123003\nTalk:Stars/@comment-205.197.219.34-20150112201629\nTalk:Stars/@comment-205.197.219.34-20150112201629/@comment-216.15.25.248-20150115125941\nTalk:Stars/@comment-205.197.219.34-20150112201629/@comment-24360696-20150114202707\nTalk:Stars/@comment-216.15.25.248-20150115122516\nTalk:Stars/@comment-216.15.25.248-20150115122516/@comment-216.15.25.248-20150115125712\nTalk:Stars/@comment-216.15.25.248-20150115122516/@comment-216.15.25.248-20150115131920\nTalk:Stars/@comment-216.15.25.248-20150115133350\nTalk:Stars/@comment-216.15.25.248-20150115133350/@comment-216.15.25.248-20150115141405\nTalk:Stars/@comment-216.15.25.248-20150115234529\nTalk:Stars/@comment-216.15.25.248-20150115234529/@comment-216.15.25.248-20150115235955\nTalk:Stars/@comment-216.15.25.248-20150115234529/@comment-216.15.25.248-20150116001654\nTalk:Stars/@comment-2182702-20190730024024\nTalk:Stars/@comment-2182702-20190730024024/@comment-2003:DA:CF0B:9800:CD09:CD4B:C4CA:C769-20191113163447\nTalk:Stars/@comment-24360696-20150101053423\nTalk:Stars/@comment-24360696-20150101053423/@comment-128.176.12.211-20150108100039\nTalk:Stars/@comment-24360696-20150101053423/@comment-24360696-20150101054727\nTalk:Stars/@comment-24360696-20150101053423/@comment-24360696-20150102142135\nTalk:Stars/@comment-24360696-20150101053423/@comment-82.83.144.80-20150101124742\nTalk:Stars/@comment-24360696-20150101053423/@comment-85.168.93.235-20150208004229\nTalk:Stars/@comment-24360696-20150103171723\nTalk:Stars/@comment-24360696-20150929164152\nTalk:Stars/@comment-24360696-20150929164152/@comment-84.3.175.207-20170304211524\nTalk:Stars/@comment-25250354-20151121233538\nTalk:Stars/@comment-25250354-20151121233538/@comment-50.163.90.120-20161014160128\nTalk:Stars/@comment-25250354-20151121233538/@comment-62.159.185.194-20170208122414\nTalk:Stars/@comment-25250354-20151121233538/@comment-72.64.224.77-20160105041659\nTalk:Stars/@comment-25411947-20150116001017\nTalk:Stars/@comment-25411947-20150116001017/@comment-12138097-20150116002037\nTalk:Stars/@comment-25411947-20150116003003\nTalk:Stars/@comment-25411947-20150116003003/@comment-216.15.25.248-20150116005106\nTalk:Stars/@comment-25983914-20150107235954\nTalk:Stars/@comment-25983914-20150107235954/@comment-24360696-20150108000813\nTalk:Stars/@comment-25983914-20150107235954/@comment-24360696-20150108003028\nTalk:Stars/@comment-25983914-20150107235954/@comment-24360696-20150108024236\nTalk:Stars/@comment-25983914-20150107235954/@comment-25983914-20150108001645\nTalk:Stars/@comment-25983914-20150107235954/@comment-25983914-20150108010827\nTalk:Stars/@comment-25983914-20150107235954/@comment-25983914-20150108100126\nTalk:Stars/@comment-26014491-20160209172007\nTalk:Stars/@comment-26014491-20160209172007/@comment-26014491-20160209172139\nTalk:Stars/@comment-26014491-20160209172007/@comment-31178037-20170129092358\nTalk:Stars/@comment-26032696-20150122143331\nTalk:Stars/@comment-26032696-20150122143331/@comment-24360696-20150422113428\nTalk:Stars/@comment-26032696-20150122143331/@comment-26000333-20150126225306\nTalk:Stars/@comment-26032696-20150122143331/@comment-26032696-20150122144937\nTalk:Stars/@comment-26032696-20150122143331/@comment-26032696-20150123180951\nTalk:Stars/@comment-26032696-20150122143331/@comment-93.128.142.221-20150604040908\nTalk:Stars/@comment-26066213-20150201204540\nTalk:Stars/@comment-26066213-20150201204540/@comment-24360696-20150422114053\nTalk:Stars/@comment-26066213-20150201204540/@comment-76.20.136.41-20150219040026\nTalk:Stars/@comment-26088432-20150208103113\nTalk:Stars/@comment-26088432-20150208103113/@comment-26375871-20150510070905\nTalk:Stars/@comment-26088432-20150208103113/@comment-93.135.128.89-20150619211340\nTalk:Stars/@comment-26198498-20150318003252\nTalk:Stars/@comment-26198498-20160604174649\nTalk:Stars/@comment-26306474-20150424004959\nTalk:Stars/@comment-26306474-20150424004959/@comment-26198498-20150424053816\nTalk:Stars/@comment-26306474-20150424004959/@comment-26198498-20150424234352\nTalk:Stars/@comment-26306474-20150424004959/@comment-26306474-20150424103957\nTalk:Stars/@comment-26306474-20150424004959/@comment-26375871-20150510075140\nTalk:Stars/@comment-26306474-20150424004959/@comment-79.183.176.214-20151125230049\nTalk:Stars/@comment-26306474-20150426142445\nTalk:Stars/@comment-26306474-20150426142445/@comment-24360696-20160901013936\nTalk:Stars/@comment-26344269-20150425173818\nTalk:Stars/@comment-26344269-20150425173818/@comment-24.228.248.215-20170129090936\nTalk:Stars/@comment-26375871-20150510061928\nTalk:Stars/@comment-26375871-20150510061928/@comment-26375871-20150510163527\nTalk:Stars/@comment-26375871-20150510061928/@comment-45.24.32.239-20150717032032\nTalk:Stars/@comment-26375871-20150510061928/@comment-93.134.53.86-20151108013619\nTalk:Stars/@comment-26375871-20150511021718\nTalk:Stars/@comment-26375871-20150511021718/@comment-26375871-20150511033549\nTalk:Stars/@comment-26375871-20150511021718/@comment-26375871-20150511035728\nTalk:Stars/@comment-26375871-20150511021718/@comment-26375871-20150511051006\nTalk:Stars/@comment-26375871-20150511021718/@comment-29484907-20161118044254\nTalk:Stars/@comment-26959616-20151003020832\nTalk:Stars/@comment-26959616-20151003020832/@comment-26599825-20151003093758\nTalk:Stars/@comment-26959616-20151003020832/@comment-26959616-20151003171700\nTalk:Stars/@comment-26959616-20151003020832/@comment-26999933-20151003084708\nTalk:Stars/@comment-30536568-20170304230906\nTalk:Stars/@comment-30536568-20170304230906/@comment-107.4.76.186-20180518180307\nTalk:Stars/@comment-30536568-20170304230906/@comment-31178037-20170326114727\nTalk:Stars/@comment-30536568-20170304230906/@comment-31178037-20170326124121\nTalk:Stars/@comment-30536568-20170304230906/@comment-31178037-20170326133419\nTalk:Stars/@comment-30536568-20170304230906/@comment-31178037-20170331061953\nTalk:Stars/@comment-30536568-20170304230906/@comment-31178037-20170331070738\nTalk:Stars/@comment-30536568-20170304230906/@comment-31178037-20170331074851\nTalk:Stars/@comment-30536568-20170304230906/@comment-31178037-20170331080820\nTalk:Stars/@comment-30536568-20170304230906/@comment-31178037-20170331082351\nTalk:Stars/@comment-30536568-20170304230906/@comment-31178037-20170331091251\nTalk:Stars/@comment-30536568-20170304230906/@comment-31178037-20170331094207\nTalk:Stars/@comment-30536568-20170304230906/@comment-31178037-20170331160445\nTalk:Stars/@comment-30536568-20170304230906/@comment-93.245.59.79-20170717123230\nTalk:Stars/@comment-31178037-20170220153129\nTalk:Stars/@comment-31178037-20170220153129/@comment-31178037-20170222153133\nTalk:Stars/@comment-31178037-20170220153129/@comment-31178037-20170331082544\nTalk:Stars/@comment-31178037-20170220153129/@comment-88.72.1.36-20170222150804\nTalk:Stars/@comment-31178037-20170220165141\nTalk:Stars/@comment-31178037-20170528160101\nTalk:Stars/@comment-34004391-20200513082834\nTalk:Stars/@comment-34004391-20200513082834/@comment-34728550-20200513115936\nTalk:Stars/@comment-4225664-20141231220510\nTalk:Stars/@comment-4225664-20141231220510/@comment-16355664-20150130164932\nTalk:Stars/@comment-4225664-20141231220510/@comment-24360696-20150101015804\nTalk:Stars/@comment-4968814-20150108182039\nTalk:Stars/@comment-4968814-20150108182039/@comment-24360696-20150108185248\nTalk:Stars/@comment-4968814-20150108182039/@comment-4968814-20150108185557\nTalk:Stars/@comment-4968814-20150108182039/@comment-76.20.136.41-20150224052857\nTalk:Stars/@comment-4968814-20150131171037\nTalk:Stars/@comment-68.225.224.111-20190509051353\nTalk:Stars/@comment-68.225.224.111-20190509051353/@comment-34728550-20190629082612\nTalk:Stars/@comment-74.96.221.60-20150110033447\nTalk:Stars/@comment-74.96.221.60-20150110033447/@comment-1250011-20150112210551\nTalk:Stars/@comment-74.96.221.60-20150110033447/@comment-24360696-20150112150437\nTalk:Stars/@comment-74.96.221.60-20150110033447/@comment-24360696-20150112161611\nTalk:Stars/@comment-74.96.221.60-20150110033447/@comment-26000333-20150112160936\nTalk:Stars/@comment-74.96.221.60-20150110033447/@comment-26000333-20150112210434\nTalk:Stars/@comment-74.96.221.60-20150110033447/@comment-26000333-20150112214205\nTalk:Stars/@comment-86.25.130.224-20150102174613\nTalk:Stars/@comment-86.25.130.224-20150102174613/@comment-24360696-20150102185712\nTalk:Stars/@comment-87.65.233.175-20150803045356\nTalk:Stars/@comment-90.200.46.38-20181105161000\nTalk:Stars/@comment-91.12.109.240-20150128224450\nTalk:Stars/@comment-91.12.109.240-20150128224450/@comment-26009169-20150129171736\nTalk:Stars/@comment-91.12.109.240-20150128224450/@comment-26009169-20150129181536\nTalk:Stars/@comment-91.12.109.240-20150128224450/@comment-26009169-20150131173802\nTalk:Stars/@comment-91.12.109.240-20150128224450/@comment-26033442-20150129180600\nTalk:Stars/@comment-91.12.109.240-20150128224450/@comment-4968814-20150131171546\nTalk:Stars/@comment-92.233.112.147-20150830115333\nTalk:Stars/@comment-92.233.112.147-20150830115333/@comment-93.135.151.221-20151107214232\nTalk:Stars/@comment-94.220.0.223-20150102211032\nTalk:Stars/@comment-94.220.0.223-20150102211032/@comment-12138097-20150102222117\nTalk:Stars/@comment-94.220.0.223-20150102211032/@comment-128.176.12.211-20150108095325\nTalk:Stars/@comment-94.220.0.223-20150102211032/@comment-24360696-20150102220359\nTalk:Stars/@comment-94.220.0.223-20150102211032/@comment-24360696-20150103005913\nTalk:Stars/@comment-98.196.181.135-20150104112330\nTalk:Stars/@comment-98.196.181.135-20150104112330/@comment-24360696-20150104142442\nTalk:Stars/@comment-98.196.181.135-20150104112330/@comment-98.196.181.135-20150104112458\nTalk:Stars/@comment-98.196.253.135-20150528141438\nTalk:Stars/@comment-98.196.253.135-20150528141438/@comment-176.108.198.74-20190929172445\nTalk:Stars/@comment-98.196.253.135-20150528141438/@comment-24.21.84.97-20150529105259\nTalk:Stars/@comment-98.196.253.135-20150528141438/@comment-92.233.112.147-20150625170722\nTalk:Stars/@comment-98.196.253.135-20150528141438/@comment-93.135.151.221-20151107214402\nTalk:Stars/@comment-98.196.253.135-20150528141438/@comment-98.196.253.135-20150601232927\nTalk:Stars/@comment-98.239.48.227-20150211012038\nTalk:Stars/@comment-98.239.48.227-20150212175112\nTalk:Stars/@comment-98.239.48.227-20150212175112/@comment-125.237.5.238-20170710100828\nTalk:Stars/@comment-98.239.48.227-20150212175112/@comment-76.20.136.41-20150219045902\nTalk:Stars/@comment-98.239.48.227-20150212175112/@comment-80.180.98.190-20160206140022\nTalk:Starship One/@comment-2602:306:CE29:B0D0:D843:E477:F58:DA4C-20190927075123\nTalk:Station/@comment-107.188.172.89-20150825222910\nTalk:Station/@comment-107.4.73.164-20150106201627\nTalk:Station/@comment-108.16.36.43-20170324183222\nTalk:Station/@comment-108.16.36.43-20170324183222/@comment-94.12.31.80-20170729212219\nTalk:Station/@comment-149.254.219.120-20141031223042\nTalk:Station/@comment-149.254.219.120-20141031223042/@comment-25074307-20141031231435\nTalk:Station/@comment-149.254.219.120-20141031223042/@comment-26015424-20150117100135\nTalk:Station/@comment-150.134.245.5-20141028033005\nTalk:Station/@comment-169.204.229.202-20160224182208\nTalk:Station/@comment-169.204.229.202-20160224182208/@comment-192.136.174.152-20160308190844\nTalk:Station/@comment-169.204.229.202-20160224182208/@comment-66.190.161.55-20160308181737\nTalk:Station/@comment-169.204.229.202-20160324165839\nTalk:Station/@comment-169.204.229.202-20160324165915\nTalk:Station/@comment-174.102.96.147-20150112052027\nTalk:Station/@comment-174.102.96.147-20150112052027/@comment-12138097-20150113083747\nTalk:Station/@comment-174.102.96.147-20150112052027/@comment-84.118.95.75-20150112211451\nTalk:Station/@comment-192.136.161.248-20160818200412\nTalk:Station/@comment-192.136.161.52-20161219213851\nTalk:Station/@comment-192.136.174.152-20160303182352\nTalk:Station/@comment-203.179.90.205-20160222093945\nTalk:Station/@comment-204.152.156.1-20151124160453\nTalk:Station/@comment-23998256-20190608123723\nTalk:Station/@comment-24.255.176.40-20160809232315\nTalk:Station/@comment-25074307-20140802145155\nTalk:Station/@comment-25409530-20140911195100\nTalk:Station/@comment-2605:A601:9CB:D400:E5A7:DF4E:58:D0C-20180823081257\nTalk:Station/@comment-2605:A601:9CB:D400:E5A7:DF4E:58:D0C-20180823081257/@comment-2605:A601:9CB:D400:E5A7:DF4E:58:D0C-20180823081944\nTalk:Station/@comment-2605:A601:9CB:D400:E5A7:DF4E:58:D0C-20180823081257/@comment-2A02:C7F:4C04:4100:B977:C762:5F1C:F180-20190604225216\nTalk:Station/@comment-2605:A601:9CB:D400:E5A7:DF4E:58:D0C-20180823082117\nTalk:Station/@comment-26287970-20150408130830\nTalk:Station/@comment-26287970-20150408130830/@comment-26009169-20150408132040\nTalk:Station/@comment-26287970-20150408130830/@comment-26287970-20150408132154\nTalk:Station/@comment-26816252-20150724151930\nTalk:Station/@comment-26816252-20150724151930/@comment-133748-20150724154431\nTalk:Station/@comment-26816252-20150724151930/@comment-25074307-20160203074952\nTalk:Station/@comment-26816252-20150724151930/@comment-95.91.228.130-20160222185956\nTalk:Station/@comment-27311754-20151204145608\nTalk:Station/@comment-27311754-20151204145608/@comment-43354983-20200410230115\nTalk:Station/@comment-2A02:C7D:49CE:5C00:9E7:3F2:30F9:DEAC-20180312151353\nTalk:Station/@comment-2A02:C7D:49CE:5C00:9E7:3F2:30F9:DEAC-20180312151353/@comment-90.200.49.195-20181218021841\nTalk:Station/@comment-30643772-20170412234907\nTalk:Station/@comment-30643772-20170412234907/@comment-208.122.126.194-20170508205233\nTalk:Station/@comment-30643772-20170412234907/@comment-208.122.126.194-20170531145521\nTalk:Station/@comment-30643772-20170412234907/@comment-43354983-20200410225716\nTalk:Station/@comment-33441314-20180115000752\nTalk:Station/@comment-4259120-20140802085411\nTalk:Station/@comment-4259120-20140802085411/@comment-217.122.19.191-20140802160328\nTalk:Station/@comment-4259120-20140802085411/@comment-5084207-20140802160746\nTalk:Station/@comment-72.223.12.39-20150408183136\nTalk:Station/@comment-72.223.12.39-20150408183136/@comment-26009169-20150408184110\nTalk:Station/@comment-84.129.82.244-20150730200220\nTalk:Station/@comment-84.9.60.161-20170127004102\nTalk:Station/@comment-84.9.60.161-20170127004102/@comment-2155082-20170127044203\nTalk:Station/@comment-84.9.60.161-20170127004102/@comment-30245159-20170127033231\nTalk:Station/@comment-93.157.114.41-20180310114326\nTalk:Station/@comment-94.12.31.80-20170729212655\nTalk:Station/@comment-94.65.178.75-20150203084533\nTalk:Station/@comment-94.65.178.75-20150203084533/@comment-192.208.253.226-20150217082700\nTalk:Station/@comment-94.65.178.75-20150203084533/@comment-69.137.46.160-20150714184644\nTalk:Station/@comment-94.65.178.75-20150203084533/@comment-96.253.38.31-20150728032827\nTalk:Stealth/@comment-1.127.109.132-20180126060538\nTalk:Stealth/@comment-1.127.109.132-20180126060538/@comment-173.88.83.52-20190211013650\nTalk:Stealth/@comment-1.127.109.132-20180126060538/@comment-192.136.170.98-20190211041953\nTalk:Stealth/@comment-108.200.221.105-20191123122707\nTalk:Stealth/@comment-25335609-20140822131008\nTalk:Stealth/@comment-90.255.114.191-20190505141308\nTalk:Stealth/@comment-90.255.114.191-20190505141308/@comment-206.19.54.254-20190709182715\nTalk:Stealth/@comment-90.255.114.191-20190505141308/@comment-2601:404:C780:BBFC:9083:1382:7296:C053-20190721044742\nTalk:Stealth/@comment-97.41.137.114-20160822233628\nTalk:Stealth/@comment-97.41.137.114-20160822233628/@comment-206.19.54.254-20190709182845\nTalk:Stealth/@comment-97.41.137.114-20160822233628/@comment-209.129.33.10-20170620162915\nTalk:Stealth/@comment-97.41.137.114-20160822233628/@comment-216.15.112.226-20190205204344\nTalk:Stinger-2/@comment-27681382-20160307132506\nTalk:Stinger-2/@comment-45693047-20200601074900\nTalk:Stinger-2/@comment-95.91.228.154-20160302013002\nTalk:Stolen Goods/@comment-115.70.238.47-20140804110702\nTalk:Stolen Goods/@comment-115.70.238.47-20140804110702/@comment-151.226.255.117-20150109235153\nTalk:Stolen Goods/@comment-115.70.238.47-20140804110702/@comment-6033893-20140804194612\nTalk:Stolen Goods/@comment-115.70.238.47-20140804110702/@comment-66.63.118.65-20141224010745\nTalk:Stolen Goods/@comment-115.70.238.47-20140804110702/@comment-72.207.103.59-20141220222220\nTalk:Stolen Goods/@comment-173.17.219.16-20151229041040\nTalk:Stolen Goods/@comment-2.125.136.63-20150124153224\nTalk:Stolen Goods/@comment-58.174.200.150-20150322061504\nTalk:Stolen Goods/@comment-58.174.200.150-20150322061504/@comment-173.239.228.109-20171014211310\nTalk:Stolen Goods/@comment-58.174.200.150-20150322061504/@comment-2.101.240.90-20151004180708\nTalk:Stolen Goods/@comment-81.98.227.73-20150306170421\nTalk:Stolen Goods/@comment-81.98.227.73-20150306170421/@comment-50.255.40.41-20151202235138\nTalk:Stolen Goods/@comment-82.25.91.128-20151201231038\nTalk:Stop Slavery Stupid/@comment-117.194.36.140-20180424194933\nTalk:Stop Slavery Stupid/@comment-12.18.245.215-20150916204844\nTalk:Stop Slavery Stupid/@comment-12.18.245.215-20150916204844/@comment-5959508-20160921151508\nTalk:Stop Slavery Stupid/@comment-12.18.245.215-20150916204844/@comment-79.103.246.50-20160517194642\nTalk:Stop Slavery Stupid/@comment-27646870-20160921131446\nTalk:Stop Slavery Stupid/@comment-4030403-20171127144143\nTalk:Stop Slavery Stupid/@comment-45677112-20200726153128\nTalk:Stripped Down/@comment-97.80.123.129-20190129222708\nTalk:Structural Regulators/@comment-45693047-20200611200520\nTalk:Stuemeae FG-Y d7561/@comment-43623494-20190906011734\nTalk:Stuemeae FG-Y d7561/@comment-43623494-20190906011734/@comment-73.134.48.176-20200216192234\nTalk:Sturdy Weapon/@comment-37.201.192.91-20190104184136\nTalk:Sturdy Weapon/@comment-37.201.192.91-20190104184136/@comment-189.32.28.226-20190219210920\nTalk:Sturdy Weapon/@comment-37.201.192.91-20190104184136/@comment-37.201.192.91-20190104185005\nTalk:Sturdy Weapon/@comment-74.249.116.29-20181007223336\nTalk:Sturdy Weapon/@comment-74.249.116.29-20181007223336/@comment-189.32.28.226-20190219211313\nTalk:Sturdy Weapon/@comment-74.249.116.29-20181007223336/@comment-74.249.116.29-20181007223426\nTalk:Sub-surface Displacement Missile/@comment-121.208.52.14-20190616090822\nTalk:Sub-surface Displacement Missile/@comment-191.177.201.29-20181212152944\nTalk:Sub-surface Displacement Missile/@comment-191.177.201.29-20181212152944/@comment-2607:FEA8:98E0:681:6991:BA90:8EB0:FDBA-20190405123212\nTalk:Sub-surface Displacement Missile/@comment-191.177.201.29-20181212152944/@comment-77.12.16.193-20181212175319\nTalk:Sub-surface Displacement Missile/@comment-2602:306:CE29:B0D0:7823:8E7A:723C:66A8-20190924005740\nTalk:Sub-surface Displacement Missile/@comment-2602:306:CE29:B0D0:7823:8E7A:723C:66A8-20190924005740/@comment-27941085-20200106234950\nTalk:Sub-surface Displacement Missile/@comment-2602:306:CE29:B0D0:7823:8E7A:723C:66A8-20190924005740/@comment-44372565-20200120172501\nTalk:Sub-surface Displacement Missile/@comment-2602:30A:2CCC:78D0:9DFE:733E:61CC:2DE-20190109094331\nTalk:Sub-surface Displacement Missile/@comment-2602:30A:2CCC:78D0:9DFE:733E:61CC:2DE-20190109094331/@comment-192.136.170.98-20190109182041\nTalk:Summerland/@comment-147.147.199.233-20190225124333\nTalk:Summerland/@comment-173.32.172.110-20190204034343\nTalk:Summerland/@comment-188.222.254.239-20190330221552\nTalk:Summerland/@comment-2409:250:8400:6400:1E8:7D43:F9DC:87D5-20181008160625\nTalk:Summerland/@comment-2605:E000:1E07:2016:0:2D79:4DD3:480D-20180506021222\nTalk:Summerland/@comment-2605:E000:1E07:2016:0:2D79:4DD3:480D-20180506021222/@comment-2C0F:F038:204:5C00:306F:BBF6:D7B7:7BD9-20181219155342\nTalk:Summerland/@comment-2605:E000:1E07:2016:0:2D79:4DD3:480D-20180506021222/@comment-40014487-20190703033655\nTalk:Summerland/@comment-2605:E000:1E07:2016:0:2D79:4DD3:480D-20180506021222/@comment-83.54.150.151-20180507195831\nTalk:Summerland/@comment-2605:E000:1E07:2016:0:2D79:4DD3:480D-20180506021222/@comment-86.12.26.140-20190325230511\nTalk:Summerland/@comment-27336833-20151206040118\nTalk:Summerland/@comment-27336833-20151206040118/@comment-24.159.216.8-20170523171420\nTalk:Summerland/@comment-27336833-20151206040118/@comment-27311754-20151212002638\nTalk:Summerland/@comment-27336833-20151206040118/@comment-90.198.109.101-20170430135611\nTalk:Summerland/@comment-27336833-20151206040118/@comment-94.1.65.7-20160410155451\nTalk:Summerland/@comment-2A00:23C1:74C1:FE00:D9B3:B219:E6C8:1081-20170805221017\nTalk:Summerland/@comment-2A00:23C1:74C1:FE00:D9B3:B219:E6C8:1081-20170805221017/@comment-24.89.222.71-20200107020454\nTalk:Summerland/@comment-2C0F:F038:204:5C00:306F:BBF6:D7B7:7BD9-20181219155309\nTalk:Summerland/@comment-45.37.137.112-20180306160119\nTalk:Summerland/@comment-46.7.136.86-20160906230228\nTalk:Summerland/@comment-86.191.204.163-20160227105037\nTalk:Summerland/@comment-86.52.131.116-20170324204611\nTalk:Super Capacitors/@comment-149.71.163.114-20181012181812\nTalk:Super Capacitors/@comment-149.71.163.114-20181012181812/@comment-3335-20200726221149\nTalk:Super Penetrator/@comment-195.221.250.134-20171128074417\nTalk:Super Penetrator/@comment-90.200.46.38-20181127121900\nTalk:Super Penetrator/@comment-90.200.46.38-20181127121900/@comment-187.92.197.12-20191024232705\nTalk:Super Penetrator/@comment-90.200.46.38-20181127121900/@comment-2003:DB:F70F:D637:D8F0:DEB9:B7A2:F93F-20200203140012\nTalk:Supercruise/@comment-107.188.30.12-20150319024616\nTalk:Supercruise/@comment-107.188.30.12-20150319024616/@comment-27774367-20170831220808\nTalk:Supercruise/@comment-107.188.30.12-20150319024616/@comment-71.192.234.73-20150813221319\nTalk:Supercruise/@comment-174.126.186.138-20150909221602\nTalk:Supercruise/@comment-36303287-20180723150700\nTalk:Supercruise/@comment-46.165.246.198-20171011163954\nTalk:Supercruise/@comment-46.165.246.198-20171011163954/@comment-34004391-20171231100217\nTalk:Supercruise/@comment-46.193.64.216-20150116131807\nTalk:Supercruise/@comment-46.193.64.216-20150116131807/@comment-176.2.117.98-20150611004644\nTalk:Supercruise/@comment-46.193.64.216-20150116131807/@comment-73.15.234.193-20150125033314\nTalk:Supercruise/@comment-46.239.196.26-20150705001600\nTalk:Supercruise/@comment-46.239.196.26-20150705001600/@comment-2155082-20150705045408\nTalk:Supercruise/@comment-46.239.196.26-20150705001600/@comment-2601:444:200:39A4:44D0:9F8E:E606:6E4C-20180723151442\nTalk:Supercruise/@comment-62.145.203.238-20190315033545\nTalk:Supercruise/@comment-62.145.203.238-20190315033545/@comment-206.19.54.254-20190724000142\nTalk:Supercruise/@comment-62.145.203.238-20190315033545/@comment-2A02:C7F:3E5B:DD00:45B4:DBE8:72D7:D73C-20190715121951\nTalk:Supercruise/@comment-72.251.238.77-20150619194805\nTalk:Supercruise/@comment-72.251.238.77-20150619194805/@comment-26033489-20150620082050\nTalk:Supercruise/@comment-74.5.75.159-20141211172118\nTalk:Supercruise/@comment-74.5.75.159-20141211172118/@comment-82.36.89.8-20150121152420\nTalk:Supercruise/@comment-78.194.13.113-20180731095738\nTalk:Supercruise/@comment-78.194.13.113-20180731095738/@comment-23.233.11.85-20190220132905\nTalk:Supercruise/@comment-78.194.13.113-20180731095738/@comment-78.194.13.113-20180731100552\nTalk:Supercruise/@comment-78.194.13.113-20180731095738/@comment-96.8.252.208-20190918193309\nTalk:Supercruise/@comment-78.194.13.113-20180731100410\nTalk:Supercruise/@comment-78.194.13.113-20180731100410/@comment-78.194.13.113-20180731100913\nTalk:Supercruise/@comment-82.39.191.17-20180401124217\nTalk:Supercruise/@comment-82.83.136.117-20150109201650\nTalk:Supercruise/@comment-82.83.136.117-20150109201650/@comment-162.156.172.47-20150211000117\nTalk:Supercruise/@comment-86.185.177.76-20150622090022\nTalk:Supercruise/@comment-86.185.177.76-20150622090022/@comment-199.33.135.210-20150712142503\nTalk:Supercruise/@comment-86.185.177.76-20150622090022/@comment-79.198.86.143-20151104041107\nTalk:Supercruise/@comment-92.24.200.71-20150823193312\nTalk:Supercruise/@comment-92.24.200.71-20150823193312/@comment-25411947-20150823233237\nTalk:Supercruise/@comment-92.24.200.71-20150823193312/@comment-7922125-20160106212446\nTalk:Supercruise/@comment-96.40.240.193-20150906015413\nTalk:Supercruise/@comment-97.126.139.151-20150922211732\nTalk:Supercruise/@comment-97.126.139.151-20150922211732/@comment-82.39.191.17-20180401124801\nTalk:Supercruise/@comment-97.126.139.151-20150922211732/@comment-88.175.110.191-20170429101224\nTalk:Supercruise/@comment-97.126.139.151-20150922211732/@comment-89.74.12.11-20170115222543\nTalk:Supercruise/@comment-97.126.139.151-20150922211732/@comment-96.8.252.208-20190918193438\nTalk:Supercruise Assist/@comment-100.7.45.195-20190505194553\nTalk:Supercruise Assist/@comment-178.37.101.101-20190503143355\nTalk:Supercruise Assist/@comment-2600:1700:4240:7BD0:882C:F543:2B4F:CBB-20191122032900\nTalk:Supercruise Assist/@comment-2601:586:C800:9710:D524:718A:B3CB:519B-20190508010043\nTalk:Supercruise Assist/@comment-2601:586:C800:9710:D524:718A:B3CB:519B-20190508010043/@comment-25450485-20190719232402\nTalk:Supercruise Assist/@comment-2607:FCC8:6703:1000:F9DF:F767:3D1C:97E3-20190629153326\nTalk:Supercruise Assist/@comment-38135707-20190501142934\nTalk:Supercruise Assist/@comment-38135707-20190501142934/@comment-188.238.126.207-20191102121156\nTalk:Supercruise Assist/@comment-45.52.195.44-20190428031140\nTalk:Supercruise Assist/@comment-45090500-20200221063927\nTalk:Supercruise Assist/@comment-64.47.145.66-20190914235141\nTalk:Supercruise Assist/@comment-74.137.131.66-20190423184021\nTalk:Supercruise Assist/@comment-74.137.131.66-20190423184021/@comment-83.155.113.15-20190423185724\nTalk:Supercruise Assist/@comment-74.137.131.66-20190423184021/@comment-99.170.208.60-20190423223710\nTalk:Supercruise Assist/@comment-85.11.21.115-20190922081900\nTalk:Supercruise Assist/@comment-85.11.21.115-20190922081900/@comment-2601:281:C601:940:B02C:342E:476:5C49-20200122061002\nTalk:Supratech/@comment-178.59.59.248-20180925180057\nTalk:Survey Vessel/@comment-33493166-20190419074420\nTalk:Synthesis/@comment-115.69.186.97-20151221064702\nTalk:Synthesis/@comment-146.115.124.208-20160617020152\nTalk:Synthesis/@comment-146.115.124.208-20160617020152/@comment-192.136.174.182-20160617125551\nTalk:Synthesis/@comment-173.70.28.248-20160514152016\nTalk:Synthesis/@comment-173.70.28.248-20160514152016/@comment-27283317-20160623205532\nTalk:Synthesis/@comment-24754830-20171008073952\nTalk:Synthesis/@comment-24754830-20171008073952/@comment-110.140.148.116-20180819063007\nTalk:Synthesis/@comment-24754830-20171008073952/@comment-5903179-20180703141526\nTalk:Synthesis/@comment-24754830-20171008073952/@comment-80.147.221.101-20171221110319\nTalk:Synthesis/@comment-34004391-20180105124554\nTalk:Synthesis/@comment-34004391-20180105124554/@comment-66.232.203.76-20180712062632\nTalk:Synthesis/@comment-37.229.216.0-20160906120622\nTalk:Synthesis/@comment-37.229.216.0-20160906120622/@comment-192.136.161.156-20160909154825\nTalk:Synthesis/@comment-50.25.174.219-20160822025215\nTalk:Synthesis/@comment-50.25.174.219-20160822025215/@comment-172.58.169.16-20170208111309\nTalk:Synthesis/@comment-50.25.174.219-20160822025215/@comment-2155082-20160822035731\nTalk:Synthesis/@comment-51.174.62.242-20190403134924\nTalk:Synthesis/@comment-51.174.62.242-20190403134924/@comment-192.136.170.98-20190403145911\nTalk:Synthesis/@comment-51.174.62.242-20190403134924/@comment-213.226.237.98-20190720171357\nTalk:Synthesis/@comment-51.174.62.242-20190403134924/@comment-51.174.62.242-20190410190350\nTalk:Synthesis/@comment-65.100.55.250-20160901055200\nTalk:Synthesis/@comment-98.226.192.248-20160112161115\nTalk:Synthesis/@comment-98.226.192.248-20160112161115/@comment-194.9.234.11-20160112170615\nTalk:Synuefe EN-H d11-96/@comment-24.253.234.48-20190524005904\nTalk:Synuefe EN-H d11-96/@comment-24.253.234.48-20190524005904/@comment-43623494-20190825231623\nTalk:System Focused Power Distributor/@comment-2A01:CB08:282:1100:B1C3:D131:7733:DE2D-20191023122228\nTalk:System Map/@comment-2602:30A:2E13:CC50:C54E:F144:DA36:2B62-20170716211445\nTalk:System Map/@comment-2602:30A:2E13:CC50:C54E:F144:DA36:2B62-20170716211445/@comment-2001:8003:2446:AB00:6D36:233A:2572:F731-20170719161803\nTalk:System Map/@comment-50.233.12.115-20181204010414\nTalk:System Map/@comment-50.233.12.115-20181204010426\nTalk:System Map/@comment-51.174.62.242-20190512143518\nTalk:System Map/@comment-83.128.225.182-20171014111413\nTalk:System Map/@comment-90.200.49.195-20181212155341\nTalk:System Map/@comment-90.200.49.195-20181212155341/@comment-90.200.49.195-20181216152144\nTalk:System Map/@comment-95.70.244.107-20181208145513\nTalk:System Signal Sources/@comment-25974345-20150330155551\nTalk:System Signal Sources/@comment-26809064-20151015200234\nTalk:System Signal Sources/@comment-26809064-20151015200234/@comment-99.135.98.174-20151122182319\nTalk:System Signal Sources/@comment-27115814-20151128074843\nTalk:System Signal Sources/@comment-27115814-20151128074843/@comment-71.161.65.133-20151202235958\nTalk:System Signal Sources/@comment-29011619-20160810082033\nTalk:System Signal Sources/@comment-5579199-20150726054536\nTalk:System Signal Sources/@comment-5579199-20150726054536/@comment-5579199-20150727004451\nTalk:System Signal Sources/@comment-5579199-20150726054536/@comment-66.234.221.45-20150727190823\nTalk:System Signal Sources/@comment-5579199-20150726054536/@comment-67.180.204.10-20150726181056\nTalk:System Signal Sources/@comment-66.191.253.76-20160725024308\nTalk:System Signal Sources/@comment-66.191.253.76-20160725024308/@comment-188.29.165.128-20190411141447\nTalk:System Signal Sources/@comment-68.146.12.101-20150429023338\nTalk:System Signal Sources/@comment-68.146.12.101-20150429023338/@comment-195.142.204.145-20150623173902\nTalk:System Signal Sources/@comment-69.146.78.63-20150331150023\nTalk:System Signal Sources/@comment-84.115.34.133-20160130221031\nTalk:System Signal Sources/@comment-84.115.34.133-20160130221031/@comment-193.127.200.51-20170529112649\nTalk:TBW Investments/@comment-45693047-20200804205236\nTalk:TBW Investments/@comment-45693047-20200804205818\nTalk:Taipan/@comment-151.225.215.252-20160818122650\nTalk:Taipan/@comment-151.225.215.252-20160818122650/@comment-151.225.215.252-20160830082703\nTalk:Taipan/@comment-151.225.215.252-20160818122650/@comment-188.238.167.43-20161020140839\nTalk:Taipan/@comment-151.225.215.252-20160818122650/@comment-188.238.167.43-20161020145310\nTalk:Taipan/@comment-151.225.215.252-20160818122650/@comment-27032150-20160818124854\nTalk:Taipan/@comment-151.225.215.252-20160818122650/@comment-27032150-20160830085140\nTalk:Taipan/@comment-151.225.215.252-20160818122650/@comment-68.36.47.66-20160821024854\nTalk:Taipan/@comment-170.211.150.62-20171010202218\nTalk:Taipan/@comment-170.211.150.62-20171010202218/@comment-27876530-20171010203618\nTalk:Taipan/@comment-170.211.150.62-20171010202218/@comment-69.123.241.214-20171101191528\nTalk:Taipan/@comment-192.136.161.156-20160929014052\nTalk:Taipan/@comment-192.136.161.156-20160929014052/@comment-123.211.243.162-20161109085522\nTalk:Taipan/@comment-192.136.161.156-20160929014052/@comment-176.249.62.114-20170826115258\nTalk:Taipan/@comment-192.136.161.156-20160929014052/@comment-188.238.167.43-20161020134149\nTalk:Taipan/@comment-192.136.161.156-20160929014052/@comment-188.238.187.9-20161031155742\nTalk:Taipan/@comment-192.136.161.156-20160929014052/@comment-192.136.161.52-20161109120955\nTalk:Taipan/@comment-192.136.161.156-20160929014052/@comment-24.180.199.173-20171005020256\nTalk:Taipan/@comment-203.214.82.38-20170424025703\nTalk:Taipan/@comment-203.214.82.38-20170424025703/@comment-192.136.161.52-20170424115226\nTalk:Taipan/@comment-2600:1007:B117:63B:A190:22CE:4F60:66F7-20180207174313\nTalk:Taipan/@comment-27032150-20160817145914\nTalk:Taipan/@comment-27032150-20160817145914/@comment-206.208.187.105-20161217135234\nTalk:Taipan/@comment-42.200.197.137-20171106091426\nTalk:Taipan/@comment-70.249.189.124-20181107092857\nTalk:Taipan/@comment-70.249.189.124-20181107092857/@comment-58.178.11.226-20190703002202\nTalk:Taipan/@comment-80.220.35.25-20170604090930\nTalk:Taipan/@comment-80.220.35.25-20170604090930/@comment-30245159-20170604121955\nTalk:Taipan/@comment-84.249.206.93-20170109012918\nTalk:Taipan/@comment-84.249.206.93-20170109012918/@comment-26810597-20170110122720\nTalk:Taipan/@comment-93.106.6.170-20161122155158\nTalk:Tales from the Frontier/@comment-24.237.158.16-20200205041531\nTalk:Tanker/@comment-192.136.161.33-20180105131217\nTalk:Tanker/@comment-192.136.161.33-20180105131217/@comment-192.136.161.33-20180105184852\nTalk:Tanker/@comment-24.7.102.57-20180427232932\nTalk:Tanker/@comment-24.7.102.57-20180427232932/@comment-24.7.102.57-20180428032943\nTalk:Tanmark Tranquil Tea/@comment-77.50.26.143-20160814210218\nTalk:Tarach Spice/@comment-122.149.148.97-20150211032349\nTalk:Tarach Spice/@comment-1364001-20150216122116\nTalk:Tarach Spice/@comment-14.201.223.11-20160102005001\nTalk:Tarach Spice/@comment-174.102.96.147-20150307195121\nTalk:Tarach Spice/@comment-31554369-20170731200548\nTalk:Tarach Spice/@comment-50.129.64.120-20150428044125\nTalk:Tarach Spice/@comment-69.141.172.169-20150927220243\nTalk:Tarach Spice/@comment-85.230.188.222-20150810221752\nTalk:Tarach Spice/@comment-88.152.46.63-20151009152748\nTalk:Tarach Spice/@comment-91.44.87.109-20150103181802\nTalk:Tau Ceti/@comment-144.137.144.39-20180325073431\nTalk:Tau Ceti/@comment-144.137.144.39-20180325073431/@comment-72.29.232.249-20181031153830\nTalk:Tau Ceti/@comment-77.102.250.232-20170504135401\nTalk:Tau Ceti/@comment-77.102.250.232-20170504135401/@comment-86.0.225.14-20170813064136\nTalk:Tauri Chimes/@comment-43850942-20190917023748\nTalk:Tauri Chimes/@comment-77.50.26.143-20160930210353\nTalk:Tauri Chimes/@comment-86.52.45.54-20160127190656\nTalk:Tauri Chimes/@comment-86.52.45.54-20160127190656/@comment-68.112.191.116-20160203005833\nTalk:Tea/@comment-2001:8003:6F8D:3100:C48B:68C0:4554:DFAC-20180510112309\nTalk:Technetium/@comment-109.144.216.206-20190818085057\nTalk:Technetium/@comment-109.144.216.206-20190818085057/@comment-192.136.172.44-20190818135628\nTalk:Technetium/@comment-212.83.94.111-20180605050249\nTalk:Technetium/@comment-70.176.177.131-20190108194024\nTalk:Technical Blueprints/@comment-50.88.121.45-20150303144223\nTalk:Technical Blueprints/@comment-50.88.121.45-20150303144223/@comment-97.64.215.195-20150317002851\nTalk:Technology Broker/@comment-103.208.220.135-20180430154725\nTalk:Technology Broker/@comment-118.93.246.156-20180403205445\nTalk:Technology Broker/@comment-118.93.246.156-20180403205445/@comment-91.160.87.22-20180824135721\nTalk:Technology Broker/@comment-2003:DA:CBD1:B200:F4DC:870B:9C53:662B-20180710152543\nTalk:Technology Broker/@comment-2003:DA:CBD1:B200:F4DC:870B:9C53:662B-20180710152543/@comment-77.94.204.134-20180716113334\nTalk:Technology Broker/@comment-24.104.160.132-20180707011806\nTalk:Technology Broker/@comment-31.124.35.110-20190823165109\nTalk:Technology Broker/@comment-31.124.35.110-20190823165109/@comment-43555082-20190901164939\nTalk:Technology Broker/@comment-37820584-20190925041753\nTalk:Tellurium/@comment-107.77.97.21-20171129104128\nTalk:Tellurium/@comment-2601:8C0:C200:D616:DDF5:8C70:4074:C04B-20180213181342\nTalk:Tellurium/@comment-2601:8C0:C200:D616:DDF5:8C70:4074:C04B-20180213181342/@comment-2601:8C0:C200:D616:DDF5:8C70:4074:C04B-20180311183329\nTalk:Tellurium/@comment-29839692-20180320081141\nTalk:Terra Mater Blood Bores/@comment-147.147.39.84-20180828143925\nTalk:Terra Mater Blood Bores/@comment-72.186.61.7-20180317052340\nTalk:Terra Mater Blood Bores/@comment-72.186.61.7-20180317052340/@comment-27283317-20180318210642\nTalk:Terra Mater Blood Bores/@comment-91.125.157.204-20181225112207\nTalk:Terraforming/@comment-162.253.131.140-20191103231357\nTalk:Terraforming/@comment-162.253.131.140-20191103231357/@comment-2001:67C:2ED8:100D:E0F4:B30F:E530:2F4B-20191105203808\nTalk:Terraforming/@comment-162.253.131.140-20191103231357/@comment-44561787-20191201190424\nTalk:Terraforming/@comment-162.253.131.140-20191103231357/@comment-45176657-20200529183822\nTalk:Terraforming/@comment-2602:306:CE29:B0D0:18CE:94DE:D402:A257-20190921013546\nTalk:Terraforming/@comment-2602:306:CE29:B0D0:18CE:94DE:D402:A257-20190921013546/@comment-27273957-20190921163051\nTalk:Terraforming/@comment-2605:B100:F340:8F17:35CF:289B:7F15:17A7-20190911185058\nTalk:Terraforming/@comment-2605:B100:F340:8F17:35CF:289B:7F15:17A7-20190911185058/@comment-2001:67C:2ED8:100D:E0F4:B30F:E530:2F4B-20191105204731\nTalk:Terrestrial Planet/@comment-185.31.50.30-20190606121417\nTalk:Terrestrial Planet/@comment-185.31.50.30-20190606121417/@comment-2601:281:8300:70CC:21DC:BF2C:C2E8:DBD9-20190709031223\nTalk:Thargoid/@comment-101.184.150.174-20160113034250\nTalk:Thargoid/@comment-101.184.150.174-20160113034250/@comment-24.28.12.120-20170227123457\nTalk:Thargoid/@comment-101.184.150.174-20160113034250/@comment-27115814-20160319031447\nTalk:Thargoid/@comment-101.184.150.174-20160113034250/@comment-67.169.48.209-20160214013234\nTalk:Thargoid/@comment-101.184.150.174-20160113034250/@comment-81.136.54.170-20160118232358\nTalk:Thargoid/@comment-108.2.148.152-20170604151633\nTalk:Thargoid/@comment-12.5.54.135-20170109135043\nTalk:Thargoid/@comment-122.151.147.67-20170608130347\nTalk:Thargoid/@comment-144.137.144.39-20180325081934\nTalk:Thargoid/@comment-167.93.6.250-20190415170636\nTalk:Thargoid/@comment-167.93.6.250-20190415170636/@comment-39771741-20191108190927\nTalk:Thargoid/@comment-188.203.163.36-20151201162446\nTalk:Thargoid/@comment-194.176.105.141-20150414100102\nTalk:Thargoid/@comment-2.123.39.3-20160823113953\nTalk:Thargoid/@comment-2.123.39.3-20160823113953/@comment-24.28.12.120-20170227123433\nTalk:Thargoid/@comment-2.123.39.3-20160823113953/@comment-30643772-20170113031458\nTalk:Thargoid/@comment-24.207.184.54-20170422164651\nTalk:Thargoid/@comment-24.28.12.120-20170227123345\nTalk:Thargoid/@comment-24.28.12.120-20170227123345/@comment-205.213.208.86-20170331171116\nTalk:Thargoid/@comment-24471699-20140302213718\nTalk:Thargoid/@comment-24471699-20140302220116\nTalk:Thargoid/@comment-25411947-20150924213310\nTalk:Thargoid/@comment-2602:306:CE29:B0D0:D843:E477:F58:DA4C-20190927081856\nTalk:Thargoid/@comment-2602:306:CE29:B0D0:D843:E477:F58:DA4C-20190927081856/@comment-72.141.229.177-20191123055454\nTalk:Thargoid/@comment-2602:306:CF06:9BE0:A9EB:D1DD:B839:7A69-20180831213437\nTalk:Thargoid/@comment-26987932-20160202030210\nTalk:Thargoid/@comment-27032150-20160823095707\nTalk:Thargoid/@comment-27032150-20160823095707/@comment-188.226.83.176-20170105230858\nTalk:Thargoid/@comment-2A00:23C4:ED82:AD00:75BB:B723:21B6:F725-20170901204039\nTalk:Thargoid/@comment-2A00:23C4:ED82:AD00:75BB:B723:21B6:F725-20170901204039/@comment-2A00:23C4:ED82:AD00:75BB:B723:21B6:F725-20170901204154\nTalk:Thargoid/@comment-30643772-20170419063318\nTalk:Thargoid/@comment-31.183.254.154-20190511192057\nTalk:Thargoid/@comment-33053857-20170908001830\nTalk:Thargoid/@comment-33053857-20170908001830/@comment-2602:306:CE29:B0D0:D843:E477:F58:DA4C-20190927081310\nTalk:Thargoid/@comment-45.59.44.238-20151211061011\nTalk:Thargoid/@comment-45.59.44.238-20151211061011/@comment-72.161.121.196-20160215184533\nTalk:Thargoid/@comment-4629203-20160517054232\nTalk:Thargoid/@comment-66.109.235.218-20160831171134\nTalk:Thargoid/@comment-66.109.235.218-20160831171134/@comment-27032150-20160901065936\nTalk:Thargoid/@comment-66.109.235.218-20160831171134/@comment-5959508-20170113175247\nTalk:Thargoid/@comment-75.106.102.198-20180106024251\nTalk:Thargoid/@comment-77.205.166.89-20170302145602\nTalk:Thargoid/@comment-81.131.182.229-20170918130308\nTalk:Thargoid/@comment-81.131.182.229-20170926124856\nTalk:Thargoid/@comment-81.131.182.229-20170927123759\nTalk:Thargoid/@comment-82.219.52.13-20180503110731\nTalk:Thargoid/@comment-82.219.52.13-20180503110731/@comment-192.136.161.33-20180503171651\nTalk:Thargoid/@comment-82.219.52.13-20180504090055\nTalk:Thargoid/@comment-82.219.52.13-20180504090055/@comment-82.219.52.13-20180504090226\nTalk:Thargoid/@comment-83.185.243.241-20141127133314\nTalk:Thargoid/@comment-83.185.243.241-20141127133314/@comment-109.145.201.77-20151106183432\nTalk:Thargoid/@comment-83.185.243.241-20141127133314/@comment-25409530-20141201010904\nTalk:Thargoid/@comment-83.185.243.241-20141127133314/@comment-82.132.217.164-20160405160830\nTalk:Thargoid/@comment-88.112.91.114-20150310162621\nTalk:Thargoid/@comment-88.112.91.114-20150310162621/@comment-78.143.117.165-20150810001636\nTalk:Thargoid/@comment-98.193.10.19-20181113221049\nTalk:Thargoid Barnacle/@comment-104.236.251.167-20160707045049\nTalk:Thargoid Barnacle/@comment-162.247.230.19-20180106033146\nTalk:Thargoid Barnacle/@comment-1640573-20160115005622\nTalk:Thargoid Barnacle/@comment-1640573-20160115005622/@comment-121.217.236.107-20160115104026\nTalk:Thargoid Barnacle/@comment-1640573-20160115005622/@comment-1640573-20160116030409\nTalk:Thargoid Barnacle/@comment-1640573-20160115005622/@comment-81.245.42.174-20160117131930\nTalk:Thargoid Barnacle/@comment-192.136.161.248-20160830143817\nTalk:Thargoid Barnacle/@comment-192.136.161.248-20160830143817/@comment-192.136.161.248-20160831112528\nTalk:Thargoid Barnacle/@comment-192.136.161.248-20160830143817/@comment-27032150-20160830153756\nTalk:Thargoid Barnacle/@comment-192.136.161.248-20160830143817/@comment-27032150-20160831134150\nTalk:Thargoid Barnacle/@comment-195.194.196.233-20160120123139\nTalk:Thargoid Barnacle/@comment-216.188.218.58-20190105232848\nTalk:Thargoid Barnacle/@comment-217.10.103.188-20190721205952\nTalk:Thargoid Barnacle/@comment-29975921-20160915103621\nTalk:Thargoid Barnacle/@comment-29975921-20160915103621/@comment-206.45.79.199-20170430201507\nTalk:Thargoid Barnacle/@comment-29975921-20160915103621/@comment-29975921-20161003054238\nTalk:Thargoid Barnacle/@comment-29975921-20160915103621/@comment-76.14.244.250-20161002210723\nTalk:Thargoid Barnacle/@comment-35766151-20180603003746\nTalk:Thargoid Barnacle/@comment-35766151-20180603003746/@comment-181.194.73.117-20180615145203\nTalk:Thargoid Barnacle/@comment-38078413-20190106215435\nTalk:Thargoid Barnacle/@comment-66.191.253.76-20160726033349\nTalk:Thargoid Barnacle/@comment-82.227.123.100-20160618212810\nTalk:Thargoid Barnacle/@comment-82.227.123.100-20160618212810/@comment-216.188.218.58-20190105225628\nTalk:Thargoid Barnacle/@comment-92.106.23.229-20160116100241\nTalk:Thargoid Barnacle/@comment-95.91.228.136-20160402081719\nTalk:Thargoid Barnacle/@comment-99.247.201.55-20160114225045\nTalk:Thargoid Cyclops Tissue Sample/@comment-45587726-20200509195907\nTalk:Thargoid Heart/@comment-89.115.173.106-20180805123653\nTalk:Thargoid Heart/@comment-89.115.173.106-20180805123653/@comment-2601:404:CD01:84F5:A56C:FD38:2D8D:1A59-20190824142922\nTalk:Thargoid Heart/@comment-89.115.173.106-20180805123653/@comment-34641605-20180908015632\nTalk:Thargoid Interceptor/@comment-108.16.36.43-20170226160227\nTalk:Thargoid Interceptor/@comment-108.16.36.43-20170226160227/@comment-5.151.197.96-20170309215314\nTalk:Thargoid Interceptor/@comment-108.16.36.43-20170226160227/@comment-72.213.50.31-20170227174427\nTalk:Thargoid Interceptor/@comment-108.16.36.43-20170307170007\nTalk:Thargoid Interceptor/@comment-108.16.36.43-20170307170007/@comment-26386512-20170307170447\nTalk:Thargoid Interceptor/@comment-108.16.36.43-20170307170007/@comment-2A02:C7D:7229:7500:354A:42A7:CB26:10D6-20170628180548\nTalk:Thargoid Interceptor/@comment-108.16.36.43-20170401231533\nTalk:Thargoid Interceptor/@comment-108.16.36.43-20170401231533/@comment-166.137.118.125-20170717023639\nTalk:Thargoid Interceptor/@comment-110.20.3.143-20171209082048\nTalk:Thargoid Interceptor/@comment-173.69.154.83-20170128152940\nTalk:Thargoid Interceptor/@comment-173.69.154.83-20170128152940/@comment-173.69.154.83-20170128153127\nTalk:Thargoid Interceptor/@comment-173.69.154.83-20170128152940/@comment-77.102.250.232-20170303110456\nTalk:Thargoid Interceptor/@comment-188.67.41.200-20180615205444\nTalk:Thargoid Interceptor/@comment-188.67.41.200-20180615205444/@comment-109.209.214.66-20190101233614\nTalk:Thargoid Interceptor/@comment-188.67.41.200-20180615205444/@comment-50.204.14.114-20180627153632\nTalk:Thargoid Interceptor/@comment-191.190.58.251-20170911224200\nTalk:Thargoid Interceptor/@comment-191.190.58.251-20170911224200/@comment-170.185.126.17-20191107190321\nTalk:Thargoid Interceptor/@comment-192.136.161.52-20170106122142\nTalk:Thargoid Interceptor/@comment-192.136.161.52-20170106122142/@comment-101.180.100.2-20170107020837\nTalk:Thargoid Interceptor/@comment-192.136.161.52-20170106122142/@comment-170.185.126.17-20191107190709\nTalk:Thargoid Interceptor/@comment-192.136.161.52-20170106122142/@comment-192.136.161.52-20170107041832\nTalk:Thargoid Interceptor/@comment-192.136.161.52-20170106122142/@comment-42.112.80.198-20170108144837\nTalk:Thargoid Interceptor/@comment-24.188.236.157-20170106081201\nTalk:Thargoid Interceptor/@comment-24.188.236.157-20170106081201/@comment-73.55.176.236-20170107021020\nTalk:Thargoid Interceptor/@comment-24.188.236.157-20170106081201/@comment-90.190.185.5-20170106082137\nTalk:Thargoid Interceptor/@comment-24.246.118.194-20170919152201\nTalk:Thargoid Interceptor/@comment-2602:306:CE29:B0D0:D843:E477:F58:DA4C-20190927080537\nTalk:Thargoid Interceptor/@comment-2602:306:CE29:B0D0:D843:E477:F58:DA4C-20190927080537/@comment-170.185.126.17-20191107185158\nTalk:Thargoid Interceptor/@comment-2602:306:CE29:B0D0:D843:E477:F58:DA4C-20190927080537/@comment-170.185.126.17-20191107185833\nTalk:Thargoid Interceptor/@comment-28193329-20180731223224\nTalk:Thargoid Interceptor/@comment-28193329-20180731223224/@comment-82.14.210.105-20190718061510\nTalk:Thargoid Interceptor/@comment-43623494-20191022024107\nTalk:Thargoid Interceptor/@comment-43623494-20191022024107/@comment-146.198.166.49-20191027200315\nTalk:Thargoid Interceptor/@comment-43623494-20191022024107/@comment-27941085-20200514235551\nTalk:Thargoid Interceptor/@comment-44180665-20200419182824\nTalk:Thargoid Interceptor/@comment-44180665-20200419182824/@comment-44180665-20200419182848\nTalk:Thargoid Interceptor/@comment-46.91.137.42-20171023123022\nTalk:Thargoid Interceptor/@comment-46.91.137.42-20171023123022/@comment-170.185.126.17-20191107190212\nTalk:Thargoid Interceptor/@comment-70.39.7.237-20170518045843\nTalk:Thargoid Interceptor/@comment-72.130.121.178-20170106082500\nTalk:Thargoid Interceptor/@comment-72.130.121.178-20170106082500/@comment-30643772-20170113022559\nTalk:Thargoid Interceptor/@comment-72.130.121.178-20170106082500/@comment-72.130.121.178-20170106104137\nTalk:Thargoid Interceptor/@comment-72.193.63.228-20170316014700\nTalk:Thargoid Interceptor/@comment-77.102.200.67-20170528181404\nTalk:Thargoid Interceptor/@comment-77.102.200.67-20170528181404/@comment-170.185.126.17-20191107190436\nTalk:Thargoid Interceptor/@comment-79.141.58.24-20170109103317\nTalk:Thargoid Interceptor/@comment-79.141.58.24-20170109103317/@comment-26386512-20170418182811\nTalk:Thargoid Interceptor/@comment-79.141.58.24-20170109103317/@comment-77.102.250.232-20170429080826\nTalk:Thargoid Interceptor/@comment-82.17.231.2-20171208074946\nTalk:Thargoid Interceptor/@comment-86.148.115.225-20170117193117\nTalk:Thargoid Interceptor/@comment-87.116.25.195-20170123085344\nTalk:Thargoid Interceptor/@comment-87.116.25.195-20170123085344/@comment-108.16.36.43-20170206192034\nTalk:Thargoid Interceptor/@comment-87.116.25.195-20170123085344/@comment-26386512-20170217060626\nTalk:Thargoid Interceptor/@comment-90.200.46.38-20181123024655\nTalk:Thargoid Interceptor/@comment-90.200.46.38-20181127221612\nTalk:Thargoid Interceptor/@comment-90.200.46.38-20181127221612/@comment-170.185.126.17-20191107185948\nTalk:Thargoid Interceptor/@comment-90.200.46.38-20181127221612/@comment-192.136.170.98-20181128041038\nTalk:Thargoid Interceptor/@comment-90.200.46.38-20181127221612/@comment-216.26.209.4-20190219214940\nTalk:Thargoid Interceptor/@comment-90.200.46.38-20181127221612/@comment-82.14.210.105-20190718060936\nTalk:Thargoid Interceptor/@comment-90.200.46.38-20181127221612/@comment-93.143.209.57-20190316060151\nTalk:Thargoid Interceptor/@comment-96.66.42.177-20170501132153\nTalk:Thargoid Interceptor/@comment-99.26.68.253-20170110023313\nTalk:Thargoid Interceptor/@comment-99.26.68.253-20170110023313/@comment-192.136.161.52-20170110041125\nTalk:Thargoid Interceptor/@comment-99.26.68.253-20170110023313/@comment-73.205.52.98-20170202043957\nTalk:Thargoid Link/@comment-121.44.37.73-20170705074759\nTalk:Thargoid Link/@comment-192.245.50.52-20170809143620\nTalk:Thargoid Link/@comment-25803634-20180625091601\nTalk:Thargoid Mothership/@comment-166.137.118.21-20171109035312\nTalk:Thargoid Mothership/@comment-166.137.118.21-20171109035312/@comment-43586739-20191116030427\nTalk:Thargoid Mothership/@comment-172.242.75.177-20180412075738\nTalk:Thargoid Mothership/@comment-172.242.75.177-20180412075738/@comment-189.166.9.65-20180520041658\nTalk:Thargoid Mothership/@comment-172.242.75.177-20180412075738/@comment-98.207.108.165-20180520075244\nTalk:Thargoid Mothership/@comment-2003:DF:8F22:3000:CC67:92B0:CD3:EA5C-20171221055128\nTalk:Thargoid Mothership/@comment-2003:DF:8F22:3000:CC67:92B0:CD3:EA5C-20171221055128/@comment-152.17.132.143-20180919225103\nTalk:Thargoid Mothership/@comment-2003:DF:8F22:3000:CC67:92B0:CD3:EA5C-20171221055128/@comment-32313686-20180506154417\nTalk:Thargoid Mothership/@comment-2003:DF:8F22:3000:CC67:92B0:CD3:EA5C-20171221055128/@comment-33544591-20180107161505\nTalk:Thargoid Mothership/@comment-44180665-20200522165414\nTalk:Thargoid Mothership/@comment-44180665-20200522165414/@comment-30928085-20200523103713\nTalk:Thargoid Mothership/@comment-70.51.23.147-20181108060432\nTalk:Thargoid Mothership/@comment-70.51.23.147-20181108060432/@comment-68.8.234.19-20190120190154\nTalk:Thargoid Mothership/@comment-70.51.23.147-20181108060432/@comment-69.166.69.101-20190619163915\nTalk:Thargoid Pod/@comment-34004391-20200617093545\nTalk:Thargoid Pod/@comment-34004391-20200617093545/@comment-30928085-20200624063620\nTalk:Thargoid Probe/@comment-146.90.208.16-20180304151747\nTalk:Thargoid Probe/@comment-146.90.208.16-20180304151747/@comment-75.167.95.98-20181012045908\nTalk:Thargoid Probe/@comment-177.43.130.228-20160719180529\nTalk:Thargoid Probe/@comment-177.43.130.228-20160719180529/@comment-192.136.174.182-20160719202238\nTalk:Thargoid Probe/@comment-182.40.234.147-20181216192931\nTalk:Thargoid Probe/@comment-192.136.174.182-20160719112759\nTalk:Thargoid Probe/@comment-192.136.174.182-20160719112759/@comment-14.99.116.244-20160820090300\nTalk:Thargoid Probe/@comment-192.136.174.182-20160719112759/@comment-72.231.199.13-20160720143331\nTalk:Thargoid Probe/@comment-194.74.142.50-20160819121353\nTalk:Thargoid Probe/@comment-194.74.142.50-20160819121353/@comment-91.82.6.151-20160819124126\nTalk:Thargoid Probe/@comment-2003:DA:370E:637C:F8C4:410E:67:8BB5-20190626092540\nTalk:Thargoid Probe/@comment-2601:183:8580:CD40:BDEB:8B3D:17B5:BF38-20171115225028\nTalk:Thargoid Probe/@comment-2601:183:8580:CD40:BDEB:8B3D:17B5:BF38-20171115225028/@comment-113.210.56.250-20171117002521\nTalk:Thargoid Probe/@comment-2601:183:8580:CD40:BDEB:8B3D:17B5:BF38-20171115225028/@comment-168.99.197.18-20180220151809\nTalk:Thargoid Probe/@comment-2602:306:31AD:3410:C1FF:6DB2:DB95:736B-20170629151049\nTalk:Thargoid Probe/@comment-2604:3D08:1C80:9800:C9FA:D0D0:FAD5:1DA8-20190306063041\nTalk:Thargoid Probe/@comment-27032150-20160720073812\nTalk:Thargoid Probe/@comment-27032150-20160720073812/@comment-192.136.174.182-20160720115905\nTalk:Thargoid Probe/@comment-2A01:CB0D:3DE:8400:398D:5964:94AC:E75D-20171008175746\nTalk:Thargoid Probe/@comment-44180665-20200416163352\nTalk:Thargoid Probe/@comment-66.71.248.233-20181231173803\nTalk:Thargoid Probe/@comment-84.132.59.199-20160725120922\nTalk:Thargoid Probe/@comment-84.132.59.199-20160725120922/@comment-76.69.122.72-20160824055249\nTalk:Thargoid Probe/@comment-85.19.76.38-20181217113437\nTalk:Thargoid Probe/@comment-85.19.76.38-20181217113437/@comment-119.28.13.185-20181218174330\nTalk:Thargoid Probe/@comment-85.19.76.38-20181217113437/@comment-37963510-20181228200724\nTalk:Thargoid Scout/@comment-104.159.81.195-20180805032403\nTalk:Thargoid Scout/@comment-184.13.74.203-20180601020132\nTalk:Thargoid Scout/@comment-203.104.15.196-20190916042446\nTalk:Thargoid Scout/@comment-2601:183:8580:8B40:BDEB:8B3D:17B5:BF38-20180127165800\nTalk:Thargoid Scout/@comment-2601:183:8580:8B40:BDEB:8B3D:17B5:BF38-20180127165800/@comment-203.83.18.46-20180509051921\nTalk:Thargoid Scout/@comment-2601:183:8580:8B40:BDEB:8B3D:17B5:BF38-20180127165800/@comment-67.21.153.142-20180201175159\nTalk:Thargoid Scout/@comment-2601:183:8580:8B40:BDEB:8B3D:17B5:BF38-20180127165800/@comment-73.189.163.108-20180315030120\nTalk:Thargoid Scout/@comment-2A00:23C0:4905:A200:88C9:494F:912A:88F5-20180305013413\nTalk:Thargoid Scout/@comment-44821987-20200504182823\nTalk:Thargoid Scout/@comment-86.15.216.155-20181215231130\nTalk:Thargoid Scout/@comment-87.93.3.26-20180612004736\nTalk:Thargoid Scout/@comment-87.93.3.26-20180612004736/@comment-210.246.50.132-20180723232916\nTalk:Thargoid Sensor/@comment-101.184.150.174-20160113033240\nTalk:Thargoid Sensor/@comment-101.184.150.174-20160113033240/@comment-74.139.176.182-20160118132201\nTalk:Thargoid Sensor/@comment-109.159.34.49-20160324204314\nTalk:Thargoid Sensor/@comment-109.159.34.49-20160324204547\nTalk:Thargoid Sensor/@comment-111.69.225.205-20150716114532\nTalk:Thargoid Sensor/@comment-111.69.225.205-20150716114532/@comment-26565780-20150717134542\nTalk:Thargoid Sensor/@comment-149.126.105.68-20151016155715\nTalk:Thargoid Sensor/@comment-1608156-20160125002602\nTalk:Thargoid Sensor/@comment-173.170.161.72-20150816172637\nTalk:Thargoid Sensor/@comment-173.170.161.72-20150816172637/@comment-26569495-20150816184419\nTalk:Thargoid Sensor/@comment-173.57.144.28-20160121235751\nTalk:Thargoid Sensor/@comment-175.45.124.38-20150712234220\nTalk:Thargoid Sensor/@comment-175.45.124.38-20150712234220/@comment-26565780-20150714111732\nTalk:Thargoid Sensor/@comment-175.45.124.38-20150712234220/@comment-86.29.214.189-20150714210300\nTalk:Thargoid Sensor/@comment-201.211.98.35-20151212203427\nTalk:Thargoid Sensor/@comment-213.65.158.103-20150916054632\nTalk:Thargoid Sensor/@comment-216.188.218.58-20181229193743\nTalk:Thargoid Sensor/@comment-216.40.73.161-20170226003636\nTalk:Thargoid Sensor/@comment-23.16.106.220-20160810230534\nTalk:Thargoid Sensor/@comment-23.16.106.220-20160810230534/@comment-86.182.65.139-20160811014950\nTalk:Thargoid Sensor/@comment-23.91.248.232-20151109052544\nTalk:Thargoid Sensor/@comment-23.91.248.232-20151109052544/@comment-26569495-20151109094503\nTalk:Thargoid Sensor/@comment-24.65.103.10-20150819013552\nTalk:Thargoid Sensor/@comment-24.65.103.10-20150819014735\nTalk:Thargoid Sensor/@comment-24.65.103.10-20150824000454\nTalk:Thargoid Sensor/@comment-2601:543:C001:A51B:A4AC:7238:26B8:353F-20180107074421\nTalk:Thargoid Sensor/@comment-26537865-20150720193830\nTalk:Thargoid Sensor/@comment-26537865-20150720193830/@comment-26565780-20150724092022\nTalk:Thargoid Sensor/@comment-26569495-20150716074612\nTalk:Thargoid Sensor/@comment-26569495-20150716074612/@comment-26009169-20150716115316\nTalk:Thargoid Sensor/@comment-26569495-20150716074612/@comment-26565780-20150716083149\nTalk:Thargoid Sensor/@comment-26569495-20150905171503\nTalk:Thargoid Sensor/@comment-26579663-20150904174921\nTalk:Thargoid Sensor/@comment-26579663-20150904174921/@comment-26009169-20150904193759\nTalk:Thargoid Sensor/@comment-26579663-20150904174921/@comment-26009169-20150905184940\nTalk:Thargoid Sensor/@comment-26579663-20150904174921/@comment-26009169-20150905200020\nTalk:Thargoid Sensor/@comment-26579663-20150904174921/@comment-26569495-20150905200013\nTalk:Thargoid Sensor/@comment-26579663-20150904174921/@comment-26579663-20150905180613\nTalk:Thargoid Sensor/@comment-26579663-20150904174921/@comment-26579663-20150905195040\nTalk:Thargoid Sensor/@comment-26919695-20151213221038\nTalk:Thargoid Sensor/@comment-26953897-20150903015634\nTalk:Thargoid Sensor/@comment-26953897-20150903015634/@comment-26569495-20150903021313\nTalk:Thargoid Sensor/@comment-27574709-20160109181433\nTalk:Thargoid Sensor/@comment-27893582-20160625014509\nTalk:Thargoid Sensor/@comment-27893582-20160625014509/@comment-29011619-20160712131715\nTalk:Thargoid Sensor/@comment-27893582-20160625014509/@comment-95.123.63.35-20160626225549\nTalk:Thargoid Sensor/@comment-28971373-20160709013517\nTalk:Thargoid Sensor/@comment-30643772-20161203084416\nTalk:Thargoid Sensor/@comment-30643772-20161203084416/@comment-5959508-20161203112203\nTalk:Thargoid Sensor/@comment-30643772-20161203084416/@comment-5959508-20161203112511\nTalk:Thargoid Sensor/@comment-30643772-20161203084416/@comment-90.200.49.195-20181215133631\nTalk:Thargoid Sensor/@comment-49.183.154.208-20190310215638\nTalk:Thargoid Sensor/@comment-66.191.253.76-20160724002540\nTalk:Thargoid Sensor/@comment-70.198.72.154-20151014134143\nTalk:Thargoid Sensor/@comment-70.198.72.154-20151014134143/@comment-26569495-20151014142821\nTalk:Thargoid Sensor/@comment-72.241.143.238-20150829001931\nTalk:Thargoid Sensor/@comment-72.241.143.238-20150829001931/@comment-26569495-20150830002142\nTalk:Thargoid Sensor/@comment-72.241.143.238-20150829001931/@comment-72.241.143.238-20150907160145\nTalk:Thargoid Sensor/@comment-73.186.187.144-20160814205545\nTalk:Thargoid Sensor/@comment-78.25.122.233-20160703214441\nTalk:Thargoid Sensor/@comment-78.25.122.233-20160703214441/@comment-28918893-20160703221525\nTalk:Thargoid Sensor/@comment-78.25.122.233-20160703214441/@comment-29011619-20160712131358\nTalk:Thargoid Sensor/@comment-80.222.114.254-20151015095959\nTalk:Thargoid Sensor/@comment-81.106.30.12-20160814145515\nTalk:Thargoid Sensor/@comment-81.106.30.12-20160814151832\nTalk:Thargoid Sensor/@comment-81.174.168.37-20170820090320\nTalk:Thargoid Sensor/@comment-82.16.119.45-20160803001008\nTalk:Thargoid Sensor/@comment-82.16.119.45-20160803001008/@comment-192.136.161.248-20160803182410\nTalk:Thargoid Sensor/@comment-82.16.119.45-20160803001008/@comment-82.16.119.45-20160803012451\nTalk:Thargoid Sensor/@comment-82.16.196.92-20160819202715\nTalk:Thargoid Sensor/@comment-82.16.196.92-20160819202715/@comment-216.188.218.58-20181229194038\nTalk:Thargoid Sensor/@comment-86.139.72.33-20150927193235\nTalk:Thargoid Sensor/@comment-86.139.72.33-20150927193235/@comment-26569495-20150927214122\nTalk:Thargoid Sensor/@comment-86.139.72.33-20150927193235/@comment-26569495-20150927220812\nTalk:Thargoid Sensor/@comment-86.139.72.33-20150927193235/@comment-86.139.72.33-20150927215120\nTalk:Thargoid Sensor/@comment-92.129.108.11-20170106122115\nTalk:Thargoid Sensor/@comment-92.129.108.11-20170106122115/@comment-150.208.129.188-20170503132732\nTalk:Thargoid Sensor/@comment-92.129.108.11-20170106122115/@comment-172.127.158.139-20170119073234\nTalk:Thargoid Sensor/@comment-92.217.203.175-20160928165120\nTalk:Thargoid Sensor/@comment-92.67.11.1-20190117150623\nTalk:Thargoid Sensor/@comment-94.29.46.190-20151122210951\nTalk:Thargoid Surface Site/@comment-108.2.148.152-20170627144352\nTalk:Thargoid Surface Site/@comment-108.2.148.152-20170627144352/@comment-173.69.157.180-20170702001643\nTalk:Thargoid Surface Site/@comment-187.64.91.253-20181002195105\nTalk:Thargoid Surface Site/@comment-188.108.149.6-20170802202631\nTalk:Thargoid Surface Site/@comment-188.108.149.6-20170802202631/@comment-71.86.105.34-20171002191622\nTalk:Thargoid Surface Site/@comment-2001:8A0:65B3:7C00:3D1C:3F36:1BCE:BEB9-20191022222637\nTalk:Thargoid Surface Site/@comment-24.107.142.252-20170731172605\nTalk:Thargoid Surface Site/@comment-24.107.142.252-20170731172709\nTalk:Thargoid Surface Site/@comment-24.107.142.252-20170731172709/@comment-26810597-20170731214723\nTalk:Thargoid Surface Site/@comment-24.112.194.111-20171010205515\nTalk:Thargoid Surface Site/@comment-24.112.194.111-20171010205515/@comment-26810597-20171010210719\nTalk:Thargoid Surface Site/@comment-2600:8800:6984:AB00:3CA6:934C:8BFC:2051-20171222204304\nTalk:Thargoid Surface Site/@comment-2600:8800:6984:AB00:3CA6:934C:8BFC:2051-20171222204304/@comment-2601:280:103:F827:1F1:B6AC:594D:81AA-20180615142054\nTalk:Thargoid Surface Site/@comment-2600:8800:6984:AB00:3CA6:934C:8BFC:2051-20171222204304/@comment-47.201.141.98-20180211013013\nTalk:Thargoid Surface Site/@comment-2602:306:3115:4F0:5EB:6EA4:5309:CA7A-20170810135437\nTalk:Thargoid Surface Site/@comment-37.33.124.238-20180619064734\nTalk:Thargoid Surface Site/@comment-37332544-20181028173137\nTalk:Thargoid Surface Site/@comment-37332544-20181028173137/@comment-98.146.250.107-20191118073910\nTalk:Thargoid Surface Site/@comment-82.29.12.196-20170629022755\nTalk:Thargoid Surface Site/@comment-82.29.12.196-20170629022755/@comment-2155082-20170629031442\nTalk:Thargoid Surface Site/@comment-82.29.12.196-20170629022755/@comment-2601:588:C503:E017:E9D9:B46C:4E8F:363B-20171028150746\nTalk:Thargon/@comment-90.187.29.49-20190513062703\nTalk:Thargon/@comment-98.113.25.115-20171016025751\nTalk:The Abyss/@comment-2601:280:5A80:48C:D897:5D51:3780:8D37-20180621002745\nTalk:The Abyss/@comment-2601:280:5A80:48C:D897:5D51:3780:8D37-20180621002745/@comment-192.136.170.98-20181127043338\nTalk:The Abyss/@comment-2601:280:5A80:48C:D897:5D51:3780:8D37-20180621002745/@comment-90.200.46.38-20181126224856\nTalk:The Abyss/@comment-30928085-20170316101502\nTalk:The Abyss/@comment-88.114.194.176-20190522194600\nTalk:The Abyss/@comment-94.12.31.80-20170723204900\nTalk:The Club/@comment-176.78.158.9-20190505143128\nTalk:The Club/@comment-176.78.158.9-20190505143128/@comment-185.31.50.30-20190916112018\nTalk:The Club/@comment-187.23.101.236-20171012003440\nTalk:The Club/@comment-2604:2D80:C406:813B:44B0:A72E:979D:18B7-20190304033839\nTalk:The Club/@comment-43495716-20200803031743\nTalk:The Club/@comment-71.86.86.137-20200205114027\nTalk:The Club/@comment-903860-20180912022108\nTalk:The Conduit (Megaship)/@comment-176.78.158.9-20190512233409\nTalk:The Conduit (Megaship)/@comment-176.78.158.9-20190512233409/@comment-2605:E000:110E:837E:7DCA:DAA8:A801:350E-20190516085938\nTalk:The Conduit (Megaship)/@comment-198.48.128.84-20190607160305\nTalk:The Dark Wheel/@comment-2.222.62.136-20150826162710\nTalk:The Dark Wheel/@comment-2.222.62.136-20150826162710/@comment-2001:8003:52AA:8000:CC5E:D52D:C1F2:E851-20180817013414\nTalk:The Dark Wheel/@comment-2403:6200:8851:D9AB:853:4DA:8E2D:7EA9-20190328181543\nTalk:The Dark Wheel/@comment-26014491-20150628011219\nTalk:The Dark Wheel/@comment-26014491-20150628011219/@comment-176.78.158.9-20190505151403\nTalk:The Dark Wheel/@comment-26014491-20150628011219/@comment-26014491-20150629042204\nTalk:The Dark Wheel/@comment-26014491-20150628011219/@comment-69.70.13.118-20150803180916\nTalk:The Dark Wheel/@comment-26014491-20150628011219/@comment-903860-20180916032920\nTalk:The Dark Wheel/@comment-27651029-20160121153530\nTalk:The Dark Wheel/@comment-46100736-20200615223130\nTalk:The Dweller/@comment-100.14.49.140-20171016221433\nTalk:The Dweller/@comment-100.14.49.140-20171016221433/@comment-73.181.197.88-20171211052605\nTalk:The Dweller/@comment-192.136.161.156-20160907123927\nTalk:The Dweller/@comment-192.136.161.156-20160907123927/@comment-174.127.236.94-20170705040156\nTalk:The Dweller/@comment-192.136.161.156-20160907123927/@comment-174.127.236.94-20170705040247\nTalk:The Dweller/@comment-192.136.161.156-20160907123927/@comment-174.127.236.94-20170705040329\nTalk:The Dweller/@comment-192.136.161.156-20160907123927/@comment-50.44.98.107-20170525045750\nTalk:The Dweller/@comment-2601:805:405:54EC:7DBA:A470:A8C4:2951-20180430024157\nTalk:The Dweller/@comment-2601:805:405:54EC:7DBA:A470:A8C4:2951-20180430024157/@comment-2601:805:405:54EC:7DBA:A470:A8C4:2951-20180430024458\nTalk:The Dweller/@comment-2601:881:200:4403:2D46:6B33:6DED:F373-20181113005057\nTalk:The Dweller/@comment-77.119.129.158-20170104153405\nTalk:The Gnosis/@comment-14.200.250.69-20180903152008\nTalk:The Gnosis/@comment-14.200.250.69-20180903152008/@comment-128.163.236.163-20180904193300\nTalk:The Gnosis/@comment-14.200.250.69-20180903152008/@comment-14.200.250.69-20180905104112\nTalk:The Gnosis/@comment-14.200.250.69-20180903152008/@comment-142.51.127.94-20180904171502\nTalk:The Gnosis/@comment-14.200.250.69-20180903152008/@comment-184.58.207.208-20180904094052\nTalk:The Gnosis/@comment-141.70.21.163-20180405191946\nTalk:The Gnosis/@comment-165.225.0.102-20180906183026\nTalk:The Gnosis/@comment-176.78.158.9-20190512202331\nTalk:The Gnosis/@comment-187.37.77.10-20180826234004\nTalk:The Gnosis/@comment-187.37.77.10-20180826234004/@comment-128.250.0.217-20180827013835\nTalk:The Gnosis/@comment-187.37.77.10-20180826234004/@comment-2601:643:C101:A5D0:387D:FA94:7031:3DBF-20180827004214\nTalk:The Gnosis/@comment-192.249.139.220-20180302152835\nTalk:The Gnosis/@comment-192.249.139.220-20180302152835/@comment-37.61.209.163-20180308092252\nTalk:The Gnosis/@comment-192.249.139.220-20180302152835/@comment-77.23.100.109-20180302194820\nTalk:The Gnosis/@comment-192.249.139.220-20180302152835/@comment-82.40.252.148-20180304161824\nTalk:The Gnosis/@comment-192.249.139.220-20180302152835/@comment-90.241.32.247-20180304005513\nTalk:The Gnosis/@comment-2405:7F00:AA07:5D00:9079:93C9:F552:A42B-20180512022050\nTalk:The Gnosis/@comment-2600:6C5D:5800:7F3:F5D4:A3A3:462F:9396-20181102111425\nTalk:The Gnosis/@comment-33259197-20171005062054\nTalk:The Gnosis/@comment-33259197-20171005062054/@comment-2804:7F0:E180:B889:57E:91F1:398C:A0D9-20171114201943\nTalk:The Gnosis/@comment-33493166-20190407083755\nTalk:The Gnosis/@comment-33493166-20190407083755/@comment-192.136.170.30-20190407141556\nTalk:The Gnosis/@comment-33493166-20190407083755/@comment-33493166-20190408165319\nTalk:The Gnosis/@comment-33835537-20171202033229\nTalk:The Gnosis/@comment-75.167.145.43-20171012063303\nTalk:The Gnosis/@comment-88.104.106.21-20180830081823\nTalk:The Gnosis/@comment-88.104.106.21-20180830081823/@comment-4616657-20180904041057\nTalk:The Golconda/@comment-2607:FB90:4C9F:B339:E36F:AFEF:D365:B8E9-20191117184708\nTalk:The Hunter/@comment-101.175.27.222-20160303194442\nTalk:The Hunter/@comment-101.175.27.222-20160303194442/@comment-192.136.174.152-20160303202459\nTalk:The Hunter/@comment-107.199.174.25-20160307042337\nTalk:The Hunter/@comment-107.199.174.25-20160307042337/@comment-192.136.174.152-20160307121935\nTalk:The Hunter/@comment-12.5.54.135-20151120163845\nTalk:The Hunter/@comment-12.5.54.135-20151120163845/@comment-24.27.75.33-20151229214818\nTalk:The Hunter/@comment-12.5.54.135-20151120163845/@comment-27311754-20151230000603\nTalk:The Hunter/@comment-120.144.54.250-20151015040959\nTalk:The Hunter/@comment-120.144.54.250-20151015040959/@comment-27311754-20151207134130\nTalk:The Hunter/@comment-162.210.127.60-20150330211716\nTalk:The Hunter/@comment-162.210.127.60-20150330211716/@comment-76.67.109.27-20150401211933\nTalk:The Hunter/@comment-170.211.150.62-20171011150846\nTalk:The Hunter/@comment-170.211.150.62-20171011150846/@comment-109.228.166.46-20171023083624\nTalk:The Hunter/@comment-170.211.150.62-20171011150846/@comment-192.136.161.33-20171023132116\nTalk:The Hunter/@comment-188.223.218.29-20160329105255\nTalk:The Hunter/@comment-192.136.173.202-20160415113300\nTalk:The Hunter/@comment-192.136.173.202-20160415113300/@comment-27032150-20160418080229\nTalk:The Hunter/@comment-192.136.173.202-20160415113300/@comment-27032150-20160420212858\nTalk:The Hunter/@comment-192.136.173.202-20160415113300/@comment-93.143.89.105-20160421213048\nTalk:The Hunter/@comment-192.136.173.202-20160415113300/@comment-93.143.94.2-20160420174143\nTalk:The Hunter/@comment-194.22.238.75-20160222121404\nTalk:The Hunter/@comment-194.22.238.75-20160222121404/@comment-194.22.238.75-20160222121531\nTalk:The Hunter/@comment-194.22.238.75-20160222122031\nTalk:The Hunter/@comment-194.22.238.75-20160222122031/@comment-192.136.175.219-20160222124941\nTalk:The Hunter/@comment-213.89.71.206-20181101235855\nTalk:The Hunter/@comment-213.89.71.206-20181101235855/@comment-73.252.80.183-20181103234932\nTalk:The Hunter/@comment-2155082-20150924065046\nTalk:The Hunter/@comment-2155082-20150924065046/@comment-156.3.54.205-20150925183022\nTalk:The Hunter/@comment-217.40.212.140-20190109154631\nTalk:The Hunter/@comment-25074307-20141030233103\nTalk:The Hunter/@comment-25074307-20141030233103/@comment-158.222.131.209-20141031060939\nTalk:The Hunter/@comment-25074307-20141030233103/@comment-23.255.128.115-20151218085703\nTalk:The Hunter/@comment-25074307-20141030233103/@comment-25074307-20141031132243\nTalk:The Hunter/@comment-25074307-20141030233103/@comment-27311754-20151218112038\nTalk:The Hunter/@comment-2600:1702:3A90:6180:F44D:56A9:FC5D:E5B-20181231083442\nTalk:The Hunter/@comment-2600:1702:3A90:6180:F44D:56A9:FC5D:E5B-20181231083442/@comment-2602:306:CE29:B0D0:D843:E477:F58:DA4C-20190927075516\nTalk:The Hunter/@comment-2620:22:4000:E30:3FFB:59B1:4396:E475-20171111223319\nTalk:The Hunter/@comment-2620:22:4000:E30:3FFB:59B1:4396:E475-20171111223319/@comment-77.179.200.183-20180629142407\nTalk:The Hunter/@comment-26227424-20160608181843\nTalk:The Hunter/@comment-26304615-20150722093900\nTalk:The Hunter/@comment-27417162-20151224043916\nTalk:The Hunter/@comment-27417162-20151224043916/@comment-27311754-20151224213629\nTalk:The Hunter/@comment-27417162-20151224043916/@comment-71.57.181.142-20151227202129\nTalk:The Hunter/@comment-27511717-20160104040810\nTalk:The Hunter/@comment-27511717-20160104040810/@comment-99.239.113.223-20160110173638\nTalk:The Hunter/@comment-44180665-20200522165030\nTalk:The Hunter/@comment-5.150.102.128-20180619144105\nTalk:The Hunter/@comment-5.150.102.128-20180619144105/@comment-193.191.248.132-20180702064440\nTalk:The Hunter/@comment-68.14.159.113-20150528062014\nTalk:The Hunter/@comment-68.14.159.113-20150528062014/@comment-156.3.54.203-20150529192849\nTalk:The Hunter/@comment-68.14.159.113-20150528062014/@comment-84.195.8.142-20150528160820\nTalk:The Hunter/@comment-68.14.159.113-20150528062014/@comment-95.90.192.54-20150607094434\nTalk:The Hunter/@comment-70.180.91.46-20160905165011\nTalk:The Hunter/@comment-72.94.83.23-20160928183040\nTalk:The Hunter/@comment-72.94.83.23-20160928183040/@comment-192.136.161.156-20160929013919\nTalk:The Hunter/@comment-72.94.83.23-20160928183040/@comment-2155082-20160929035952\nTalk:The Hunter/@comment-72.94.83.23-20160928183040/@comment-99.28.228.22-20170519150049\nTalk:The Hunter/@comment-73.6.162.234-20150223010347\nTalk:The Hunter/@comment-73.6.162.234-20150223010347/@comment-105.210.129.83-20150313162703\nTalk:The Hunter/@comment-75.164.241.222-20160727202709\nTalk:The Hunter/@comment-75.164.241.222-20160727202709/@comment-26227424-20160728215319\nTalk:The Hunter/@comment-75.164.241.222-20160727202709/@comment-66.215.76.23-20160805161950\nTalk:The Hunter/@comment-75.164.241.222-20160727202709/@comment-79.112.177.99-20160815104137\nTalk:The Hunter/@comment-76.184.2.239-20150310223659\nTalk:The Hunter/@comment-76.184.2.239-20150310223659/@comment-91.159.105.72-20150530102351\nTalk:The Hunter/@comment-79.112.177.99-20160816111518\nTalk:The Hunter/@comment-79.112.177.99-20160816111518/@comment-192.136.161.248-20160816112720\nTalk:The Hunter/@comment-79.112.177.99-20160816111518/@comment-27032150-20160819104236\nTalk:The Hunter/@comment-79.112.177.99-20160816111518/@comment-79.112.137.47-20160819085258\nTalk:The Hunter/@comment-79.112.177.99-20160816111518/@comment-85.247.81.152-20160820203734\nTalk:The Hunter/@comment-79.132.19.230-20150720201037\nTalk:The Hunter/@comment-80.193.245.85-20150531131429\nTalk:The Hunter/@comment-84.82.15.219-20150613113538\nTalk:The Hunter/@comment-84.82.15.219-20150613113538/@comment-101.183.254.182-20151010055704\nTalk:The Hunter/@comment-84.93.189.188-20141214145236\nTalk:The Hunter/@comment-84.93.189.188-20141214145236/@comment-205.222.248.112-20141218133415\nTalk:The Hunter/@comment-84.93.189.188-20141214145236/@comment-31.14.128.21-20141217185056\nTalk:The Hunter/@comment-84.93.189.188-20141214145236/@comment-81.174.201.41-20141218181731\nTalk:The Hunter/@comment-85.165.152.56-20150708084449\nTalk:The Hunter/@comment-85.165.152.56-20150708084449/@comment-100.0.90.43-20150717182230\nTalk:The Hunter/@comment-85.165.152.56-20150708084449/@comment-89.137.153.149-20150717105246\nTalk:The Hunter/@comment-88.85.44.241-20150214130208\nTalk:The Hunter/@comment-91.6.74.105-20150610155220\nTalk:The Hunter/@comment-91.6.74.105-20150610155220/@comment-26009169-20150610165927\nTalk:The Hunter/@comment-93.143.107.104-20160414110830\nTalk:The Hunter/@comment-93.143.107.104-20160414110830/@comment-27032150-20160414133106\nTalk:The Hunter/@comment-93.143.107.104-20160414110830/@comment-27986221-20160415103930\nTalk:The Hunter/@comment-93.143.107.104-20160414110830/@comment-93.143.107.104-20160414110923\nTalk:The Hunter/@comment-93.143.107.104-20160414110830/@comment-93.143.107.104-20160414111209\nTalk:The Hunter/@comment-93.143.107.104-20160414110830/@comment-93.143.94.2-20160420174554\nTalk:The Hunter/@comment-94.242.69.138-20160212134316\nTalk:The Hunter/@comment-94.242.69.138-20160212134316/@comment-192.136.172.239-20160212140212\nTalk:The Hunter/@comment-94.242.69.138-20160212134316/@comment-194.22.238.75-20160222121602\nTalk:The Hunter/@comment-97.90.198.28-20150924061349\nTalk:The Hunter/@comment-98.142.75.64-20141226031403\nTalk:The Hutton Mug/@comment-2.102.132.23-20180616223833\nTalk:The Hutton Mug/@comment-2.102.132.23-20180616223833/@comment-180.244.235.108-20191216132923\nTalk:The Hutton Mug/@comment-2.102.132.23-20180616223833/@comment-67.160.84.26-20190608081547\nTalk:The Hutton Mug/@comment-2001:67C:2660:425:29:0:0:582-20190509130659\nTalk:The Hutton Mug/@comment-2602:306:CE29:B0D0:19AC:354E:7BE2:2595-20191004213116\nTalk:The Hutton Mug/@comment-27375779-20200619110433\nTalk:The Hutton Mug/@comment-29011619-20161205124550\nTalk:The Hutton Mug/@comment-2A02:C7F:82C:A900:4CE9:F46E:F3AC:3172-20180702215000\nTalk:The Hutton Mug/@comment-2A02:C7F:82C:A900:4CE9:F46E:F3AC:3172-20180702215000/@comment-174.252.204.225-20190807014637\nTalk:The Hutton Mug/@comment-33823123-20200226101032\nTalk:The Hutton Mug/@comment-45654584-20200501050306\nTalk:The Hutton Mug/@comment-71.233.88.91-20160619004342\nTalk:The Hutton Mug/@comment-71.233.88.91-20160619004342/@comment-192.136.161.156-20161003170811\nTalk:The Hutton Mug/@comment-71.233.88.91-20160619004342/@comment-203.40.33.160-20160731152552\nTalk:The Hutton Mug/@comment-71.233.88.91-20160619004342/@comment-216.37.75.146-20180126224213\nTalk:The Hutton Mug/@comment-71.233.88.91-20160619004342/@comment-37171230-20181115134212\nTalk:The Hutton Mug/@comment-71.233.88.91-20160619004342/@comment-87.205.172.25-20160715141853\nTalk:The Hutton Mug/@comment-71.233.88.91-20160619004342/@comment-93.11.182.226-20180106015330\nTalk:The Hutton Mug/@comment-71.233.88.91-20160619004342/@comment-95.211.188.19-20171116042211\nTalk:The Hutton Mug/@comment-77.50.26.143-20160930210725\nTalk:The Hutton Mug/@comment-77.50.26.143-20160930210725/@comment-88.152.98.102-20161003120846\nTalk:The Hutton Mug/@comment-95.91.228.62-20160101224218\nTalk:The Hutton Mug/@comment-95.91.228.62-20160101224218/@comment-2A02:8388:C81:9F00:74BF:A44C:BDCD:C1D2-20191124071505\nTalk:The Hutton Mug/@comment-96.225.49.71-20180226002144\nTalk:The Hutton Mug/@comment-96.225.49.71-20180226002144/@comment-37171230-20181115134355\nTalk:The Sarge/@comment-2601:189:C37F:9A42:FDF7:6EC8:B439:8FC9-20190811230603\nTalk:The Sarge/@comment-37846325-20200706203219\nTalk:The Sarge/@comment-95.145.123.137-20171102072305\nTalk:The Sarge/@comment-95.145.123.137-20171102072305/@comment-2601:189:C37F:9A42:DD07:B202:EB7F:ED9C-20190721044241\nTalk:The Scourge/@comment-85.210.64.14-20191018201227\nTalk:The Scourge/@comment-85.210.64.14-20191018201227/@comment-2604:6000:A407:4900:CCD7:8264:EDDF:7A5E-20191020010343\nTalk:Theo Acosta/@comment-37092034-20190922020704\nTalk:Theo Acosta/@comment-37092034-20190922020704/@comment-2607:FB90:4E35:E78F:8C33:6C8E:1527:28D6-20191112051755\nTalk:Thermal Conduit/@comment-2001:1A88:19F:4C00:34AC:6AAA:6D8D:174C-20190331134629\nTalk:Thermal Conduit/@comment-2606:6000:D705:2600:FD40:2B50:C122:A778-20180408234500\nTalk:Thermal Conduit/@comment-2606:6000:D705:2600:FD40:2B50:C122:A778-20180408234500/@comment-2A01:C23:7C3D:4300:2C06:F74C:2557:A221-20180730083332\nTalk:Thermal Resistant Armour/@comment-90.200.46.38-20181130123117\nTalk:Thermal Shock/@comment-87.140.82.191-20190326094448\nTalk:Thermal Shock/@comment-87.140.82.191-20190326094448/@comment-192.136.170.98-20190328205527\nTalk:Thermal Shock/@comment-87.140.82.191-20190326094448/@comment-45854299-20200903214119\nTalk:Thermal Vent/@comment-104.152.207.100-20180902041246\nTalk:Thermal Vent/@comment-104.152.207.100-20180902041246/@comment-170.185.126.17-20191111142318\nTalk:Thermal Vent/@comment-2602:306:CE29:B0D0:5D22:1D64:56F:78C2-20191005231908\nTalk:Thermal Vent/@comment-2602:306:CE29:B0D0:5D22:1D64:56F:78C2-20191005231908/@comment-27941085-20191019183625\nTalk:Thermal Vent/@comment-2604:6000:1517:8053:A05F:AD12:2A29:189C-20181012125942\nTalk:Thermal Vent/@comment-2604:6000:1517:8053:A05F:AD12:2A29:189C-20181012125942/@comment-170.185.126.17-20191111142215\nTalk:Thermal Vent/@comment-2A01:CB11:3E1:3D00:8CB2:C071:F968:EA6C-20180726212341\nTalk:Thermal Vent/@comment-2A01:CB11:3E1:3D00:8CB2:C071:F968:EA6C-20180726212341/@comment-170.185.126.17-20191111142445\nTalk:Thermal Vent/@comment-32497773-20190211235630\nTalk:Thermal Vent/@comment-32497773-20190211235630/@comment-170.185.126.17-20191111142137\nTalk:Thermal Vent/@comment-32497773-20190211235630/@comment-192.136.170.98-20190212040429\nTalk:Thermal Vent/@comment-44180665-20200524050938\nTalk:Thermal Vent/@comment-74.114.172.7-20190212155019\nTalk:Thermal Vent/@comment-74.114.172.7-20190212155019/@comment-170.185.126.17-20191111142101\nTalk:Thermal Vent/@comment-74.114.172.7-20190212155019/@comment-192.136.170.98-20190212193801\nTalk:Thermal Vent/@comment-81.106.140.16-20190818193405\nTalk:Thermal Vent/@comment-81.106.140.16-20190818193405/@comment-192.136.172.44-20190818210426\nTalk:Thermal Vent/@comment-96.48.190.129-20181118053556\nTalk:Thermal Vent/@comment-96.48.190.129-20181118053556/@comment-184.160.91.54-20190426085750\nTalk:Third Party Tools/@comment-109.27.124.46-20180307102611\nTalk:Third Party Tools/@comment-11990868-20150115203353\nTalk:Third Party Tools/@comment-173.169.188.219-20171002011103\nTalk:Third Party Tools/@comment-173.18.24.4-20190908131608\nTalk:Third Party Tools/@comment-174.56.11.88-20170514024814\nTalk:Third Party Tools/@comment-188.173.30.182-20190114214802\nTalk:Third Party Tools/@comment-188.173.30.182-20190114214802/@comment-192.136.170.98-20190115042815\nTalk:Third Party Tools/@comment-192.136.175.137-20160511193905\nTalk:Third Party Tools/@comment-193.48.130.135-20150527075038\nTalk:Third Party Tools/@comment-2.234.178.38-20151019101904\nTalk:Third Party Tools/@comment-26006358-20150115171914\nTalk:Third Party Tools/@comment-2600:6C48:457F:FC8E:48AD:912E:7764:D03-20170927185955\nTalk:Third Party Tools/@comment-60.240.147.11-20150804010904\nTalk:Third Party Tools/@comment-74.78.96.69-20150419232436\nTalk:Third Party Tools/@comment-75.5.248.67-20170904184147\nTalk:Third Party Tools/@comment-75.5.248.67-20170904184147/@comment-26009169-20170904223140\nTalk:Third Party Tools/@comment-75.5.248.67-20170904184147/@comment-2604:6000:1309:C277:0:3DE7:BA3A:FFEC-20171108015116\nTalk:Third Party Tools/@comment-82.219.52.13-20180502124217\nTalk:Third Party Tools/@comment-89.168.207.223-20150512011606\nTalk:Third Party Tools/@comment-89.168.207.223-20150512011606/@comment-26009169-20150512013012\nTalk:Third Party Tools/@comment-90.181.68.241-20150116115757\nTalk:Thrusters\nTalk:Thrusters/@comment-145.132.121.77-20151007225607\nTalk:Thrusters/@comment-165.225.0.79-20180821195248\nTalk:Thrusters/@comment-165.225.0.79-20180821195248/@comment-90.200.46.38-20181109155955\nTalk:Thrusters/@comment-192.136.161.52-20161129213929\nTalk:Thrusters/@comment-192.136.161.52-20161129213929/@comment-187.159.242.47-20170909100507\nTalk:Thrusters/@comment-195.189.180.61-20151205161520\nTalk:Thrusters/@comment-199.46.11.200-20171129182934\nTalk:Thrusters/@comment-199.46.11.200-20171129182934/@comment-3428652-20171129191639\nTalk:Thrusters/@comment-25803634-20180415015750\nTalk:Thrusters/@comment-25985607-20150217183230\nTalk:Thrusters/@comment-46.65.148.148-20150106111208\nTalk:Thrusters/@comment-46.65.148.148-20150106111208/@comment-12138097-20150106200803\nTalk:Thrusters/@comment-46.65.148.148-20150106111208/@comment-178.238.155.181-20150203235109\nTalk:Thrusters/@comment-46.65.148.148-20150106111208/@comment-195.212.29.173-20150522052204\nTalk:Thrusters/@comment-46.65.148.148-20150106111208/@comment-86.162.139.148-20150328100027\nTalk:Thrusters/@comment-4968814-20141221182037\nTalk:Thrusters/@comment-4968814-20141221182037/@comment-25936977-20150109122626\nTalk:Thrusters/@comment-4968814-20141221182037/@comment-4968814-20141226170813\nTalk:Thrusters/@comment-4968814-20141221182037/@comment-4968814-20150109173109\nTalk:Thrusters/@comment-4968814-20141221182037/@comment-70.161.136.112-20150101141258\nTalk:Thrusters/@comment-4968814-20141221182037/@comment-92.44.196.43-20141224012532\nTalk:Thrusters/@comment-90.200.46.38-20181109103717\nTalk:Thrusters/@comment-90.200.46.38-20181109103717/@comment-192.136.170.98-20181208041331\nTalk:Thrusters/@comment-90.200.46.38-20181109103717/@comment-79.65.200.95-20181207213545\nTalk:Thrusters/@comment-93.237.119.187-20170211234958\nTalk:Thrusters/@comment-93.237.119.187-20170211234958/@comment-192.136.161.52-20170501160316\nTalk:Thrusters/@comment-93.237.119.187-20170211234958/@comment-93.185.27.186-20170501155102\nTalk:Tiana Fortune/@comment-66.30.147.96-20171128211700\nTalk:Tiana Fortune/@comment-66.30.147.96-20171128211700/@comment-50.96.240.123-20180709165105\nTalk:Tionisla/@comment-176.78.158.9-20190505143446\nTalk:Tionisla/@comment-176.78.158.9-20190505143446/@comment-82.18.58.247-20200216213117\nTalk:Titanium/@comment-149.101.1.120-20160818165425\nTalk:Titanium/@comment-149.101.1.120-20160818165425/@comment-4900524-20160818165842\nTalk:Titanium/@comment-149.101.1.120-20160818165425/@comment-99.197.240.193-20180114143740\nTalk:Tobacco/@comment-71.227.176.100-20150719095719\nTalk:Tobacco/@comment-71.227.176.100-20150719095719/@comment-192.198.243.214-20161025160707\nTalk:Tobacco/@comment-71.227.176.100-20150719095719/@comment-26748640-20150719163352\nTalk:Tobacco/@comment-71.227.176.100-20150719095719/@comment-90.200.46.38-20181127202244\nTalk:Tobacco/@comment-96.37.192.150-20160914213859\nTalk:Tod \"The Blaster\" McQuinn/@comment-192.109.140.183-20180317153155\nTalk:Tod \"The Blaster\" McQuinn/@comment-192.109.140.183-20180317153155/@comment-2001:8003:11B3:6E00:4DFB:386E:BB3B:6A18-20180327015311\nTalk:Tod \"The Blaster\" McQuinn/@comment-210.84.10.40-20200201120241\nTalk:Tod \"The Blaster\" McQuinn/@comment-2155082-20160805042021\nTalk:Tod \"The Blaster\" McQuinn/@comment-2155082-20160805042021/@comment-2155082-20160806032920\nTalk:Tod \"The Blaster\" McQuinn/@comment-2155082-20160805042021/@comment-2155082-20160806034852\nTalk:Tod \"The Blaster\" McQuinn/@comment-2155082-20160805042021/@comment-2155082-20160806035210\nTalk:Tod \"The Blaster\" McQuinn/@comment-2155082-20160805042021/@comment-29443939-20160805105427\nTalk:Tod \"The Blaster\" McQuinn/@comment-2155082-20160805042021/@comment-29443939-20160805112755\nTalk:Tod \"The Blaster\" McQuinn/@comment-217.96.130.219-20190411092549\nTalk:Tod \"The Blaster\" McQuinn/@comment-50.53.178.6-20161107064407\nTalk:Tod \"The Blaster\" McQuinn/@comment-50.53.178.6-20161107064407/@comment-30197446-20170430072728\nTalk:Tod \"The Blaster\" McQuinn/@comment-72.199.248.24-20170814210653\nTalk:Tod \"The Blaster\" McQuinn/@comment-72.199.248.24-20170814210653/@comment-31363749-20170814223105\nTalk:Tod \"The Blaster\" McQuinn/@comment-72.199.248.24-20170814210653/@comment-72.199.248.24-20170814210741\nTalk:Torc/@comment-74.249.112.106-20180920234942\nTalk:Torc/@comment-74.249.112.106-20180920234942/@comment-166.137.102.34-20181001020011\nTalk:Torpedo Pylon/@comment-138.163.0.41-20150112175414\nTalk:Torpedo Pylon/@comment-138.163.0.41-20150112175414/@comment-12138097-20150112220446\nTalk:Torpedo Pylon/@comment-138.163.0.41-20150112175414/@comment-62.159.185.194-20170130095904\nTalk:Torpedo Pylon/@comment-138.32.235.36-20150910043235\nTalk:Torpedo Pylon/@comment-153.107.192.212-20160406001131\nTalk:Torpedo Pylon/@comment-153.107.192.212-20160406001131/@comment-28775281-20160713230926\nTalk:Torpedo Pylon/@comment-156.3.54.202-20150511201927\nTalk:Torpedo Pylon/@comment-195.145.86.234-20170920123320\nTalk:Torpedo Pylon/@comment-2001:8003:6D05:DE00:7C8A:76CB:23ED:BE8B-20200126151555\nTalk:Torpedo Pylon/@comment-26344565-20150503062309\nTalk:Torpedo Pylon/@comment-26344565-20150503062309/@comment-204.112.34.99-20150509104532\nTalk:Torpedo Pylon/@comment-27115814-20151207200927\nTalk:Torpedo Pylon/@comment-27115814-20151207200927/@comment-192.136.170.98-20181125155556\nTalk:Torpedo Pylon/@comment-27115814-20151207200927/@comment-2.85.231.5-20151224203659\nTalk:Torpedo Pylon/@comment-27115814-20151207200927/@comment-90.200.46.38-20181124164812\nTalk:Torpedo Pylon/@comment-31.52.45.250-20150330131848\nTalk:Torpedo Pylon/@comment-35677164-20180524132856\nTalk:Torpedo Pylon/@comment-42.112.93.221-20161008200616\nTalk:Torpedo Pylon/@comment-44180665-20200520112831\nTalk:Torpedo Pylon/@comment-70.161.131.198-20150201134242\nTalk:Torpedo Pylon/@comment-71.84.190.154-20191018101650\nTalk:Torpedo Pylon/@comment-71.84.190.154-20191018101650/@comment-4986699-20191114190222\nTalk:Torpedo Pylon/@comment-72.241.143.238-20150630065244\nTalk:Torpedo Pylon/@comment-73.216.17.124-20151015221808\nTalk:Torpedo Pylon/@comment-73.216.17.124-20151015221808/@comment-1948110-20170205050005\nTalk:Torpedo Pylon/@comment-73.216.17.124-20151015221808/@comment-2600:6C5D:6300:801:904C:3F2F:F7C9:F005-20180916211437\nTalk:Torpedo Pylon/@comment-73.216.17.124-20151015221808/@comment-26599825-20151016082558\nTalk:Torpedo Pylon/@comment-76.25.148.211-20150222053841\nTalk:Torpedo Pylon/@comment-88.112.91.114-20141230113226\nTalk:Torpedo Pylon/@comment-88.112.91.114-20141230113226/@comment-176.250.99.141-20141231235639\nTalk:Torpedo Pylon/@comment-88.112.91.114-20141230113226/@comment-185.37.87.177-20150322182547\nTalk:Torpedo Pylon/@comment-88.112.91.114-20141230113226/@comment-66.87.70.202-20150328221211\nTalk:Torpedo Pylon/@comment-88.112.91.114-20141230113226/@comment-91.9.174.107-20150114110339\nTalk:Torpedo Pylon/@comment-88.85.155.146-20150402185746\nTalk:Torpedo Pylon/@comment-90.200.46.38-20181122000041\nTalk:Torpedo Pylon/@comment-90.200.46.38-20181122000041/@comment-193.239.56.202-20190305202258\nTalk:Torpedo Pylon/@comment-90.200.46.38-20181122000041/@comment-90.201.205.200-20190511235504\nTalk:Torpedo Pylon/@comment-90.48.60.238-20151021015408\nTalk:Torpedo Pylon/@comment-97.101.181.23-20160117051335\nTalk:Torpedo Pylon/@comment-99.255.34.27-20190715004732\nTalk:Tourist Beacon/@comment-122.58.142.64-20180701145317\nTalk:Tourist Beacon/@comment-78.100.214.50-20171101203918\nTalk:Tourist Beacon/@comment-78.100.214.50-20171101203918/@comment-59.102.85.32-20190330102456\nTalk:Tourist Beacon/@comment-78.100.214.50-20171101203918/@comment-67.3.115.198-20180108091343\nTalk:Toxic Waste/@comment-217.104.28.102-20180804105323\nTalk:Trade Dividend/@comment-2601:1C2:1000:9317:5C24:7B2D:D8D9:C3E1-20190719014855\nTalk:Trade Dividend/@comment-2601:1C2:1000:9317:5C24:7B2D:D8D9:C3E1-20190719014855/@comment-2.29.246.183-20190808173247\nTalk:Trade Dividend/@comment-2601:1C2:1000:9317:5C24:7B2D:D8D9:C3E1-20190719014855/@comment-2096048-20191018190309\nTalk:Trader/@comment-101.182.92.46-20161130061322\nTalk:Trader/@comment-101.182.92.46-20161130061322/@comment-73.12.160.229-20161202050359\nTalk:Trader/@comment-109.148.25.152-20150814145941\nTalk:Trader/@comment-123.2.108.115-20150411130835\nTalk:Trader/@comment-123.2.108.115-20150411130835/@comment-123.2.108.115-20150411131022\nTalk:Trader/@comment-123.2.108.115-20150411130835/@comment-123.2.108.115-20150412022708\nTalk:Trader/@comment-123.2.108.115-20150411130835/@comment-26009169-20150411133142\nTalk:Trader/@comment-123.3.162.100-20171019051342\nTalk:Trader/@comment-140.254.77.146-20161010184855\nTalk:Trader/@comment-151.228.110.237-20170831115021\nTalk:Trader/@comment-156.3.54.203-20150506145614\nTalk:Trader/@comment-156.3.54.203-20150506145614/@comment-156.3.54.203-20150507154408\nTalk:Trader/@comment-156.3.54.203-20150506145614/@comment-156.3.54.203-20150507154636\nTalk:Trader/@comment-156.3.54.203-20150506145614/@comment-26014491-20150523202849\nTalk:Trader/@comment-156.3.54.203-20150506145614/@comment-62.168.3.158-20150507062535\nTalk:Trader/@comment-156.3.54.203-20150506145614/@comment-62.168.3.158-20150513102427\nTalk:Trader/@comment-156.3.54.203-20150506145614/@comment-66.128.80.87-20151205110854\nTalk:Trader/@comment-1640573-20160107021051\nTalk:Trader/@comment-174.93.1.194-20190106134827\nTalk:Trader/@comment-174.93.1.194-20190106134827/@comment-108.39.88.44-20190115222713\nTalk:Trader/@comment-174.93.1.194-20190106134827/@comment-209.249.71.37-20190117163303\nTalk:Trader/@comment-178.121.142.230-20150620095040\nTalk:Trader/@comment-178.121.142.230-20150620095040/@comment-178.121.180.102-20150623192145\nTalk:Trader/@comment-178.121.142.230-20150620095040/@comment-26009169-20150620122242\nTalk:Trader/@comment-192.136.173.19-20160525201632\nTalk:Trader/@comment-192.136.173.19-20160525201632/@comment-125.237.3.1-20161017020330\nTalk:Trader/@comment-192.136.173.19-20160525201632/@comment-81.25.53.116-20160610112527\nTalk:Trader/@comment-193.170.225.224-20150617134102\nTalk:Trader/@comment-217.233.83.192-20150207065806\nTalk:Trader/@comment-25985607-20150502203132\nTalk:Trader/@comment-2602:306:CE29:B0D0:9C67:1E8D:BAF0:BB47-20190918104900\nTalk:Trader/@comment-26320941-20150417142155\nTalk:Trader/@comment-26344565-20150503062024\nTalk:Trader/@comment-26537865-20151018012826\nTalk:Trader/@comment-26987932-20160209024044\nTalk:Trader/@comment-26987932-20160209024044/@comment-174.89.153.58-20170307035258\nTalk:Trader/@comment-26987932-20160209024044/@comment-2155082-20170307040538\nTalk:Trader/@comment-26987932-20160209024044/@comment-26391992-20160209184115\nTalk:Trader/@comment-2A02:C7F:3050:6500:98AD:65E0:AF38:4933-20170723143854\nTalk:Trader/@comment-37.4.163.125-20141224184351\nTalk:Trader/@comment-37104439-20181005102340\nTalk:Trader/@comment-37104439-20181009190952\nTalk:Trader/@comment-37104439-20181009190952/@comment-90.200.46.38-20181115014140\nTalk:Trader/@comment-37104439-20181009190952/@comment-91.140.88.13-20181101115050\nTalk:Trader/@comment-4968814-20150105183745\nTalk:Trader/@comment-4968814-20150115171055\nTalk:Trader/@comment-58.165.35.19-20151018064422\nTalk:Trader/@comment-58.165.35.19-20151018064422/@comment-121.222.22.233-20151022103441\nTalk:Trader/@comment-58.165.35.19-20151018064422/@comment-146.63.193.166-20151111015942\nTalk:Trader/@comment-58.165.35.19-20151018064422/@comment-75.137.11.199-20160104065550\nTalk:Trader/@comment-58.165.35.19-20151018064422/@comment-81.158.2.193-20151018214510\nTalk:Trader/@comment-62.253.203.188-20150911154723\nTalk:Trader/@comment-66.130.149.136-20180701213003\nTalk:Trader/@comment-67.190.51.3-20151016064927\nTalk:Trader/@comment-67.190.51.3-20151016064927/@comment-24.188.190.253-20160102185854\nTalk:Trader/@comment-68.224.193.99-20150721020609\nTalk:Trader/@comment-68.224.193.99-20150721020609/@comment-60.224.133.199-20150907145039\nTalk:Trader/@comment-69.180.44.158-20150907055304\nTalk:Trader/@comment-69.180.44.158-20150907055304/@comment-26969605-20150908133306\nTalk:Trader/@comment-69.180.44.158-20150907055304/@comment-69.180.44.158-20150908132744\nTalk:Trader/@comment-69.196.162.221-20150113200138\nTalk:Trader/@comment-69.196.162.221-20150113200138/@comment-4968814-20150115185127\nTalk:Trader/@comment-69.196.162.221-20150113200138/@comment-72.208.120.170-20150120082727\nTalk:Trader/@comment-69.204.184.4-20151029023043\nTalk:Trader/@comment-69.204.184.4-20151029023043/@comment-46.103.94.82-20160110231908\nTalk:Trader/@comment-69.204.184.4-20151029023043/@comment-66.169.121.63-20151114191855\nTalk:Trader/@comment-69.204.184.4-20151029023043/@comment-94.248.209.240-20151229105448\nTalk:Trader/@comment-71.104.58.19-20150317235928\nTalk:Trader/@comment-71.161.97.5-20190124085921\nTalk:Trader/@comment-72.208.120.170-20141230051852\nTalk:Trader/@comment-72.208.120.170-20141231061536\nTalk:Trader/@comment-72.208.120.170-20150101021915\nTalk:Trader/@comment-72.208.120.170-20150104061715\nTalk:Trader/@comment-73.220.202.212-20150705224007\nTalk:Trader/@comment-73.41.243.141-20150929025858\nTalk:Trader/@comment-76.120.223.100-20150111121455\nTalk:Trader/@comment-76.120.223.100-20150111121455/@comment-72.208.120.170-20150112012011\nTalk:Trader/@comment-76.120.223.100-20150111121455/@comment-72.208.120.170-20150112041411\nTalk:Trader/@comment-76.18.220.223-20150109013916\nTalk:Trader/@comment-77.37.171.53-20151004195643\nTalk:Trader/@comment-77.37.171.53-20151004195643/@comment-77.37.171.53-20151004200151\nTalk:Trader/@comment-77.53.215.6-20141223212358\nTalk:Trader/@comment-77.53.215.6-20141225163041\nTalk:Trader/@comment-78.149.187.168-20150426145630\nTalk:Trader/@comment-78.41.3.129-20150704143241\nTalk:Trader/@comment-78.43.75.252-20150328164151\nTalk:Trader/@comment-78.43.75.252-20150328164151/@comment-178.36.71.91-20150402001834\nTalk:Trader/@comment-79.205.114.244-20141230070609\nTalk:Trader/@comment-79.205.114.244-20141230070609/@comment-12138097-20141230082835\nTalk:Trader/@comment-79.205.114.244-20141230070609/@comment-217.233.86.74-20150109093547\nTalk:Trader/@comment-79.205.114.244-20141230070609/@comment-72.208.120.170-20141230080645\nTalk:Trader/@comment-79.232.221.239-20150612193816\nTalk:Trader/@comment-80.108.221.93-20150604131211\nTalk:Trader/@comment-80.108.221.93-20150604131211/@comment-82.24.227.152-20150824075711\nTalk:Trader/@comment-80.137.76.73-20190102192116\nTalk:Trader/@comment-81.132.32.71-20151011180750\nTalk:Trader/@comment-81.136.66.138-20150927161410\nTalk:Trader/@comment-81.136.66.138-20150927161410/@comment-24.188.190.253-20160102190053\nTalk:Trader/@comment-83.99.115.169-20141228191829\nTalk:Trader/@comment-85.0.193.79-20141227210905\nTalk:Trader/@comment-85.0.193.79-20141227210905/@comment-4968814-20150105183708\nTalk:Trader/@comment-86.177.92.14-20150723094958\nTalk:Trader/@comment-86.177.92.14-20150723094958/@comment-109.148.25.152-20150814151537\nTalk:Trader/@comment-86.177.92.14-20150723094958/@comment-26811967-20150723095202\nTalk:Trader/@comment-88.152.131.156-20150113020508\nTalk:Trader/@comment-88.152.131.156-20150113020508/@comment-88.152.131.156-20150113022702\nTalk:Trader/@comment-90.200.46.38-20181115014704\nTalk:Trader/@comment-90.200.46.38-20181115014704/@comment-90.200.46.38-20181115014822\nTalk:Trader/@comment-91.117.5.94-20160124012925\nTalk:Trader/@comment-91.117.5.94-20160124012925/@comment-27849996-20160222220835\nTalk:Trader/@comment-91.117.5.94-20160124012925/@comment-91.117.5.94-20160124012935\nTalk:Trader/@comment-91.186.50.177-20171014170532\nTalk:Trader/@comment-92.1.38.118-20170116125642\nTalk:Trader/@comment-94.112.71.190-20160102230727\nTalk:Trader/@comment-94.112.71.190-20160102230727/@comment-66.191.253.76-20160725211944\nTalk:Trader/@comment-94.112.71.190-20160102230727/@comment-86.185.135.6-20170401224735\nTalk:Trader/@comment-94.112.71.190-20160102230727/@comment-94.112.71.190-20160102231211\nTalk:Trader/@comment-94.223.175.124-20141225134804\nTalk:Trader/@comment-94.223.175.124-20141225134804/@comment-85.0.193.79-20141229095649\nTalk:Trader/@comment-95.148.76.215-20150310034958\nTalk:Trader/@comment-95.91.228.28-20160328144943\nTalk:Trader/@comment-95.91.228.28-20160328144943/@comment-121.216.21.52-20160502085357\nTalk:Trader/@comment-95.91.228.28-20160328144943/@comment-64.127.136.202-20160502131932\nTalk:Trader/@comment-95.91.228.28-20160328144943/@comment-82.145.220.235-20160716124828\nTalk:Trader/@comment-95.91.228.62-20151231174015\nTalk:Trader/@comment-98.239.48.227-20150221183547\nTalk:Trappist-1/@comment-35650861-20180723154913\nTalk:Trappist-1/@comment-35650861-20180723154913/@comment-43623494-20190906010947\nTalk:Trifid Nebula/@comment-2605:6000:1521:4BDD:781B:A5E4:4984:EA6A-20190904032225\nTalk:Trifid Nebula/@comment-2605:6000:1521:4BDD:781B:A5E4:4984:EA6A-20190904032225/@comment-2605:6000:1521:4BDD:781B:A5E4:4984:EA6A-20190904032445\nTalk:Trinkets of Hidden Fortune/@comment-172.83.18.141-20180725034856\nTalk:Trinkets of Hidden Fortune/@comment-173.239.228.46-20170628050319\nTalk:Trinkets of Hidden Fortune/@comment-198.100.63.215-20200105074645\nTalk:Trinkets of Hidden Fortune/@comment-2600:1700:9071:5260:CE9:CA7D:FF7D:82CE-20190916002346\nTalk:Trinkets of Hidden Fortune/@comment-2600:6C40:1080:D:0:179:7855:3E41-20190926035746\nTalk:Trinkets of Hidden Fortune/@comment-70.198.77.37-20150805182948\nTalk:Trinkets of Hidden Fortune/@comment-70.198.77.37-20150805182948/@comment-4986699-20150924063900\nTalk:Trinkets of Hidden Fortune/@comment-84.250.166.244-20160909213937\nTalk:Trinkets of Hidden Fortune/@comment-903860-20190106052805\nTalk:Trinkets of Hidden Fortune/@comment-903860-20190115232226\nTalk:Tritium/@comment-25450485-20200918000222\nTalk:Trouble Banking and Welfare Investments/@comment-45693047-20200804205233\nTalk:Trouble Banking and Welfare Investments/@comment-45693047-20200804205821\nTalk:Trumble/@comment-27680937-20170630095127\nTalk:Trumble/@comment-27680937-20170630095127/@comment-121.44.37.73-20170711173434\nTalk:Tungsten/@comment-29839692-20180320081154\nTalk:Turner's World/@comment-45166371-20200409230202\nTalk:Turner's World/@comment-45166371-20200409230202/@comment-26810597-20200410051206\nTalk:Turner's World/@comment-45166371-20200409230202/@comment-45166371-20200410105148\nTalk:Type-10 Defender/@comment-100.2.35.122-20180602033712\nTalk:Type-10 Defender/@comment-100.2.35.122-20180602033712/@comment-189.166.47.117-20180606073247\nTalk:Type-10 Defender/@comment-100.2.35.122-20180602033712/@comment-27838177-20200207180307\nTalk:Type-10 Defender/@comment-100.2.35.122-20180602033712/@comment-90.200.46.38-20181108185846\nTalk:Type-10 Defender/@comment-100.2.35.122-20180602033712/@comment-90.200.46.38-20181120025055\nTalk:Type-10 Defender/@comment-109.152.213.231-20190129110129\nTalk:Type-10 Defender/@comment-109.152.213.231-20190129110129/@comment-2806:104E:17:1DBD:8CD2:EE4A:BCA3:D5DA-20190418060753\nTalk:Type-10 Defender/@comment-136.169.156.34-20171008142738\nTalk:Type-10 Defender/@comment-136.169.156.34-20171008142738/@comment-2602:30A:C08B:87D0:1F0:1CBA:6FCB:35AB-20171117051406\nTalk:Type-10 Defender/@comment-136.169.156.34-20171008142738/@comment-86.52.85.36-20171009064210\nTalk:Type-10 Defender/@comment-136.169.156.34-20171008142738/@comment-86.52.85.36-20171009080509\nTalk:Type-10 Defender/@comment-165.120.40.74-20171220154955\nTalk:Type-10 Defender/@comment-165.120.40.74-20171220154955/@comment-77.102.200.67-20171221013316\nTalk:Type-10 Defender/@comment-166.137.136.128-20171217043550\nTalk:Type-10 Defender/@comment-166.137.136.128-20171217043550/@comment-192.136.161.33-20171218131428\nTalk:Type-10 Defender/@comment-166.137.139.46-20170817213552\nTalk:Type-10 Defender/@comment-166.137.139.46-20170817213552/@comment-146.198.212.96-20170818070414\nTalk:Type-10 Defender/@comment-166.137.139.46-20170817213552/@comment-166.137.139.46-20170818120329\nTalk:Type-10 Defender/@comment-166.137.139.46-20170817213552/@comment-24748124-20170819210326\nTalk:Type-10 Defender/@comment-166.137.139.46-20170817213552/@comment-26810597-20170818003438\nTalk:Type-10 Defender/@comment-166.137.139.46-20170926123715\nTalk:Type-10 Defender/@comment-166.137.139.46-20170926123715/@comment-166.137.139.46-20170926123755\nTalk:Type-10 Defender/@comment-170.211.150.62-20170817202332\nTalk:Type-10 Defender/@comment-170.211.150.62-20170817202332/@comment-81.135.221.50-20171105085112\nTalk:Type-10 Defender/@comment-170.211.150.62-20171212160255\nTalk:Type-10 Defender/@comment-170.211.150.62-20171212160255/@comment-79.69.78.159-20180116020909\nTalk:Type-10 Defender/@comment-170.211.150.62-20171221201640\nTalk:Type-10 Defender/@comment-170.211.150.62-20171221201640/@comment-82.46.123.131-20171229011022\nTalk:Type-10 Defender/@comment-174.101.226.205-20180113221741\nTalk:Type-10 Defender/@comment-174.101.226.205-20180113221741/@comment-192.136.161.33-20180114002128\nTalk:Type-10 Defender/@comment-174.101.226.205-20180113221741/@comment-192.136.161.33-20180120152459\nTalk:Type-10 Defender/@comment-174.101.226.205-20180113221741/@comment-192.136.161.33-20180124200827\nTalk:Type-10 Defender/@comment-174.101.226.205-20180113221741/@comment-206.74.17.157-20180120082844\nTalk:Type-10 Defender/@comment-174.101.226.205-20180113221741/@comment-206.74.17.157-20180124034022\nTalk:Type-10 Defender/@comment-174.101.226.205-20180113221741/@comment-206.74.17.157-20180124034215\nTalk:Type-10 Defender/@comment-176.221.77.250-20171228110101\nTalk:Type-10 Defender/@comment-176.221.77.250-20171228110101/@comment-203.104.15.2-20191015041227\nTalk:Type-10 Defender/@comment-177.154.10.68-20180113013402\nTalk:Type-10 Defender/@comment-177.154.10.68-20180113013402/@comment-192.136.161.33-20180113041918\nTalk:Type-10 Defender/@comment-177.154.10.68-20180113013402/@comment-2601:243:480:98D9:9C45:C07E:EBC9:EE5C-20180307000155\nTalk:Type-10 Defender/@comment-177.154.10.68-20180113013402/@comment-73.239.72.108-20180127172940\nTalk:Type-10 Defender/@comment-178.212.43.167-20171009062616\nTalk:Type-10 Defender/@comment-178.212.43.167-20171009062616/@comment-192.136.161.33-20171023132148\nTalk:Type-10 Defender/@comment-178.212.43.167-20171009062616/@comment-37.201.127.188-20171022191005\nTalk:Type-10 Defender/@comment-178.212.43.167-20171009062616/@comment-80.4.197.144-20171009234334\nTalk:Type-10 Defender/@comment-185.107.81.233-20171115103614\nTalk:Type-10 Defender/@comment-187.192.189.17-20171220170020\nTalk:Type-10 Defender/@comment-187.192.189.17-20171220170020/@comment-1.42.192.108-20171221054605\nTalk:Type-10 Defender/@comment-187.192.189.17-20171220170020/@comment-178.14.62.248-20171220175634\nTalk:Type-10 Defender/@comment-187.192.189.17-20171220170020/@comment-178.14.62.248-20171220203204\nTalk:Type-10 Defender/@comment-187.192.189.17-20171220170020/@comment-187.192.189.17-20171220181410\nTalk:Type-10 Defender/@comment-187.192.189.17-20171220170020/@comment-47.32.64.56-20171221004736\nTalk:Type-10 Defender/@comment-188.100.6.84-20171220165947\nTalk:Type-10 Defender/@comment-189.180.224.248-20171020235639\nTalk:Type-10 Defender/@comment-189.180.224.248-20171020235639/@comment-170.211.150.62-20171026145956\nTalk:Type-10 Defender/@comment-192.136.161.33-20171001135546\nTalk:Type-10 Defender/@comment-192.136.161.33-20171001135546/@comment-2601:1C0:6C01:F4A6:D435:7E23:D5C5:94FD-20171002022507\nTalk:Type-10 Defender/@comment-192.136.161.33-20171221162707\nTalk:Type-10 Defender/@comment-192.136.161.33-20171221162707/@comment-192.136.161.33-20171224153405\nTalk:Type-10 Defender/@comment-192.136.161.33-20171221162707/@comment-34041614-20171221200106\nTalk:Type-10 Defender/@comment-192.136.161.33-20171222180540\nTalk:Type-10 Defender/@comment-192.136.161.33-20171222180540/@comment-192.136.161.33-20171227041453\nTalk:Type-10 Defender/@comment-192.136.161.33-20171222180540/@comment-49.255.202.34-20171227013844\nTalk:Type-10 Defender/@comment-192.136.161.33-20171222180540/@comment-49.255.202.34-20171227014257\nTalk:Type-10 Defender/@comment-2001:738:2001:2074:0:179:8:0-20171215202018\nTalk:Type-10 Defender/@comment-2001:738:2001:2074:0:179:8:0-20171215202018/@comment-166.137.136.128-20171217043525\nTalk:Type-10 Defender/@comment-2001:738:2001:2074:0:179:8:0-20171215202018/@comment-2601:243:480:98D9:9C45:C07E:EBC9:EE5C-20180307000540\nTalk:Type-10 Defender/@comment-2001:7D0:8B29:7B80:4C3C:D9D9:8B8D:5313-20171213202342\nTalk:Type-10 Defender/@comment-2001:7D0:8B29:7B80:9DF:669E:759C:B7B-20171103010453\nTalk:Type-10 Defender/@comment-2001:7D0:8B29:7B80:9DF:669E:759C:B7B-20171103010453/@comment-170.211.150.62-20171115210243\nTalk:Type-10 Defender/@comment-2001:7D0:8B29:7B80:9DF:669E:759C:B7B-20171103010453/@comment-192.136.161.33-20171103122029\nTalk:Type-10 Defender/@comment-2001:7D0:8B29:7B80:9DF:669E:759C:B7B-20171103010453/@comment-2001:7D0:8B29:7B80:E8F8:9F78:16C6:8483-20171103230251\nTalk:Type-10 Defender/@comment-2001:7D0:8B29:7B80:DD92:C95A:DE9:8491-20171120005927\nTalk:Type-10 Defender/@comment-2001:7D0:8B29:7B80:DD92:C95A:DE9:8491-20171120005927/@comment-166.137.136.128-20171122062803\nTalk:Type-10 Defender/@comment-2001:7D0:8B29:7B80:DD92:C95A:DE9:8491-20171120005927/@comment-184.159.128.62-20171129151208\nTalk:Type-10 Defender/@comment-2001:7D0:8B29:7B80:DD92:C95A:DE9:8491-20171120005927/@comment-2001:7D0:8B29:7B80:91ED:E9F3:93CA:3722-20171125213014\nTalk:Type-10 Defender/@comment-2001:7D0:8B29:7B80:ED79:534D:955A:DCC5-20171115130837\nTalk:Type-10 Defender/@comment-2001:7D0:8B29:7B80:ED79:534D:955A:DCC5-20171115130837/@comment-170.211.150.62-20171115210042\nTalk:Type-10 Defender/@comment-2001:7D0:8B29:7B80:ED79:534D:955A:DCC5-20171115130837/@comment-192.136.161.33-20171116213545\nTalk:Type-10 Defender/@comment-2001:7D0:8B29:7B80:ED79:534D:955A:DCC5-20171115130837/@comment-47.144.64.12-20171116191917\nTalk:Type-10 Defender/@comment-2001:7D0:8B29:7B80:F4E3:FCD8:E696:7A56-20171202144300\nTalk:Type-10 Defender/@comment-2001:7D0:8B29:7B80:F4E3:FCD8:E696:7A56-20171202144300/@comment-166.137.136.128-20171204230326\nTalk:Type-10 Defender/@comment-2001:7D0:8B29:7B80:F4E3:FCD8:E696:7A56-20171202144300/@comment-172.98.79.200-20171220162011\nTalk:Type-10 Defender/@comment-2001:7D0:8B29:7B80:F4E3:FCD8:E696:7A56-20171202144300/@comment-192.136.161.33-20171205132722\nTalk:Type-10 Defender/@comment-2001:7D0:8B29:7B80:F4E3:FCD8:E696:7A56-20171202144300/@comment-2600:1700:6040:2720:4108:3620:A9D9:E53A-20171203130504\nTalk:Type-10 Defender/@comment-2001:7D0:8B29:7B80:F4E3:FCD8:E696:7A56-20171202214319\nTalk:Type-10 Defender/@comment-2001:7D0:8B29:7B80:F4E3:FCD8:E696:7A56-20171202214319/@comment-166.137.136.128-20171204230025\nTalk:Type-10 Defender/@comment-2003:6B:A19:9100:642A:41E2:C4FE:7BDF-20171220155847\nTalk:Type-10 Defender/@comment-2003:6B:A19:9100:642A:41E2:C4FE:7BDF-20171220155847/@comment-170.211.150.62-20171221210826\nTalk:Type-10 Defender/@comment-203.104.15.3-20191122012055\nTalk:Type-10 Defender/@comment-203.104.15.3-20191122012055/@comment-44180665-20200407151644\nTalk:Type-10 Defender/@comment-213.245.76.215-20170921161131\nTalk:Type-10 Defender/@comment-213.245.76.215-20170921161131/@comment-192.136.161.33-20170922011321\nTalk:Type-10 Defender/@comment-213.245.76.215-20170921161131/@comment-204.156.161.162-20170928144306\nTalk:Type-10 Defender/@comment-216.164.232.183-20170819064943\nTalk:Type-10 Defender/@comment-216.164.232.183-20170925070804\nTalk:Type-10 Defender/@comment-216.164.232.183-20170925070804/@comment-192.136.161.33-20170925173715\nTalk:Type-10 Defender/@comment-216.164.232.183-20171216080032\nTalk:Type-10 Defender/@comment-216.164.232.183-20171216080032/@comment-170.211.150.62-20171221210914\nTalk:Type-10 Defender/@comment-216.164.232.183-20171216080032/@comment-72.23.183.31-20171221002608\nTalk:Type-10 Defender/@comment-217.104.28.102-20171202133023\nTalk:Type-10 Defender/@comment-24.107.108.183-20170923033952\nTalk:Type-10 Defender/@comment-24.107.108.183-20170923033952/@comment-85.92.42.157-20171012052054\nTalk:Type-10 Defender/@comment-24.183.224.105-20180507033941\nTalk:Type-10 Defender/@comment-24.183.224.105-20180507033941/@comment-189.166.9.65-20180526161551\nTalk:Type-10 Defender/@comment-24.183.224.105-20180507033941/@comment-50.126.116.115-20180527095546\nTalk:Type-10 Defender/@comment-24740282-20180314024128\nTalk:Type-10 Defender/@comment-24740282-20180314024128/@comment-2600:1700:BDA0:AB20:F1E8:D7FD:FD31:BDA2-20180318145421\nTalk:Type-10 Defender/@comment-25450485-20170926184704\nTalk:Type-10 Defender/@comment-2601:19B:4080:2B99:ED47:CF46:F207:34EE-20171209220352\nTalk:Type-10 Defender/@comment-2601:19B:4080:2B99:ED47:CF46:F207:34EE-20171209220352/@comment-170.211.150.62-20171212160053\nTalk:Type-10 Defender/@comment-2601:244:4D00:C63B:E448:E908:CE9E:729D-20171117141541\nTalk:Type-10 Defender/@comment-2601:244:4D00:C63B:E448:E908:CE9E:729D-20171117141541/@comment-166.137.136.128-20171119181016\nTalk:Type-10 Defender/@comment-2601:244:4D00:C63B:E448:E908:CE9E:729D-20171117141541/@comment-25450485-20171119172935\nTalk:Type-10 Defender/@comment-26476650-20200624111035\nTalk:Type-10 Defender/@comment-26476650-20200624111035/@comment-43982350-20200903210446\nTalk:Type-10 Defender/@comment-32843761-20171221020633\nTalk:Type-10 Defender/@comment-32843761-20171221020633/@comment-170.211.150.62-20171221201455\nTalk:Type-10 Defender/@comment-32843761-20171221020633/@comment-174.104.45.144-20171221051253\nTalk:Type-10 Defender/@comment-32843761-20171221020633/@comment-69.123.241.214-20171222020044\nTalk:Type-10 Defender/@comment-34004391-20180112095207\nTalk:Type-10 Defender/@comment-34004391-20180112095207/@comment-168.99.198.77-20180314025004\nTalk:Type-10 Defender/@comment-34004391-20180112095207/@comment-189.226.205.216-20180207125845\nTalk:Type-10 Defender/@comment-34004391-20180112095207/@comment-203.104.15.2-20191015041046\nTalk:Type-10 Defender/@comment-34004391-20180112095207/@comment-72.141.229.177-20191123053615\nTalk:Type-10 Defender/@comment-34004391-20180112095207/@comment-94.114.162.86-20180303224106\nTalk:Type-10 Defender/@comment-37820584-20190925040646\nTalk:Type-10 Defender/@comment-4030403-20171212095745\nTalk:Type-10 Defender/@comment-4030403-20171212095745/@comment-170.211.150.62-20171212160031\nTalk:Type-10 Defender/@comment-44180665-20200407161309\nTalk:Type-10 Defender/@comment-44302981-20200506075205\nTalk:Type-10 Defender/@comment-46.89.157.166-20171222014555\nTalk:Type-10 Defender/@comment-46.89.157.166-20171222014555/@comment-12.198.157.12-20180305165950\nTalk:Type-10 Defender/@comment-46.89.157.166-20171222014555/@comment-2001:8003:2408:DD00:4187:8BCC:C99B:A14B-20171225091758\nTalk:Type-10 Defender/@comment-46.89.157.166-20171222014555/@comment-24.1.9.47-20180210224540\nTalk:Type-10 Defender/@comment-46.89.157.166-20171222014555/@comment-2601:243:480:98D9:9C45:C07E:EBC9:EE5C-20180307000441\nTalk:Type-10 Defender/@comment-46.89.157.166-20171222014555/@comment-33405632-20180107125005\nTalk:Type-10 Defender/@comment-46.89.157.166-20171222014555/@comment-50.201.158.110-20181017151615\nTalk:Type-10 Defender/@comment-46.89.157.166-20171222014555/@comment-69.123.241.214-20171222020259\nTalk:Type-10 Defender/@comment-4616657-20200824222912\nTalk:Type-10 Defender/@comment-49.255.202.34-20171227014757\nTalk:Type-10 Defender/@comment-49.255.202.34-20171227014757/@comment-49.255.202.34-20171228035049\nTalk:Type-10 Defender/@comment-50.201.158.110-20181017151507\nTalk:Type-10 Defender/@comment-50.201.158.110-20181017151507/@comment-24.159.43.54-20181128041122\nTalk:Type-10 Defender/@comment-50.201.158.110-20181017151507/@comment-66.190.197.164-20191016233448\nTalk:Type-10 Defender/@comment-50.201.158.110-20181017151507/@comment-90.200.46.38-20181104232008\nTalk:Type-10 Defender/@comment-5049940-20171202175105\nTalk:Type-10 Defender/@comment-5049940-20171202175105/@comment-166.137.136.128-20171204230231\nTalk:Type-10 Defender/@comment-5049940-20171202175105/@comment-166.137.136.128-20171220220858\nTalk:Type-10 Defender/@comment-5049940-20171202175105/@comment-170.211.150.62-20171207212144\nTalk:Type-10 Defender/@comment-5049940-20171202175105/@comment-184.159.128.62-20171207144424\nTalk:Type-10 Defender/@comment-5049940-20171202175105/@comment-192.136.161.33-20171205132952\nTalk:Type-10 Defender/@comment-5049940-20171202175105/@comment-192.136.161.33-20171207160311\nTalk:Type-10 Defender/@comment-5049940-20171202175105/@comment-192.136.161.33-20171207213201\nTalk:Type-10 Defender/@comment-67.130.182.100-20181209232709\nTalk:Type-10 Defender/@comment-68.186.130.248-20180326235628\nTalk:Type-10 Defender/@comment-68.197.23.46-20190527001826\nTalk:Type-10 Defender/@comment-68.197.23.46-20190527001826/@comment-44180665-20200411154414\nTalk:Type-10 Defender/@comment-70.97.199.108-20171012000322\nTalk:Type-10 Defender/@comment-70.97.199.108-20171012000322/@comment-170.211.150.62-20171026150105\nTalk:Type-10 Defender/@comment-72.223.53.17-20171220143338\nTalk:Type-10 Defender/@comment-73.239.72.108-20180127173023\nTalk:Type-10 Defender/@comment-73.239.72.108-20180127173023/@comment-170.211.150.62-20180207212207\nTalk:Type-10 Defender/@comment-73.239.72.108-20180127173023/@comment-2601:243:480:98D9:1922:DE3E:510A:BD81-20180218231619\nTalk:Type-10 Defender/@comment-77.255.239.206-20171008002150\nTalk:Type-10 Defender/@comment-77.255.239.206-20171008002150/@comment-96.242.21.209-20171008005148\nTalk:Type-10 Defender/@comment-77.99.144.121-20171230025216\nTalk:Type-10 Defender/@comment-7753017-20171007191128\nTalk:Type-10 Defender/@comment-7753017-20171007191128/@comment-86.52.85.36-20171008013726\nTalk:Type-10 Defender/@comment-79.21.112.96-20171010134317\nTalk:Type-10 Defender/@comment-79.21.112.96-20171010134317/@comment-170.211.150.62-20171011150439\nTalk:Type-10 Defender/@comment-79.21.112.96-20171010134317/@comment-216.164.232.183-20171101082322\nTalk:Type-10 Defender/@comment-79.21.112.96-20171010134317/@comment-87.4.39.54-20171012095643\nTalk:Type-10 Defender/@comment-79.71.226.162-20180108045532\nTalk:Type-10 Defender/@comment-79.71.236.184-20171029034407\nTalk:Type-10 Defender/@comment-81.131.182.229-20170927124507\nTalk:Type-10 Defender/@comment-81.131.182.229-20170927124507/@comment-170.211.150.62-20170927202513\nTalk:Type-10 Defender/@comment-82.13.80.208-20190113093258\nTalk:Type-10 Defender/@comment-82.13.80.208-20190113093258/@comment-189.232.14.15-20190123024333\nTalk:Type-10 Defender/@comment-82.13.80.208-20190113093258/@comment-192.136.170.98-20190113161034\nTalk:Type-10 Defender/@comment-82.13.80.208-20190113093258/@comment-203.104.15.2-20191015040254\nTalk:Type-10 Defender/@comment-82.13.80.208-20190123081949\nTalk:Type-10 Defender/@comment-82.13.80.208-20190123081949/@comment-203.104.15.2-20191015040227\nTalk:Type-10 Defender/@comment-82.13.80.208-20190123081949/@comment-2602:306:CE29:B0D0:D4EB:30EB:96B9:9C46-20190928073357\nTalk:Type-10 Defender/@comment-82.13.80.208-20190123081949/@comment-38675243-20190404020630\nTalk:Type-10 Defender/@comment-82.13.80.208-20190123081949/@comment-72.141.229.177-20191123052116\nTalk:Type-10 Defender/@comment-82.13.80.208-20190123081949/@comment-90.200.45.179-20190209124046\nTalk:Type-10 Defender/@comment-82.217.242.122-20171220155340\nTalk:Type-10 Defender/@comment-82.217.242.122-20171220155340/@comment-170.211.150.62-20171221210832\nTalk:Type-10 Defender/@comment-88.111.3.3-20171016131313\nTalk:Type-10 Defender/@comment-90.200.46.38-20181108184033\nTalk:Type-10 Defender/@comment-90.200.46.38-20181115015515\nTalk:Type-10 Defender/@comment-90.200.46.38-20181115015515/@comment-203.104.15.2-20191015040451\nTalk:Type-10 Defender/@comment-90.200.46.38-20181115015515/@comment-27838177-20200207180121\nTalk:Type-10 Defender/@comment-90.200.46.38-20181115015515/@comment-90.200.46.38-20181128154807\nTalk:Type-10 Defender/@comment-91.125.47.136-20171119002059\nTalk:Type-10 Defender/@comment-91.93.95.34-20190310203516\nTalk:Type-10 Defender/@comment-91.93.95.34-20190310203516/@comment-44180665-20200411154629\nTalk:Type-10 Defender/@comment-91.93.95.34-20190310203516/@comment-90.218.66.188-20190603022332\nTalk:Type-10 Defender/@comment-93.143.99.56-20170823085732\nTalk:Type-10 Defender/@comment-93.143.99.56-20170823085732/@comment-172.111.180.163-20170831075900\nTalk:Type-10 Defender/@comment-93.143.99.56-20170823085732/@comment-188.146.131.47-20170825114154\nTalk:Type-10 Defender/@comment-93.143.99.56-20170823085732/@comment-216.164.232.183-20170913014552\nTalk:Type-10 Defender/@comment-93.143.99.56-20170823085732/@comment-77.102.200.67-20170826111529\nTalk:Type-10 Defender/@comment-97.91.196.87-20180606174045\nTalk:Type-10 Defender/@comment-97.91.196.87-20180606174045/@comment-203.104.15.2-20191015040708\nTalk:Type-6 Transporter/@comment-118.93.107.164-20150726041215\nTalk:Type-6 Transporter/@comment-118.93.107.164-20150726041215/@comment-192.136.161.33-20180116225943\nTalk:Type-6 Transporter/@comment-118.93.107.164-20150726041215/@comment-2600:6C40:7B80:3A:9892:F5A3:9F0E:E8D9-20180116221530\nTalk:Type-6 Transporter/@comment-14.33.139.181-20150118041251\nTalk:Type-6 Transporter/@comment-14.33.139.181-20150118041251/@comment-12138097-20150118061826\nTalk:Type-6 Transporter/@comment-14.33.139.181-20150118041251/@comment-81.63.182.173-20150121092230\nTalk:Type-6 Transporter/@comment-146.198.211.148-20150831164750\nTalk:Type-6 Transporter/@comment-151.226.121.215-20150725101951\nTalk:Type-6 Transporter/@comment-151.226.121.215-20150725101951/@comment-151.226.121.215-20150725102019\nTalk:Type-6 Transporter/@comment-151.226.121.215-20150725101951/@comment-26009169-20150725123146\nTalk:Type-6 Transporter/@comment-173.191.151.131-20151224083109\nTalk:Type-6 Transporter/@comment-173.191.151.131-20151224083109/@comment-50.170.117.254-20160210044039\nTalk:Type-6 Transporter/@comment-179.185.203.73-20150110214335\nTalk:Type-6 Transporter/@comment-188.238.85.199-20160526084030\nTalk:Type-6 Transporter/@comment-188.238.85.199-20160526084030/@comment-188.238.158.174-20160618184609\nTalk:Type-6 Transporter/@comment-188.238.85.199-20160526084030/@comment-188.238.41.137-20160531074623\nTalk:Type-6 Transporter/@comment-188.238.85.199-20160526084030/@comment-28774381-20160617164951\nTalk:Type-6 Transporter/@comment-188.238.85.199-20160526084030/@comment-28774381-20160619022319\nTalk:Type-6 Transporter/@comment-192.136.172.239-20160210213013\nTalk:Type-6 Transporter/@comment-192.31.106.34-20150123184021\nTalk:Type-6 Transporter/@comment-192.31.106.34-20150123184021/@comment-109.157.177.124-20150401161446\nTalk:Type-6 Transporter/@comment-192.31.106.34-20150123184021/@comment-192.35.35.36-20150126164322\nTalk:Type-6 Transporter/@comment-192.31.106.34-20150123184021/@comment-62.31.177.227-20150218215346\nTalk:Type-6 Transporter/@comment-192.31.106.34-20150123184021/@comment-64.31.157.18-20150226160036\nTalk:Type-6 Transporter/@comment-192.31.106.34-20150123184021/@comment-82.20.25.193-20150124163711\nTalk:Type-6 Transporter/@comment-195.14.166.210-20150404203859\nTalk:Type-6 Transporter/@comment-195.14.166.210-20150404203859/@comment-26009169-20150404224853\nTalk:Type-6 Transporter/@comment-195.14.166.210-20150404203859/@comment-26033489-20150405133126\nTalk:Type-6 Transporter/@comment-195.189.11.41-20141231072059\nTalk:Type-6 Transporter/@comment-195.189.11.41-20141231072059/@comment-110.22.76.140-20150103230306\nTalk:Type-6 Transporter/@comment-195.189.11.41-20141231072059/@comment-119.237.74.3-20150103211357\nTalk:Type-6 Transporter/@comment-195.189.11.41-20141231072059/@comment-172.56.15.201-20150318153333\nTalk:Type-6 Transporter/@comment-195.189.11.41-20141231072059/@comment-212.198.89.104-20150203091936\nTalk:Type-6 Transporter/@comment-195.189.11.41-20141231072059/@comment-4968814-20150110184933\nTalk:Type-6 Transporter/@comment-195.189.11.41-20141231072059/@comment-72.146.40.58-20150103064744\nTalk:Type-6 Transporter/@comment-195.189.11.41-20141231072059/@comment-72.146.40.58-20150103064907\nTalk:Type-6 Transporter/@comment-195.189.11.41-20141231072059/@comment-85.21.249.183-20150109233457\nTalk:Type-6 Transporter/@comment-205.237.231.50-20150211234419\nTalk:Type-6 Transporter/@comment-205.237.231.50-20150211234419/@comment-118.93.107.164-20150726041258\nTalk:Type-6 Transporter/@comment-205.237.231.50-20150211234419/@comment-26077237-20150214090901\nTalk:Type-6 Transporter/@comment-205.237.231.50-20150211234419/@comment-62.31.177.227-20150218214449\nTalk:Type-6 Transporter/@comment-205.237.231.50-20150211234419/@comment-83.71.7.201-20150225133408\nTalk:Type-6 Transporter/@comment-205.237.231.50-20150211234419/@comment-94.9.142.131-20150217183910\nTalk:Type-6 Transporter/@comment-205.237.231.50-20150211234419/@comment-94.9.142.131-20150217183936\nTalk:Type-6 Transporter/@comment-217.13.128.68-20150217160306\nTalk:Type-6 Transporter/@comment-25930335-20141230202935\nTalk:Type-6 Transporter/@comment-2600:1702:1D50:E40:45E0:8B36:FCBD:1CAB-20191207042323\nTalk:Type-6 Transporter/@comment-2600:1702:1D50:E40:45E0:8B36:FCBD:1CAB-20191207042323/@comment-82.1.203.26-20191227161725\nTalk:Type-6 Transporter/@comment-2600:6C40:7B80:3A:9892:F5A3:9F0E:E8D9-20180129181248\nTalk:Type-6 Transporter/@comment-26048696-20150129190103\nTalk:Type-6 Transporter/@comment-26077237-20150205070231\nTalk:Type-6 Transporter/@comment-26987932-20160209022655\nTalk:Type-6 Transporter/@comment-2A00:23C5:707:A600:4529:8692:FA6B:F0BD-20190531075738\nTalk:Type-6 Transporter/@comment-31071818-20170117074049\nTalk:Type-6 Transporter/@comment-34232396-20190403062926\nTalk:Type-6 Transporter/@comment-34232396-20190403062926/@comment-192.136.170.98-20190403145941\nTalk:Type-6 Transporter/@comment-45677112-20200902175754\nTalk:Type-6 Transporter/@comment-66.229.135.252-20141223163950\nTalk:Type-6 Transporter/@comment-67.185.137.68-20150117000208\nTalk:Type-6 Transporter/@comment-68.172.36.25-20150830002402\nTalk:Type-6 Transporter/@comment-68.172.36.25-20150830002402/@comment-68.172.36.25-20150830002457\nTalk:Type-6 Transporter/@comment-68.172.36.25-20150830002402/@comment-99.239.198.38-20150831111848\nTalk:Type-6 Transporter/@comment-68.57.114.109-20150114210109\nTalk:Type-6 Transporter/@comment-68.57.114.109-20150114210109/@comment-62.31.177.227-20150218215630\nTalk:Type-6 Transporter/@comment-68.57.114.109-20150114210109/@comment-64.146.180.155-20150117063930\nTalk:Type-6 Transporter/@comment-68.57.114.109-20150114210109/@comment-76.108.238.242-20150126000833\nTalk:Type-6 Transporter/@comment-70.126.167.133-20150727013311\nTalk:Type-6 Transporter/@comment-70.126.167.133-20150727013311/@comment-5.65.85.131-20160224234509\nTalk:Type-6 Transporter/@comment-70.191.82.171-20160926060154\nTalk:Type-6 Transporter/@comment-70.193.165.52-20150125043655\nTalk:Type-6 Transporter/@comment-70.30.83.108-20141227165138\nTalk:Type-6 Transporter/@comment-70.98.52.58-20170818223852\nTalk:Type-6 Transporter/@comment-71.95.100.70-20150109045832\nTalk:Type-6 Transporter/@comment-73.17.154.140-20160106181802\nTalk:Type-6 Transporter/@comment-73.51.9.154-20150210214258\nTalk:Type-6 Transporter/@comment-74.90.92.146-20151017210608\nTalk:Type-6 Transporter/@comment-74.90.92.146-20151017210608/@comment-26987932-20160209022611\nTalk:Type-6 Transporter/@comment-74.90.92.146-20151017210608/@comment-27034370-20160106090537\nTalk:Type-6 Transporter/@comment-75.182.4.83-20150422015849\nTalk:Type-6 Transporter/@comment-78.42.16.72-20150108225019\nTalk:Type-6 Transporter/@comment-80.192.67.172-20150209210604\nTalk:Type-6 Transporter/@comment-81.101.97.103-20150119154036\nTalk:Type-6 Transporter/@comment-81.101.97.103-20150119154036/@comment-1250011-20150119154920\nTalk:Type-6 Transporter/@comment-81.166.196.79-20150107203049\nTalk:Type-6 Transporter/@comment-81.98.186.16-20150122172639\nTalk:Type-6 Transporter/@comment-82.227.178.47-20150127214112\nTalk:Type-6 Transporter/@comment-84.118.95.75-20150101193525\nTalk:Type-6 Transporter/@comment-86.11.128.32-20150128021904\nTalk:Type-6 Transporter/@comment-87.253.63.54-20141227194029\nTalk:Type-6 Transporter/@comment-87.253.63.54-20141227194029/@comment-195.198.228.61-20150119045236\nTalk:Type-6 Transporter/@comment-87.253.63.54-20141227194029/@comment-82.20.25.193-20150124164002\nTalk:Type-6 Transporter/@comment-87.253.63.54-20141227194029/@comment-82.7.139.174-20141227200602\nTalk:Type-6 Transporter/@comment-88.115.71.172-20150325165347\nTalk:Type-6 Transporter/@comment-89.172.68.75-20160206000136\nTalk:Type-6 Transporter/@comment-89.65.236.135-20150207145915\nTalk:Type-6 Transporter/@comment-92.233.112.147-20150702152254\nTalk:Type-6 Transporter/@comment-92.40.248.179-20150130230957\nTalk:Type-6 Transporter/@comment-92.40.248.179-20150130230957/@comment-62.31.177.227-20150218215053\nTalk:Type-6 Transporter/@comment-92.40.248.179-20150130230957/@comment-71.21.3.159-20150208210343\nTalk:Type-6 Transporter/@comment-95.90.240.212-20160317160052\nTalk:Type-7 Transport/@comment-194.149.26.9-20141222160727\nTalk:Type-7 Transport/@comment-194.149.26.9-20141222160727/@comment-23.233.1.213-20150113054039\nTalk:Type-7 Transport/@comment-70.30.83.108-20141227165059\nTalk:Type-7 Transport/@comment-87.163.152.202-20141231212046/@comment-109.81.210.65-20150102131855\nTalk:Type-7 Transport/@comment-88.102.152.99-20141215230048/@comment-172.56.13.27-20141219212939\nTalk:Type-7 Transport/@comment-88.102.152.99-20141215230048/@comment-178.82.240.189-20150104160531\nTalk:Type-7 Transport/@comment-88.102.152.99-20141215230048/@comment-178.82.240.189-20150104160716\nTalk:Type-7 Transporter/@comment-108.2.148.152-20170525022023\nTalk:Type-7 Transporter/@comment-120.148.72.201-20150804125627\nTalk:Type-7 Transporter/@comment-120.148.72.201-20150804125627/@comment-109.11.26.182-20150808121917\nTalk:Type-7 Transporter/@comment-120.148.72.201-20150804125627/@comment-178.9.121.204-20150806011931\nTalk:Type-7 Transporter/@comment-121.211.39.251-20150309202230\nTalk:Type-7 Transporter/@comment-121.211.39.251-20150309202230/@comment-26009169-20150309221627\nTalk:Type-7 Transporter/@comment-121.211.39.251-20150309202230/@comment-91.66.140.21-20150311150950\nTalk:Type-7 Transporter/@comment-145.8.179.218-20190415153055\nTalk:Type-7 Transporter/@comment-145.8.179.218-20190415153055/@comment-160.3.38.154-20190424053940\nTalk:Type-7 Transporter/@comment-172.74.44.60-20150627205407\nTalk:Type-7 Transporter/@comment-173.191.151.131-20151224083525\nTalk:Type-7 Transporter/@comment-178.238.167.254-20160105212641\nTalk:Type-7 Transporter/@comment-190.19.191.125-20150215060059\nTalk:Type-7 Transporter/@comment-190.19.191.125-20150215060059/@comment-121.211.39.251-20150309202545\nTalk:Type-7 Transporter/@comment-190.19.191.125-20150215060059/@comment-124.169.177.133-20150421131310\nTalk:Type-7 Transporter/@comment-190.19.191.125-20150215060059/@comment-135.0.26.15-20150718231630\nTalk:Type-7 Transporter/@comment-190.19.191.125-20150215060059/@comment-174.134.139.244-20150310025337\nTalk:Type-7 Transporter/@comment-190.19.191.125-20150215060059/@comment-26009169-20150421142438\nTalk:Type-7 Transporter/@comment-190.19.191.125-20150215060059/@comment-62.31.177.227-20150217213006\nTalk:Type-7 Transporter/@comment-190.19.191.125-20150215061629\nTalk:Type-7 Transporter/@comment-190.19.191.125-20150215061629/@comment-121.211.39.251-20150309202419\nTalk:Type-7 Transporter/@comment-190.19.191.125-20150215061629/@comment-92.228.34.154-20150219213145\nTalk:Type-7 Transporter/@comment-192.136.161.156-20161023152905\nTalk:Type-7 Transporter/@comment-192.136.161.156-20161023152905/@comment-49.227.175.126-20180415094911\nTalk:Type-7 Transporter/@comment-193.80.26.67-20150128003522\nTalk:Type-7 Transporter/@comment-193.80.26.67-20150128003522/@comment-107.77.68.82-20150202233307\nTalk:Type-7 Transporter/@comment-193.80.26.67-20150128003522/@comment-121.211.39.251-20150309202717\nTalk:Type-7 Transporter/@comment-193.80.26.67-20150128003522/@comment-82.26.149.254-20150128094715\nTalk:Type-7 Transporter/@comment-2001:5B0:4BC0:D9E0:0:FF:FEBD:1C0-20180506215427\nTalk:Type-7 Transporter/@comment-2001:5B0:4BC0:D9E0:0:FF:FEBD:1C0-20180506215427/@comment-2001:5B0:4BC0:E9E0:0:FF:FEBD:63F2-20181024114944\nTalk:Type-7 Transporter/@comment-2001:5B0:4BC0:D9E0:0:FF:FEBD:1C0-20180506215427/@comment-2601:643:C101:A5D0:E5B6:F7F7:53B8:2BD4-20180628184109\nTalk:Type-7 Transporter/@comment-2001:5B0:4BC0:D9E0:0:FF:FEBD:1C0-20180506215427/@comment-90.19.201.81-20180704161301\nTalk:Type-7 Transporter/@comment-203.173.29.85-20161115183206\nTalk:Type-7 Transporter/@comment-2094570-20151023040636\nTalk:Type-7 Transporter/@comment-213.106.91.66-20190704103154\nTalk:Type-7 Transporter/@comment-23.122.214.44-20150317033643\nTalk:Type-7 Transporter/@comment-23.122.214.44-20150317033643/@comment-63.233.193.240-20150430221513\nTalk:Type-7 Transporter/@comment-24.143.228.149-20150606170303\nTalk:Type-7 Transporter/@comment-24.143.228.149-20150606170303/@comment-26470896-20150607103046\nTalk:Type-7 Transporter/@comment-24.143.228.149-20150606170303/@comment-26496552-20150614180745\nTalk:Type-7 Transporter/@comment-24.143.228.149-20150606170303/@comment-26496552-20150614181948\nTalk:Type-7 Transporter/@comment-24.143.228.149-20150606170303/@comment-81.198.105.59-20150703141811\nTalk:Type-7 Transporter/@comment-24.143.228.149-20150606170303/@comment-84.174.162.212-20150613113702\nTalk:Type-7 Transporter/@comment-25450485-20150916184944\nTalk:Type-7 Transporter/@comment-25450485-20150916184944/@comment-25450485-20150916204342\nTalk:Type-7 Transporter/@comment-25450485-20150916184944/@comment-73.44.65.107-20150916203931\nTalk:Type-7 Transporter/@comment-26048696-20150204112656\nTalk:Type-7 Transporter/@comment-26048696-20150204112656/@comment-26006358-20150204201639\nTalk:Type-7 Transporter/@comment-26048696-20150204112656/@comment-62.31.177.227-20150305192008\nTalk:Type-7 Transporter/@comment-2604:6000:A403:D900:1868:384F:C66C:8ADE-20170922033115\nTalk:Type-7 Transporter/@comment-26190843-20150310211351\nTalk:Type-7 Transporter/@comment-26190843-20150310211351/@comment-91.66.140.21-20150311150842\nTalk:Type-7 Transporter/@comment-26487212-20150611172236\nTalk:Type-7 Transporter/@comment-26487212-20150611172236/@comment-26009169-20150611182836\nTalk:Type-7 Transporter/@comment-26537865-20150728211900\nTalk:Type-7 Transporter/@comment-26537865-20150728211900/@comment-1088921-20150801150435\nTalk:Type-7 Transporter/@comment-26537865-20150728211900/@comment-86.45.98.174-20150910232352\nTalk:Type-7 Transporter/@comment-26987932-20160209023704\nTalk:Type-7 Transporter/@comment-27115814-20151112170835\nTalk:Type-7 Transporter/@comment-28209324-20160430142333\nTalk:Type-7 Transporter/@comment-28209324-20160430142333/@comment-26227424-20160622012710\nTalk:Type-7 Transporter/@comment-28209324-20160430142333/@comment-71.233.88.91-20160613115831\nTalk:Type-7 Transporter/@comment-2A02:2149:8857:5D00:66A2:F9FF:FE54:B4C6-20190105043205\nTalk:Type-7 Transporter/@comment-2A02:2149:8857:5D00:66A2:F9FF:FE54:B4C6-20190105043205/@comment-192.136.170.98-20190105162039\nTalk:Type-7 Transporter/@comment-2A02:2149:8857:5D00:66A2:F9FF:FE54:B4C6-20190105043205/@comment-192.136.170.98-20190126161456\nTalk:Type-7 Transporter/@comment-2A02:2149:8857:5D00:66A2:F9FF:FE54:B4C6-20190105043205/@comment-78.201.67.28-20190125233919\nTalk:Type-7 Transporter/@comment-33441314-20180130142906\nTalk:Type-7 Transporter/@comment-37820584-20190924083855\nTalk:Type-7 Transporter/@comment-5.80.132.255-20151224232333\nTalk:Type-7 Transporter/@comment-50.111.218.150-20160123000214\nTalk:Type-7 Transporter/@comment-50.111.218.150-20160123000214/@comment-50.111.218.150-20160123000300\nTalk:Type-7 Transporter/@comment-50.111.218.150-20160123000214/@comment-84.113.160.103-20160212145844\nTalk:Type-7 Transporter/@comment-58.162.227.75-20150611233332\nTalk:Type-7 Transporter/@comment-62.218.164.126-20150828123935\nTalk:Type-7 Transporter/@comment-66.229.135.252-20141223164046\nTalk:Type-7 Transporter/@comment-66.44.241.1-20150322005449\nTalk:Type-7 Transporter/@comment-66.44.241.1-20150322005449/@comment-110.174.240.10-20150609113826\nTalk:Type-7 Transporter/@comment-66.44.241.1-20150322005449/@comment-72.241.143.238-20150609120820\nTalk:Type-7 Transporter/@comment-67.214.192.66-20190906024028\nTalk:Type-7 Transporter/@comment-68.149.172.166-20150119053054\nTalk:Type-7 Transporter/@comment-68.149.172.166-20150119053054/@comment-121.211.39.251-20150309203303\nTalk:Type-7 Transporter/@comment-68.149.172.166-20150119053054/@comment-124.170.58.212-20160123055804\nTalk:Type-7 Transporter/@comment-68.149.172.166-20150119053054/@comment-204.50.199.4-20150119225907\nTalk:Type-7 Transporter/@comment-68.149.172.166-20150119053054/@comment-62.31.177.227-20150305192715\nTalk:Type-7 Transporter/@comment-68.149.172.166-20150119053054/@comment-76.124.162.53-20150212181627\nTalk:Type-7 Transporter/@comment-68.149.172.166-20150119053054/@comment-76.124.162.53-20150212182114\nTalk:Type-7 Transporter/@comment-68.149.172.166-20150119053054/@comment-80.187.112.178-20150120115731\nTalk:Type-7 Transporter/@comment-68.149.172.166-20150119053054/@comment-81.151.64.119-20150119131158\nTalk:Type-7 Transporter/@comment-68.149.172.166-20150119053054/@comment-86.31.198.223-20150203133551\nTalk:Type-7 Transporter/@comment-68.149.172.166-20150119053054/@comment-93.138.249.137-20150319002148\nTalk:Type-7 Transporter/@comment-71.14.76.214-20150627083857\nTalk:Type-7 Transporter/@comment-71.14.76.214-20150627083857/@comment-72.241.143.238-20150627104830\nTalk:Type-7 Transporter/@comment-72.159.154.164-20160825175117\nTalk:Type-7 Transporter/@comment-72.159.154.164-20160825175117/@comment-24.53.244.177-20161106185835\nTalk:Type-7 Transporter/@comment-74.14.133.243-20150909001148\nTalk:Type-7 Transporter/@comment-74.14.133.243-20150909001148/@comment-86.45.98.174-20150910232612\nTalk:Type-7 Transporter/@comment-74.187.217.29-20190829170159\nTalk:Type-7 Transporter/@comment-75.117.165.34-20150220030818\nTalk:Type-7 Transporter/@comment-75.117.165.34-20150220030818/@comment-121.211.39.251-20150309202329\nTalk:Type-7 Transporter/@comment-75.117.165.34-20150220030818/@comment-75.167.195.172-20150908074246\nTalk:Type-7 Transporter/@comment-75.117.165.34-20150220030818/@comment-75.167.195.172-20150908074928\nTalk:Type-7 Transporter/@comment-77.58.96.13-20150701025038\nTalk:Type-7 Transporter/@comment-77.58.96.13-20150701025038/@comment-26227424-20160622013218\nTalk:Type-7 Transporter/@comment-77.58.96.13-20150701025038/@comment-84.74.0.24-20150718005248\nTalk:Type-7 Transporter/@comment-78.70.42.26-20150214135900\nTalk:Type-7 Transporter/@comment-78.70.42.26-20150214135900/@comment-26009169-20150214140612\nTalk:Type-7 Transporter/@comment-78.96.220.116-20160116062626\nTalk:Type-7 Transporter/@comment-81.184.173.137-20151202195211\nTalk:Type-7 Transporter/@comment-81.184.173.137-20151202195211/@comment-141.0.9.62-20151205221621\nTalk:Type-7 Transporter/@comment-81.184.173.137-20151202195211/@comment-86.169.229.205-20170729163336\nTalk:Type-7 Transporter/@comment-82.194.220.22-20150108133525\nTalk:Type-7 Transporter/@comment-82.194.220.22-20150108133525/@comment-4968814-20150108172126\nTalk:Type-7 Transporter/@comment-82.194.220.22-20150108133525/@comment-4968814-20150109174639\nTalk:Type-7 Transporter/@comment-82.194.220.22-20150108133525/@comment-50.38.244.185-20150108201606\nTalk:Type-7 Transporter/@comment-82.194.220.22-20150108133525/@comment-50.38.244.185-20150108213530\nTalk:Type-7 Transporter/@comment-82.194.220.22-20150108133525/@comment-50.38.244.185-20150109173325\nTalk:Type-7 Transporter/@comment-82.194.220.22-20150108133525/@comment-71.95.100.70-20150109050155\nTalk:Type-7 Transporter/@comment-82.194.220.22-20150108133525/@comment-77.101.193.215-20150201221716\nTalk:Type-7 Transporter/@comment-8256051-20150122050859\nTalk:Type-7 Transporter/@comment-8256051-20150122050859/@comment-121.211.39.251-20150309202903\nTalk:Type-7 Transporter/@comment-84.132.36.14-20151029121732\nTalk:Type-7 Transporter/@comment-84.195.191.69-20160515233357\nTalk:Type-7 Transporter/@comment-84.195.191.69-20160515233357/@comment-2605:6000:3E0E:D200:509E:6D72:3397:626B-20180717221755\nTalk:Type-7 Transporter/@comment-84.195.191.69-20160515233357/@comment-71.231.50.26-20160618193631\nTalk:Type-7 Transporter/@comment-84.74.0.24-20150718003712\nTalk:Type-7 Transporter/@comment-86.156.178.36-20150826074521\nTalk:Type-7 Transporter/@comment-86.156.178.36-20150826074521/@comment-72.241.143.238-20150826084708\nTalk:Type-7 Transporter/@comment-86.156.178.36-20150826074521/@comment-86.156.178.36-20150826140403\nTalk:Type-7 Transporter/@comment-86.20.98.201-20150726070543\nTalk:Type-7 Transporter/@comment-87.113.211.162-20150318193113\nTalk:Type-7 Transporter/@comment-87.113.211.162-20150318193113/@comment-70.54.117.31-20150528020939\nTalk:Type-7 Transporter/@comment-88.152.98.102-20160930142957\nTalk:Type-7 Transporter/@comment-90.200.46.38-20181101195714\nTalk:Type-7 Transporter/@comment-91.66.140.21-20150325202439\nTalk:Type-7 Transporter/@comment-91.66.140.21-20150325202439/@comment-26009169-20150325202652\nTalk:Type-7 Transporter/@comment-93.143.0.99-20160405124145\nTalk:Type-7 Transporter/@comment-96.49.36.186-20150203091810\nTalk:Type-9 Heavy/@comment-108.181.139.53-20150927234001\nTalk:Type-9 Heavy/@comment-108.67.228.190-20151015014520\nTalk:Type-9 Heavy/@comment-108.67.228.190-20151015014520/@comment-206.208.187.105-20161217141538\nTalk:Type-9 Heavy/@comment-108.67.228.190-20151015014520/@comment-50.13.185.43-20151016035721\nTalk:Type-9 Heavy/@comment-109.152.193.114-20190213144841\nTalk:Type-9 Heavy/@comment-112.208.139.81-20150626184114\nTalk:Type-9 Heavy/@comment-150.208.129.188-20170329151641\nTalk:Type-9 Heavy/@comment-150.208.129.188-20170329151641/@comment-67.166.89.53-20170726022927\nTalk:Type-9 Heavy/@comment-150.208.129.188-20170329151641/@comment-72.197.150.63-20170717155619\nTalk:Type-9 Heavy/@comment-151.225.141.17-20151105222705\nTalk:Type-9 Heavy/@comment-151.225.141.17-20151105222705/@comment-24.56.242.42-20151114235059\nTalk:Type-9 Heavy/@comment-151.225.141.17-20151105222705/@comment-24.56.242.42-20151114235658\nTalk:Type-9 Heavy/@comment-151.225.141.17-20151105222705/@comment-24.56.242.42-20151115002512\nTalk:Type-9 Heavy/@comment-160.3.141.17-20150925065222\nTalk:Type-9 Heavy/@comment-160.3.141.17-20150925065222/@comment-160.3.141.17-20150925065425\nTalk:Type-9 Heavy/@comment-160.3.141.17-20150925065222/@comment-206.208.187.105-20161217141922\nTalk:Type-9 Heavy/@comment-173.191.151.131-20151224083708\nTalk:Type-9 Heavy/@comment-173.191.151.131-20151224083708/@comment-79.251.182.32-20160117165341\nTalk:Type-9 Heavy/@comment-173.55.173.227-20150517191858\nTalk:Type-9 Heavy/@comment-173.55.173.227-20150517191858/@comment-108.67.228.190-20150801070319\nTalk:Type-9 Heavy/@comment-178.42.60.252-20150923074548\nTalk:Type-9 Heavy/@comment-179.222.108.65-20151104031124\nTalk:Type-9 Heavy/@comment-179.222.108.65-20151104031124/@comment-86.209.67.114-20151105214103\nTalk:Type-9 Heavy/@comment-180.235.177.150-20150223110231\nTalk:Type-9 Heavy/@comment-180.235.177.150-20150223110231/@comment-66.44.241.1-20150322040851\nTalk:Type-9 Heavy/@comment-188.238.215.57-20170224143158\nTalk:Type-9 Heavy/@comment-190.155.132.151-20150705215518\nTalk:Type-9 Heavy/@comment-190.155.132.151-20150705215518/@comment-24754830-20150705234248\nTalk:Type-9 Heavy/@comment-190.155.132.151-20150705215518/@comment-84.129.82.134-20150706070420\nTalk:Type-9 Heavy/@comment-194.50.240.44-20141003080122\nTalk:Type-9 Heavy/@comment-200.113.32.182-20151021193638\nTalk:Type-9 Heavy/@comment-202.36.179.100-20140818042607\nTalk:Type-9 Heavy/@comment-202.36.179.100-20140818042607/@comment-83.32.241.107-20140823214044\nTalk:Type-9 Heavy/@comment-24.114.71.238-20151110120145\nTalk:Type-9 Heavy/@comment-24754830-20150615010418\nTalk:Type-9 Heavy/@comment-24754830-20150615010418/@comment-77.58.96.13-20150709170417\nTalk:Type-9 Heavy/@comment-25450485-20150924144411\nTalk:Type-9 Heavy/@comment-25450485-20150924144411/@comment-66.128.80.87-20151224063304\nTalk:Type-9 Heavy/@comment-25450485-20150924144411/@comment-73.44.65.107-20151015143101\nTalk:Type-9 Heavy/@comment-25450485-20150924144411/@comment-73.44.65.107-20151224150728\nTalk:Type-9 Heavy/@comment-25450485-20150924144411/@comment-94.11.32.255-20151225115754\nTalk:Type-9 Heavy/@comment-25450485-20150928094352\nTalk:Type-9 Heavy/@comment-25450485-20150928094352/@comment-26391992-20150928161544\nTalk:Type-9 Heavy/@comment-26005414-20150114053818\nTalk:Type-9 Heavy/@comment-26005414-20150114053818/@comment-26005414-20150122210245\nTalk:Type-9 Heavy/@comment-26005414-20150114053818/@comment-62.195.45.205-20150117093921\nTalk:Type-9 Heavy/@comment-26005414-20150122210004\nTalk:Type-9 Heavy/@comment-26005414-20150122210004/@comment-98.30.105.178-20150208004736\nTalk:Type-9 Heavy/@comment-2600:1012:B10B:F60A:587A:7084:163F:5EB-20181212033600\nTalk:Type-9 Heavy/@comment-2600:1012:B10B:F60A:587A:7084:163F:5EB-20181212033600/@comment-192.136.170.98-20181212154557\nTalk:Type-9 Heavy/@comment-2600:1012:B10B:F60A:587A:7084:163F:5EB-20181212033600/@comment-192.136.170.98-20181213160325\nTalk:Type-9 Heavy/@comment-2600:1012:B10B:F60A:587A:7084:163F:5EB-20181212033600/@comment-2600:6C44:637F:EEC0:0:5A24:5193:A36-20181213104828\nTalk:Type-9 Heavy/@comment-2600:1012:B10B:F60A:587A:7084:163F:5EB-20181212033600/@comment-2600:6C44:637F:EEC0:0:5A24:5193:A36-20181214204943\nTalk:Type-9 Heavy/@comment-2600:1012:B10B:F60A:587A:7084:163F:5EB-20181212033600/@comment-2600:6C44:637F:EEC0:0:5A24:5193:A36-20181215020718\nTalk:Type-9 Heavy/@comment-2600:1012:B10B:F60A:587A:7084:163F:5EB-20181212033600/@comment-2602:306:CE29:B0D0:7823:8E7A:723C:66A8-20190924085347\nTalk:Type-9 Heavy/@comment-2600:1012:B10B:F60A:587A:7084:163F:5EB-20181212033600/@comment-37820584-20181215063802\nTalk:Type-9 Heavy/@comment-2601:7C0:4100:BBCC:183E:EC7A:86F1:EEAD-20180314185230\nTalk:Type-9 Heavy/@comment-2602:306:CE29:B0D0:7823:8E7A:723C:66A8-20190924085642\nTalk:Type-9 Heavy/@comment-26048696-20150128093508\nTalk:Type-9 Heavy/@comment-2605:E000:7EC9:FF00:557A:AF2F:6C36:9FBF-20180713232531\nTalk:Type-9 Heavy/@comment-2605:E000:7EC9:FF00:557A:AF2F:6C36:9FBF-20180713232531/@comment-194.118.245.63-20181210235656\nTalk:Type-9 Heavy/@comment-2605:E000:ADD0:5B00:18C6:5F15:612C:7F2D-20180316005015\nTalk:Type-9 Heavy/@comment-2605:E000:ADD0:5B00:18C6:5F15:612C:7F2D-20180316005015/@comment-25527827-20180322040329\nTalk:Type-9 Heavy/@comment-26116574-20150325041246\nTalk:Type-9 Heavy/@comment-26116574-20150325041246/@comment-80.1.60.38-20150327020534\nTalk:Type-9 Heavy/@comment-26537865-20150709162823\nTalk:Type-9 Heavy/@comment-26537865-20150709162823/@comment-26391992-20150712195030\nTalk:Type-9 Heavy/@comment-26537865-20150712192311\nTalk:Type-9 Heavy/@comment-26537865-20150712192311/@comment-156.3.54.205-20150921194549\nTalk:Type-9 Heavy/@comment-26537865-20150806022811\nTalk:Type-9 Heavy/@comment-26639260-20150712141808\nTalk:Type-9 Heavy/@comment-26639260-20150712141808/@comment-109.173.209.113-20150712192256\nTalk:Type-9 Heavy/@comment-26639260-20150712141808/@comment-26537865-20150715181102\nTalk:Type-9 Heavy/@comment-26639260-20150712141808/@comment-99.232.27.104-20150712202716\nTalk:Type-9 Heavy/@comment-26639260-20150712141808/@comment-99.232.27.104-20150712202750\nTalk:Type-9 Heavy/@comment-27034370-20151005074544\nTalk:Type-9 Heavy/@comment-27034370-20151005074544/@comment-206.208.187.105-20161217141724\nTalk:Type-9 Heavy/@comment-30090528-20160928105334\nTalk:Type-9 Heavy/@comment-30090528-20160928105334/@comment-206.208.187.105-20161217140934\nTalk:Type-9 Heavy/@comment-32118528-20191106144731\nTalk:Type-9 Heavy/@comment-37.46.180.104-20140815194419\nTalk:Type-9 Heavy/@comment-37.46.180.104-20140815194419/@comment-172.56.38.27-20140907004517\nTalk:Type-9 Heavy/@comment-37.46.180.104-20140815194419/@comment-25249692-20140904213947\nTalk:Type-9 Heavy/@comment-37.46.180.104-20140815194419/@comment-94.9.164.136-20140904210143\nTalk:Type-9 Heavy/@comment-46.92.31.248-20170118083818\nTalk:Type-9 Heavy/@comment-46.92.31.248-20170118083818/@comment-146.90.47.174-20170325175719\nTalk:Type-9 Heavy/@comment-46.92.31.248-20170118083818/@comment-93.106.239.50-20170119212546\nTalk:Type-9 Heavy/@comment-4632371-20151110091110\nTalk:Type-9 Heavy/@comment-4632371-20151110091110/@comment-173.250.160.217-20151201003237\nTalk:Type-9 Heavy/@comment-4632371-20161029004709\nTalk:Type-9 Heavy/@comment-4632371-20161029004709/@comment-2155082-20161029040333\nTalk:Type-9 Heavy/@comment-4632371-20161029004709/@comment-2155082-20170117182043\nTalk:Type-9 Heavy/@comment-4632371-20161029004709/@comment-5959508-20170117142218\nTalk:Type-9 Heavy/@comment-4632371-20161029004709/@comment-93.106.198.121-20170117221456\nTalk:Type-9 Heavy/@comment-50.13.185.43-20151015013935\nTalk:Type-9 Heavy/@comment-50.13.185.43-20151015013935/@comment-90.154.74.197-20151017204958\nTalk:Type-9 Heavy/@comment-66.229.135.252-20141213140923\nTalk:Type-9 Heavy/@comment-66.229.135.252-20141223164118\nTalk:Type-9 Heavy/@comment-68.186.18.233-20150509181036\nTalk:Type-9 Heavy/@comment-68.186.18.233-20150509181036/@comment-81.140.39.179-20150926022226\nTalk:Type-9 Heavy/@comment-68.186.18.233-20150509181036/@comment-94.224.214.81-20150510174553\nTalk:Type-9 Heavy/@comment-69.123.241.214-20171026010547\nTalk:Type-9 Heavy/@comment-69.168.164.48-20190522104507\nTalk:Type-9 Heavy/@comment-70.30.83.108-20141227165431\nTalk:Type-9 Heavy/@comment-71.95.100.70-20150219032236\nTalk:Type-9 Heavy/@comment-71.95.100.70-20150219032236/@comment-26009169-20150224174550\nTalk:Type-9 Heavy/@comment-71.95.100.70-20150219032236/@comment-69.5.224.188-20150504214239\nTalk:Type-9 Heavy/@comment-71.95.100.70-20150219032236/@comment-71.21.3.159-20150224140446\nTalk:Type-9 Heavy/@comment-72.188.112.178-20150326070752\nTalk:Type-9 Heavy/@comment-72.188.112.178-20150326070752/@comment-26009169-20150326111621\nTalk:Type-9 Heavy/@comment-72.188.112.178-20150326070752/@comment-67.244.34.143-20150327023954\nTalk:Type-9 Heavy/@comment-72.188.112.178-20150326070752/@comment-73.1.55.15-20150820105017\nTalk:Type-9 Heavy/@comment-72.188.112.178-20150326070752/@comment-80.1.60.38-20150327020255\nTalk:Type-9 Heavy/@comment-72.197.183.91-20150726012212\nTalk:Type-9 Heavy/@comment-72.197.183.91-20150726012212/@comment-104.173.64.40-20150801014612\nTalk:Type-9 Heavy/@comment-72.197.183.91-20150726012212/@comment-218.214.113.193-20150806171243\nTalk:Type-9 Heavy/@comment-72.197.183.91-20150726012212/@comment-4962297-20150809082016\nTalk:Type-9 Heavy/@comment-73.1.55.15-20150820104622\nTalk:Type-9 Heavy/@comment-74.90.92.146-20150419211344\nTalk:Type-9 Heavy/@comment-74.90.92.146-20150419212054\nTalk:Type-9 Heavy/@comment-74.90.92.146-20150419212054/@comment-26116574-20150420043945\nTalk:Type-9 Heavy/@comment-74.90.92.146-20150530040210\nTalk:Type-9 Heavy/@comment-74.90.92.146-20150530040210/@comment-25450485-20150928094255\nTalk:Type-9 Heavy/@comment-74.90.92.146-20150530040210/@comment-81.140.39.179-20150926022057\nTalk:Type-9 Heavy/@comment-76.124.162.53-20150108223924\nTalk:Type-9 Heavy/@comment-76.124.162.53-20150108224454\nTalk:Type-9 Heavy/@comment-76.176.74.117-20150814004743\nTalk:Type-9 Heavy/@comment-77.58.96.13-20150708132511\nTalk:Type-9 Heavy/@comment-77.58.96.13-20150708132511/@comment-85.11.232.221-20150718105944\nTalk:Type-9 Heavy/@comment-77.58.96.13-20150708132511/@comment-89.176.136.134-20150709203302\nTalk:Type-9 Heavy/@comment-78.84.194.195-20150723030104\nTalk:Type-9 Heavy/@comment-80.1.60.38-20150327021539\nTalk:Type-9 Heavy/@comment-80.1.60.38-20150327021539/@comment-26116574-20150327041253\nTalk:Type-9 Heavy/@comment-80.1.60.38-20150327021539/@comment-80.1.60.38-20150327152234\nTalk:Type-9 Heavy/@comment-80.1.60.38-20150327152649\nTalk:Type-9 Heavy/@comment-80.1.60.38-20150327152649/@comment-173.250.160.217-20151201002933\nTalk:Type-9 Heavy/@comment-80.1.60.38-20150327152649/@comment-26116574-20150328002824\nTalk:Type-9 Heavy/@comment-81.109.67.129-20150716210844\nTalk:Type-9 Heavy/@comment-82.217.13.233-20160718083054\nTalk:Type-9 Heavy/@comment-83.135.63.220-20150206181933\nTalk:Type-9 Heavy/@comment-83.135.63.220-20150206181933/@comment-76.18.220.223-20150216152142\nTalk:Type-9 Heavy/@comment-83.244.197.2-20180126103633\nTalk:Type-9 Heavy/@comment-83.244.197.2-20180126103633/@comment-192.136.161.33-20180126184439\nTalk:Type-9 Heavy/@comment-83.244.197.2-20180126103633/@comment-192.136.161.33-20180126204834\nTalk:Type-9 Heavy/@comment-83.244.197.2-20180126103633/@comment-26005414-20180126155714\nTalk:Type-9 Heavy/@comment-83.244.197.2-20180126103633/@comment-26005414-20180126162201\nTalk:Type-9 Heavy/@comment-83.244.197.2-20180126103633/@comment-26005414-20180126203221\nTalk:Type-9 Heavy/@comment-83.244.197.2-20180126103633/@comment-2602:306:CE29:B0D0:7823:8E7A:723C:66A8-20190924085852\nTalk:Type-9 Heavy/@comment-83.244.197.2-20180126103633/@comment-34604154-20180206073901\nTalk:Type-9 Heavy/@comment-83.93.4.137-20150702214506\nTalk:Type-9 Heavy/@comment-84.236.40.209-20180319103350\nTalk:Type-9 Heavy/@comment-84.236.40.209-20180319103350/@comment-188.238.199.254-20180413185357\nTalk:Type-9 Heavy/@comment-84.236.40.209-20180319103350/@comment-194.118.245.63-20181211000231\nTalk:Type-9 Heavy/@comment-84.236.40.209-20180319103350/@comment-194.118.245.63-20181211000500\nTalk:Type-9 Heavy/@comment-84.246.166.26-20160122154858\nTalk:Type-9 Heavy/@comment-84.250.76.92-20150116154451\nTalk:Type-9 Heavy/@comment-84.7.60.202-20180523102904\nTalk:Type-9 Heavy/@comment-84.7.60.202-20180523102904/@comment-2001:8003:641A:D700:C9B2:5F2:D932:5A5C-20180707004534\nTalk:Type-9 Heavy/@comment-86.1.61.9-20151031024942\nTalk:Type-9 Heavy/@comment-88.109.55.111-20160124211616\nTalk:Type-9 Heavy/@comment-88.109.55.111-20160124212605\nTalk:Type-9 Heavy/@comment-88.109.55.111-20160124212605/@comment-50.170.117.254-20160210044323\nTalk:Type-9 Heavy/@comment-88.109.55.111-20160124213040\nTalk:Type-9 Heavy/@comment-88.109.55.111-20160124213040/@comment-210.124.128.146-20160305114541\nTalk:Type-9 Heavy/@comment-88.109.55.111-20160124213040/@comment-70.25.67.73-20160710114825\nTalk:Type-9 Heavy/@comment-88.152.98.102-20160928083610\nTalk:Type-9 Heavy/@comment-88.152.98.102-20160928083610/@comment-2155082-20160929034758\nTalk:Type-9 Heavy/@comment-88.152.98.102-20160928083610/@comment-26005414-20160929033658\nTalk:Type-9 Heavy/@comment-88.152.98.102-20160928083610/@comment-77.153.203.82-20171002094403\nTalk:Type-9 Heavy/@comment-89.168.0.206-20150304223131\nTalk:Type-9 Heavy/@comment-89.168.0.206-20150304223131/@comment-72.188.112.178-20150326071033\nTalk:Type-9 Heavy/@comment-89.168.0.206-20150304223131/@comment-99.7.33.246-20150313183714\nTalk:Type-9 Heavy/@comment-90.144.181.197-20141217230149\nTalk:Type-9 Heavy/@comment-92.201.187.198-20150118155552\nTalk:Type-9 Heavy/@comment-92.201.187.198-20150118155552/@comment-162.192.80.24-20150205054712\nTalk:Type-9 Heavy/@comment-92.201.187.198-20150118155552/@comment-92.201.187.198-20150118161833\nTalk:Type-9 Heavy/@comment-94.12.31.80-20170725005309\nTalk:Type-9 Heavy/@comment-94.12.31.80-20170725005309/@comment-39085855-20200224160833\nTalk:Type-9 Heavy/@comment-94.12.31.80-20170725005309/@comment-43354983-20200211185513\nTalk:Type-9 Heavy/@comment-95.234.42.22-20161228141211\nTalk:Type-9 Heavy/@comment-95.33.66.119-20150910235439\nTalk:Type-9 Heavy/@comment-95.90.240.212-20160317155827\nTalk:Type-9 Heavy/@comment-96.66.230.137-20170412213501\nTalk:Type-9 Heavy/@comment-97.80.112.58-20141222231437\nTalk:Type-9 Heavy/@comment-97.80.112.58-20141222231437/@comment-91.125.153.117-20150315183241\nTalk:Type-9 Heavy/@comment-98.26.87.63-20150621021356\nTalk:Type-9 Heavy/@comment-99.7.33.246-20150313184237\nTalk:Type-9 Heavy/@comment-99.7.33.246-20150313184237/@comment-174.22.224.172-20150314054823\nTalk:Type-9 Heavy/@comment-99.7.33.246-20150313184237/@comment-174.22.224.172-20150314063423\nTalk:Type-9 Heavy/@comment-99.7.33.246-20150313184237/@comment-174.22.224.172-20150314080828\nTalk:Type-9 Heavy/@comment-99.7.33.246-20150313184237/@comment-72.188.112.178-20150326071256\nTalk:Type-9 Heavy/@comment-99.7.33.246-20150313184237/@comment-80.1.60.38-20150327020730\nTalk:Type-9 Heavy/@comment-99.7.33.246-20150313184237/@comment-83.145.208.113-20150323142154\nTalk:Type-9 Heavy/@comment-99.7.33.246-20150313184237/@comment-93.35.1.34-20150316094630\nTalk:Umbrella Mollusc/@comment-2804:1B2:F080:2F06:50EB:ACA3:6B1F:A74D-20200125234721\nTalk:Unexpected Emission Data/@comment-93.185.27.77-20170322153850\nTalk:Unidentified Signal Source/@comment-124.170.72.234-20150314071254\nTalk:Unidentified Signal Source/@comment-124.170.72.234-20150314071254/@comment-30496832-20161230184750\nTalk:Unidentified Signal Source/@comment-149.254.250.129-20150202082712\nTalk:Unidentified Signal Source/@comment-149.254.250.129-20150202082712/@comment-118.209.100.12-20151017040830\nTalk:Unidentified Signal Source/@comment-149.254.250.129-20150202082712/@comment-26047279-20150216000221\nTalk:Unidentified Signal Source/@comment-192.136.161.156-20160922111232\nTalk:Unidentified Signal Source/@comment-208.58.205.146-20161104181308\nTalk:Unidentified Signal Source/@comment-212.130.79.141-20150105033054\nTalk:Unidentified Signal Source/@comment-212.130.79.141-20150105033054/@comment-30496832-20161230184524\nTalk:Unidentified Signal Source/@comment-212.130.79.141-20150105033054/@comment-98.239.48.227-20150120135358\nTalk:Unidentified Signal Source/@comment-213.127.72.24-20170112163014\nTalk:Unidentified Signal Source/@comment-213.127.72.24-20170112163014/@comment-213.127.72.24-20170112163151\nTalk:Unidentified Signal Source/@comment-25803634-20180405025952\nTalk:Unidentified Signal Source/@comment-25803634-20180405025952/@comment-174.228.19.243-20180505065923\nTalk:Unidentified Signal Source/@comment-26047279-20150215230735\nTalk:Unidentified Signal Source/@comment-29011619-20160731091049\nTalk:Unidentified Signal Source/@comment-29011619-20160731091049/@comment-91.96.250.54-20170916191957\nTalk:Unidentified Signal Source/@comment-43412693-20190806160357\nTalk:Unidentified Signal Source/@comment-67.247.165.196-20170225032622\nTalk:Unidentified Signal Source/@comment-75.69.59.212-20150609201034\nTalk:Unidentified Signal Source/@comment-75.69.59.212-20150609201034/@comment-30496832-20161230185230\nTalk:Unidentified Signal Source/@comment-75.69.59.212-20150609201034/@comment-95.91.228.79-20160708185450\nTalk:Unidentified Signal Source/@comment-92.209.110.179-20150116114340\nTalk:Unidentified Signal Source/@comment-92.209.110.179-20150116114340/@comment-4968814-20150117174153\nTalk:Unidentified Signal Source/@comment-98.239.48.227-20150130160013\nTalk:United States of the Americas/@comment-207.161.12.173-20181005015658\nTalk:United States of the Americas/@comment-207.161.12.173-20181005015658/@comment-2601:586:C801:6181:8451:81B5:8C8D:3510-20181226140454\nTalk:United States of the Americas/@comment-207.161.12.173-20181005015658/@comment-2607:FB90:4ED5:7B55:575A:A05F:6C0C:9A92-20200101215235\nTalk:United States of the Americas/@comment-207.161.12.173-20181005015658/@comment-33202525-20200101234921\nTalk:United States of the Americas/@comment-2601:586:C801:6181:98DD:8F5B:14FC:E829-20181223141627\nTalk:United States of the Americas/@comment-2601:586:C801:6181:98DD:8F5B:14FC:E829-20181223141627/@comment-107.77.253.6-20181224020250\nTalk:United States of the Americas/@comment-2601:586:C801:6181:98DD:8F5B:14FC:E829-20181223141627/@comment-2601:586:C801:6181:6991:D9C7:537D:7B5A-20181224134058\nTalk:United States of the Americas/@comment-2601:586:C801:6181:98DD:8F5B:14FC:E829-20181223141627/@comment-2601:586:C801:6181:6991:D9C7:537D:7B5A-20181224154944\nTalk:United States of the Americas/@comment-2601:586:C801:6181:98DD:8F5B:14FC:E829-20181223141627/@comment-2601:586:C801:6181:6991:D9C7:537D:7B5A-20181224204040\nTalk:United States of the Americas/@comment-2601:586:C801:6181:98DD:8F5B:14FC:E829-20181223141627/@comment-2601:586:C801:6181:8FF:7773:EDB2:FD4-20181229002609\nTalk:United States of the Americas/@comment-2601:586:C801:6181:98DD:8F5B:14FC:E829-20181223141627/@comment-30928085-20181223210242\nTalk:United States of the Americas/@comment-2601:586:C801:6181:98DD:8F5B:14FC:E829-20181223141627/@comment-30928085-20181224022822\nTalk:United States of the Americas/@comment-2601:586:C801:6181:98DD:8F5B:14FC:E829-20181223141627/@comment-30928085-20181224150759\nTalk:United States of the Americas/@comment-2601:586:C801:6181:98DD:8F5B:14FC:E829-20181223141627/@comment-30928085-20181224161908\nTalk:United States of the Americas/@comment-2601:586:C801:6181:98DD:8F5B:14FC:E829-20181223141627/@comment-30928085-20181224174400\nTalk:United States of the Americas/@comment-2601:586:C801:6181:98DD:8F5B:14FC:E829-20181223141627/@comment-33202525-20181224173245\nTalk:United States of the Americas/@comment-2601:586:C801:6181:98DD:8F5B:14FC:E829-20181223141627/@comment-46234606-20200701075525\nTalk:United States of the Americas/@comment-2607:FB90:4ED5:7B55:575A:A05F:6C0C:9A92-20200101215044\nTalk:United States of the Americas/@comment-2607:FB90:4ED5:7B55:575A:A05F:6C0C:9A92-20200101215044/@comment-33202525-20200101235536\nTalk:United States of the Americas/@comment-28049586-20181219090049\nTalk:United States of the Americas/@comment-28049586-20181219090049/@comment-2601:586:C801:6181:3D1F:B789:EA4F:408B-20190214215405\nTalk:United States of the Americas/@comment-28049586-20181219090049/@comment-2601:586:C801:6181:8451:81B5:8C8D:3510-20181226135758\nTalk:United States of the Americas/@comment-28049586-20181219090049/@comment-39771741-20191108205823\nTalk:United States of the Americas/@comment-33202525-20181223185225\nTalk:United States of the Americas/@comment-33202525-20181223185225/@comment-2601:586:C801:6181:2D5A:D57E:F626:FDD6-20190105185216\nTalk:United States of the Americas/@comment-33202525-20181223185225/@comment-2601:586:C801:6181:517:2203:74FB:1BD5-20190218142621\nTalk:United States of the Americas/@comment-33202525-20181223185225/@comment-2601:586:C801:6181:7C9A:17B0:564E:6ED0-20190105140202\nTalk:United States of the Americas/@comment-33202525-20181223185225/@comment-2601:586:C801:6181:D03E:3AD8:1AC0:AC43-20190106145158\nTalk:United States of the Americas/@comment-33202525-20181223185225/@comment-30928085-20181223204256\nTalk:United States of the Americas/@comment-33202525-20181223185225/@comment-30928085-20190105142209\nTalk:United States of the Americas/@comment-33202525-20181223185225/@comment-30928085-20190106020152\nTalk:United States of the Americas/@comment-33202525-20181224171407\nTalk:United States of the Americas/@comment-33202525-20181224171407/@comment-2601:586:C801:6181:6991:D9C7:537D:7B5A-20181224204701\nTalk:United States of the Americas/@comment-33202525-20181224171407/@comment-2601:586:C801:6181:6991:D9C7:537D:7B5A-20181224214905\nTalk:United States of the Americas/@comment-33202525-20181224171407/@comment-30928085-20181224221730\nTalk:United States of the Americas/@comment-33202525-20181224171407/@comment-33202525-20200101235729\nTalk:United States of the Americas/@comment-33202525-20181224171407/@comment-39771741-20191108205618\nTalk:Universal Cartographics/@comment-51.148.96.243-20191009154703\nTalk:Unknown Artefact/@comment-108.82.81.152-20150712040724\nTalk:Unknown Artefact/@comment-108.82.81.152-20150712040724/@comment-26569495-20150712041422\nTalk:Unknown Artefact/@comment-26373440-20150505233513\nTalk:Unregistered Comms Beacon/@comment-140.0.196.109-20180514123835\nTalk:Unregistered Comms Beacon/@comment-2001:1C01:3101:D100:B48D:81BD:4ED1:56C9-20181111220448\nTalk:Unregistered Comms Beacon/@comment-2001:1C01:3101:D100:B48D:81BD:4ED1:56C9-20181111220448/@comment-2001:1C01:3101:D100:B48D:81BD:4ED1:56C9-20181111220917\nTalk:Unregistered Comms Beacon/@comment-2601:201:C000:50:E166:6E03:4176:FEB8-20190325021424\nTalk:Unregistered Comms Beacon/@comment-2606:6000:D705:2600:C9E:9F08:175B:9A4C-20180417173842\nTalk:Unregistered Comms Beacon/@comment-2606:6000:D705:2600:C9E:9F08:175B:9A4C-20180417173842/@comment-2601:984:8100:EBD8:24D4:596E:7F8F:317B-20190414021029\nTalk:Unregistered Comms Beacon/@comment-2606:6000:D705:2600:C9E:9F08:175B:9A4C-20180417173842/@comment-33952827-20180507181301\nTalk:Unregistered Comms Beacon/@comment-2A02:908:5BB:B8C0:90CD:1F1F:3C40:EF95-20181110011533\nTalk:Unregistered Comms Beacon/@comment-2A02:908:5BB:B8C0:90CD:1F1F:3C40:EF95-20181110011533/@comment-174.18.39.17-20190123222928\nTalk:Unregistered Comms Beacon/@comment-33823123-20190120044346\nTalk:Unregistered Comms Beacon/@comment-33823123-20190120044346/@comment-135.23.170.45-20190405044000\nTalk:Unregistered Comms Beacon/@comment-33823123-20190120044346/@comment-135.23.170.45-20190405045951\nTalk:Unregistered Comms Beacon/@comment-33823123-20190120044346/@comment-91.101.59.89-20190220005901\nTalk:Unstable Data Core/@comment-903860-20200903053727\nTalk:Uraninite/@comment-216.6.241.157-20141217234940\nTalk:Uraninite/@comment-216.6.241.157-20141217234940/@comment-68.235.174.86-20150206025312\nTalk:Uraninite/@comment-74.97.38.183-20150225040809\nTalk:Uszaian Tree Grub/@comment-63.64.75.10-20151216221000\nTalk:Uszaian Tree Grub/@comment-77.50.26.143-20160814210329\nTalk:Utgaroar Millennial Eggs/@comment-77.50.26.143-20160814210525\nTalk:Utopia/@comment-176.21.127.212-20191026063801\nTalk:Utopia/@comment-24740282-20180329210550\nTalk:Uzumoku Low-G Wings/@comment-99.197.202.36-20150806081409\nTalk:Uzumoku Low-G Wings/@comment-99.197.202.36-20150806081409/@comment-12.105.192.18-20150806200458\nTalk:VY Canis Majoris/@comment-24.153.123.192-20180716032603\nTalk:VY Canis Majoris/@comment-24.153.123.192-20180716032603/@comment-108.18.139.118-20180929010254\nTalk:VY Canis Majoris/@comment-24.153.123.192-20180716032603/@comment-159.148.51.94-20190128152241\nTalk:VY Canis Majoris/@comment-24.22.215.203-20180415002817\nTalk:VY Canis Majoris/@comment-2602:306:CE29:B0D0:A59C:139F:BE76:428A-20190820070449\nTalk:VY Canis Majoris/@comment-2602:306:CE29:B0D0:A59C:139F:BE76:428A-20190820070449/@comment-2600:8805:CC00:DDF:B55A:F1F1:F8BE:5530-20190823165350\nTalk:VY Canis Majoris/@comment-2602:306:CE29:B0D0:A59C:139F:BE76:428A-20190820070449/@comment-2602:306:CE29:B0D0:8507:DE4B:452F:20D-20190826103927\nTalk:Vanadium/@comment-173.26.133.14-20151226012355\nTalk:Vanadium/@comment-173.26.133.14-20151226012355/@comment-176.144.2.105-20160408164841\nTalk:Vanadium/@comment-173.26.133.14-20151226012355/@comment-26009169-20151226021808\nTalk:Vanadium/@comment-189.5.217.108-20160518130031\nTalk:Vanadium/@comment-189.5.217.108-20160518130031/@comment-189.5.217.108-20160518130156\nTalk:Vanadium/@comment-189.5.217.108-20160518130031/@comment-192.136.173.19-20160518130212\nTalk:Vanadium/@comment-27986221-20160408203245\nTalk:Vanadium/@comment-29011619-20160713181007\nTalk:Vanadium/@comment-37928161-20190415194453\nTalk:Vanadium/@comment-80.110.67.214-20160809223115\nTalk:Vanadium/@comment-80.110.67.214-20160809223115/@comment-24.47.63.133-20180129004126\nTalk:Vanadium/@comment-99.44.16.152-20151226211214\nTalk:Vanadium/@comment-99.44.16.152-20151226211214/@comment-153.46.105.98-20151228101233\nTalk:Vanadium/@comment-99.44.16.152-20151226211214/@comment-98.223.123.205-20151228040423\nTalk:Vandermeer Corporation/@comment-185.31.50.30-20191015080333\nTalk:Vandermeer Corporation/@comment-185.31.50.30-20191015080333/@comment-185.31.50.30-20191015080434\nTalk:Vandermeer Corporation/@comment-185.31.50.30-20191015080333/@comment-185.31.50.30-20191015080727\nTalk:Vanguard/@comment-180.254.226.183-20190415070023\nTalk:Vega/@comment-194.63.116.72-20180806133432\nTalk:Vega/@comment-24.111.243.130-20180301224833\nTalk:Vega/@comment-24.183.99.192-20161104004419\nTalk:Vega/@comment-24.183.99.192-20161104004419/@comment-174.96.14.169-20171115205146\nTalk:Vega/@comment-24.183.99.192-20161104004419/@comment-178.19.182.62-20180723222942\nTalk:Vega/@comment-24.183.99.192-20161104004419/@comment-2155082-20161104034024\nTalk:Vega/@comment-24.183.99.192-20161104004419/@comment-216.184.95.100-20170817125415\nTalk:Vega/@comment-24.183.99.192-20161104004419/@comment-27.122.14.69-20190428091411\nTalk:Vega/@comment-2406:E006:2529:3401:851A:9848:832:D466-20190428062831\nTalk:Vega/@comment-2602:306:CE29:B0D0:D843:E477:F58:DA4C-20190927082139\nTalk:Vega/@comment-69.5.120.192-20180910040357\nTalk:Vega/@comment-69.5.120.192-20180910040357/@comment-86.249.163.193-20190107213530\nTalk:Vega/@comment-89.98.182.81-20190919223020\nTalk:Vega Slimweed/@comment-208.54.83.137-20170116230808\nTalk:Vega Slimweed/@comment-2601:188:8300:D20:A9DC:504B:16F4:5BFA-20180428203254\nTalk:Vega Slimweed/@comment-2601:188:8300:D20:A9DC:504B:16F4:5BFA-20180428203254/@comment-71.229.31.40-20190517231020\nTalk:Vega Slimweed/@comment-71.180.180.109-20150511053355\nTalk:Vehicles/@comment-80.37.191.82-20170328111022\nTalk:Vehicles/@comment-80.37.191.82-20170328111022/@comment-30928085-20171018045245\nTalk:Venus/@comment-162.253.131.140-20191103231619\nTalk:Venus/@comment-2182702-20190630181841\nTalk:Version history/@comment-2A00:1370:811D:C764:1905:510:D53C:73AA-20191102183954\nTalk:Version history/@comment-2A00:1370:811D:C764:1905:510:D53C:73AA-20191102183954/@comment-62.233.207.3-20191210101754\nTalk:Version history/@comment-69.92.69.114-20160602164355\nTalk:Version history/@comment-76.84.22.156-20190707115144\nTalk:Viper MkIII/@comment-101.166.161.36-20150404123215\nTalk:Viper MkIII/@comment-101.166.161.36-20150404123215/@comment-203.7.75.205-20161106064920\nTalk:Viper MkIII/@comment-101.166.161.36-20150404123215/@comment-71.233.88.91-20160526143004\nTalk:Viper MkIII/@comment-108.41.120.242-20151022100855\nTalk:Viper MkIII/@comment-108.41.120.242-20151022100855/@comment-78.131.93.136-20151102183148\nTalk:Viper MkIII/@comment-108.41.120.242-20151022100855/@comment-78.131.93.136-20151102185205\nTalk:Viper MkIII/@comment-108.41.120.242-20151022100855/@comment-78.131.93.136-20151102192103\nTalk:Viper MkIII/@comment-173.23.170.210-20150401010413\nTalk:Viper MkIII/@comment-173.23.170.210-20150401010413/@comment-122.109.55.212-20150816025746\nTalk:Viper MkIII/@comment-173.23.170.210-20150401010413/@comment-27311754-20151229000451\nTalk:Viper MkIII/@comment-173.23.170.210-20150401010413/@comment-72.91.179.207-20150403190926\nTalk:Viper MkIII/@comment-173.23.170.210-20150401010413/@comment-88.85.155.146-20150402161119\nTalk:Viper MkIII/@comment-188.126.168.102-20150615005326\nTalk:Viper MkIII/@comment-188.126.168.102-20150615005326/@comment-147.69.22.101-20150921222535\nTalk:Viper MkIII/@comment-188.126.168.102-20150615005326/@comment-147.69.22.101-20150921222615\nTalk:Viper MkIII/@comment-188.126.168.102-20150615005326/@comment-188.126.175.130-20150616221857\nTalk:Viper MkIII/@comment-188.126.168.102-20150615005326/@comment-192.136.161.52-20161220175212\nTalk:Viper MkIII/@comment-188.126.168.102-20150615005326/@comment-27115814-20160111155848\nTalk:Viper MkIII/@comment-188.126.168.102-20150615005326/@comment-30802664-20161220150038\nTalk:Viper MkIII/@comment-188.126.168.102-20150615005326/@comment-38.132.167.192-20160116084643\nTalk:Viper MkIII/@comment-192.184.105.238-20180218064748\nTalk:Viper MkIII/@comment-192.184.105.238-20180218064748/@comment-34252493-20180218212140\nTalk:Viper MkIII/@comment-195.241.120.40-20150104212134\nTalk:Viper MkIII/@comment-195.241.120.40-20150104212134/@comment-174.102.96.147-20150308060332\nTalk:Viper MkIII/@comment-195.241.120.40-20150104212134/@comment-81.100.56.210-20150711162253\nTalk:Viper MkIII/@comment-196.212.150.147-20141222132527\nTalk:Viper MkIII/@comment-207.30.100.162-20150610190646\nTalk:Viper MkIII/@comment-207.30.100.162-20150610190646/@comment-203.14.52.144-20150611031645\nTalk:Viper MkIII/@comment-207.30.100.162-20150610190646/@comment-207.30.100.162-20150610190712\nTalk:Viper MkIII/@comment-207.30.100.162-20150610190646/@comment-75.173.245.27-20160102041129\nTalk:Viper MkIII/@comment-207.30.100.162-20150610190646/@comment-91.158.168.72-20150702183414\nTalk:Viper MkIII/@comment-208.127.120.49-20141230081919\nTalk:Viper MkIII/@comment-209.23.239.126-20150416174203\nTalk:Viper MkIII/@comment-209.23.239.126-20150416174203/@comment-174.89.132.60-20170313055409\nTalk:Viper MkIII/@comment-209.23.239.126-20150416174203/@comment-62.20.62.212-20180208142801\nTalk:Viper MkIII/@comment-209.23.239.126-20150416174203/@comment-88.85.155.146-20150417150112\nTalk:Viper MkIII/@comment-217.230.0.209-20141005184634\nTalk:Viper MkIII/@comment-217.230.0.209-20141005184634/@comment-25249692-20141005190135\nTalk:Viper MkIII/@comment-24.16.173.126-20150126054057\nTalk:Viper MkIII/@comment-2600:1700:9A60:CDB0:F93E:A210:59FE:D8F0-20180319032748\nTalk:Viper MkIII/@comment-2600:1700:9A60:CDB0:F93E:A210:59FE:D8F0-20180319032748/@comment-2600:1700:9A60:CDB0:F93E:A210:59FE:D8F0-20180319034436\nTalk:Viper MkIII/@comment-26040397-20150124231922\nTalk:Viper MkIII/@comment-26048696-20150127222630\nTalk:Viper MkIII/@comment-26113847-20150221031955\nTalk:Viper MkIII/@comment-26227424-20160527000033\nTalk:Viper MkIII/@comment-33354199-20180106084505\nTalk:Viper MkIII/@comment-50.150.51.32-20141220202824\nTalk:Viper MkIII/@comment-5016083-20150129065311\nTalk:Viper MkIII/@comment-62.224.116.204-20170608224215\nTalk:Viper MkIII/@comment-62.224.116.204-20170608224215/@comment-2003:5F:280F:C439:48AB:298A:1BC9:13B2-20170801185640\nTalk:Viper MkIII/@comment-62.224.116.204-20170608224215/@comment-30245159-20170608230409\nTalk:Viper MkIII/@comment-64.254.141.37-20130814193927\nTalk:Viper MkIII/@comment-64.254.141.37-20130814193927/@comment-203.173.249.98-20150411230943\nTalk:Viper MkIII/@comment-64.254.141.37-20130814193927/@comment-86.14.75.31-20150116223807\nTalk:Viper MkIII/@comment-66.190.101.194-20150206013836\nTalk:Viper MkIII/@comment-66.190.101.194-20150206013836/@comment-73.51.9.154-20150210195023\nTalk:Viper MkIII/@comment-66.190.101.194-20150206013836/@comment-85.228.210.179-20150329185516\nTalk:Viper MkIII/@comment-66.229.135.252-20141213140506\nTalk:Viper MkIII/@comment-66.229.135.252-20141223163904\nTalk:Viper MkIII/@comment-69.91.139.151-20151203004528\nTalk:Viper MkIII/@comment-70.193.16.28-20150203190025\nTalk:Viper MkIII/@comment-70.193.16.28-20150203190025/@comment-174.102.96.147-20150308060416\nTalk:Viper MkIII/@comment-70.193.16.28-20150203190025/@comment-174.102.96.147-20150309004210\nTalk:Viper MkIII/@comment-70.193.16.28-20150203190025/@comment-26009169-20150308130103\nTalk:Viper MkIII/@comment-70.30.83.108-20141227165248\nTalk:Viper MkIII/@comment-77.23.57.19-20141222134702\nTalk:Viper MkIII/@comment-82.226.121.139-20141209022812\nTalk:Viper MkIII/@comment-82.226.121.139-20141209022812/@comment-68.204.186.139-20141218095550\nTalk:Viper MkIII/@comment-82.226.121.139-20141209022812/@comment-71.95.100.70-20141221055747\nTalk:Viper MkIII/@comment-82.226.121.139-20141209022812/@comment-73.53.173.145-20141226104853\nTalk:Viper MkIII/@comment-85.228.210.179-20150329185623\nTalk:Viper MkIII/@comment-88.112.91.114-20141224151614\nTalk:Viper MkIII/@comment-88.112.91.114-20141224151614/@comment-85.228.210.179-20150329185716\nTalk:Viper MkIII/@comment-88.235.151.1-20141020223059\nTalk:Viper MkIII/@comment-88.235.151.1-20141020223059/@comment-5.18.35.3-20141101200234\nTalk:Viper MkIII/@comment-88.85.155.146-20150302231424\nTalk:Viper MkIII/@comment-88.85.155.146-20150402161420\nTalk:Viper MkIII/@comment-88.85.155.146-20150402161420/@comment-26420537-20150528220935\nTalk:Viper MkIII/@comment-88.85.155.146-20150402161420/@comment-88.85.155.146-20150402161543\nTalk:Viper MkIII/@comment-95.90.240.212-20160317155951\nTalk:Viper MkIV/@comment-100.2.35.122-20180703042706\nTalk:Viper MkIV/@comment-101.184.150.174-20160113054906\nTalk:Viper MkIV/@comment-101.184.150.174-20160113054906/@comment-66.109.235.218-20160215163151\nTalk:Viper MkIV/@comment-101.184.180.220-20160122124716\nTalk:Viper MkIV/@comment-101.184.180.220-20160122124716/@comment-24.1.9.47-20180210214835\nTalk:Viper MkIV/@comment-101.184.180.220-20160122124716/@comment-91.63.204.169-20160810071857\nTalk:Viper MkIV/@comment-145.8.179.218-20181207093324\nTalk:Viper MkIV/@comment-145.8.179.218-20181207093324/@comment-192.136.170.98-20181207184039\nTalk:Viper MkIV/@comment-145.8.179.218-20181207093324/@comment-192.136.170.98-20190215191644\nTalk:Viper MkIV/@comment-150.208.129.188-20170329144044\nTalk:Viper MkIV/@comment-173.49.250.165-20180921015912\nTalk:Viper MkIV/@comment-173.49.250.165-20180921015912/@comment-164.58.18.238-20180927175445\nTalk:Viper MkIV/@comment-173.76.104.238-20151004040951\nTalk:Viper MkIV/@comment-173.76.104.238-20151004040951/@comment-78.48.77.74-20151006160818\nTalk:Viper MkIV/@comment-173.76.104.238-20151004040951/@comment-99.135.98.174-20151026220851\nTalk:Viper MkIV/@comment-174.71.84.171-20151001055752\nTalk:Viper MkIV/@comment-174.71.84.171-20151001055752/@comment-108.47.237.140-20151008223828\nTalk:Viper MkIV/@comment-174.71.84.171-20151001055752/@comment-173.13.34.205-20151013173532\nTalk:Viper MkIV/@comment-174.71.84.171-20151001055752/@comment-24.27.36.71-20151101051625\nTalk:Viper MkIV/@comment-174.71.84.171-20151001055752/@comment-26391992-20151021210003\nTalk:Viper MkIV/@comment-174.71.84.171-20151001055752/@comment-67.193.181.150-20151220092538\nTalk:Viper MkIV/@comment-174.71.84.171-20151001055752/@comment-73.1.55.15-20151116190745\nTalk:Viper MkIV/@comment-184.191.120.50-20151019032257\nTalk:Viper MkIV/@comment-184.191.120.50-20151019032257/@comment-26391992-20151021210040\nTalk:Viper MkIV/@comment-184.191.120.50-20151019032257/@comment-27126505-20151027150041\nTalk:Viper MkIV/@comment-191.114.103.217-20151114113105\nTalk:Viper MkIV/@comment-191.114.103.217-20151114113105/@comment-200.113.32.182-20151116151646\nTalk:Viper MkIV/@comment-191.114.103.217-20151114113105/@comment-200.113.32.182-20151117145211\nTalk:Viper MkIV/@comment-191.114.103.217-20151114113105/@comment-2601:243:480:98D9:86E:EAC:6687:764-20180302010431\nTalk:Viper MkIV/@comment-191.114.103.217-20151114113105/@comment-26391992-20151115110046\nTalk:Viper MkIV/@comment-191.114.103.217-20151114113105/@comment-85.182.140.170-20151117123408\nTalk:Viper MkIV/@comment-192.136.175.219-20160223163742\nTalk:Viper MkIV/@comment-192.136.175.219-20160223163742/@comment-162.25.24.153-20160224083729\nTalk:Viper MkIV/@comment-192.136.175.219-20160223163742/@comment-162.25.24.153-20160224160117\nTalk:Viper MkIV/@comment-192.136.175.219-20160223163742/@comment-192.136.175.219-20160223170744\nTalk:Viper MkIV/@comment-192.136.175.219-20160223163742/@comment-192.136.175.219-20160223182656\nTalk:Viper MkIV/@comment-192.136.175.219-20160223163742/@comment-192.136.175.219-20160223184506\nTalk:Viper MkIV/@comment-192.136.175.219-20160223163742/@comment-192.136.175.219-20160224122309\nTalk:Viper MkIV/@comment-192.136.175.219-20160223163742/@comment-192.136.175.219-20160224132800\nTalk:Viper MkIV/@comment-192.136.175.219-20160223163742/@comment-192.136.175.219-20160224141617\nTalk:Viper MkIV/@comment-192.136.175.219-20160223163742/@comment-27032150-20160223164108\nTalk:Viper MkIV/@comment-192.136.175.219-20160223163742/@comment-27032150-20160223181745\nTalk:Viper MkIV/@comment-192.136.175.219-20160223163742/@comment-27032150-20160224074111\nTalk:Viper MkIV/@comment-192.136.175.219-20160223163742/@comment-27032150-20160224092326\nTalk:Viper MkIV/@comment-192.136.175.219-20160223163742/@comment-27032150-20160224131721\nTalk:Viper MkIV/@comment-192.136.175.219-20160223163742/@comment-27032150-20160224140519\nTalk:Viper MkIV/@comment-192.136.175.219-20160223163742/@comment-27032150-20160224143109\nTalk:Viper MkIV/@comment-204.112.51.241-20150925225241\nTalk:Viper MkIV/@comment-204.112.51.241-20150925225241/@comment-26391992-20150925231635\nTalk:Viper MkIV/@comment-204.112.51.241-20150925225241/@comment-98.165.189.29-20151001193420\nTalk:Viper MkIV/@comment-24.194.8.71-20160812055825\nTalk:Viper MkIV/@comment-24.194.8.71-20160812055825/@comment-192.136.161.248-20160818103356\nTalk:Viper MkIV/@comment-24.194.8.71-20160812055825/@comment-194.166.17.252-20160817193612\nTalk:Viper MkIV/@comment-24.194.8.71-20160812055825/@comment-81.132.207.230-20160828145911\nTalk:Viper MkIV/@comment-2604:2D80:8403:82E0:3CB1:8F6A:1B77:7E3C-20170711030054\nTalk:Viper MkIV/@comment-2604:2D80:8403:82E0:3CB1:8F6A:1B77:7E3C-20170711030054/@comment-192.136.170.98-20181216041230\nTalk:Viper MkIV/@comment-2604:2D80:8403:82E0:3CB1:8F6A:1B77:7E3C-20170711030054/@comment-90.200.45.179-20190209123817\nTalk:Viper MkIV/@comment-2604:2D80:8403:82E0:3CB1:8F6A:1B77:7E3C-20170711030054/@comment-90.200.49.195-20181215202513\nTalk:Viper MkIV/@comment-26247050-20150926153251\nTalk:Viper MkIV/@comment-26247050-20151214190355\nTalk:Viper MkIV/@comment-26247050-20151214190355/@comment-26536231-20151214192055\nTalk:Viper MkIV/@comment-26247050-20151214190355/@comment-27032150-20151214192920\nTalk:Viper MkIV/@comment-26391992-20150925222453\nTalk:Viper MkIV/@comment-26391992-20151118102301\nTalk:Viper MkIV/@comment-26391992-20151118102301/@comment-62.163.31.7-20151216083614\nTalk:Viper MkIV/@comment-26391992-20151118102301/@comment-62.163.31.7-20151216083701\nTalk:Viper MkIV/@comment-26599825-20150926070847\nTalk:Viper MkIV/@comment-26599825-20150926070847/@comment-73.1.55.15-20151116190841\nTalk:Viper MkIV/@comment-26599825-20150926070847/@comment-99.135.98.174-20151026221136\nTalk:Viper MkIV/@comment-27032150-20151001082448\nTalk:Viper MkIV/@comment-27032150-20151001082448/@comment-26536231-20151027113238\nTalk:Viper MkIV/@comment-27032150-20151001082448/@comment-27032150-20151027082142\nTalk:Viper MkIV/@comment-27032150-20151001082448/@comment-27032150-20151027120554\nTalk:Viper MkIV/@comment-27032150-20151001082448/@comment-72.241.143.238-20151202225700\nTalk:Viper MkIV/@comment-27032150-20151001082448/@comment-73.1.55.15-20151116190618\nTalk:Viper MkIV/@comment-27032150-20151001082448/@comment-99.135.98.174-20151026220928\nTalk:Viper MkIV/@comment-27090681-20151222072344\nTalk:Viper MkIV/@comment-27115814-20151027181347\nTalk:Viper MkIV/@comment-27115814-20151027181347/@comment-26391992-20151116212116\nTalk:Viper MkIV/@comment-27115814-20151027181347/@comment-27115814-20151027181445\nTalk:Viper MkIV/@comment-27115814-20151027181347/@comment-67.193.181.150-20151220092235\nTalk:Viper MkIV/@comment-27115814-20151027181347/@comment-82.226.121.139-20151030003226\nTalk:Viper MkIV/@comment-27673114-20160125100437\nTalk:Viper MkIV/@comment-27673114-20160125100437/@comment-27673114-20160125100620\nTalk:Viper MkIV/@comment-33493166-20190812015705\nTalk:Viper MkIV/@comment-33493166-20190812015705/@comment-192.136.172.44-20190818141153\nTalk:Viper MkIV/@comment-33493166-20190812015705/@comment-192.136.172.44-20190821141105\nTalk:Viper MkIV/@comment-33493166-20190812015705/@comment-25330002-20200921190341\nTalk:Viper MkIV/@comment-33493166-20190812015705/@comment-33493166-20190820002202\nTalk:Viper MkIV/@comment-33493166-20190812015705/@comment-89.99.137.233-20200116233634\nTalk:Viper MkIV/@comment-45677112-20200506115422\nTalk:Viper MkIV/@comment-47.72.125.231-20151222040118\nTalk:Viper MkIV/@comment-47.72.125.231-20151222040118/@comment-160.3.141.17-20151222073006\nTalk:Viper MkIV/@comment-47.72.125.231-20151222040118/@comment-26419093-20151222044512\nTalk:Viper MkIV/@comment-47.72.125.231-20151222040118/@comment-60.53.28.152-20160208183107\nTalk:Viper MkIV/@comment-62.163.31.7-20151216084000\nTalk:Viper MkIV/@comment-62.163.31.7-20151216084000/@comment-101.184.150.174-20160113055532\nTalk:Viper MkIV/@comment-62.163.31.7-20151216084000/@comment-121.223.166.14-20160121032712\nTalk:Viper MkIV/@comment-62.163.31.7-20151216084000/@comment-26391992-20160113105217\nTalk:Viper MkIV/@comment-62.163.31.7-20151216084000/@comment-62.163.31.7-20151216104202\nTalk:Viper MkIV/@comment-62.163.31.7-20151216084000/@comment-67.1.181.13-20151220041904\nTalk:Viper MkIV/@comment-67.21.153.142-20170419163230\nTalk:Viper MkIV/@comment-71.229.151.228-20160330064305\nTalk:Viper MkIV/@comment-71.233.88.91-20160603191014\nTalk:Viper MkIV/@comment-71.233.88.91-20160603191014/@comment-109.129.138.66-20160705135708\nTalk:Viper MkIV/@comment-71.233.88.91-20160603191014/@comment-142.162.58.178-20160825230022\nTalk:Viper MkIV/@comment-71.233.88.91-20160603191014/@comment-206.208.187.105-20161214174238\nTalk:Viper MkIV/@comment-71.233.88.91-20160603191014/@comment-208.184.157.62-20170201171515\nTalk:Viper MkIV/@comment-71.233.88.91-20160603191014/@comment-24.141.225.61-20160720175251\nTalk:Viper MkIV/@comment-71.233.88.91-20160603191014/@comment-72.21.196.70-20160902060613\nTalk:Viper MkIV/@comment-71.233.88.91-20160603191014/@comment-80.187.102.117-20180314174121\nTalk:Viper MkIV/@comment-73.151.104.224-20151109184117\nTalk:Viper MkIV/@comment-73.151.104.224-20151109184117/@comment-101.183.242.79-20151115132108\nTalk:Viper MkIV/@comment-73.151.104.224-20151109184117/@comment-27032150-20151109184625\nTalk:Viper MkIV/@comment-73.151.104.224-20151109184117/@comment-71.231.50.26-20151216195621\nTalk:Viper MkIV/@comment-73.151.104.224-20151109184117/@comment-73.1.55.15-20151116190339\nTalk:Viper MkIV/@comment-73.224.53.15-20151113203929\nTalk:Viper MkIV/@comment-73.224.53.15-20151113203929/@comment-73.224.53.15-20151113204210\nTalk:Viper MkIV/@comment-78.48.167.192-20150917225820\nTalk:Viper MkIV/@comment-78.48.167.192-20150917225820/@comment-156.3.54.204-20150918171716\nTalk:Viper MkIV/@comment-78.48.167.192-20150917225820/@comment-204.112.51.241-20150925220724\nTalk:Viper MkIV/@comment-78.48.167.192-20150917225820/@comment-70.198.65.215-20150928145148\nTalk:Viper MkIV/@comment-78.48.167.192-20150917225820/@comment-73.1.55.15-20151116190955\nTalk:Viper MkIV/@comment-78.48.167.192-20150917225820/@comment-77.181.159.48-20150925221925\nTalk:Viper MkIV/@comment-78.48.167.192-20150917225820/@comment-81.139.192.2-20150918093237\nTalk:Viper MkIV/@comment-78.48.167.192-20150917225820/@comment-92.201.107.224-20150923160624\nTalk:Viper MkIV/@comment-82.20.43.167-20151215210402\nTalk:Viper MkIV/@comment-82.20.43.167-20151215210402/@comment-2601:243:480:98D9:86E:EAC:6687:764-20180302005932\nTalk:Viper MkIV/@comment-82.226.121.139-20151020213430\nTalk:Viper MkIV/@comment-82.226.121.139-20151020213430/@comment-72.241.143.238-20151202225604\nTalk:Viper MkIV/@comment-82.226.121.139-20151020213430/@comment-73.1.55.15-20151101183108\nTalk:Viper MkIV/@comment-82.226.121.139-20151020213430/@comment-99.135.98.174-20151026220731\nTalk:Viper MkIV/@comment-82.226.121.139-20151030003124\nTalk:Viper MkIV/@comment-82.226.121.139-20151030003124/@comment-27032150-20151030083037\nTalk:Viper MkIV/@comment-82.226.121.139-20151030003124/@comment-73.1.55.15-20151101183035\nTalk:Viper MkIV/@comment-82.226.121.139-20151030003124/@comment-86.1.61.9-20151030030700\nTalk:Viper MkIV/@comment-85.182.140.170-20151117121434\nTalk:Viper MkIV/@comment-85.182.140.170-20151117121434/@comment-151.225.94.203-20160109132538\nTalk:Viper MkIV/@comment-85.182.140.170-20151117121434/@comment-204.112.5.230-20151117205825\nTalk:Viper MkIV/@comment-85.182.140.170-20151117121434/@comment-2601:243:480:98D9:86E:EAC:6687:764-20180302010234\nTalk:Viper MkIV/@comment-85.182.140.170-20151117121434/@comment-88.195.244.170-20151210005344\nTalk:Viper MkIV/@comment-86.1.61.9-20151029005142\nTalk:Viper MkIV/@comment-86.1.61.9-20151029005142/@comment-24.250.255.219-20151115133336\nTalk:Viper MkIV/@comment-86.1.61.9-20151029005142/@comment-81.136.36.111-20151101134435\nTalk:Viper MkIV/@comment-86.1.61.9-20151029005142/@comment-86.1.61.9-20151102004022\nTalk:Viper MkIV/@comment-86.191.238.78-20150928204051\nTalk:Viper MkIV/@comment-86.191.238.78-20150928204051/@comment-26247050-20150929015237\nTalk:Viper MkIV/@comment-86.191.238.78-20150928204051/@comment-99.135.98.174-20151026221110\nTalk:Viper MkIV/@comment-87.181.78.57-20150925180614\nTalk:Viper MkIV/@comment-89.2.77.125-20150928183405\nTalk:Viper MkIV/@comment-92.171.46.65-20160720075633\nTalk:Viper MkIV/@comment-93.142.168.255-20160207012820\nTalk:Viper MkIV/@comment-93.142.168.255-20160207012820/@comment-192.136.175.219-20160223180105\nTalk:Viper MkIV/@comment-94.232.225.1-20161119180735\nTalk:Viper MkIV/@comment-94.232.225.1-20161119180735/@comment-94.232.225.1-20161119180926\nTalk:Viper MkIV/@comment-94.4.225.121-20160417234559\nTalk:Viper MkIV/@comment-95.90.240.212-20160317160025\nTalk:Viper Mk III/@comment-217.230.0.209-20141005184634\nTalk:Viper Mk III/@comment-64.254.141.37-20130814193927\nTalk:Viper Mk III/@comment-64.254.141.37-20130814193927/@comment-203.173.249.98-20150411230943\nTalk:Viper Mk III/@comment-64.254.141.37-20130814193927/@comment-86.14.75.31-20150116223807\nTalk:Viper Mk III/@comment-88.235.151.1-20141020223059/@comment-5.18.35.3-20141101200234\nTalk:Viper Mk IV/@comment-204.112.51.241-20150925225241\nTalk:Viper Mk IV/@comment-78.48.167.192-20150917225820/@comment-70.198.65.215-20150928145148\nTalk:Viper Mk IV/@comment-78.48.167.192-20150917225820/@comment-73.1.55.15-20151116190955\nTalk:Virtual Reality/@comment-30643772-20180914150357\nTalk:Vitadyne Labs/@comment-903860-20200609222134\nTalk:Void Extract Coffee/@comment-77.50.26.143-20160930212707\nTalk:Void Extract Coffee/@comment-87.205.94.189-20170723132222\nTalk:Void Opals/@comment-194.150.65.57-20190105172305\nTalk:Void Opals/@comment-194.150.65.57-20190105172305/@comment-109.147.243.4-20190120121053\nTalk:Void Opals/@comment-194.150.65.57-20190105172305/@comment-170.10.229.4-20190120233324\nTalk:Void Opals/@comment-194.150.65.57-20190105172305/@comment-194.150.65.57-20190105172407\nTalk:Void Opals/@comment-194.150.65.57-20190105172305/@comment-2600:6C4A:7B7F:D784:877:D035:9E4E:BE34-20190318211005\nTalk:Void Opals/@comment-194.150.65.57-20190105172305/@comment-47.198.243.219-20190119215908\nTalk:Void Opals/@comment-209.171.88.88-20190917231152\nTalk:Void Opals/@comment-2600:6C64:7280:4:BCB5:FE26:64F9:1468-20191120053029\nTalk:Void Opals/@comment-2602:306:CE29:B0D0:CCFB:81A2:35D1:D60B-20190923070639\nTalk:Void Opals/@comment-2602:306:CE29:B0D0:CCFB:81A2:35D1:D60B-20190923070639/@comment-24583867-20190923080611\nTalk:Void Opals/@comment-63.235.142.226-20190912123825\nTalk:Void Opals/@comment-63.235.142.226-20190912123825/@comment-217.147.189.173-20191010225806\nTalk:Void Opals/@comment-63.235.142.226-20190912123825/@comment-27511717-20200519113147\nTalk:Void Opals/@comment-84.190.136.2-20190724134403\nTalk:Void Rangers/@comment-2A00:23C4:7DA3:5C00:688D:6226:B7BA:5426-20190104165447\nTalk:Void Rangers/@comment-2A00:23C4:7DA3:5C00:688D:6226:B7BA:5426-20190104165447/@comment-2601:192:8601:7926:8452:D1A2:90E9:917D-20190502174836\nTalk:Volkhab Bee Drones/@comment-173.49.73.157-20171129213310\nTalk:Voyager 1/@comment-138.67.203.60-20180419145126\nTalk:Voyager 1/@comment-2003:6:334E:4635:8DB3:17D4:6EC7:8EAB-20181218154930\nTalk:Voyager 1/@comment-207.161.12.173-20181125211646\nTalk:Voyager 1/@comment-216.73.72.117-20190524185727\nTalk:Voyager 1/@comment-26247073-20180423194442\nTalk:Voyager 1/@comment-26247073-20180423194442/@comment-65.26.196.8-20180602205511\nTalk:Voyager 1/@comment-26247073-20180423194442/@comment-78.99.197.32-20180507155010\nTalk:Voyager 1/@comment-28049586-20181219090412\nTalk:Voyager 1/@comment-2A02:C7D:368B:C900:9562:41B6:8BC5:C393-20171024100120\nTalk:Voyager 1/@comment-2A02:C7D:368B:C900:9562:41B6:8BC5:C393-20171024100120/@comment-62.214.6.98-20171127120834\nTalk:Voyager 1/@comment-2A02:C7D:368B:C900:9562:41B6:8BC5:C393-20171024100120/@comment-81.96.252.24-20180111123750\nTalk:Voyager 1/@comment-37740697-20181207053719\nTalk:Voyager 1/@comment-69.166.69.101-20190514024117\nTalk:Voyager 1/@comment-92.234.69.106-20181203152402\nTalk:Voyager 1/@comment-92.234.69.106-20181203152402/@comment-92.234.69.106-20181203152640\nTalk:Voyager 1/@comment-95.90.200.181-20190101224144\nTalk:Voyager 2/@comment-24.49.204.69-20181027070128\nTalk:Voyager 2/@comment-2605:E000:1F00:6D2:AC02:2B0A:A804:5A1-20181117060623\nTalk:Voyager 2/@comment-26247073-20180424133714\nTalk:Voyager 2/@comment-37.212.93.160-20181210190529\nTalk:Voyager 2/@comment-82.154.97.210-20181109201229\nTalk:Voyager 2/@comment-92.234.69.106-20181204104907\nTalk:Vulture/@comment-1.136.96.114-20150926001439\nTalk:Vulture/@comment-1.136.96.114-20150926001439/@comment-26391992-20151122130904\nTalk:Vulture/@comment-1.136.96.114-20150926001439/@comment-27126505-20151027152425\nTalk:Vulture/@comment-1.136.96.114-20150926001439/@comment-85.23.196.186-20150928050621\nTalk:Vulture/@comment-101.166.161.36-20150404122444\nTalk:Vulture/@comment-101.166.161.36-20150404122444/@comment-101.166.161.36-20150405075442\nTalk:Vulture/@comment-101.166.161.36-20150404122444/@comment-228629-20150406115929\nTalk:Vulture/@comment-101.166.161.36-20150404122444/@comment-31.217.106.136-20150415154554\nTalk:Vulture/@comment-101.166.161.36-20150404122444/@comment-98.169.16.80-20150404230757\nTalk:Vulture/@comment-101.166.161.36-20150404122444/@comment-98.169.16.80-20150408032401\nTalk:Vulture/@comment-101.187.46.246-20150311011913\nTalk:Vulture/@comment-101.187.46.246-20150311011913/@comment-208.167.254.205-20150721140054\nTalk:Vulture/@comment-101.187.46.246-20150311011913/@comment-80.216.135.51-20150312184848\nTalk:Vulture/@comment-101.187.46.246-20150311011913/@comment-85.177.137.35-20150311034306\nTalk:Vulture/@comment-104.172.64.110-20160101224035\nTalk:Vulture/@comment-104.172.64.110-20160101224035/@comment-101.184.150.174-20160112032352\nTalk:Vulture/@comment-104.172.64.110-20160101224035/@comment-173.244.209.76-20170208132139\nTalk:Vulture/@comment-104.172.64.110-20160101224035/@comment-206.208.187.105-20161216163143\nTalk:Vulture/@comment-104.172.64.110-20160101224035/@comment-2601:243:480:98D9:1922:DE3E:510A:BD81-20180218233841\nTalk:Vulture/@comment-104.172.64.110-20160101224035/@comment-26391992-20160101234513\nTalk:Vulture/@comment-104.172.64.110-20160101224035/@comment-27311754-20160103124349\nTalk:Vulture/@comment-104.172.64.110-20160101224035/@comment-31.46.52.211-20160103004736\nTalk:Vulture/@comment-104.172.64.110-20160101224035/@comment-38115527-20190110023834\nTalk:Vulture/@comment-104.172.64.110-20160101224035/@comment-69.178.9.54-20160109201832\nTalk:Vulture/@comment-108.242.216.67-20150320210516\nTalk:Vulture/@comment-108.242.216.67-20150320210516/@comment-108.242.216.67-20150320210800\nTalk:Vulture/@comment-108.242.216.67-20150320210516/@comment-108.242.216.67-20150325015000\nTalk:Vulture/@comment-108.242.216.67-20150320210516/@comment-123.211.23.17-20150322004908\nTalk:Vulture/@comment-108.242.216.67-20150320210516/@comment-26222609-20150322072113\nTalk:Vulture/@comment-109.145.132.72-20151219123419\nTalk:Vulture/@comment-109.145.132.72-20151219123419/@comment-26009169-20151219164706\nTalk:Vulture/@comment-109.156.149.218-20150310213128\nTalk:Vulture/@comment-109.156.149.218-20150310213128/@comment-178.8.140.214-20150312221150\nTalk:Vulture/@comment-110.23.87.39-20150809025021\nTalk:Vulture/@comment-110.23.87.39-20150809025021/@comment-104.54.102.34-20150812080634\nTalk:Vulture/@comment-121.211.39.251-20150311193153\nTalk:Vulture/@comment-121.211.39.251-20150311193437\nTalk:Vulture/@comment-121.211.39.251-20150311193437/@comment-108.52.164.164-20150316231922\nTalk:Vulture/@comment-121.211.39.251-20150311193437/@comment-198.203.175.175-20151224160200\nTalk:Vulture/@comment-121.211.39.251-20150311193437/@comment-228629-20150312022010\nTalk:Vulture/@comment-121.219.32.173-20150624132500\nTalk:Vulture/@comment-121.219.32.173-20150624132500/@comment-172.74.44.60-20150626223737\nTalk:Vulture/@comment-121.219.32.173-20150624132500/@comment-216.58.56.56-20151017011004\nTalk:Vulture/@comment-121.219.32.173-20150624132500/@comment-82.32.79.85-20150629175051\nTalk:Vulture/@comment-124.171.11.32-20160222080342\nTalk:Vulture/@comment-124.171.11.32-20160222080342/@comment-108.41.120.242-20160222111338\nTalk:Vulture/@comment-124.171.11.32-20160222080342/@comment-153.107.192.205-20160222213835\nTalk:Vulture/@comment-124.171.11.32-20160222080342/@comment-2601:243:480:98D9:86E:EAC:6687:764-20180302010959\nTalk:Vulture/@comment-124.171.11.32-20160222080342/@comment-27032150-20160222080953\nTalk:Vulture/@comment-139.218.220.223-20160105081938\nTalk:Vulture/@comment-139.218.220.223-20160105081938/@comment-108.41.120.242-20160210232900\nTalk:Vulture/@comment-139.218.220.223-20160105081938/@comment-27311754-20160120001810\nTalk:Vulture/@comment-139.218.220.223-20160105081938/@comment-62.159.185.194-20170130124040\nTalk:Vulture/@comment-139.218.220.223-20160105081938/@comment-80.120.62.34-20160119163428\nTalk:Vulture/@comment-143.81.103.35-20160125024523\nTalk:Vulture/@comment-143.81.103.35-20160125024523/@comment-173.244.209.76-20170208131043\nTalk:Vulture/@comment-143.81.103.35-20160125024523/@comment-192.249.129.178-20160129180144\nTalk:Vulture/@comment-143.81.103.35-20160125024523/@comment-27092762-20170110164634\nTalk:Vulture/@comment-143.81.103.35-20160125024523/@comment-66.188.175.186-20161028204757\nTalk:Vulture/@comment-146.198.211.148-20150905140654\nTalk:Vulture/@comment-149.254.51.76-20150316200920\nTalk:Vulture/@comment-15.203.233.79-20150328111634\nTalk:Vulture/@comment-15.203.233.79-20150329110211\nTalk:Vulture/@comment-15.203.233.79-20150329121216\nTalk:Vulture/@comment-15.203.233.79-20150329121216/@comment-192.154.150.110-20150409173405\nTalk:Vulture/@comment-15.203.233.79-20150329121216/@comment-31.217.106.136-20150415154700\nTalk:Vulture/@comment-150.208.129.188-20170329144234\nTalk:Vulture/@comment-150.208.129.188-20170426144124\nTalk:Vulture/@comment-151.225.45.18-20150801013150\nTalk:Vulture/@comment-151.225.45.18-20150801013150/@comment-26292233-20150808230557\nTalk:Vulture/@comment-156.3.54.202-20150508150559\nTalk:Vulture/@comment-156.3.54.202-20150508164232\nTalk:Vulture/@comment-156.3.54.203-20150501145125\nTalk:Vulture/@comment-156.3.54.203-20150507145814\nTalk:Vulture/@comment-156.3.54.203-20150507145814/@comment-156.3.54.202-20150508150713\nTalk:Vulture/@comment-156.3.54.203-20150529145104\nTalk:Vulture/@comment-156.3.54.203-20150529145104/@comment-73.11.209.111-20150726220019\nTalk:Vulture/@comment-156.3.54.203-20150909190619\nTalk:Vulture/@comment-156.3.54.204-20150921160037\nTalk:Vulture/@comment-156.3.54.204-20150922163651\nTalk:Vulture/@comment-156.3.54.205-20150921194844\nTalk:Vulture/@comment-158.234.250.71-20150717124315\nTalk:Vulture/@comment-158.234.250.71-20150717124315/@comment-1088921-20150719233916\nTalk:Vulture/@comment-158.234.250.71-20150717124315/@comment-190.128.145.78-20150718114622\nTalk:Vulture/@comment-158.234.250.71-20150717124315/@comment-46.59.232.237-20150803191452\nTalk:Vulture/@comment-158.234.250.71-20150717124315/@comment-81.215.55.22-20150722154527\nTalk:Vulture/@comment-162.156.165.159-20150617062814\nTalk:Vulture/@comment-162.156.165.159-20150617062814/@comment-162.156.165.159-20150617081315\nTalk:Vulture/@comment-162.156.165.159-20150617062814/@comment-162.156.165.159-20150617223214\nTalk:Vulture/@comment-162.156.165.159-20150617062814/@comment-188.25.158.251-20151112134912\nTalk:Vulture/@comment-162.156.165.159-20150617062814/@comment-93.128.200.153-20150617193444\nTalk:Vulture/@comment-16465855-20150317014954\nTalk:Vulture/@comment-16465855-20150317014954/@comment-208.87.196.68-20150318204036\nTalk:Vulture/@comment-16465855-20150317014954/@comment-95.91.231.29-20150318200824\nTalk:Vulture/@comment-16465855-20150317014954/@comment-95.91.231.29-20150318203846\nTalk:Vulture/@comment-169.204.228.90-20150508172920\nTalk:Vulture/@comment-169.204.228.90-20150508172920/@comment-169.204.228.90-20150508173039\nTalk:Vulture/@comment-169.204.228.90-20150508172920/@comment-24754830-20150509053839\nTalk:Vulture/@comment-173.176.60.145-20150418035529\nTalk:Vulture/@comment-173.176.60.145-20150418035529/@comment-26009169-20150418110341\nTalk:Vulture/@comment-176.25.248.74-20151221230604\nTalk:Vulture/@comment-176.25.248.74-20151221230604/@comment-153.107.193.213-20160919233838\nTalk:Vulture/@comment-176.25.248.74-20151221230604/@comment-176.25.248.74-20151221231817\nTalk:Vulture/@comment-176.25.248.74-20151221230604/@comment-72.241.143.238-20151222151510\nTalk:Vulture/@comment-178.1.11.217-20150321111916\nTalk:Vulture/@comment-178.250.179.140-20150618091409\nTalk:Vulture/@comment-178.8.140.214-20150312175138\nTalk:Vulture/@comment-178.8.140.214-20150312175138/@comment-89.204.130.181-20150312180046\nTalk:Vulture/@comment-185.37.87.177-20150303204416\nTalk:Vulture/@comment-185.37.87.177-20150303204416/@comment-174.22.224.172-20150303215817\nTalk:Vulture/@comment-185.37.87.177-20150303204416/@comment-174.22.224.172-20150303221835\nTalk:Vulture/@comment-185.37.87.177-20150303204416/@comment-174.22.224.172-20150304101423\nTalk:Vulture/@comment-185.37.87.177-20150303204416/@comment-26009169-20150303221302\nTalk:Vulture/@comment-185.37.87.177-20150303204416/@comment-68.147.216.129-20150304012704\nTalk:Vulture/@comment-185.37.87.177-20150303204416/@comment-86.19.157.214-20150304225756\nTalk:Vulture/@comment-188.126.168.223-20150618155120\nTalk:Vulture/@comment-188.174.188.124-20150323010221\nTalk:Vulture/@comment-188.174.188.124-20150323010221/@comment-195.194.196.233-20150324173719\nTalk:Vulture/@comment-188.174.188.124-20150323010221/@comment-80.1.60.38-20150327015700\nTalk:Vulture/@comment-188.174.188.124-20150323010221/@comment-98.215.221.108-20150507215306\nTalk:Vulture/@comment-189.60.17.128-20150316181755\nTalk:Vulture/@comment-189.60.17.128-20150316181755/@comment-188.223.30.185-20150319003127\nTalk:Vulture/@comment-189.60.17.128-20150316181755/@comment-192.117.103.21-20150317183033\nTalk:Vulture/@comment-192.136.175.219-20160224163555\nTalk:Vulture/@comment-192.136.175.219-20160224163555/@comment-173.65.131.178-20160301071632\nTalk:Vulture/@comment-192.136.175.219-20160224163555/@comment-192.136.175.219-20160224170536\nTalk:Vulture/@comment-192.136.175.219-20160224163555/@comment-206.208.187.105-20161216150132\nTalk:Vulture/@comment-192.136.175.219-20160224163555/@comment-2061482-20160317071703\nTalk:Vulture/@comment-192.136.175.219-20160224163555/@comment-26227424-20160614135057\nTalk:Vulture/@comment-192.136.175.219-20160224163555/@comment-75.90.213.116-20160316224015\nTalk:Vulture/@comment-192.195.66.3-20171003214847\nTalk:Vulture/@comment-192.195.66.3-20171003214847/@comment-170.211.150.62-20171005201545\nTalk:Vulture/@comment-192.195.66.3-20171003214847/@comment-24.176.26.147-20171004194745\nTalk:Vulture/@comment-192.195.66.3-20171003214847/@comment-2600:1700:ED41:4B60:5C6E:C564:2470:BB1E-20180419044144\nTalk:Vulture/@comment-192.195.66.3-20171003214847/@comment-2601:243:480:98D9:86E:EAC:6687:764-20180302010637\nTalk:Vulture/@comment-192.195.66.3-20171003214847/@comment-33441314-20180116192254\nTalk:Vulture/@comment-192.195.66.3-20171003214847/@comment-69.114.195.213-20180831040622\nTalk:Vulture/@comment-192.195.66.3-20171003214847/@comment-82.4.11.23-20171206103829\nTalk:Vulture/@comment-194.39.218.10-20150312132616\nTalk:Vulture/@comment-194.39.218.10-20150312132616/@comment-194.39.218.10-20150316175857\nTalk:Vulture/@comment-194.39.218.10-20150312132616/@comment-24.114.59.162-20150312230025\nTalk:Vulture/@comment-194.39.218.10-20150312132616/@comment-26009169-20150312133040\nTalk:Vulture/@comment-194.39.218.10-20150312132616/@comment-78.48.240.85-20150312172911\nTalk:Vulture/@comment-194.39.218.10-20150414164008\nTalk:Vulture/@comment-194.39.218.10-20150414164008/@comment-108.41.120.242-20151106032031\nTalk:Vulture/@comment-194.39.218.10-20150414164008/@comment-6033893-20150504064658\nTalk:Vulture/@comment-194.39.218.10-20150414164008/@comment-68.107.236.225-20150506085132\nTalk:Vulture/@comment-194.9.234.11-20150406205028\nTalk:Vulture/@comment-194.9.234.11-20150406205028/@comment-67.160.188.96-20150419092713\nTalk:Vulture/@comment-206.116.68.11-20150313074829\nTalk:Vulture/@comment-207.155.87.153-20170210082834\nTalk:Vulture/@comment-207.155.87.153-20170210082834/@comment-14.201.141.21-20170325181653\nTalk:Vulture/@comment-207.155.87.153-20170210082834/@comment-207.155.87.153-20170210083054\nTalk:Vulture/@comment-207.253.170.194-20160128044827\nTalk:Vulture/@comment-207.253.170.194-20160128044827/@comment-27032150-20160128060001\nTalk:Vulture/@comment-208.114.92.134-20170827034105\nTalk:Vulture/@comment-208.114.92.134-20170827034105/@comment-192.136.161.33-20170829134833\nTalk:Vulture/@comment-208.114.92.134-20170827034105/@comment-4208395-20200104080817\nTalk:Vulture/@comment-209.112.208.16-20150322203937\nTalk:Vulture/@comment-209.147.144.17-20150503221935\nTalk:Vulture/@comment-209.147.144.17-20150503221935/@comment-209.147.144.17-20150503222106\nTalk:Vulture/@comment-209.147.144.17-20150503221935/@comment-24503385-20150505175753\nTalk:Vulture/@comment-212.10.25.166-20150316221502\nTalk:Vulture/@comment-212.150.174.180-20150723131403\nTalk:Vulture/@comment-213.120.234.106-20150310211204\nTalk:Vulture/@comment-213.120.234.106-20150310211204/@comment-121.211.39.251-20150311193608\nTalk:Vulture/@comment-213.120.234.106-20150310211204/@comment-151.226.233.191-20150310221109\nTalk:Vulture/@comment-213.120.234.106-20150310211204/@comment-26009169-20150311193822\nTalk:Vulture/@comment-217.32.219.178-20150123132248\nTalk:Vulture/@comment-217.32.219.178-20150123132248/@comment-220.233.234.74-20150311001453\nTalk:Vulture/@comment-217.40.212.138-20150210101307\nTalk:Vulture/@comment-217.40.212.138-20150210101307/@comment-203.161.76.104-20150311062120\nTalk:Vulture/@comment-217.40.212.138-20150210101307/@comment-203.161.76.104-20150311062502\nTalk:Vulture/@comment-228629-20150227171619\nTalk:Vulture/@comment-228629-20150304025038\nTalk:Vulture/@comment-24.114.59.162-20150312215136\nTalk:Vulture/@comment-24.114.59.162-20150312215136/@comment-178.8.140.214-20150312220234\nTalk:Vulture/@comment-24.114.59.162-20150312215136/@comment-208.167.254.205-20150721135423\nTalk:Vulture/@comment-24.114.59.162-20150312215136/@comment-24.114.59.162-20150312224001\nTalk:Vulture/@comment-24.114.59.162-20150312215136/@comment-24.114.59.162-20150312225217\nTalk:Vulture/@comment-24.114.59.162-20150312215136/@comment-24.114.59.162-20150313033629\nTalk:Vulture/@comment-24.114.59.162-20150312215136/@comment-80.1.60.38-20150313003639\nTalk:Vulture/@comment-24.114.70.156-20150311223633\nTalk:Vulture/@comment-24.114.70.156-20150311223633/@comment-108.52.164.164-20150316231815\nTalk:Vulture/@comment-24.114.70.156-20150311223633/@comment-75.114.11.42-20150321190540\nTalk:Vulture/@comment-24.151.145.58-20150409130306\nTalk:Vulture/@comment-24.151.145.58-20150409130306/@comment-24.151.145.58-20150409130347\nTalk:Vulture/@comment-24.183.157.142-20150126193018\nTalk:Vulture/@comment-24.183.157.142-20150126193018/@comment-76.108.126.92-20150211123109\nTalk:Vulture/@comment-24.183.157.142-20150126193018/@comment-76.124.162.53-20150211223728\nTalk:Vulture/@comment-24.183.157.142-20150126193018/@comment-95.94.211.176-20150220183636\nTalk:Vulture/@comment-24.237.90.245-20150624131206\nTalk:Vulture/@comment-24.237.90.245-20150624131206/@comment-108.41.120.242-20151029144008\nTalk:Vulture/@comment-24.237.90.245-20150624131206/@comment-108.47.237.140-20150921004521\nTalk:Vulture/@comment-24.237.90.245-20150624131206/@comment-14.203.175.212-20150922080114\nTalk:Vulture/@comment-24.237.90.245-20150624131206/@comment-1441282-20150628000805\nTalk:Vulture/@comment-24.237.90.245-20150624131206/@comment-146.198.211.148-20150902145518\nTalk:Vulture/@comment-24.237.90.245-20150624131206/@comment-24.237.90.245-20150628133548\nTalk:Vulture/@comment-24.237.90.245-20150624131206/@comment-26009169-20150624134443\nTalk:Vulture/@comment-24.237.90.245-20150624131206/@comment-26009169-20150628002044\nTalk:Vulture/@comment-24.237.90.245-20150624131206/@comment-65.35.47.185-20151013195534\nTalk:Vulture/@comment-24.237.90.245-20150624131206/@comment-86.16.31.42-20150827201327\nTalk:Vulture/@comment-24.237.90.245-20150624131206/@comment-92.236.4.93-20151016212536\nTalk:Vulture/@comment-24.45.89.88-20150327035517\nTalk:Vulture/@comment-24503385-20150427153140\nTalk:Vulture/@comment-25440734-20150506111510\nTalk:Vulture/@comment-26082736-20150220194556\nTalk:Vulture/@comment-26082736-20150220194556/@comment-26009169-20150220204524\nTalk:Vulture/@comment-26222609-20150402151126\nTalk:Vulture/@comment-26222609-20150402151126/@comment-118.93.112.252-20150402184855\nTalk:Vulture/@comment-26329248-20150420070749\nTalk:Vulture/@comment-26350501-20150427212822\nTalk:Vulture/@comment-26350501-20150427212822/@comment-97.95.250.169-20150506035049\nTalk:Vulture/@comment-26350501-20150427212822/@comment-97.95.250.169-20150506035228\nTalk:Vulture/@comment-26391992-20150512054403\nTalk:Vulture/@comment-26391992-20150512054403/@comment-194.9.234.11-20150512172156\nTalk:Vulture/@comment-26391992-20150512054403/@comment-24503385-20150512152541\nTalk:Vulture/@comment-26391992-20150512054403/@comment-26391992-20150512172231\nTalk:Vulture/@comment-26391992-20150916100320\nTalk:Vulture/@comment-26391992-20150916100320/@comment-156.3.54.204-20150921160258\nTalk:Vulture/@comment-26391992-20150916100320/@comment-207.179.224.29-20151102164557\nTalk:Vulture/@comment-26391992-20150916100320/@comment-73.1.55.15-20151111054402\nTalk:Vulture/@comment-26391992-20150916100320/@comment-94.175.38.129-20151001094556\nTalk:Vulture/@comment-26391992-20160208211602\nTalk:Vulture/@comment-26454645-20150601100835\nTalk:Vulture/@comment-26454645-20150601100835/@comment-89.192.161.218-20150606171624\nTalk:Vulture/@comment-26454645-20150601100835/@comment-89.192.161.218-20150606171852\nTalk:Vulture/@comment-26506222-20150617174202\nTalk:Vulture/@comment-26506222-20150617174202/@comment-162.156.165.159-20150617222643\nTalk:Vulture/@comment-26554906-20150701034427\nTalk:Vulture/@comment-26554906-20150701034427/@comment-94.209.123.249-20150713092548\nTalk:Vulture/@comment-26981241-20150912195227\nTalk:Vulture/@comment-26981241-20150912195227/@comment-140.32.16.52-20151211061056\nTalk:Vulture/@comment-26981241-20150912195227/@comment-156.3.54.204-20150921150126\nTalk:Vulture/@comment-26981241-20150912195227/@comment-72.241.143.238-20150922075634\nTalk:Vulture/@comment-26981241-20150912195227/@comment-79.159.133.221-20160122172416\nTalk:Vulture/@comment-27032150-20160823140406\nTalk:Vulture/@comment-27115814-20151027182212\nTalk:Vulture/@comment-27635801-20160118203533\nTalk:Vulture/@comment-31.183.74.235-20150313181403\nTalk:Vulture/@comment-31.183.74.235-20150313181403/@comment-194.39.218.10-20150316180604\nTalk:Vulture/@comment-37.231.55.212-20150423061127\nTalk:Vulture/@comment-39294132-20190428232103\nTalk:Vulture/@comment-39294132-20190428232103/@comment-176.241.72.203-20190716085810\nTalk:Vulture/@comment-39294132-20190428232103/@comment-192.136.172.169-20190429032128\nTalk:Vulture/@comment-43.249.129.100-20150507053820\nTalk:Vulture/@comment-43354983-20200312195251\nTalk:Vulture/@comment-46.249.230.96-20150515150214\nTalk:Vulture/@comment-46.249.230.96-20150515150214/@comment-26292233-20150524011147\nTalk:Vulture/@comment-46.249.230.96-20150515150214/@comment-26442659-20150601161115\nTalk:Vulture/@comment-46.249.230.96-20150515150214/@comment-73.50.1.178-20150603170155\nTalk:Vulture/@comment-46.33.142.224-20150313191008\nTalk:Vulture/@comment-5123296-20150317160648\nTalk:Vulture/@comment-58.162.227.75-20150612024811\nTalk:Vulture/@comment-63.247.60.254-20151113144250\nTalk:Vulture/@comment-64.106.111.22-20150326061255\nTalk:Vulture/@comment-64.106.111.22-20150326061255/@comment-26009169-20150326111037\nTalk:Vulture/@comment-64.106.111.22-20150326061255/@comment-26009169-20150326155813\nTalk:Vulture/@comment-64.106.111.22-20150326061255/@comment-64.106.111.2-20150326153617\nTalk:Vulture/@comment-64.106.111.22-20150326061255/@comment-98.169.16.80-20150404230931\nTalk:Vulture/@comment-64.113.173.176-20150304010432\nTalk:Vulture/@comment-64.113.173.176-20150304010432/@comment-26000333-20150304035055\nTalk:Vulture/@comment-64.113.173.176-20150304010432/@comment-26009169-20150304135953\nTalk:Vulture/@comment-64.113.173.176-20150304010432/@comment-71.21.3.159-20150304163825\nTalk:Vulture/@comment-64.58.20.99-20150310224203\nTalk:Vulture/@comment-64.58.20.99-20150310224203/@comment-121.211.39.251-20150311193517\nTalk:Vulture/@comment-67.184.101.48-20150413233047\nTalk:Vulture/@comment-68.103.167.5-20150405150401\nTalk:Vulture/@comment-68.231.58.91-20150316091547\nTalk:Vulture/@comment-70.65.218.61-20150402231957\nTalk:Vulture/@comment-70.69.170.20-20150430074826\nTalk:Vulture/@comment-71.217.112.241-20150307021222\nTalk:Vulture/@comment-71.217.112.241-20150307021222/@comment-104.207.136.125-20150307193434\nTalk:Vulture/@comment-71.217.112.241-20150307021222/@comment-174.22.224.172-20150307201417\nTalk:Vulture/@comment-71.217.112.241-20150307021222/@comment-174.99.32.32-20150310210216\nTalk:Vulture/@comment-71.49.76.64-20150321004347\nTalk:Vulture/@comment-72.200.116.46-20150223024937\nTalk:Vulture/@comment-72.200.116.46-20150227221728\nTalk:Vulture/@comment-72.200.116.46-20150227221728/@comment-92.17.248.173-20150228000357\nTalk:Vulture/@comment-72.239.94.43-20150313011934\nTalk:Vulture/@comment-72.239.94.43-20150313011934/@comment-108.52.164.164-20150316231243\nTalk:Vulture/@comment-72.239.94.43-20150313011934/@comment-216.70.8.194-20150317135549\nTalk:Vulture/@comment-72.239.94.43-20150313011934/@comment-24.114.48.123-20150313204738\nTalk:Vulture/@comment-72.239.94.43-20150313011934/@comment-24.114.59.162-20150313035238\nTalk:Vulture/@comment-72.239.94.43-20150313011934/@comment-50.34.98.251-20150316185206\nTalk:Vulture/@comment-72.239.94.43-20150313011934/@comment-746248-20150313114901\nTalk:Vulture/@comment-72.241.143.238-20150523105025\nTalk:Vulture/@comment-72.241.143.238-20150824012730\nTalk:Vulture/@comment-73.1.55.15-20151013013240\nTalk:Vulture/@comment-73.181.169.34-20160827141013\nTalk:Vulture/@comment-73.181.169.34-20160827141013/@comment-100.34.167.47-20160923063229\nTalk:Vulture/@comment-73.181.169.34-20160827141013/@comment-176.249.62.114-20170826224649\nTalk:Vulture/@comment-73.181.169.34-20160827141013/@comment-192.136.161.156-20160923112949\nTalk:Vulture/@comment-73.181.169.34-20160827141013/@comment-2601:243:480:98D9:1922:DE3E:510A:BD81-20180218233417\nTalk:Vulture/@comment-73.181.169.34-20160827141013/@comment-96.250.114.167-20190918021419\nTalk:Vulture/@comment-73.42.243.156-20150621173227\nTalk:Vulture/@comment-75.74.179.54-20150829032658\nTalk:Vulture/@comment-75.86.209.207-20150430065445\nTalk:Vulture/@comment-76.66.174.116-20150328182439\nTalk:Vulture/@comment-77.23.246.207-20150310232207\nTalk:Vulture/@comment-78.19.15.50-20150922064021\nTalk:Vulture/@comment-78.19.15.50-20150922064021/@comment-72.241.143.238-20150922075557\nTalk:Vulture/@comment-78.90.147.26-20151114184809\nTalk:Vulture/@comment-79.103.185.66-20160101181740\nTalk:Vulture/@comment-79.103.185.66-20160101181740/@comment-143.81.103.35-20160106030138\nTalk:Vulture/@comment-79.103.185.66-20160101181740/@comment-79.103.185.66-20160103035106\nTalk:Vulture/@comment-79.71.226.162-20180108040541\nTalk:Vulture/@comment-79.97.180.45-20150419222318\nTalk:Vulture/@comment-81.153.241.147-20150408091559\nTalk:Vulture/@comment-81.166.147.118-20150221154932\nTalk:Vulture/@comment-81.166.147.118-20150221154932/@comment-84.171.70.245-20150221222906\nTalk:Vulture/@comment-82.1.203.26-20200101162702\nTalk:Vulture/@comment-82.1.203.26-20200101162702/@comment-177.50.163.182-20200115104219\nTalk:Vulture/@comment-82.226.121.139-20150505145233\nTalk:Vulture/@comment-82.226.121.139-20150605175134\nTalk:Vulture/@comment-82.226.121.139-20150605175134/@comment-1.136.96.106-20150919003611\nTalk:Vulture/@comment-82.226.121.139-20150605175134/@comment-107.192.5.95-20150726041619\nTalk:Vulture/@comment-82.226.121.139-20150605175134/@comment-108.47.237.140-20150921004906\nTalk:Vulture/@comment-82.226.121.139-20150605175134/@comment-203.14.52.144-20150611030656\nTalk:Vulture/@comment-82.226.121.139-20150605175134/@comment-26222609-20150611073258\nTalk:Vulture/@comment-82.226.121.139-20150605175134/@comment-26420537-20150815062136\nTalk:Vulture/@comment-82.226.121.139-20150605175134/@comment-26599825-20150919112407\nTalk:Vulture/@comment-82.226.121.139-20150605175134/@comment-31.111.103.86-20150609103715\nTalk:Vulture/@comment-82.226.121.139-20150605175134/@comment-72.241.143.238-20150824012131\nTalk:Vulture/@comment-82.226.121.139-20150605175134/@comment-82.11.99.50-20150623021352\nTalk:Vulture/@comment-82.226.121.139-20150605175134/@comment-91.155.150.140-20150627134929\nTalk:Vulture/@comment-83.61.230.131-20150317190122\nTalk:Vulture/@comment-83.61.230.131-20150317190122/@comment-83.61.230.131-20150317203747\nTalk:Vulture/@comment-84.175.99.203-20151225183347\nTalk:Vulture/@comment-84.175.99.203-20151225183347/@comment-2601:243:480:98D9:1922:DE3E:510A:BD81-20180218233935\nTalk:Vulture/@comment-84.175.99.203-20151225183347/@comment-92.77.66.46-20151231152129\nTalk:Vulture/@comment-85.179.235.118-20150726124152\nTalk:Vulture/@comment-86.147.93.1-20151205140933\nTalk:Vulture/@comment-86.147.93.1-20151205140933/@comment-195.70.101.49-20151214081411\nTalk:Vulture/@comment-86.147.93.1-20151205140933/@comment-24.2.111.151-20151214015136\nTalk:Vulture/@comment-86.156.66.143-20150322114800\nTalk:Vulture/@comment-86.156.66.143-20150322114800/@comment-108.31.88.208-20150323221449\nTalk:Vulture/@comment-88.112.91.114-20150307014556\nTalk:Vulture/@comment-88.112.91.114-20150307014556/@comment-26009169-20150307015113\nTalk:Vulture/@comment-88.112.91.114-20150307014556/@comment-88.112.91.114-20150307015145\nTalk:Vulture/@comment-88.112.91.114-20150310011000\nTalk:Vulture/@comment-88.112.91.114-20150310011000/@comment-26009169-20150310013150\nTalk:Vulture/@comment-88.112.91.114-20150310011000/@comment-93.194.83.48-20150310152024\nTalk:Vulture/@comment-88.168.110.81-20150609104156\nTalk:Vulture/@comment-88.168.110.81-20150609104156/@comment-156.3.54.203-20150610161851\nTalk:Vulture/@comment-88.168.110.81-20150609104156/@comment-156.3.54.203-20150610162024\nTalk:Vulture/@comment-88.168.110.81-20150609104156/@comment-26222609-20150610222751\nTalk:Vulture/@comment-88.168.110.81-20150609104156/@comment-72.241.143.238-20150609123007\nTalk:Vulture/@comment-88.246.94.7-20180828141457\nTalk:Vulture/@comment-88.246.94.7-20180828141457/@comment-176.241.72.203-20190716085947\nTalk:Vulture/@comment-88.246.94.7-20180828141457/@comment-90.200.46.38-20181106102325\nTalk:Vulture/@comment-88.85.155.146-20150316132220\nTalk:Vulture/@comment-89.168.0.206-20150310232132\nTalk:Vulture/@comment-89.168.0.206-20150310232132/@comment-89.168.0.206-20150310232225\nTalk:Vulture/@comment-89.168.0.206-20150311135951\nTalk:Vulture/@comment-89.168.0.206-20150311135951/@comment-108.52.164.164-20150316231946\nTalk:Vulture/@comment-89.168.0.206-20150311135951/@comment-109.156.149.218-20150311233922\nTalk:Vulture/@comment-89.168.0.206-20150311135951/@comment-26009169-20150311140340\nTalk:Vulture/@comment-89.168.0.206-20150311135951/@comment-26009169-20150312030316\nTalk:Vulture/@comment-89.168.0.206-20150311135951/@comment-89.168.0.206-20150311144758\nTalk:Vulture/@comment-89.172.68.75-20160205235618\nTalk:Vulture/@comment-89.172.68.75-20160205235618/@comment-27032150-20160208081350\nTalk:Vulture/@comment-89.172.68.75-20160205235618/@comment-74.37.202.169-20160208031056\nTalk:Vulture/@comment-89.192.161.218-20150606171407\nTalk:Vulture/@comment-89.77.85.31-20150313221052\nTalk:Vulture/@comment-90.216.134.197-20150419162857\nTalk:Vulture/@comment-90.216.134.197-20150419162857/@comment-104.245.77.23-20150419200205\nTalk:Vulture/@comment-90.216.134.197-20150419162857/@comment-191.33.37.85-20150420233355\nTalk:Vulture/@comment-90.216.134.197-20150419162857/@comment-70.164.99.62-20150508205957\nTalk:Vulture/@comment-91.116.144.253-20151025134419\nTalk:Vulture/@comment-91.116.144.253-20151025134419/@comment-27120772-20151026020648\nTalk:Vulture/@comment-91.116.144.253-20151025134419/@comment-27120772-20151027012644\nTalk:Vulture/@comment-91.125.23.232-20150226215521\nTalk:Vulture/@comment-91.176.74.129-20160311195147\nTalk:Vulture/@comment-91.176.74.129-20160311195147/@comment-27032150-20160314095718\nTalk:Vulture/@comment-91.178.229.84-20160313171622\nTalk:Vulture/@comment-91.178.229.84-20160313171622/@comment-153.107.193.208-20160315234049\nTalk:Vulture/@comment-91.178.229.84-20160313171622/@comment-173.52.97.160-20160401184254\nTalk:Vulture/@comment-91.178.229.84-20160313171622/@comment-2061482-20160315232826\nTalk:Vulture/@comment-91.178.229.84-20160313171622/@comment-2061482-20160402190036\nTalk:Vulture/@comment-91.178.229.84-20160313171622/@comment-26227424-20160614134918\nTalk:Vulture/@comment-91.178.229.84-20160313171622/@comment-69.114.195.213-20180903023603\nTalk:Vulture/@comment-91.78.26.254-20150412054551\nTalk:Vulture/@comment-93.143.107.104-20160413224430\nTalk:Vulture/@comment-93.143.107.104-20160413224430/@comment-93.143.89.105-20160421212500\nTalk:Vulture/@comment-93.143.107.104-20160413224430/@comment-99.235.30.6-20160416152050\nTalk:Vulture/@comment-93.194.83.48-20150310203700\nTalk:Vulture/@comment-93.86.166.24-20150927185345\nTalk:Vulture/@comment-93.86.166.24-20150927185345/@comment-24530384-20151007140733\nTalk:Vulture/@comment-93.86.166.24-20150927185345/@comment-62.150.121.250-20160101232740\nTalk:Vulture/@comment-94.4.220.115-20150512105141\nTalk:Vulture/@comment-94.41.93.71-20170112013002\nTalk:Vulture/@comment-94.41.93.71-20170112013002/@comment-30245159-20170112022731\nTalk:Vulture/@comment-94.41.93.71-20170112013002/@comment-95.105.83.44-20170113030318\nTalk:Vulture/@comment-94.7.173.143-20150411003641\nTalk:Vulture/@comment-95.143.139.6-20150310192159\nTalk:Vulture/@comment-95.143.139.6-20150310192159/@comment-178.8.140.214-20150312221621\nTalk:Vulture/@comment-95.143.139.6-20150310192159/@comment-26116574-20150310210538\nTalk:Vulture/@comment-95.143.139.6-20150310192159/@comment-88.112.91.114-20150310193436\nTalk:Vulture/@comment-95.148.3.35-20150310195146\nTalk:Vulture/@comment-95.148.3.35-20150310195146/@comment-26009169-20150310195606\nTalk:Vulture/@comment-95.155.218.135-20150221194900\nTalk:Vulture/@comment-95.155.218.135-20150221194900/@comment-228629-20150222035953\nTalk:Vulture/@comment-95.155.218.135-20150221194900/@comment-26009169-20150222160436\nTalk:Vulture/@comment-95.155.218.135-20150221194900/@comment-95.155.218.135-20150222155108\nTalk:Vulture/@comment-97.64.220.2-20170418013715\nTalk:Vulture/@comment-97.64.220.2-20170418013715/@comment-176.249.62.114-20170826224749\nTalk:Vulture/@comment-97.64.220.2-20170418013715/@comment-67.21.153.142-20170420165512\nTalk:Vulture/@comment-97.64.220.2-20170418013715/@comment-82.4.11.23-20171206103911\nTalk:Vulture/@comment-98.169.29.69-20150319182640\nTalk:Vulture/@comment-98.169.29.69-20150319182640/@comment-174.61.152.149-20150320055558\nTalk:Vulture/@comment-98.169.29.69-20150319182640/@comment-26222609-20150322072926\nTalk:Vulture/@comment-98.228.99.5-20150827063203\nTalk:Vulture/@comment-98.26.87.63-20150621021519\nTalk:Vulture/@comment-98.30.27.95-20160515111318\nTalk:Vulture/@comment-98.30.27.95-20160515111318/@comment-192.136.173.19-20160515115231\nTalk:Vulture/@comment-99.113.61.88-20150327130237\nTalk:Vulture/@comment-99.113.61.88-20150408212320\nTalk:Vulture/@comment-99.113.61.88-20150408213513\nTalk:War for Lugh/@comment-109.155.75.129-20150509214543\nTalk:War for Lugh/@comment-129.101.216.92-20170204070318\nTalk:War for Lugh/@comment-129.101.216.92-20170204070318/@comment-2096048-20180413200732\nTalk:War for Lugh/@comment-153.46.105.98-20151110134047\nTalk:War for Lugh/@comment-153.46.105.98-20151110134047/@comment-2096048-20180413194955\nTalk:War for Lugh/@comment-2096048-20180413191728\nTalk:War for Lugh/@comment-69.125.156.220-20150409213851\nTalk:War for Lugh/@comment-69.125.156.220-20150409213851/@comment-26009169-20150409214314\nTalk:War for Lugh/@comment-90.202.143.96-20180101095033\nTalk:War for Lugh/@comment-91.206.0.43-20170209160819\nTalk:War for Lugh/@comment-91.206.0.43-20170209160819/@comment-2096048-20180413194821\nTalk:War for Lugh/@comment-91.206.0.43-20170209160819/@comment-26009169-20170209174509\nTalk:Water Purifiers/@comment-71.237.126.192-20160327230442\nTalk:Water Purifiers/@comment-71.237.126.192-20160327230442/@comment-26748640-20160328164013\nTalk:Waters of Shintara/@comment-109.203.25.13-20170819192308\nTalk:Waters of Shintara/@comment-109.203.25.13-20170819192308/@comment-136.63.66.1-20171012003022\nTalk:Waters of Shintara/@comment-109.203.25.13-20170819192308/@comment-136.63.66.1-20171012003611\nTalk:Waters of Shintara/@comment-109.203.25.13-20170819192308/@comment-98.162.153.141-20180710053246\nTalk:Wave Scanner/@comment-108.0.120.42-20160104010819\nTalk:Wave Scanner/@comment-172.58.168.158-20170215170812\nTalk:Wave Scanner/@comment-172.58.168.158-20170215170812/@comment-2155082-20170215200931\nTalk:Wave Scanner/@comment-174.26.132.67-20160106163142\nTalk:Wave Scanner/@comment-2155082-20160101041344\nTalk:Wave Scanner/@comment-2155082-20160101041344/@comment-27646041-20160120164518\nTalk:Weapon Focused Power Distributor/@comment-202.168.13.107-20181009033253\nTalk:Weapon Focused Power Distributor/@comment-202.168.13.107-20181009033253/@comment-2A00:23C5:3A87:5200:B565:2B:3991:E3DD-20181106121826\nTalk:Weapon Focused Power Distributor/@comment-2602:306:CE29:B0D0:6D15:CBEE:C9CA:9D3B-20190913122232\nTalk:Weapon Parts/@comment-70.104.165.8-20191010214237\nTalk:Weapons Fire/@comment-2001:5B0:2685:33F0:280:AEFF:FEF2:F77C-20180114150337\nTalk:Weapons Fire/@comment-2A02:C7D:692A:BF00:3D4E:D7B0:3812:663A-20180710004646\nTalk:Weapons Fire/@comment-31094186-20171127181210\nTalk:Weapons Fire/@comment-31094186-20171127181210/@comment-192.136.161.33-20171128172307\nTalk:Wells-class Carrier/@comment-73.254.208.235-20181031173744\nTalk:Wells-class Carrier/@comment-94.209.43.28-20180710101926\nTalk:Wheemete Wheat Cakes/@comment-187.67.3.61-20180116115554\nTalk:Wing Missions/@comment-173.73.0.143-20180227220423\nTalk:Wing Missions/@comment-173.73.0.143-20180227220423/@comment-2601:601:E03:5100:52F:547F:7B01:B9FD-20180227232733\nTalk:Wing Missions/@comment-173.73.0.143-20180227220423/@comment-46.223.129.39-20180303080410\nTalk:Wing Missions/@comment-2001:8003:F053:6F00:5B7:4022:FE63:408-20180809094725\nTalk:Wing Missions/@comment-222.155.63.45-20180618091715\nTalk:Wing Missions/@comment-222.155.63.45-20180618091715/@comment-5120893-20180627021907\nTalk:Wing Missions/@comment-2607:FEA8:8760:B03:A05A:9CA0:F52C:9006-20180328001614\nTalk:Wing Missions/@comment-36101058-20180706175534\nTalk:Wing Missions/@comment-36101058-20180706175534/@comment-74.249.112.23-20180829182431\nTalk:Wing Missions/@comment-76.224.181.11-20180506010942\nTalk:Wing Missions/@comment-76.67.73.200-20180307153023\nTalk:Wings/@comment-12.5.54.135-20151001151648\nTalk:Wings/@comment-12.5.54.135-20151001151648/@comment-80.1.34.4-20151019222030\nTalk:Wings/@comment-143.81.103.35-20160102170440\nTalk:Wings/@comment-143.81.103.35-20160102170440/@comment-98.102.88.66-20180112163243\nTalk:Wings/@comment-24.119.176.226-20150315075224\nTalk:Wings/@comment-24.119.176.226-20150315075224/@comment-12138097-20150315080609\nTalk:Wings/@comment-24.119.176.226-20150315075224/@comment-26009169-20150315125726\nTalk:Wings/@comment-24.55.13.173-20150311113652\nTalk:Wings/@comment-24.55.13.173-20150311113652/@comment-26009169-20150311123650\nTalk:Wings/@comment-24.55.13.173-20150311113652/@comment-73.195.250.117-20150311114454\nTalk:Wings/@comment-26192318-20150311080122\nTalk:Wings/@comment-5.80.207.186-20150913150751\nTalk:Wings/@comment-76.27.255.161-20160624014827\nTalk:Wings/@comment-76.27.255.161-20160624014827/@comment-71.233.88.91-20160718133858\nTalk:Wings/@comment-89.173.76.190-20150616203229\nTalk:Wings/@comment-98.232.151.219-20190201012450\nTalk:Winking Cat thief/@comment-68.0.32.198-20190218011754\nTalk:Witch Head Nebula/@comment-203.220.44.73-20190824230022\nTalk:Witch Head Nebula/@comment-84.47.56.228-20190730213552\nTalk:Witch Head Nebula/@comment-84.47.56.228-20190730213552/@comment-2605:6000:F1C2:51F0:FDDF:4817:6391:E51E-20190808192233\nTalk:Witch Head Nebula/@comment-84.47.56.228-20190730213552/@comment-2607:FB90:B447:B2F0:1D8:6E24:B8A4:9257-20190904070234\nTalk:Witch Head Nebula/@comment-84.47.56.228-20190730213552/@comment-26810597-20190730215757\nTalk:Witch space/@comment-25074307-20160330132813\nTalk:Witch space/@comment-25074307-20160330132813/@comment-27115814-20160330203107\nTalk:Witchhaul Kobe Beef/@comment-216.209.229.222-20161210022156\nTalk:Witchhaul Kobe Beef/@comment-73.142.176.57-20150524015118\nTalk:Witchhaul Kobe Beef/@comment-83.125.103.157-20161013204854\nTalk:Wolf 359/@comment-26513805-20150620023901\nTalk:Wolf 359/@comment-71.65.87.64-20160531014624\nTalk:Wolf 359/@comment-71.65.87.64-20160531014624/@comment-86.164.87.199-20190412202536\nTalk:Wolf 359/@comment-73.153.133.192-20160207213423\nTalk:Wolf 359/@comment-73.153.133.192-20160207213423/@comment-96.2.214.121-20170421151828\nTalk:Wolf 359/@comment-84.62.40.193-20150227184745\nTalk:Wolf 359/@comment-84.62.40.193-20150227184745/@comment-26513805-20150620023913\nTalk:Wolf 359/@comment-84.62.40.193-20150227184745/@comment-32907084-20180729232529\nTalk:Wolf 359/@comment-84.62.40.193-20150227184745/@comment-54.240.196.185-20150427201129\nTalk:Wolf 359/@comment-84.62.40.193-20150227184745/@comment-92.203.158.140-20150713142136\nTalk:Wolf 359/@comment-90.215.128.60-20181020204110\nTalk:Wolf Fesh/@comment-187.67.3.61-20180115230216\nTalk:Wolf Fesh/@comment-187.67.3.61-20180115230216/@comment-72.200.248.141-20190430170412\nTalk:Wolf Fesh/@comment-2001:4C4E:1D43:ACC9:6833:6BC1:4FD:C9FA-20190817075235\nTalk:Wolf Fesh/@comment-69.141.172.169-20150926174336\nTalk:Wolf Fesh/@comment-69.141.172.169-20150926174336/@comment-27283317-20151206230204\nTalk:Wolf Fesh/@comment-69.141.172.169-20150926174336/@comment-69.141.172.169-20150927204529\nTalk:Wolf Fesh/@comment-69.141.172.169-20150926174336/@comment-87.205.81.13-20151125103906\nTalk:Wolf Fesh/@comment-903860-20200613014144\nTalk:Wuthielo Ku Froth/@comment-91.115.180.170-20171114013547\nTalk:XG7 Trident/@comment-187.144.122.120-20180829022811\nTalk:XG7 Trident/@comment-187.144.122.120-20180829022811/@comment-82.14.210.105-20190714075405\nTalk:XG7 Trident/@comment-2A01:4B00:8A11:DC00:E8C8:48D2:111F:5B79-20180829205432\nTalk:XG7 Trident/@comment-2A01:4B00:8A11:DC00:E8C8:48D2:111F:5B79-20180829205432/@comment-2601:18F:601:6B80:5015:15D3:3136:A46A-20180902003325\nTalk:XG7 Trident/@comment-2A01:4B00:8A11:DC00:E8C8:48D2:111F:5B79-20180829205432/@comment-79.118.1.106-20180829212920\nTalk:XG7 Trident/@comment-2A01:4B00:8A11:DC00:E8C8:48D2:111F:5B79-20180829205432/@comment-82.14.210.105-20190714075105\nTalk:XG7 Trident/@comment-44180665-20200401142601\nTalk:XG7 Trident/@comment-45988705-20200603200632\nTalk:XG7 Trident/@comment-45988705-20200603200632/@comment-46105471-20200704233823\nTalk:XG7 Trident/@comment-82.14.210.105-20190714075556\nTalk:XG7 Trident/@comment-82.14.210.105-20190714075556/@comment-44180665-20200401142629\nTalk:XG8 Javelin/@comment-2605:A000:161A:4494:2446:5121:E178:503-20180831060502\nTalk:XG8 Javelin/@comment-2605:A000:161A:4494:2446:5121:E178:503-20180831060502/@comment-27838177-20200208155751\nTalk:XG8 Javelin/@comment-2605:A000:161A:4494:2446:5121:E178:503-20180831060502/@comment-44180665-20200403100759\nTalk:XG8 Javelin/@comment-903860-20180912235037\nTalk:XG9 Lance/@comment-159.205.245.170-20191221122338\nTalk:XG9 Lance/@comment-194.8.197.45-20180824185453\nTalk:XG9 Lance/@comment-194.8.197.45-20180824185453/@comment-194.8.197.45-20180824185746\nTalk:XG9 Lance/@comment-194.8.197.45-20180824185453/@comment-44180665-20200403102203\nTalk:XG9 Lance/@comment-194.8.197.45-20180824185453/@comment-71.191.95.176-20180829012002\nTalk:XG9 Lance/@comment-2600:6C5D:6300:801:95FB:5034:44EC:D4C0-20181121233132\nTalk:XG9 Lance/@comment-2601:191:8580:3802:9118:7D25:17BE:FA2D-20181021030333\nTalk:XG9 Lance/@comment-2601:191:8580:3802:9118:7D25:17BE:FA2D-20181021030333/@comment-44180665-20200403102355\nTalk:XG9 Lance/@comment-2A01:4B00:8A11:DC00:E8C8:48D2:111F:5B79-20180829205639\nTalk:XG9 Lance/@comment-2A01:4B00:8A11:DC00:E8C8:48D2:111F:5B79-20180829205639/@comment-159.205.245.170-20191221121829\nTalk:XG9 Lance/@comment-2A01:4B00:8A11:DC00:E8C8:48D2:111F:5B79-20180829205639/@comment-25450485-20181123100122\nTalk:XG9 Lance/@comment-2A01:4B00:8A11:DC00:E8C8:48D2:111F:5B79-20180829205639/@comment-43982350-20200913155112\nTalk:XG9 Lance/@comment-2A01:4B00:8A11:DC00:E8C8:48D2:111F:5B79-20180829205639/@comment-44180665-20200403101929\nTalk:XG9 Lance/@comment-44180665-20200403102221\nTalk:XG9 Lance/@comment-74.206.32.243-20180823132613\nTalk:XG9 Lance/@comment-94.197.120.81-20190426174440\nTalk:Xihe Biomorphic Companions/@comment-134.3.90.170-20190503195035\nTalk:Xihe Biomorphic Companions/@comment-24.68.123.74-20190103070052\nTalk:Xihe Biomorphic Companions/@comment-27267508-20151128154646\nTalk:Xihe Biomorphic Companions/@comment-37.132.113.67-20151126210240\nTalk:Xihe Biomorphic Companions/@comment-37.132.113.67-20151126210240/@comment-5.80.255.178-20151127043131\nTalk:Xihe Biomorphic Companions/@comment-77.50.26.143-20160930213456\nTalk:Xihe Biomorphic Companions/@comment-82.37.138.189-20151115195126\nTalk:Xihe Biomorphic Companions/@comment-86.219.178.75-20170521161508\nTalk:Xihe Biomorphic Companions/@comment-86.219.178.75-20170521161508/@comment-210.55.18.198-20170521192603\nTalk:Xihe Biomorphic Companions/@comment-86.219.178.75-20170521161508/@comment-27283317-20181104192039\nTalk:Xihe Biomorphic Companions/@comment-88.217.5.191-20151126195005\nTalk:Xihe Biomorphic Companions/@comment-90.19.184.252-20160917164719\nTalk:Xihe Biomorphic Companions/@comment-903860-20181215041002\nTalk:Xihe Biomorphic Companions/@comment-93.220.82.62-20160918094955\nTalk:Yaso Kondi Leaf/@comment-903860-20200612121122\nTalk:Yttrium/@comment-178.202.127.237-20160221170304\nTalk:Yttrium/@comment-2600:8800:6984:AB00:3CA6:934C:8BFC:2051-20171214194330\nTalk:Yttrium/@comment-27459249-20170909224959\nTalk:Yttrium/@comment-27459249-20170909224959/@comment-68.12.170.86-20171124094226\nTalk:Yttrium/@comment-81.152.49.243-20160725223527\nTalk:Yttrium/@comment-94.113.145.17-20160124101839\nTalk:Yttrium/@comment-95.180.64.192-20180202200756\nTalk:Yuri Grom/@comment-108.16.36.43-20170314170459\nTalk:Yuri Grom/@comment-108.16.36.43-20170314170459/@comment-192.136.170.98-20190304213201\nTalk:Yuri Grom/@comment-108.16.36.43-20170314170459/@comment-31094186-20180506112913\nTalk:Yuri Grom/@comment-108.16.36.43-20170314170459/@comment-62.2.131.1-20190304165510\nTalk:Yuri Grom/@comment-108.16.36.43-20170314170459/@comment-94.219.228.213-20190119100719\nTalk:Yuri Grom/@comment-2A02:C7D:118D:DF00:61FA:96BD:C8E2:55C8-20180926183835\nTalk:Yuri Grom/@comment-30928085-20171229195141\nTalk:Yuri Grom/@comment-30928085-20171229195141/@comment-30678435-20181002092722\nTalk:Yuri Grom/@comment-32.208.146.173-20161225034007\nTalk:Yuri Grom/@comment-32.208.146.173-20161225034007/@comment-32.208.146.173-20161225034346\nTalk:Yuri Grom/@comment-85.253.217.23-20170109064625\nTalk:Yuri Grom/@comment-85.253.217.23-20170109064625/@comment-30204622-20170202162705\nTalk:Yuri Grom/@comment-85.253.217.23-20170109064625/@comment-30678435-20180307111129\nTalk:Yuri Grom/@comment-85.253.217.23-20170109064625/@comment-71.9.218.139-20180306050055\nTalk:Yuri Grom/@comment-90.200.46.38-20181126012244\nTalk:Yuri Grom/@comment-90.200.46.38-20181126012244/@comment-192.136.170.98-20181126041919\nTalk:Yuri Grom/@comment-97.80.132.42-20170404145501\nTalk:Yuri Grom/@comment-97.80.132.42-20170404145501/@comment-176.241.72.203-20190729234855\nTalk:Yuri Grom/@comment-97.80.132.42-20170404145501/@comment-30678435-20170405225509\nTalk:Zacariah Nemo/@comment-187.144.122.120-20180921013245\nTalk:Zacariah Nemo/@comment-2001:569:79A3:5E00:A14D:8321:C3B7:9569-20180314000837\nTalk:Zacariah Nemo/@comment-2602:306:CE29:B0D0:7D6E:D1A2:1A68:171-20190910231835\nTalk:Zacariah Nemo/@comment-2602:306:CE29:B0D0:7D6E:D1A2:1A68:171-20190910231835/@comment-202.80.213.39-20191112111153\nTalk:Zacariah Nemo/@comment-87.92.98.179-20190820211241\nTalk:Zacariah Nemo/@comment-93.157.121.192-20190323100115\nTalk:Zachary Hudson/@comment-101.191.32.163-20151022120248\nTalk:Zachary Hudson/@comment-101.191.32.163-20151022120248/@comment-195.240.253.20-20151028200029\nTalk:Zachary Hudson/@comment-101.191.32.163-20151022120248/@comment-2602:306:CE29:B0D0:7DA3:3D92:FE5B:DAA7-20190904041052\nTalk:Zachary Hudson/@comment-108.185.147.189-20161112214000\nTalk:Zachary Hudson/@comment-123.2.166.118-20151021102415\nTalk:Zachary Hudson/@comment-173.162.212.237-20150929173310\nTalk:Zachary Hudson/@comment-188.210.57.40-20150818103204\nTalk:Zachary Hudson/@comment-188.210.57.40-20150818103204/@comment-125.237.5.125-20160904012428\nTalk:Zachary Hudson/@comment-203.161.94.78-20161201083006\nTalk:Zachary Hudson/@comment-206.47.78.114-20160812143857\nTalk:Zachary Hudson/@comment-206.47.78.114-20160812143857/@comment-80.192.74.60-20170124213418\nTalk:Zachary Hudson/@comment-24740282-20180311054328\nTalk:Zachary Hudson/@comment-2601:586:C801:6181:696E:33C2:33A4:9B35-20190223013052\nTalk:Zachary Hudson/@comment-2601:586:C801:6181:696E:33C2:33A4:9B35-20190223013052/@comment-36373908-20200508175941\nTalk:Zachary Hudson/@comment-2602:306:CE29:B0D0:7DA3:3D92:FE5B:DAA7-20190904041323\nTalk:Zachary Hudson/@comment-2607:FB90:4C37:258B:16FC:D3A0:B0CB:8DB1-20190826162441\nTalk:Zachary Hudson/@comment-26391992-20150916095753\nTalk:Zachary Hudson/@comment-27162955-20160113221725\nTalk:Zachary Hudson/@comment-33493166-20190331211254\nTalk:Zachary Hudson/@comment-33493166-20190331211254/@comment-166.109.224.51-20190402145943\nTalk:Zachary Hudson/@comment-33493166-20190331211254/@comment-33493166-20190408165756\nTalk:Zachary Hudson/@comment-5919964-20160217063222\nTalk:Zachary Hudson/@comment-5919964-20160217063222/@comment-67.42.133.173-20161005234213\nTalk:Zachary Hudson/@comment-67.42.133.173-20161005234417\nTalk:Zachary Hudson/@comment-67.42.133.173-20161005234417/@comment-166.137.118.28-20170322172819\nTalk:Zachary Hudson/@comment-67.42.133.173-20161005234417/@comment-2601:586:C801:6181:696E:33C2:33A4:9B35-20190223012830\nTalk:Zachary Hudson/@comment-67.42.133.173-20161005234417/@comment-46.188.121.230-20161210100806\nTalk:Zachary Hudson/@comment-67.42.133.173-20161005234417/@comment-68.186.136.184-20171211045445\nTalk:Zachary Hudson/@comment-67.42.133.173-20161005234417/@comment-92.230.252.35-20170116232320\nTalk:Zachary Hudson/@comment-67.42.133.173-20161005234417/@comment-97.126.125.214-20191230233042\nTalk:Zachary Hudson/@comment-85.71.224.148-20150807083459\nTalk:Zachary Hudson/@comment-85.71.224.148-20150807083459/@comment-73.205.235.25-20150807110716\nTalk:Zachary Hudson/@comment-85.71.224.148-20150807083459/@comment-79.64.144.234-20150821131340\nTalk:Zachary Hudson/@comment-85.71.224.148-20150807083459/@comment-86.1.123.240-20150829150708\nTalk:Zachary Hudson/@comment-85.71.224.148-20150807083459/@comment-98.144.90.96-20150817165738\nTalk:Zachary Hudson/@comment-85.76.130.137-20151226203902\nTalk:Zachary Hudson/@comment-86.88.200.3-20151030084252\nTalk:Zachary Hudson/@comment-90.200.46.38-20181126011753\nTalk:Zachary Hudson/@comment-90.200.46.38-20181126011753/@comment-97.126.125.214-20191230232820\nTalk:Zachary Hudson/@comment-99.162.64.114-20151006222918\nTalk:Zachary Hudson/@comment-99.51.71.135-20170718093210\nTalk:Zeessze Ant Grub Glue/@comment-67.186.92.128-20150425065801\nTalk:Zeessze Ant Grub Glue/@comment-72.224.237.155-20150305145447\nTalk:Zeessze Ant Grub Glue/@comment-77.50.26.143-20160930210959\nTalk:Zeessze Ant Grub Glue/@comment-98.239.48.227-20150122125907\nTalk:Zemina Torval/@comment-100.36.107.3-20151218064313\nTalk:Zemina Torval/@comment-165.225.0.79-20180817170431\nTalk:Zemina Torval/@comment-165.225.0.79-20180817170431/@comment-30928085-20180818071739\nTalk:Zemina Torval/@comment-165.225.0.79-20180817170431/@comment-68.110.28.66-20190101132016\nTalk:Zemina Torval/@comment-2602:306:CE29:B0D0:3135:E24A:9DBC:24E2-20190913221940\nTalk:Zemina Torval/@comment-2602:306:CE29:B0D0:3135:E24A:9DBC:24E2-20190913221940/@comment-2602:306:CE29:B0D0:5148:3E6C:3019:AFBF-20191012062024\nTalk:Zemina Torval/@comment-2602:306:CE29:B0D0:3135:E24A:9DBC:24E2-20190913221940/@comment-29567000-20190914104602\nTalk:Zemina Torval/@comment-2602:306:CE29:B0D0:3135:E24A:9DBC:24E2-20190913221940/@comment-29567000-20191012073826\nTalk:Zemina Torval/@comment-86.155.195.62-20150606203535\nTalk:Zemina Torval/@comment-86.155.195.62-20150606203535/@comment-109.150.91.1-20150718174312\nTalk:Zemina Torval/@comment-86.155.195.62-20150606203535/@comment-86.19.135.236-20160731002500\nTalk:Zirconium/@comment-29839692-20180320074216\nTalk:Zirconium/@comment-2A02:A31C:224:F00:D132:4173:22F6:8D33-20190829125127\nTalk:Zirconium/@comment-2A02:A31C:224:F00:D132:4173:22F6:8D33-20190829125127/@comment-98.232.151.219-20191231181304\nUser:\"Jackal\" Kreiss\nUser:00XD00\nUser:00raymond\nUser:0xyg3nist\nUser:101hat101/common.css\nUser:123jiordan\nUser:16tribe2\nUser:1bazr1\nUser:1geek2many\nUser:1mirg\nUser:27duuude\nUser:2DVS4U\nUser:4231345tresgyfdbxzverzx\nUser:501.Legion\nUser:6 Xero 9\nUser:90Ghost90\nUser:A-DEVIOUS-HYENA\nUser:A.JK18\nUser:A26706940\nUser:AAABatteryX\nUser:AFTABURNER\nUser:AGR-13\nUser:AKA MasterG\nUser:ALTARF94\nUser:ALU52\nUser:ALittleBird\nUser:AMpos\nUser:A Loyalist\nUser:Aalku\nUser:Aardcore\nUser:Aaroniscrazy\nUser:Aawood\nUser:Aazelion\nUser:AbioticSquare0\nUser:Abodythehero\nUser:Abyssflight\nUser:Ace Kestrel\nUser:Aceman2234\nUser:Achuta\nUser:Adalovegirls\nUser:Adamrsb48\nUser:AdiTheFox\nUser:Adinashawanda\nUser:Adminpwn123\nUser:AdmiralFire\nUser:Admsoul500\nUser:Adobetemplar\nUser:Adrian549kiyoshi\nUser:Aelkins3\nUser:Aeqsce\nUser:Aerziel\nUser:Aesamdal\nUser:Aethylred-fduser\nUser:Aeyonx\nUser:Afreeflyingsoul\nUser:AgentExeider\nUser:Agentnewbie\nUser:Agony Aunt\nUser:Agorash\nUser:Aguywhocantgetpastspecimen1\nUser:AidenTEM\nUser:Aiihuan\nUser:Aiihuan/Sandbox\nUser:Aiihuan/wikia.css\nUser:Ajh16\nUser:AkaHeretic\nUser:Akecalo\nUser:Al1000000\nUser:AlatarRhys\nUser:Albie02\nUser:Alejojojo6\nUser:AlekMitch\nUser:Aleswigger\nUser:Alex8obrien\nUser:Alexander Yunker\nUser:Alexsto1999\nUser:Aliceinspace\nUser:Alicia Melchiott\nUser:Alien00785\nUser:Alien199490\nUser:Alienxdani\nUser:Alifoo\nUser:Alin Alexandru\nUser:Allmass\nUser:Allosauro Polare\nUser:Almighty Deity\nUser:Alpha654\nUser:AlphaSpace\nUser:Alphaengineer\nUser:Alphetto\nUser:Alshain Aquilae\nUser:Amastoll\nUser:AmayaManami\nUser:Ambient.Impact\nUser:Ambiorix33\nUser:Amebix517\nUser:Amorelia\nUser:An attempted username\nUser:AnalyticalGamer\nUser:Anarch157a\nUser:AnarchySys-1\nUser:AndersonDG\nUser:AndersonDG/Interstellar United\nUser:AndiSarrian\nUser:Andix1\nUser:Andraez\nUser:Andrealessi\nUser:Andreferhelst\nUser:Andrew279cz\nUser:AndrewTJ31\nUser:Andrew Woden\nUser:AndricReal\nUser:AndricReal/oasis.js\nUser:Andrtan\nUser:AndySimpson96\nUser:Andybish\nUser:AngelCatGamer\nUser:AngelOfDeathXIV\nUser:Angela\nUser:AngelicSkyPig\nUser:Angelus80\nUser:AngelusNeron\nUser:AnimeKid\nUser:AnimusDeFi\nUser:Anon1444\nUser:Anonymoususer705\nUser:Antezscar\nUser:AntonerUSSR\nUser:AntonyVern\nUser:AntyAztek\nUser:AnxiousAndroid\nUser:Anzhi88601\nUser:Aperson123456789\nUser:AppleAuthority\nUser:Applemasterexpert\nUser:Aquarius Alodar\nUser:Aquaticaquarian\nUser:ArakiSatoshi\nUser:Aran.ilyaris\nUser:Araxes Falanor\nUser:Arbie2\nUser:Arcalane\nUser:Arcanii\nUser:Archemp\nUser:ArchmageFil\nUser:Arcslayer0\nUser:ArcticEngie\nUser:ArcturusTruth\nUser:Ardipardi\nUser:Arerix\nUser:Arexac\nUser:Arfur Faulkes Hake\nUser:Arguendo\nUser:Arithon68\nUser:ArithonUK\nUser:ArkadeMachine\nUser:Arkronis\nUser:Arktac13\nUser:Arminelec\nUser:Armorial\nUser:Arnoldhdz\nUser:Arron X\nUser:Arrrrgh\nUser:Artemis317\nUser:Artemis871\nUser:ArthurFistMeme\nUser:Asalamanca\nUser:Asbestosinhaler\nUser:Ascott08\nUser:Ashcraven\nUser:Asherett\nUser:Ashnak\nUser:Askanison40\nUser:Assassin1454\nUser:Astaldor\nUser:AstroTorchMussolini\nUser:Astropsipower\nUser:Atamoor\nUser:Atarak\nUser:Atdc98\nUser:Athenian Goddess\nUser:Atlas29k\nUser:AtofeLT\nUser:Atribe\nUser:Auhrii\nUser:Auron Volgar\nUser:AuroraXerox\nUser:Aussiecookie\nUser:Autemer\nUser:Autismoo1\nUser:Avalanche506\nUser:AvalonTreman\nUser:Avaruus\nUser:Avatar\nUser:Avianographer\nUser:Avonw\nUser:Aw360\nUser:AwakenDeath\nUser:Ax028\nUser:Axarus\nUser:Axelskox\nUser:Aygor974\nUser:Aymerix\nUser:Azby676\nUser:Azeoss\nUser:Azgoodaz\nUser:Azgru\nUser:Azuki, Connoisseur d'Catgirl\nUser:Azutone\nUser:B1uetears\nUser:BAdbUd65\nUser:BBuster20\nUser:BLaZeR666uk\nUser:BNSF1995\nUser:BOOTZed\nUser:BULLIITT\nUser:Babyss\nUser:BadBunnie\nUser:Badboyswat007\nUser:Baelydon\nUser:Bald-Jay\nUser:Baledor\nUser:Balvald\nUser:Banishin\nUser:Banos Ayado\nUser:Barateza\nUser:Barkertron\nUser:BaronCrusher\nUser:Baroness Galaxy\nUser:Baronwonsbutt\nUser:Barrechor\nUser:Bastardblaster\nUser:Bderochie\nUser:Bear Heroditus\nUser:Bear Heroditus/Kempston Productions\nUser:BeckersCS\nUser:Beebro22\nUser:Beetusdeletus\nUser:Bene1993\nUser:Benjamin Hall\nUser:BennyBoyW\nUser:Bentheshrubber\nUser:BertH\nUser:BestalienUK\nUser:Bethcharissa9\nUser:Bgavares\nUser:Bhaalspawn\nUser:Bidabug\nUser:Bidoof king\nUser:BigBadB ED\nUser:BigBlackWolf\nUser:Biker4487\nUser:Bilberquist\nUser:Bilgewat3r\nUser:BinaryHatred\nUser:Binlid\nUser:Bionicbytes\nUser:BirDty\nUser:Bishop Inskipp\nUser:Bit'n'byte\nUser:Bitboy0\nUser:BjrRutten\nUser:Bl00dh0und9\nUser:BlackFlare\nUser:BlackKnight343\nUser:BlackWidower\nUser:Blackenedbutterfly\nUser:Blackmesa141\nUser:Blackproud\nUser:Bladefeather\nUser:Blades762\nUser:Blaes3304\nUser:BlaesTheLoreguy\nUser:BlanquePayge81\nUser:Blastburn94\nUser:BlastedFire\nUser:Bliss000\nUser:Blizzard36\nUser:BloatedPelican\nUser:Blockade3\nUser:Blood Drunk Gaming\nUser:Blowdog\nUser:Blu Razgriz\nUser:Blubberdiblub\nUser:Blubbinio\nUser:BlueJoeCo\nUser:BlueMystical\nUser:Bluebunny507\nUser:Bluecrash\nUser:Bluekieran\nUser:Bluewave256\nUser:Bo55vxr\nUser:Bob - Chicken Eater\nUser:BobbyARandomGuy\nUser:Boczyslav\nUser:Boernsi2000\nUser:Bogeybum\nUser:Bohric\nUser:Bohtauri\nUser:Bolloxim\nUser:Bompiz\nUser:Bongerman85\nUser:Bongorider\nUser:Boofsader\nUser:Boomaya\nUser:Bordmon\nUser:Bordric\nUser:Borgkube\nUser:BornAvenger\nUser:BornBadAimer\nUser:Boronshark\nUser:BostonBrawler\nUser:Bounceyhedgehog\nUser:Boxanadu\nUser:Brackynews\nUser:Bragolatch\nUser:BramSter\nUser:Brandon Potts\nUser:Brass79\nUser:Bravo17\nUser:Brayzure\nUser:BreaksWindu\nUser:Breywood\nUser:Brimston\nUser:BritishAdmiral\nUser:Britishfish\nUser:BruceWillyyy\nUser:Brucejr70\nUser:Bruno3700\nUser:Brusilov\nUser:BrutalBird\nUser:Bruzt\nUser:Bubbabenali\nUser:Budulman\nUser:Buggs1a\nUser:Bughunter13\nUser:Buliell\nUser:Bullman88\nUser:Burninghero\nUser:Bus Ticket\nUser:Buster6676\nUser:BwShadowFang\nUser:Bwc153\nUser:Bwoodward\nUser:C0b4ltl1ghtn1ng\nUser:CASAGE\nUser:CC9020\nUser:CDR Fokker\nUser:CLuther\nUser:CMDE Megashot7727\nUser:CMDR-GreenDemon\nUser:CMDRAaronParker\nUser:CMDRAquillus\nUser:CMDRExorcist\nUser:CMDRGURU951\nUser:CMDRGrayArea\nUser:CMDRJimenez\nUser:CMDRKennyJacket\nUser:CMDRMegalos\nUser:CMDRPaelon\nUser:CMDRPlater\nUser:CMDRSalad\nUser:CMDRSearia\nUser:CMDRTitusValerius\nUser:CMDRToXik\nUser:CMDR AL3X\nUser:CMDR Alex Harrow\nUser:CMDR Algomatic\nUser:CMDR Archlich\nUser:CMDR BL1P\nUser:CMDR Berton\nUser:CMDR DTOM\nUser:CMDR Danzo Treeface\nUser:CMDR Deathbringer\nUser:CMDR DraphtN\nUser:CMDR EAMONN\nUser:CMDR Ed Mussie\nUser:CMDR Eleshenar\nUser:CMDR Elnar\nUser:CMDR EpicClown\nUser:CMDR FISHCANDY\nUser:CMDR Fallen Heart\nUser:CMDR Ferroll\nUser:CMDR Frakie\nUser:CMDR Furyosa\nUser:CMDR Good Guy Jones\nUser:CMDR Grey Wolfe\nUser:CMDR IWl\nUser:CMDR Juniper\nUser:CMDR Kalperine\nUser:CMDR Kastor\nUser:CMDR Kirv Goldblade\nUser:CMDR Knolan\nUser:CMDR Kune\nUser:CMDR Lagzilla\nUser:CMDR Manfredvonrichtoffen\nUser:CMDR Montague Druitt\nUser:CMDR Moonprayer\nUser:CMDR Nashorn\nUser:CMDR NineSun\nUser:CMDR Ostey\nUser:CMDR Owl\nUser:CMDR PAUSANIAS\nUser:CMDR Pandishi\nUser:CMDR Paul Golov\nUser:CMDR Pittam\nUser:CMDR Pweeps\nUser:CMDR RahnKavall\nUser:CMDR Ramza Fellos\nUser:CMDR Reaper\nUser:CMDR RebelUK\nUser:CMDR Remi Lassalle\nUser:CMDR Rhye\nUser:CMDR Samson J. Rivers\nUser:CMDR Shane Lee\nUser:CMDR Shwinky\nUser:CMDR Slyve\nUser:CMDR Sniffy\nUser:CMDR Soifua\nUser:CMDR Space Dawg\nUser:CMDR Spencer B\nUser:CMDR Stahlwollvieh\nUser:CMDR StenJay the 8th wonder\nUser:CMDR Sudoken\nUser:CMDR Sushin\nUser:CMDR TRUE LUMINUS\nUser:CMDR Tigivo\nUser:CMDR Treya\nUser:CMDR Triton Zeal\nUser:CMDR Trium\nUser:CMDR Trium Augus\nUser:CMDR Vincentius\nUser:CMDR Vorm17\nUser:CMDR WAZENER\nUser:CMDR Zer0Skill\nUser:CMDR victordestroyer\nUser:CMDRbranch\nUser:CMDRmarqueA2\nUser:CMD Kerpla\nUser:CMNDRXenon\nUser:CTFunny\nUser:Cab13140\nUser:Cabbage928\nUser:CakeSlayr\nUser:CaldariLegend\nUser:Caleb Blackpaw\nUser:CallMeHyphen\nUser:Callummcf0501\nUser:Callzter\nUser:Canadianicehole\nUser:Cannukko\nUser:Capirossi\nUser:CaptAnopheles\nUser:CaptHank\nUser:CaptSummers\nUser:CaptainBarracuda\nUser:CaptainMeap\nUser:CaptainTeachBlackBeard\nUser:CaptainTeachBlackBeard/The Ministry of Planetary-Defence\nUser:Captain Barracuda\nUser:Captain Breton\nUser:Captain Tickle\nUser:Captain rafix\nUser:Card1974\nUser:CarryAubriella\nUser:CarverSindile\nUser:CashewCraft\nUser:CastielVII\nUser:CatObsession\nUser:CatalystReality\nUser:CavaX\nUser:Cavaler.pk\nUser:Cdw129\nUser:Celarius\nUser:Celness\nUser:Cephalos1981\nUser:Cephalos81\nUser:Cessoe\nUser:Chandoss\nUser:Charizard1596\nUser:Cheeriomrssophy\nUser:Cherebukha\nUser:Chiconspiracy\nUser:Chinagreenelvis\nUser:Choloph\nUser:Chrisdubbels\nUser:Chrisnb1\nUser:Chromfell\nUser:Chrras\nUser:ChuckyB\nUser:Cinoth\nUser:CirrusFlare\nUser:City12\nUser:Ck.ender\nUser:Clavain\nUser:Clingo316\nUser:ClkWrkCuttlfish\nUser:Clockpuncher\nUser:Clovengoof\nUser:Cluther88\nUser:Cmd jase\nUser:CmddUbI0s\nUser:Cmdr.musketeer\nUser:CmdrAthanasius\nUser:CmdrCleonymus\nUser:CmdrCrob\nUser:CmdrFlemming\nUser:CmdrJonah\nUser:CmdrKantosKan\nUser:CmdrLard\nUser:CmdrMajorWood\nUser:CmdrNightstorm\nUser:CmdrRedfox\nUser:CmdrSigon\nUser:CmdrTictac\nUser:Cmdr Double Eagle\nUser:Cmdr Foamborn\nUser:Cmdr Gecko Fosho\nUser:Cmdr Glassfish\nUser:Cmdr Hans\nUser:Cmdr Mad Cow\nUser:Cmdr Myrkur\nUser:Cmdr Roberlin\nUser:Cmdr SLAYER\nUser:Cmdr Saii\nUser:Cmdr Sand Spider\nUser:Cmdr Sekiou\nUser:Cmdr Shocken-Orr\nUser:Cmdr Tooth\nUser:Cmdr Velvet Remedy\nUser:Cmdr Void\nUser:Cmdr byker\nUser:Cmdr grazza\nUser:Cmdr mustashe\nUser:Cmdr ragveil\nUser:Cmdr unkownkiller\nUser:Cmdrmarx\nUser:Cmdrp\nUser:Cmdrthefairy\nUser:Cmdrtimsk\nUser:Cnschulz\nUser:Coaster4321\nUser:Cod killer90210\nUser:Codekata\nUser:Cofefe\nUser:CokaCola1\nUser:ColonelJakes ZA\nUser:Colonia Jesus\nUser:CombatSanta\nUser:ComediNyan\nUser:Comicsserg\nUser:CommanderOfACobra\nUser:CommanderOz\nUser:Commander Aadam\nUser:Commander Eddington\nUser:Commander KayDee\nUser:Commander Pants Man\nUser:Commander Shit Face\nUser:Commander Space Caveman\nUser:Commander cornstalk\nUser:CommandoCatt\nUser:Compander\nUser:Compro01\nUser:ComradeWinston\nUser:Conceited1\nUser:Console.cc\nUser:Coobra-fduser\nUser:Cookie das Monster\nUser:Copperpug\nUser:Copticc\nUser:Corelias01\nUser:Corpsealot\nUser:Corrigendum\nUser:CorvoKAttano\nUser:Corvustech\nUser:Cory280\nUser:CouncilGuy\nUser:Coverwatch\nUser:Cowbert\nUser:Cpt4grimm\nUser:CptGrumbles\nUser:CrafterDave\nUser:CreateWiki script\nUser:CreepyD\nUser:Creepyhobo101\nUser:Crimsonphoenixca\nUser:Cristianoferr\nUser:Crixomix\nUser:Crolis1\nUser:CrossCoffee\nUser:Crow7734\nUser:Cryptark\nUser:CrystallizedSoul\nUser:Csucsok\nUser:Ctlarson\nUser:Cubusaddendum\nUser:CursedUnderwear\nUser:Curvemn17\nUser:Cyanide3\nUser:CyberAngel82\nUser:CyberKP\nUser:CyberTX\nUser:Cybershaman\nUser:Cybrpnkrpg\nUser:Cyne01\nUser:Cynteara\nUser:Cypherpunks\nUser:Cyrusdexter\nUser:Cytheria01\nUser:Cyzair\nUser:D33rgod\nUser:DHaze121\nUser:DJScias\nUser:DLambeau\nUser:DNYI\nUser:DRxArchangelxDR\nUser:DVHeld\nUser:DaNASCAT\nUser:Daddychew\nUser:Daemoniak\nUser:Daenuisvar\nUser:Daeridanii\nUser:Daftpunk150466\nUser:Dagerun\nUser:Dagnarius\nUser:Dagoonx\nUser:Daishi424\nUser:Dak47922\nUser:DakotaTheWolf\nUser:Dan-Erik\nUser:DanL 216\nUser:Dangerousbuzz934\nUser:DanielKuk\nUser:DanielZwolf\nUser:Dankuk\nUser:Dapwnanator\nUser:Darck vador\nUser:DarkDanger\nUser:DarkEnergy33\nUser:DarkLive\nUser:DarkSlayerKnight\nUser:DarkWidow\nUser:DarkWolf9200\nUser:Darkkillex\nUser:Darkneon2002\nUser:Darkrai1276\nUser:Darrenjohngrey\nUser:DarthVader0390\nUser:DarthWall275\nUser:DarthWonko\nUser:Darth Raijiin\nUser:Darth Snowie\nUser:Daspisch\nUser:Data1chi\nUser:Datan0de\nUser:DaveLister22\nUser:Daverex1992\nUser:David Kieser\nUser:Davidl rt06\nUser:Davinchavin\nUser:Dazinablender\nUser:Dbeachy11\nUser:Dcseal\nUser:De3euk\nUser:DeMangler\nUser:DeRanGed De\nUser:DeXart\nUser:Deakie\nUser:DearKingSombra\nUser:DeathiiBring\nUser:Deathparcito\nUser:Dedblu\nUser:DeeHawk\nUser:Deemster007\nUser:Default\nUser:Defender6213\nUser:DefenderX1\nUser:Defocusstudio\nUser:Defranks\nUser:Deidara1113\nUser:Deimos2k20\nUser:DejayRezme\nUser:DeltaEchoLima\nUser:DemiserofD\nUser:Demono\nUser:Denishowe\nUser:Denisjackman\nUser:Denisjackman/Guardians of Tranquillity\nUser:DerFlob\nUser:Derthek\nUser:Desatio\nUser:Descrasnezul\nUser:Deslacooda\nUser:Destikahr1\nUser:Destroyer676767\nUser:Detlas Legacy\nUser:Deusjensen\nUser:DevaKitty\nUser:Devantejah\nUser:Deviyue\nUser:DevoidParadise\nUser:DexLuther\nUser:DexSK\nUser:Dexcuracy\nUser:Dfault988998\nUser:Dguzmanalk\nUser:Dha12oks\nUser:Diabetic Doggo\nUser:Diamondfast\nUser:Dicando220833BR\nUser:Diegovilar\nUser:Digistruct0r\nUser:Digletteer\nUser:Dikivan2000\nUser:Dimmu1313\nUser:Dinee\nUser:Dingletwit\nUser:Diodepixel-gpuser\nUser:DirectorGen154\nUser:Direwolf2496\nUser:Disrobed34\nUser:Disulfiram\nUser:Djadjok\nUser:Djdahav\nUser:Dlljs\nUser:Dmitri Korolev\nUser:Dneif\nUser:Dniwe koreec\nUser:DobrijZmej\nUser:DoctorEvil CZ\nUser:Doctor Brohoof\nUser:Doctor Dazzamizer\nUser:Doctor Demento\nUser:Doctor Introvertsius\nUser:DofD\nUser:Doktor Smyth\nUser:Dombal\nUser:DominateEye\nUser:Don Alphonso\nUser:Dopp\nUser:Dorfski\nUser:Dr. Clayton Forrestor\nUser:DrBarbar\nUser:DrKayRoss\nUser:DrProtuberanec\nUser:Dr Pillman\nUser:Draco25240\nUser:Draco84oz\nUser:Draconigena16\nUser:Dragon Arcadia\nUser:Dragonboss2000\nUser:Dragonswagin\nUser:Dragoon346\nUser:Drakhor\nUser:Drat\nUser:Dratir-fduser\nUser:Drax658\nUser:Drayath\nUser:Drayviss\nUser:Drbobo\nUser:Dread-Fox\nUser:Dread2k\nUser:DreadZed\nUser:Dreadmetis\nUser:Dreadric\nUser:Drenidor\nUser:Drewj1300\nUser:Drewwagar\nUser:Drhead\nUser:Driku\nUser:Droid8Apple\nUser:Drscandalous\nUser:Dsnt02518\nUser:Dukeofbattle\nUser:Dunrankin\nUser:Dusk118\nUser:Dust Driver\nUser:DwnRghtBlak\nUser:Dylan Coates\nUser:Dyotan\nUser:Dyppo\nUser:Dyse Flux\nUser:Dzarafata\nUser:EDPirate\nUser:EDSM\nUser:ELITEUnkownkiller\nUser:ENVR\nUser:EPiK DR0PPER\nUser:ETSDRAGON\nUser:Eagleeye81\nUser:Earen\nUser:EboClintontabi\nUser:Echo890\nUser:EchoBladeMC\nUser:Eckee\nUser:Eddie21k\nUser:Eddpayne\nUser:Eddyfb\nUser:Edgreaves\nUser:Edit page script\nUser:EdoLevy\nUser:EekaDroid\nUser:Eeryyxx23\nUser:Effingbrian\nUser:Egovich\nUser:EgrAndrew\nUser:EhTAmiD\nUser:Ei8htx\nUser:EightHook37\nUser:Eisfunke\nUser:Ekholbrook\nUser:Elbarto331\nUser:Eldrinn Elantey/fandomdesktop.css\nUser:Electricnacho\nUser:Elfener99\nUser:Elite:reporter\nUser:EliteAdvisor\nUser:EliteTheLand\nUser:EliteWikiMan\nUser:Elite 73\nUser:Elite Credits\nUser:Elite fan 73\nUser:Elitewikia\nUser:ElliottB1\nUser:Elterchet\nUser:Elvisdumbledore\nUser:Emailformygames\nUser:Emailformygames/common.css\nUser:Emailformygames/common.js\nUser:Emailformygames/monobook.css\nUser:Emailformygames/test\nUser:Emailformygames/test1\nUser:Emailformygames/test1.css\nUser:Emailformygames/test1.js\nUser:Emailformygames/test2\nUser:Emailformygames/test2.css\nUser:Emhilradim\nUser:Emptylord\nUser:Emptylord/common.css\nUser:EnigmaNL\nUser:Entdude\nUser:Enverex\nUser:Enweelh\nUser:Eoraptorur\nUser:Ephymis\nUser:EpicMhyre\nUser:EpicnessUnleashed\nUser:Epoch365\nUser:Erdega\nUser:Eric L8s\nUser:Erikrpm\nUser:Erlaed\nUser:Ernest Hardi\nUser:Erwgd\nUser:Esesci\nUser:Esk 7\nUser:EssentialNPC\nUser:EstrelaDoTipoF48\nUser:Esuka/common.css\nUser:Ethribin\nUser:Ethzero77\nUser:Euan The Goid Killer\nUser:Evelas\nUser:Evittalex\nUser:Ewalden\nUser:Ewex\nUser:ExTenor\nUser:Exaemo\nUser:Excalibuh\nUser:ExcelSaga\nUser:Exigeous\nUser:Exitwound 45\nUser:Exitwound 45/myshiplist\nUser:Exodus83\nUser:Exofi\nUser:Externalpower43\nUser:Extremofire\nUser:Ezolate\nUser:Ezri778\nUser:FEUERBACH\nUser:FFFFFFF23\nUser:FLUX2226\nUser:FR0D0sam\nUser:FW Ludicer\nUser:Facehurt\nUser:Faceman667\nUser:FailRail hero\nUser:Fake Al Gore\nUser:Falcatum\nUser:Falita\nUser:FallShortOfTheTruth\nUser:Famba\nUser:Fanghur Rahl\nUser:Fapiko\nUser:Farcaller\nUser:Farin Cross\nUser:Faroutmat\nUser:Fat chucky\nUser:Fdevareliars\nUser:Fedakol\nUser:Fegazeus\nUser:Feiercrack\nUser:FelizR\nUser:Fendalton\nUser:Fernandogod12\nUser:Ferret141\nUser:Ferret Bueller\nUser:FerricFoxide\nUser:Ffuschini\nUser:Ficc\nUser:FireInABottle5\nUser:FireZenesis\nUser:FishTank\nUser:Fixxel\nUser:Flaicher\nUser:FlashDeviant\nUser:Fleecer\nUser:Flerble\nUser:Fletcher32\nUser:FlightDeck\nUser:Fluffnut17\nUser:Flutterhawk\nUser:Flyingtiger172\nUser:Fog66\nUser:Fokkusu88\nUser:Foldlet\nUser:For madmen only\nUser:Forbiddenlake\nUser:Forcesinger\nUser:Forgottenlord\nUser:Forkinator\nUser:ForsakenScholar\nUser:Fosnez-fduser\nUser:Foundryguy\nUser:Fozza\nUser:Fraggle\nUser:Frank K\nUser:Freakishwizard\nUser:FreakyFox\nUser:Freedom4556\nUser:Freelancer105\nUser:Freetrack\nUser:Frexie\nUser:Frogben\nUser:Fronink1980\nUser:FrrVegeta\nUser:Frungi\nUser:Fuhsaz\nUser:Fw190a8\nUser:Fyah88\nUser:GALDART\nUser:GEONEgaming\nUser:GMoney132\nUser:GMoney132/common.css\nUser:GOL127\nUser:GZulu\nUser:Gabriel Lane\nUser:Gabrote42\nUser:Gadaha\nUser:GafferF1F\nUser:GaidinBDJ\nUser:GaidinBDJ/CCH\nUser:Gaius0\nUser:GaleTheWhale\nUser:GamerX13\nUser:Gametunes\nUser:GamezombieCZ\nUser:Gammamudo\nUser:Gandalfnog\nUser:GarGwill\nUser:Gark2001\nUser:Garlenife\nUser:Garlenife/Conspiracy Theory\nUser:GaryxGaming\nUser:Gattaca67\nUser:Gaurdianaq\nUser:Ged UK\nUser:Geley\nUser:GeneralBrae\nUser:General 1\nUser:Geriadd\nUser:Gert Nielsen\nUser:Giggy010\nUser:Ginrikuzuma\nUser:Gitman\nUser:GitouttahereStalker\nUser:Gjallarhorn the IceWing\nUser:Gle353\nUser:Glewtek\nUser:Gmurante\nUser:Gobbibomb\nUser:Gobshiite\nUser:Godlyhalo\nUser:Gods of Odds\nUser:Gofast1993\nUser:GoinXwellElite\nUser:Gokuofuin\nUser:GoldenBunip\nUser:Goldsy\nUser:GombariNoah\nUser:Googlefluff\nUser:Goose4291\nUser:Gorfic\nUser:GramNam\nUser:Grandtheftautoma\nUser:GreenReaper\nUser:Greenrabbidrabbit\nUser:Greentigerdragon\nUser:Gregorthebigmac\nUser:Grendona\nUser:GreyJackal\nUser:Grif2142\nUser:Grimblob\nUser:Grimmtooth\nUser:Grinbringer\nUser:Grisbane\nUser:GrnTigr\nUser:Groffel\nUser:Groyolo\nUser:Gruff46\nUser:Gruffley\nUser:Gryper\nUser:Gryphon\nUser:Guardian1128\nUser:GuardianSong\nUser:Guerreiroanfibio\nUser:Guillaume Drolet\nUser:GunmadMadman\nUser:Gunny1\nUser:GusHaines\nUser:Guvenor\nUser:Guyver137\nUser:Gökay Atakan\nUser:H.hasenack\nUser:H0079jnicle0\nUser:H3g3m0n\nUser:HCIJess\nUser:HShot\nUser:HTarchinski\nUser:HX Alpha\nUser:Hadrian Augustus Duval\nUser:Hairy Dude\nUser:Hairyross\nUser:Hal foxharken\nUser:Halfbax328\nUser:Halvor-olsen\nUser:Hammersmith13\nUser:HammyTV\nUser:HamnavoePer\nUser:Hantif\nUser:Haolih\nUser:Harbinger73\nUser:Harbinger91\nUser:Hardmoor\nUser:HarryHenryGebel\nUser:Hatsunehoshi\nUser:Hawki\nUser:Hazmat616\nUser:HazzmangoVEVO\nUser:Heavy Johnson\nUser:Heavy runner\nUser:Heckatoo\nUser:HeckobA\nUser:Heckuvahydra\nUser:Heizena\nUser:Hekkaryk\nUser:Hella Evan\nUser:Hellfire85\nUser:Hellovart\nUser:Hellscout666\nUser:Hemophile\nUser:Henfether\nUser:Henhen2\nUser:Heranion\nUser:Herdox\nUser:Herman2000\nUser:Herzbube\nUser:Hexcaliber\nUser:Hidralisk\nUser:Himpundulu\nUser:Himurajubei\nUser:Hitwenty\nUser:Hoddd9000\nUser:Hodxer\nUser:Holl0918\nUser:Holland Novak\nUser:HolovaR\nUser:Hoodwynk\nUser:HoppingGrass\nUser:Hoppizilla\nUser:Horakhty07\nUser:HoranIsBae\nUser:Hordwon\nUser:Howlingwolf1011\nUser:Howmanymexicans\nUser:Howmanymexicans/Starship Enterprises Corporation\nUser:Hubert Eliphas\nUser:Hubsyn\nUser:Huin\nUser:Hukinatorlp\nUser:Humani generis\nUser:Hunter12396\nUser:Hunter24123\nUser:Hyena92\nUser:Hygh Tek\nUser:Hylky\nUser:Hyperfiree\nUser:IAmThePilot\nUser:IGRiM R3AP3R\nUser:IMaSsMaYhEmI\nUser:IPeer\nUser:I Sith\nUser:I make userpages\nUser:Iajret\nUser:IamSKYWOLF\nUser:Iamwarhead\nUser:IanBrettCooper\nUser:Ian Gragos\nUser:IceDroid06\nUser:IceboundMetal\nUser:Icier\nUser:IckieStickieMick\nUser:Icpmcp\nUser:Idonolis\nUser:Ikiworm\nUser:Il Guasta\nUser:Ilikepizza1275\nUser:ImSoBored246\nUser:Imm3rsion\nUser:ImmortalGhost\nUser:Imregabi61\nUser:Inanis Itineris\nUser:Inccoming\nUser:Incrognito\nUser:InfamousMyzt\nUser:Infinito77\nUser:Inkmmo\nUser:Innokentiytheparrot\nUser:Inoi Troriak\nUser:Inojakal\nUser:Insdejob\nUser:Intelfx\nUser:Interstitial\nUser:Invisible Robot Fish 2.0\nUser:Ion070\nUser:IrCelt\nUser:Iridium Nova\nUser:Irisa Nyira\nUser:Isaac Heinleinclarke\nUser:Ishmat\nUser:IsilwenStardust\nUser:Istrul\nUser:Itchü\nUser:ItzNikkitty\nUser:IvanRuzhanovskiy99\nUser:Iznato\nUser:J0nTK\nUser:JAFFO70\nUser:JGCaymon\nUser:JGagada\nUser:JP69713Bson\nUser:JQuery34\nUser:JWSmythe\nUser:Jabossu\nUser:Jace Hawks\nUser:Jack0088\nUser:JackSamMarkTim\nUser:Jack Shaftoe\nUser:JackassJames\nUser:Jackjarrett\nUser:Jacklul\nUser:Jackofallgods\nUser:Jaess\nUser:Jaiotu\nUser:JakeGill\nUser:Jakubuz\nUser:Jamania\nUser:JamesF0790\nUser:James Razor\nUser:JamieInRed\nUser:Jamminok\nUser:JansterLE\nUser:JaroslavPe\nUser:JaskorWF\nUser:JaxRock\nUser:Jay-Dee-76\nUser:JayStopMotionAndMore\nUser:JayZedKay\nUser:Jaybird3326\nUser:JayceFox\nUser:Jayden42\nUser:Jayeffaar\nUser:JazHaz\nUser:Jazar252\nUser:Jcberry\nUser:Jedesis\nUser:Jeffealex\nUser:Jefzwang-fduser\nUser:Jeoffman\nUser:Jetdude\nUser:Jetfoxx\nUser:Jhvanriper\nUser:Jibsman\nUser:Jijonbreaker1\nUser:Jim Stjerne\nUser:Jimbo Wales\nUser:Jimmy396\nUser:Jimmy Leeroy\nUser:Jitsuke The Cat\nUser:Jj003333\nUser:Jlakshan\nUser:Jntq98\nUser:Johaunna\nUser:JohnNL1982\nUser:JohnStabler\nUser:John Guevara\nUser:Johnliem\nUser:Johns1307\nUser:Johnsuttle2\nUser:Jokonnoh\nUser:JonJennings\nUser:JoseffZerafa\nUser:Joshua S019\nUser:Joyce143katsuma\nUser:JoyeuseGlorieuse\nUser:Jpcortesp\nUser:Jr Mime\nUser:Jriwanek\nUser:Jriwanek/common.css\nUser:Jriwanek/common.js\nUser:Jriwanek/oasis.css\nUser:Jriwanek/oasis.js\nUser:Jrp777\nUser:Jstnbcn\nUser:Jtrevillion\nUser:Juan.farias.88344\nUser:Judemagog\nUser:Julian Korolev\nUser:Junekoj\nUser:Juper0\nUser:Justified90\nUser:Jvideo121\nUser:Jwparker1\nUser:K0skid\nUser:KEEREN\nUser:KKona Elite\nUser:KUBE.exe\nUser:KYLEHARPER1500\nUser:KZ.FREW\nUser:Kaa-ching\nUser:Kablke\nUser:Kabraloth\nUser:Kaeinar\nUser:Kai-dan Novarek\nUser:Kaidan Ysles\nUser:KaiserJagerI\nUser:KaiserKolovos\nUser:Kaleb Brooks\nUser:Kalenchoe\nUser:Kalko SK\nUser:Kaloonzu\nUser:Kanthes\nUser:Kantraah\nUser:Kapitein Dree\nUser:Karate kid19\nUser:Karrdio\nUser:Karth32\nUser:KassidyRawr\nUser:Kaulnagunae\nUser:Kayahr\nUser:KaylieStarspear\nUser:Kaythan\nUser:Kaytrox\nUser:Keanukeen\nUser:Kecdoose\nUser:Keegandalf\nUser:Keelhauler98\nUser:Keeval\nUser:Keline Fraser\nUser:Keotik\nUser:Kepler68\nUser:Kerbonaut\nUser:Kerenski667\nUser:Kersthaas\nUser:Kettless\nUser:Kevalent\nUser:KevinMcScrooge\nUser:Kevinmook\nUser:Kezika\nUser:Khamar\nUser:KickRAzz\nUser:Kida155\nUser:Kida155/Test\nUser:Kida155/Test.css\nUser:Kida155/common.js\nUser:Kida155/wikia.css\nUser:Kidakins\nUser:Kidakins/Test\nUser:Kidakins/Test.css\nUser:Kidakins/common.js\nUser:Kidakins/wikia.css\nUser:Kiestaking\nUser:Kikbow\nUser:Killja Witta\nUser:Kilowasps\nUser:KingKeepo\nUser:KingRider\nUser:Kingdavis45\nUser:Kingpin12345\nUser:Kingsmasher678\nUser:Kipkuligan\nUser:Kira0rg\nUser:Kirk68\nUser:Kirkburn\nUser:Kirky007\nUser:Kiryu-DSeraph\nUser:Kitballard64\nUser:Kittenpox\nUser:Kiyos\nUser:Kman314II\nUser:Knabber\nUser:Knakveey\nUser:Knights4jesus\nUser:KnotMix\nUser:KockaAdmiralac\nUser:KockaAdmiralac/Sandbox\nUser:KockaBot\nUser:Komotz\nUser:Kookas\nUser:KopiG\nUser:KordianK\nUser:KormaKing\nUser:Kossilar\nUser:Kranitoko\nUser:Krooolll\nUser:Krystan\nUser:KrytoThenseld\nUser:KubeKing\nUser:Kudach\nUser:Kuhgene\nUser:Kumorifox\nUser:Kuzumby\nUser:Kvasirr\nUser:Kwalish\nUser:Kyouko Bot\nUser:Kyouko Bot/Badwords\nUser:Kyouko Bot/Logs/Censored comments\nUser:Kyrieviviana58\nUser:Kyryptos\nUser:LBoy447\nUser:LNEWLFE\nUser:LSXpoweredcouch\nUser:LT3ShadowBolt\nUser:LaShreader\nUser:Laceynarcissus\nUser:LadyDarkWolf\nUser:Lady Lostris\nUser:Lamartian\nUser:LambChop82\nUser:Landomatic\nUser:Laprasfox\nUser:Larkfeast\nUser:Laserwolf7\nUser:Lasky's Diary\nUser:Laundry Machine\nUser:LaurenDG\nUser:Lauren Darkmore\nUser:LaurenceR\nUser:Lausianne\nUser:LawaBoy\nUser:Lazahman\nUser:Lazarus-Gamer\nUser:Lcf80\nUser:LeKola2\nUser:LeMort121\nUser:Leavism\nUser:LeerySquid13\nUser:Leftaf\nUser:LegendaryAce 73\nUser:Legit spartan\nUser:Lelouch Di Britannia\nUser:Lennysmeme\nUser:Leo McCoy\nUser:Leonick\nUser:Letho2469\nUser:Levian Grea\nUser:Lewisse\nUser:Light Fingers\nUser:Lilstinger\nUser:Lily Peet\nUser:Liminghin\nUser:Limoncello Lizard\nUser:Linkle10112\nUser:LionWalker\nUser:Liperium\nUser:LiveseyMD\nUser:Livesiren\nUser:Lmxar\nUser:Lofellos\nUser:LogicMage\nUser:LogicMage3\nUser:Logyboy77\nUser:Loke Khan Torgou of Rhun\nUser:Lokorazor\nUser:Loliboli8\nUser:Lolife1\nUser:Lone Hunter\nUser:Lonestar166\nUser:LordAzuren\nUser:Lord Nerdicus\nUser:Lord Setesh\nUser:LostGamer76\nUser:Lou209\nUser:Lou Sensei\nUser:Louie2\nUser:Loumil4\nUser:LucasHile\nUser:Lucasdigital\nUser:Lucid Asimov\nUser:Ludicrusnb\nUser:Ludwegg\nUser:Ludzikz\nUser:Lufia22\nUser:Luio950\nUser:Lumiria Duval\nUser:Lurkertalen\nUser:Lymark\nUser:Lynk,yourlord\nUser:Lynk1973\nUser:MADmanOne\nUser:MBISOK\nUser:MChrome\nUser:MERLINDIX\nUser:MGDelux\nUser:MHE111\nUser:MJR1133\nUser:MONTItheRed\nUser:MRNasher\nUser:MR Allianz Demonceau\nUser:MSSQ\nUser:MaYdAyJ\nUser:MaZyGer\nUser:Maarduuk\nUser:Macros Black\nUser:MadMalkie\nUser:Maddavo\nUser:Maeglin73\nUser:MafooUK\nUser:MagicPuncher\nUser:Magictrip\nUser:Magnificent Beard\nUser:Mahmuttucar\nUser:Maintenance script\nUser:Majinvash\nUser:Majinvash/The Code Pirate Group\nUser:Majkl578\nUser:Makinote\nUser:Malakkai69\nUser:Malix82\nUser:Mandrac\nUser:Mannie Davis\nUser:Manwolf12\nUser:Maplesquid\nUser:Marblebarbles\nUser:MarcusBritish\nUser:Marcus gord\nUser:Marcus gord/My Sandbox\nUser:Marcusleitee\nUser:Marenthyu\nUser:Maria Armstrong\nUser:MarikZero\nUser:Mariusz695\nUser:Markasoftware\nUser:MarksMan12345\nUser:MaroManiac\nUser:Marquezz\nUser:Mars Yurip\nUser:Martinjgde\nUser:Martinjh99\nUser:Martinjh999\nUser:Match Attax19\nUser:Matt20264\nUser:Matty Gamer\nUser:MaxWolff\nUser:Maxhead79\nUser:MaximVonValentine\nUser:Maxipack13\nUser:Maxodonis\nUser:Maxwell Hauser\nUser:MayW-DigiMay\nUser:Maztek\nUser:McClunkey\nUser:Mcdimm\nUser:Mebebarney\nUser:MechaRanger\nUser:MechanicPluto24\nUser:MeddlesomeDic\nUser:MediaWiki default\nUser:MediocrePigeon\nUser:Meg81\nUser:MegaBZerK\nUser:Megawizard\nUser:MellokUA\nUser:Memory.of.a.dream\nUser:Mendelt\nUser:Menroth\nUser:MeowMeowNyan\nUser:MercurianVI\nUser:Messixieuquay\nUser:Metabo\nUser:Metael\nUser:Metalperslfx\nUser:Mg010a3406\nUser:Mgiuffrida\nUser:Mgramm\nUser:MiasmaticMouse\nUser:Michael-B347\nUser:Michaelangelo007\nUser:Michal1717\nUser:MickalyaSchmidt\nUser:Micromagos\nUser:Midnight1138\nUser:MidnightWyvern\nUser:Mihawk Moha\nUser:Mikarara\nUser:Miki99999\nUser:Mikuana\nUser:Miles1317\nUser:Minato826\nUser:MinecrackTyler\nUser:MiniPax\nUser:MinnesotaLotion\nUser:Mira Laime\nUser:Mischievousflea\nUser:MisterFacepalm\nUser:MisterFy\nUser:Mitchell YT\nUser:Mitchz95\nUser:Mitleidspender\nUser:Mknote\nUser:Mob1leN1nja\nUser:Mobibu\nUser:ModnMaster\nUser:MoebiusLive\nUser:MographMark\nUser:Moleculor\nUser:Mondrak\nUser:Monkeytommo\nUser:Monoman567\nUser:Montcore\nUser:Moonbucket\nUser:MoonmanX22\nUser:Mordredeon\nUser:Morgo the monkeygod\nUser:Morwo01\nUser:MountainMan2786\nUser:MovGP0\nUser:Mowge\nUser:MozzyViorla\nUser:Mr. Kobayashi\nUser:MrBl4eP4nda\nUser:MrClin\nUser:MrFaert\nUser:MrFoxyCracker\nUser:MrJiggyDancer\nUser:MrOz59\nUser:MrWackyGuy\nUser:Mr Edison Trent\nUser:Mr Modem\nUser:Mr Sidebyrnes\nUser:Mr Taz\nUser:Mrdinosaur1\nUser:Mrfruitcups\nUser:Mrs!lk\nUser:Mrsilk13642\nUser:Mrsilk13642/Adle's Armada\nUser:Mrtouchngo\nUser:Muerthogari\nUser:Muhawi\nUser:Mujaki\nUser:Mumuv\nUser:Murden/oasis.css\nUser:Murphy2020\nUser:Murrobby\nUser:Music Luke\nUser:Musketeer.elite\nUser:Mwerle\nUser:MxCherryBlue\nUser:Mylife98\nUser:MysticalArchAngel\nUser:Mythic Centaur\nUser:NGCT\nUser:NORKIE3221\nUser:NULUSIOS\nUser:NV-6155\nUser:N skid11\nUser:Nagydeak\nUser:Namelessclone01\nUser:Namewwww\nUser:Namiellis68\nUser:Nanite2000\nUser:Napther\nUser:Nashaan\nUser:Nathanmnm\nUser:NatsumeAshikaga\nUser:Natsuumi\nUser:Navigator80ITA\nUser:Nazder\nUser:Neizir\nUser:Neker07\nUser:Nekonax\nUser:Nelkerak\nUser:NeoGeoSin\nUser:Neofactor\nUser:Neojack\nUser:Neowave\nUser:NeoxRave\nUser:Netan MalDoran\nUser:Nethaufer\nUser:Netheniel\nUser:Netston\nUser:NevanNedall\nUser:Neveroutside\nUser:New Model 15\nUser:Newo15\nUser:Nextmhgdanger\nUser:Niapet\nUser:Niatov\nUser:Nibiki\nUser:NickerNanners\nUser:Nicomicho\nUser:Nicou12313\nUser:Night Wing Zero\nUser:Nightcat666\nUser:Nightlyowlbuild\nUser:Nikolai Albinus\nUser:Nikolai Albinus/Silent Fury\nUser:Nikolai Albinus/Talon\nUser:Nikolai Albinus/The Eagle Owner's Manual\nUser:Nireze\nUser:Nishi1337\nUser:NiteLynr\nUser:Nithingale\nUser:Nixxter 208\nUser:NoFoolLikeOne\nUser:NoMeansNoED\nUser:No Regret\nUser:Noahtheyeeter\nUser:NodusCursorius\nUser:Noekemi\nUser:Nolfin\nUser:Nominix\nUser:Nonchip\nUser:Nondidjos\nUser:Nop277\nUser:Nordavind\nUser:Noreplyz\nUser:Norlin\nUser:Northpin\nUser:Noruzenchi86\nUser:NotThatMadCat\nUser:Novalkar\nUser:Nox and Sox\nUser:Nralbers\nUser:Nruedig\nUser:Nsara\nUser:NuclearMissile7\nUser:Nujalik\nUser:Nukeajs\nUser:Nukeguard\nUser:Nuljones\nUser:Numerlor\nUser:Nutsynator\nUser:Nuvey\nUser:Nvmb3rth30ry\nUser:Nyrany\nUser:Nyrexis\nUser:Nytrox1\nUser:Nøni\nUser:OGR Nova\nUser:OOZ662\nUser:Oathmaster1st\nUser:Obij3ff\nUser:Ocramavaf\nUser:Oddaaron00\nUser:Odysseus3301\nUser:Off the Rails\nUser:OldMadDawg\nUser:Oli.G123\nUser:Olivetho\nUser:Olivia Vespera\nUser:Olivia Vespera/Order of Enblackenment\nUser:Olivia Vespera/Template:test\nUser:Omber\nUser:Omightyone\nUser:Onevorah-fduser\nUser:OnyxVovin\nUser:Oogaboogston\nUser:Orchestrator\nUser:OrderOfPhobos\nUser:Orgoon\nUser:Orin Snider\nUser:OrionKaelin\nUser:OrionandAries06\nUser:Orvidius-fduser\nUser:Oss133\nUser:Ostoff\nUser:OtakuMage\nUser:Otis B.\nUser:Ottone82\nUser:Ouen\nUser:Outsider7724\nUser:Overcon\nUser:Ozrix\nUser:PSR1974\nUser:Pa3s\nUser:Palminyourface\nUser:Panzertard\nUser:Papercrane1001\nUser:Parkerb1454\nUser:Parpyduck\nUser:Pascalcph-fduser\nUser:Pasmans23\nUser:PasteteDoeniel\nUser:Patrone2012\nUser:Paul Morrison\nUser:Pavel Seagull\nUser:PavoCristatus701\nUser:Pawprintjj\nUser:Peeper Yeeter\nUser:Pegzy\nUser:Pengpeng101\nUser:Penthux\nUser:Pentupthere\nUser:Perfect Vyctory\nUser:Pervertedfox1\nUser:PeterisKrisjanis\nUser:Peteyboy1981\nUser:Peteypolo\nUser:Petomatick\nUser:Petrosa\nUser:Phantagor\nUser:Pharku\nUser:Pharuan Undearth\nUser:PhasmaFelis1\nUser:Phatpanz\nUser:Phazon Xenomorph\nUser:Phendranaguardian\nUser:Phenix19\nUser:Phenom D\nUser:PhiZeroth\nUser:PhilHibbs\nUser:Phil O Dendron\nUser:Philo Wintercoat\nUser:Phineas\nUser:Phmalu\nUser:Phoebiousz\nUser:Phoenix316\nUser:Phoenixfire2001\nUser:Phreedom\nUser:PianoWizzy\nUser:Pierschip\nUser:PijkaCZ\nUser:Pilot 117\nUser:Pimusim\nUser:Pindab0ter-fduser\nUser:Pinkishu\nUser:Pinkishu/Fiction\nUser:Pinkishu/shipInfo\nUser:Pio387\nUser:PirateKing42\nUser:Pirits\nUser:Pirow\nUser:Pitricko\nUser:Pitulek\nUser:Pixel Bandits\nUser:Pixel Bandits/Pixel Bandits Security Force\nUser:Pixelgamer7\nUser:Pjaj\nUser:PlanetVyctory\nUser:PlanetWaves\nUser:Planitis\nUser:Plasma1119\nUser:Plaush\nUser:Player1isready\nUser:Player863\nUser:Poa28451\nUser:Pobert69\nUser:Poetika\nUser:Pollycough\nUser:Poplasenko\nUser:Porkyworky\nUser:Portagame\nUser:Poshblobfish\nUser:Positronic Tomato\nUser:PotatoSponge\nUser:Potkola\nUser:Poubelle\nUser:Poulpe38000\nUser:Poulpe38000/Test\nUser:Poulpe38000/TestTransclusion\nUser:Praetorian R0mA\nUser:Prattusa\nUser:Prescia\nUser:Primarch Victus\nUser:Prime Heretic\nUser:Pro ahuramazda\nUser:Proasek\nUser:ProjectPaatt\nUser:PrometheusDarko\nUser:Prophetsbane\nUser:Protozorq\nUser:Pseudonomyn\nUser:Psieonic\nUser:Psilocyb\nUser:Psy0n\nUser:PsychoFox81\nUser:PsychoPhobic\nUser:Ptilly\nUser:Ptmyers01\nUser:PublicServiceBroadcasting\nUser:Pukaloree\nUser:Pumzika\nUser:Punchymonkey009\nUser:Purplenum\nUser:Pxtseryu\nUser:Pyrix\nUser:Qds1401744017\nUser:Qeveren\nUser:Qhil\nUser:Quackarov\nUser:Quarhedron\nUser:Quasikrys\nUser:Quasur\nUser:Quis345\nUser:Qwertyforever\nUser:R.sathees\nUser:R2d266m\nUser:R6Nighthawk\nUser:RAXXE\nUser:REDWIN ONE\nUser:RRabbit42\nUser:RRetromant\nUser:RUSHER0600\nUser:RUSHv4\nUser:Rabbit Fear\nUser:Raf von Thorn\nUser:Ragn4rok234\nUser:RagnarSvartmon\nUser:RainA\nUser:Rainkorn\nUser:Rainoa\nUser:Rajkalex\nUser:Rakeesh\nUser:Rakmarok\nUser:Ramiwhite\nUser:Rando First Blood Part Two\nUser:RandomStilskin\nUser:Randomenemy321\nUser:RandomlyGenerated69\nUser:RanitoOfficeStarFClass\nUser:Rapidfire88\nUser:Rappy\nUser:Rappy 4187\nUser:Rappyfx\nUser:Ratcom\nUser:Ratking15\nUser:RawrZillaFace\nUser:Raylan13\nUser:Raylan13/Sandbox\nUser:Raynerl\nUser:Raynor1111\nUser:Rayyyy91\nUser:Razgris202\nUser:RazielAlphadios\nUser:Razr Wolfgang\nUser:Rburns625\nUser:ReCaptcherer\nUser:ReXxX1984\nUser:RealFurion\nUser:Real state\nUser:Realsense\nUser:Reapers Gale\nUser:Rebel Outlaws\nUser:Rebel The Husky\nUser:Red469\nUser:RedBomb1\nUser:RedRocky54\nUser:RedSpeeds17\nUser:RedWho\nUser:RedWolfProject\nUser:Redoneter593\nUser:Redzer88\nUser:Reikiri\nUser:Rejectedpotato\nUser:Rellikplug\nUser:RelynSerano\nUser:Ren Kurogane\nUser:Renevato\nUser:ReplicatorED\nUser:Reticulum\nUser:Retribution1337\nUser:Retrogav\nUser:RevBladeZ\nUser:Revanche\nUser:Rexosaur7\nUser:Rhadagast\nUser:Rhaversen\nUser:RheaAyase\nUser:Ricardo49959F\nUser:RichardAHallett\nUser:RichardAHallett/Hutton Orbital Truckers\nUser:RichardAHallett/Timeline test\nUser:Richardtknightwdf\nUser:Rik079\nUser:Rildin\nUser:RilicTheWolf\nUser:Ripkord\nUser:Ripred Ganin\nUser:Ripto22475\nUser:Riptoze\nUser:Rizal72\nUser:Rj16066\nUser:RjTurtleSquid\nUser:Rkcampelo\nUser:Rmonsen\nUser:Roadrunner1971A\nUser:Rob492\nUser:RobCraft\nUser:Robborboy\nUser:Robert Marc Knoth\nUser:RoboYote\nUser:Rochopsian\nUser:Rocktester\nUser:Rockycodeman\nUser:Roddy1990\nUser:Roelie73\nUser:Rogerawright\nUser:Rohaq\nUser:RolfRolf1337\nUser:Ronsoak\nUser:Ronzik\nUser:Roober the Stroober\nUser:Rophanger\nUser:Roschnicron\nUser:Rossilaz\nUser:Roughpup\nUser:Roybe\nUser:Rozmar Hvalross\nUser:Rreg29\nUser:Rrrman\nUser:Rubinelle1\nUser:Ruby60475\nUser:Ruchalus\nUser:Ruibarian\nUser:Rukja\nUser:RulerOfEverything\nUser:RumekFuria\nUser:RustInPieces\nUser:Rutzefu\nUser:Rxsmok-fduser\nUser:Rykaar\nUser:S.Kracht\nUser:S3lvatico\nUser:SANCOON\nUser:SG935\nUser:SHIELDAgent154\nUser:SPOOKS80\nUser:SVL KrizZ\nUser:SWCC\nUser:Sabotrax\nUser:Sachiel3\nUser:SadisticSavior\nUser:Sagdatmar\nUser:Sajano90\nUser:Sakrem1\nUser:SaliVader\nUser:Salmonllama\nUser:Sam445\nUser:Sam Vanguard\nUser:SamboNZ\nUser:Sams52\nUser:Sanage14*\nUser:Sandritter\nUser:Sanguinius Angelus\nUser:SanguisDiabolus\nUser:Sangyn\nUser:Sannemen\nUser:Sannse\nUser:Santaranger\nUser:Santosodom1\nUser:SanyaJuutilainen\nUser:Sarah Manley\nUser:Sasquatch the great\nUser:Sathayorn\nUser:Saucy Wiggles\nUser:Saxfire2\nUser:Scarab Monkey\nUser:Scatoogle\nUser:Scctldq123\nUser:Scheidt\nUser:Schnappischnap\nUser:Schrauger-fduser\nUser:Scifiguru\nUser:ScorpidBlackDragon\nUser:Scotthesilent\nUser:Scottyart\nUser:Scoutpie\nUser:ScrabbleVoice\nUser:Scrappykidz\nUser:Scuba.sean\nUser:Seamus Donohue\nUser:SebStoodley\nUser:SebStoodley/Intersys\nUser:Seethingword\nUser:Seforian\nUser:Seizure1990\nUser:Sekotser\nUser:Sekuiya\nUser:Selfburner\nUser:Semanticdrifter\nUser:Senturion1186\nUser:SepAvatar14\nUser:Seraphimneeded\nUser:Serbanstein\nUser:Serikst\nUser:Seriousrikk\nUser:SethInABlender\nUser:Sethiroth66\nUser:Setrah\nUser:Seud\nUser:Sev Mara\nUser:Sevatar40k\nUser:SeventhVixen\nUser:Several\nUser:SexyTigerRawr\nUser:Sfinxul\nUser:Sgtdeous\nUser:Shabooka\nUser:Shader UA\nUser:Shadevari\nUser:Shadow11177\nUser:Shadowgar\nUser:Shadowgun1103\nUser:Shadowhuntsman7\nUser:Shadowjonathan\nUser:Shads76\nUser:Shaheena Evelga\nUser:Shane0ooo\nUser:Shane Graytail\nUser:Shann112\nUser:Shaphron\nUser:Sharlikran\nUser:Sharpshifter\nUser:ShatteredOrbit\nUser:Shellafee\nUser:SherlockHolmes1122\nUser:Shihao21\nUser:Shikaka00\nUser:Shimacu\nUser:Shinkaze33\nUser:ShiroHagen\nUser:Shiroi Hane\nUser:Shogunnate\nUser:Shokanshi\nUser:Shukari\nUser:Shwinky49\nUser:Sianmink\nUser:Siegard\nUser:Signal5\nUser:Signal Five\nUser:SilentGarud\nUser:Silenthebi\nUser:Silentpiranha\nUser:Silverfan0\nUser:Silyus\nUser:Simesp\nUser:SingularisFox\nUser:Singularity iOS\nUser:Sinixster11b\nUser:Sinnaj63\nUser:Sinnersprayer\nUser:Sinnersprayer89\nUser:Sintering Steel\nUser:Sinxar\nUser:Sir.FireMouse\nUser:SirAmiga\nUser:SirBumperJumperOfAvalon\nUser:SirKaldar\nUser:SirSpooks\nUser:Sir Porky McBacon\nUser:Sircompo\nUser:Sitb\nUser:Skibacon\nUser:Skitthecrit\nUser:Skogwolfen\nUser:Skwurr\nUser:SkyHunnter\nUser:SkyLock8973\nUser:Skyblazter\nUser:Slark2\nUser:Sleek34\nUser:Slidey Lad\nUser:SlimTheDiabolical\nUser:Slimydoom\nUser:Slimysomething\nUser:Slinky317\nUser:Slothman320\nUser:Slowpoke67\nUser:Slugsie\nUser:Smacker65\nUser:Smaudet\nUser:Smdepot\nUser:Smintili\nUser:Smooticus\nUser:Sn0w181\nUser:Snackington\nUser:SnookyShark\nUser:Snuble\nUser:Snv\nUser:Soa Crow\nUser:Soifua\nUser:Solidusjungle\nUser:Solsticide\nUser:Someguy2020503\nUser:Someone stole my name: Kaisler\nUser:Son Of Kyuss\nUser:Sonic306\nUser:SonyaUliana\nUser:Soul1994\nUser:Soulflare3\nUser:SoulofValorium\nUser:Soulofthereaver\nUser:SourcePony\nUser:Sourison\nUser:SovietWind\nUser:SpaceBadger117\nUser:SpaceMerlin\nUser:SpaceOctopus\nUser:SpaceWolf04\nUser:Space Rhino\nUser:SpadedTail\nUser:SparroHawc\nUser:Spartan0536\nUser:Spartan5811\nUser:Spatzz\nUser:SpazeMan\nUser:SpecialOperationsTrooper\nUser:Spectralsalmon\nUser:Spidermindgames\nUser:SpilcapesQ\nUser:Spinningspark\nUser:Spliffster74\nUser:Spoilers1\nUser:Springteufel\nUser:SpyTec\nUser:SpyTec/Template:Infoboxbuilder Split\nUser:SpyTec/common.js\nUser:SpyTec/common.js/AjaxDiff/code.css\nUser:SpyTec/common.js/AjaxDiff/code.js\nUser:SpyTec/test\nUser:Spyrojackie\nUser:SqueakySquak\nUser:SquishousKnid\nUser:Srjek\nUser:Sryn\nUser:SsManae\nUser:Ssarusss\nUser:Sslay\nUser:Ssnake42069\nUser:StClair\nUser:StarFClass14\nUser:StarFClass32\nUser:StarLightPL\nUser:Starbolt-81\nUser:StarmanW\nUser:Startanew\nUser:StartledOctopus\nUser:Statelymc\nUser:Stations\nUser:Steffan456\nUser:Steffshow\nUser:SteveStevenson\nUser:Stevolab\nUser:Stiggy1968\nUser:StingerB29\nUser:StingerGhost1\nUser:Stonewall89\nUser:Stormjoy\nUser:Stormzez\nUser:Strelokov\nUser:Stren\nUser:Strider503\nUser:Strontium10538\nUser:StuartGT\nUser:StuntPanda\nUser:StupidDuckGames\nUser:Suisanahta\nUser:Sulandir\nUser:Sumeraxe\nUser:Sumerlove\nUser:SunwolfNC\nUser:SuperScaryGuy23\nUser:Super Sugar\nUser:Superb0y04\nUser:Supercruise\nUser:Superdave27\nUser:Superguy163\nUser:Supermertgul\nUser:Supermike2\nUser:SuperocoiLoicadoBRBRBR\nUser:Superstorm666\nUser:Superstringcheese\nUser:Superwatery\nUser:Surafbrov\nUser:Suretterus\nUser:Surkrem\nUser:Svzurich\nUser:SweRaider1993\nUser:Sweeep\nUser:Swi7ch\nUser:SwiftoHS\nUser:SwissTHX11384EB\nUser:SwissTony45\nUser:Sylwirzhae\nUser:Symmetry\nUser:Synthya Wylder\nUser:T. Konstantine\nUser:T3hbernardo\nUser:T4UMick\nUser:TANG0611\nUser:TCEd\nUser:THEKING0523\nUser:THE BERK\nUser:THEgerbilOFdoom\nUser:TK-999\nUser:TN0717\nUser:TVs Revan\nUser:Talion Camisade\nUser:Talmahera\nUser:Talonclaw1\nUser:TanyaT1\nUser:Tapirninja\nUser:Tar-Elendil\nUser:Tartley\nUser:Tathiel\nUser:Taurolyon\nUser:TayDex\nUser:Tazuren\nUser:Tboy2210\nUser:Tcali14\nUser:Tdh10\nUser:Team CBA\nUser:Tearakudo\nUser:Teatime42\nUser:Tech21101\nUser:TechcraftHD\nUser:Ted509\nUser:Teelahendrix\nUser:Teentitansgofan1111\nUser:Teeteon\nUser:Teheboom1\nUser:Tehstachewhacker\nUser:Tek0516\nUser:TekkmanCZ\nUser:Tekwerk\nUser:Temp20\nUser:Temporelus\nUser:Ten pla\nUser:TenhGrey\nUser:TerinaMenken\nUser:TerminalHunter\nUser:TerminalVentures\nUser:Test7357\nUser:Tevue\nUser:ThaSmoothTroopa\nUser:ThatFlyingThing\nUser:Thatguythatfixesthings\nUser:Thatpixguy\nUser:Thcr18\nUser:The14th\nUser:TheBlueRogue\nUser:TheCyanDragon\nUser:TheDeiWolf\nUser:TheFallen018\nUser:TheGamer0101\nUser:TheGoldenPatrik1\nUser:TheIke73\nUser:TheMindOfMadness\nUser:TheOperator288\nUser:ThePenguinFace\nUser:ThePhyx\nUser:TheVarangian\nUser:TheWarNeko\nUser:TheZemalf\nUser:TheZexdex\nUser:The Dyre Wolf\nUser:The Enclave is Bae\nUser:The God Himself\nUser:The Man in a Red Mask\nUser:The Meepman7\nUser:The Mol Man\nUser:The Officer DWM\nUser:The One Toki\nUser:The RedBurn\nUser:The Shadowmaker\nUser:The Zephyrion\nUser:Theduckofdeath\nUser:Thekilon\nUser:Theleungproductions\nUser:Theolaf1\nUser:Therasse\nUser:Therealstubot\nUser:Thernhoghas\nUser:Thetruluhe\nUser:Theu04\nUser:Theunmademan\nUser:Thiccastley\nUser:Thirstybadger\nUser:ThisWasn'tTaken\nUser:Thismightbeiam\nUser:Thisucankeep\nUser:Thomas Bewick\nUser:Thor131\nUser:ThranMaru\nUser:ThreeFive35\nUser:Threyon\nUser:ThrottleFox\nUser:Thrudd\nUser:Thundertwat\nUser:ThunderxBolt101\nUser:Thwomp123\nUser:Timo.viinanen\nUser:Timothy Flint\nUser:Timsk\nUser:Timstro59\nUser:TimtheBigDaddy\nUser:TinyClayMan\nUser:Tinycubegamer45\nUser:TitanPilotUK\nUser:Titanic71\nUser:Titanpaul21\nUser:Tjeufd\nUser:Tmmrtn\nUser:Tnascimento\nUser:ToXinE\nUser:Toastclaimer\nUser:Tobiasvl\nUser:Tobytoolbag\nUser:ToeBlarone\nUser:Togukawa\nUser:TokihikoH11\nUser:Tolimee\nUser:TomDeJRad\nUser:Tomcoates\nUser:Tomparkes1993\nUser:Tomw95\nUser:Tondaczek\nUser:Tonileys\nUser:Tonyem328\nUser:Toomas The Lord Bringer\nUser:Top2323\nUser:TopoSolitario\nUser:Torgnyswe\nUser:Torm1358\nUser:Tosmo\nUser:Totaldeath5500\nUser:Toughpigs\nUser:Tovbeotvbe\nUser:Toxyca\nUser:Tpennanen\nUser:Trairan\nUser:Tramker\nUser:Transmothra\nUser:Trellar\nUser:TrenchCoatCorgi\nUser:Trent1542\nUser:Trepcsuit\nUser:Trico703\nUser:Triniwiki\nUser:TripN KniveZ\nUser:Triple88a\nUser:Tristounet89\nUser:Troyathy\nUser:Trr1ppy\nUser:TrueLuminus\nUser:TrustMe67\nUser:Tsarkz\nUser:Tuinkabouter\nUser:Tuniorez\nUser:Turkwinif\nUser:Turnspit\nUser:Turtlbrdr\nUser:Tutu1112\nUser:Tvis\nUser:TwentySevenFive\nUser:Twentypence\nUser:Twincast\nUser:Twinmerlin\nUser:Tws\nUser:TyA\nUser:Typhron\nUser:Tyree42\nUser:TyroDreamscape\nUser:Tyrranis\nUser:UDaRealMVP01\nUser:Ubenn Hadd\nUser:UberVoyager-fduser\nUser:Ujinobu\nUser:Ukulele j\nUser:Ultronv15\nUser:Umsik\nUser:Unau\nUser:UndeadSandvich\nUser:Undercoverzach\nUser:Unforgivable\nUser:Univero\nUser:Univero/Distant Worlds\nUser:Univero/Distant Worlds Expedition\nUser:Unknowninja\nUser:UnstoppableDrew\nUser:Urane\nUser:Urb0123\nUser:Uriei\nUser:Ursuul\nUser:Usernametook\nUser:Userpage Bot\nUser:Usikava\nUser:VADER KHAN\nUser:Vacuum Cleaner\nUser:Vagabond2007\nUser:Valethar\nUser:Valiran\nUser:Valyn Arvis\nUser:Van Der Dyke\nUser:VandalAxis\nUser:Varigor\nUser:Variun\nUser:Vato76\nUser:Vealdin\nUser:VegBerg\nUser:VegaDark\nUser:VeggyZ\nUser:Velaxtor\nUser:VenZell\nUser:Venom49637\nUser:VenomVdub\nUser:Veranmis\nUser:Verbatum14\nUser:Vesto Slipher\nUser:Vetryxx\nUser:VexaloT\nUser:VideoGamePhenom\nUser:Vikhrs\nUser:Vikindor\nUser:Vikingcat75\nUser:Vincent396\nUser:VinnieboJ\nUser:Viperial Leader\nUser:VitalConflict\nUser:Vitor.leite.1777\nUser:VivaDaylight3\nUser:Vivaporius\nUser:Vivid Velleity\nUser:Vladeros\nUser:Vojjta96\nUser:Vombatiform\nUser:Vondrekkenov\nUser:Voriann\nUser:VoxelGG\nUser:Vurrath\nUser:Vylanis\nUser:WAZALIZALALI\nUser:WC Yaffle\nUser:Wafflexboy\nUser:Wakadoo\nUser:WalkerFan12\nUser:Wanwan159\nUser:Warchylde73\nUser:Warforged44\nUser:Warhawker\nUser:Waterlubber\nUser:Wazabbi\nUser:WeatherTopToo\nUser:WesULVD\nUser:Weylon\nUser:Wheatley450\nUser:WhiteRunner11\nUser:WhitesnakeSS\nUser:Wickednoreaster\nUser:Wiergan\nUser:Wikia\nUser:WikiaBot\nUser:Wikia Video Library\nUser:Wikimonkey\nUser:Wilbowaggins\nUser:Willard1975\nUser:Williezk\nUser:WingCommanderBob\nUser:Winning444\nUser:WinterFur\nUser:Wiseguy7\nUser:Wishblend\nUser:Withnail7\nUser:WolfGeek101\nUser:Wolfenheimer\nUser:Wonkyria\nUser:Woodventure\nUser:WookieeRoar\nUser:Woorloog\nUser:Worlddestroyer18\nUser:WraithFSC\nUser:Wraith Warrior\nUser:Wrenth\nUser:Wstephenson\nUser:Wulfangel\nUser:Wuzziwu\nUser:XB1-VexaloT\nUser:XCaliber-Forever\nUser:XEoDx\nUser:XEoDx/Engineer Rank\nUser:XMedicatorx\nUser:XMizinx\nUser:XMoneyShadow\nUser:XND4SPDx\nUser:XOpticalGHOSTX\nUser:XXRanceXx\nUser:XX PR3$T0N GR4VEE Xx\nUser:XXxDCMTxXx\nUser:XXxTULIPxXx\nUser:Xaal\nUser:Xanapoo\nUser:Xandalis\nUser:Xandrathii\nUser:XavierBK\nUser:Xavion85\nUser:Xbivoj\nUser:Xean\nUser:Xellos013\nUser:Xenthor\nUser:XeonNRI\nUser:Xerodark\nUser:Xeticus\nUser:Xienn35\nUser:Xijadeku\nUser:XimpleXociety\nUser:Xinbi\nUser:Xiongu\nUser:Xjph\nUser:Xmodule\nUser:Xryak\nUser:Xuxuanqi13\nUser:XxRagin Rickxx\nUser:XxSick DemonxX\nUser:Xzbyt\nUser:Xzenocrimzie\nUser:Y1n4space\nUser:YALE70\nUser:YaBoiJack\nUser:Yamiks\nUser:Yaminogaijin\nUser:Yan March\nUser:YaoManCz\nUser:Yce52\nUser:YeShockTrooper\nUser:Yeetboi03\nUser:Yeetus6810\nUser:Yesimjeremy\nUser:Yeungcc1\nUser:Yianniv\nUser:Ykrop00\nUser:Ymdred16\nUser:Yobrotomo\nUser:Yodebe\nUser:Yoshi265\nUser:YourGentderk\nUser:YueShuYaC\nUser:Yuubari\nUser:Yuusuke Takazaki\nUser:Ywokls\nUser:ZXDetonator\nUser:ZaYFix\nUser:Zach9054\nUser:ZackPanda\nUser:Zadok0\nUser:Zahadrin\nUser:Zalifer\nUser:Zankor\nUser:Zapness\nUser:Zapstone\nUser:ZeZombieChicken\nUser:Zeidokku\nUser:Zekybomb\nUser:Zerakue\nUser:ZeroOne\nUser:Zerog6\nUser:Zeronekox\nUser:Zgrillo2004\nUser:Zhadnost\nUser:Ziraal\nUser:Zloyfedya\nUser:Zlybratblizniak\nUser:Zoogoo40\nUser:Zotic1989\nUser:Zranta\nUser:Zweanslord\nUser:Zyrr\nUser:~aanzx\nUser:Задолбался Подбирать Имя\nUser talk:AndersonDG/Interstellar United/@comment-4555143-20150719170450\nUser talk:Jimbo Wales\nUser talk:Majinvash/The Code Pirate Group/@comment-192.136.173.202-20160413161739\nUser talk:Majinvash/The Code Pirate Group/@comment-192.136.173.202-20160413161739/@comment-86.140.117.80-20160726123301\nUser talk:Wikia\nElite Dangerous Wiki:About\nElite Dangerous Wiki:Administrators\nElite Dangerous Wiki:Assume good faith\nElite Dangerous Wiki:Bots\nElite Dangerous Wiki:Bureaucrats\nElite Dangerous Wiki:Candidates for speedy deletion\nElite Dangerous Wiki:Cheating\nElite Dangerous Wiki:Community Portal\nElite Dangerous Wiki:Copyrights\nElite Dangerous Wiki:Dispute\nElite Dangerous Wiki:Frontier's ToS\nElite Dangerous Wiki:Future content\nElite Dangerous Wiki:Naming and Shaming\nElite Dangerous Wiki:Player groups\nElite Dangerous Wiki:Policies\nElite Dangerous Wiki:Profanity\nElite Dangerous Wiki:Protected page\nElite Dangerous Wiki:Sandbox\nElite Dangerous Wiki:Shortcut\nElite Dangerous Wiki:Spelling\nElite Dangerous Wiki:Templates\nElite Dangerous Wiki:User Conduct Rules\nElite Dangerous Wiki:User treatment policy\nElite Dangerous Wiki talk:Community Portal\nElite Dangerous Wiki talk:Naming and Shaming\nFile:\"Exploring Alien Life\" with William Baines at Frontier Expo 2017\nFile:\"Out of the Darkness\" Book Teaser Trailer\nFile:''Alone'' CTRL + ALT + SPACE – Elite Dangerous Film Competition 2017\nFile:'Elite Dangeous' Beta v1.03 - Interstellar Bounty Hunter (Flight Assist Off)\nFile:'Elite Dangerous' Alpha - Bounty Hunter (Flight Assist Off)\nFile:'Elite Dangerous' Alpha - Bounty Hunter (Flight Assist Off)-0\nFile:'Elite Dangerous' Alpha - Bounty Hunter (Flight Assist Off)-1\nFile:'Elite Dangerous' Beta v1.03 - Pirate (Flight Assist Off)\nFile:'Elite Dangerous' Beta v1.03 - Pirate (Flight Assist Off)-0\nFile:'Elite Dangerous' Beta v1.03 - Smuggler (Flight Assist Off)\nFile:'Elite Dangerous' Beta v1.03 - Smuggler (Flight Assist Off)-0\nFile:'Elite Dangerous' Beta v2.04 - Opportunist (Flight Assist Off)\nFile:'Elite Dangerous' Beta v3.03 - Interceptor (Flight Assist Off)\nFile:'Elite Dangerous' Beta v3.05 - Partners in Crime (Flight Assist Off)\nFile:'Elite Dangerous' Gamma v1.04 - Freebooter (Flight Assist Off)\nFile:'Elite Dangerous' Gamma v1.04 - Freebooter (Flight Assist Off)-0\nFile:'Elite Dangerous' v1.01 - Hunted (Flight Assist Off)\nFile:(307261) 2002 MS4.jpg\nFile:...and the Anaconda.\nFile:.png\nFile:003s.jpg\nFile:00647cc5ee089ff58e18c884a0bd0130.png\nFile:008.jpg\nFile:00F2FF2F-C1FA-4C67-9DC5-51A5FA9E24B6.jpeg\nFile:011.png\nFile:026e180e5b0f331f03ca067aa8b754442578be56.jpg\nFile:0649f6c7af68cbb7b810f228b9c4793dc3329115.png\nFile:0941370e-db64-4dac-9701-cdc3cd4b4c8c.png\nFile:0fb81092-46cd-48c2-b208-d58be018fc8a.jpg\nFile:1-0.png\nFile:1.png\nFile:10.png\nFile:10000rescues.jpg\nFile:10447844 968662003150908 678640230946164094 n.jpg\nFile:10644903 724268254339146 723725230138906032 n.jpg\nFile:10669999 10153555206639154 3051273533810820754 n.jpg\nFile:10th Legion big.png\nFile:114.jpg\nFile:11947956 10207911341051447 7791592374722807332 o.jpg\nFile:1240d8212199fbd7c354f67b67b7b291.jpg\nFile:12 Anaconda.jpg\nFile:135249x7746.jpg\nFile:1438827170 preview Empire.png\nFile:145C279E-0715-453E-A50C-2FF8C919C1C5.png\nFile:14797.jpg\nFile:1500x500.png\nFile:150f6497f9a79dd21cb9e871f710b12f1325e76b.jpg\nFile:1525424 10152449591341689 6382379527867466789 n.jpg\nFile:1551809922.png\nFile:15648x9058.jpg\nFile:15661x7040.jpg\nFile:15662x1876.jpg\nFile:15666x5176.jpg\nFile:15667x3734.jpg\nFile:15689x1029.jpg\nFile:15692x1368.jpg\nFile:15695x9358.jpg\nFile:15721x1437.jpg\nFile:15728x8086.jpg\nFile:15729x1971.jpg\nFile:15734x1360.jpg\nFile:16,000LY Outside the Galaxy Elite Dangerous\nFile:1608 ly above the galactic plane in Aedgorn WE-Q D5-1.png\nFile:16823x1239.jpg\nFile:16839x2745.jpg\nFile:16840x7201.jpg\nFile:16855x1699.jpg\nFile:17199x1635.jpg\nFile:17201x1221.jpg\nFile:17203x1624.jpg\nFile:17204x1827.jpg\nFile:17250x9741.jpg\nFile:17260x1190.jpg\nFile:17261x1131.jpg\nFile:17285x1987.jpg\nFile:17309x5406.jpg\nFile:1782053 10152449591351689 7698628813007908807 n.jpg\nFile:17DF77B8-7FD3-49ED-9280-C3423967FAA3.png\nFile:17Draconis.jpg\nFile:17 Draconis.png\nFile:17 Type.jpg\nFile:18 Type9Getaway.jpg\nFile:19.jpg\nFile:19541x6206.jpg\nFile:19 Type9Hangar.jpg\nFile:1geek2many.jpg\nFile:1v3 big ship pvp...this is why you engineer,i let them live\nFile:2.3 Multi crew - The Mighty Adder\nFile:2.png\nFile:20.png\nFile:2014 Avatar 120kb.png\nFile:2015-01-18 00001.jpg\nFile:2015-01-18 00002.jpg\nFile:2015-01-21 00002.jpg\nFile:2015-01-25 00001.jpg\nFile:2015-01-28 00004.jpg\nFile:2015-04-08 00001.jpg\nFile:2015-04-08 00003.jpg\nFile:2015-04-23 00001.jpg\nFile:2015-05-18 00005.jpg\nFile:2015-05-25 00005.jpg\nFile:2015-06-06 00001.jpg\nFile:2015-06-08 00012.jpg\nFile:2015-06-13 00001.jpg\nFile:2015-07-20 00003.jpg\nFile:2015-07-20 00004.jpg\nFile:2015-07-20 00005.jpg\nFile:2015-07-20 00006.jpg\nFile:2015-07-20 00007.jpg\nFile:2015-07-20 00008.jpg\nFile:2015-07-20 00009.jpg\nFile:2015-07-20 00010.jpg\nFile:2015-08-14 00001.jpg\nFile:2015-08-18 00010.jpg\nFile:2015-09-02 00001.jpg\nFile:2015-09-15 12-52-41 Galaxy map.jpg\nFile:2015-10-12 00007.jpg\nFile:2015-10-14 00008.jpg\nFile:2015-10-15 00001.jpg\nFile:2015-10-16 00002.jpg\nFile:2015-10-16 00004.jpg\nFile:2015-11-04 00004.jpg\nFile:2015-12-01 23.23.45.png\nFile:2015-12-09 00003.jpg\nFile:2015-12-10 00001.jpg\nFile:2015-12-10 00003.jpg\nFile:2015-12-12 00001.jpg\nFile:2015-12-24 00002.jpg\nFile:2015-12-24 00006.jpg\nFile:2015-12-24 00008.jpg\nFile:2015-12-24 00012.jpg\nFile:2015-12-26 00004.jpg\nFile:2016-01-15 00001.jpg\nFile:2016-01-17 00004.jpg\nFile:2016-01-18 00001.jpg\nFile:2016-01-26 00010.jpg\nFile:2016-01-26 00039.jpg\nFile:2016-02-28 00001.jpg\nFile:2016-10-29 (38) Is the Ancient Ruins a Map.jpg\nFile:2016-10-29 Ancient Alien Ruins Area.jpg\nFile:2016-10-29 Flying over Ruins.jpg\nFile:2016-10-29 Obelisk rizing up from the ground.jpg\nFile:2016-10-29 Obelisks.jpg\nFile:2016-10-29 SRV Next to Oblisk.jpg\nFile:2016-10-29 SRV next to a Lcosahedron.jpg\nFile:2016-10-29 Salvage item.jpg\nFile:2016-10-29 Space ship Next to Obelisks.jpg\nFile:2016-10-29 edited Fighter next to Oblisks.jpg\nFile:2016-10-30 Salvage items.jpg\nFile:20160311145110 1.jpg\nFile:20160311145114 1.jpg\nFile:20160321003144 1.jpg\nFile:20160321003148 1.jpg\nFile:20160326214150 1.jpg\nFile:20160330155357 1.jpg\nFile:20160331163734 1.jpg\nFile:20160401045245 1.jpg\nFile:20160405223417 1.jpg\nFile:20160406111723 1.jpg\nFile:20160508020446 1.jpg\nFile:20160510161732 1.jpg\nFile:20160510211150 1.jpg\nFile:20160628200202 1.jpg\nFile:20160712134938 1.jpg\nFile:20160712135018 1.jpg\nFile:20160805170213 1.jpg\nFile:20160815182740 1.jpg\nFile:20160816213521 1.jpg\nFile:20160828004654 1.jpg\nFile:20160901141747 1.jpg\nFile:20160908163522 1.jpg\nFile:20160914204012 1.jpg\nFile:20160914204452 1.jpg\nFile:20160914225449 1.jpg\nFile:20161222224624 1.jpg\nFile:20161227204246 1.jpg\nFile:20170117192533 1.jpg\nFile:20170128182159 1.jpg\nFile:20170221073152 1.jpg\nFile:20170304103739 1.jpg\nFile:20170522220855 1.jpg\nFile:20170522220910 1.jpg\nFile:20170522220926 1.jpg\nFile:20170522220933 1.jpg\nFile:20170522220954 1.jpg\nFile:20170522221002 1.jpg\nFile:20170522221103 1.jpg\nFile:20170522221117 1.jpg\nFile:20170713201251 1.jpg\nFile:20170720 100437.jpg\nFile:20170911192654 1.jpg\nFile:20171202111214 1.jpg\nFile:20171221162213 1.jpg\nFile:20171221163040 1.jpg\nFile:20171221174206 1.jpg\nFile:2018-05-09 01-23-48-Ceos-3-Gordon-class-bulk-cargo-ship-QLR-562.jpg\nFile:20180104210656 1.jpg\nFile:20180111104707 1.jpg\nFile:20180327 140440.jpg\nFile:20180616214427 1.jpg\nFile:20180616224741 1.jpg\nFile:20180805093056 1.jpg\nFile:20180824191526 1.jpg\nFile:20180829145851 1.jpg\nFile:20180904213744 1.jpg\nFile:20181126004715 1.jpg\nFile:20181218215720 1.jpg\nFile:20190109233400 1.jpg\nFile:20190109233958 1.jpg\nFile:20190109234005 1.jpg\nFile:20190201005745 1.jpg\nFile:20190731192516 1.jpg\nFile:20191212221809 1.jpg\nFile:20200101143354 1.jpg\nFile:20200127160113 1.jpg\nFile:20200409051453 1.jpg\nFile:20200504192535 1.jpg\nFile:20200915234700 1.jpg\nFile:20201113214912 1.jpg\nFile:20210109094928 1.jpg\nFile:20210308163406 1.jpg\nFile:20210325125453 1.jpg\nFile:20210409005420 1.jpg\nFile:20210422140701 1.jpg\nFile:20210522165609 1.jpg\nFile:20210606010135 1.jpg\nFile:2022-01-28 18-10-03 CD-43 11917.png\nFile:2022-01-28 18-10-19 CD-43 11917.png\nFile:2022-01-28 18-10-50 CD-43 11917.png\nFile:2022-01-28 18-29-56 CD-43 11917.png\nFile:2022-01-28 18-33-40 CD-43 11917.png\nFile:2022-01-28 18-38-52 CD-43 11917.png\nFile:2022-01-28 18-42-01 CD-43 11917.png\nFile:2022-01-28 18-45-17 CD-43 11917.png\nFile:2022-01-28 18-47-41 CD-43 11917.png\nFile:2022-03-31 22-09-08 Eol Prou JH-V e2-124.png\nFile:20220228195708 1.jpg\nFile:20 Type9Target.jpg\nFile:20 hud down.png\nFile:20 hud left.png\nFile:20 hud right.png\nFile:2222.jpg\nFile:2300 ly below galactic plane.png\nFile:25 Years of Frontier Developments with David Braben - Develop-Brighton\nFile:29vyos.jpg\nFile:2BFD16FF-3A3F-4A55-B7FF-832D1010E7C3.jpeg\nFile:2d2d65e5e8f56badec82d628a1107d8f90e48808.jpg\nFile:2more-slf-wallpaper-tiny-templar.jpg\nFile:2swlOLx.png\nFile:3.jpg\nFile:3.png\nFile:30-0.png\nFile:30.png\nFile:30007360 10156719714485681 782326271 n.jpg\nFile:300px-Eranin System Map.jpg\nFile:30 Years An Elite Anniversary\nFile:30c1a694edf7c63de4249616cd972f33072114fc.jpg\nFile:30th cobra.jpg\nFile:312412.png\nFile:3333.jpg\nFile:359320 2015-12-03 00002.png\nFile:359320 20181127171051 1.png\nFile:359320 20181213191308 1.png\nFile:359320 20181216234635 1.png\nFile:359320 20190118132614 1.png\nFile:359320 20200308194804 1.png\nFile:359320 20200806153951 1.png\nFile:359320 screenshots 2015-04-25 00009.jpg\nFile:359320 screenshots 2015-04-29 00005.jpg\nFile:359320 screenshots 2015-04-30 00002.jpg\nFile:359320 screenshots 20170428005612 1.jpg\nFile:359320 screenshots 20170428124047 1.jpg\nFile:37668093 10212164556171634 666201121835974656 n.png\nFile:3881794-magik avx consequences 3.jpg\nFile:39 Tauri.png\nFile:4.png\nFile:40.png\nFile:400D2863-94E9-4DC3-B601-0447118AF328.jpg\nFile:40 seconds to the space center Elite Dangerous\nFile:443372868max.jpg\nFile:4444.jpg\nFile:450px-Empire fighter.png\nFile:45401.png\nFile:49594211 2046373142118135 4227626383506931712 o.jpg\nFile:4k screenshot coriolis.jpg\nFile:5.png\nFile:50.png\nFile:50 Facts About Elite Dangerous You Don't Know (Probably)\nFile:55a03fc3-a8c2-4801-8d7e-929cac0eec44.jpg\nFile:5744cf2633bfc8a2ac7b02e316cece88.jpg\nFile:59m pioneer.png\nFile:5BB5FCF3-E039-4C00-B38C-FF987C8F762A.jpeg\nFile:5F206131-0C3B-4CEE-A793-E61DF5587473.jpeg\nFile:5c50acad0b1f440207bb0478d15751ab.png\nFile:5guzxdgj6aoz.png\nFile:6.jpg\nFile:60.png\nFile:65846509-B796-41E6-BA35-1A8E3C27A1EB.jpeg\nFile:69caf98dc770cf8b5420ccd539d3129e723dfae6.png\nFile:6d16235b761d5f294138ae41b2563c15 (2).jpg\nFile:70.png\nFile:71298.png\nFile:734119 10152398700390026 1626704215 n.jpg\nFile:78UrsaeMajorisSystemMap.png\nFile:7904961.gif\nFile:7b87f1210c04ff567b6f7caa5ad5a30a.png\nFile:7c4eae48-e814-41b6-85a7-b206b39642ae.jpg\nFile:8-20-2016 3-39-41 PM.png\nFile:80.png\nFile:9-Aurigae-system-map.png\nFile:90482-Orcus.jpg\nFile:9078a0049798d285609e3a07e7b94399f8624c1b.jpg\nFile:90bba9e0-3918-4444-b04e-12c13299f68d.jpg\nFile:9526x9791.jpg\nFile:982b40dc23bde11349ad01005b4d7249.jpg\nFile:9WipzNx.png\nFile:A1 0BxXPpak.jpg\nFile:A45.png\nFile:A5aN6BV.jpg\nFile:A7f4pNa.jpg\nFile:A81d805d8500096c22390717756b8a93bf69bab8.jpg\nFile:AAinsignia.png\nFile:AApilotfinal3banner1.png\nFile:ACS Overwatch.png\nFile:AEBE.png\nFile:AI-Relics-Commodities.png\nFile:AId9SK1.png\nFile:ALTA 0202.jpg\nFile:APEX planetary banner.png\nFile:AR50.jpg\nFile:ARX 5000 icon.png\nFile:ASELLUS PRIMUS 1.jpg\nFile:ASELLUS PRIMUS 2.jpg\nFile:ASELLUS PRIMUS 3.jpg\nFile:ASP Cockpit 5.jpg\nFile:ATR - imperial.jpg\nFile:ATR - independent.jpg\nFile:ATR Void Rangers cropped.png\nFile:ATR unit 1.png\nFile:ATR unit 2.png\nFile:ATR unit 3.png\nFile:ATeam 02.jpg\nFile:AULIN1.jpg\nFile:AULIN2.jpg\nFile:A Beginner's Guide to Elite Dangerous - Part 2 - Galaxy Map Tutorial\nFile:A Field of Brain Trees\nFile:A Lavigny Duval vector.svg\nFile:A Look At The Thargoid Wrecks\nFile:A Pirate's Wrath\nFile:A Pirates Life Aint Easy\nFile:A Plea For Help.jpg\nFile:A Scarab colleting minerals.jpg\nFile:A V HIP 99152.png\nFile:A Visual Expeditions History.jpg\nFile:A few stars and planets in Elite- Dangerous - Odyssey\nFile:A friend in need - Elite Dangerous\nFile:A look at Holo-me (Elite Dangerous)\nFile:A man stands in the darkness... Elite Dangerous Vulture ad\nFile:A reading from Elite Reclamation, an official Elite Dangerous novel\nFile:Abel Laboratory.png\nFile:Abetti pl.JPG\nFile:Abraham Lincoln Station.jpg\nFile:Abrasion Blaster.png\nFile:Access Corridor Dimensions Corvette For Scale.png\nFile:Accessory Anemone.png\nFile:Accessory Brain Tree.png\nFile:Accessory Peduncle Tree.png\nFile:Achenar-6-Gas-Giant.png\nFile:Achenar-System-Star.png\nFile:Achenar.png\nFile:AchenarBellTerminal.png\nFile:AchenarCapitol.png\nFile:AchenarDawesHub.png\nFile:Achenar 5 Planet.png\nFile:Achilles Robotics.png\nFile:Ackwada-System-Map.png\nFile:Acorn-News-magazine-Article-on-Elite-December-1984.png\nFile:Acornsoft Elite - Promo Video 1984 - VHS\nFile:Activated-Guardian-Ancient-Data-Terminal-SRV.png\nFile:Active Power Source.jpg\nFile:Adam-Woods-Elite-Dangerous.png\nFile:Adamastor.png\nFile:Adder-and-Outpost.png\nFile:Adder-docked-ship.png\nFile:Adder-ship-space-planetary-ring.png\nFile:Adder.png\nFile:Adder4.jpg\nFile:Adder Blueprint.png\nFile:Adder Cockpit.png\nFile:Adder Options 01.jpg\nFile:Adder Options 03.jpg\nFile:Adder Options 04.jpg\nFile:Adler3.JPG\nFile:Adler4.png\nFile:Adler5.png\nFile:Adlesarmada.png\nFile:Adlesarmadawhite.png\nFile:Admiral.jpg\nFile:Advanced-Discovery-Scanner.png\nFile:Advanced Medicines.png\nFile:Advanced Mining\nFile:Advanced Missile Rack.png\nFile:Advanced Multi-cannon.png\nFile:Advanced miners guide How to locate Mother lodes Elite Dangerous.\nFile:Advanced weapon modules.png\nFile:Advertising Panel (Werbe Tafel) - Elite Dangerous (Fuel Rats, Core Dynamics, Alliance...)\nFile:Aegis.svg\nFile:Aegis AX Missile Rack.png\nFile:Aegis AX Multi-cannon.png\nFile:Aegis AX Xeno Scanner.png\nFile:Aegis Acropolis.png\nFile:Aegis Remote Release Flak Launcher.png\nFile:Aegis Shutdown Field Neutraliser.png\nFile:Aegis Under Investigation.png\nFile:Aegis Under Investigation Salvation.png\nFile:Aegis Vanguard.png\nFile:Aegis blueprint 1.png\nFile:Aegis blueprint 2.png\nFile:Aegis blueprint 3.png\nFile:Aegis blueprint 4.png\nFile:Aegis blueprint 5.png\nFile:Aegis blueprint 6.png\nFile:Agricultural-Installation.png\nFile:Agriculture Station.jpg\nFile:Aisling-Duval-3D-1.png\nFile:Aisling.jpg\nFile:Aisling Duval portrait.jpg\nFile:Aisling Duval vector.svg\nFile:Aisling portrait.png\nFile:Alcor.png\nFile:Aldebaran-2.png\nFile:Aldebaran.png\nFile:Aldebaran map.png\nFile:Aleoida.png\nFile:Aleoida Arcus.png\nFile:Aleoida Arcus - Teal.jpg\nFile:Aleoida Coronamus.png\nFile:Aleoida Laminiae - Teal.png\nFile:Alexandria.png\nFile:Alexandria wreckage.png\nFile:Algae.jpg\nFile:Alien-Anemones-and-SRV.png\nFile:Alien-Brain-Trees-and-SRV.png\nFile:Alien-Metallic-Crystals.png\nFile:Alien-Poppy-Head-1.png\nFile:Alien-Poppy-Head-2.png\nFile:Alien-Sinuous-Tuber-1.png\nFile:Alien-Sinuous-Tuber-2.png\nFile:Alien-Sinuous-Tuber-3.png\nFile:Alien-Structure-Barnacle-SRV-Anaconda.png\nFile:Alien-Structure-Barnacle.png\nFile:Alien Crash Site 2.png\nFile:Alien Ship Wreck Location & Tour\nFile:Alioth-system.jpg\nFile:Alioth.png\nFile:Alioth Donaldson and Turner's World.jpg\nFile:Alliance-Chieftain-Cockpit.png\nFile:Alliance-Chieftain-and-Megaship.png\nFile:Alliance-Crusader-and-Guardian-Javelin-SLF.png\nFile:Alliance-Crusader-ship-in-ED.png\nFile:Alliance.jpg\nFile:Alliance.png\nFile:AllianceInsignia.png\nFile:Alliance Challenger.png\nFile:Alliance Chieftain early concept.png\nFile:Alliance Press Conference.png\nFile:Alliance Rebellion art.png\nFile:Alliance insignia simple.png\nFile:Alliance vector.svg\nFile:AlphaCentauriEden.png\nFile:AlphaCentauriHuttonOrbital.png\nFile:AlphaCentauriProximaCentauri.png\nFile:AlphaCentaurial-DinProspect.png\nFile:Alpha 2.0 Cmdr JohnStabler.jpg\nFile:Alpha Centauri.png\nFile:Alpha screenshot1.jpg\nFile:Alpha screenshot2.jpg\nFile:AltairSystemMap.png\nFile:Aluminium.png\nFile:Amaucae.png\nFile:Amazing sight.png\nFile:Amazing sight system.png\nFile:Ammonia-Planet-2.png\nFile:Ammonia-Planet-3.png\nFile:Ammonia-Planet-Asp.png\nFile:Ammonia-Planet-Close-Up.png\nFile:Ammonia-Planet.png\nFile:Ammonia-World-180px.png\nFile:Amphora-Plant-ED-Distant-Worlds-2.png\nFile:Amphora-Plant-in-Elite.png\nFile:Amphora-Plants.png\nFile:Amundsen-Terminal-Planetary-Outpost.png\nFile:An eagle docking at Tranquillity.jpg\nFile:Anaconda-0.jpg\nFile:Anaconda-Bounty.png\nFile:Anaconda-Broken-Canopy.png\nFile:Anaconda-Closeup.jpg\nFile:Anaconda-Heat-Vents.png\nFile:Anaconda-Holo-Me-Character.png\nFile:Anaconda-Hyperspace-Jump.png\nFile:Anaconda-Landed-Planet.png\nFile:Anaconda-Search-and-Rescue-Ship.png\nFile:Anaconda-Self-Destruct.jpg\nFile:Anaconda-Shipwreck-on-HR-5906.png\nFile:Anaconda-Underside-Landing-Station.png\nFile:Anaconda-Walking-Pilot-Scale.png\nFile:Anaconda-ship-size-comparison.png\nFile:Anaconda.jpg\nFile:Anaconda.png\nFile:Anaconda02.jpg\nFile:Anaconda09.jpg\nFile:Anaconda49.jpg\nFile:Anaconda54.jpg\nFile:Anaconda68.jpg\nFile:AnacondaDamaged.png\nFile:Anaconda 01 Inside.jpg\nFile:Anaconda 02.jpg\nFile:Anaconda 1.jpg\nFile:Anaconda 2.jpg\nFile:Anaconda 3.jpg\nFile:Anaconda 4.jpg\nFile:Anaconda 4th pilot seat.png\nFile:Anaconda 4th pilot seat perspective.png\nFile:Anaconda 5.jpg\nFile:Anaconda Bridge.png\nFile:Anaconda Escape hatches 2.jpg\nFile:Anaconda Graveyard Location.jpg\nFile:Anaconda Graveyard in HD 76133 Planet 1 C.png\nFile:Anaconda HD.jpg\nFile:Anaconda II.jpg\nFile:Anaconda Search and Rescue Underside.jpeg\nFile:Anaconda being automatically docked in 1.4 Beta\nFile:Anaconda psg.jpg\nFile:Anaconda servicepad.jpg\nFile:Analysis Mode diagram.png\nFile:Ancient-Ruin-Second-Type.png\nFile:Ancient-Ruins-Prai-Hypoo-GF-E-c10.png\nFile:Ancient-Ruins-Relic.png\nFile:Ancient-Ruins-SLF.png\nFile:Ancient-Ruins-SRV.png\nFile:AncientRuinsSecret FuelRats.png\nFile:Ancient Ruins Artifacts.png\nFile:Ancient Ruins high contrast.png\nFile:Ancient Ruins layout 2.png\nFile:Ancient Ruins layout 3.png\nFile:Anderson-Beacon-Surface-Port.jpg\nFile:Andromeda-Galaxy.jpg\nFile:Anemone-Odyssey.jpg\nFile:Anemones-planetary-ring.png\nFile:Anemones-planetary-rings-and-SRV.png\nFile:Anemones-planetary ring- SRV-Python.png\nFile:Angustia-Galactic-Region.png\nFile:Animal-meat-steak.jpg\nFile:Announcing Battle Cards (24 May, 7PM BST)\nFile:Answeringthecallofadventure1.jpg\nFile:Answeringthecallofadventure2.jpg\nFile:Antares-star.png\nFile:Antares-system-map.png\nFile:Anti-Thargoid Decal.png\nFile:Antimony-material.png\nFile:Antiquities-Commodities.png\nFile:Any na copy.jpg\nFile:ApexJumpRange.png\nFile:Apex Interstellar Transport concept.png\nFile:Apex Interstellar Transport logo.png\nFile:Apex redirect map.png\nFile:Apex redirect panel.png\nFile:Apex shuttle orbit.png\nFile:Apex shuttle surface port.png\nFile:Apexinterstellar.png\nFile:April Update - Content Reveal\nFile:April Update banner.png\nFile:Arc Cutter.png\nFile:Arc Cutter pre-alpha.png\nFile:Archery.jpg\nFile:Archon Delaine-sm.png\nFile:Archon Delaine.png\nFile:Archon Delaine vector.svg\nFile:Arcturus-star.png\nFile:Arcturus-system.png\nFile:Arcturus Galaxy Map.png\nFile:Ariel-Sol-Type-9-Heavy.png\nFile:Ariel-Uranus-Sol.png\nFile:Ariel-and-Neptune.jpg\nFile:Ariel.jpg\nFile:Arissa Lavigny-Duval-0.png\nFile:Arissa Lavigny-Duval.png\nFile:Arissa attack on emperor.PNG\nFile:Arkku HUD Color Theme Editor.jpg\nFile:Arouca conventual sweets copy-0.jpg\nFile:Arque.png\nFile:Art1-sep24-14-main.jpg\nFile:Artboard4.png\nFile:Artemis-Lodge-station-in-Celaeno.png\nFile:Artificers Clan Dredger.png\nFile:Artificial structure.jpg\nFile:Arx Livery mockup.png\nFile:Arx bundles.png\nFile:Asellus-Primus-system-map.png\nFile:Asellus Primus.png\nFile:Asellus Primus A Day in Elite\nFile:Asp-Explorer-Asteroid-minerals-limpet-collect.png\nFile:Asp-Explorer-Cockpit.png\nFile:Asp-Explorer-Docked-Hangar.png\nFile:Asp-Explorer-Frontier-Expo-2017-Paint-Job.png\nFile:Asp-Explorer-Horses-Scale.png\nFile:Asp-Explorer-Jump-Range.png\nFile:Asp-Explorer-Planet.png\nFile:Asp-Explorer-and-Brown-Dwarf-space.png\nFile:Asp-Explorer-and-Tourist-Beacon-planet.png\nFile:Asp-Explorer-rear-and-planetary-ring.png\nFile:Asp-Salvage-Canisters.png\nFile:Asp-explorer-4k.jpg\nFile:Asp2.jpg\nFile:Asp3.jpg\nFile:AspScout.png\nFile:Asp Explorer.jpg\nFile:Asp Explorer - Profile.png\nFile:Asp Explorer Docked.png\nFile:Asp Explorer Festive Red.png\nFile:Asp Geyser in BD+74 526 B 3 A.jpg\nFile:Asp Scout - Profile.png\nFile:Asp Scout Docked.png\nFile:Asp Scout Firing.png\nFile:Asp Scout Ship Review ► Elite Dangerous\nFile:Asp explorations.jpg\nFile:Asp landing low.jpg\nFile:Asp scout back.png\nFile:Asp scout belly.png\nFile:Asp scout front.png\nFile:Asp scout left.png\nFile:Asp shipyard.png\nFile:Asp stock.png\nFile:Asp top view.png\nFile:Asp view.png\nFile:Assassin-Asp.png\nFile:Assassin Corvette - Built For The Kill\nFile:Assassin Python.jpg\nFile:Assassination Mission.png\nFile:Aster Pod.png\nFile:Aster Pod & Tree - Elite Dangerous Codex Tour\nFile:Asteroid-Base-Access-Corridor-Mailslot.png\nFile:Asteroid-chase.jpg\nFile:Asteroid Base Freeholm.png\nFile:Asteroid Base Hannu Arena.png\nFile:Asteroid Base Station X.png\nFile:Asteroid Base interior.png\nFile:Asteroid Base interior 2.3 beta.png\nFile:Asteroid Veil West.png\nFile:Asteroid field.jpg\nFile:Asteroid metallic.png\nFile:Asteroid station.jpg\nFile:Asteroid wave scanned.png\nFile:Asura.png\nFile:Attilius-Orbital.png\nFile:Aulin-Enterprise-Station.png\nFile:Aulin-System.png\nFile:Aulin.JPG\nFile:Aulin.png\nFile:Aulin Enterpise.jpg\nFile:Aulin Enterprise Ships.jpg\nFile:Australia-Elite-Dangerous.jpg\nFile:AuthorityScan online.jpg\nFile:AutoFieldMaintenanceUnit Ingame.png\nFile:Automated Mining Extractor 1.jpg\nFile:Automated mining extractor 2.jpg\nFile:Avatar-0.jpg\nFile:Avatar.jpeg\nFile:Avatar.jpg\nFile:Avatar.png\nFile:Avatar pic.jpg\nFile:Avatrbiggest.png\nFile:Axiom ship.jpg\nFile:Azeban-City-Coriolis-Station.png\nFile:Azeban.JPG\nFile:B.jpg\nFile:B0vgXM8CcAAQSO3.jpg\nFile:B1D6ED6C-736C-4D3A-B77A-25DBF14724E6.jpeg\nFile:B1ae8bacc43517de3dc3763c944d49f8.png\nFile:B8cda437-a319-40d2-9c86-93496aa2852d.jpg\nFile:BACKIMAGE.jpg\nFile:BLIELUIA system.png\nFile:BNhWVrf.png\nFile:BZH7Yae.png\nFile:BZHIH.jpg\nFile:Backer Platform.jpg\nFile:Background2 web.jpg\nFile:Bacterium Acies - Lime.jpg\nFile:Bacterium Alcyoneum - Green.png\nFile:Bacterium Aurasus - yellow.png\nFile:Bacterium Bullaris.jpg\nFile:Bacterium Cerbrus - Lime.jpg\nFile:Bacterium Cerbrus - Red.png\nFile:Bacterium Informem - Aquamarine.png\nFile:Bacterium Informem Aquamarine.png\nFile:Bacterium Tela - Orange.jpg\nFile:Bacterium Vesicula - Orange.png\nFile:Badge-blogcomment-0.png\nFile:Badge-blogcomment-1.png\nFile:Badge-blogpost-0.png\nFile:Badge-caffeinated.png\nFile:Badge-category-0.png\nFile:Badge-category-1.png\nFile:Badge-category-2.png\nFile:Badge-category-3.png\nFile:Badge-category-4.png\nFile:Badge-category-5.png\nFile:Badge-category-6.png\nFile:Badge-edit-0.png\nFile:Badge-edit-1.png\nFile:Badge-edit-2.png\nFile:Badge-edit-3.png\nFile:Badge-edit-4.png\nFile:Badge-edit-5.png\nFile:Badge-edit-6.png\nFile:Badge-edit-7.png\nFile:Badge-introduction.png\nFile:Badge-love-0.png\nFile:Badge-love-1.png\nFile:Badge-love-2.png\nFile:Badge-love-3.png\nFile:Badge-love-4.png\nFile:Badge-love-5.png\nFile:Badge-love-6.png\nFile:Badge-luckyedit.png\nFile:Badge-picture-0.png\nFile:Badge-picture-1.png\nFile:Badge-picture-2.png\nFile:Badge-picture-3.png\nFile:Badge-picture-4.png\nFile:Badge-picture-5.png\nFile:Badge-picture-6.png\nFile:Badge-picture-7.png\nFile:Badge-pounce.png\nFile:Badge-sayhi.png\nFile:Badge-welcome.png\nFile:Bahai-Temple-of-South-America-Newsreel-9.jpg\nFile:Baltanos.png\nFile:Banana Nebula NGC 3199.png\nFile:Bandicam-2015-11-03-14-21-08-546.png\nFile:Bandicam-2016-02-14-23-22-27-481.jpg\nFile:Bandicam-2016-03-17-18-06-10-568.jpg\nFile:Bandicam-2016-03-28-00-28-51-071.jpg\nFile:Bandicam-2016-04-23-23-42-38-696.jpg\nFile:Bank-of-Zaonce-Ad-Antwane.png\nFile:Bank-of-Zaonce Logo.png\nFile:Bank of Zaonce.png\nFile:Bank of Zaonce dark logo.png\nFile:Banner-Class-Bulk-Cargo-Ship-TIH-562.png\nFile:BannerCityDestroyed.jpg\nFile:Bark-Mound-in-Dryaea-Flee-GC-D-d12-2653-A-1-B-A.png\nFile:Bark-Mounds-SRV.png\nFile:Bark-Mounds-in-Witch Head Sector XE-Q B5-0 B 2.png\nFile:Bark Mound at Colonia 3 C A.png\nFile:Bark Mounds and SRV.png\nFile:Barnacle-Forest-Pleiades-Sector-PN-T-b3-0.png\nFile:Barnacle.jpeg\nFile:Barnacle anaconda crash.jpg\nFile:Barnacle close up.jpg\nFile:Barnacle large cluster.png\nFile:Barnacle large cluster above.png\nFile:Barnacle spires close.jpg\nFile:Barnacles and Python.png\nFile:Barnard's-Loop.png\nFile:Barnard's Loop?.png\nFile:Bartender menu pre-alpha.png\nFile:Base Jumping off Mt. Neverest\nFile:Base thargoid.jpg\nFile:Bast-Snake-Gin-by-Krillakov.png\nFile:Bauxite.png\nFile:Bdcc8ad04b7026df9ae07d9160c45998c07b6987.jpg\nFile:Be Creative - Elite Dangerous Sidewinder MKI\nFile:Beached-whale.jpg\nFile:Beagle-Point-2-System-Map.png\nFile:Beagle2.jpg\nFile:Beagle Point.png\nFile:Beagle Point - Arrival Day (Distant Worlds 3302)\nFile:Beagle Point Distant Worlds Expedition.jpg\nFile:Beagle Point Route.png\nFile:Beagle and Back Part 4 Cashing In\nFile:Beam Laser.png\nFile:Beamlaser ja02 copy.JPG\nFile:Beautiful Thargoids\nFile:Beckcorp2.png\nFile:Beckcorpnew.png\nFile:Beckers Corporation logo.png\nFile:Beckett Class Science Vessel GUC-916.png\nFile:Bedaho.png\nFile:Behold! Elite Dangerous Beyond chapter four update, a new frontier for explorers!\nFile:Bell-Mollusc.png\nFile:Bell Mollusc - Elite's Galactic Traveler\nFile:Bellmarsh-Class-Prison-Ship.png\nFile:Bellmarsh Class Prisoner Ship.jpg\nFile:Belu-Comms-Installation-Belu-A-1.png\nFile:Beluga-Liner-Cockpit-Black-hole.png\nFile:Beluga-Liner-Official-Art.png\nFile:Beluga-Liner-Planet.png\nFile:Beluga-Liner-Planetary-Ring.png\nFile:Beluga-Liner-and-Jaques-Station.png\nFile:Beluga-Liner.jpg\nFile:Beluga-Saud-Kruger-Mathew-Maddison.png\nFile:Beluga-vs-gu97.png\nFile:Beluga Liner.jpg\nFile:Beluga Liner Blueprint.png\nFile:Beluga Liner at station.jpg\nFile:Beluga Liner right rear view of cockpit.jpg\nFile:Beluga Liner right side of cockpit.jpg\nFile:Bertrandite.png\nFile:Beryllium.png\nFile:Beta-3 Tucani.png\nFile:Beta Hydri.png\nFile:Betancourt Base.png\nFile:Betelgeuse-and-Diamondback-Explorer.png\nFile:Betelgeuse-system-map.png\nFile:Betelgeuse.png\nFile:Betelgeuse from 2200 light seconds.png\nFile:Beyond-Guardian-weapon-art-1.png\nFile:Beyond-Guardian-weapon-art-2.png\nFile:Beyond-Guardian-weapon-art-3.png\nFile:Beyond-planet-concept-art-1.png\nFile:Beyond - Chapter Four - New Ships Reveal\nFile:Beyond Chapter Four splash.png\nFile:Beyond Chapter Three art.png\nFile:Beyond Chieftain cockpit.png\nFile:Beyond Exploration improvements.png\nFile:Beyond Guardian weapons.png\nFile:Beyond Krait.png\nFile:Beyond Mining improvements.png\nFile:Beyond Squadrons.png\nFile:Beyond planet improvements.png\nFile:Bfwt - Copy.png\nFile:Bg1500x500.jpg\nFile:Big-Alien-Fumarole-SRV.png\nFile:Big-Defence-Turret-1.jpg\nFile:Bill-Turner-Engineer.jpg\nFile:Bill-Turner-Metallics-Inc-Engineer-Base.png\nFile:Bill Turner.png\nFile:Binary Star Hegua WY-I d9-7 AB 3.png\nFile:Binary Stars Hegua WY-I d9-7 AB 3.png\nFile:Biodome-Elite-Dangerous.png\nFile:Birmingham.png\nFile:Bismuth.png\nFile:BixbyStation.png\nFile:Black-Box.png\nFile:Black-Fer-de-Lance-Ship-Top.png\nFile:Black-Hole-Asp.png\nFile:Black-Hole-Deep-Space.jpg\nFile:Black-Hole-Nebula-Lensing-Effect.png\nFile:Black Box.jpg\nFile:Black Fleet bl.png\nFile:Black Flight ship.png\nFile:Black Friday Edition.jpg\nFile:Black Friday P.jpg\nFile:Black Friday Sale 2021.png\nFile:Black Hole - Delta Circini (1).jpg\nFile:Black Hole - Delta Circini (2).jpg\nFile:Black Hole - Elite Dangerous\nFile:Black Hole - HD 114999.jpg\nFile:Black Hole - PHYLUWYG GG-X B1-0.jpg\nFile:Black Hole - Phyluwyg GG-X E1-0.jpg\nFile:Black Hole Barnard (1) - Oochoxt DL-Y G1.jpg\nFile:Black Hole Barnard (2) - Oochoxt DL-Y G1.jpg\nFile:Black Hole Barnard (3) - Oochoxt DL-Y G1.jpg\nFile:Black Hole Barnard (4) - Oochoxt DL-Y G1.jpg\nFile:Black Hole Barnard (5) - Oochoxt DL-Y G1.jpg\nFile:Black Hole Galaxy - Oochoxt DL-Y G1.jpg\nFile:Black Hole is still a Hole.jpg\nFile:Black Market Access.jpeg\nFile:Black Market Access.jpg\nFile:Black Market Screen.jpeg\nFile:Black hole Gliese 2026 B.jpg\nFile:Black inhaling thruster exhaust.png\nFile:Blackmarketmenu.png\nFile:Blatteum Torus Mollusc.png\nFile:Blaze-02.jpg\nFile:Blaze-03.jpg\nFile:Blockout.jpg\nFile:Blue-White Supergiant (B5 II).jpg\nFile:Blue-White Supergiant (Type B).jpg\nFile:Blue Condor.jpg\nFile:Blue Epaulettes.png\nFile:Blue Tranquility.png\nFile:Blue Viper Club Clan Dredger.png\nFile:Blue Viper Club Clan Dredger 2.png\nFile:Blue Viper Club Clan Dredger 3.png\nFile:Blue Viper Club Clan Dredger 4.png\nFile:Blue Viper Club icon.png\nFile:Blue White Supergiant.jpg\nFile:Blueprint-adder.png\nFile:Blueprint-eagle.png\nFile:Blueprint-f63.png\nFile:Blueprint-gu97.png\nFile:Blueprint-hauler.png\nFile:Blueprint-sidewinder.png\nFile:Blueprint-taipan.png\nFile:Bnlack prince.jpg\nFile:Bonus 1.png\nFile:Bonus 2.png\nFile:Bonus 3 confirmation.png\nFile:Bonus Weekend banner.png\nFile:Boreas-Galactic-Region.png\nFile:Born a Hero - Elite Dangerous Federal Corvette\nFile:Bounty-Hunter-Ship-Progression.png\nFile:BountyVoucherMenu.jpg\nFile:BountyVoucherMenu1.jpg\nFile:Bounty Hunter FDL.jpg\nFile:Bounty vouchers.png\nFile:Bowersox Mine.png\nFile:Bp-anaconda.png\nFile:Bp-asp-explorer.png\nFile:Bp-asp-scout.png\nFile:Bp-beluga.png\nFile:Bp-cobra-mk-3.png\nFile:Bp-diamondback-explorer.png\nFile:Bp-diamondback-scout.png\nFile:Bp-federal-assault-ship.png\nFile:Bp-federal-corvette.png\nFile:Bp-federal-dropship.png\nFile:Bp-federal-gunship.png\nFile:Bp-fer-de-lance.png\nFile:Bp-imperial-clipper.png\nFile:Bp-imperial-courier.png\nFile:Bp-imperial-cutter.png\nFile:Bp-imperial-eagle.png\nFile:Bp-keelback.png\nFile:Bp-majestic-interdictor.png\nFile:Bp-orca.png\nFile:Bp-python.png\nFile:Bp-scarab-srv.png\nFile:Bp-type6.png\nFile:Bp-type7.png\nFile:Bp-type9.png\nFile:Bp-viper-mk-3.png\nFile:Bp-viper-mk-4.png\nFile:Bp-vulture.png\nFile:Brain-Trees-and-SRV-ED.png\nFile:Brain-Trees-in-Skaudai-JP-A-C29-5-3-A.png\nFile:Brain-Trees.png\nFile:Bresnik Mine\nFile:Bresnikmine.JPG\nFile:Brestla System Map.png\nFile:Brewer-Corp-Container-Logo.png\nFile:Brewer-Corporation-Logo.png\nFile:Brewer Ad.png\nFile:Bridge.jpg\nFile:Bridging the Gap Decal.png\nFile:Bridging the Gap banner.png\nFile:Bright Sentinel in Merope.png\nFile:Bright gold ice rings 0259.jpg\nFile:Bris-Dekker-Unlock-2017-04-24.jpeg\nFile:Bris Dekker-0.png\nFile:Bris Dekker.png\nFile:Brislington.JPG\nFile:Brislington gate.JPG\nFile:British-Soldiers-in-Afghanistan.jpg\nFile:Brits Who Made The Modern World - The Making of Elite\nFile:Bromellite.png\nFile:Bronze Chondrite.jpg\nFile:Bronzite Chondrite.png\nFile:Bronzite chondrite.jpg\nFile:Broo-Tarquin-Engineer.jpg\nFile:Broo Tarquin.png\nFile:Brooks Estate.jpg\nFile:Brooks estate.JPG\nFile:Brooks inside.JPG\nFile:Brown-Dwarf-and-Fumaroles-at-Taygeta-10-A.png\nFile:Bubble-Nebula-Inside.png\nFile:Bubble.png\nFile:Bubble Nebula.png\nFile:Bubble Nebula Surface Flying\nFile:Buckyball-Racing-Canyon.png\nFile:Buckyball-Racing-Club-Banner.png\nFile:Buckyball-Racing-Club-Holo-me-ad.png\nFile:Buckyball-Racing-Club-Logo.png\nFile:Building Fabricators.png\nFile:Building a Cobra MKIII\nFile:Built To Perfection - Elite Dangerous Imperial Cutter\nFile:Bulb Molluscs - Spore Launch Kings - Elite Dangerous Codex\nFile:Bulkheads.png\nFile:Bullet-Mollusc.png\nFile:Bureau of Galactic Legal Affairs jail screen.png\nFile:Bureau of Galactic Legal Affairs logo.png\nFile:Burning LiQingJao.png\nFile:BurstLaser Ingame.png\nFile:Burst Laser.png\nFile:Bush Viper.jpg\nFile:Butterfly Nebula NGC 2346.png\nFile:C-N Star Wiki\nFile:C0d1da44489b82728292ed64b447f04daa90487a.jpg\nFile:C1123095-09b2-4d08-b44a-20987739b0c4.jpg\nFile:C1PulseLaser Viper.jpg\nFile:C64 elite music\nFile:CAMERA SUITE GUIDE ELITE DANGEROUS\nFile:CB-1 Argon's Reach.png\nFile:CD-43 11917.png\nFile:CEC-1018.jpg\nFile:CEC Banner Black.png\nFile:CEC Logo.png\nFile:CG Decal Bounty Hunting White Emissive.png\nFile:CG Decal Brewer Corporation Colonia Bridge Gold.png\nFile:CG Decal Carnoeck.png\nFile:CG Decal Coeus.png\nFile:CG Decal Combat Zone Federal Emissive.png\nFile:CG Decal Combat Zone Imperial Emissive.png\nFile:CG Decal Empire Mandh Gold.png\nFile:CG Decal Federation Parutis Gold.png\nFile:CG Decal Mining.png\nFile:CG Decal Ross 310.png\nFile:CG Decal Trading White Emissive.png\nFile:CG Decal Vadimo BH.png\nFile:CG Decal Vadimo RC.png\nFile:CG Decal Xeno Samples Colonia Silver.png\nFile:CJ Class Star.jpg\nFile:CJ Star - Lasuae RJ-X d2-574 A.jpeg\nFile:CMDR-Harry-Potter.jpg\nFile:CMDRAshhSPVFAExample02.jpg\nFile:CMDRAshh SPVFAExample 01.jpg\nFile:CMDRExorcist-BlueFumaroles.jpg\nFile:CMDRExorcist-DarkGeyser.jpg\nFile:CMDRExorcistSPVFAExample01.jpg\nFile:CMDRExorcist DryauBriaeMOP.jpg\nFile:CMDRExorcist EliteDangerousCore 20190904 01-15-53.png\nFile:CMDRExorcist MtWesley.jpg\nFile:CMDRExorcist PhrieleauPWN.jpg\nFile:CMDRExorcist SPVFA.jpg\nFile:CMDRExorcist SolomonsKey.jpg\nFile:CMDRExorcist SynuefeVMD.jpg\nFile:CMDRTwoSpoons77 SPVFAExample01.JPG\nFile:CMDR Brimston.jpg\nFile:CMDR Marcus Falden vs CMDR KRUDDIE\nFile:CMDR Syntherios full.png\nFile:CMDR UNDERCOVERZACH.png\nFile:CMM Composites.png\nFile:CN Star - Eorgh Prou CU-R d4-568 A.jpeg\nFile:COBRA MK4 MULTI CREW\nFile:CORE SYS SECTOR DL-Y D118.jpg\nFile:COVAS Celeste.png\nFile:CQC-Asteria-Point.png\nFile:CQC-Championship.png\nFile:CQC-Championship.svg\nFile:CQC-Ice-Field.png\nFile:CQC Arena Elevate.jpg\nFile:CQC Championship.jpg\nFile:CQC Elite icon.png\nFile:CQC help loadout.png\nFile:CQC help ship.png\nFile:CS- 30 JUL 3301.jpg\nFile:CTRL+ALT+SPACE Elite Dangerous Film competition 2017 Viaggio in Elite Dangerous\nFile:CUTTER VS CORVETTE VS ANACONDA ELITE DANGEROUS\nFile:C Star (1) - HIP 38242 A.jpeg\nFile:C Star (2) - HIP 22796 A.jpeg\nFile:C Star (3) - HIP 75691.jpeg\nFile:C Star (4) - 53 Aquarii.jpeg\nFile:Cactoida Cortexum.png\nFile:Cactoida Lapis.png\nFile:Cactoida Lapis - Amethyst.jpg\nFile:Cactoida Lapis Teal.png\nFile:Cactoida Pullulanta.png\nFile:Cadmium-crystal bar.jpg\nFile:Caeruleum Torus Mollusc.png\nFile:Caine-Massey-Ad.png\nFile:Caine-Massey-Crate.jpg\nFile:Caine-Massey-Logo.png\nFile:Caine-Massey -Autonomous-Deployment-Case.png\nFile:Calcite-Plate-in-ED.png\nFile:Calcite Plate with Anaconda.png\nFile:Calcite Plates wide.png\nFile:California-Nebula-2.png\nFile:California-Nebula.png\nFile:Californium pickup.jpg\nFile:Calling The Fuel Rats live on stream - Elite Dangerous\nFile:Callisto-Sol.png\nFile:Callisto-and-Jupiter.jpg\nFile:Camera-Suite.jpg\nFile:Camera Suite Male Character.png\nFile:Camera Suite Tutorial and Cinematography Tips (Elite Dangerous 2.3)\nFile:Canister.jpg\nFile:CanistersInSpace.png\nFile:CanistersOnAMoon.png\nFile:Cann Relay damaged.png\nFile:Cann Relay repairing.png\nFile:Canopus.png\nFile:Canyon Planet.jpg\nFile:Canyon Planet 2.jpg\nFile:Canyon Planet 3.jpg\nFile:Canyons-Planet-SYNUEFE-VM-D-C15-10.png\nFile:Capital-Ship-Dock-Facece-Topaz.png\nFile:Capital-Ship-Dock-Larg-AB-1-Kagawa-Survey.png\nFile:Capital-Ship-Dock-Limapa-1-Kovalyonok-Port.png\nFile:CapitalShipUnderAttack.jpg\nFile:CapitalShip FlyingInside.jpg\nFile:Capital Ship, Wreck and In-Jump\nFile:Capital Ship Dock Ekono.png\nFile:Capital Ship Docks in Baal Oterma Station.jpg\nFile:Capital Ship unde attack.jpg\nFile:Capital ship dock.png\nFile:Capsule-Mollusc-in-ED.png\nFile:Capsule Mollusc behavior.png\nFile:Captain Rafix 0063.jpg\nFile:Captain Rafix 0245.jpg\nFile:Captain Rafix 0261.jpg\nFile:Captain Rafix 0269.jpg\nFile:Captain Rafix 0270.jpg\nFile:Captain rafix 0249.jpg\nFile:Captain rafix 0253.jpg\nFile:Captain rafix 0262.jpg\nFile:Captain rafix 0263.jpg\nFile:Captain rafix 0267.jpg\nFile:Captain rafix 0281.jpg\nFile:Captain rafix 0282.jpg\nFile:Captain rafix 0283.jpg\nFile:Captain rafix 0290.jpg\nFile:Captain rafix 0291.jpg\nFile:Captain rafix 0294.jpg\nFile:Captain rafix 0296.jpg\nFile:Captain rafix 0299.jpg\nFile:Captain rafix 0300.jpg\nFile:Captain rafix 0301.jpg\nFile:Captain rafix bye 0297.jpg\nFile:Captura.png\nFile:Capture.JPG\nFile:Capture.jpg\nFile:Capture.png\nFile:Capture2.JPG\nFile:Capture (2).png\nFile:Carbon Class Star.jpg\nFile:Carbon star supergiant.png\nFile:Carcosa.png\nFile:Cargo-Scoop-Type-7.png\nFile:Cargo-Scoop-and-Limpet.png\nFile:Cargo.jpg\nFile:CargoCapacity Ingame.png\nFile:CargoRackWreckageAiming.png\nFile:CargoRackWreckageContents.png\nFile:CargoRackWreckageMountain.png\nFile:CargoRackWreckageZinc.png\nFile:CargoScanMsg.jpg\nFile:CargoScanMsg1.jpg\nFile:CargoScanner Ingame.png\nFile:Cargo Canisters.jpg\nFile:Cargo Canisters.png\nFile:Cargo Canisters View.png\nFile:Cargo Containers.png\nFile:Cargo Hatch Type 6.jpg\nFile:Cargo Mission.png\nFile:Cargo Pod Signal.jpg\nFile:Cargo Scoop Deployed.jpg\nFile:Carrier Signal Decrypting - Mercenary Contracts Elite Dangerous\nFile:Carson's Spring.png\nFile:Carson's Spring front.png\nFile:Cat's Paw Nebula.png\nFile:Cave-Nebula-2.png\nFile:Cave-Nebula-and-Krait-MkII.png\nFile:Cave-Nebula.png\nFile:Celebration.png\nFile:Cemiess-System-Map.png\nFile:Centauri-Mega-Gin.png\nFile:Centaurus-Reach-Galactic-Region.png\nFile:CenterHUDLayout.jpg\nFile:Cerno system map.JPG\nFile:Cetifinal2.png\nFile:CgBckx0WEAA2cPR.jpg\nFile:Chaff-Launcher.png\nFile:ChaffLauncher Ingame.png\nFile:Chalice Pod Caeruleum.png\nFile:Change HUD Color The Right Way - Elite Dangerous\nFile:Chango Dock.png\nFile:Channel 07 logo.png\nFile:CharacterInfobox - Classic infobox.png\nFile:CharacterInfobox - Portable infobox.png\nFile:Character Placeholder.png\nFile:Character Placeholder Alliance.png\nFile:Character Placeholder Empire.png\nFile:Character Placeholder Federation.png\nFile:Character Placeholder Independent.png\nFile:Character Placeholder Other.png\nFile:Charity mission.JPG\nFile:Charon-Sol.png\nFile:Charon.jpg\nFile:Cherbones-Blood-Crystals-art.png\nFile:Chi Herculis - Apasam.png\nFile:Chi Herculis - Gorbatko Reserve.png\nFile:Chi Herculis - Kumay.png\nFile:Chieftain-Boost-Speed.png\nFile:Chieftain-Ship-Station.png\nFile:Chieftain FX17 screenshot 2.png\nFile:Chris-Gregory-Elite-Dangerous.png\nFile:Chromed Cobra MkIII store icon.png\nFile:Chromium crystals.jpg\nFile:Cinder Dock.png\nFile:Cinematic Majestic Class Interdictor Entrance\nFile:Circinus-Transit-Galactic-Region.png\nFile:Circle-Attack-Force-Route-Soontill.png\nFile:CivilianOutpost 001.jpg\nFile:Class-4-Plasma-Accelerator.png\nFile:Class-4-multi-cannon-fires-space.png\nFile:Class-F.jpg\nFile:Class-K.jpg\nFile:Class 2 Multi-Cannon Concept Art.jpg\nFile:Class A star.png\nFile:Class A supergiant.png\nFile:Class B Blue-White Supergiant.png\nFile:Class B Supergiant Alt.png\nFile:Class B star.png\nFile:Class C-N Star.png\nFile:Class DA star.png\nFile:Class DCV Dwarf.png\nFile:Class DCV White Dwarf - Elite Dangerous Wiki\nFile:Class F star.png\nFile:Class G White-Yellow Sueprgiant.png\nFile:Class G star.png\nFile:Class II.png\nFile:Class III gas giant 35 Ursae Majoris 1.png\nFile:Class III gas giant HIP 99152 1 a.png\nFile:Class II gas giant HIP 53248 AB 1.png\nFile:Class I gas giant HIP 53248 AB 4.png\nFile:Class I gas giant Wredguia HY-G c24-12 1.png\nFile:Class L star.png\nFile:Class MS Star - Elite Dangerous Wiki\nFile:Class M star.png\nFile:Class O star.png\nFile:Class S star.png\nFile:Class TTS star.png\nFile:Class T star.png\nFile:Class k star.png\nFile:Clayakarma.png\nFile:Clipper1920.png\nFile:Clipper3.jpg\nFile:Clipper - Land.jpg\nFile:Clipper Iota Hydri Iben Hub.png\nFile:Clipper VS things\nFile:Clipper cockpit.jpg\nFile:Clipper concept.jpg\nFile:CloseUpOfCapitalShipUnderAttack.jpg\nFile:Close Encounter\nFile:Close Encounter.png\nFile:Close Encounters of the PVP Kind Beta 2.05\nFile:Close Encounters of the PVP Kind Beta 2.05-0\nFile:Closeup3.jpg\nFile:Cloudscape.jpg\nFile:Cluster Compound asteroids.jpg\nFile:ClypeusSpeculumi maroon.png\nFile:Clypeus Margaritus.png\nFile:Clypeus Speculumi.png\nFile:Cmdr trium vsmThumb.jpg\nFile:Cmdr trium vsmThumb.png\nFile:Coalsack Nebula.png\nFile:Coalsack Nebula binary composite.png\nFile:Cobalt.png\nFile:Cobra-Cockpit-Interface.png\nFile:Cobra-Cockpit.png\nFile:Cobra-MkIII-C2-Fragment-Cannons.png\nFile:Cobra-MkIII-Cockpit-Outside.png\nFile:Cobra-MkIII-ship-Cockpit.png\nFile:Cobra-MkIII-ship-and-Christmas.png\nFile:Cobra-Repair-Limpet.png\nFile:Cobra-Walking-Pilot-Scale.png\nFile:Cobra.JPG\nFile:Cobra.jpg\nFile:Cobra06.jpg\nFile:Cobra4.jpg\nFile:CobraAnaconda04.jpg\nFile:CobraMkIII Cockpit Render 0.jpg\nFile:CobraStar online.jpg\nFile:Cobra IV.png\nFile:Cobra MK4\nFile:Cobra MK III - Profile.png\nFile:Cobra MK IV.jpg\nFile:Cobra MK IV - Profile.png\nFile:Cobra MkIII - Faulcon DeLacy Elite Dangerous\nFile:Cobra MkIII Iridescent Gleam.png\nFile:Cobra Mk III by CMDR Bomon\nFile:Cobra Mk IV Weaponpoints.jpg\nFile:Cobra Teaser\nFile:Cobra classic.jpg\nFile:Cobra framework.svg\nFile:Cobra orange ignition.jpeg\nFile:Cobramk3fullblueprint8k1.png\nFile:Cockpit HUD.png\nFile:Cockpit Heat Signature.png\nFile:Cockpit MESH RENDER.png\nFile:Cockpit Pips.png\nFile:Cockpit Proximity Alert Lights.png\nFile:Cockpit Scanner.png\nFile:Cockpit Ship Status.png\nFile:Cockpit Speed Gauge.png\nFile:Cockpit Target Holo.png\nFile:Cockpit Target Info.png\nFile:Cockpit Temperature Gauge.png\nFile:Coffee commodity.png\nFile:Collard Pods Of The Inner Orion - Elite Dangerous Codex\nFile:Collared-Pod-Surface-Tissue.png\nFile:Collared-Pod-in-ED.png\nFile:CollectorLimpetController Ingame.png\nFile:Collector Drone Screenie.jpg\nFile:Collector Limpet.jpg\nFile:Collector Limpets with mineral fragments.jpg\nFile:Collector drone grabbing ore 01.jpg\nFile:Collinder 121.png\nFile:Collinder 140.png\nFile:Collinder 470.png\nFile:Collinder 69.png\nFile:Collinder 69 -update-.png\nFile:Collinder 70.png\nFile:Collionson-Asteroid-Miner.png\nFile:Colonel-Bris-Dekker-Engineer.jpg\nFile:Colonia-Area-Systems-Map.png\nFile:Colonia-Connection-Highway.png\nFile:Colonia-Expansion-Initiative-Info.jpg\nFile:Colonia-Expansion-Initiative-Logo.png\nFile:Colonia-Galactic-Region.png\nFile:Colonia-Hub-at-night.png\nFile:Colonia-System-Eol-Prou-RS-T-d3-94.png\nFile:Colonia-System-Map.png\nFile:Colonia 3 C A Fungal Bark Mounds Valley.png\nFile:Colonia 3 C A Fungal life 1.png\nFile:Colonia 3 C A Fungal life Valley.png\nFile:Colonia Bridge Project Faces Possible Changes.png\nFile:Colonia Bridge Project Launches.png\nFile:Colonia December 3305.png\nFile:Colonia Engineer outpost.png\nFile:Colonia Hub.jpg\nFile:Colonia Hub.png\nFile:Colonia Hub ground1.png\nFile:Colonia Hub ground2.png\nFile:Colonia January 3304.png\nFile:Colonia Nebula galaxy map.png\nFile:Colonia Orbital.png\nFile:Colonia September 3303.png\nFile:Colonia Space Jellyfish - Elite Dangerous 3.3 Beta\nFile:Colonia logo.png\nFile:Colonial-expansion-initiative-01.jpg\nFile:Coltan.png\nFile:Columbus Station Io.jpg\nFile:Combat-Bonds-ED.png\nFile:CombatEliteDangerous.jpg\nFile:Combat Bonds.svg\nFile:Combat Elite icon.png\nFile:Combat with a wanted Anaconda.jpg\nFile:Commander-Remlok-Suit.png\nFile:Commander-creator-dev-1.jpg\nFile:Commander-creator-dev-2.jpg\nFile:Commander Chronicles Devastation - Elite Dangerous\nFile:Commander Chronicles Lift-Off\nFile:Commander Chronicles Retaliation - Elite Dangerous\nFile:Commander Chronicles The Deal\nFile:Commando units.jpg\nFile:Commerce Default.png\nFile:Commercial-Outpost.png\nFile:CommoditiesMarketinChango.jpg\nFile:Commodities Default.png\nFile:Commodities Market.jpg\nFile:Commodities Market Guide.png\nFile:Commodities Selected.png\nFile:Common material.svg\nFile:Comms.jpg\nFile:Community-Goal.jpg\nFile:Community Goals-The Art of War.png\nFile:Community Goals-Waging war.png\nFile:Comp.ribbons.JPG\nFile:Comparison of planets and stars.png\nFile:Compass.jpg\nFile:Concept EliteDangerousHorizons Chase.jpg\nFile:ConchaRenibus.png\nFile:Concha Aureolas - Red.jpg\nFile:Concha Labiata - Turqoise.jpg\nFile:Concourse Bartender.png\nFile:Concourse Escape Pods.png\nFile:Concourse High Tech.png\nFile:Concourse Industrial.png\nFile:Concourse Tourist.png\nFile:Concourse Wealthy.png\nFile:Concourse exterior.png\nFile:Concourse interior.png\nFile:Concourse view alpha.png\nFile:Conda-damaged.jpg\nFile:Conda multicannons.png\nFile:Condor-Space.jpg\nFile:Condorconda.jpg\nFile:Conductive Fabrics.png\nFile:Conflict zone.png\nFile:Conflux Delta Site.png\nFile:Construction Sidewinder.png\nFile:Construction Sidewinder back.png\nFile:Construction Sidewinder bottom.png\nFile:Construction Sidewinder front.png\nFile:ContainerOfCanisters.png\nFile:ContestedSpace online.jpg\nFile:Convergence adder.png\nFile:Convergence anaconda.png\nFile:Convergence asps.png\nFile:Convergence aspx.png\nFile:Convergence beluga.png\nFile:Convergence challenger.png\nFile:Convergence chieftain.png\nFile:Convergence cobra3.png\nFile:Convergence cobra mk4.png\nFile:Convergence corvette.png\nFile:Convergence crusader.png\nFile:Convergence cutter.png\nFile:Convergence dbexplorer.png\nFile:Convergence dbscout.png\nFile:Convergence dolphin.png\nFile:Convergence eagle.png\nFile:Convergence fass.png\nFile:Convergence fdrop.png\nFile:Convergence fer-de-lance.png\nFile:Convergence fgun.png\nFile:Convergence hauler.png\nFile:Convergence iclipper.png\nFile:Convergence icourier.png\nFile:Convergence ieagle.png\nFile:Convergence keelback.png\nFile:Convergence krait mk2.png\nFile:Convergence krait phantom.png\nFile:Convergence mamba.png\nFile:Convergence orca.png\nFile:Convergence python.png\nFile:Convergence sidewinder.png\nFile:Convergence type-7.png\nFile:Convergence type-9.png\nFile:Convergence type10.png\nFile:Convergence type6.png\nFile:Convergence viper mk3.png\nFile:Convergence viper mk4.png\nFile:Convergence vulture.png\nFile:Copernic Project - SRV Geyser Jump\nFile:Copper.png\nFile:Corbra earthlike.jpg\nFile:Cordyceps growth.jpg\nFile:Core-Dynamics-Freedom-Federal-Dropship-Mathew-Maddison.png\nFile:CoreDynamics SkimmerS4.png\nFile:Core Dynamics Federal Assault Ship advert 2016\nFile:Core Sys Sectory YJ-R a4-0 System Map.jpeg\nFile:Core Systems Powerplay.png\nFile:Coredynamics.png\nFile:Coriolis-Station-Access-Corridor.png\nFile:Coriolis-Station-Cavalieri-in-Electra.png\nFile:Coriolis-Station-and-Planet.png\nFile:Coriolis-space-station-Titans-Daughter.png\nFile:Coriolis.svg\nFile:CoriolisPO 01.jpg\nFile:CoriolisStationRendering.jpg\nFile:CoriolisStation 001.jpg\nFile:Coriolis Station 001.jpg\nFile:Coriolis Station Blueprint.png\nFile:Coriolis Station Closeup.jpeg\nFile:Coriolis Station Docking Port.jpeg\nFile:Coriolis Station Entrance Closeup.jpeg\nFile:Coriolis Station Interior.jpg\nFile:Coriolis Station Papercraft Model.jpg\nFile:Coriolis Station Transparent.png\nFile:Coriolis ringroad compnents.jpg\nFile:Coriolis sm.svg\nFile:Coriolis station.jpg\nFile:Coriolis with arms.png\nFile:Coronal Mass Ejections.png\nFile:Corrosion.svg\nFile:Corrosion Resistant Cargo Rack.png\nFile:Corvette-Farragut-Scale.jpg\nFile:Corvette-Multicrew.jpg\nFile:Corvette-Ship-Kits.png\nFile:CorvetteAlicorn.png\nFile:Corvette Wreckage Decks.png\nFile:Corvette belly.png\nFile:Corvette hardpoints.png\nFile:Corvette newsletter.jpg\nFile:Corvette nose.png\nFile:Corvette passing overhead - Elite Dangerous Odyssey\nFile:Corvgrave.png\nFile:Cosmic State.png\nFile:Coulter City and Tionisla3.png\nFile:Courier-Role 2.jpg\nFile:Crab Nebula.png\nFile:Crashed-F63-Condor-Shipwreck.png\nFile:Crashed Sidewinder Penelope Carver.png\nFile:Crashed Thargoid Ship.png\nFile:Crater-Saktsak-AB-2-a.png\nFile:Crater HIP 36084 2.jpg\nFile:Craters SRV Anaconda in HIP 39720.jpg\nFile:Credits-Balance.png\nFile:Creditsbalance.jpg\nFile:Creditsearned.jpg\nFile:Crescent-Nebula.png\nFile:CrewIcon.png\nFile:CrimeScanMsg.jpg\nFile:Crimson State Group.png\nFile:Cristalli.png\nFile:Critical Twits Play The Elite Dangerous RPG Pt1 Ship Combat\nFile:Crom.png\nFile:Crusader-launching-fighter.jpg\nFile:Crusader Blueprint.png\nFile:Cryolite.png\nFile:Crystal.png\nFile:Crystaline Cluster.png\nFile:Crystalline-Shards-and-SRV.png\nFile:Crystalline-Shards.png\nFile:Crystalline Fragments.png\nFile:Crystalline Shards in Formidine Rift.png\nFile:Crystals and Molluscs\nFile:Cstar.jpg\nFile:Cubeo-System-Map.png\nFile:Cuffey houses.JPG\nFile:Cuffeyplant.JPG\nFile:Cutter3.jpg\nFile:Cutter 3-4.png\nFile:Cutter Galaxy.jpg\nFile:Cutter Stream.PNG\nFile:Cutter cockpit.png\nFile:Cutter docking bay scoop thingy.png\nFile:Cutter front hp.png\nFile:Cutter hawt.png\nFile:Cutter hp new.png\nFile:Cutter large hp.png\nFile:Cutter nacelle hp.png\nFile:Cutter png.png\nFile:Cutter profile.png\nFile:Cutter stern.png\nFile:Cutter view.png\nFile:Cyan by bloodyblacksilver converted.jpg\nFile:Cymatilis-Ice-Crystal.png\nFile:Cytoscrambler-Elite-Dangerous.png\nFile:D1-Ship.png\nFile:D6907881-3BE4-4AC0-B4E6-E8633F9495EB.png\nFile:D79f0453-d0bb-452d-ac63-dad22bbc2195.jpg\nFile:D85bbfa282b25de5be56e972945db79078f1f077.jpg\nFile:DAB (White Dwarf) Star.jpg\nFile:DAV.jpg\nFile:DBV Class Star.jpg\nFile:DBX BothCanisMajor Odyssey.png\nFile:DBX CanisMajor1 Odyssey.png\nFile:DBX CanisMajor2 Odyssey.png\nFile:DB (White Dwarf) Star.jpg\nFile:DC (White Dwarf) Star.jpg\nFile:DDF.gif\nFile:DI35WWR.png\nFile:DISTANT STORMS - Does Humanity Now Stand On The Brink Of A 2nd Thargoid War?\nFile:DPcQhXH.jpg\nFile:DQ.png\nFile:DSSV Distant Worlds.png\nFile:DW2 Astrophotographer.gif\nFile:DW2 Beagle Point 2.png\nFile:DW2 Explorer.gif\nFile:DW2 Fleet Logistics.gif\nFile:DW2 Fleet Mechanic.gif\nFile:DW2 Fleet Visual.png\nFile:DW2 Fuel Rat.gif\nFile:DW2 Geologist.gif\nFile:DW2 MediCorp.gif\nFile:DW2 Media.gif\nFile:DW2 Miner.gif\nFile:DW2 Missionboard.png\nFile:DW2 Omega Mining Operation.png\nFile:DW2 Route draft.png\nFile:DW2 Rusted Net Nebula.png\nFile:DW2 Scientist.gif\nFile:DW2 Tour Guide.gif\nFile:DW2 WP 1-2 map.png\nFile:DW2 WP 10-11 map.png\nFile:DW2 WP 11-12 map.png\nFile:DW2 WP 2-3 map.png\nFile:DW2 WP 3-4 map.png\nFile:DW2 WP 4-5 map.png\nFile:DW2 WP 5-6 map.png\nFile:DW2 WP 6-7 map.png\nFile:DW2 WP 7-8 map.png\nFile:DW2 WP 8-9 map.png\nFile:DW2 WP 9-10 map.png\nFile:DW2 completion certificate.png\nFile:DWE newsletter.PNG\nFile:DWE patch.png\nFile:DY5PO3n.png\nFile:DY5PO3nbanner.png\nFile:Dahan-Orrery-System-Map.png\nFile:Dahan gateway.png\nFile:DaltonGateway.png\nFile:Damage1.png\nFile:Damage2.png\nFile:Damage3.png\nFile:Damask Rose.png\nFile:Damnson2.png\nFile:DankMeme1.jpg\nFile:Dark Wheel Faction Mission.png\nFile:Dark rings.png\nFile:Darksideofthemoon02-rt.jpg\nFile:Darkwheel1-300x277.jpg\nFile:DarthVaderDarkness.jpg\nFile:Dashboard-Hologram-Reference.png\nFile:DataPointPOI.png\nFile:DataPointSettlement.png\nFile:Data Point.png\nFile:Dav's Hope.png\nFile:Dav-Stott-Elite-Dangerous.png\nFile:David-Braben-BAFTA-Academy-Fellowship-Award.png\nFile:David-Braben-Elite-Frontier.png\nFile:David-Braben-Honorary-Doctorate-Degree-From-Abertay-University.png\nFile:David-Braben-Ian-Bell-Elite.png\nFile:David-Braben-OBE-Order-of-the-British-Empire-Award.png\nFile:David-Braben-Signed-BBC-Elite-Box.png\nFile:David-Braben-Signed-BBC-Microcomputer.png\nFile:David-planet.jpg\nFile:David Braben - A Life in Pixels\nFile:David Braben A Life in Pixels\nFile:David Braben is awarded the BAFTA Games Fellowship in 2015\nFile:David Braben on Gas Giant plans for Elite Dangerous\nFile:David Braben on the Making of Elite From Bedrooms to Billions Funstock.co.uk\nFile:Davshope.png\nFile:Dawes Hub damaged.png\nFile:Day One An Elite Dangerous Story - CTRL + ALT + SPACE\nFile:Dbs canyon.png\nFile:DeLacyViper.jpg\nFile:Dealt Damage.PNG\nFile:Death Generic.png\nFile:Debris Field.png\nFile:Decal 2.3.10 Beta CG.png\nFile:Decal Canonn.png\nFile:Decal Wolves of Jonai.png\nFile:Deciat.png\nFile:Deciat 4 Mountain and SRV.jpg\nFile:Decrease.svg\nFile:Deep-Space-Elite-Dangerous.png\nFile:Deep Space Journey to Altais\nFile:Deep Space Piracy\nFile:Default Orbis Interior.png\nFile:Defence-Turret-Planet-and-SRV.png\nFile:DefenseTurret anti-air.jpg\nFile:Defense Platform.jpg\nFile:Defense System Power Supply.jpg\nFile:Defense turret.jpg\nFile:Delacy.png\nFile:Delivery Mission.png\nFile:Delphi.png\nFile:Delta Pavonis.png\nFile:Delta Phoenicis Price Increase.png\nFile:Demeter-Class-Agricultural-Vessel.png\nFile:Demeter Class Agricultural Vessel KSL-878\nFile:Demeter Class Agricultural Vessel at Olgrea C 7\nFile:Denton Patreus.jpg\nFile:Denton Patreus vector.svg\nFile:Design A Holo-Screen Advert Winners\nFile:Designing the Future - The Ships of Elite Dangerous\nFile:Destination (Unknown)\nFile:Destination Moon\nFile:DetailedSurfaceScanner Ingame.png\nFile:Detailed Surface Scanner UI guide.png\nFile:Detention Centre Detention Ship Beta.png\nFile:Detention Centre The Shield of Resolve.png\nFile:Deuringas truffles copy.jpg\nFile:Development Default.png\nFile:Diamondback-Explorer-Cockpit-Trappist-1-4.png\nFile:Diamondback-Explorer-Cockpit.png\nFile:Diamondback-Explorer-SRV-Type-10-Top-View.png\nFile:Diamondback-Mining.png\nFile:Diamondback Cockpit.png\nFile:Diamondback Explorer new default.png\nFile:Diamondback Scout - Profile.png\nFile:Diamondback Scout - SHIP COMERCIAL - ELITE DANGEROUS\nFile:Diamondback cockpit 01.jpg\nFile:Diamondback enters Hyperspace.png\nFile:Didi-Vatermann-Engineer-Odyssey.png\nFile:Didi-Vatermann-Engineer.jpg\nFile:Didi Vaterman.png\nFile:Dione-Sol.png\nFile:Dionysus-Class-Agricultural-Vessel.png\nFile:Diplomacy Press Conference.png\nFile:Disable GUI effects MenuON.jpg\nFile:Disambig gray.png\nFile:Discard.png\nFile:Discovery Scanner - Crafting the Krait\nFile:Discovery Scanner - Dev Diary - One Giant Leap\nFile:Diso.png\nFile:Distant-Worlds-Profile.png\nFile:DistantWorlds2SplashPage.jpg\nFile:Distant Stars Expedition 3303 Tourist Spot 0706.png\nFile:Distant World II 3305.gif\nFile:Distant Worlds- A journey beyond the Abyss (Elite- Dangerous)\nFile:Distant Worlds- Closing Ceremony Formation Flight -Elite Dangerous Horizons 2.1 Engineers-\nFile:Distant Worlds 2, Completed Exploration History heat map time lapse with decay.\nFile:Distant Worlds 2 A Journey of Discovery\nFile:Distant Worlds 2 Formation Flying Mass Jump ELITE DANGEROUS Waypoint 5\nFile:Distant Worlds 2 Launch Livestream\nFile:Distant Worlds 3305 decal.png\nFile:Distant Worlds Commanders.png\nFile:Distant Worlds II 3305.png\nFile:Distant Worlds II 3305 alt.png\nFile:Distant Worlds II 5k.png\nFile:Distant Worlds Tourist Beacon.png\nFile:Distant Worlds UK Launch\nFile:Distant Worlds logo.jpg\nFile:Distantworldslogoblack.png\nFile:Do not copy- oxalis logo.jpg\nFile:DockLanding.jpg\nFile:Docked Farragut Repair.jpg\nFile:Docked Interdictor Repair.png\nFile:Docking-Fighter-Hangar-Krait-MkII.png\nFile:Docking-is-difficult.jpg\nFile:Docking.jpg\nFile:Docking in Elite\nFile:Docking rings.jpg\nFile:Dolphin-Cockpit.png\nFile:Dolphin-Orca-Beluga-Ships-SLF.jpg\nFile:Dolphin-ship-cockpit-view.png\nFile:Dolphin.jpg\nFile:Dolphin - Saud Kruger Elite Dangerous\nFile:Dolphin Asteroids.jpg\nFile:Dolphin Explorer Elite Dangerous 2.3 Part 1 - To NGC 7822\nFile:Dolphin Tours Elite Dangerous\nFile:Dolphin profile placeholder.png\nFile:Dolphinrear.jpg\nFile:Domed-City-Concept-Art-Elite-Dangerous.png\nFile:Dominator tactical suit.png\nFile:Domino Green.png\nFile:Don't Trifle a Cobra - Elite Dangerous Cobra MKIII\nFile:Donaldson.png\nFile:Donaldson damaged.png\nFile:Double.png\nFile:Dove Enigma.png\nFile:Download.png\nFile:Downloadfile.png\nFile:Drake-Class-Carrier-and-Type-7-1.png\nFile:Drake-Class-Carrier-and-Type-7.png\nFile:Drake-Class Carrier.png\nFile:Drake default.png\nFile:Drake variant 1.png\nFile:Drake variant 2.png\nFile:Drake variant 3.png\nFile:Dream Big - Elite Dangerous Mamba\nFile:Dredger-Megaship.png\nFile:Dredger concept.png\nFile:Driving around in Duhan.jpg\nFile:Driving in the superdeep crater - Elite Dangerous\nFile:Dromi.png\nFile:Dryau Awesomes.png\nFile:Dryman-region.jpg\nFile:Dumbbell-Nebula.png\nFile:DuoOfVipers.jpg\nFile:Dura.jpg\nFile:Durius-System-Map.png\nFile:Durrance Camp.jpg\nFile:Duval family tree.png\nFile:DwellerFace.jpg\nFile:DwellerFace.png\nFile:E-Breach pre-alpha.png\nFile:E-D - Asp Explorer - Red Pharao Aft Bottom Coriolis Hangar.jpg\nFile:E-D - Asp Explorer - Red Pharao Aft Top Coriolis Hangar.jpg\nFile:E-D - Asp Explorer - Red Pharao Front Bottom Coriolis Hangar.jpg\nFile:E-D - Asp Explorer - Red Pharao Front Top Coriolis Hangar.jpg\nFile:E-D - Asp Explorer - Red Pharao Front View on Outpost.jpg\nFile:E-D - Asp Explorer - Red Pharao Supercruise Aft View.jpg\nFile:E-D - Asp Explorer - Red Pharao Top Aft View on Outpost.jpg\nFile:E-D - Imperial Clipper 03 - Tactical Graphite - Sunglare.jpg\nFile:E-D - Imperial Clipper 04 - Tactical Graphite - Sunglare II (Underside).jpg\nFile:E-D - Imperial Clipper 05 - Tactical Graphite - Docked Side View.jpg\nFile:E-D Anaconda - Crusing above the Rings around a Brown Dwarf.jpg\nFile:E-D Anaconda - Gold Skin Front Side View.jpg\nFile:E-D Anaconda - Gold Skin Fuel Scooping.jpg\nFile:E-D Anaconda - Gold Skin docked at Orbis Starport.jpg\nFile:E-D Anaconda - Sunglare .jpg\nFile:E-D Anaconda - Supercruise Aft Top Side View .jpg\nFile:E-D Federal Dropship - Bottom Hardpoint Locations - Ultra High Res.jpg\nFile:E-D Federal Dropship - Hangar Aft Side View - High Res.jpg\nFile:E-D Federal Dropship - Hangar Frontal Side View - High Res.jpg\nFile:E-D Federal Dropship - Hangar Frontal View - High Res.jpg\nFile:E-D Federal Dropship - Hangar Left Side View - High Res.jpg\nFile:E-D Federal Dropship - On the Hunt - Side View - High Res.jpg\nFile:E-D Federal Dropship - Sunglare-Aft Bottom View with Hardpoints deployed - High Res.jpg\nFile:E-D Federal Dropship - Sunglare-Aft Top Side View - High Res.jpg\nFile:E-D Federal Dropship - Sunglare-Front Bottom Side View with Weapons Deployed - High Res.jpg\nFile:E-D Federal Dropship - Sunglare-Front Bottom Side View with Weapons Deployed II- High Res.jpg\nFile:E-D Python - A Trip to Hutton Orbital 01.jpg\nFile:E-D Python - A Trip to Hutton Orbital 02.jpg\nFile:E-D Python - A Trip to Hutton Orbital 03.jpg\nFile:E-D Python - A Trip to Hutton Orbital 04.jpg\nFile:E-D Python - A Trip to Hutton Orbital 05.jpg\nFile:E-D Python - A Trip to Hutton Orbital 06.jpg\nFile:E-D Python - Bottom View in Space.jpg\nFile:E-D Python - Side View docked.jpg\nFile:E-D Python - Sunglare Top down.jpg\nFile:E-D Python - Tactical Ice Arriving at Hutton Orbital.jpg\nFile:E-D Python - Tactical Ice Skin leaving Coriolis Station.jpg\nFile:E-D Python - Tactical Ice Skin leaving Station II.jpg\nFile:E-D Python - Top Side View in Space.jpg\nFile:E-D T9H - Departing (Landing Gear deployed).jpg\nFile:E-D T9H - Front Bottom View.jpg\nFile:E-D T9H - Front View (in full sunlight).jpg\nFile:E-D T9H - Top View from behind.jpg\nFile:E03-Type Anomaly.png\nFile:E5f30f6771d5d25744c260ad52398d4395b74513.png\nFile:E771f81deb7071b2b6a39bcc0798e45714282653.jpg\nFile:E7758a75-9927-488a-9ddf-9a88a5cc38d5.jpg\nFile:E8FE38B4-8BE0-4D5C-B903-103CC603D275.jpeg\nFile:E941755464aa863b52553d15363cae4d1f2fbeea.jpg\nFile:EAGLE CANYON RUN - FLIGHT ASSIST OFF\nFile:ED--Chryseum-Void-Heart.png\nFile:ED-ARX-25500-icon.png\nFile:ED-ARX 5000 icon.png\nFile:ED-Advertisment-Drone.png\nFile:ED-Anaconda-Size.png\nFile:ED-Anemones-alien-and-SRV.png\nFile:ED-Anemones-alien.png\nFile:ED-Arx-Metadata-Buildings-SRVs.png\nFile:ED-Asp-Explorer-and-Anemones.png\nFile:ED-Aster-Pod.png\nFile:ED-Aster-Tree.png\nFile:ED-Bark-Mounds-2.png\nFile:ED-Beluga-Liner-Cockpit.png\nFile:ED-Brewer-Corp-Drake-Class-Carrier.png\nFile:ED-Brewer-Corp-Logo.png\nFile:ED-Bulb-Mollusc.png\nFile:ED-C4-Plasma-Accelerator-SRV.png\nFile:ED-CQC-Fighters-Taipan-GU-97-Imperial-F-67-Condor.png\nFile:ED-Carrier-Construction-Dock-Coriolis.png\nFile:ED-Carrier-Construction-Dock.png\nFile:ED-Class-4-Multi-Cannon-Size.png\nFile:ED-Codex-Pilot-Handbook.png\nFile:ED-Drake-Class-Carrier.png\nFile:ED-EDRPG-Artwork-RICom.jpg\nFile:ED-Earth-Europe-North-Africa.png\nFile:ED-Farragut-Combat-1.png\nFile:ED-Genetic-Sampler.png\nFile:ED-Guardian-Plasma-Charger-Shooting.png\nFile:ED-Guardian-Power-Cell.png\nFile:ED-Guardian-Power-Conduit.png\nFile:ED-Guardian-Sentinel-Front-2.png\nFile:ED-Guardian-Sentinel-Front.png\nFile:ED-Guardian-Sentinel-Weapon-Parts.png\nFile:ED-Guardian-Sentinel-Wreckage-Components.png\nFile:ED-Guardian-Technology-Component.png\nFile:ED-Gyre-Pod.png\nFile:ED-HUD-Mod-EDHM.jpg\nFile:ED-Happy-Haulers-Hog-Roast.png\nFile:ED-Happy-Haulers-Pizza.png\nFile:ED-Hauler-Ship-Normal-Speed.png\nFile:ED-Horizons-Odyssey-Qa'wakana-7-A.jpg\nFile:ED-Ice-Crystals.png\nFile:ED-Kinematic-Kinetic-Assault-Rifle-1.png\nFile:ED-Large-Ships-Size-Comparison.jpg\nFile:ED-Lattice-Mineral-Sphere.png\nFile:ED-Lava-Spouts-Dark-Planet-2.png\nFile:ED-Majestic-Interdictor-combat.png\nFile:ED-Mamba-Cockpit.png\nFile:ED-Medusa-Thargoid-Ship.png\nFile:ED-Megaship-San-Francisco-Scale.png\nFile:ED-Metallic-Crystals-and-Type-9.png\nFile:ED-Mother-lode-asteroid-metallic-rings.png\nFile:ED-Multicrew-Menu.png\nFile:ED-Ocellus-space-station-under-construction.png\nFile:ED-Octahedral-Pod.png\nFile:ED-Odyssey-Atmospheric-Planet.jpg\nFile:ED-Odyssey-Combat-1.png\nFile:ED-Odyssey-Combat-2.png\nFile:ED-Odyssey-Combat-3.png\nFile:ED-Odyssey-Combat-4.png\nFile:ED-Odyssey-Desert-Planet-Cobra-mk3.png\nFile:ED-Odyssey-FPS-Combat.jpg\nFile:ED-Odyssey-Field-Sampler-2.png\nFile:ED-Odyssey-Logo-transparent.png\nFile:ED-Odyssey-Remlok-Suit-1.png\nFile:ED-Odyssey-Social-Hub-Station-1.jpg\nFile:ED-Odyssey-System-Requirements.png\nFile:ED-Odyssey-bar-area-concept.jpg\nFile:ED-Odyssey-base-arrive-concept.jpg\nFile:ED-Odyssey-security-room-concept.jpg\nFile:ED-Odyssey-taxibooth-concept.jpg\nFile:ED-Orca-spaceship-cockpit-sideview.png\nFile:ED-Parasol-Mollusc.png\nFile:ED-Q04-Type-Anomaly.png\nFile:ED-Rhizome-Pod.png\nFile:ED-Ringed-Water-World-2.png\nFile:ED-Ringed-Water-World.png\nFile:ED-Roseum-Squid-Mollusc.png\nFile:ED-SRV-Anemones-size.png\nFile:ED-SRV-Scorpion.png\nFile:ED-Sagittarius-A.png\nFile:ED-Sampling-Tool-1.png\nFile:ED-Ships-Faction-Conflict.png\nFile:ED-Ships-Size-Comparison-FDL-Python-Mamba.png\nFile:ED-Shop-Hardpoint-Outfitting-Weapons.png\nFile:ED-Solid-Mineral-Spheres.png\nFile:ED-Squadron-Leaderboards.png\nFile:ED-Stolon-Pod.png\nFile:ED-Stolon-Tree.png\nFile:ED-Surface-Port-on-Planet.png\nFile:ED-Terrain-Quality-Ultra.jpg\nFile:ED-Terrain-Quality-Ultra 2.jpg\nFile:ED-Terrain-Quality-Ultra 3.jpg\nFile:ED-Thargoid-Attacked-Stations-Map.png\nFile:ED-Type-6-Transporter-Ship-Space-Moon.png\nFile:ED-Type-9-Heavy-spaceship-docked.png\nFile:ED-Vodel-Logo.png\nFile:ED-Wiki-Header-Colors-2.jpg\nFile:ED-Wiki-Header-Colors.jpg\nFile:ED-alien-anemones-2.png\nFile:EDFX Graphics Mod.jpg\nFile:EDFlogo.png\nFile:EDRPG-Gunship-Art.png\nFile:EDRPG-Image.jpg\nFile:EDRPG-RI-Art-Remlok Multitool.jpg\nFile:EDRPG Krait art.png\nFile:EDRPG Krait art 2.png\nFile:EDSplash.jpg\nFile:ED - Eagle MK II - Core Dynamics\nFile:ED - Mamba - Zorgon Peterson\nFile:ED - Orbis.jpg\nFile:ED 035 Reshade zps63c772ba.jpg\nFile:ED H - The Oracle Refugee Rescue\nFile:ED Horizon Regeneration Sequence\nFile:ED Odyssey Roadmap 2022.png\nFile:ED Odyssey Startup Cinematic\nFile:ED Pacifier Frag-Cannons.png\nFile:ED Shields.png\nFile:ED Ship Size.jpg\nFile:ED Ship Size Comparison.jpg\nFile:ED SothisGold2.jpg\nFile:EDwallpaper.jpg\nFile:EDwallpaper1.jpg\nFile:EDwallpaper2.jpg\nFile:EDwallpaper3.jpg\nFile:EDwallpaper4.jpg\nFile:EDwallpaper5.jpg\nFile:EGXXDecal.PNG\nFile:EICFreeOnionHead.png\nFile:EJwFwVEOwiAMANC7cABKywpxV BHj0AYYZjNEqgfxuzuvvczn3GY1eyqfa4AW5tZxmanyki12CpSj5J6mzbLCUk15f0sb52AxOgCk3c-xoDsA2D0SM7RbWGiiAEjPDjfv89mX72a6w 7qyIR. 2SoJRAPMgASbMzsNpw66yQhCqo.jpg\nFile:ELITE DANGEROUS - CONFLICT ZONES FULL TUTORIAL\nFile:ELITE DANGEROUS - SHIP COMMERCIAL - KEELBACK\nFile:ELITE DANGEROUS 2.3 CAMERA PLAY\nFile:ELITE DANGEROUS Camera Suite - SRV\nFile:ELITE DANGEROUS The Sky at Night Orion Constellation\nFile:ELW Ring.jpg\nFile:EMP Grenade.png\nFile:Eagle's-Landing-Planetary-Outpost.png\nFile:Eagle-MkII-Core-Dynamics-Mathew-Maddison.png\nFile:Eagle-Nebula-Asp.png\nFile:Eagle-Nebula-SRV.png\nFile:Eagle-Nebula.png\nFile:Eagle-mkII-ship-flying.png\nFile:EagleShoot.jpg\nFile:Eagle ConceptArt 000.jpg\nFile:Eagle Eye Five.png\nFile:Eagle Eye Four.png\nFile:Eagle Eye One.png\nFile:Eagle Eye Six.png\nFile:Eagle Eye Three.png\nFile:Eagle Eye Two.png\nFile:Eagle Landing.jpg\nFile:Eagle MK II - Profile.png\nFile:Eagle MK II Concept 02.jpg\nFile:Eagle Mk.II Blueprint.png\nFile:Eagle MkII - Core Dynamics Elite Dangerous\nFile:Eagle Mk II Consept 01.jpg\nFile:Eagle Render 000.jpg\nFile:Eagle Render 001.jpg\nFile:Eagleeye jones logo black.png\nFile:Earth-3302-Elite-Dangerous.png\nFile:Earth-DSCOVR-20150706-IFV.jpg\nFile:Earth-North-America-Elite-Dangerous.png\nFile:Earth-like-180px.png\nFile:Earth 1920.png\nFile:Earth 2014-11-28 23-21-10.jpg\nFile:Earth Tourist Spot 0165 beacon.png\nFile:Earthlike.png\nFile:Earthlike planet 02.jpg\nFile:East-India-Company-Minor-Faction-Logo.png\nFile:Eastern-Neutron-Fields-Galactic-Region.png\nFile:Easy Money - Chill Music Elite Dangerous Mining Teaser\nFile:Ed-capital ship battle.jpg\nFile:Ed-wikia banner 468x60.png\nFile:Edge-Magazine-Elite-Dangerous-Rebirth-of-a-Legend.png\nFile:Edmund Mahon.png\nFile:Edmund Mahon vector.svg\nFile:Educating Ed Episode 1- How to Fuel Rat\nFile:Edward-Lewis-Elite-Dangerous.png\nFile:EfdVWJo.png\nFile:Eleanor Bresa.png\nFile:Electricae.png\nFile:Electricae Pluma.png\nFile:Electricae Pluma - Cyan.jpg\nFile:Electricae Radialem - Magenta.png\nFile:ElectronicCountermeasure Ingame.png\nFile:Elephant's-Trunk-Nebula.png\nFile:Elite-1984-3D-Vector-Shapes.png\nFile:Elite-1984-Elite-Dangerous-2018-Eagle-MkII.png\nFile:Elite-1984-Official-Art-Restored.png\nFile:Elite-1984-Product-Image.png\nFile:Elite-30-Years-on-the-Frontier.png\nFile:Elite-4-Character-Concept-Art-Edge-95-2001.png\nFile:Elite-And-Here-The-Wheel-Book-Cover.png\nFile:Elite-BBC-Micro-Package-1984.png\nFile:Elite-CQC-Condor.jpg\nFile:Elite-Carrier-Placeholder-Art.png\nFile:Elite-Dangerous-Alliance-Chieftain-and-Boeing-747.jpg\nFile:Elite-Dangerous-Alpha-1.0-Dec-2013.png\nFile:Elite-Dangerous-Anaconda-Ship-Shield.png\nFile:Elite-Dangerous-Asteroid-Base-Concept-Art-Badger.png\nFile:Elite-Dangerous-Asteroid-Probe.png\nFile:Elite-Dangerous-Banner-Official-Art.png\nFile:Elite-Dangerous-Battle-Cards.png\nFile:Elite-Dangerous-Beyond-Chapter-4-Schedule.png\nFile:Elite-Dangerous-Beyond-Chapter-One-Art.png\nFile:Elite-Dangerous-Beyond-Krait-MkII-Hangar-Front.png\nFile:Elite-Dangerous-Beyond-Krait-mkII-and-Challenger.png\nFile:Elite-Dangerous-Beyond-Krait MKII combat-2.png\nFile:Elite-Dangerous-Beyond-Krait MKII combat.png\nFile:Elite-Dangerous-Beyond-Krait MkII-landed-Planet.png\nFile:Elite-Dangerous-Beyond-Krait MkII Docked.png\nFile:Elite-Dangerous-Beyond-Logo-Transparent.png\nFile:Elite-Dangerous-Beyond-Planets-Update.jpg\nFile:Elite-Dangerous-Beyond-Roadmap.png\nFile:Elite-Dangerous-Beyond-Season.png\nFile:Elite-Dangerous-Binary-Star.png\nFile:Elite-Dangerous-Box-Art.png\nFile:Elite-Dangerous-CQC-Championship.png\nFile:Elite-Dangerous-Capital-Ship-Combat-Art-Josh-Atack.png\nFile:Elite-Dangerous-Career-Chart.jpg\nFile:Elite-Dangerous-Cargo-Canisters-Planet-Surface-2.png\nFile:Elite-Dangerous-Cargo-Canisters-Planet-Surface.png\nFile:Elite-Dangerous-Cobra-Docking-Artwork.png\nFile:Elite-Dangerous-Codex-Commander-Stats.png\nFile:Elite-Dangerous-Codex-Galaxy-Regions.png\nFile:Elite-Dangerous-Codex-Options.png\nFile:Elite-Dangerous-Codex.png\nFile:Elite-Dangerous-Concept-Art-10.png\nFile:Elite-Dangerous-Concept-Art-11.png\nFile:Elite-Dangerous-Concept-Art-12.png\nFile:Elite-Dangerous-Concept-Art-Space.png\nFile:Elite-Dangerous-Core-Logo.png\nFile:Elite-Dangerous-Coriolis-Planet.png\nFile:Elite-Dangerous-Corporations-Brand-Logos.png\nFile:Elite-Dangerous-Deep-Core-Mining-Guide.png\nFile:Elite-Dangerous-Detailed-Surface-Scanner-Probe-Launch.png\nFile:Elite-Dangerous-Docking-Is-Difficult-Book-Cover.png\nFile:Elite-Dangerous-E3-2015-Banner.png\nFile:Elite-Dangerous-Earth-Indian-Ocean.png\nFile:Elite-Dangerous-Empire-Bask-in-his-Greatness.png\nFile:Elite-Dangerous-Empire-City.png\nFile:Elite-Dangerous-Europe.png\nFile:Elite-Dangerous-Exploration-Visual-Guide.png\nFile:Elite-Dangerous-FSS-Scanner-2.png\nFile:Elite-Dangerous-Faction-Civilization-City-Patterns-Art.png\nFile:Elite-Dangerous-Federal-Dropship-890x350.jpg\nFile:Elite-Dangerous-Federation-City.png\nFile:Elite-Dangerous-Full-Spectrum-System-Scanner.png\nFile:Elite-Dangerous-Galaxy-Galactic-Plane-Milky-Way.png\nFile:Elite-Dangerous-Game-Mode.png\nFile:Elite-Dangerous-Hero-Connected-Artwork.png\nFile:Elite-Dangerous-Higher-Resolution-Planet-Textures.jpg\nFile:Elite-Dangerous-Horizons-Concept-Art-City-SRV.jpg\nFile:Elite-Dangerous-Horizons-Key-Art-2.png\nFile:Elite-Dangerous-Horizons-Key-Art.png\nFile:Elite-Dangerous-Horizons.png\nFile:Elite-Dangerous-Hotas-Key-Bindings-2.png\nFile:Elite-Dangerous-Hotas-Key-Bindings.png\nFile:Elite-Dangerous-Ice-Belt-Motherload-Asteroid.png\nFile:Elite-Dangerous-Ice-Planet-Art.png\nFile:Elite-Dangerous-Imperial-Palace-Concept-Art.png\nFile:Elite-Dangerous-India-South-Asia.png\nFile:Elite-Dangerous-Lakon type 6.jpg\nFile:Elite-Dangerous-Limited-Edition-Box-Set.png\nFile:Elite-Dangerous-Limpet-Canister-by-Janne-Paulsen.png\nFile:Elite-Dangerous-Logo-Drawn-on-Galaxy-Map-CMDR-Malibu.png\nFile:Elite-Dangerous-Logo-Silver.png\nFile:Elite-Dangerous-Logo-Splash-Screen-2.png\nFile:Elite-Dangerous-Majestic-Interdictor-Concept-Art-Lewis-Fischer.png\nFile:Elite-Dangerous-Mamba.png\nFile:Elite-Dangerous-Manticore-Limpet-2-Close-Up-by-Janne-Paulsen.png\nFile:Elite-Dangerous-Megalopolis-Parriz-Terminal.png\nFile:Elite-Dangerous-Megaship-Scale-New-York.png\nFile:Elite-Dangerous-Merchandise-Pin-Badges.png\nFile:Elite-Dangerous-Milky-Way-Galaxy.png\nFile:Elite-Dangerous-Mining-Probe.jpg\nFile:Elite-Dangerous-Mission-Board.png\nFile:Elite-Dangerous-Nemorensis-Book-Cover.png\nFile:Elite-Dangerous-Newsletter.png\nFile:Elite-Dangerous-OST-Digipack-Art.png\nFile:Elite-Dangerous-OST-Sound-And-Essence-Art.png\nFile:Elite-Dangerous-Odyssey-Logo-1.png\nFile:Elite-Dangerous-Odyssey-Logo-White-1.png\nFile:Elite-Dangerous-Odyssey-Logo-White-Small-1.png\nFile:Elite-Dangerous-Odyssey Key-Art.png\nFile:Elite-Dangerous-Official-Key-Art.png\nFile:Elite-Dangerous-Official-Powerplay-Banner-Xavier-Henry.png\nFile:Elite-Dangerous-Official-Star-Map-Poster.jpg\nFile:Elite-Dangerous-Orbis-Station-Cobra.jpg\nFile:Elite-Dangerous-Orrery-System-Map.png\nFile:Elite-Dangerous-Pilot-Cargo-Canisters-Art.png\nFile:Elite-Dangerous-Pilot-Reputation-Art.png\nFile:Elite-Dangerous-Pilot-Suit-Rank.png\nFile:Elite-Dangerous-Powerplay-Powers.png\nFile:Elite-Dangerous-Premiere-Cobra-Model.jpg\nFile:Elite-Dangerous-Premonition-Drew-Wagar-Ebook-Cover.png\nFile:Elite-Dangerous-Promotion-To-Elite.png\nFile:Elite-Dangerous-Raxxla-Logo.png\nFile:Elite-Dangerous-Remlok-Suit-02.png\nFile:Elite-Dangerous-Remlok-Suit-03.png\nFile:Elite-Dangerous-Remlok-Suit-Space-Boots.jpg\nFile:Elite-Dangerous-Remlok-Suit.png\nFile:Elite-Dangerous-Request-Docking.png\nFile:Elite-Dangerous-Role-Playing-Game-Art.png\nFile:Elite-Dangerous-Role-Playing-Game-Box-Set.png\nFile:Elite-Dangerous-Role-Playing-Game-Core-Book.png\nFile:Elite-Dangerous-SRV-Fumaroles.jpg\nFile:Elite-Dangerous-Ship-Enters-Hyperspace.png\nFile:Elite-Dangerous-Ship-HUD-Hologram.png\nFile:Elite-Dangerous-Ship-Interior-Concept.jpg\nFile:Elite-Dangerous-Ship-Size-Chart-3305-Edition.png\nFile:Elite-Dangerous-Ships-Mamba-Anaconda-Vulture-Krait-Phantom-Asp.png\nFile:Elite-Dangerous-Ships-and-Aircraft-Carrier.png\nFile:Elite-Dangerous-Ships-and-Boeing-747-123.png\nFile:Elite-Dangerous-Silver-Logo-2.png\nFile:Elite-Dangerous-Silver-Logo.png\nFile:Elite-Dangerous-Space-Station-Coriolis-Closeup.png\nFile:Elite-Dangerous-Splash-Screen.png\nFile:Elite-Dangerous-Squadron-Management.png\nFile:Elite-Dangerous-Squadron-Ships.png\nFile:Elite-Dangerous-Station-Space-Legs-Blockout-Concept.png\nFile:Elite-Dangerous-Surface-Port-Racing.png\nFile:Elite-Dangerous-Surface-Port-Scifi.png\nFile:Elite-Dangerous-The-Return-2.4-Launch.png\nFile:Elite-Dangerous-The-Return-2.4-Splash.png\nFile:Elite-Dangerous-The-Return-2.4-Thargoids-Art.png\nFile:Elite-Dangerous-The-Return-2.4-Thargoids-Splash.png\nFile:Elite-Dangerous-Traffic-Report-April-3303.png\nFile:Elite-Dangerous-Triple-Elite-Pilot-Rank.png\nFile:Elite-Dangerous-Trivia.png\nFile:Elite-Dangerous-Vertical-Poster-by-atackart.png\nFile:Elite-Dangerous-Void-Hearts.png\nFile:Elite-Dangerous-Walking-in-Station.png\nFile:Elite-Dangerous-Wanted-Book-Cover.png\nFile:Elite-Dangerous-X55-HOTAS-+-GamePad-3.3-Keybinds.png\nFile:Elite-Dangerous-ship-zero-gravity-flight.png\nFile:Elite-Dangerous Ship Chart V3 0.jpg\nFile:Elite-Encounters-RPG-front-and-back.png\nFile:Elite-Friendship-Drive-Engaged.png\nFile:Elite-Game-1988-Atari-ST-port.png\nFile:Elite-Game-Logo-Outline-1984.jpg\nFile:Elite-INRA-Mycoid-Scout.png\nFile:Elite-INRA-Mycoid-Virus-Thargoid-Scout.png\nFile:Elite-Lave-Revolution-Book-Cover.png\nFile:Elite-Legacy-Book-Cover.png\nFile:Elite-Logo-Silver.png\nFile:Elite-Medium-Missiles.jpg\nFile:Elite-Mostly-Harmless-Book-Cover.png\nFile:Elite-Original-Poster-1984.png\nFile:Elite-SRV-Flyving-Basics.png\nFile:Elite-Series-Guinness-World-Record-Longest-Running-Space-Simulation-Series.png\nFile:Elite-Small-Missiles.jpg\nFile:Elite-Universe-Logo-Big.png\nFile:Elite-Wake Hunter.0 - Wake Hunter\nFile:Elite- Dangerous - Distant Worlds- 52 CMDRs High Waking out of Sagittarius A*\nFile:Elite- Dangerous - Distant Worlds- A Distant Wedding\nFile:Elite- Dangerous - Epic (and Deadly!) Mountain Climb - Distant Worlds\nFile:Elite- Dangerous - Lavigny's Legion's Capital Ships\nFile:Elite- Dangerous Premiere\nFile:Elite- Dangerous RPG; First impressions\nFile:Elite-dangerous-8.png\nFile:Elite-ships9.jpg\nFile:Elite-tales-from-the-frontier.jpg\nFile:Elite.jpg\nFile:Elite0324.jpg\nFile:Elite0325.jpg\nFile:Elite0400.jpg\nFile:Elite0421.jpg\nFile:Elite4.jpg\nFile:EliteDangerous32.jpg\nFile:EliteDangerous32 2014-10-03 14-24-49-24.jpg\nFile:EliteDangerous32 2014-10-03 14-25-01-97.jpg\nFile:EliteDangerous32 2014-10-16 21-27-52-13.jpg\nFile:EliteDangerous32 2014-10-16 21-27-59-03.jpg\nFile:EliteDangerous32 2014-10-16 21-28-18-33.jpg\nFile:EliteDangerous32 2014-10-16 21-28-21-82.jpg\nFile:EliteDangerous32 2014-12-23 00-58-07-14.png\nFile:EliteDangerous32 2014-12-28 00-59-59-27.png\nFile:EliteDangerous32 2014-12-28 01-43-15-06.png\nFile:EliteDangerous32 2014-12-28 16-10-40-06.png\nFile:EliteDangerous32 2015-01-07 22-19-15-37.png\nFile:EliteDangerous32 2015-01-08 19-51-41-47.png\nFile:EliteDangerous64 2016-03-13 01-07-30.png\nFile:EliteDangerous64 2016-03-13 01-07-55.png\nFile:EliteDangerous64 2016-03-13 01-08-31.png\nFile:EliteDangerous64 2016-04-01 17-11-21.png\nFile:EliteDangerous64 2016-04-01 17-20-35.png\nFile:EliteDangerous64 2016-04-01 19-06-36.png\nFile:EliteDangerous64 2016-04-01 19-18-23.png\nFile:EliteDangerous64 2016-04-01 19-23-12.png\nFile:EliteDangerous64 2016-04-07 00-05-42.png\nFile:EliteDangerous64 2016-04-07 07-52-11.png\nFile:EliteDangerous64 2016-05-02 04-09-58.png\nFile:EliteDangerous64 2016-10-17 19-39-51.png\nFile:EliteDangerous64 2016-11-05 17-05-58.png\nFile:EliteDangerous64 2018-01-17 18-27-20-521.png\nFile:EliteDangerous64 2018-01-17 18-37-44-507.png\nFile:EliteDangerous64 2020-04-24 14-58-42.png\nFile:EliteDangerousLogo.png\nFile:EliteDangerousLogo2.png\nFile:EliteDangerousSidewinder.jpg.jpg\nFile:EliteDangerous MilkyWayGalaxy.png\nFile:EliteLegacy000.jpg\nFile:Elite - 30th Anniversary\nFile:Elite - A personal Voyage\nFile:Elite - A personal Voyage-0\nFile:Elite - Blue Danube Waltz\nFile:Elite - Dangerous (CLIENT) 11 5 2015 6 31 34 PM.png\nFile:Elite - Dangerous (CLIENT) 13 12 2018 11 32 53.png\nFile:Elite - Dangerous (CLIENT) 16.01.2022 10 08 34.png\nFile:Elite - Dangerous (CLIENT) 18-12-2020 16 46 18.png\nFile:Elite - Dangerous (CLIENT) 1 11 2016 8 16 58 PM.png\nFile:Elite - Dangerous (CLIENT) 1 14 2019 12 02 43 PM.png\nFile:Elite - Dangerous (CLIENT) 1 19 2019 8 00 58 PM.png\nFile:Elite - Dangerous (CLIENT) 1 22 2016 11 19 44 PM.png\nFile:Elite - Dangerous (CLIENT) 1 22 2016 11 54 03 PM.png\nFile:Elite - Dangerous (CLIENT) 2 11 2016 8 57 50 PM.png\nFile:Elite - Dangerous (CLIENT) 2 14 2016 12 46 29 PM.png\nFile:Elite - Dangerous (CLIENT) 2 6 2016 10 40 21 PM.png\nFile:Elite - Dangerous (CLIENT) 3 25 2016 11 11 50 PM.png\nFile:Elite - Dangerous (CLIENT) 3 26 2016 10 31 46 PM.png\nFile:Elite - Dangerous (CLIENT) 3 26 2016 10 32 30 PM.png\nFile:Elite - Dangerous (CLIENT) 3 26 2016 11 45 12 PM.png\nFile:Elite - Dangerous (CLIENT) 3 27 2016 4 19 39 PM.png\nFile:Elite - Dangerous (CLIENT) 4 16 2016 11 57 11 AM.png\nFile:Elite - Dangerous (CLIENT) 4 23 2016 10 09 21 PM.png\nFile:Elite - Dangerous (CLIENT) 5 12 2020 9 21 50 PM.png\nFile:Elite - Dangerous (CLIENT) 5 22 2016 12 33 19 PM.png\nFile:Elite - Dangerous (CLIENT) ASP SCOUT.png\nFile:Elite - Dangerous (CLIENT) ASP SCOUT II.png\nFile:Elite - Dangerous Basic tutorial Part 9 Galaxy map\nFile:Elite - Reclamation Cover Medium.jpg\nFile:Elite - To Boldly Go Where No Man Has Gone Before\nFile:Elite 1984 Ship Identification Chart.png\nFile:Elite And Here The Wheel - Trailer 2\nFile:Elite Atmospherics 2\nFile:Elite Badges.jpg\nFile:Elite Brand Logos Xavier Henry.jpg\nFile:Elite CMDR.png\nFile:Elite Combat Animation.gif\nFile:Elite DSS Efficient Planetary Mapping.jpg\nFile:Elite Dangeorus Mega Ship - Asteroid Miner (2.3 Beta)\nFile:Elite Dangereous Chapter 4 - Beta Lighting Comparison vs Current Game\nFile:Elite Dangerous- COLONIA CODEX\nFile:Elite Dangerous- CORPORATIONS CODEX\nFile:Elite Dangerous- Do you dock like I do?\nFile:Elite Dangerous- Generation Ship Lycaon - The Missing - Episode 1 - A Roleplay Story\nFile:Elite Dangerous- Generation Ship Venusian - The Missing - Episode 2 -A Roleplay Story\nFile:Elite Dangerous- INDIVIDUALS-ADEN TANNER-CODEX\nFile:Elite Dangerous- Lavigny's Legion Velite Squadron Cinematic\nFile:Elite Dangerous- Odyssey - Conflict Zones\nFile:Elite Dangerous- Odyssey - Engineer Base Tour\nFile:Elite Dangerous- Odyssey - Introducing the Scorpion SRV\nFile:Elite Dangerous- Odyssey - Launch Trailer\nFile:Elite Dangerous- Odyssey - Scorpion Midnight Black and Stygian Customisation\nFile:Elite Dangerous- Odyssey - Starport Tour\nFile:Elite Dangerous- Odyssey - The Amazing Size of the Imperial Cutter\nFile:Elite Dangerous- Odyssey - The Road to Odyssey Part 3 - The Sphere of Combat\nFile:Elite Dangerous- Odyssey - When it works\nFile:Elite Dangerous- Odyssey Alpha - New Hyperspace Jump animation\nFile:Elite Dangerous- Odyssey Gameplay Reveal Trailer\nFile:Elite Dangerous- Odyssey Launch Stream\nFile:Elite Dangerous- Odyssey Official Soundtrack\nFile:Elite Dangerous- RAXXLA CODEX\nFile:Elite Dangerous- Ralfi's idiot guide to Bounty hunting at RES\nFile:Elite Dangerous- THE ALLIANCE CODEX\nFile:Elite Dangerous- THE DARK WHEEL CODEX\nFile:Elite Dangerous- THE EMPIRE CODEX\nFile:Elite Dangerous- THE FEDERATION CODEX\nFile:Elite Dangerous- THE GUARDIANS CODEX\nFile:Elite Dangerous- THE THARGOIDS CODEX\nFile:Elite Dangerous- The Journey So Far\nFile:Elite Dangerous- Touchdown - Let's Take This Odyssey Cinematic ft.music by Tom Cook & vocals by Heli\nFile:Elite Dangerous.Alpha Phase 1-2\nFile:Elite Dangerous. Anaconda Bulkhead test-0\nFile:Elite Dangerous. La Stupenda. The Most Beautiful Game in the World.\nFile:Elite Dangerous. Thargoid entering witch space (close up)\nFile:Elite Dangerous \"Sorcerer\" teaser\nFile:Elite Dangerous (Trailer) • CTRL ALT SPACE 2017\nFile:Elite Dangerous -The Guardians Explained!\nFile:Elite Dangerous -The Indra and Blackmount Orbital\nFile:Elite Dangerous - \"Collection of Wonders\" - Ringed Neutron Star Elite Dangerous English\nFile:Elite Dangerous - \"Flight Assist Off Training\" Beginner Proficiency 1\nFile:Elite Dangerous - \"Flight Assist Off Training\" Beginner Proficiency 2\nFile:Elite Dangerous - \"Inhabited space\" - Elite Dangerous Short cinematic video\nFile:Elite Dangerous - \"Jump into unknown\" - Short cinematic video\nFile:Elite Dangerous - (No supercruise) Taking off from a moon and landing on its planet\nFile:Elite Dangerous - 2.3 - Fer-de-Lance Ship Kit!!!\nFile:Elite Dangerous - 50+ player ships jumping away from Sagittarius A (Distant Worlds)\nFile:Elite Dangerous - A Tale of Five Systems - Part One Eranin\nFile:Elite Dangerous - A Tale of Five Systems - Part Two Asellus Primus\nFile:Elite Dangerous - Abyss\nFile:Elite Dangerous - Adrepticius\nFile:Elite Dangerous - Alcor\nFile:Elite Dangerous - Alioth\nFile:Elite Dangerous - Amazing Canyon Planet - Just Cruisin'\nFile:Elite Dangerous - Amazing Clouds and Flying Space Jellyfish\nFile:Elite Dangerous - Another way to look at it\nFile:Elite Dangerous - Any Port in a Storm\nFile:Elite Dangerous - Arcturus\nFile:Elite Dangerous - Arcturus-0\nFile:Elite Dangerous - Asp Explorer - Exploration Build\nFile:Elite Dangerous - Aurea Avaritia\nFile:Elite Dangerous - Auto Docking set to Blue Danube\nFile:Elite Dangerous - Aмфоры\nFile:Elite Dangerous - Beauty Of The Abyss part 11 \"the heart\"\nFile:Elite Dangerous - Beauty Of The Abyss part 5 \"Sol\"\nFile:Elite Dangerous - Beginners Guide - Earning your First Millions & Getting Rich Quick(ish)\nFile:Elite Dangerous - Behind the Music\nFile:Elite Dangerous - Beyond Chapter 4 - MechanicMan tours the Krait Phantom\nFile:Elite Dangerous - Beyond Chapter 4 - MechanicMan tours the new Mamba\nFile:Elite Dangerous - Beyond Chapter 4 - The Best Space Sim Gets Its Biggest Update\nFile:Elite Dangerous - Black Hole!\nFile:Elite Dangerous - Canyon Flight\nFile:Elite Dangerous - Cito\nFile:Elite Dangerous - Cockpit Interiors\nFile:Elite Dangerous - Collector Limpet Drones\nFile:Elite Dangerous - Commercials The Fer-de-Lance\nFile:Elite Dangerous - Crime and Punishment\nFile:Elite Dangerous - Cytoscrambler initial testing\nFile:Elite Dangerous - DRIFT\nFile:Elite Dangerous - Damaged Station Rescue Missions Gameplay Only\nFile:Elite Dangerous - Demonstrating the Neutron Highway\nFile:Elite Dangerous - Dobranoc, Day 3, NGC 6357, pt 1.\nFile:Elite Dangerous - Drawing Timelapse - The Elite 1\nFile:Elite Dangerous - Drawing Timelapse - The Fuel Rats 2\nFile:Elite Dangerous - EDProfiler - Graphics Modifcation and Game Logging Features\nFile:Elite Dangerous - Electrical Storm\nFile:Elite Dangerous - Elite combat rank unlocked!\nFile:Elite Dangerous - Enable Supercruise Manually\nFile:Elite Dangerous - End of an Alpha\nFile:Elite Dangerous - Epic History - The New Emperor\nFile:Elite Dangerous - Epic History of The Alliance\nFile:Elite Dangerous - Epic History of The Empire\nFile:Elite Dangerous - Epic History of The Federation\nFile:Elite Dangerous - Epic History of The Guardians\nFile:Elite Dangerous - Epic History of The Pilots Federation\nFile:Elite Dangerous - Epic History of The Unknown Artefact\nFile:Elite Dangerous - Exo-Biology\nFile:Elite Dangerous - Federal Corvette\nFile:Elite Dangerous - Fighter no-hud - 4k\nFile:Elite Dangerous - First Time Galaxy Map\nFile:Elite Dangerous - Fleet Carrier Jump from Bridge\nFile:Elite Dangerous - Fleet Hyperlight Jump\nFile:Elite Dangerous - Flight Assist Off\nFile:Elite Dangerous - Flight Assist Tutorial & Bonus Anaconda Killing\nFile:Elite Dangerous - Flying The Black Flag\nFile:Elite Dangerous - Formidine Rift Mystery Major Discovery & Conspiracy Found\nFile:Elite Dangerous - GalNet soundtrack\nFile:Elite Dangerous - Galaxy\nFile:Elite Dangerous - Galaxy Map OST\nFile:Elite Dangerous - Gas Giant From Nearby Moon (Time Lapse)\nFile:Elite Dangerous - Guardian Sentinels Fire Meta Alloys?!\nFile:Elite Dangerous - High Speed Moon\nFile:Elite Dangerous - How to Find Exquisite Focus Crystals?\nFile:Elite Dangerous - How to Find Modified Embedded Firmware?\nFile:Elite Dangerous - How to Find Unknown Fragments?\nFile:Elite Dangerous - How to Find a Profitable Trade Route\nFile:Elite Dangerous - How to Mine Void Opals for ~100 Million Credits per Hour\nFile:Elite Dangerous - How to change the Hud on PC and my settings\nFile:Elite Dangerous - IPC Combat Patrol (PVP)\nFile:Elite Dangerous - Incursions - The Thargoid Invasion Changes\nFile:Elite Dangerous - Jameson\nFile:Elite Dangerous - Lore & History - Frame Shift Drives\nFile:Elite Dangerous - Lore & History - Witch Space\nFile:Elite Dangerous - Mamba Cockpit VR walkaround HD\nFile:Elite Dangerous - MechanicMan's ship inspections and maintenance - Python\nFile:Elite Dangerous - MechanicMan's ship inspections and maintenance - Sidewinder\nFile:Elite Dangerous - Medusa Variant Thargoid In Threat 7 in Taygeta\nFile:Elite Dangerous - Mega Barnacle Site Found\nFile:Elite Dangerous - Mega Ship - Bellmarsh Prison Ship\nFile:Elite Dangerous - Mega Ship Fisher's Rest - Beta 2.3\nFile:Elite Dangerous - Mercenarius CTRL + ALT + SPACE 2017\nFile:Elite Dangerous - Moon Orbiting at 1 RPM\nFile:Elite Dangerous - My Thoughts on a Year of Updates - 2017 in Review Part Two\nFile:Elite Dangerous - Naphtha Class Tanker - Beta 2.3\nFile:Elite Dangerous - Nebula Canyon Race 1\nFile:Elite Dangerous - New Conflict Zone Turret Defence\nFile:Elite Dangerous - No Time 4\nFile:Elite Dangerous - Novus\nFile:Elite Dangerous - Okorafor SRV-Cross Racing\nFile:Elite Dangerous - Old Man's Harbor CTRL + ALT + SPACE Video competition 2017\nFile:Elite Dangerous - Omar the Star\nFile:Elite Dangerous - On the Horizon Episode 4 - Q&A with David Braben\nFile:Elite Dangerous - Orion Constellation\nFile:Elite Dangerous - Outpost around Earth-like world\nFile:Elite Dangerous - Pirata\nFile:Elite Dangerous - Power distributor guide\nFile:Elite Dangerous - Powerplay Launch Trailer\nFile:Elite Dangerous - Pulse Disruptor Weapons Test\nFile:Elite Dangerous - Rego Montium\nFile:Elite Dangerous - Reminiscence - CTRL ALT SPACE 2017\nFile:Elite Dangerous - Sagan Class Tourist Ship - Beta 2.3\nFile:Elite Dangerous - Sagittarius A* Flyby (No UI)\nFile:Elite Dangerous - Scavenger Hunt\nFile:Elite Dangerous - Second Alien Crash Site\nFile:Elite Dangerous - Seeking Thargoids\nFile:Elite Dangerous - Shinrarta Dezhra (The Founders World)\nFile:Elite Dangerous - Sound In Space - Control Conference 2015\nFile:Elite Dangerous - Space Traffic Control\nFile:Elite Dangerous - Specto\nFile:Elite Dangerous - Tales from the Void 2 - Remember our history, remember Sol\nFile:Elite Dangerous - Thargoid Interdiction\nFile:Elite Dangerous - Thargoid at Beckett Class Science Vessel ZIG-097 with DBX\nFile:Elite Dangerous - The Alien Story - Part 4 \"A Mystery Revealed\"\nFile:Elite Dangerous - The Alien Story So Far - Part 1\nFile:Elite Dangerous - The Alien Story So Far - Part 2\nFile:Elite Dangerous - The Alien Story So Far - Part 3\nFile:Elite Dangerous - The Arrow of Time\nFile:Elite Dangerous - The Atlas Generation Ship The Missing\nFile:Elite Dangerous - The Dredger's Maw\nFile:Elite Dangerous - The Evolution of Elite (Part 1)\nFile:Elite Dangerous - The Galaxy\nFile:Elite Dangerous - The Hive\nFile:Elite Dangerous - The Journey Itself 2\nFile:Elite Dangerous - The Mighty Anaconda\nFile:Elite Dangerous - The Mighty Anaconda-0\nFile:Elite Dangerous - The Mystery of Raxxla Why it may be best if NEVER found\nFile:Elite Dangerous - The Odysseus Generation Ship The Missing Reupload\nFile:Elite Dangerous - The Orbis Starport\nFile:Elite Dangerous - The Return 2.4\nFile:Elite Dangerous - The Return of the Cobra - A short Film\nFile:Elite Dangerous - The Thetis Generation Ship The Missing Reupload\nFile:Elite Dangerous - The Year in Review 2017\nFile:Elite Dangerous - Thirty Years on the Frontier\nFile:Elite Dangerous - Timelapse - Mother Gaïa 7\nFile:Elite Dangerous - Timelapse - Orbital Velocity 9\nFile:Elite Dangerous - Timelapse - Planet Rising 3\nFile:Elite Dangerous - Timelapse - The Core 8\nFile:Elite Dangerous - Timelapse around a Water World\nFile:Elite Dangerous - Timelapse of a Metallic Planet Eclipse\nFile:Elite Dangerous - Top 10 Future Updates and Expansions\nFile:Elite Dangerous - Understanding The Codex - How to Gain Entries and Locate Unique Discoveries\nFile:Elite Dangerous - Understanding the Commodities market\nFile:Elite Dangerous - Unknown Artifact\nFile:Elite Dangerous - Victoria's Song Mega Ship\nFile:Elite Dangerous - Visit ANTARES\nFile:Elite Dangerous - Voyage - Beta 2.05\nFile:Elite Dangerous - WIP animated atmospheric features\nFile:Elite Dangerous - Water Geysers\nFile:Elite Dangerous - Where are the Thargoids? (And what are they?)\nFile:Elite Dangerous - Witch Head Nebula (Video Сinematic)\nFile:Elite Dangerous - Wonder of the Galaxy 7 EliteDangerous\nFile:Elite Dangerous - Wonders of the Galaxy 5 EliteDangerous 60fps\nFile:Elite Dangerous - Wonders of the Galaxy 6 - Farewell To The Beta EliteDangerous\nFile:Elite Dangerous - procedural generation\nFile:Elite Dangerous - timelapse Jaques Station in Colonia with Asp Explorer\nFile:Elite Dangerous - Зонтичные моллюски\nFile:Elite Dangerous - Кальцитовые пластины\nFile:Elite Dangerous - Капсульные моллюски\nFile:Elite Dangerous - Ледяные кристаллы\nFile:Elite Dangerous - Луковичные моллюски\nFile:Elite Dangerous - Моллюски - \"ПУЛИ\"\nFile:Elite Dangerous - Плодоножковые деревья\nFile:Elite Dangerous - Силикатные кристаллы\nFile:Elite Dangerous - Стручок с корневищем\nFile:Elite Dangerous . Megaship . aesamdal.jpg\nFile:Elite Dangerous 1.1 update - release trailer\nFile:Elite Dangerous 1.3 - Pilgrimage to Jameson Memorial (Asp)\nFile:Elite Dangerous 1.5- Cobra Mk IV teaser\nFile:Elite Dangerous 1.5 Ships - Asp Scout\nFile:Elite Dangerous 1.5 Ships - Federal Corvette\nFile:Elite Dangerous 1.5 Ships - Imperial Cutter\nFile:Elite Dangerous 1.5 Ships - Keelback\nFile:Elite Dangerous 1.5 Ships - Viper MK4\nFile:Elite Dangerous 100+ players in instance\nFile:Elite Dangerous 1rst CCN Race Event Highlights 4k60\nFile:Elite Dangerous 2.2 - Passenger Mission Tutorial\nFile:Elite Dangerous 2.2 Alien Crash site - Mystery Solved\nFile:Elite Dangerous 2.2 Beta - Dropping into a neutron star jet\nFile:Elite Dangerous 2.3 Beta - The Grandaddy Type-9 - 4K\nFile:Elite Dangerous 2.3 Beta Asteroid Station 4k\nFile:Elite Dangerous 2.4 Teaser - Frontier Expo 2017\nFile:Elite Dangerous 2. Nebulae\nFile:Elite Dangerous 20170728085846.png\nFile:Elite Dangerous 20180610 Landing at Leonard Nimoy Station\nFile:Elite Dangerous 2020 cover.png\nFile:Elite Dangerous 2020 key art Scorpion.png\nFile:Elite Dangerous 2 Water World\nFile:Elite Dangerous 3.2 - Thargoid Scout hunting in VR\nFile:Elite Dangerous 3.3 Beta 2 Mining - Boom!\nFile:Elite Dangerous 3.3 Beta Discovery Scanner Black Hole Noise\nFile:Elite Dangerous 4 player co-op at Ho Hsi Nav Beacon\nFile:Elite Dangerous 5 player co-op at Ho Hsi Belt Cluster (with added weirdness)\nFile:Elite Dangerous 5th Anniversary infographic.png\nFile:Elite Dangerous A Beautiful Journey To NGC 6357 Nebular\nFile:Elite Dangerous A Federal Gunship with a GPU-melting amount of Packhounds\nFile:Elite Dangerous A Jaunt to Jaques Massjump Basecamp 3 4k rawcut\nFile:Elite Dangerous A Moment of Zen\nFile:Elite Dangerous Activating a Guardian Structure\nFile:Elite Dangerous Alpha Phase 5-6\nFile:Elite Dangerous Alpha Phase 7\nFile:Elite Dangerous Alpha Phase 8.0\nFile:Elite Dangerous Alpha Phase 8.1\nFile:Elite Dangerous Alpha Phase 9.a\nFile:Elite Dangerous Alpha Phase 9.b\nFile:Elite Dangerous Alpha Phase One\nFile:Elite Dangerous Alpha phase 2.0\nFile:Elite Dangerous Alpha phase 2.0-0\nFile:Elite Dangerous Ammonia Geysers\nFile:Elite Dangerous Apha Phase 3-4\nFile:Elite Dangerous Arriving at Sagittarius A*\nFile:Elite Dangerous Ascorbius's Epic Type 9 Race\nFile:Elite Dangerous Atmospheric Escape.png\nFile:Elite Dangerous Atmospherics\nFile:Elite Dangerous Barnacle Garden\nFile:Elite Dangerous Beta 2.03 - Beautiful Ice-Rings and Some Combat\nFile:Elite Dangerous Beta 2.3 - 7 Installation types 4k60\nFile:Elite Dangerous Beta 2.3 - Megaships Cargo + Tanker 4k60\nFile:Elite Dangerous Beta 2.3 Asteroid Belt Base + Asteroid Ship 4k60\nFile:Elite Dangerous Beta 3.3 - World of death - SPOIHAAE XE-X D2-9\nFile:Elite Dangerous Beta 3 Gameplay - How to interdict other players\nFile:Elite Dangerous Beta 3 Trailer HD\nFile:Elite Dangerous Beta Basically Walking out of Jail\nFile:Elite Dangerous Beta Ship Voices - COVAS\nFile:Elite Dangerous Beta Trailer\nFile:Elite Dangerous Beta Trailer HD\nFile:Elite Dangerous Beyond - Chapter Four Announcement\nFile:Elite Dangerous Beyond - Chapter Four Release Date Announcement\nFile:Elite Dangerous Beyond - Chapter One Beta Announcement\nFile:Elite Dangerous Beyond - Chapter One Release Date Announcement\nFile:Elite Dangerous Beyond - Chapter Three Launch Trailer\nFile:Elite Dangerous Beyond - Chapter Two Launch Trailer\nFile:Elite Dangerous Beyond - Chapter Two Release Date Announcement\nFile:Elite Dangerous Beyond - How to Find Material Traders\nFile:Elite Dangerous Beyond logo.png\nFile:Elite Dangerous Beyond logo icon.png\nFile:Elite Dangerous Black Holes - Sagittarius A & Great Annihilator\nFile:Elite Dangerous CMDR Flirble Rasok promoted to Entrepreneur\nFile:Elite Dangerous CQC (Close Quarter Combat)\nFile:Elite Dangerous CQC - Introductory guide\nFile:Elite Dangerous CQC Launch Trailer\nFile:Elite Dangerous CQC Music Mix 1\nFile:Elite Dangerous Calmly Cruising A Langrange Cloud\nFile:Elite Dangerous Canyon Chasing, FA off\nFile:Elite Dangerous Capital Ship Battle Video\nFile:Elite Dangerous CargoHatch Disruptor\nFile:Elite Dangerous Chapter Four - Exploration Tutorial - How to use the new Discovery Tools\nFile:Elite Dangerous Christmas Stream 2021\nFile:Elite Dangerous Chrome Federal Gunship\nFile:Elite Dangerous Cobra Teaser\nFile:Elite Dangerous Cobra Teaser-0\nFile:Elite Dangerous Codex Main Menu Music\nFile:Elite Dangerous Codex Sub Menu Music\nFile:Elite Dangerous Colonial Race Track 1on1 full lap 4k60\nFile:Elite Dangerous Combat Guide (Episode One Thruster Control)\nFile:Elite Dangerous Combat Guide (Episode Two Pip Management)\nFile:Elite Dangerous Combat Zone Capital Ship Battle 2.3 Camera\nFile:Elite Dangerous Commanders Bowman Science Vessel\nFile:Elite Dangerous Commanders Holo- Me Commander creator\nFile:Elite Dangerous Core.png\nFile:Elite Dangerous Core (21).jpg\nFile:Elite Dangerous Crab Nebula Expedition - Detour Eskimo Nebula\nFile:Elite Dangerous Crab Nebula Expedition - Seagull Nebula\nFile:Elite Dangerous Crab Nebula Expedition - The BFG\nFile:Elite Dangerous Crab Nebula Expedition - The Final Jump...\nFile:Elite Dangerous Crab Nebula Expedition - Thor's Helmet\nFile:Elite Dangerous Creepy Emissive Decals (many ships)\nFile:Elite Dangerous DECE Water worlds\nFile:Elite Dangerous Deep core mining in an Anaconda\nFile:Elite Dangerous Dev Diary - Shields\nFile:Elite Dangerous Dev Diary 1- Multiplayer and Ships\nFile:Elite Dangerous Dev Diary 10\nFile:Elite Dangerous Dev Diary 10-0\nFile:Elite Dangerous Dev Diary 2- How the Galaxy will Evolve Over Time\nFile:Elite Dangerous Dev Diary 2- How the Galaxy will Evolve Over Time-0\nFile:Elite Dangerous Dev Diary 3 - Player Roles\nFile:Elite Dangerous Dev Diary 3 - Player Roles-0\nFile:Elite Dangerous Dev Diary 5\nFile:Elite Dangerous Dev Diary 6\nFile:Elite Dangerous Dev Diary 6-0\nFile:Elite Dangerous Dev Diary 7\nFile:Elite Dangerous Dev Diary 8\nFile:Elite Dangerous Development Plan\nFile:Elite Dangerous Discovery - Unusual Nebula\nFile:Elite Dangerous Distant Worlds - Salomé's Message\nFile:Elite Dangerous Don't do Onionhead, kids!\nFile:Elite Dangerous E3 2014 Trailer\nFile:Elite Dangerous E3 Banner art.jpg\nFile:Elite Dangerous EPIC New Camera\nFile:Elite Dangerous Eagle Camo\nFile:Elite Dangerous Exiting a Ship.png\nFile:Elite Dangerous Exploration Activity (with decay) March 2021 (3307)\nFile:Elite Dangerous Explorer\nFile:Elite Dangerous Exploring the Pencil Nebula, XBOX ONE\nFile:Elite Dangerous Fiction Diary 5\nFile:Elite Dangerous Fiction Diary 5-0\nFile:Elite Dangerous Film Competition 2015 - The Imperial Clipper EliteDangerous\nFile:Elite Dangerous Firefly Cross-Over\nFile:Elite Dangerous Fleet Carrier Gamescom Reveal\nFile:Elite Dangerous Fleet Carrier approach and jump sequence\nFile:Elite Dangerous Fleet Carriers Launch Trailer\nFile:Elite Dangerous Flight to Betelgeuse\nFile:Elite Dangerous Flying a Taipan at RES\nFile:Elite Dangerous From Scratch - Trading\nFile:Elite Dangerous Frontier Expo 2017 Content Reveals\nFile:Elite Dangerous Gameplay Demo - IGN Live Gamescom 2014\nFile:Elite Dangerous Gameplay Demo - IGN Live Gamescom 2014-0\nFile:Elite Dangerous Gameplay Demo - IGN Live Gamescom 2014-1\nFile:Elite Dangerous Gamma 1.05 Closer look at Imperial Capital Ship (Majestic Class Interdictor)\nFile:Elite Dangerous Gnosis Thargoid Attack\nFile:Elite Dangerous Going Subterranean\nFile:Elite Dangerous Guardian Beacon\nFile:Elite Dangerous Guardian Structure Beacon Music\nFile:Elite Dangerous Guardian beacon + Obtaining the fighter blueprint\nFile:Elite Dangerous Guardians - Organic Trees?\nFile:Elite Dangerous Guide to Bounty Hunting\nFile:Elite Dangerous Guide to Interdiction\nFile:Elite Dangerous Guide to Neutron Star Jumping\nFile:Elite Dangerous Guide to the Full Spectrum Scanner\nFile:Elite Dangerous Gyre Tree & P05 Anomaly CONFIRMED\nFile:Elite Dangerous HIP 89519 Rubicundrum Lagrange Cloud And Lattice Mineral Spheres.png\nFile:Elite Dangerous HOLLIS GATEWAY, INRA BASE\nFile:Elite Dangerous HUD Mod (EDHM) BETA V1.0\nFile:Elite Dangerous Henry Class Bulk Cargo Ship\nFile:Elite Dangerous High Intensity\nFile:Elite Dangerous Horizons - Air Time on Junga 1\nFile:Elite Dangerous Horizons - Exploring the Unknown - First SRV combat\nFile:Elite Dangerous Horizons - Galaxy In Motion\nFile:Elite Dangerous Horizons - How to Land on Planets\nFile:Elite Dangerous Horizons - Inside the SRV\nFile:Elite Dangerous Horizons - MAIA\nFile:Elite Dangerous Horizons - Tour of The Sol System (Home of Earth) with Landings\nFile:Elite Dangerous Horizons Launch Trailer\nFile:Elite Dangerous Horizons art.jpg\nFile:Elite Dangerous Horizons logo icon.png\nFile:Elite Dangerous Horizons the Pilgrimage to Hutton Orbital ☕- gotta get the MUG!\nFile:Elite Dangerous How To Make Money Smuggling The Hauler\nFile:Elite Dangerous How to Find Chemical Manipulators?\nFile:Elite Dangerous Human City Concept Art.png\nFile:Elite Dangerous INRA Base Attacked By Thargoids\nFile:Elite Dangerous Imperial Cutter\nFile:Elite Dangerous Impressive Ring System with New Asteroids (Beta 2, Bolg 7)\nFile:Elite Dangerous Installation.png\nFile:Elite Dangerous Introducing The Type 7... AKA 'The Flying Brick'\nFile:Elite Dangerous Jellyfish Nebula\nFile:Elite Dangerous Journey\nFile:Elite Dangerous Klatt Enterprises\nFile:Elite Dangerous Lagoon Nebula (Herschel 36)\nFile:Elite Dangerous Lava and Silicate Vapour Geysers\nFile:Elite Dangerous Logo Big.png\nFile:Elite Dangerous Logo Clean Vector Big.png\nFile:Elite Dangerous Logo Text.png\nFile:Elite Dangerous Logo by CMDR Malibu (Final Revision)\nFile:Elite Dangerous Lore Introduction - A definitive guide for new players\nFile:Elite Dangerous Low Earth-Like Orbit, Time Lapse\nFile:Elite Dangerous Low Gas Giant Orbit, Time Lapse\nFile:Elite Dangerous Lowell Class Science Vessel HDR-617\nFile:Elite Dangerous Megaship, The Indra\nFile:Elite Dangerous Mining Tips (Gamma 1.05)\nFile:Elite Dangerous Mission Pack ?\nFile:Elite Dangerous Mountains\nFile:Elite Dangerous Music Video - Beauty in the Chaos\nFile:Elite Dangerous Naphtha Class Tanker FKS-981\nFile:Elite Dangerous Narrative Recap, Chapter 1\nFile:Elite Dangerous New Camera Suite 2.3\nFile:Elite Dangerous Newly Discovered Bark Moulds\nFile:Elite Dangerous Nomad\nFile:Elite Dangerous OST (Disc 1 - Exploration)\nFile:Elite Dangerous OST (Disc 2 - Frameshift & Starports)\nFile:Elite Dangerous OST (Disc 3 - Combat & Extras)\nFile:Elite Dangerous OST Cover.jpg\nFile:Elite Dangerous Ocellus Station cinematic\nFile:Elite Dangerous Oculus Rift DK2 - ADDER COCKPIT-0\nFile:Elite Dangerous Oculus Rift DK2 - ASP EXPLORER COCKPIT\nFile:Elite Dangerous Oculus Rift DK2 - COBRA COCKPIT\nFile:Elite Dangerous Oculus Rift DK2 - EAGLE COCKPIT-0\nFile:Elite Dangerous Oculus Rift DK2 - HAULER COCKPIT\nFile:Elite Dangerous Oculus Rift DK2 - IMPERIAL CLIPPER COCKPIT\nFile:Elite Dangerous Oculus Rift DK2 - ORCA COCKPIT\nFile:Elite Dangerous Oculus Rift DK2 - PYTHON COCKPIT\nFile:Elite Dangerous Oculus Rift DK2 - SIDEWINDER COCKPIT\nFile:Elite Dangerous Oculus Rift DK2 - TYPE 6 COCKPIT-0\nFile:Elite Dangerous Oculus Rift DK2 - TYPE 7 COCKPIT\nFile:Elite Dangerous Oculus Rift DK2 - TYPE 9 COCKPIT\nFile:Elite Dangerous Oculus Rift DK2 - VIPER COCKPIT-0\nFile:Elite Dangerous Odyssey - Atmosphere - Argon (new lighting) patch 9\nFile:Elite Dangerous Odyssey - Atmosphere - Water (new lighting) patch 9\nFile:Elite Dangerous Odyssey - Best of Colonia\nFile:Elite Dangerous Odyssey - Planetary tech 6.0\nFile:Elite Dangerous Odyssey - Settlement Raid - Easy Materials\nFile:Elite Dangerous Odyssey - Spear Thistle Nebula\nFile:Elite Dangerous Odyssey - Surface Settlement Raid - Gameplay Cinematic\nFile:Elite Dangerous Odyssey Announcement Trailer\nFile:Elite Dangerous Odyssey Conflict Zone Update 7 Cinematic\nFile:Elite Dangerous Odyssey Dove Enigma Megaship Interior Cinematic Walkthrough\nFile:Elite Dangerous Odyssey Exploration Cinematic -6\nFile:Elite Dangerous Odyssey Mitterand Hollow - Epsilon Indi\nFile:Elite Dangerous Odyssey Pre-Alpha Fleet-Carrier Interiors Tour Footage\nFile:Elite Dangerous Odyssey Road to Odyssey Part 2 - Forging Your Path\nFile:Elite Dangerous Odyssey Smuggling Mission Cinematic\nFile:Elite Dangerous Odyssey The Road to Odyssey Part 1 - One Giant Leap\nFile:Elite Dangerous Odyssey The Scriveners Clan Dredger Megaship\nFile:Elite Dangerous Organic Growths, HIP 18077\nFile:Elite Dangerous Physical Gamepack Art.jpg\nFile:Elite Dangerous Pilot Training - Basic Combat\nFile:Elite Dangerous Pilot Training - Basic Flight Controls\nFile:Elite Dangerous Pilot Training - Docking\nFile:Elite Dangerous Pilot Training - Galaxy And System Map\nFile:Elite Dangerous Pilot Training - Travel\nFile:Elite Dangerous Pilot Tutorials - CQC\nFile:Elite Dangerous Pilot Tutorials - Wings\nFile:Elite Dangerous Piracy - Asp Explorer Review\nFile:Elite Dangerous Powerplay Banner Xavier Henry.jpg\nFile:Elite Dangerous Powerplay Bubble.jpg\nFile:Elite Dangerous Premiere - Imperial Capital Ship vs Kerrrash and friends!\nFile:Elite Dangerous Premonition Reading from Fantasticon\nFile:Elite Dangerous Progress Diary 09 Alpha Phase One\nFile:Elite Dangerous Progress Diary 09 Alpha Phase One-0\nFile:Elite Dangerous Progress Diary 11\nFile:Elite Dangerous Progress Diary 12\nFile:Elite Dangerous Progress Diary 3\nFile:Elite Dangerous Progress Diary 4\nFile:Elite Dangerous Promo Video\nFile:Elite Dangerous Python interior.png\nFile:Elite Dangerous RPG Preview Pt2 Personal Combat\nFile:Elite Dangerous Racing Colonia.png\nFile:Elite Dangerous Release 1.0 Day one battles\nFile:Elite Dangerous Restitution\nFile:Elite Dangerous Returning to the Bubble from Colonia\nFile:Elite Dangerous Ringed Water world flyby\nFile:Elite Dangerous Road to Jaques Station part2\nFile:Elite Dangerous S4 Sentry Skimmer.png\nFile:Elite Dangerous SRV Exploring near Barnard's Loop\nFile:Elite Dangerous SW2 WP0 Mass Jump 127 CMDRS\nFile:Elite Dangerous Screenshot 2017.09.15 - 01.20.05.98.png\nFile:Elite Dangerous Screenshot 2017.09.27 - 11.21.00.71.png\nFile:Elite Dangerous Screenshot 2017.09.27 - 11.21.07.66.png\nFile:Elite Dangerous Screenshot 2021.01.30 - 22.19.50.37.png\nFile:Elite Dangerous Screenshot 2021.01.31 - 10.37.54.06.png\nFile:Elite Dangerous Self Destruct Sequence\nFile:Elite Dangerous Ship Destroyed, Bad Thargy !\nFile:Elite Dangerous Shorts 02 - \"La Mamba\"\nFile:Elite Dangerous Sidewinder Mk1 - Spacedock\nFile:Elite Dangerous Silicate Vapour Geysers Day Time\nFile:Elite Dangerous Small Worlds 3 Expedition WP3 Mass Jump\nFile:Elite Dangerous Some Interesting Bits.\nFile:Elite Dangerous Soundtrack - Menu\nFile:Elite Dangerous Splash Screen.png\nFile:Elite Dangerous Stand With Salomé April 29th 3303 CTRL+ALT+SPACE 2017\nFile:Elite Dangerous Standard Beta 2.04 Federation hunting party\nFile:Elite Dangerous Standard Beta 3.9 Searfoss Plant on release night\nFile:Elite Dangerous State of the Galaxy\nFile:Elite Dangerous Station Racing.png\nFile:Elite Dangerous Station Walking.png\nFile:Elite Dangerous Stellar Phenomena\nFile:Elite Dangerous Stellar Phenomena -2\nFile:Elite Dangerous Stolon Trees CONFIRMED\nFile:Elite Dangerous Stuart Retreat\nFile:Elite Dangerous THARGOID 2.4\nFile:Elite Dangerous THE BLACK HOLE\nFile:Elite Dangerous Taylor Keep INRA Base\nFile:Elite Dangerous Teaser\nFile:Elite Dangerous Thargoid \"Barnacle\" Sound\nFile:Elite Dangerous Thargoid Basilisk Intercepter\nFile:Elite Dangerous Thargoid Scout\nFile:Elite Dangerous Thargoids. The Angry Medusa.\nFile:Elite Dangerous The Center of our Galaxy (Part2)\nFile:Elite Dangerous The Commanders.jpg\nFile:Elite Dangerous The Enigma Expedition 3304 Vol 5.1 - CMDR DoveEnigma13\nFile:Elite Dangerous The Guardians.jpg\nFile:Elite Dangerous The Longest Undocking... In the World.\nFile:Elite Dangerous The Vomit Comet goes Even Further Beyond\nFile:Elite Dangerous Timelapse - \"Planet Lave\"\nFile:Elite Dangerous Timelapse Sparks Of The Galaxy 1\nFile:Elite Dangerous Timeline - A definitive guide for new players, part 2.\nFile:Elite Dangerous Trading Dev Diary\nFile:Elite Dangerous Trading Guide\nFile:Elite Dangerous Trailer\nFile:Elite Dangerous Tutorial Fast Supercruise Travel\nFile:Elite Dangerous Tutorials - Full Engineering Process A to Z\nFile:Elite Dangerous Tutorials - How to Level Up With Engineers Quickly?\nFile:Elite Dangerous Tutorials - How to Navigate a Star System - Part 1\nFile:Elite Dangerous Tutorials - How to Navigate a Star System - Part 2\nFile:Elite Dangerous Type 10 landing on a planet (daytime)\nFile:Elite Dangerous UA Features\nFile:Elite Dangerous Universal Cartographics Theme\nFile:Elite Dangerous Unknown Ship HD.png\nFile:Elite Dangerous VR Falling Down A Mountain (Oculus Rift S)\nFile:Elite Dangerous VR gameplay - 60 fps Large Pixel Collider\nFile:Elite Dangerous VY Canis Majoris\nFile:Elite Dangerous Velasquez Medical Research Centre\nFile:Elite Dangerous Venita's Trip Horsehead nebula\nFile:Elite Dangerous Void Hearts CONFIRMED\nFile:Elite Dangerous Walkthrough - Docking Training - Docking\nFile:Elite Dangerous Walkthrough - Travel Training - Travel\nFile:Elite Dangerous Water Geysers\nFile:Elite Dangerous Wings Trailer\nFile:Elite Dangerous ctrl + alt + space competition 2017 Time is a great healer\nFile:Elite Dangerous deutsch Beyond Chapter 4 HUGE EMA Type 9 Heavy\nFile:Elite Dangerous does The Sky at Night - Plough, Big Dipper, Ursa Major\nFile:Elite Dangerous gamma 1.04 Sagittarius A* vs CMDR Zulu Romeo\nFile:Elite Dangerous geysers v. 1.1\nFile:Elite Dangerous hyperspace jump.png\nFile:Elite Dangerous logo icon.png\nFile:Elite Dangerous search and rescue with the Fuel Rats\nFile:Elite Dangerous – Capital ships battle\nFile:Elite Exploration Animation.gif\nFile:Elite Fabulous - The Eclipse Standalone version without poem\nFile:Elite Faulcon DeLacy Anaconda - Spacedock\nFile:Elite Finding the New Horizons probe\nFile:Elite Horizons Misty Zoom\nFile:Elite Out to the Black\nFile:Elite Pilots Federation Logo (1984).png\nFile:Elite Reclamation - Science Fiction - Book Trailer - Drew Wagar (Updated with new footage)\nFile:Elite Reclamation - Science Fiction - Book Trailer - Drew Wagar (Updated with new footage)-0\nFile:Elite Reclamation Book Trailer (LaveCon Special Edition)\nFile:Elite Reclamation Teaser Trailer\nFile:Elite Small Worlds 2 WP3 Mass Conga Jump - NGC 1333\nFile:Elite Sol Earth.jpg\nFile:Elite Sol Earth2.jpg\nFile:Elite Sports- SRV Stunt Show\nFile:Elite Squad! (Elite Dangerous Police Squad parody thing)\nFile:Elite Strange Worlds - Episode 13 - Colonia Elite Dangerous Fan-Made Series\nFile:Elite Strange Worlds - Episode Three - The Fine Ring Elite Dangerous Fan-Made Series\nFile:Elite Tales From The Frontier\nFile:Elite TeamPhoto cropped.jpg\nFile:Elite The Dark Wheel Novella.jpg\nFile:Elite Torval Insignia.png\nFile:Elite Trade Animation.gif\nFile:Elite Travel Guide v.1.jpg\nFile:Elite dangerous - Achenar\nFile:Elite dangerous - Aldebaran\nFile:Elite dangerous - Antares\nFile:Elite dangerous - Beagle point (Ceeckia ZQ-L C24-0)\nFile:Elite dangerous - Flight in the atmosphere (fan game demo)\nFile:Elite dangerous - Jackson's Lighthouse\nFile:Elite dangerous - Maia\nFile:Elite dangerous - Sagittarius A\nFile:Elite dangerous - Sol\nFile:Elite dangerous - Sothis\nFile:Elite dangerous - Unknown probe\nFile:Elite dangerous 4. Suns\nFile:Elite dangerous beta 2-1.jpg\nFile:Elite dangerous beta 2-10.jpg\nFile:Elite dangerous beta 2-11.jpg\nFile:Elite dangerous beta 2-12.jpg\nFile:Elite dangerous beta 2-13.jpg\nFile:Elite dangerous beta 2-14.jpg\nFile:Elite dangerous beta 2-15.jpg\nFile:Elite dangerous beta 2-16.jpg\nFile:Elite dangerous beta 2-17.jpg\nFile:Elite dangerous beta 2-18.jpg\nFile:Elite dangerous beta 2-19.jpg\nFile:Elite dangerous beta 2-2.jpg\nFile:Elite dangerous beta 2-20.jpg\nFile:Elite dangerous beta 2-21.jpg\nFile:Elite dangerous beta 2-22.jpg\nFile:Elite dangerous beta 2-23.jpg\nFile:Elite dangerous beta 2-24.jpg\nFile:Elite dangerous beta 2-25.jpg\nFile:Elite dangerous beta 2-26.jpg\nFile:Elite dangerous beta 2-27.jpg\nFile:Elite dangerous beta 2-28.jpg\nFile:Elite dangerous beta 2-29.jpg\nFile:Elite dangerous beta 2-3.jpg\nFile:Elite dangerous beta 2-30.jpg\nFile:Elite dangerous beta 2-31.jpg\nFile:Elite dangerous beta 2-4.jpg\nFile:Elite dangerous beta 2-5.jpg\nFile:Elite dangerous beta 2-6.jpg\nFile:Elite dangerous beta 2-7.jpg\nFile:Elite dangerous beta 2-8.jpg\nFile:Elite dangerous beta 2-9.jpg\nFile:Elite ship scale video 2021 edition\nFile:Elitethruster.png\nFile:Elitle Dangerous.png\nFile:Elvira-Martuuk-Engineer-base.png\nFile:Elvira-Martuuk-Long-Sight-Base.png\nFile:ElviraFace.jpg\nFile:Elvira Martuuk.jpg\nFile:Elwood's Vision.png\nFile:Emerald-Moon-in-Cemiess.png\nFile:Emerald-Planet-in-Cemiess.png\nFile:Emissive Munitions.jpg\nFile:EmperorsDawnImperialNavyShip.png\nFile:Empire-Achenar-System-Map.png\nFile:Empire.jpg\nFile:Empire.png\nFile:EmpireInsignia.png\nFile:Empire Capitalship 01.jpg\nFile:Empire Capitalship 02.jpg\nFile:Empire Capitol Achenar 6D.png\nFile:Empire Courier.jpg\nFile:Empire Fighter 01.jpg\nFile:Empire Fighter 02.png\nFile:Empire Fighter 03.jpg\nFile:Empire Rebellion art.png\nFile:Empire insignia simple.png\nFile:Empire vector.svg\nFile:Empyrean Void Hearts and Octahedral Pods - Codex Tour\nFile:Enceladus-Sol.png\nFile:Encoded Material Trader at Clement Orbital.png\nFile:Enemy-flag.svg\nFile:Energy Link.png\nFile:Energylink pre-alpha.png\nFile:Enforcer Cannon.jpg\nFile:Engine-disruption.svg\nFile:Engine-reboot.svg\nFile:Engineer-Ram-Tah-Phoenix-Base.png\nFile:Engineer Chloe Sedesi.png\nFile:Engineer icon.svg\nFile:Engineers Default.png\nFile:Engineers Selected.png\nFile:Engines.jpg\nFile:Enzyme-Missiles.png\nFile:Enzyme Missile Rack in Outfitting.png\nFile:Enzyme Missile specs.png\nFile:Enzyme missile.gif\nFile:Eorgh cluster (1).png\nFile:Eorgh cluster (2).png\nFile:Eotienses.png\nFile:Eotienses A 3.jpg\nFile:Epsilon-Eridani-Star-System.png\nFile:Epsilon Indi.png\nFile:Equipment Default.png\nFile:Equipment Sale.png\nFile:Equipment Selected.png\nFile:Eranin-System-Map.png\nFile:Eranin II\nFile:Erasmus Talbot composer.jpg\nFile:Eravate station.jpg\nFile:Errero.jpg\nFile:Error No ID icon.png\nFile:Escape interdiction 0225.jpg\nFile:Eskimo-Nebula-Inside-Asp.png\nFile:Eskimo-Nebula-Pilot.png\nFile:Eskimo-Nebula.png\nFile:Eta-Cassiopeiae-Federation-Mathew-Maddison.png\nFile:Eta Carinae Nebula.png\nFile:Eta Cassiopeiae.png\nFile:Eta Cephei - Elite Dangerous\nFile:Ethgreze-Tea-Buds.png\nFile:Ethos Combat.svg\nFile:Ethos Covert.svg\nFile:Ethos Finance.svg\nFile:Ethos Social.svg\nFile:Etienne-Dorn-Elite-Dangerous.png\nFile:Eudaemon-Anchorage-Station-Construction.png\nFile:Europa-Sol.png\nFile:Europa-and-Jupiter-3303.jpg\nFile:Europa-and-Jupiter.jpg\nFile:Eurus-Galactic-Region.png\nFile:Euryale.png\nFile:Eurybia.png\nFile:Evacuation Shelter.png\nFile:Event Horizon Science Relay.png\nFile:Everything you need to know about Bulkheads - Elite Dangerous Internals Guide\nFile:Everything you need to know about Power Plants - Elite Dangerous Internals Guide\nFile:Everything you need to know about the Frame Shift Drive - Elite Dangerous Internals Guide\nFile:Evolution-of-the-Cobra-Ship-Elite-Universe.png\nFile:Evolution-of-the-Thargoids.png\nFile:Example.jpg\nFile:Exbeur-System-Map.png\nFile:Executioner ADS stock vs ScopeUpgrade.png\nFile:Exobiologist Elite icon.png\nFile:Exobiology.png\nFile:Exobiology alpha.png\nFile:Exopod render.png\nFile:Expansion Exploration.png\nFile:Experimental-Effect.png\nFile:Experimental Habitat.png\nFile:Exphiay.png\nFile:Exploration-Camp-JSPR-003---COL-285-SECTOR-OZ-N-C7-13-planet-BC-3-A.png\nFile:Exploration.png\nFile:Exploration Adder.png\nFile:Explorer's Anchorage complete.png\nFile:Explorer's Anchorage planetview.png\nFile:Explorer's Anchorage stage1.png\nFile:Explorer's Anchorage stage1 front.png\nFile:Explorer's Anchorage stage1 thruster.png\nFile:Explorer's Anchorage stage2.png\nFile:Explorer's Anchorage stage3.png\nFile:Explorer's Anchorage stage4.png\nFile:Explorer's Anchorage stage5.png\nFile:Explorer Elite icon.png\nFile:Explorer Heart Soul Nebula.png\nFile:Explorer Infographic 000 ElDubardo.jpg\nFile:Explorer in Station01.jpg\nFile:Explorer in Supercruise01.jpg\nFile:Explorer in Supercruise02.jpg\nFile:Exploring-Elite-Dangerous-Profit.png\nFile:Exploring Elite Dangerous - Episode 24 - NGC 6357 Nebula\nFile:Exploring New Guardian Sites with Kaz and Yoda\nFile:Exploring some Xeno-Forests in the Elite- Dangerous Odyssey Alpha\nFile:Exploring the Frontier in Elite Dangerous\nFile:Exploring the Mahon Pumpkin Patch\nFile:Explosives.png\nFile:External Galaxies Below Andromeda.png\nFile:Extra backpack capacity.png\nFile:Extractors.png\nFile:F0.jpg\nFile:F2.jpg\nFile:F63-Condor-Cockpit.png\nFile:F63-Condor-Medium-Landing-Pad.png\nFile:F63-Condor-shipwreck-planet-2.png\nFile:F63 Condor.jpg\nFile:F63 Condor.png\nFile:F63 Condor ConceptArt 000.jpg\nFile:F63 Condor Fighter Blueprint.png\nFile:F63 Condor close-up.png\nFile:F63 Condor fact.png\nFile:F63 condor size comparision.jpg\nFile:F9 Vb Wredguia ZF-F d11-23.png\nFile:FAQ Default.png\nFile:FAQ Selected.png\nFile:FAS BOTTOM HARDPOINT.jpg\nFile:FAS TOP HARDPOINT.jpg\nFile:FAScockpit.png\nFile:FAScockpit2.png\nFile:FDL Huge pulse laser from front.jpg\nFile:FDL PF.png\nFile:FDL huge pulse laser from side.jpg\nFile:FDL in Formation2.png\nFile:FDL vs Boeing 747-400.jpg\nFile:FNS-Kracer-1.jpg\nFile:FNS Pioneer.jpg\nFile:FOSTER.jpg\nFile:FSS Scanner + Mapping Guide Exploration guide Elite Dangerous 3,3\nFile:F (White) Star - HIP 65201 A.jpeg\nFile:F (White super giant) Star - HD 164684.jpeg\nFile:FacebookBanner.jpg\nFile:Facece.png\nFile:Faction-Influence-Star-System.png\nFile:FactionInsignia.jpg\nFile:Faction Government Type.png\nFile:Factions.jpg\nFile:Factions.png\nFile:Factions Default.png\nFile:Factions Selected.png\nFile:Fairfax Vision HIP 22550.png\nFile:Fallen-Nav-Beacon.png\nFile:Family Tree.png\nFile:Far-3kpc-Arm.png\nFile:Far God cult CG promo.png\nFile:Far God cult logo.png\nFile:Farragut-Battle-Cruiser-Blueprint.png\nFile:Farragut-Battle-Cruiser-FNS-Alacrity.png\nFile:Farragut-Battle-Cruiser-FNS-Angelos.png\nFile:Farragut-Battle-Cruiser-FNS-Bellerophon.png\nFile:Farragut-Battle-Cruiser-FNS-Glory.png\nFile:Farragut-Battle-Cruiser-FNS-Iris.png\nFile:Farragut-Battle-Cruiser-Surface.jpg\nFile:Farragut-Battle-Cruiser-Surface.png\nFile:Farragut Battle Cruiser FNS Agamemnon.png\nFile:Farragut Capital Ship Dock.png\nFile:Farragut Fed. Battle Cruiser 1.png\nFile:Farragut Fed. Battle Cruiser 2.png\nFile:Farragut Fed. Battle Cruiser 3.jpg\nFile:Farragut Fed. Battle Cruiser 4.jpg\nFile:Fas2.png\nFile:Fasdocked.png\nFile:Fast Empire and Federation Elite Dangerous guide!\nFile:Fau8eps.png\nFile:Favicon.ico\nFile:Fdl-pp.png\nFile:Fdl2.jpg\nFile:Fed corvette.png\nFile:Federal-Assault-Ship-Landed.png\nFile:Federal-Assault-Ship-Space-2.png\nFile:Federal-Assault-Ship-Space-Stern.png\nFile:Federal-Assault-Ship-Space.png\nFile:Federal-Assault-Ship-docked-2.png\nFile:Federal-Assault-Ship-docked.png\nFile:Federal-Defence-Turret-Barnacle.png\nFile:Federal-Dropship-Cockpit-Front.png\nFile:Federal-Dropship-Planet.png\nFile:Federal-Dropship-Planetary-Ring.jpg\nFile:Federal-Dropship-Planetary-Ring.png\nFile:Federal-Dropship-cockpit.png\nFile:Federal-Gunship-2.png\nFile:Federal-Gunship-Fanart.png\nFile:Federal-Gunship-Profile.png\nFile:Federal-Gunship-white.png\nFile:Federal-Security-Services-Logo-Ad.png\nFile:FederalCorvette.PNG\nFile:FederalDropship000.jpg\nFile:Federal Assault Ship.jpg\nFile:Federal Assault Ship.png\nFile:Federal Assault Ship 2.png\nFile:Federal Cityscape.png\nFile:Federal Corvette Sneak Peek 90.jpg\nFile:Federal Corvette on Synuefe EU-Q c21-10.png\nFile:Federal Dropship.png\nFile:Federal Dropship Cockpit exterior.jpg\nFile:Federal Dropship Planet.jpg\nFile:Federal Dropship Side radiator banks.jpg\nFile:Federal Dropship Top radiator banks.jpg\nFile:Federal Gunship\nFile:Federal Gunship.png\nFile:Federal Gunship 2.png\nFile:Federal Gunship Montage\nFile:Federal Gunship rank Ensign.jpg\nFile:Federal Gunship sneak peek firing beams 01.jpg\nFile:Federal Press Conference.png\nFile:Federal corvette on the ground.jpg\nFile:Federation-Federal-Navy-Fleet-1.png\nFile:Federation-Federal-Navy-Fleet-2.png\nFile:Federation.jpg\nFile:Federation.png\nFile:FederationInsignia.png\nFile:Federation Rebellion art.png\nFile:Federation insignia simple.png\nFile:Federation vector.svg\nFile:Fedral corvet on the ground.jpg\nFile:Feedback cascade.jpg\nFile:Feel Young - Elite Dangerous Hauler\nFile:Fehu.png\nFile:Felicia Winters.png\nFile:Felicia Winters vector.svg\nFile:Felicity-Farseer-Engineer-Base.png\nFile:FelicityFace.jpg\nFile:Fer-De-Lance-Docked-Close-Up.png\nFile:Fer-De-Lance-Docked-Station.png\nFile:Fer-De-Lance-Landed.png\nFile:Fer-De-Lance-Launches-From-Planet.png\nFile:Fer-De-Lance-Top-View-Docked.png\nFile:Fer-De-Lance-Weapons-Deployed.png\nFile:Fer-De-Lance-in-Witch-space.png\nFile:Fer-De-Lance-rear-side-docked.png\nFile:Fer-de-Lance-Cockpit.png\nFile:Fer-de-Lance-ship-top-view.png\nFile:Fer-de-Lance-top-diagonal-ship-closeup.png\nFile:Fer-de-Lance - Profile.png\nFile:Fer-de-Lance - The Elite Dangerous Wiki - Wikia - 2015-11-29 03.20.49.png\nFile:Fer-de-Lance - The Elite Dangerous Wiki - Wikia - 2015-11-29 03.21.39.png\nFile:Fer-de-Lance - Zorgon Peterson Elite Dangerous\nFile:Fer-de-lance panorama.jpg\nFile:Fer de Lance.jpg\nFile:Fer de lance amend Comp.jpg\nFile:Ferdelance.jpg\nFile:Fesh.jpg\nFile:Fetus-Nebula.png\nFile:Ffe.jpg\nFile:Ffe2b38922a4824bce1f6d7b1f2109be.jpg\nFile:Fgfg.jpg\nFile:Field Major..png\nFile:Fighter-Hangar-SLF.png\nFile:FighterHangar.png\nFile:Fighter Pilots - Elite Dangerous Horizons Pilot Training\nFile:Fighter launch.jpg\nFile:Fighters - Elite Dangerous Horizons Pilot Training\nFile:Fighters tab in role panel.jpg\nFile:Finding Geysers in Elite Dangerous\nFile:Fire-Opal.png\nFile:First-Thargoid-Encounter-3125.png\nFile:First Contact with Thargoids in Elite Dangerous\nFile:First encounters1 320.jpg\nFile:Fish-raw.jpg\nFile:Fisher's-Rest-Megaship.jpg\nFile:Fishers Rest and Dolphin.jpg\nFile:Fixed burst laser inertial impact.jpg\nFile:Fixed weapon icon.png\nFile:Flame-Nebula.png\nFile:Flashback Frontier Elite 2 - How Much Difference has 25 Years Made?\nFile:Flavum Chrysal.png\nFile:Fleet Carrier.png\nFile:Fleet Carrier Concourse preview.png\nFile:Fleet Carrier Odyssey\nFile:Fleet Carrier Teaser\nFile:Fleet Carrier USCSS Nostromo Pit Stop\nFile:Fleet Carrier and Mamba.png\nFile:Fleet Carrier and Type-7.png\nFile:Fleet Carrier hyperspace drop.png\nFile:Fleet Carrier jumping in 3rd person view - Elite Dangerous beta\nFile:Fleet Carrier management UI.png\nFile:Fleet Carrier overview 1.png\nFile:Fleet Carrier overview 2.png\nFile:Fleet Carrier overview 3.png\nFile:Fleet Carrier overview 4.png\nFile:Fleet Carrier rear view.png\nFile:Fleet Carrier reveal.png\nFile:Fleet Carrier schematic view.png\nFile:Fleet Carriers - Content Reveal\nFile:FlightAssistOff.jpg\nFile:Flight Assist Off docking with no HUD in Elite Dangerous\nFile:Flight Deck.png\nFile:FlightsuitHelmetRemlok.jpg\nFile:Flightsuit combatsketch01.jpg\nFile:Flying.jpg\nFile:Fonticulua.jpg\nFile:Fonticulua Campestris.png\nFile:Fonticulua Campestris - Teal.jpg\nFile:Fonticulua Digitos.png\nFile:Fonticulua Digitos - Amethyst.jpg\nFile:Fonticulua Lapida.png\nFile:Fonticulua Lapida - Amethyst.jpg\nFile:Fonticulua Lapidus.png\nFile:Fonticulua Segmentatus.png\nFile:Fonticulua Upupam - Sage.jpg\nFile:For Glory! - An Elite Dangerous Montage\nFile:For the love of the game\nFile:Force Field Security Barrier.jpg\nFile:Forcefields.jpg\nFile:Forester's Choice.png\nFile:Forester's Choice and Agricultural Installation.png\nFile:Formidine-Rift.jpg\nFile:Formorian Squid Mollusc - Codex Tour\nFile:Fort Asch.png\nFile:Fort Asch 2.png\nFile:Fort Asch Diamondbacks.jpg\nFile:Fort Asch beacon.png\nFile:Fort Asch illuminated.png\nFile:Fort Asch scrapyard.png\nFile:Forum new.gif\nFile:Forums.png\nFile:Foster beta.png\nFile:Foster beta1.png\nFile:Fotostrecke Weltraritaeten- Taaffeit-G-EmpireTheWorldOfGems.jpg\nFile:Founder1.png\nFile:Founders-World-System-Map.png\nFile:Founders-World.png\nFile:Frag Grenade.png\nFile:FragmentCannon Ingame.png\nFile:FrameShiftDriveInterdictor Ingame.png\nFile:FrameShiftDrive Ingame.png\nFile:FrameShiftWakeScanner Ingame.png\nFile:Frame Shift Drive.png\nFile:Freagle 01.jpg\nFile:Freagle 02.jpg\nFile:Free Anaconda from Hutton Orbital\nFile:Freedom-02.jpg\nFile:Freighter 3.jpg\nFile:Freighter 3 Concept.jpg\nFile:Fresh-cutter.jpg\nFile:Frey 4 B A Gas Vent.jpg\nFile:Friendly-base.svg\nFile:Friendly-escort.svg\nFile:Friendship Drive Engaged\nFile:From HR 7729 to HIP 99940.jpg\nFile:From Mouse To T-Flight HOTAS X - Part 1 Elite Dangerous Tutorial\nFile:From Sol to Sagittarius A timelapse - Elite Dangerous\nFile:FrontPage.jpg\nFile:Frontier-Developments-Cobra-Engine-Logo.png\nFile:Frontier-Elite-2-Ad.jpg\nFile:Frontier-Elite-2-Box-Back.png\nFile:Frontier-Elite-2-Box-Front.png\nFile:Frontier-Elite-2-Box-Set.png\nFile:Frontier-Elite-2-Eagle.jpg\nFile:Frontier-Elite-2-Logo.png\nFile:Frontier-Elite-2-Reviews.jpg\nFile:Frontier-Elite-2-Star-Map-Scan.jpg\nFile:Frontier-Elite-2-Stories-of-Life-on-the-Frontier.png\nFile:Frontier-Elite-2-Trivia.png\nFile:Frontier-Expo-2017-Photo.png\nFile:Frontier-Expo-2017.png\nFile:Frontier-First-Encounters-Artwork.png\nFile:Frontier-First-Encounters-Box-Back-US.png\nFile:Frontier-First-Encounters-Box-Back.jpg\nFile:Frontier-First-Encounters-Box-Back.png\nFile:Frontier-First-Encounters-Box-Content-US.png\nFile:Frontier-First-Encounters-Box-Front-US.png\nFile:Frontier-First-Encounters-Box-Set.png\nFile:Frontier-First-Encounters-Flyer.png\nFile:Frontier-Logo-transparent.png\nFile:Frontier-developments.jpg\nFile:Frontier-stories-3a-jaques-the-cyborg-barman.gif\nFile:Frontier.gif\nFile:Frontier.jpg\nFile:Frontier.png\nFile:Frontier - First Encounters gameplay (PC Game, 1995)\nFile:Frontier Developments - 'Ed's Stream Highlights' (from my final stream)\nFile:Frontier Elite 2 Intro - The Dangerous Remake (2016 Uncle Art Orchestral Version)\nFile:Frontier Elite II Intro on Amiga 720p\nFile:Frontier Elite II Ships.jpg\nFile:Frontier Expo 2017 Pilot Suit.png\nFile:Frontier Expo 2017 Show Highlights\nFile:Frontier Expo logo.png\nFile:Frontier First Encounters Cobra Mk1.jpg\nFile:Frontier First Encounters Ship Chart.png\nFile:Frontier First Encounters Viper.jpg\nFile:Frontier Fundamentals - Episode 1 - So You Want to be a Pilot\nFile:Frontier Fundamentals - Episode 7 - Ship Guide\nFile:Frontier Logo Black.png\nFile:Frontier Points 500.png\nFile:Frontier elite2 screenshot.gif\nFile:Frontline Solutions.png\nFile:Frontline Solutions logo.png\nFile:FrutexaSponsae lime.png\nFile:Frutexa Flabellum.png\nFile:Frutexa Flabellum Emerald.png\nFile:Frutexa Flammasis - Green.png\nFile:Frutexa Metallicum - Grey.jpg\nFile:Fsd-reboot.svg\nFile:Fuel-Rats-Fuel-Procedures.png\nFile:Fuel-Rats-Need-Fuel.png\nFile:Fuel-Scoop-Guide-Sidewinder.png\nFile:FuelScoop Ingame.png\nFile:FuelTank Ingame.png\nFile:FuelTransfererLimpetController Ingame.png\nFile:FuelTransferer Attached.png\nFile:FuelTransferer Expired.png\nFile:FuelTransferer Incoming.png\nFile:Fuel Rat meets Thargoid Fanart.png\nFile:Fuel Rats - Fleet Carrier Rescue\nFile:Fuel Rats Advert\nFile:Fuel Rats Case Red (Elite Dangerous)\nFile:Fuel Rats Decal and Paintjob.jpg\nFile:Fuel Rats Logo.png\nFile:Fuel Rats Logo 2.png\nFile:Fuel Rats ship.jpg\nFile:Fuel Tank.png\nFile:Fuel emergency.jpg\nFile:Fumaroles-Planet-SRV.jpg\nFile:Fumaroles-in-Wrupeou-BL-J-C11-85.png\nFile:Fumaroles Col 173 Sector KY-Q D5-47 15 F A.jpg\nFile:Fumerola Nitris - White.png\nFile:Fungal-Brain-Tree-Field.jpg\nFile:Fungal-Space-Pumpkins-HIP-18077.png\nFile:Fungal-Tree-Field.jpg\nFile:Fungal Brain Tree.png\nFile:Fungal Brain Tree SRV.jpg\nFile:Fungal Tree.png\nFile:Fungal Tree SRV.jpg\nFile:Fungoida Bullarium Peach.png\nFile:Fungoida Bullarum.png\nFile:Fungoida Gelata.jpg\nFile:Fungoida Setisis.png\nFile:Fungoida Setisis - Peach.png\nFile:Fungoida Setisis - Yellow.jpg\nFile:Fungoida Stabitis - Blue.png\nFile:Further-Stories-of-life-on-the-Frontier-Book-Cover.png\nFile:Futuristic Cityscape.png\nFile:G4 Vab Wredguia AG-F d11-24 A.png\nFile:GCS Sarasvati.png\nFile:GD140systemview.jpg\nFile:GGC on Krait MkII.jpg\nFile:GQuUIfz.jpg\nFile:GU-97 Fighter.png\nFile:GUI pano.jpg\nFile:G (White-Yellow) Star - Prua Phoe ZF-L d9-1762 B.jpeg\nFile:Gagarin-Gate-Planetary-Outpost.png\nFile:GalNet-Audio-logo.png\nFile:GalNet-and-Type-9.jpg\nFile:GalNet.jpg\nFile:GalNet News Audio - Elite Dangerous - ESRB Teen\nFile:GalNet newsletter header.png\nFile:Galactic-Aphelion-Region.png\nFile:Galactic-Bar-Region.png\nFile:Galactic-Cooperative-Galcop-Logo.png\nFile:Galactic-Insurance-Logo.png\nFile:Galactic-Insurance-Pilot.png\nFile:Galactic-Logistics-Elite-Dangerous.png\nFile:Galactic-Plane-Far-Away.png\nFile:Galactic-Plane-OEVASY SG-Y D0 Salome Reach.png\nFile:Galactic Mapping Project logo.png\nFile:Galaxies Above Andromeda.png\nFile:Galaxies Directly Down.png\nFile:Galaxies East Up.png\nFile:Galaxies Magellanic Clouds.png\nFile:Galaxies North Down.png\nFile:Galaxies West up.png\nFile:Galaxy-Rise-Milky-Way-Planet.png\nFile:Galileo station.jpg\nFile:Gallite.png\nFile:Gallium-Metal.png\nFile:Galnet-News.png\nFile:Galnet-logo.png\nFile:Galnet.svg\nFile:Galnet News Digest Special- The Crash of The Gnosis\nFile:Galnet hacks.jpg\nFile:GammaEarth1.jpg\nFile:GammaEarth2.jpg\nFile:Gandharvi.png\nFile:Ganymede 3.0.png\nFile:Ganymede in 3303.jpg\nFile:Garethedwardspark.jpg\nFile:Gas-Giant-Asp-Explorer.png\nFile:Gas-Giant-Class-I.png\nFile:Gas-Giant-Class-III-180px.png\nFile:Gas-Giant-Class-IV-180px.png\nFile:Gas-Giant-Close-Up.png\nFile:Gas-Giant-Planetary-Ring-Col-359-Sector-MW-V-D2-62.png\nFile:Gas-Giant-Planetary-Ring.png\nFile:Gas-Giant-Storm-Anaconda-2.png\nFile:Gas-Giant-Storm-Anaconda.png\nFile:Gas-Giant-Water-based-Life-Radioplankton.png\nFile:Gas-Vents-Beacon-on-LTT13904-B-1-A.png\nFile:Gas-Vents-and-SRV-1.png\nFile:Gas-Vents-and-SRV-2.png\nFile:Gas-Vents-and-SRV.png\nFile:Gas Giant Ammonia Based Life.png\nFile:Gas Giant Ammonia based Life.png\nFile:Gas Giant Class V.png\nFile:Gas Giant Ring system SRV.jpg\nFile:Gas Giant SRV ASP.jpg\nFile:Gas Giant Water Based Life.png\nFile:Gas Vents.jpg\nFile:Gas giant and star png.png\nFile:Gas giant water based.jpg\nFile:Gas giant with ammonia-based life Wredguia EP-K b37-0 3.png\nFile:Gas giant with ammonia based life.png\nFile:Gas giant with water-based life Wredguia EP-K b37-0 4.png\nFile:Gate.jpg\nFile:Gateway.png\nFile:Gauss c1.png\nFile:GemFX Graphics Mod.jpg\nFile:Generaion ship phobos.png\nFile:Generation Ship Achlys.png\nFile:Generation Ship Atlas.jpg\nFile:Generation Ship Lycaon.jpg\nFile:Generation Ship Odysseus.jpg\nFile:Generation Ship Pleione.jpg\nFile:Generation Ship Thetis.jpg\nFile:Generationship Empimetheus.png\nFile:Genetic Sampler area scan.png\nFile:Geo and Bio Materials.jpg\nFile:Geological Equipment.png\nFile:Geological Survey 23B.png\nFile:Gerasian-Gueuze-Beer.png\nFile:GerdullaPirates.jpg\nFile:Get Ready Commanders! - Elite Dangerous 16.12.14\nFile:Getting rich from piracy 3.3 Update Blood Diamond runs Elite Dangerous\nFile:Geyser.jpg\nFile:Geysers, Fumaroles and the sights along the Road to the Northeast.\nFile:Geysers Alectrona 2 A.png\nFile:Giant-Verrix-art-by-Krillakov.png\nFile:Gimballed weapon icon.png\nFile:Giryak.png\nFile:Glacial Malphite picture.jpg\nFile:Glassy carbon.jpg\nFile:Globe Mollusc Cobalteum.png\nFile:Globe Mollusc Croceum.png\nFile:Globe Mollusc Ostrinum.png\nFile:Globe Mollusc Roseum and Anaconda.png\nFile:Gnosis-Megaship-Side.png\nFile:Gnosis-Megaship.jpg\nFile:Gnosis.jpg\nFile:Gnosis.png\nFile:Gnosis Flight Plan.png\nFile:Golconda Initiative Decal.png\nFile:Gold-Nugget.png\nFile:Gold Rush Mining.png\nFile:Goldcanister online.jpg\nFile:Golden-Elite-Dangerous-Logo.png\nFile:Golden-Elite-Logo.png\nFile:Golden Elite logo cropped.png\nFile:Golden Type-6 store icon.png\nFile:Goliath's Rest.png\nFile:Goliath-planet.png\nFile:Goliath.jpg\nFile:Goliath2.jpg\nFile:Goliath pic1.jpg\nFile:Goliath pic2.jpg\nFile:Gorbatko reserve.JPG\nFile:Goslarite.png\nFile:Gourd Molluscs of the Inner Orion - Elite Dangerous Codex\nFile:Grade-1.png\nFile:Grade-2.png\nFile:Grade-3.png\nFile:Grade-4.png\nFile:Grade-5.png\nFile:Graph.png\nFile:Graph GalNet.png\nFile:Gravity Canyon exploration and base jumping - Elite Dangerous Cinematic - PS4\nFile:Gray-Mamba-ship-sideview-2.png\nFile:Great Annihilator.png\nFile:Great Annihilator A 0356.jpg\nFile:Great Annihilator A 716km away 0330.jpg\nFile:Great Annihilator B 0355.jpg\nFile:Great Britain British-Isles.jpg\nFile:GreenCargoContainer.png\nFile:Green boundy line at 40LS 0379.jpg\nFile:Grey and Station-Orrere.png\nFile:Grim Pioneer.png\nFile:GromLogo.png\nFile:Ground based defence turret anti-ship version.jpg\nFile:Ground based defense turret anti-srv version.jpg\nFile:Group WallpaperRender JK.jpg\nFile:Guarded-Settlement-Nebula.png\nFile:Guarded Settlement.png\nFile:Guardi.png\nFile:Guardian-Ancient-Artifacts.png\nFile:Guardian-Ancient-Casket.png\nFile:Guardian-Ancient-Data-Terminal-2.png\nFile:Guardian-Ancient-Data-Terminal-SRV-2.png\nFile:Guardian-Ancient-Data-Terminal-and-SRV.png\nFile:Guardian-Ancient-Data-Terminal.png\nFile:Guardian-Ancient-Key.png\nFile:Guardian-Ancient-Obelisk-Pictograms.png\nFile:Guardian-Ancient-Obelisk.png\nFile:Guardian-Ancient-Orb.png\nFile:Guardian-Ancient-Tablet.png\nFile:Guardian-Ancient-Totem.png\nFile:Guardian-Ancient-Urn.png\nFile:Guardian-Beacon-2.png\nFile:Guardian-Beacon-3.png\nFile:Guardian-Beacon-Activated.png\nFile:Guardian-Beacon-in-HIP-36823.png\nFile:Guardian-Fighter-XG9-Lance.png\nFile:Guardian-Fighters-Ships-Trident-Javelin-Lance.png\nFile:Guardian-Sentinel-Close-Up.png\nFile:Guardian-Sentinel-Missiles-Trails.png\nFile:Guardian-Ship-XG7-Trident.png\nFile:Guardian-Ship-XG8-Javelin.png\nFile:Guardian-Ship-XG9-Lance.png\nFile:Guardian-Structure-2.png\nFile:Guardian-Structure-Krait-MkII.png\nFile:Guardian-Structure-Map.png\nFile:Guardian-Structure-and-Planet.png\nFile:Guardian-Structure.png\nFile:Guardian Beacon.png\nFile:Guardian Beacon active.png\nFile:Guardian Beacon data core.png\nFile:Guardian Beacon scan notification.png\nFile:Guardian Beacon small.png\nFile:Guardian FSD Booster icon.png\nFile:Guardian Gauss Cannon Class 2.png\nFile:Guardian Gauss Cannons on a Krait MK II\nFile:Guardian Plasma Charger Class 3.png\nFile:Guardian Sentinel.png\nFile:Guardian Structure Synuefe EN-H d11-96.png\nFile:Guardian Structure small.png\nFile:Guardian insignia.png\nFile:Guardian ruins exploration - Elite Dangerous\nFile:Guardians-Active-Obelisk.png\nFile:Guardians-Ancient-Relic-Monolith.png\nFile:Guardians Ancient Ruins.jpg\nFile:Gunship01.png\nFile:Gunship02.png\nFile:Gunship03.png\nFile:Gunship04.png\nFile:Gunship05.png\nFile:Gunship06.png\nFile:Gunship07.png\nFile:Gunship08.png\nFile:Gutamaya's iClipper Advert\nFile:Gutamaya-Imperial-Cutter-Cockpit-Rear.jpg\nFile:Gutamaya.png\nFile:Gutamaya Imperial Courier BMW ad Mashup\nFile:Gutayama Imperial Clipper ad\nFile:Guy620 1662473a.jpg\nFile:Gyre Pods & Gyre Trees - Elite Dangerous Codex\nFile:Gyre Tree forest.png\nFile:GzVIzcUQC8E.jpg\nFile:Gze7YYBlACg.jpg\nFile:HBkEGy0.png\nFile:HE-Dumbfire-Missile.png\nFile:HE Seeker.jpg\nFile:HE Seeker2.jpg\nFile:HIP-13044-is-17000-ly-below-galactic-plane.png\nFile:HIP-79439-Closeup-2.jpg\nFile:HIP-79439-Closeup.jpg\nFile:HIP-79439.jpg\nFile:HIP38064.png\nFile:HIP 17044 Dionysus.png\nFile:HIP 22460.png\nFile:HIP 22550.png\nFile:HIP 36601 ( C 1 d) Flemming 00001 upload.png\nFile:HIP 38064 2 Tourist Beacon.png\nFile:HIP 54530.png\nFile:HN Shock Mount.png\nFile:HOW TO FIND ARSENIC ELITE DANGEROUS\nFile:HOW TO FIND CHEMICAL MANIPULATORS AND OTHER RARE ENGINEERING MATERIALS ELITE DANGEROUS\nFile:HOW TO FIND DATAMINED WAKE EXCEPTIONS ELITE DANGEROUS\nFile:HOW TO FIND MODIFIED EMBEDDED FIRMWARE AND CRACKED INDUSTRIAL FIMWARE IN ELITE DANGEROUS\nFile:HOW TO FIND RARE ENGINEERING MATERIALS ELITE DANGEROUS\nFile:HOW TO FIND UNEXPECTED EMISSION DATA ELITE DANGEROUS\nFile:HOW TO FIND UNKNOWN FRAGMENTS AND UNKNOWN ARTIFACTS ELITE DANGEROUS\nFile:HOW TO SETUP ELITE DANGEROUS TO PLAY ON PSVR! Trinus VR, SteamVR, PSVR Gameplay\nFile:HOW TO UNLOCK COLONEL BRIS DEKER\nFile:HOW TO UNLOCK FELICITY FARSEER\nFile:HOW TO UNLOCK JURI ISHMAAK\nFile:HOW TO UNLOCK THE SARGE\nFile:HOW TO USE THE SRV SCANNER RADAR\nFile:HUB ART TARGET 02.png\nFile:Hafnium-178-Commodities.png\nFile:Hafnium.png\nFile:Hanandroo.jpg\nFile:Hannu Arena.png\nFile:HardpointSizes.png\nFile:Hariri-pontarini-architects-bahai-temple-of-south-america-santiago-chile-designboom-01.jpg\nFile:Harma.png\nFile:HatchBreakerLimpetController Ingame.png\nFile:Hatch Breaker Limpet Controller 101 (HD)\nFile:Haulage.png\nFile:Hauler-ship-docked-front.png\nFile:Hauler4.jpg\nFile:Hauler Blueprint.png\nFile:Hauler landing.JPG\nFile:Haumea.jpg\nFile:Having Fun with Exobiology (So You Don't Have To) in Elite- Dangerous - Odyssey\nFile:HawF0K1.jpg\nFile:Hawkings-Gap-Galactic-Region.png\nFile:Haypoint.JPG\nFile:Heart-Nebula-Ship.png\nFile:Heart and Soul Nebulae.png\nFile:Heat Sink Launcher artwork dev1.jpg\nFile:Heatsink Launcher.png\nFile:Heatsink ejected.png\nFile:Heatsinklauncher visdev01.jpg\nFile:Helium-rich Gas Giant.png\nFile:Helium-rich Gas Giant 2.jpg\nFile:Helixnebula.jpg\nFile:Helixnebulafromgalmap.png\nFile:Henry-Class-Bulk-Cargo-Ship-ALC-339-Megaship.png\nFile:Hera-Tani-Engineer.jpg\nFile:Hera Tani.png\nFile:Herbig Ae Be Star (1) - Dumboe AA-A h207 ABC 4.jpeg\nFile:Herbig Ae Be Star (2) - Ogaiws AA-A h188 A.jpeg\nFile:Hercules Class.png\nFile:Hercules Class Bulk Cargo Ship TFD-013.PNG\nFile:Hero Ferrari.png\nFile:Hesperus.png\nFile:Hesperus and Dredger.png\nFile:Hesperus front.png\nFile:Hesperus front section.png\nFile:Hesperus side rear.png\nFile:Hi'iaka.jpg\nFile:High-Metal-Content-(red-black)-180px.png\nFile:High-Metal-Content-Planets-180px.png\nFile:HighResScreenShot 2014-08-07 16-07-26.jpg\nFile:HighResScreenShot 2014-08-07 16-29-44.jpg\nFile:HighResScreenShot 2014-09-05 10-29-47.jpg\nFile:HighResScreenShot 2014-09-05 11-02-37.jpg\nFile:HighResScreenShot 2014-09-05 11-16-05.jpg\nFile:HighResScreenShot 2014-09-05 11-34-25.jpg\nFile:HighResScreenShot 2014-09-19 11-23-18.jpg\nFile:HighResScreenShot 2014-10-03 10-30-02.jpg\nFile:HighResScreenShot 2014-10-03 10-30-16.jpg\nFile:HighResScreenShot 2014-10-03 10-45-32.jpg\nFile:HighResScreenShot 2014-11-06 13-36-32.jpg\nFile:HighResScreenShot 2014-11-19 11-35-55.jpg\nFile:HighResScreenShot 2015-09-11 23-14-37 1080p.jpg\nFile:HighResScreenShot 2016-03-24 21-32-56.jpg\nFile:HighResScreenShot 2016-04-11 21-20-38.jpg\nFile:HighResScreenShot 2016-06-03 06-43-41-.jpg\nFile:HighResScreenShot 2017-09-12 09-50-20.jpg\nFile:HighResScreenShot 2019-02-18 21-07-26.jpg\nFile:High G planet with rings-DBX.png\nFile:High Res Emblem no background.png\nFile:High metal content world Col 285 Sector KS-T d3-82 7.png\nFile:High metal content world Col 285 Sector KS-T d3-82 8.png\nFile:High metal content world Wredguia AG-F d11-24 A 1.png\nFile:High metal content world Wredguia HY-G c24-11 A 1.png\nFile:High metal content world Wredguia ZF-F d11-23 1.png\nFile:High metal content world Wredguia ZF-F d11-23 2.png\nFile:Highlighted systems.jpg\nFile:Highliner-Antares-Shipwreck.png\nFile:HilaryDepot.png\nFile:Hillary-Depot-Planetary-Outpost-System-Map.png\nFile:Hillary-Depot-Planetary-Outpost.png\nFile:Hind-Mine-Asteroid-Base.png\nFile:Hind-Nebula-Planet.png\nFile:Hind-Nebula.png\nFile:Hind Mine.png\nFile:Hind Mines\nFile:Hip38064 001.png\nFile:Hipparcos-Basin.png\nFile:History of Eotienses.jpg\nFile:Hodack.png\nFile:Holloway Bioscience Research Facility 15.jpg\nFile:Holloway Bioscience Research Facility 15 side.jpg\nFile:Holo-Me-Character.jpg\nFile:Holo-Me-Hologram-Elite-Dangerous.png\nFile:Holo-Me-character-male-1.png\nFile:Holo-Me-character-male-2.png\nFile:Holo-Me-character-male-3.png\nFile:Holo-Me-character-male-4.png\nFile:Holo-Me Character female 1.jpg\nFile:Holo-Screen-Adverts-Elite-Dangerous-1.png\nFile:Holo-Screen-Adverts-Elite-Dangerous-2.png\nFile:Holo-Screen-Adverts-Elite-Dangerous-3.png\nFile:Holo-Screen-Adverts-Elite-Dangerous-4.png\nFile:Holo-Screen-Adverts-Elite-Dangerous-5.png\nFile:Holo-Screen-Adverts-Elite-Dangerous-6.png\nFile:Holo-Screen-Adverts-Elite-Dangerous-7.png\nFile:Holo-Screen Advert and Outpost.png\nFile:HomeTab.png\nFile:Horizons-Release-Cover.jpg\nFile:Horizons-concept1.jpg\nFile:Horizons-concept2.jpg\nFile:Horizons-cover.jpg\nFile:Horizons-egx-art.jpg\nFile:Horizons-fallout.jpg\nFile:Horizons-reveal-cobra-landing.jpg\nFile:Horizontal PosterBrand Pioneer Supplies.png\nFile:Hors.png\nFile:Horsehead-Nebula-Asp.png\nFile:Horsehead-Nebula-landed.png\nFile:Horsehead-Nebula.png\nFile:Hotspot.png\nFile:How BIG is Elite Dangerous? (Galaxy map size)\nFile:How To Play Elite Dangerous, 2019 The Essential Quick Start Tutorial for New Players\nFile:How To Play Elite Dangerous (2017)-0\nFile:How to Conquer a system in Elite Dangerous BGS guide\nFile:How to Find Voyager 2 Elite Dangerous\nFile:How to Unlock Elvira Martuuk\nFile:How to Unlock Marco Qwent\nFile:How to get Guardian Vessel Blueprint Segments Elite Dangerous\nFile:How to get special modules from Power Play in Elite dangerous\nFile:How to unlock Lei Cheung Elite Dangerous\nFile:How to unlock Lori Jameson\nFile:How to unlock Professor Palin\nFile:How to unlock Ram Tah Elite Dangerous\nFile:How to unlock The Dweller Elite Dangerous\nFile:How to unlock Zacariah Nemo Elite dangerous\nFile:Howto.jpg\nFile:Hud03.png\nFile:Hud09.png\nFile:Huge-Beam-Lasers.png\nFile:Huge 15k crater SMOJUE UL-V B19-0 B 2.jpg\nFile:Huge Burst Laser.png\nFile:Huge Multi-cannon.jpg\nFile:Huge Planetary Ring.png\nFile:Hull-breach.svg\nFile:Hull Penetration-0.png\nFile:Human-Race-Female.png\nFile:Human-Race-Male.png\nFile:Hunt For Theta Seven Underway.png\nFile:Hutton-Orbital-Outpost-Alpha-Centauri.png\nFile:Hutton 1700.jpg\nFile:Hutton 1800.jpg\nFile:Hutton Mug design.png\nFile:Hutton Mug real.png\nFile:Hutton Orbital.png\nFile:Hybrid Capacitors.png\nFile:HydraVariant.jpg\nFile:Hydrogen Peroxide.png\nFile:Hyford's Cache countdown timer expires.png\nFile:Hyperdiction Anaconda.png\nFile:Hyperfinal.png\nFile:Hyperjump.jpg\nFile:Hyperspace-Jump-Sidewinder.png\nFile:Hyperspace 02 online.jpg\nFile:Hypio Pri Star System.png\nFile:I-Sola-Prospect.png.png\nFile:I8IddqR.png\nFile:IAC logo.png\nFile:IBOOTIS1.jpg\nFile:IBOOTIS2.jpg\nFile:IBOOTIS3.jpg\nFile:IBOOTIS4.jpg\nFile:IBootis InsideCockside.jpg\nFile:IC-405-Flaming-Star-Nebula.png\nFile:IC 1590.png\nFile:IDALogoSmall.png\nFile:IDA LOGO White.png\nFile:IDA Wing Mission\nFile:IMAGE-H.jpg\nFile:IMG-7219.JPG\nFile:IMG-7221.JPG\nFile:IMG-7223.JPG\nFile:IMG 20200501 125030.jpg\nFile:IMG 3231.jpg\nFile:IMG 6c24784b-4efe-40f6-9772-c17b2ab9738f.png\nFile:IMG 7253.jpg\nFile:IMG c327d1a4-229a-42e8-8e8c-ac0f9f30559e.png\nFile:INRA-Base-Hermitage-4-A.png\nFile:INRA-Intergalactic-Naval-Reserve-Arm-Logo.png\nFile:INRA-Stack-Base-Thargoid-Octagonal-Pit.png\nFile:INRA-base-Taylor-Keep.png\nFile:INRA Hermitage 4 A base.png\nFile:INRA Hermitage 4 A base mycoid.png\nFile:INRA Hermitage 4 A base tanks.png\nFile:INRA Hermitage 4 A base warning.png\nFile:IO.jpg\nFile:IPC - The Good Guys\nFile:IT CAME FROM EARTH - E D Trailer (ctrl+alt+space competition)\nFile:I BOOTIS.jpg\nFile:I Feel Good (Ctrl+Alt+Space Competition)\nFile:I am Courier - Elite Dangerous Imperial Courier\nFile:Iac.png\nFile:Iac4.png\nFile:Iactext.png\nFile:Ian-Bell-Elite-Photo.png\nFile:Iapetus 3.0.png\nFile:Iapetus and Saturn.jpg\nFile:Ic-4604-Nebula-Planet-SRV.png\nFile:Ice-Crystals-space.png\nFile:Ice-World.jpg\nFile:Ice DistantRing.jpg\nFile:Ice Geyser on Europa.png\nFile:Ice InRing.jpg\nFile:Icon vulture.png\nFile:Icy-180px.png\nFile:Icy Rings.jpg\nFile:Icy body Wredguia HY-G c24-10 C 1.png\nFile:Icy body Wredguia HY-G c24-11 A 2.png\nFile:Icy cobra attack.jpg\nFile:Icy cobra hunt.jpg\nFile:Idalogo.jpg\nFile:Idyllic-living.jpg\nFile:IllegalCargoWarnings.png\nFile:Im2QGyo.png\nFile:Image-0.png\nFile:Image.jpeg\nFile:Image.png\nFile:Image1.jpeg\nFile:Image 2021-06-07 030019.png\nFile:Image 2021-06-07 034536.png\nFile:Image 2021-06-07 043243.png\nFile:Image 2021-07-19 105718.png\nFile:Image Blockout F63-Condor.jpg\nFile:Image Blueprint F63-Condor.png\nFile:Image Required.png\nFile:Image Ship F63-Condor 2.jpg\nFile:Image Weapon Mining-Laser.jpg\nFile:Images.jpeg\nFile:Images (1).jpg\nFile:Images 400x400-1-.jpg\nFile:Img.png\nFile:Impact Site.png\nFile:Imperial-Clipper-Cockpit-Docked.png\nFile:Imperial-Clipper-Cockpit-Planet-Capitol-in-Achenar.png\nFile:Imperial-Clipper-Cockpit.png\nFile:Imperial-Clipper-Landed-Planet.png\nFile:Imperial-Clipper-Ship-Gutamaya.png\nFile:Imperial-Clipper-ship-docked-sideview.png\nFile:Imperial-Clipper-ship-docked-top-side.png\nFile:Imperial-Clipper-ship-flying-space.png\nFile:Imperial-Clipper-spaceship-docked-front.png\nFile:Imperial-Courier-Cockpit.png\nFile:Imperial-Courier zpschq7esel.jpg\nFile:Imperial-Cutter-Biodomes.png\nFile:Imperial-Cutter-Gold.png\nFile:Imperial-Cutter-Rear-SRV.png\nFile:Imperial-Cutter-Ship-Kit.png\nFile:Imperial-Cutter-Ship-sideview-planetary-ring.png\nFile:Imperial-Cutter-Ship-with-Ship-Kit.png\nFile:Imperial-Cutter-cockpit.jpg\nFile:Imperial-Eagle-Ship-1.jpg\nFile:Imperial-Eagle-Ship-Space.png\nFile:Imperial-Fighter-Docking.png\nFile:Imperial-Fighter-Gu-97.png\nFile:Imperial-Fighter-Landed.png\nFile:Imperial-Fighter-Planetary-Ring.png\nFile:Imperial-Fighter.png\nFile:Imperial-Navy-Fleet.png\nFile:Imperial-capitial-ship.jpg\nFile:ImperialInterdictor000.jpg\nFile:Imperial Courier bodyshot 01.png\nFile:Imperial Courier sketches.jpg\nFile:Imperial Courier v Thargoid scouts Flight Assist Off\nFile:Imperial Courier w11.jpg\nFile:Imperial Cutter - Power, Superiority, Excellence\nFile:Imperial Cutter Azure.png\nFile:Imperial Cutter Chrome.jpg\nFile:Imperial Cutter Chrome.png\nFile:Imperial Cutter concept art 01.png\nFile:Imperial Cutter in-game.png\nFile:Imperial Eagle - Gutamaya Elite Dangerous\nFile:Imperial Eagle Front View II.jpg\nFile:Imperial Eagle concept art.jpg\nFile:Imperial Fighter Blueprint.png\nFile:Imperial Fighter Schematic.jpg\nFile:Imperial Fighter Ship Launched Fighter.jpg\nFile:Imperial Fighter landed.jpg\nFile:Imperial Hammer Rail Gun.jpg\nFile:Imperial Press Conference.png\nFile:Imperial Throne GalNet.png\nFile:Imperial courier cockpit 01.jpg\nFile:Imperial courier cockpit 02.jpg\nFile:Imperial courier peek.jpeg\nFile:Imperial hammer - the essentials\nFile:Import Mission.png\nFile:Impulse-attack.svg\nFile:Incendiary rounds.jpg\nFile:Incoming Transmission - Bridging the Gap\nFile:Incoming Transmission - The Enclave\nFile:Increase.svg\nFile:Increased-emissions.svg\nFile:Incursion Interceptor and Chieftain.png\nFile:Independent icon small.png\nFile:Independent insignia.png\nFile:Indibourbon1280.jpg\nFile:Indigo Dock.png\nFile:Indite.png\nFile:Indium.png\nFile:Indra-Wells-class-Carrier.png\nFile:Influence.JPG\nFile:Inside-California-Nebula.png\nFile:Inside-NGC 3242.png\nFile:InsideARichOrbisStation.jpg\nFile:Inside Huge Crater on SMOJUE UL-V B19-0 B 2 .jpg\nFile:Inside a farragut 4.jpg\nFile:Installation-Earth-like-Planet.png\nFile:Inter Astra concept.png\nFile:Interceptor.png\nFile:InterdictMsg.jpg\nFile:InterdictMsgAlert.jpg\nFile:Interdiction01.jpg\nFile:Interdiction at LHS 417 0223.jpg\nFile:Interdictor-cho-highRES.png\nFile:Interests.JPG\nFile:Internal-damage.svg\nFile:Interstellar-Factors-Contact.png\nFile:Interstellarunited.png\nFile:Interview with the Creators of Elite Dangerous RPG - Spider Mind Games\nFile:Introducing Anaconda - Elite Dangerous Short cinematic\nFile:Introducing Federal Dropship in \"Need for Speed\" style - Elite Dangerous Short cinematic\nFile:Introducing Fighters - Elite Dangerous Short cinematic\nFile:Introducing Imperial Clipper in \"Need for Speed\" style - Elite Dangerous Short cinematic\nFile:Introducing Sidewinder in \"Need for Speed\" style - Elite Dangerous Short cinematic\nFile:Introducing Viper Mk IV in \"Need for Speed\" style - Elite Dangerous Short cinematic\nFile:Introducing the Guardian Fighters\nFile:Introducing the Mamba - 4K\nFile:Inventing the Future - Elite Dangerous Type-6\nFile:Io-3303.jpg\nFile:Ion distributor.jpg\nFile:Iridescent Paintjobs\nFile:Iridescent Scorch.gif\nFile:Iris' Missive.png\nFile:Iron electrolytic.jpg\nFile:Iron vs scope zenith.png\nFile:Isinor.png\nFile:Izanami's Parasol Molluscs - Elite Dangerous Codex\nFile:JAMESON JONES SUPERMASSIVE - an Elite Dangerous novel\nFile:JAMESON JONES SUPERMASSIVE - an Elite Dangerous novel-0\nFile:JAMESON JONES SUPERMASSIVE - an Elite Dangerous novel-1\nFile:JJ1.png\nFile:Jackrock Outpost.png\nFile:Jacksons-Lighthouse-System-Map.png\nFile:Jade's Pride.png\nFile:Jak5olaegui01.png\nFile:James Class Bulk Cargo Ship SOD-7164.png\nFile:Jameson Memorial.png\nFile:Jameson Memorial Station.jpg\nFile:Jameson Memorial Station.png\nFile:January Update splash.png\nFile:Jaques-station.jpg\nFile:Jaques Station.png\nFile:Jaques Station traffic.png\nFile:Jaradharreboom.png\nFile:Jellyfish-Nebula-2.png\nFile:Jellyfish-Nebula.png\nFile:Jettison.png\nFile:Jick Nackson Enterprises notification.png\nFile:Jim Croft Head of Audio.jpg\nFile:Jita.png\nFile:John-Jameson-Crashed-Cobra.png\nFile:John-Jameson-Log-Hive-Ship-Superstructure.png\nFile:John Jameson's Cobra MkIII.png\nFile:John Jameson's Cobra MkIII scan.png\nFile:Join the Adventure - Elite Dangerous Asp Explorer\nFile:Join the Elite - Everything You Need to Know About the Background Simulation\nFile:Join the elite.jpg\nFile:Jotun.png\nFile:Journey\nFile:Jude Navarro.png\nFile:Julian market.JPG\nFile:Jupiter.png\nFile:Jupiter 3303.jpg\nFile:Juri-Ishmaak-Engineer.jpg\nFile:Juri Ishmaak.png\nFile:K01-type Anomaly\nFile:K02-Type Anomaly.jpg\nFile:K13-Type Anomaly.png\nFile:K4 Va Wredguia HY-G c24-11 A.png\nFile:K7 III 35 Ursae Majoris.png\nFile:KAk0vhG.png\nFile:K (Yellow-Orange) Star - Ross 1069 A.jpeg\nFile:K (Yellow-Orange giant) Star - Kappa-2 Sculptoris.jpeg\nFile:Kahina-Tijani-Loren-Salome-Elite-Dangerous.png\nFile:Kahina.jpg\nFile:Kahina2.jpg\nFile:Kahina3.png\nFile:Kamadhenu-System-Map.png\nFile:Kappa Fornacis.png\nFile:Kashyapa.png\nFile:KausalyaSystemMap.png\nFile:Keelback-Planet-Space.png\nFile:Keelback.PNG\nFile:Keelback1.png\nFile:Keelback2.png\nFile:Keelback3.png\nFile:Keelback4.png\nFile:Keelback5.png\nFile:Keelback6.png\nFile:Keelback7.png\nFile:Keelback8.png\nFile:Keelback9.png\nFile:Keelback Cockpit.jpg\nFile:Keelback Hangar.jpg\nFile:Keller's Resolve.png\nFile:Ken-block-ford-raptor-trax-1-657x360.jpg\nFile:Khun.png\nFile:KickstarterLogo.png\nFile:KillWarrantScanner Ingame.png\nFile:Kinematic-Armaments-Logo.png\nFile:Kinematic-Armaments-container-logo.png\nFile:Kinematic Armaments logo.png\nFile:Kinematic Assault Rifle.png\nFile:Kinematic C-44.png\nFile:Kinematic L-6.png\nFile:Kinematic P-15.png\nFile:Kinematic Rocket Launcher.png\nFile:Kinetic-Armaments-Logo.png\nFile:KitFowler MeetingReqs.png\nFile:Kit Fowler.png\nFile:Kitten brand copy.jpg\nFile:Klatt-Enterprises-Mycoid.png\nFile:Knowledge Base icon.png\nFile:Krait-MkII-PC-Gamer-Paintjob.jpg\nFile:Krait-MkII-Top-Front-Side.png\nFile:Krait-MkII-Top-Rear.png\nFile:Krait-MkII-Underside-Front.png\nFile:Krait-MkII-Underside-Rear.png\nFile:Krait-MkII-landing.jpg\nFile:Krait-Phantom-Asteroid-Explosion.png\nFile:Krait-Phantom-Bottom-Rear.png\nFile:Krait-Phantom-Lagrange-Cloud.png\nFile:Krait-Phantom-Rear-Thrusters.png\nFile:Krait-Phantom-Ship-Asteroids.png\nFile:Krait-Phantom-Top-Rear-view.png\nFile:Krait-Phantom-Top-view.png\nFile:Krait-Phantom-in-Station-Docked.png\nFile:Krait-Phantom-midnight-black-paint-job.png\nFile:Krait-Rear-View-Frontier-Expo-2017.png\nFile:Krait Expectations\nFile:Krait FX17 screenshot.png\nFile:Krait MKII flight 1 4K Use for infographic.jpg\nFile:Krait MKII hangar 3 4K.jpg\nFile:Krait MkII Blueprint.png\nFile:Krait MkII exclusive paintjob.png\nFile:Krait MkII rear view.png\nFile:Krait Mk II SLF.png\nFile:Krait Phantom.png\nFile:Krait Phantom Frontier Special.png\nFile:Krait Phantom cockpit interior.png\nFile:Krait Phantom official nebula.png\nFile:Krait Phantom official overhead.png\nFile:Krait workshop-0.png\nFile:Krait workshop.png\nFile:Kraitmk2 at a gas giant.jpg\nFile:Kuiper-belt-objects.jpg\nFile:Kuk.png\nFile:Kuwemaki.png\nFile:KziMudT.jpg\nFile:L-Star.jpg\nFile:L04-Type Anomaly.png\nFile:L07-Type Anomaly.jpg\nFile:L3 V Wredguia HY-G c24-10 B.png\nFile:LANDING PAD XH.jpg\nFile:LBN-623-Nebula.png\nFile:LBN-623.png\nFile:LDL prospect.JPG\nFile:LFT-509c9b393e69145cb24.jpg\nFile:LHS-3447-system.png\nFile:LHS 3447.png\nFile:LHS 3447 system.jpg\nFile:LIFE IN SPACE - Elite Dangerous Time Lapse\nFile:LL Logo.png\nFile:LL Logo & text.png\nFile:LL Logo Modernized.png\nFile:LL Logo new.jpg\nFile:LL logo.png\nFile:LL propaganda Poster 1.jpg\nFile:LOGO DISTANT- WORLDS.png\nFile:LP-98-132-Orrery-System-Map.png\nFile:LP 98-132.png\nFile:LTT 198.png\nFile:LTT 874.png\nFile:LTs4dRp.jpg\nFile:LXE-Xavier-From-Parriz-container-logo.png\nFile:LYLIS HELIG.jpg\nFile:Lagoon-Nebula.png\nFile:Lagrange-Cloud-Asp-Explorer.png\nFile:Lagrange-Cloud-Elite-Dangerous.png\nFile:Lagrange-Cloud-and-Anaconda-space.png\nFile:Lagrange Cloud electrical storm.png\nFile:Lakon's ASP Explorer Advert\nFile:Lakon-AE-Full.jpg\nFile:Lakon-Type-7-Gas-Giant.png\nFile:Lakon.png\nFile:LakonType6.jpg\nFile:LakonType6Landing.jpg\nFile:Lakon Spaceways Central.png\nFile:Lakon Type-7 and Mining-Lasers.png\nFile:Lakon Type 6 at the outfitters.jpg\nFile:Lakon Type 7 Salvage Canisters.jpg\nFile:Laksak.png\nFile:Landed cutter.JPG\nFile:LandingGearIndicatorUpdated.png\nFile:LandingGearOptionsUpdated.png\nFile:LandingSkirt Small screen w.jpg\nFile:Landing - Elite Dangerous- Horizons Pilot Training\nFile:Landing - Elite Dangerous Horizons Pilot Training\nFile:Landing pad.jpg\nFile:Landmines.png\nFile:Lanthanum.png\nFile:Large Beam Laser.jpg\nFile:Large Multi-cannon.jpg\nFile:Large and Lethal - Elite Dangerous Anaconda\nFile:Laser Cops \"In Pursuit of a Wizard\" Elite Dangerous\nFile:Lattice-Mineral-Spheres-in-ED.png\nFile:Laughing horse01.png\nFile:Laurence-Oldham-Elite-Dangerous.png\nFile:Lava-Planet-2.png\nFile:Lava-Planet-3.png\nFile:Lava-Planet-Planetary-Ring-Close-Up.png\nFile:Lava-Planet-in-Elite-Dangerous.png\nFile:Lava-Planet.png\nFile:Lava-Spout-Dark-Planet.png\nFile:Lava Spouts 11 CEPHEI A 1 A.jpg\nFile:Lave-Radio-Ship.png\nFile:Lave-Radio-logo.png\nFile:Lave.png\nFile:LaveCobraMkIII.png\nFile:LaveCon.png\nFile:Lave Radio Sidewinder\nFile:Lave Station - Elite Dangerous vs Elite\nFile:Lave Station damaged.png\nFile:Lave System Map.jpg\nFile:Lavecon-Logo.png\nFile:Lavecon Buckyball Race Tutorial (version 2)\nFile:Lavian-Brandy.png\nFile:Lavian Brandy Price Increase.png\nFile:Lavignys-Legion-Officer-Concept.jpg\nFile:Lavignys-legion-capital-ship1.jpg\nFile:Lavignys-legion-carthage.jpg\nFile:Lavignys-legion-logo.jpg\nFile:Lavignys-legion-mining.jpg\nFile:Lavignys-legion-rank1.png\nFile:Lavignys-legion-rank2.png\nFile:Lavignys-legion-rank3-0.png\nFile:Lavignys-legion-rank3.png\nFile:Lavignys-legion-rank5.png\nFile:Learning FA OFF (Elite Dangerous Combat Guides)\nFile:Learning about our solar system in Elite Dangerous\nFile:Leather.png\nFile:Leaving On The Gnosis\nFile:Leesti.png\nFile:Legacy-Thargoid-Ship.png\nFile:Legend 1.png\nFile:Lei-Cheung-Engineer.jpg\nFile:Lei Cheung.png\nFile:Lembava-System-Map.png\nFile:Leonard Nimoy Station 1.png\nFile:Lepidolite.png\nFile:Letterwise.png\nFile:Li Qing Jao.png\nFile:Li Qing Jao Station.jpg\nFile:Li Qing Jao damaged.png\nFile:Li Yong-Rui.png\nFile:Li Yong-Rui Official Illustration.jpg\nFile:Li Yong Rui vector.svg\nFile:Lichfield Class Prison Ship.png\nFile:LifeSupport Ingame.png\nFile:Life Support.png\nFile:Lifetime Expansion Pass.png\nFile:LightnShade-Light.jpg\nFile:LightnShade-Shade.jpg\nFile:LightweightAlloys.jpg\nFile:Limpet Controller icon.png\nFile:Liquid Oxygen.png\nFile:Listening-Post-Asp.png\nFile:Listening-Post.jpg\nFile:Listening post.png\nFile:Lithium-Hydroxide.png\nFile:Lithium-metal.png\nFile:Little-big-town-002.jpg\nFile:Liz-Ryder-Engineer-Base.png\nFile:LizFace.jpg\nFile:Liz Ryder.png\nFile:Llyn Tegid Nebula.png\nFile:Logo-2-.png\nFile:Logo.png\nFile:Logo revamp 850.png\nFile:Long-exposure-Orbis-station.png\nFile:Longyear survey.JPG\nFile:Looking-Down-the-Perseus-Arm-Elite-Dangerous.png\nFile:Lore Default.png\nFile:Loren's Legion - Transparent.png\nFile:Lori-Jameson-Engineer.jpg\nFile:Lori Jameson.png\nFile:Los.png\nFile:Lost Generations - Elite Dangerous Ctrl + Alt + Space 2017\nFile:Low Temperature Diamonds Commodity.png\nFile:Lowell-Class-Science-Vessel-HDR-617.png\nFile:Lowell-Class-Science-Vessel.png\nFile:Lp2.png\nFile:Lp3.png\nFile:LqJtHV9.png\nFile:Luchtaine.png\nFile:Lugh-System-Map.png\nFile:Luna's Shadow.png\nFile:Luteolum Reel Mollusc.jpg\nFile:Luteolum Umbrella Mollusc.png\nFile:Luxurious and Deadly - Elite Dangerous Fer-de-Lance\nFile:Luyten's Star.png\nFile:Luyten 347-14.png\nFile:Lycan-Moon-Mining-container-logo.png\nFile:Lycan Moon Mining Container.png\nFile:M.Gorbachev Station.jpg\nFile:M008.jpg\nFile:M5 IA (VY CANIS MAJORIS).jpg\nFile:M6 Va Wredguia FP-R b46-1.png\nFile:MNe29c1df0-ed22-48ab-945b-8bac4e533c79.jpg\nFile:MPN Icon Development Plans.png\nFile:MPN Icon Engineers.png\nFile:MPN Icon Factions.png\nFile:MPN Icon On Foot.png\nFile:MPN Icon Outfitting.png\nFile:MPN Icon Planets.png\nFile:MPN Icon Ranks.png\nFile:MPN Icon Roles.png\nFile:MPN Icon Ships.png\nFile:MPN Icon Species.png\nFile:MPN Icon Stars.png\nFile:MRP.png\nFile:MS-type Star - Dryipai XP-G d10-37 A.jpeg\nFile:MS Class Star.png\nFile:MYRIESLY YV-A C15-3376 2 C.png\nFile:M (Red dwarf) Star (1) - Gliese 848.1 C.jpeg\nFile:M (Red dwarf) Star (2) - 2MASS J04414489+2301513.jpeg\nFile:M (Red giant) Star - Lambda Aquarii.jpeg\nFile:M (Red super giant) Star - 35 Pi Aurigae A.jpeg\nFile:M Gorbachev Cut-out.png\nFile:M class 01.jpg\nFile:Mahon-Research-Base.png\nFile:Maia-system.png\nFile:Maia-thumbnail.png\nFile:MaiaA2A-ObsidianOrbital.png\nFile:Maia to Sol.png\nFile:Mail head copy.4.jpg\nFile:Majestic-Class-Interdictor-INV-Achenar's-Might.png\nFile:Majestic-Class-Interdictor-INV-Aisling's-Hope.png\nFile:Majestic-Class-Interdictor-INV-Emperors-Creed.png\nFile:Majestic-Class-Interdictor-INV-Rex.png\nFile:Majestic-Class-Interdictor-Ship-Scale-Dubai.png\nFile:Majestic-Class-Interdictor-Witchspace.png\nFile:Majestic Class Interdictor INV Emperor's Faith.png\nFile:Majestic Class Interdictor action.jpg\nFile:Makemake.jpg\nFile:Malfunction.svg\nFile:Malic takes down a Thargoid solo in a FDL\nFile:Mamba-Cockpit-and-Neutron-star.png\nFile:Mamba-Ship-Sideview.png\nFile:Mamba-Terrestrial-Planet.png\nFile:Mamba-ship-rear-thrusters.png\nFile:Mamba-ship-stairs.png\nFile:MambaCockpit.jpg\nFile:Mamba Cockpit.png\nFile:Mamba Front Ship.png\nFile:Mamba Frontier Special.png\nFile:Mamba Rear Engines.png\nFile:Mamba cockpit interior.png\nFile:Mamba official front.png\nFile:Mamba rear view.png\nFile:Mamba top view.png\nFile:Mamba underside view.png\nFile:Mammon.png\nFile:ManganeseCanister.png\nFile:Manganese element.jpg\nFile:Mango's Manual to the Asp Explorer -Elite-Mango's Manual to the Asp Explorer\nFile:Mango's Manual to the Federal Assault Ship -Elite-Mango's Manual to the Federal Assault Ship\nFile:Mango's Manual to the Railgun -Elite-Mango's Manual to the Railgun\nFile:Manifest Scanner.png\nFile:Manticore-Limpet-Drone.png\nFile:Manticore-Limpet.png\nFile:Manticore-Medium-Cannon.jpg\nFile:Manticore.svg\nFile:Manticore Dominator pre-alpha.png\nFile:Manticore Drone.jpg\nFile:Manticore Executioner.png\nFile:Manticore Limpet-Close-Up-by-Janne-Paulsen.png\nFile:Manticore Oppressor.png\nFile:Manticore Shotgun.png\nFile:Manticore Tormentor.png\nFile:Manufactured materials.png\nFile:Maodun-Unauthorised-Installation-in-Isinor.png\nFile:Map.jpg\nFile:Map.png\nFile:Map View.png\nFile:Marco-Qwent-Engineer.jpg\nFile:Marco Qwent.png\nFile:Mark-Allen-Elite-Dangerous.png\nFile:Market.png\nFile:Mars-Terraformed-3304-CE-Elite-Dangerous.png\nFile:Mars 1920.png\nFile:Mars 2014-11-28 12-12-30.jpg\nFile:Mars High Station.jpg\nFile:Mars Terraformed.jpg\nFile:Mars Terraformed 2.jpg\nFile:Marsha-Hicks-Elite-Dangerous.png\nFile:Mass-Lock-Sidewinder.png\nFile:Mass-locked.svg\nFile:Mass destruction.JPG\nFile:Massive Crater.png\nFile:Mastopolis-Mining-Logo.png\nFile:Mastopolos-Mining-container-logo.png\nFile:Material trader - Everything you need to know - Elite dangerous 3.0 Beyond\nFile:Materials for Beam Laser - Oversized.jpg\nFile:Matthew-Florianz-Elite-Dangerous.png\nFile:Maunders hope.JPG\nFile:Maverick utility suit.png\nFile:Mavia Kain.jpg\nFile:Maxresdefault.jpg\nFile:Mbooni.png\nFile:McKee Ring Screenshot.png\nFile:McKee Ring closeup.png\nFile:Mcannon3 concept.jpg\nFile:Mcannon4 concept.jpg\nFile:MediumIndOutpost01.jpg\nFile:Medkit pre-alpha.png\nFile:Meene.png\nFile:Meet The Asp Explorer - More Than Just Exploration Elite Dangerous Commercial\nFile:Mega Gin .jpg\nFile:Mega gin copy.png\nFile:Mega ship.png\nFile:Mega ship Meredith's Dream.png\nFile:Megaship Cargo Bay.png\nFile:Megaship Concourse Spirit of Laelaps.png\nFile:Megaship Escape Hatch.png\nFile:Megaship Freedom Class Survey Vessel SFCT-001.jpg\nFile:Megaship Hackable Data Transmitter.png\nFile:Megaship Rescue Ship The Oracle.png\nFile:Megaship The Indra.png\nFile:Megaship The Zurara.png\nFile:Mel-Brandon-Elite-Dangerous.png\nFile:MeleeOfShips.jpg\nFile:Mercenary Cobra.jpg\nFile:Mercenary Elite icon.png\nFile:Mercury-Sol.png\nFile:Mercury-material.jpg\nFile:Mercury.jpg\nFile:Merope\nFile:Merope-System-Map.png\nFile:Mertens Corporation Logo.png\nFile:Mertenscorp-removebg-preview.png\nFile:Mertenscorp.png\nFile:Mesosiderite.jpg\nFile:Mesosiderite.png\nFile:Mesosiderite2.jpg\nFile:Mesosiderite 2.jpg\nFile:Messier-78-Nebula.png\nFile:Messier-78.png\nFile:Messier 34.png\nFile:Messier 6.png\nFile:Messier 67.png\nFile:Meta-Alloys.png\nFile:Metal-rich body Wredguia QX-K d8-8 A 3.png\nFile:Metal asteroids.jpg\nFile:Metal rich.png\nFile:Metallic-Crystals-and-Brown-Dwarf.png\nFile:Metallic-Crystals-and-Krait-Phantom.png\nFile:Metallic-Crystals-and-Python.png\nFile:Metallic Meteorite.jpg\nFile:Metallic Meteorite.png\nFile:Metallic meteorite.jpg\nFile:MichaelBrookes000.jpg\nFile:Micro Controllers.png\nFile:Middlevlei.JPG\nFile:Midnight Black.gif\nFile:MightyPirate.jpg\nFile:Mighty Adder vs Corvette\nFile:Mikunn.jpg\nFile:Mikunn.png\nFile:Military-Outpost.png\nFile:MilitaryGradeComposite.jpg\nFile:Military Grade Fabrics.png\nFile:Military Installation.jpg\nFile:Military elite.jpg\nFile:Milky-Way-Panorama-1500ly-Above-Galactic-Plane.png\nFile:Milky-Way-from-Beagle-Point.png\nFile:Millions of Credits for Thargoid Items\nFile:MineLauncher Ingame.png\nFile:Mine Launchers on an Imperial Cutter\nFile:Minerva Centaurus Expedition Logo.png\nFile:Mining-duo.jpg\nFile:Mining-laser-Krait-Phantom-cockpit.png\nFile:Mining.jpg\nFile:MiningLanceStats.jpg\nFile:Mining Anaconda.jpg\nFile:Mining Asp.jpg\nFile:Mining Minigame.png\nFile:Mining Settlement Hyades Sector DR-V c2-23 A 5.jpg\nFile:Mining in the rings 0267.jpg\nFile:Mining laser outfit.JPG\nFile:Mining settlement Odyssey alpha.png\nFile:Mint-tea.jpg\nFile:MirroredSurfaceComposite.jpg\nFile:MissileRack Ingame.png\nFile:Mission-Depot.png\nFile:Mission rewards.jpg\nFile:Mitterand-Hollow-Moon.png\nFile:Mitterand Hollow Landed.png\nFile:Mkiv station.png\nFile:Moar cutter.png\nFile:Module priority control.png\nFile:Module priority control 2.png\nFile:Moissanite.png\nFile:Mollusques à capsule Luteus - recording video gameplay 2019-01-11\nFile:Molybdenum-crystaline-fragment.jpg\nFile:Monkey-Head-Nebula.png\nFile:Monopoly.JPG\nFile:Monsignifer Lancehead Viper.png\nFile:Moon-Achenar-4A.png\nFile:Moon-Sol-Elite-Dangerous.png\nFile:Moon 2014-11-28 23-25-32.jpg\nFile:More Than a Job - Elite Dangerous Diamondback Explorer\nFile:Morphenniel Nebula.png\nFile:Mosher-container-logo.png\nFile:Motorised-couch.jpg\nFile:Mount-Neverest--Nervi-3-A-in-Space.png\nFile:Mountain on Charon.png\nFile:Moxon's Mojo.png\nFile:Moxons mojo.JPG\nFile:Mu-Cephei-A-system-map.png\nFile:Mu-Cephei-star.png\nFile:Muang.png\nFile:Multi-Cannon-Size-Comparison.png\nFile:Multi-cannon Class 4 sneak peek.jpg\nFile:Multi-crew-concept-1.jpg\nFile:Multi-crew-concept-2.jpg\nFile:Multi-crew Vulture Cinematic (GONE VIOLENT)\nFile:Multicannon.png\nFile:Multicrew-Women.png\nFile:Muon Imager.png\nFile:Murder Python.jpg\nFile:Mussidaean Seed Pod.jpg\nFile:My Avatar (250x250).jpg\nFile:My banner.gif\nFile:My other car's a Cobra MKIII - Nordic Game 2014\nFile:Mycoid-Virus-Storage-Tank.png\nFile:Mysterious Stolon Pod - Elite Dangerous Codex\nFile:NASA-Logo.png\nFile:NGC-1333-Nebula.png\nFile:NGC-1360-Nebula.png\nFile:NGC-1999-Nebula.png\nFile:NGC-281.png\nFile:NGC-3242-Ghost-of-Jupiter.png\nFile:NGC-6302-Bug-Nebula.png\nFile:NGC-6751-Nebula.png\nFile:NGC-6751-in-Elite.png\nFile:NGC-6820-Nebula.png\nFile:NGC-7026-Nebula-Star-system-Csi+47-21046.png\nFile:NGC-7822.png\nFile:NGC7822.jpg\nFile:NGC 1333 Reflection Nebula & Supercluster.png\nFile:NGC 1514 Nebula.png\nFile:NGC 1647.png\nFile:NGC 1981-0.png\nFile:NGC 1981.png\nFile:NGC 1983.png\nFile:NGC 1999 Nebula.png\nFile:NGC 2099.png\nFile:NGC 2232.png\nFile:NGC 2467-Skull-and-Crossbones-nebula.png\nFile:NGC 2467 Skull and Crossbones Nebula-Landed.png\nFile:NGC 2467 Skull and Crossbones Nebula 2.png\nFile:NGC 3590.png\nFile:NGC 5315 Nebula.png\nFile:NGC 5979 Nebula.png\nFile:NGC 6231.png\nFile:NGC 6357 Nebula.png\nFile:NGC 6530.png\nFile:NGC 7822.png\nFile:NGC 7822 Nebula.png\nFile:NGC 7822 a journey to the heart of the nebula\nFile:NGC 869.png\nFile:NGC 884.png\nFile:NPC-Pilot-Crew.png\nFile:Nagivation Beacon (1).jpg\nFile:Namarii.png\nFile:Nanomam.png\nFile:Naphtha Class.png\nFile:Nastrond.png\nFile:Native arsenic.jpg\nFile:Natsuumi.png\nFile:Natural-Pearls.png\nFile:Natural Fabrics.jpg\nFile:NavigationTab.png\nFile:Nebula, The bubble expedition\nFile:Nebula Map.jpg\nFile:Nebula and SRV.jpg\nFile:Nemorensis.jpg\nFile:Neo-Marlinist Enzyme Missile Rack.png\nFile:Neptune.jpg\nFile:Neptune with rings.jpg\nFile:Neutron-Highway-Art-Elite-Dangerous-Mathew-Maddison.png\nFile:Neutron-Highway.png\nFile:Neutron-Star-Anaconda.png\nFile:Neutron-Star-and-Krait-Phantom.png\nFile:Neutron-Star-in-Elite.png\nFile:Neutron star.png\nFile:Neutron star 2.2\nFile:Neutron stars .jpg\nFile:Never Run Out Of Fuel Again! Fuel Scooping Elite Dangerous Tip (2017)\nFile:Never coming home part 3 (A Journey to Sag A)\nFile:New-America-Planet-Map.png\nFile:New-Horizons-Space-Probe-Elite-Dangerous.png\nFile:New-horizon.jpg\nFile:New.horizon.jpg\nFile:New Exploration mode (FSS) Overview Elite Dangerous Beta\nFile:New Horizons probe in Elite Dangerous\nFile:New Mining Overview Elite Beyond 3.3\nFile:New Ship Chieftain - Elite Dangerous\nFile:New Ship Krait - Elite Dangerous\nFile:New Vertical Banner01 crop.jpg\nFile:Neweagle.jpg\nFile:Newsletter52 screenshot0.jpg\nFile:Newsletter52 screenshot1-0.jpg\nFile:Newsletter52 screenshot1.jpg\nFile:Newsletter52 screenshot2.jpg\nFile:Nickel chunk.jpg\nFile:Night Vision Planetary Ring.png\nFile:Night Vision SRV Krait.png\nFile:Night Vision SRV Krait MkII.png\nFile:Niobium.jpg\nFile:Nnnn.png\nFile:Non-Human-Signal-Source.png\nFile:Non-Spherical-Planet-2.png\nFile:Nonhuman Signature.png\nFile:Nonspherical-Moon.png\nFile:Nonspherical-Planet.png\nFile:North-America-Elite-Dangerous.jpg\nFile:North-America-Nebula.jpg\nFile:North-America-Nebula.png\nFile:Nova Imagem de Bitmap.png\nFile:Novitski oasis.JPG\nFile:Npcs.jpeg\nFile:O7kqaa.jpg\nFile:OG0iupS.png\nFile:OGAIMY CL-X E1-3692.png\nFile:OGAIMY CL-X E1-3692 (Picture 2).png\nFile:OU9 SRV preview.png\nFile:Oaken Point.jpg\nFile:Oaken Point 2.jpg\nFile:Oaken Point Eagle wreck.jpg\nFile:Oaken Point Type-9 wreck.jpg\nFile:Oaken Point gate.jpg\nFile:Oberon-Sol.png\nFile:Oberon-and-Uranus.jpg\nFile:Oberon 3.0.png\nFile:Objects in Space\nFile:Obsidian-Orbital-in-Maia.png\nFile:Obsidian Orbital damaged.png\nFile:Obsidian Orbital repairing.png\nFile:Obsidian Orbital repairing interior 1.png\nFile:Obsidian Orbital repairing interior 2.png\nFile:Obsidian Orbital repairing interior 3.png\nFile:Occupied-Escape-Pod-Side.png\nFile:Occupied Escape Pod.jpg\nFile:Occupied Escape Pod Odyssey.png\nFile:Occupied Escape Pod Signature.png\nFile:Ocean-Planet-near-Thraikai.png\nFile:Ocellus-Space-Station-Repair-Exterior.png\nFile:Ocellus.svg\nFile:OcellusConstruction000.jpg\nFile:OcellusConstruction001.jpg\nFile:OcellusStation 001.jpg\nFile:Ocellus Station Construction.jpg\nFile:Ocellus sm.svg\nFile:Ocellus trench building detail view 1.jpg\nFile:OcmlO1a.png\nFile:Octahedral Pod Niveum.png\nFile:Octahedral Pod Rubeum.png\nFile:Oculus Imperial Courier Canyon Run\nFile:Odd distres.jpg\nFile:Oden Geiger.png\nFile:Odin's Capsule Mollusc - Elite Dangerous Codex\nFile:Odyssey\nFile:Odyssey HUD 1.png\nFile:Odyssey HUD 2.png\nFile:Odyssey HUD 3.png\nFile:Odyssey HUD 4.png\nFile:Odyssey Settlement exterior.png\nFile:Odyssey Update 9 Stream\nFile:Odyssey alpha schedule.png\nFile:Odyssey compatibility chart 1.png\nFile:Odyssey compatibility chart 2.png\nFile:Odyssey flora.png\nFile:Odyssey flora coral.png\nFile:Oevasy SG-Y d0.png\nFile:Official-Distant-Worlds-Poster.jpg\nFile:Official-Galnet-Logo.png\nFile:Official CQC logo.png\nFile:OkinuraSys.PNG\nFile:Okj190F.png\nFile:Old-Worlds-EDRPG-Map.png\nFile:Old-lave.jpg\nFile:Oleskiw Station.png\nFile:Olgrea.png\nFile:Omega-Mining-Operation-Asteroid-Base.png\nFile:Omega-Nebula-Krait-MkII.png\nFile:Omega-Nebula.png\nFile:Omega (Elite Dangerous Music video)\nFile:Omega Grid 1.png\nFile:Omega company Vulture.jpg\nFile:On the bridge imperal cutter.jpg\nFile:On the bridge of the imperal cutter.jpg\nFile:One Moment of Perfect Beauty\nFile:Onionhead Icon.png\nFile:Onionhead Smuggling.png\nFile:Opala - AB 1.png\nFile:Opala - AB 2 (2).png\nFile:Opala - Baker and Trooper.png\nFile:Opala - Baker png.png\nFile:Opala - Opala A.png\nFile:Opala - Opala B.png\nFile:Opala - Romanenko Estate.png\nFile:Opala - Trooper and Baker.png\nFile:Operation Ida Banner.jpg\nFile:Operation Ida Logo.png\nFile:Orange Giant.jpg\nFile:Orbis-Space-Station-Side.png\nFile:Orbis-Starport-Outer-Torus-Detail-2.png\nFile:Orbis-Starport-Outer-Torus-Detail-3.png\nFile:Orbis-Station-Gas-Giant.png\nFile:Orbis-Station-Planet-Type-6.png\nFile:Orbis-Station-Traffic-Planet.png\nFile:Orbis-Station-in-Frontier-Frontier-Elite-II.png\nFile:Orbis.svg\nFile:OrbisGreenHouse.jpg\nFile:OrbisStation 001.jpg\nFile:Orbis HighRes 04.jpg\nFile:Orbis HighRes 05.jpg\nFile:Orbis Starport Luxury Interior.png\nFile:Orbis Starport Outer Torus Detail.png\nFile:Orbis Station Traffic.jpg\nFile:Orbis online.jpg\nFile:Orbis sm.svg\nFile:Orbis station.jpg\nFile:Orbis station construction.png\nFile:Orbis station newsletter.jpg\nFile:Orbit-over-Capitol-Empire.png\nFile:Orbital Junction overview.jpg\nFile:Orca-Earth-like-Planet.png\nFile:Orca-Earth-like-Terrestrial-planet.png\nFile:Orca-Rear-Side-Gas-Giant.png\nFile:Orca-Ship-Underside.png\nFile:Orca.jpg\nFile:Orca Newsletter 50.jpg\nFile:Orca Newsletter 50 2.jpg\nFile:Orca Ship Kit.png\nFile:Orca and Coriolis.png\nFile:OrderOfEnblackenmentLogo.png\nFile:Orerve.png\nFile:Original-Elite-Logo-1984.png\nFile:Orio-Perseus-Conflux-map.png\nFile:Orion-Constellation-Elite-Dangerous.png\nFile:Orion-Nebula-Planet.png\nFile:Orion-Nebula-Tourist-Centre.png\nFile:Orion-Nebula.png\nFile:Orion Nebula.png\nFile:Orrere.png\nFile:Orrery-System-Map-Concept-Elite-Dangerous.png\nFile:Osmium-crystals.png\nFile:OsseusDiscus.jpg\nFile:OsseusDiscus2.jpg\nFile:OsseusSpiralisIndigo.jpg\nFile:Osseus Fractus - Indigo.jpeg\nFile:Osseus Pumice.jpg\nFile:Osseus Pumice - Lime.png\nFile:Osseus Pumice - Yellow.png\nFile:Osseus Spiralis - Turquoise.jpg\nFile:Osseus Spiralis Grey.png\nFile:Osseus pellebantus lime.jpg\nFile:Other Places Sol (Elite Dangerous)\nFile:Other Places Sol (Elite Dangerous Horizons)\nFile:Out-of-Darkness-Book-Cover.png\nFile:Out of bounds Countdown Warning.jpg\nFile:Outcrop.jpg\nFile:Outcrop.png\nFile:Outfitting Default.png\nFile:Outfitting Selected.png\nFile:Outpost-Col-285-Sector-IX-T-d3-43-A-1-Canonn-Institute.png\nFile:Outpost.jpg\nFile:Outpost.png\nFile:Outpost.svg\nFile:Outpost 001.jpg\nFile:Outpost Military.jpg\nFile:Outpost cafe.jpg\nFile:Outpost comercial.jpg\nFile:Outpost industrial.jpg\nFile:Outpost landing pad.jpg\nFile:Outpost scale.jpg\nFile:Outpost sm.svg\nFile:Outpost space station.jpg\nFile:OuuCM6w.png\nFile:Overlook.png\nFile:Overlook 2.png\nFile:Overlook 3.png\nFile:Ovid - Bradfield Orbital.png\nFile:Oxygen Atmosphere.png\nFile:OzP4Ic0.jpg\nFile:P01 Type Anomaly External.png\nFile:P01 Type Anomaly Scan.png\nFile:P04 Type Anomaly (Elite Dangerous)\nFile:PAXPrime-0.PNG\nFile:PAXPrime-1.PNG\nFile:PAXPrime.PNG\nFile:PE1.jpg\nFile:PF secrecy.JPG\nFile:PKqCR3K.png\nFile:PLX695SystemMap.png\nFile:POI data point.png\nFile:POWERPLAY PVP - 2v1\nFile:PROMOTION TO DEADY - Rank Update\nFile:PS4 - Elite Dangerous - Keelback\nFile:PSR J1300+1240.jpg\nFile:PS Messages 20181107 204013.jpg\nFile:PS Messages 20190618 063939.jpg\nFile:PVE Corvette - Advanced build guide Elite dangerous 3.0 Beyond\nFile:Pack-Hound-Missile.png\nFile:Pack-Hound Missile Rack.png\nFile:Pack Hound Guided Missile Launcher Review\nFile:Painite-Commodities.png\nFile:Painite.png\nFile:Paintjob cobramkiii flag uk.jpg\nFile:Pale Blue Dot\nFile:Palin-Research-Centre-on-Maia.png\nFile:Palin-Research-Centre.png\nFile:Palin Arque notification.png\nFile:Palin Research Centre Evacuation Broadcast.png\nFile:Palin Research Centre attacked.png\nFile:Palladium.png\nFile:Pallaeni.png\nFile:Panacea medical center, HIP 17519 A1.png\nFile:Panoram.png\nFile:Panther-Clipper-LX-Early-Design-2.png\nFile:Panther-Clipper-LX-Early-Design.png\nFile:PantherClipper ConceptArt 000.jpg\nFile:Panther Clipper Horizons possible concept.png\nFile:Panther Clipper LX Pilot.png\nFile:Pareco.png\nFile:Paresa.png\nFile:Park.png\nFile:Parkinson Dock.jpg\nFile:Passenger-Cabin.png\nFile:PassengerCabins.png\nFile:PassengerIconNonVIP.png\nFile:PassengerIconVIP.png\nFile:Passenger ship.jpg\nFile:Passengers - Elite Dangerous Horizons Pilot Training\nFile:Pathfinder 2%.png\nFile:Patterson Dock2.png\nFile:Patterson Enterprise sunrise.png\nFile:Pausanias Disc.jpg\nFile:Peduncle-Pod-1.png\nFile:Peduncle-Pod-2.png\nFile:Peduncle-Pod-in-ED.png\nFile:Peduncle-Pods.png\nFile:Peduncle-Tree-space.png\nFile:Peduncle-Trees.png\nFile:Peduncle Pods of Dryman's Point and Sagittarius-Carina Arm - Elite Dangerous\nFile:PeekOfTheWeek ImperialCourier.jpg\nFile:Peek of the week 03.png\nFile:Peek of the week 07.jpg\nFile:Peek of the week 08.jpg\nFile:Peek of the week 09.jpg\nFile:Peek of the week 10.png\nFile:Peek of the week 11.png\nFile:Peek of the week 12.jpg\nFile:Peek of the week 14.jpg\nFile:Peek of the week 15.png\nFile:Peek of the week 16.jpg\nFile:Peek of the week 17.jpg\nFile:Peek of the week 18.jpg\nFile:Peek of the week 19.jpg\nFile:Peek of the week 20.png\nFile:Peek of the week 21.png\nFile:Peek of the week 22.jpg\nFile:Peek of the week 23.jpg\nFile:Peek of the week 24.jpg\nFile:Peek of the week 25.jpg\nFile:Peek of the week 26a.jpg\nFile:Peek of the week 27.jpg\nFile:Peek of the week 28.jpg\nFile:Peek of the week 29.jpg\nFile:Peek of the week 30.jpg\nFile:Peek of the week 31.jpg\nFile:Peek of the week 32.jpg\nFile:Peek of the week 35.jpg\nFile:Peek of the week 36.jpg\nFile:Peek of the week 37.jpg\nFile:Peek of the week 40.jpg\nFile:Peek of the week 44.jpg\nFile:Peek of the week 50.jpg\nFile:Peek of the week 52.jpg\nFile:Peek of the week 53.jpg\nFile:Pelican-Nebula-and-North-America-Nebula.png\nFile:Penal Colony BV-2259.png\nFile:Pencil Nebula NGC 2736.jpg\nFile:Perdition.png\nFile:Peregrina.png\nFile:Permit Acquisition Opportunity.png\nFile:Permitted World.jpg\nFile:Persephone.jpg\nFile:Perseus-Arm-Elite-Dangerous.png\nFile:Petra-Olmanova-Elite-Dangerous.png\nFile:Phagos Clan Dredger.png\nFile:Pharmaceutical-Isolator-Space-Ship.png\nFile:Phasing Sequence.jpg\nFile:Phekda.png\nFile:Phiaanor.png\nFile:Phloem Excretion.png\nFile:Phosphorus.jpg\nFile:Photo 13-01-2016 16 49 43 zpsyqduhrno.png\nFile:Photo 13-01-2016 16 50 03 zpssrp40c7n.png\nFile:Pi Mensae.png\nFile:Piceous Cobble.png\nFile:Pigeon John's Nest.png\nFile:Pilgrim's Ruin.png\nFile:Pilot-Reputation-Factions.png\nFile:Pilot-Standing-Cobra-mk3.png\nFile:Pilot Training - Multicrew - Elite Dangerous Horizons\nFile:PilotsGuide Default.png\nFile:PilotsGuide Selected.png\nFile:Pilots Federation District.png\nFile:Pilots Federation allegiance icon.png\nFile:Pink Lagrange Cloud.png\nFile:Pioneer Suit Skin.png\nFile:Pioneer Supplies.png\nFile:Pioneer Supplies weapons.png\nFile:Pipenebula.jpg\nFile:Piracy done RIGHT\nFile:PirateLord online.jpg\nFile:PirateScanMsg.jpg\nFile:Pirate Day Job\nFile:Pirate Lord Luca in Karis System AB 2.png\nFile:Pirates in rings.jpg\nFile:Placeholder.png\nFile:PlaceholderDW2Black.png\nFile:PlaceholderDW2Blue.png\nFile:PlaceholderDW2White.png\nFile:Placeholder Ship.png\nFile:Plakat 10000 current-830x1174.jpg\nFile:Planet-Achenar-1.png\nFile:Planet-Achenar-2.png\nFile:Planet-Achenar-3.png\nFile:Planet-Ares-Home-of-the-Prestiges-CD-43-11917.png\nFile:Planet-Brain-Trees.png\nFile:Planet-Coaster.jpg\nFile:Planet-Crater-Ship.png\nFile:Planet-Identification-Guide.png\nFile:Planet-Lave.png\nFile:Planet-New-California-in-Epsilon-Eridani.png\nFile:Planet-New-World-In-Achenar.png\nFile:Planet-Settlement-and-Diamondback-Explorer.png\nFile:Planet1.png\nFile:Planet Lave and Lave Station.png\nFile:Planet Leesti and Station.png\nFile:Planet lights ring system.png\nFile:Planetary-Approach-Suite-Ship.png\nFile:Planetary-Landing-in-Frontier-Elite-II.png\nFile:Planetary-Ring-Imperial-Clipper.png\nFile:Planetary-ring-system-2.png\nFile:PlanetaryLanding 2.jpg\nFile:Planetary Ring System.jpg\nFile:Planetary Tech Preview - ESRB Teen\nFile:Planetary Vehicle Hangar icon.png\nFile:Planets-of-Sol-Bobblehead-Livery.png\nFile:Planets Default.png\nFile:Planets Selected.png\nFile:Planetz\nFile:Plasma Accelarator Efficent Weapon Upgrade Level 5.jpg\nFile:Plasma accelerator class2 ratingC.jpg\nFile:Plasmaaccelerator.png\nFile:Platinum-ore.png\nFile:Player-Traffic.jpg\nFile:Player Minor Faction in Elite Dangerous.png\nFile:Player factions. What, Why and How? Elite Dangerous\nFile:Players-Group-Expedition-2-Elite-Dangerous.png\nFile:Players-Group-Expedition-Elite-Dangerous.png\nFile:Playing with K12-type anomalies - Elite Dangerous\nFile:Pleasure Achieved - Elite Dangerous Viper MKIII\nFile:Pleiades-Nebula.png\nFile:Pleiades Nebula-0.png\nFile:Pleiades Nebula.png\nFile:Pluto.jpg\nFile:Pluto and Charon.jpg\nFile:Poetic Assassin - Elite Dangerous Alpha 1.1\nFile:PointDefense Ingame.png\nFile:Polevnic.png\nFile:Political Rally.png\nFile:Pollux-star.png\nFile:Pollux.png\nFile:Polo-Harbour-Planetary-Outpost.png\nFile:Polo Harbour.png\nFile:Polonium-Material-and-SRV.png\nFile:Polycrystalline-germanium.jpg\nFile:Pomeche 2 C Epic Mountain Range.png\nFile:Posh Blobfish.jpg\nFile:Possible Fer de Lance Concept.jpg\nFile:Possibly Scorpion.png\nFile:Possibly Scorpion 2.png\nFile:PosterBrand Pioneer Supplies.png\nFile:PowerDistributor Ingame.png\nFile:PowerPlant Ingame.png\nFile:Power Distributor.png\nFile:Power Plant.png\nFile:Power Play 01 - What Power Play is\nFile:Powerplay-1920x1080 v1 k-0.png\nFile:Powerplay-1920x1080 v1 k.png\nFile:Powerplay-krop-0.png\nFile:Powerplay-krop-1.png\nFile:Powerplay-krop-1487433291.png\nFile:Powerplay-krop-2.png\nFile:Powerplay-krop-3.png\nFile:Powerplay-krop.png\nFile:PowerplayScreen.png\nFile:Powerplay 3d.jpg\nFile:Powerplay Training Part 1 Overview\nFile:Powerplay Training Part 2 Preparation\nFile:Powerplay Training Part 3 Expansion\nFile:Powerplay Training Part 4 Control\nFile:Ppalin.JPG\nFile:Pranav Antal-sm.png\nFile:Pranav Antal.png\nFile:Pranav Antal vector.svg\nFile:Praseodymium.png\nFile:Pratchett's Disc.jpg\nFile:Pre Alpha.jpg\nFile:Precipitated-Alloys.png\nFile:Predator.jpg\nFile:Press Conference.png\nFile:Press Conference Alliance.png\nFile:Press Conference Empire.png\nFile:Press Conference Federation.png\nFile:Princess square.jpg\nFile:Prism.png\nFile:Prismatic Shield Generator green shields.png\nFile:Private-Data-Beacon.png\nFile:Procedural-City-Lights-Planet.png\nFile:Professor-Palin-Engineer.jpg\nFile:Professor-Palin-and-Unknown-Artefact.png\nFile:Professor Palin.png\nFile:Profile Analyser.png\nFile:Proprietary Composites.png\nFile:ProspectorLimpetController Ingame.png\nFile:Proteus.png\nFile:Proteus 2.png\nFile:Proteus sunrise.jpg\nFile:Proxima Centauri system map.jpg\nFile:Proximity sensor-0.jpg\nFile:Proximity sensor.jpg\nFile:Proximity sensor distance table.jpg\nFile:Psr j0108-1431.jpg\nFile:Pulse-Disruptor-Laser.png\nFile:Pulse Laser.png\nFile:Pulse Wave Analyser.png\nFile:Purple Lagrange Cloud.png\nFile:Purple Lagrange Cloud 2.png\nFile:Pvh header.jpg\nFile:PwoGhPs.jpg\nFile:Pyrophyllite.png\nFile:Python-Canopy-Broken.png\nFile:Python-Cockpit-Male-Pilot.png\nFile:Python-Mining-Asteroid-Explosion.png\nFile:Python-Ship-Cockpit-Pilot-ED.png\nFile:Python-ship-docked-hangar.png\nFile:Python.jpeg\nFile:Python.jpg\nFile:Python.png\nFile:Python 02.jpg\nFile:Python Screenshot 3.jpg\nFile:Python wireframe.png\nFile:Q-Type Anomaly.png\nFile:Q09-Type-Anomaly-space.png\nFile:Q4 Beta - Asteroid Cracking\nFile:Q4 Beta - Orrery map of Sol\nFile:QQ截图20151223015457.png\nFile:QRnxps5.jpg\nFile:Qq1uux.jpg\nFile:Quadripartite-Pods.png\nFile:Quarantine.png\nFile:Quator.png\nFile:Queen-Elizabeth-II-David-Braben-OBE-2014.png\nFile:Quickies- Conflict Zones\nFile:Quickies- Finding Selenium and Other Raw Materials\nFile:Quince.png\nFile:Quphieth-Whispering-Plant-Species.png\nFile:Qwent Research Base.png\nFile:RDX.png\nFile:RES-in-panel.png\nFile:RES-in-space.png\nFile:RES-spawn.png\nFile:RETURN OF THE THARGOIDS - What Awaits The Core Worlds Of Humanity ...\nFile:R Doradus system map.png\nFile:Rackham's Peak.png\nFile:Radio Sidewinder Logo.png\nFile:Radio Sidewinder advertisement\nFile:Raider Ship Kit - Cobra Mk III Elite Dangerous\nFile:Railgun1sheet copy.JPG\nFile:Railgun Ingame.png\nFile:Ralfi's Alley- Elite Dangerous CQC\nFile:Ralfi's Alley- Elite Dangerous first hours\nFile:Ram-Tah-Close-Up.png\nFile:Ram-Tah-Elite-Dangerous-Commander-Chronicles.png\nFile:Ram-Tah-Engineer.jpg\nFile:Ram-Tah-Guardian-Sentinel.png\nFile:Ram-Tah-Pheonix-Base.jpg\nFile:Ram Tah.png\nFile:Rank-9-combatk.png\nFile:Rank-9-tradingk.png\nFile:Rank-9k.png\nFile:Ranks.blue.png\nFile:Ranks Default.png\nFile:Ranks Selected.png\nFile:Ranks online.jpg\nFile:Rare material.svg\nFile:Rares aepyornis eggs.jpg\nFile:Ratking.jpg\nFile:Ratsticker-300x300k.png\nFile:Ravanahutis.png\nFile:Raw Power - Elite Dangerous Vulture\nFile:Raxxla - The Elite Dangerous Mystery\nFile:Raxxla 400.png\nFile:ReactiveSurfaceComposite.jpg\nFile:Reactor Regulator pre-alpha.png\nFile:Rear DBX Cockpit Area.png\nFile:RebelMission.png\nFile:Reboot-Repair-Ship.png\nFile:Recepta Conditivus.png\nFile:Recepta Conditivus - Green.png\nFile:Recepta Conditivus - Red.png\nFile:Recepta Deltahedronix.png\nFile:Recepta Deltahedronix - Mulberry.jpg\nFile:Recepta Umbrux.png\nFile:Recharge Your Suit - Elite Dangerous Odyssey - 1 Minute Cmdr\nFile:ReclamationSig.gif\nFile:Red Giant.jpg\nFile:Red Giant system.png\nFile:Red Rover 2.png\nFile:Red Rover 3.png\nFile:Red Rover 4.png\nFile:Red Rover Heart Nebula 2.png\nFile:Redisth Gas Giant 0162.jpg\nFile:Reel-Mollusc-1.png\nFile:Reel-Mollusc-2.png\nFile:Reel-Mollusc-3.png\nFile:Reel-Mollusc-4.png\nFile:Reel-Mollusc-5.png\nFile:Reel-Mollusc-6.png\nFile:Reel Mollusc - Norma's Vocalists - Elite Dangerous Codex\nFile:Refinery Ingame.png\nFile:Refinery Station.jpg\nFile:Regeneration.svg\nFile:Region and size.JPG\nFile:Regular.png\nFile:Regular Station.jpg\nFile:ReinforcedAlloys.jpg\nFile:Remlok-Holo-Screen-Ad-Elite-Dangerous.png\nFile:Remlok-Suit-Profile.jpg\nFile:Remlok-Suit-Profile.png\nFile:Remlok-Suit.png\nFile:Remlok-Survival-Mask-Pilot-Character.png\nFile:Remlok-suit-male-character-1.png\nFile:Remlok.svg\nFile:Remlok Ad.png\nFile:Remlok Maverick pre-alpha.png\nFile:Remlok Suit.jpg\nFile:Remlok Survival Mask.png\nFile:Remlok Survival Mask Male Pilot.jpg\nFile:Remlok suit female character 1.jpg\nFile:Remlok suit female character 2.png\nFile:Remote Release Flechette Launcher.png\nFile:Remote Workshop without blueprints.png\nFile:Reorte.png\nFile:Rescue-One-Ship.png\nFile:Rescue-Team-Ship-Rescue-One.png\nFile:Reserved m comp on MkIV.jpg\nFile:Resource-Extraction-Site-Eagle.png\nFile:Retributor Beam Laser.jpg\nFile:Returning to the Gnosis under attack\nFile:Review-Elite-Dangerous-PS4-Destructoid.png\nFile:Rhea-Sol.png\nFile:Rhea-System-Map.png\nFile:Rhea.jpg\nFile:Rhizome-Pod.png\nFile:Rhizome Pods - Space Armadillos - Elite Dangerous Codex\nFile:Rho-Ophiuchi-nebula.png\nFile:Ribbons.JPG\nFile:Ridley Scott.png\nFile:Riedquat.png\nFile:Rigel-B-system-map.png\nFile:Rigel-system-map.png\nFile:Rigel.png\nFile:Rigel B.png\nFile:Rigel and Rigel B.png\nFile:Rings.jpg\nFile:Rings Closeup2.jpg\nFile:Ripe Meta-Alloy Pod.jpg\nFile:Rivalry - Elite Dangerous Eagle\nFile:Robigo-B1-Canyon.png\nFile:Robigo-Mining-Outpost.png\nFile:Rockforth-Corporation-Logo.png\nFile:Rocky-Planet-grey-180px.png\nFile:Rocky-Planet-yellow.png\nFile:Rocky-Planets-180px.png\nFile:Rocky bodies HIP 99152 2 b a+b.png\nFile:Rocky body HIP 53248 AB 4 d.png\nFile:Rocky body HIP 99152 2 a.png\nFile:Rocky ice.png\nFile:Rocky ice world Wredguia AG-F d11-24 A 7.png\nFile:Rohini.png\nFile:Roles Default.png\nFile:Roles Selected.png\nFile:Rolling with Elite Dangerous RPG & Spidermind Games\nFile:Rosa Dayette.png\nFile:Rosa Dayette reveal.png\nFile:Roselighter, Orion (Part 3)\nFile:Roselighter, The Loop (Part 2)\nFile:Rosette-Nebula-Planet.png\nFile:Roseum Lagrange Storm Cloud.png\nFile:Ross-128-System-Map.png\nFile:Ross-Projectiles-Logo.png\nFile:Ross-Projectiles-container-logo.png\nFile:Ross 210.png\nFile:Rough2.png\nFile:Rough3.png\nFile:Rsz screenshot 0006 2.jpg\nFile:Rubellum Torus Mollusc.png\nFile:Rubicundum Lagrange Storm Cloud.png\nFile:Rubicundum cloud with Krait Phantom.jpg\nFile:Rules Can Be Beautiful\nFile:Rules Can Be Beautiful David Braben at TEDxAlbertopolis\nFile:Rules can be beautiful David Braben at TEDxAlbertopolis\nFile:RunnerupMarcBrown.jpg\nFile:Running-Man-Nebula.png\nFile:Ruthenium a half bar.jpg\nFile:Rutile-Crystal.png\nFile:S-type Star (1) - HIP 40977 A.jpeg\nFile:S-type Star (2) - HIP 96983 A.jpeg\nFile:S-type Star (3) - Boeph WY-S e3-890 C.jpeg\nFile:S2.png\nFile:S300 altMODCrest.jpg\nFile:S4-Sentry-Skimmer-Close-Up-2.png\nFile:S4-Sentry-Skimmer-Close-Up.png\nFile:S4-Sentry-Skimmer-Surface.png\nFile:S4-Sentry-Skimmer-Underside.png.png\nFile:S4-Sentry-Skimmer-patrolling.jpg\nFile:S4-Sentry-Skimmer.png\nFile:S4-Sentry-Skimmers-SRV.png\nFile:S4b25Dg.png\nFile:S4ygOwB.jpg\nFile:S5LM-Guardian-Skimmer.png\nFile:S9-Goliath-Skimmer.jpg\nFile:S9 Goliath Skimmer.png\nFile:SAGi.jpg\nFile:SENDELL - The Veil Nebula\nFile:SE Corp logo.png\nFile:SGwLgVa.jpg\nFile:SIZE COMPARISON.png\nFile:SJC.jpg\nFile:SLF-Fighter-Hangar-Inside.png\nFile:SLF-Taipan-and-Planetary-Ring.png\nFile:SLF-XG8-Javelin.png\nFile:SOC 2.png\nFile:SP Wikia.png\nFile:SRV-Ravine-Guide.png\nFile:SRV-Scarab-Cockpit.png\nFile:SRV-Scarab-Driving-Planet.png\nFile:SRV-Scarab-and-Occupied-Escape-Pod.jpg\nFile:SRV-Scarab.png\nFile:SRV-Wave-Scanner-Reference-Guide.png\nFile:SRV-Wave-Scanner-Resource-Signature-Reference-Guide.png\nFile:SRV - Elite Dangerous Horizons Pilot Training\nFile:SRV Scarab Plasma Repeater Turret.png\nFile:SRV Scarabs and Escape Pod.jpg\nFile:SRV at Beagle Point.jpg\nFile:SRV framework.svg\nFile:STC.png\nFile:SUPER CRUISE TO STARPORTS LIKE A PRO - Flight Tutorial-0\nFile:S class star.jpg\nFile:Sacaqawea-Space-Port-Planetary-Outpost.png\nFile:Sacrosanct.png\nFile:Sacrosanct destroyed.png\nFile:Sacrosanct destroyed bow.png\nFile:Sacrosanct destroyed stern.png\nFile:Sacrosanct in Mudhrid.png\nFile:Sadler's Song Megaship.png\nFile:Sadr-Region.png\nFile:Saga.jpg\nFile:Sagan-Class-Tourist-Ship.png\nFile:Sagi eye news.jpg\nFile:Sagittarius-Eye-Magazine-Issue-6.png\nFile:Sagittarius A.png\nFile:Sagittarius A 2015-09-23.jpg\nFile:Sagittarius A 2015-09-23 22-32-31.jpg\nFile:Sagittarius A Supermasive black Hole 2014-11-28 23-08-46.jpg\nFile:Sagittarius A at 1AU 2015-09-23.jpg\nFile:Sagittarius A system.png\nFile:Sagittarius Eye - Your Galactic News\nFile:Sagittarius Eye Bulletin - Alliance Challenger Debut\nFile:Sagittarius Eye Bulletin - Commander Completes Massive Circumnavigation\nFile:Sagittarius Eye Bulletin - Galactic Circumnavigation Record Shattered\nFile:Sagittarius Eye Bulletin - Keef Drow beats Farthest Distance from SOL\nFile:Sagittarius Eye Bulletin - Krait Mk. II Smashes Expectations\nFile:Sagittarius Eye Bulletin - Krait Phantom Launching Soon\nFile:Sagittarius Eye Bulletin - Mamba Makes Its First Strike\nFile:Sagittarius Eye Bulletin - Mischievous Galactic Logo Complete\nFile:Sagittarius Eye Bulletin - New Exploration Statistics Released\nFile:Sagittarius Eye Bulletin - New Horizons - Ancient Probe\nFile:Sagittarius Eye Bulletin - New Thargoid Base Uncovered\nFile:Sagittarius Eye Bulletin - New Thargoid Variants Hit Hard\nFile:Sagittarius Eye Bulletin - SAGi Offices Under Attack\nFile:Sagittarius Eye Bulletin - Sag* Galactic Record has been broken\nFile:Sagittarius Eye Bulletin - The Rise of Remote Tourism\nFile:Sagittarius Eye Bulletin - The Thargoids' Next Targets\nFile:Sagittarius Eye Bulletin - Type-9 Canyon Race Announced\nFile:Sagittarius Eye Bulletin - ‘Tube Worms’ Sprout Up\nFile:Salacia.jpg\nFile:Salome Community Event.jpg\nFile:Salomé's Requiem\nFile:Salvage-Item-1.png\nFile:Salvage-Item-2.png\nFile:Salvage-Item-3.png\nFile:Salvation Aegis CG promo.png\nFile:Salvation counterstrike CG promo.png\nFile:Salvation icon.png\nFile:Samarium.png\nFile:Sambare 1.PNG\nFile:Sambare Sun.PNG\nFile:Sambare Sun from Guest Dock.PNG\nFile:Sandro-Sammarco-Elite-Dangerous.png\nFile:Satellite-1.png\nFile:Satellite 1.jpg\nFile:Satellite 2.jpg\nFile:Satellite Inhabited Planet.png\nFile:Saturn-Tourist-Beacon.png\nFile:Saturn.jpg\nFile:Saturn.png\nFile:Saud Kruger's Dolphin Advert\nFile:Saud Kruger Dolphin Blueprint .jpg\nFile:Saudkruger.png\nFile:Scarab Art 01.png\nFile:Scarab SRV.png\nFile:Scarab and crystals.png\nFile:Scarab wreckage.png\nFile:Scavenger-Salvage-Drone.jpg\nFile:Scavenger attacking Scarab.jpg\nFile:Scavengers and alien eggs.png\nFile:Schottischer-maerchenwald-iii-f074b76f-efa3-49ac-8cff-d3d0a8d83bc5-1-.jpg\nFile:Scorpgun.png\nFile:ScorpionSRV.jpg\nFile:Scout.png\nFile:Scr00001-1024x529.jpg\nFile:Scramble-Spectrum-G5-Overcharged-Pulse-Lasers.png\nFile:Scrap.png\nFile:Screen Shot 2016-04-29 at 3.41.57 PM.png\nFile:Screenshot (120).png\nFile:Screenshot (186).png\nFile:Screenshot (2019).png\nFile:Screenshot 0001.png\nFile:Screenshot 0001 stitch.jpg\nFile:Screenshot 0001k.png\nFile:Screenshot 0004.jpg\nFile:Screenshot 0007.jpg\nFile:Screenshot 0008.jpg\nFile:Screenshot 0009.jpg\nFile:Screenshot 0010.jpg\nFile:Screenshot 0016.jpg\nFile:Screenshot 0022.jpg\nFile:Screenshot 0025.jpg\nFile:Screenshot 0034.jpg\nFile:Screenshot 0037.jpg\nFile:Screenshot 0038.jpg\nFile:Screenshot 00391.jpg\nFile:Screenshot 0040web.jpg\nFile:Screenshot 0046.jpg\nFile:Screenshot 0052.jpg\nFile:Screenshot 0053.jpg\nFile:Screenshot 0056.png\nFile:Screenshot 0059.jpg\nFile:Screenshot 0062.jpg\nFile:Screenshot 0062web.jpg\nFile:Screenshot 0063.jpg\nFile:Screenshot 0065.jpg\nFile:Screenshot 0065 edited.jpg\nFile:Screenshot 0066.jpg\nFile:Screenshot 0066 .jpg\nFile:Screenshot 0069.jpg\nFile:Screenshot 0071.jpg\nFile:Screenshot 0076.jpg\nFile:Screenshot 0076a.jpg\nFile:Screenshot 0086.jpg\nFile:Screenshot 0099.jpg\nFile:Screenshot 0103.jpg\nFile:Screenshot 0104.jpg\nFile:Screenshot 0105.png\nFile:Screenshot 0116.jpg\nFile:Screenshot 0126.jpg\nFile:Screenshot 0128.jpg\nFile:Screenshot 0143.jpg\nFile:Screenshot 0147.jpg\nFile:Screenshot 0155.jpg\nFile:Screenshot 0176.jpg\nFile:Screenshot 0181.png\nFile:Screenshot 0186.jpg\nFile:Screenshot 0194.jpg\nFile:Screenshot 0196.jpg\nFile:Screenshot 0206.jpg\nFile:Screenshot 0206.png\nFile:Screenshot 0213.jpg\nFile:Screenshot 0218.jpg\nFile:Screenshot 0220.jpg\nFile:Screenshot 0223.jpg\nFile:Screenshot 0225.jpg\nFile:Screenshot 0228.jpg\nFile:Screenshot 0232.jpg\nFile:Screenshot 0237.jpg\nFile:Screenshot 0243.jpg\nFile:Screenshot 0246.jpg\nFile:Screenshot 0247.jpg\nFile:Screenshot 0255.jpg\nFile:Screenshot 0292.jpg\nFile:Screenshot 0297.jpg\nFile:Screenshot 0453.jpg\nFile:Screenshot 0463 (2).jpg\nFile:Screenshot 0502.png\nFile:Screenshot 0540.jpg\nFile:Screenshot 20200111-115555.jpg\nFile:Screenshot 431.jpg\nFile:Screenshot 500.jpg\nFile:Screenshot 501.jpg\nFile:Screenshot 571.png\nFile:Screenshot Obelisk Data store in ship.jpg\nFile:Scriveners Dredger icon.png\nFile:Scriveners Dredger maw.png\nFile:Scriveners Dredger side rear.png\nFile:Scriveners Dredger thrusters.png\nFile:Scriveners Dredger ventral.png\nFile:Seagull-Nebula.png\nFile:Search-And-Rescue-Agent.png\nFile:Sebanner small.jpg\nFile:Sebastian the Snake Warrior.jpg\nFile:Security.png\nFile:Sedna.jpg\nFile:Seeker's Rest.png\nFile:Seeker Missile Rack.png\nFile:SeekingLuxuries.png\nFile:Seismic Charge Launcher.png\nFile:Selene-Jean-Engineer-Base.png\nFile:Selene-Jean-Engineer-Odyssey.png\nFile:Selene Jean.png\nFile:Selene Jean Engineer.jpg\nFile:Selenium in sandstone.jpg\nFile:Sellillegalgoodsmenu.png\nFile:SellingIllegalGoods.jpg\nFile:Semiconductor.jpg\nFile:Sensor-disruption.svg\nFile:Sensor.png\nFile:Sensors.png\nFile:Sensors Ingame.png\nFile:Sentry Skimmer weapon detail.jpg\nFile:Sentry skimmer side view 1.jpg\nFile:Sentry skimmer upclose 1.jpg\nFile:September Update - Content Reveal\nFile:September Update banner.png\nFile:Serene Harbour.png\nFile:Servicesbalance.jpg\nFile:Set.png\nFile:Setesh 200x250.png\nFile:Settlement Dixon Dock - HR 2551 planet 2 D.png\nFile:Settlement Generator.jpg\nFile:Settlement hydroponics.png\nFile:Settlement in Adityan alpha.png\nFile:Settlement symbol.jpg\nFile:Settlementsizeandsecurityratingexample.jpg\nFile:Sexy.png\nFile:ShadowWolf-Kell-EliteDangerous32.exe DX11 20151106 224349.jpg\nFile:Shapley-1-Nebula-2.png\nFile:Shapley-1-Nebula-3.png\nFile:Shapley-1-Nebula.png\nFile:Shapley 1.png\nFile:Shenve.png\nFile:Sherrill orbital damaged.PNG\nFile:Shield-Booster.png\nFile:Shield-Example.png\nFile:Shield-Times.png\nFile:Shield-breach.svg\nFile:Shield-cell-cascade.svg\nFile:Shield-generator-attack.svg\nFile:Shield-reboot.svg\nFile:ShieldCellBank Ingame.png\nFile:ShieldGeneratorRatings.png\nFile:ShieldGenerator Ingame.png\nFile:Shield Cell Banks Comparison-Apr15.png\nFile:Shield Grenade.png\nFile:Shield skimmer.jpg\nFile:ShinrartaDezhraBarycentre.png\nFile:Shinrarta Dezhra.png\nFile:Shiny Ring.jpg\nFile:Ship-Launched-Fighter-Docking-Anaconda.png\nFile:Ship-Notoriety.png\nFile:Ship-Outfitting-Fer-de-Lance.png\nFile:Ship-Pilots-Insurance-Rebuy.png\nFile:Ship.jpg\nFile:ShipHUDLeftPanel.png\nFile:ShipHUDRightPanel.png\nFile:Ship Introducing Cobra Mk III - Elite Dangerous Short cinematic video\nFile:Ship Introducing Diamondback Explorer - Elite Dangerous Short cinematic video\nFile:Ship Introducing Fleet Carrier - Elite Dangerous Short cinematic video\nFile:Ship Introducing Imperial Courier - Elite Dangerous Short cinematic video\nFile:Ship Introducing Mamba - Elite Dangerous Short cinematic video\nFile:Ship Introducing Orca - Elite Dangerous Short cinematic video\nFile:Ship Introducing Python - Elite Dangerous Short cinematic video\nFile:Ship Introducing Type-9 Heavy - Elite Dangerous Short cinematic video\nFile:Ship Outfitting.jpg\nFile:Ship Pilot Credit Balance.png\nFile:Ship Services.png\nFile:Ship chart.jpg\nFile:Shipbalance.jpg\nFile:Ships-Wing-Sideview.png\nFile:Ships Default.png\nFile:Ships Selected.png\nFile:Ships WikiaAppIcon.png\nFile:Shipyard-Station.png\nFile:Shipyard Federal.png\nFile:Shipyard Imperial.png\nFile:Shock-Cannon-Elite-Dangerous.png\nFile:Shock Mine Launcher.png\nFile:Sidebarimg.png\nFile:Sidewinder-Cockpit-Interface.png\nFile:Sidewinder-MkI-front-docked.png\nFile:Sidewinder-MkI-heat-vents-and-neutron-star.png\nFile:Sidewinder-MkI-in-CQC.png\nFile:Sidewinder-MkI-mining.png\nFile:Sidewinder-Planetary-Flight-HUD.png\nFile:Sidewinder.jpg\nFile:Sidewinder01.jpg\nFile:Sidewinder Black Hole.png\nFile:Sidewinder Blueprint.png\nFile:Sidewinder Exploring.png\nFile:Sidewinder MkI Blueprint.png\nFile:Sidewinder Schematic.jpg\nFile:Sidewinder interfaceHolo.JPG\nFile:Sidewinder m 8.png\nFile:Sidey.png\nFile:Signal5-1024.png\nFile:SignalSources Default.png\nFile:SignalSources Selected.png\nFile:Silentrun.jpeg\nFile:Silicate-Crystals-and-Ice-Crystals-space.png\nFile:Silicate-Fumarole.png\nFile:Silicate Crystal.png\nFile:Silicate Crystal Purpureum.png\nFile:Silicate Crystal planet.png\nFile:Silicate Vapour Gas Vent HIP 41191 2C.jpg\nFile:Silicate vapour fumarole.png\nFile:Silver nuggets.png\nFile:Simpsons Eden.png\nFile:Single Polymer Chains.jpg\nFile:Sinuous-Tuber-alien.png\nFile:Sinuous-Tuber-and-SRV.png\nFile:Sinuous-Tuber-on-Planet.png\nFile:Sirius-Corporation-Logo.png\nFile:Sirius-System.png\nFile:Sirius-star.png\nFile:Sit-a-while-and-listen.jpg\nFile:Site-background-dark\nFile:Site-background-light\nFile:Site-favicon.ico\nFile:Site-logo.png\nFile:Sizes.jpg\nFile:Skimmer Components.png\nFile:Skimmer artwork 01.jpg\nFile:Skins.jpg\nFile:Skull3Decal.PNG\nFile:Slave Trading Result.jpg\nFile:Slave to the Empire\nFile:Slice1.png\nFile:Slough Reports EP1\nFile:Small9th.png\nFile:SmallHPCannon.jpg\nFile:Small Settlement.png\nFile:Small Settlement and Sidewinder.jpg\nFile:Small fighter 01.png\nFile:Small fighter concept art 01.png\nFile:Smile Everyday - Elite Dangerous Adder\nFile:Smokeman.jpg\nFile:Smuggler-Type-6.jpg\nFile:Smuggler mission.JPG\nFile:Snake Wrap Iridescent Anaconda.png\nFile:Snakenebula.jpg\nFile:Snakenebulafromgalmap.png\nFile:Socho.png\nFile:Social hub concourse.png\nFile:Social hub docking bay view.png\nFile:Social hub mission kiosk.png\nFile:Social hub vendors.png\nFile:Sol.png\nFile:SolSystemMap.png\nFile:Sol - Elite Dangerous\nFile:Sol system 3300 A.D (Elite dangerous)\nFile:SolarFlares.jpg\nFile:Solar Eclipse 2.jpg\nFile:Solar Eclipse 3.png\nFile:Solar Eclipse and Anaconda.jpg\nFile:Solar Eclipse and SRVs.jpg\nFile:Solar Flare\nFile:Solar Flare.jpg\nFile:SoldLuxuries.png\nFile:Solid Mineral Sphere -Rubeum Crystals - NYEAJAAE WG-S D5-161.jpg\nFile:Solid Mineral Spheres.png\nFile:Soontill-System.png\nFile:Sopwith camel in flying.jpg\nFile:Sothis-System-Map.png\nFile:Sothis.png\nFile:Sothis Poster.jpg\nFile:Source 2 Class B star 2015-09-23.jpg\nFile:Sovica.jpg\nFile:Sovica2.jpg\nFile:Sovica3.jpg\nFile:Space-Jellyfish-2.png\nFile:Space-Jellyfish-3.png\nFile:Space-Jellyfish-in-Elite-Dangerous.png\nFile:Space-Pumpkins-at-Mahon-Research-Base.png\nFile:Space-Trader's-Flight-Training-Manual.png\nFile:Space Fruit Catalogue Elite Dangerous\nFile:Space Squid.png\nFile:Space Squid and Metallic Crystals.png\nFile:Space Squid closeup.png\nFile:Space Squid dorsal.png\nFile:Space Squid tentacles.png\nFile:Space Tourism Beluga Liner.jpg\nFile:Space Truckers Elite Dangerous\nFile:Space octo white.jpg\nFile:Spatium Exploratio\nFile:Special Effect Icons.png\nFile:Species Default.png\nFile:Spirit of Laelaps.png\nFile:Spirit of Nysa.png\nFile:Spirograph-Nebula.png\nFile:Spirograph Nebula.jpg\nFile:Spirograph Nebula - Elite Dangerous Music Video\nFile:Spoihaae-XE-X-d2-9-White-Dwarf.png\nFile:Spoihaae XE-X d2-9 System Map.png\nFile:Squadrons Default.png\nFile:Square.png\nFile:Squirrel’s Nest Bar 1.jpg\nFile:Squirrel’s Nest Bar 2.jpg\nFile:Squirrel’s Nest Bar 3.jpg\nFile:Srv brown dwarf.png\nFile:Srv diamondback crash.jpg\nFile:Ss (2014-12-16 at 11.39.21).jpg\nFile:Ss (2015-01-22 at 07.41.44).png\nFile:Ss (2015-03-17 at 08.47.29).jpg\nFile:Ss (2015-06-08 at 01.23.15).jpg\nFile:Ss (2016-04-22 at 12.08.07).png\nFile:StandardDockingComputer Ingame.png\nFile:Standard material.svg\nFile:Star-System-View-Asp-SRV.png\nFile:StarGate Reloaded mini.jpg\nFile:StarSystems Default.png\nFile:StarSystems Selected.png\nFile:Star Rise Anaconda.jpg\nFile:Star Rise Corvette.jpg\nFile:Star Rise over a Planet.jpg\nFile:Star With Viper.jpg\nFile:Starboard side.png\nFile:Stardust - Elite Dangerous CTRL+ALT+SPACE 2017 Competition Winner\nFile:Stargazer Asteroid Station - Elite Dangerous\nFile:Starport Anaconda.png\nFile:Starport Cobra.png\nFile:Starport Coriolis - Elite Dangerous\nFile:Stars-02.jpg\nFile:Stars Default.png\nFile:Stars Selected.png\nFile:Stars and Krait Phantom.png\nFile:Starship One.png\nFile:Station-Defence-Turret.png\nFile:Station-Under-Repair.png\nFile:Station Attack Interior Repairing.png\nFile:Station Attack The Oracle.png\nFile:Station Attack Titan's Daughter.png\nFile:Station Attack interior.png\nFile:Station ad drone A1.png\nFile:Station ad drone A2.png\nFile:Station ad drone AB.png\nFile:Station ad drone B1.png\nFile:Station ad drone B2.png\nFile:Station with Boeing 747 and Courier.jpg\nFile:Stationinside 08.jpg\nFile:Stationoverplanet.jpg\nFile:Stations Default.png\nFile:Stations Selected.png\nFile:Statue-of-Liberty-Nebula-NGC-3576.png\nFile:Steady.svg\nFile:Steel Majesty Mudhrid.png\nFile:Stellar Flare.jpg\nFile:Stellar Flare close encounter.jpg\nFile:Stellar Forge — DRYAO AOWSKY KX-T E3-7136.png\nFile:Stellar Vision - Elite Dangerous Beluga Liner\nFile:Steve-Kirby-Elite-Dangerous.png\nFile:Still pioneer.png\nFile:Stillman Hub.png\nFile:Stillman Hub bombed.png\nFile:Stinger-0.jpg\nFile:Stinger-2-Skimmer-front.png\nFile:Stinger-2-Skimmer-top.png\nFile:Stinger-2-attack-skimmer.png\nFile:Stinger.jpg\nFile:Stinger2 closeup.png\nFile:StolenGoodsCargo.jpg\nFile:Stolon-Pods-alien-2.PNG\nFile:Stolon-Pods-alien-3.png\nFile:Stolon-Pods-alien.PNG\nFile:Stolon-Pods-and-SLF.png\nFile:Stolon-Tree.png\nFile:Stone enterprise.JPG\nFile:Stone enterprise.png\nFile:Stories-of-Life-on-the-Frontier-Itorilleta-fierce-creature.png\nFile:Stories-of-Life-on-the-Frontier-Jaques-Changed-Cyborg.png\nFile:Stratum.jpg\nFile:Stratum Araneamus - Emerald.png\nFile:Stratum Cucumisis - Emerald.jpg\nFile:Stratum Laminamus - Green.jpeg\nFile:Stratum Laminamus - Lime.png\nFile:Striker unit.jpg\nFile:Structural Regulators.png\nFile:Stuemeae FG-Y d7561.png\nFile:Stygian Red Krait Phantom.png\nFile:Styx.jpg\nFile:Styx.png\nFile:Sub-Surface Displacement Missile.png\nFile:Suit Manticore Dominator head.png\nFile:Sulphur.jpg\nFile:Summerland.png\nFile:Summon.jpg\nFile:Sun Sol.jpg\nFile:Sunset on Aquari.png\nFile:Superconductor-Magnet.png\nFile:Supercruise.png\nFile:Supergiant.png\nFile:Supermassive Black Hole Sagittarius A* - The FIRST EVER arrival (Elite- Dangerous Gamma 1.04)\nFile:Supratech Artemis explorer suit.png\nFile:Supratech logo.png\nFile:Suprmasv banner.png\nFile:Surface-Port-Lawhead's Progress in Carini.png\nFile:Surface-Port-SRV-Road-Entry.png\nFile:Surface Port King's Inheritance in Wolf 562.png\nFile:Surface Stabilisers.png\nFile:Survey Vessel Victoria’s Song.png\nFile:Survival Equipment.png\nFile:SvRFrYfSUak.jpg\nFile:SweetFX comparison mod.jpg\nFile:Synteini-System-Map.png\nFile:Synthetic Fabrics.jpg\nFile:Synthetic Reagents.png\nFile:Synuefe EN-H d11-96.png\nFile:Synuefe XO-P c22-17 D 3 (2).png\nFile:System-Authority-Vessel.png\nFile:System-Permits.png\nFile:System21b.jpg\nFile:T04-Type Anomaly.png\nFile:T3 V Wredguia HY-G c24-11 C.png\nFile:T9 1.jpg\nFile:T9onSurface.png\nFile:THAILOAE EM-M D7-2 A 6.png\nFile:THOSE DAMN THARGOIDS\nFile:THe Hutton Orbital Blues\nFile:TRUMPLER 14.png\nFile:TT4.png\nFile:TTS0 VI Col 285 Sector LU-K b10-3.png\nFile:TTS5 Vab Wredguia HY-G c24-12.png\nFile:TYPE-7.png\nFile:T Tauri.jpg\nFile:Tabaldak.png\nFile:Taipan-Fighter-Cockpit.png\nFile:Taipan-Fighter-Neptune.png\nFile:Taipan-SLF-and-Planet.png\nFile:Taipan Fighter Blueprint.png\nFile:Taipan SLF and Ship Hangar.png\nFile:Taipan ingame FaulconDeLacy description.png\nFile:Takada Aphelion.png\nFile:Takada Eclipse.png\nFile:Takada Pistol.png\nFile:Takada Rifle.png\nFile:Takada Zenith.png\nFile:Takada logo.png\nFile:Tangaroa.jpg\nFile:Tantalum.png\nFile:Tarach Tor.jpg\nFile:Tarach spice copy.jpg\nFile:Target-interferance.svg\nFile:Targeting-overload.svg\nFile:Tau Ceti.png\nFile:Taurus-Dark-Region.png\nFile:Tbf-deliverer.png\nFile:Tbf-liberator.png\nFile:Tbf-transporter.png\nFile:Tbf-vindicator.png\nFile:Tbf-voyager.png\nFile:Tea.jpg\nFile:Tech Station.jpg\nFile:Technology-Broker.png\nFile:Tellurium element.jpg\nFile:Template.jpg\nFile:Template.png\nFile:Terra Mater.png\nFile:Terra Velasquez.png\nFile:Terrestrial planet and a Cobra.jpg\nFile:Terrestrial planet brown dwarf.png\nFile:TerritoryMap.png\nFile:Testament.png\nFile:Testing the healing clipper!\nFile:Tethys-Sol.png\nFile:Thallium.png\nFile:Thargoid-Activity-Map-Feb-3306.jpg\nFile:Thargoid-Attacked-Settlement-Scrump-Landing.png\nFile:Thargoid-Barnacle-Meta-Alloys.png\nFile:Thargoid-Berserker-Sideview.png\nFile:Thargoid-Bio-Mechanical-Conduits.png\nFile:Thargoid-Concept-Art-Rumored.png\nFile:Thargoid-Device-Star-Map.png\nFile:Thargoid-Eggs-SRV.png\nFile:Thargoid-Eggs.png\nFile:Thargoid-Heart-and-Cobra-Ship.png\nFile:Thargoid-Heart.png\nFile:Thargoid-Hydra-Interceptor.png\nFile:Thargoid-Hydra-and-Cyclops-Interceptors.png\nFile:Thargoid-Interceptor-Basilisk.png\nFile:Thargoid-Interceptor-Cyclops-Basilisk.png\nFile:Thargoid-Interceptor-Heart-Close-Up.png\nFile:Thargoid-Interceptor-Particle-Cloud-Barnacles.png\nFile:Thargoid-Interceptor-Prepare-Scan.png\nFile:Thargoid-Interceptor-Rear-Side.png\nFile:Thargoid-Interceptor-Scanning.png\nFile:Thargoid-Interceptor-energy-attack.png\nFile:Thargoid-Interdictor-Witch-Space-Portal.png\nFile:Thargoid-Interdictor-Wormhole.png\nFile:Thargoid-Machine-2.png\nFile:Thargoid-Probe-close-up.png\nFile:Thargoid-Probe.png\nFile:Thargoid-Propulsion-Element.png\nFile:Thargoid-Resin-SRV.png\nFile:Thargoid-Resin.png\nFile:Thargoid-Scavenger-Sideview.jpg\nFile:Thargoid-Scavengers-Surface-Site-Activity.png\nFile:Thargoid-Scout-Berserker-Planet-2.png\nFile:Thargoid-Scout-Berserker-Planet.png\nFile:Thargoid-Scout-Berserker-Sideview.png\nFile:Thargoid-Scout-Blueprint.png\nFile:Thargoid-Scout-Close-Up-Side.png\nFile:Thargoid-Scout-Inciter-and-Berserker.png\nFile:Thargoid-Scout-Inciter.png\nFile:Thargoid-Scout-Marauder.png\nFile:Thargoid-Scout-Regenerator-and-Berserker.png\nFile:Thargoid-Scout-Regenerator.png\nFile:Thargoid-Scout-Ship-Crash.png\nFile:Thargoid-Scout-Shoots.png\nFile:Thargoid-Scout-Space.png\nFile:Thargoid-Scout-Top-Close-Up.png\nFile:Thargoid-Scout-Top.png\nFile:Thargoid-Scouts-and-Interceptors.png\nFile:Thargoid-Scouts.png\nFile:Thargoid-Sensor-in-Space.png\nFile:Thargoid-Sensor.png\nFile:Thargoid-Spires-Meta-Alloys.jpg\nFile:Thargoid-Structure-Eggs.png\nFile:Thargoid-Surface-Site-From-Above-HIP-14909.png\nFile:Thargoid-Surface-Site-Overview.png\nFile:Thargoid-Surface-Site.png\nFile:Thargoid-Thargon-Close-Up.png\nFile:Thargoid-Thargon-Side.png\nFile:Thargoid-Thargons.png\nFile:Thargoid-Unknown-Link.png\nFile:Thargoid-Weapon-Parts.png\nFile:Thargoid-Wormhole-Front.png\nFile:Thargoid-Wormhole.png\nFile:Thargoid-Wreckage-Components.png\nFile:Thargoid-and-Diamondback-Ships.png\nFile:Thargoid.png\nFile:Thargoid Attack Aftermath.png\nFile:Thargoid Attack Aftermath Imperial.png\nFile:Thargoid Bobblehead.png\nFile:Thargoid Conflict Zones - The Hydra\nFile:Thargoid Device signal spectrograph.png\nFile:Thargoid Device star map.png\nFile:Thargoid Frameshift Portal Stays Open!\nFile:Thargoid Interceptor Alien Crash Site 1.png\nFile:Thargoid Interceptor Alien Crash Site 2.png\nFile:Thargoid Interceptor Basilisk.png\nFile:Thargoid Interceptor Basilisk Variant.png\nFile:Thargoid Interceptor Basilisk Variant 2.png\nFile:Thargoid Interceptor Cyclops.png\nFile:Thargoid Interceptor Cyclops Front HD.png\nFile:Thargoid Interceptor Hydra.png\nFile:Thargoid Interceptor Medusa.png\nFile:Thargoid Interceptor Medusa Variant.png\nFile:Thargoid Interceptor Medusa Variant 2.png\nFile:Thargoid Interceptor Orthrus.png\nFile:Thargoid Machine.png\nFile:Thargoid Megastructure - Elite Dangerous\nFile:Thargoid Organic Structure.png\nFile:Thargoid Scavengers.png\nFile:Thargoid Scavengers Elite Dangerous 06 27 2017\nFile:Thargoid Scout Inciter 2.png\nFile:Thargoid Scout Ship Crash 2.png\nFile:Thargoid Scout Ship Crash 3.png\nFile:Thargoid Scout Ship Crash 4.png\nFile:Thargoid Scout analysis.png\nFile:Thargoid Scouts 3.1.png\nFile:Thargoid Sensor 001.png\nFile:Thargoid Ships.png\nFile:Thargoid Site.png\nFile:Thargoid Site 2.png\nFile:Thargoid Strike Follows Salvation's Prediction.png\nFile:Thargoid Surface Site Scavenger.png\nFile:Thargoid Surface Site Scavenger 2.png\nFile:Thargoid Surface Site Scavenger close.png\nFile:Thargoid Surface Site Scavenger close 2.png\nFile:Thargoid Surface Site Scavenger close 3.png\nFile:Thargoid Surface Site Unknown Uplink Device.png\nFile:Thargoid Surface Site above.png\nFile:Thargoid Surface Site above 2.png\nFile:Thargoid Surface Site central structure.png\nFile:Thargoid Surface Site central structure 2.png\nFile:Thargoid Surface Site central structure 3.png\nFile:Thargoid Surface Site high view.png\nFile:Thargoid Surface Site horizon view.png\nFile:Thargoid Surface Site tunnel.png\nFile:Thargoid Unknown Link.png\nFile:Thargoid attacks April 18 3305.png\nFile:Thargoid attacks December 6 3304.png\nFile:Thargoid attacks May 10 3304.png\nFile:Thargoid attacks September 19 3305.png\nFile:Thargoid base music video - Investigating the Rift\nFile:Thargoid insignia.png\nFile:Thargoid insignia small.png\nFile:Thargoid second ship crash.png\nFile:Thargoid second ship crash 2.png\nFile:Thargoid second ship crash 3.png\nFile:Thargoid second ship crash 4.png\nFile:Thargoid second ship crash 5.png\nFile:Thargoid second ship crash 6.png\nFile:Thargoid ship.gif\nFile:Thargoids-Return-Message.png\nFile:Thargon-Swarm.png\nFile:Thargon.jpg\nFile:Thargons-Medusa.png\nFile:The-Abyss-Galactic-Region.png\nFile:The-Abyssal-Plain-Galactic-Region.png\nFile:The-Anthor-Patch-Galactic-Region.png\nFile:The-Ascendance-Galactic-Region.png\nFile:The-Bleak-Lands.png\nFile:The-Bubble-Nebula-Gas-Giant.png\nFile:The-Club-Logo.png\nFile:The-Dark-Wheel-Emblem-light.png\nFile:The-Dark-Wheel-Emblem.png\nFile:The-Dryman-Ridge-Galactic-Region.png\nFile:The-Dweller-Engineer-Base-2.png\nFile:The-Dweller-Engineer-Base.png\nFile:The-Elite-Tourist-Spot-0245.png\nFile:The-Fallows-Galactic-Region.png\nFile:The-Festival-Grounds-Galactic-Region.png\nFile:The-Gallipolis-Galactic-Region.png\nFile:The-Gnosis-Megaship-Sideview-2.png\nFile:The-Gnosis-Megaship-Sideview.png\nFile:The-Gnosis-Megaship.png\nFile:The-Hutton-Mug-Art.png\nFile:The-Hutton-Mug.png\nFile:The-Sarge-Engineer.jpg\nFile:The-abyss-ed.png\nFile:The Adder Elite Dangerous\nFile:The Alliance Chieftain (Unbiased Gameplay)\nFile:The Anaconda -Elite Dangerous-\nFile:The Asp Explorer Elite Dangerous\nFile:The Asp Scout Elite Dangerous\nFile:The Beluga Liner Elite Dangerous\nFile:The Canonn Logo.png\nFile:The Cete.png\nFile:The Challenger Elite Dangerous\nFile:The Chieftain Elite Dangerous\nFile:The Christmas Tree Cluster.png\nFile:The Cobra Mk3 Elite Dangerous\nFile:The Commanders Update 2.3 - Elite Dangerous\nFile:The Complete Beginner's Guide to Mining - Elite Dangerous 3.3\nFile:The Conduit Megaship.png\nFile:The Crusader Elite Dangerous-0\nFile:The Diamondback.jpg\nFile:The Diamondback Explorer Elite Dangerous\nFile:The Diamondback Scout\nFile:The Diamondback Scout Elite Dangerous\nFile:The Dionysus in asteroid field.png\nFile:The Dolphin Elite Dangerous\nFile:The Eagle Elite Dangerous\nFile:The Earth seen from Apollo 17.jpg\nFile:The Enclave banner.png\nFile:The Engineers.jpg\nFile:The Engineers 2.1 Trailer - Elite Dangerous Horizons\nFile:The Fateful Eight Another A* Challenge Adventure\nFile:The Federal Assault Ship Elite Dangerous\nFile:The Federal Corvette Elite Dangerous\nFile:The Federal Dropship Elite Dangerous\nFile:The Federal Gunship Elite Dangerous\nFile:The Fer-De-Lance Elite Dangerous\nFile:The Future of Elite Dangerous\nFile:The Git Gud Guide to Trading in Open\nFile:The Gnosis - Canonn Research Group's New Megaship!\nFile:The Gnosis Canonn logo.png\nFile:The Gnosis Flyooe Dryeia JJ-G d11-0.png\nFile:The Gnosis Outotz ST-I d9-4 A 3.png\nFile:The Gnosis Outotz ST-I d9-6 8.png\nFile:The Gnosis Proxima Centauri.png\nFile:The Gnosis in the Bleia Eohn PE-P d6-5 system.jpg\nFile:The Gnosis name panel.png\nFile:The Golconda.png\nFile:The Golconda banner.png\nFile:The Good, The Bad and The Bucky Highlights from the Buckyball Run\nFile:The Guardians - Elite Dangerous Horizons\nFile:The Guardians Recap - Elite Dangerous - ESRB Teen\nFile:The Harmony Megaship.png\nFile:The Hauler Elite Dangerous\nFile:The Hyades.png\nFile:The Imperial Clipper Elite Dangerous\nFile:The Imperial Courier Elite Dangerous\nFile:The Imperial Cutter, because size matters\nFile:The Imperial Cutter Elite Dangerous\nFile:The Imperial Eagle Elite Dangerous\nFile:The Jewel Box.png\nFile:The Keelback Elite Dangerous\nFile:The Krait\nFile:The Krait Phantom (with Scott Manley) Elite Dangerous\nFile:The Lounge.png\nFile:The Lounge 2.png\nFile:The Lounge 3.png\nFile:The Lucent Embrace.png\nFile:The Making of Elite Dangerous\nFile:The Mamba Elite Dangerous\nFile:The Mk2 Krait Elite Dangerous\nFile:The Mk4 Viper Elite Dangerous\nFile:The Orca Elite Dangerous\nFile:The Original Elite, 1984.jpg\nFile:The Prophet.png\nFile:The Prospect.png\nFile:The Python Elite Dangerous\nFile:The Return (Elite Dangerous)\nFile:The Return 2.4 Announcement - Elite Dangerous\nFile:The Return 2.4 splash.jpg\nFile:The Rings of Aulin A Vipers Perspective\nFile:The Running Chicken Nebula.png\nFile:The SRV\nFile:The Sanctum.png\nFile:The Sarge.png\nFile:The Scourge banner.png\nFile:The Scourge decal.png\nFile:The Scriveners Clan Dredger.png\nFile:The Scriveners Clan Dredger 2nd site.jpg\nFile:The Sidewinder Elite Dangerous\nFile:The Type-10 Defender Elite Dangerous\nFile:The Type-6 Transporter Elite Dangerous\nFile:The Type-7 Elite Dangerous\nFile:The Type 9 Heavy Elite Dangerous\nFile:The Umbrellas of Colonia - Codex Tour\nFile:The Unknown Probe shut down my ships! And Talked...\nFile:The Veil pulsar.png\nFile:The Viper Mk3 Elite Dangerous\nFile:The Vonarburg Co-Operative\nFile:The Vulture Elite Dangerous\nFile:The failed star with rings.png\nFile:The making of Elite Dangerous\nFile:The midas.jpg\nFile:The white of Thargoids.JPG\nFile:ThemeCard 004.png\nFile:Thermal-attack.svg\nFile:Thermal Cooling Units.png\nFile:Thor's-Helmet.png\nFile:Thorium.png\nFile:Thruster.png\nFile:Thrusters Ingame.png\nFile:Tiana's Fortune Engineer Base.png\nFile:Tiana-Fortune-Engineer.jpg\nFile:Tiana Fortune.png\nFile:Tiliala's-Lament-Wells-Class-Carrier.png\nFile:Tiliala.png\nFile:Tin.jpeg\nFile:Tionisla-System-Map.png\nFile:Tip off liu.JPG\nFile:Tip off xx.JPG\nFile:Tir.png\nFile:Titan-and-Saturn.jpg\nFile:Titania-Sol.png\nFile:Titania and Uranus.jpg\nFile:Titanium-crystal.png\nFile:To wanga.JPG\nFile:Tod-McQuinn-Engineer-Base-Trophy-Camp.png\nFile:Tod-Mcquinn-Trophy-Camp-Engineer-Base.png\nFile:Tod McQuinn.png\nFile:ToddFace-0.jpg\nFile:ToddFace-1.jpg\nFile:ToddFace.jpg\nFile:Top Tips - Colorize your HUD with Hal Price Elite Dangerous\nFile:Top of the Galaxy.png\nFile:TorpedoPylon Ingame.png\nFile:Torpedo Boat Anaconda\nFile:Torpedo MissileEvolution.jpg\nFile:Total Solar Eclipse.png\nFile:Tourism Station.jpg\nFile:Tourist-Beacon-Asp.png\nFile:Tourist-Beacon-Flyeia-Hypai-FH-X-c17-16.png\nFile:Tourist-Installation-Neutron-Star.png\nFile:Tourist-Spot-0508-Human-Thargoid-Project.png\nFile:Tourist Beacon.png\nFile:Tourist Beacon 2.jpg\nFile:Tourist Spot 0157 Durius.png\nFile:Tower-homestead.jpg\nFile:Toxic cargo.jpg\nFile:TqXEH1l.png\nFile:TradeRanks.png\nFile:Trade Routes in Elite Dangerous\nFile:Trader-Role-Type-9.jpg\nFile:Trader.jpg\nFile:Trader Elite icon.png\nFile:Traders-Rest-Laksak-Engineer-Base.png\nFile:Trappist-1-2.jpg\nFile:Trappist-1-3.jpg\nFile:Trappist-1-4.jpg\nFile:Trappist-1-5.jpg\nFile:Trappist-1-6.jpg\nFile:Trappist-1-7.jpg\nFile:Trappist-1-System.png\nFile:Trappist-1.jpg\nFile:Trifid-Leaf-alien-in-ED.png\nFile:Trifid-Nebula-2.png\nFile:Trifid-Nebula-Inside.png\nFile:Trifid-Nebula-Near-Center.png\nFile:Trifid-Nebula.png\nFile:Trifid Leaf - New beta find in Trifid Nebula\nFile:Trifid nebula from Trifid Sector BA-A E47 AB 1 A.jpg\nFile:Trifidnebulaongalaxymap.png\nFile:Trinkets.JPG\nFile:Triple-Elite-Sidewinder.png\nFile:Triple Elite decal.png\nFile:Triple Threat.png\nFile:Triton-Neptune-Sol.png\nFile:Triton.jpg\nFile:Triton 3.0.png\nFile:Trumble Elite C-64.gif\nFile:Trumpler 16.png\nFile:Tsiolkovskyinstallation.png\nFile:Tubus Cavas.png\nFile:Tubus Cavas - Gray.jpg\nFile:Tubus Compagibus.png\nFile:Tubus Compagibus - Teal3.jpg\nFile:Tubus Rosarium - Maroon.png\nFile:Tubus Soborium Indigo.png\nFile:Tumblr n57x6wO2jL1skaxu8o1 1280.jpg\nFile:Tungsten.jpg\nFile:Turret Security Terminal.jpg\nFile:Turret firing.jpg\nFile:Turret in action 01.jpg\nFile:Turret weapon icon.png\nFile:TussockCultroGreen.jpg\nFile:Tussock Capillum.png\nFile:Tussock Catena - Yellow.png\nFile:Tussock Cultro Lime.png\nFile:Tussock Divisa.png\nFile:Tussock Ignis.png\nFile:Tussock Propagito Lime.png\nFile:Tussock Serrati.png\nFile:Tutorial- Joining the Fuel Rats\nFile:Tutorial- Unlocking the Corrosion Resistant Cargo Rack\nFile:Tutorial- Unlocking the Guardian FSD Booster\nFile:Tutorial- Unlocking the Guardian Gauss Cannon\nFile:Tutorial- Unlocking the Guardian Plasma Chargers\nFile:Tutorial- Unlocking the Guardian Power Distributor\nFile:Tutorial- Unlocking the Guardian Power Plant\nFile:Tutorial- Unlocking the Guardian Shard Cannon\nFile:Tutorial- Unlocking the Remote Release Flechette Launcher\nFile:Tutorial Low Temperature Diamond Piracy - $2-$30M hr\nFile:Tutorial Out of Fuel? Call the FuelRats!\nFile:Two-Krait-MkII-and-Gas-Giant.png\nFile:TwoFingers-Zunuae01.jpg\nFile:Two Nav Beacons in Elite.jpg\nFile:Tycoon.jpg\nFile:Type-10-Defender-Asteroid-Base.png\nFile:Type-10-Defender-Blueprint.png\nFile:Type-10-Defender-Interceptor.png\nFile:Type-10-Defender-Terrestrial-Planet.png\nFile:Type-10-Defender-Wing.png\nFile:Type-10-Mining-Exploding-Asteroid.png\nFile:Type-10-Ship-Cockpit.png\nFile:Type-10 Defender FX17 screenshot.png\nFile:Type-10 Defender front.png\nFile:Type-10 Defender with Azure paint.jpg\nFile:Type-10 Defender with T9 and T7.png\nFile:Type-6-SRV-Gas-Giant.png\nFile:Type-6-Transporter-Docked.png\nFile:Type-6.png\nFile:Type-6 Cockpit Exterior.jpg\nFile:Type-6 Rear detail.jpg\nFile:Type-6 Side pipes detail.jpg\nFile:Type-7-Cockpit-Water-World.png\nFile:Type-7-Docked.png\nFile:Type-7-Ship-Station-Evacuation.png\nFile:Type-7-Ship-Top-View.png\nFile:Type-7-Transporter-Ship-Space-Megaship.png\nFile:Type-7-ship-docked-planetary-ring.png\nFile:Type-7-side.jpg\nFile:Type-7 bottom radiator banks.jpg\nFile:Type-7 front mounted small hardpoint with overheated pulse laser.jpg\nFile:Type-9-Heavy-Cockpit-Front.png\nFile:Type-9-Heavy-Cockpit-Top-View.png\nFile:Type-9-Heavy-Cockpit.png\nFile:Type-9-Heavy-Coriolis-Station.png\nFile:Type-9-Heavy-Docked-Hangar.png\nFile:Type-9-Heavy-Walking-Pilot-Scale.png\nFile:Type-9-Planetary-Ring.png\nFile:Type-9-Shipwreck.png\nFile:Type-9-and-Western-Veil-Nebula-Sector DL-Y d68.png\nFile:Type-9-ship-asteroid-mining-explosion.png\nFile:Type-9 Heavy.png\nFile:Type-9 Heavy and Black Hole.jpg\nFile:Type-9 Heavy rear.png\nFile:Type6.jpg\nFile:Type601.jpg\nFile:Type605.jpg\nFile:Type64.jpg\nFile:Type7.jpg\nFile:Type7 1.png\nFile:Type7 4.png\nFile:Type9 Arrival online.jpg\nFile:Type 10 Defender\nFile:Type 6 Earth-like Planet.jpg\nFile:Type 7 Transporter SHIP COMERCIAL ELITE DANGEROUS EN\nFile:Type 9 door3.jpg\nFile:Type 9 mining.jpg\nFile:Type O star.png\nFile:UA-Merope.jpg\nFile:UADegradation.png\nFile:UJCWhYT.jpg\nFile:UPDATED MINING TUTORIAL AND LOADOUT ELITE DANGEROUS CHAPTER 4 3.3 UPDATE\nFile:US-Third-World-War-Nuclear-Missile-Lore.png\nFile:USHORNT IH-V D2-1.png\nFile:USHORNT IH-V D2-1 A 1.png\nFile:USS-in-panel.png\nFile:USS-in-space.png\nFile:Ua-chat-text.png\nFile:Ua-convoyA.jpg\nFile:Ua-convoyB.jpg\nFile:Uma Laszlo.png\nFile:Umbrella-Mollusc-in-Lagrange-Cloud-space.png\nFile:Umbriel-Sol.png\nFile:Unfh.png\nFile:Unidentified-Signal-Source.png\nFile:United-States-of-the-Americas-Map-Hyperpower.png\nFile:Universal-Cartographics-Icon.png\nFile:Universal-Cartographics-Logo.png\nFile:Universal-Galactic-Time-Elite-Dangerous.png\nFile:Unknown-1-.png\nFile:Unknown-Ships-Group-Thargoids.png\nFile:UnknownShip ConceptArt 000.jpg\nFile:Unknown Ship.png\nFile:Unknown Ship Alien Structure interaction.png\nFile:Unknown Ship Barnacle Laser.png\nFile:Unknown Ship departure.png\nFile:Unknown Ship open.png\nFile:Unknown Ship rear.png\nFile:Unknown Ship scanning.png\nFile:Unknown Ship side.png\nFile:Unknown Ship wake.png\nFile:Unlocking the Enzyme Missile Rack\nFile:Unregistered Comms Beacon.png\nFile:Unsanctioned-Outpost-Pirate.png\nFile:Unsanctioned-Outpost.png\nFile:Untitled.png\nFile:Untitled3.png\nFile:Untitled4.png\nFile:Up close.png\nFile:Upaniklis.png\nFile:Update 8 Incoming Features\nFile:Uraninite.png\nFile:Uranium.png\nFile:Uranus.jpg\nFile:Uranus 3303.jpg\nFile:Using the 2.3 Camera System LIVE Elite Dangerous\nFile:Uszaa.png\nFile:Utopia Logo.png\nFile:VV Cephei system map.png\nFile:VY-Canis-Majoris-system.png\nFile:VY Canis Majoris Comparison.jpg\nFile:Valkyrie.jpg\nFile:Valkyrie.png\nFile:Valkyrie full crash site.png\nFile:Van Maanen's Star.png\nFile:Vanadium-ore.jpg\nFile:Vapori silicati.png\nFile:Vatermann-LLC-Engineer-Base.png\nFile:VegaLineShipping ContainerLarge.png\nFile:Vega System Map.png\nFile:Vehicles-Elite-Dangerous-Concept-Art.png\nFile:Veil-Nebula-East.png\nFile:Veil-West-Nebula-and-Type-9.png\nFile:Veil Nebula West.png\nFile:Venom.jpg\nFile:Venus-Sunset.png\nFile:Venus.jpg\nFile:Very Rare material.svg\nFile:Very common material.svg\nFile:Very rare material.svg\nFile:Vespine-Transport-Systems-Logo.png\nFile:VespineTransportSystems CargoCanister.png\nFile:VespineTransportSystems HazardousCargoCanister.png\nFile:Veteran Explorer.png\nFile:Via Lactea\nFile:View of Brooks Estate.jpg\nFile:View of Brooks Estate3.jpg\nFile:Viper-MkIII-Atmosphere-Concept-Art.png\nFile:Viper-MkIII-Interior-Cutaway.png\nFile:Viper-MkIII-Orbis-Station.png\nFile:Viper-Walking-Pilot-Scale.png\nFile:Viper.jpg\nFile:Viper06.jpg\nFile:Viper3.png\nFile:ViperFlyby.jpg\nFile:ViperHeadingToDock.jpg\nFile:ViperMarkII-cropped.jpg\nFile:ViperMarkII.jpg\nFile:Viper MK III - Profile.png\nFile:Viper MK IV - Profile.png\nFile:Viper MkIII - Faulcon DeLacy Elite Dangerous\nFile:Viper MkIII Acceleration White.png\nFile:Viper Mk II.jpg\nFile:Viper Mk II 01.png\nFile:Viper Mk II 02.png\nFile:Viper Ring system.png\nFile:Viper Sell Sword.jpg\nFile:Viper mk iv.jpg\nFile:Vista Genomics concept.png\nFile:Vista Genomics logo.png\nFile:VivPX1e - Imgur.png\nFile:Vjbecag.png\nFile:Vodel-Scarab-Container-Logo.png\nFile:Void-Hearts-in-ED.png\nFile:Void-Hearts-in-Elite.png\nFile:Void-Hearts.png\nFile:Void Hearts.png\nFile:Void Rangers higher quality.png\nFile:Voidmag final1.png\nFile:Volithigga System Overview.PNG\nFile:Volithigga System Overview.png\nFile:Volkhab-Bee-Drones.png\nFile:Vonarburg Co-operative Interior.jpg\nFile:Vonarburg coop.JPG\nFile:Voyager-2-probe.jpg\nFile:Voyager-2.jpg\nFile:Voyager2-sign.jpg\nFile:Voyager2 2018-11-13.jpg\nFile:Voyager 1.jpg\nFile:Voyager 1 and How To Find It Elite Dangerous\nFile:Voyager 1 probe.jpg\nFile:Vulture-Cockpit-Overview.png\nFile:Vulture-Cockpit-Star-Rise.png\nFile:Vulture-ship-flying-sideview.png\nFile:Vulture.png\nFile:Vulture - Core Dynamics Elite Dangerous\nFile:Vulture Canopy Breach.jpg\nFile:Vulture Vibrant Red 01.png\nFile:WC.jpg\nFile:WLA lacma Mayan jadeite pendant.jpg\nFile:WO Wolf Rayet Class Star.png\nFile:Waking the System\nFile:Wallpaper09.jpg\nFile:Wallpaper12.jpg\nFile:Wang estate.JPG\nFile:Wanted.jpg\nFile:War-for-Lugh-Poster.png\nFile:War.png\nFile:War critical.jpg\nFile:Warkushanui.png\nFile:Wasp radio logo.PNG\nFile:Water-World-180px.png\nFile:Water-World-2722ly-above-galactic-plain.png\nFile:Water.jpg\nFile:Water Atmosphere Anaconda.png\nFile:Water Commodity.png\nFile:Water Giant.jpg\nFile:Water Giant.png\nFile:Water Giant 2.png\nFile:Water Purifiers.png\nFile:Water based life gas giant.png\nFile:Water world Wredguia ZI-M b36-0 5.png\nFile:Waterloo.png\nFile:Waterloo And Station.png\nFile:Wave-Scanner-Signals.png\nFile:Wave Scanner - Elite Dangerous Horizons Pilot Training\nFile:Wave scanner.png\nFile:Wcm transfer.JPG\nFile:We are Lavigny's Legion-0\nFile:Wealthy Station.png\nFile:WeaponSpeacialEffectIcon.png\nFile:WeaponsForSale.png\nFile:Weapons Default.png\nFile:Weapons Selected.png\nFile:Weaponsforsale.jpg\nFile:Weathering.jpg\nFile:Weird Neutron Star Suspected to be a Pulsar - Elite Dangerous\nFile:Welcome to Tranquillity.jpg\nFile:Wellington Beck.png\nFile:Western-Neutron-Fields-Galactic-Region.png\nFile:What NASA & Elite Dangerous Have In Common\nFile:WhatsApp Image 2021-05-08 at 19.06.08.jpeg\nFile:Wheat-grain.jpg\nFile:When you thought you seen it all.png\nFile:Wiki-background\nFile:Wiki-wordmark.png\nFile:Wiki FP Chrome.png\nFile:Wiki FP Firefox.png\nFile:Wiki landing pad.png\nFile:Wikia-Visualization-Main,elitedangerous.png\nFile:Wing-Mission-Ships.png\nFile:Wing-Ships-Elite-Dangerous.png\nFile:Wing Mission Ambush\nFile:WingrovePlatform.png\nFile:Wings.jpg\nFile:Wings icons.jpg\nFile:WinnerChristopherWicksteed.jpg\nFile:Wireframe Gold Python store icon.png\nFile:Witch-Head-Nebula-Landed.png\nFile:Witch-Head-Nebula.png\nFile:Witchspace - Elite Dangerous The Jameson Crash Site\nFile:Wolf-1301-System-Map.png\nFile:Wolf-359.png\nFile:Wolf-Rayet NC Star.jpg\nFile:Wolf-Rayet N Star.jpg\nFile:Wolf-Rayet Nebula NGC 3199.png\nFile:Wolf-Rayet O Star.jpg\nFile:Wolf 359.png\nFile:Wolf 397.png\nFile:Wolf–Rayet-star-in-NGC-6302.png\nFile:Woods-Haulage.png\nFile:Wpn c1 beam.png\nFile:Wpn c1 cannon.png\nFile:Wpn c1 frag.png\nFile:Wpn c1 laser.png\nFile:Wpn c1 mine.png\nFile:Wpn c1 mining.png\nFile:Wpn c1 missile.png\nFile:Wpn c1 multi.png\nFile:Wpn c1 rail.png\nFile:Wpn c1 shock cannon.png\nFile:Wpn c1 torpedo.png\nFile:Wpn c2 beam.png\nFile:Wpn c2 cannon.png\nFile:Wpn c2 enzyme.png\nFile:Wpn c2 frag.png\nFile:Wpn c2 laser.png\nFile:Wpn c2 mine.png\nFile:Wpn c2 mining.png\nFile:Wpn c2 missile.png\nFile:Wpn c2 multi.png\nFile:Wpn c2 plasma.png\nFile:Wpn c2 rail.png\nFile:Wpn c2 torpedo.png\nFile:Wpn c3 beam.png\nFile:Wpn c3 cannon.png\nFile:Wpn c3 frag.png\nFile:Wpn c3 laser.png\nFile:Wpn c3 missile.png\nFile:Wpn c3 plasma.png\nFile:Wpn c3 shock cannon.png\nFile:Wpn c3 torpedo.png\nFile:Wpn c4 burst laser.png\nFile:Wpn c4 cannon.png\nFile:Wpn c4 plasma.png\nFile:Wreck On HIP38064 1.png\nFile:Wrecked SRV.png\nFile:Wrecked SRV Thargoid Barnacle.png\nFile:Wregoe XQ-L c21-29.png\nFile:Wunjo 1 Gold rings 2014-11-09 22-54-38.jpg\nFile:Wyrd.png\nFile:X.jpg\nFile:X1NbPdn.png\nFile:XG9-Lance-Cockpit.png\nFile:XG9-Lance-Hybrid-Fighter.png\nFile:XPonM9J - Imgur.jpg\nFile:Xelabara-System-Map.png\nFile:XiheSystemMap.png\nFile:Xksun4.jpg\nFile:Y1 V HIP 99152 1.png\nFile:Y1 V Wredguia HY-G c24-10 D.png\nFile:Y2.png\nFile:YTIcon.png\nFile:Yarden Bond.png\nFile:Yellow-White Supergiant (F Class).jpg\nFile:Yellow-White Supergiant Star.png\nFile:Yi Shen.png\nFile:Yoru.png\nFile:Your Big Brother - Elite Dangerous Python\nFile:Your first docking attempt\nFile:Yttrium sublimed dendritic.jpg\nFile:YuriGrom.png\nFile:YuriGrom opacity.png\nFile:Yuri Grom-sm.png\nFile:Yuri Grom.png\nFile:ZAhBvhh.jpg\nFile:Zac-Antonaci-Frontier-Developments.png\nFile:Zacariah Nemo.png\nFile:Zacariah Nemo Engineer.jpg\nFile:Zachary Hudson.png\nFile:Zachary Hudson vector.svg\nFile:Zaonce.png\nFile:Zemina Torval-sm.png\nFile:Zemina Torval.png\nFile:Zemina Torval illustration.jpg\nFile:Zemina Torval vector.svg\nFile:Zende.png\nFile:ZetaPuppis2.png\nFile:Zeta Puppis Stars.png\nFile:ZhenDock.png\nFile:Zinc.jpg\nFile:Zirconium crystal bar.jpg\nFile:Zorgonpeterson.png\nFile:ZpVfCV2.png\nFile:Zrzut ekranu (2042).png\nFile:Zurara-Megaship.png\nFile:ČĚŽÁÍÉ.png\nFile:Ř.jpg\nFile:Снимок экрана (4).png\nFile:✔ Elite Dangerous - Engineer Tutorial - Unlocking & Ranking Up.\nFile:🎼ELITE- DANGEROUS OST SUPERCHARGED! With Onscreen Track details, Timestamps, Artwork & 5.1 surround\nFile:👽 Wing VS Thargoid Cyclops Variant (Third Person View)\nFile talk:BtubNbm - Imgur.jpg\nFile talk:Station with Boeing 747 and Courier.jpg\nMediaWiki:Achievements-badge-name-blogcomment-0\nMediaWiki:Achievements-badge-name-blogcomment-1\nMediaWiki:Achievements-badge-name-blogpost-0\nMediaWiki:Achievements-badge-name-caffeinated\nMediaWiki:Achievements-badge-name-category-0\nMediaWiki:Achievements-badge-name-category-1\nMediaWiki:Achievements-badge-name-category-2\nMediaWiki:Achievements-badge-name-category-3\nMediaWiki:Achievements-badge-name-category-4\nMediaWiki:Achievements-badge-name-category-5\nMediaWiki:Achievements-badge-name-category-6\nMediaWiki:Achievements-badge-name-creator\nMediaWiki:Achievements-badge-name-edit-0\nMediaWiki:Achievements-badge-name-edit-1\nMediaWiki:Achievements-badge-name-edit-2\nMediaWiki:Achievements-badge-name-edit-3\nMediaWiki:Achievements-badge-name-edit-4\nMediaWiki:Achievements-badge-name-edit-5\nMediaWiki:Achievements-badge-name-edit-6\nMediaWiki:Achievements-badge-name-edit-7\nMediaWiki:Achievements-badge-name-introduction\nMediaWiki:Achievements-badge-name-love-0\nMediaWiki:Achievements-badge-name-love-1\nMediaWiki:Achievements-badge-name-love-2\nMediaWiki:Achievements-badge-name-love-3\nMediaWiki:Achievements-badge-name-love-4\nMediaWiki:Achievements-badge-name-love-5\nMediaWiki:Achievements-badge-name-love-6\nMediaWiki:Achievements-badge-name-luckyedit\nMediaWiki:Achievements-badge-name-picture-0\nMediaWiki:Achievements-badge-name-picture-1\nMediaWiki:Achievements-badge-name-picture-2\nMediaWiki:Achievements-badge-name-picture-3\nMediaWiki:Achievements-badge-name-picture-4\nMediaWiki:Achievements-badge-name-picture-5\nMediaWiki:Achievements-badge-name-picture-6\nMediaWiki:Achievements-badge-name-picture-7\nMediaWiki:Achievements-badge-name-pounce\nMediaWiki:Achievements-badge-name-sayhi\nMediaWiki:Achievements-badge-name-welcome\nMediaWiki:Characterpagelayout\nMediaWiki:Common.css\nMediaWiki:Common.js\nMediaWiki:Common.js/AjaxRC.js\nMediaWiki:Common.js/instantCollapsible.js\nMediaWiki:Community-corner\nMediaWiki:Custom-Wiki Manager\nMediaWiki:Deletereason-dropdown\nMediaWiki:Description\nMediaWiki:Edittools\nMediaWiki:Fandomdesktop.css\nMediaWiki:ImportJS\nMediaWiki:Mainpage\nMediaWiki:Newarticletext\nMediaWiki:Pagetitle\nMediaWiki:Pagetitle-view-mainpage\nMediaWiki:Shippagelayout\nMediaWiki:Systempagelayout\nMediaWiki:Test\nMediaWiki:Themes.css\nMediaWiki:TwitterWidget\nMediaWiki:Vine\nMediaWiki:Welcome-message-anon\nMediaWiki:Welcome-message-user\nMediaWiki:Welcome-message-wall-user\nMediaWiki:Wiki-description-site-meta\nMediaWiki:Wiki-navigation\nMediaWiki:Wikia.css\nMediaWiki:Wikia.js\nMediaWiki:Wikia.js/ratings.js\nMediaWiki:Wk-style-divclose\nMediaWiki:Wk-style-navbox\nMediaWiki talk:Wiki-navigation\nTemplate:!\nTemplate:!!\nTemplate:!!/doc\nTemplate:!/doc\nTemplate:(\nTemplate:(/doc\nTemplate:)\nTemplate:)/doc\nTemplate:;\nTemplate:Ambox\nTemplate:Ambox/doc\nTemplate:ArenaNavbox\nTemplate:BaseInfobox\nTemplate:BaseTypeInfobox\nTemplate:Bigcat\nTemplate:Bigcat/doc\nTemplate:Bot\nTemplate:Bot/doc\nTemplate:Box1 start\nTemplate:Box1 start/doc\nTemplate:Box2 start\nTemplate:Box2 start/doc\nTemplate:Boxes end\nTemplate:Boxes end/doc\nTemplate:CC-BY-SA\nTemplate:CC-BY-SA/doc\nTemplate:CapInfobox\nTemplate:Category\nTemplate:Category/doc\nTemplate:Cc-by-sa-3.0\nTemplate:Cc-by-sa-3.0/doc\nTemplate:CelestialInfobox\nTemplate:CelestialInfobox/Test\nTemplate:CelestialInfobox/doc\nTemplate:CelestialInfobox/doc/generic\nTemplate:CharacterInfobox\nTemplate:CharacterInfobox/doc\nTemplate:CharacterNavbox\nTemplate:Cite\nTemplate:Cite/doc\nTemplate:CityInfobox\nTemplate:Clear\nTemplate:Clr\nTemplate:Clr/doc\nTemplate:Clrl\nTemplate:Clrl/doc\nTemplate:Clrr\nTemplate:Clrr/doc\nTemplate:Col-2\nTemplate:Col-2/doc\nTemplate:Col-begin\nTemplate:Col-begin/doc\nTemplate:Col-end\nTemplate:Col-end/doc\nTemplate:CommodityInfobox\nTemplate:Conflict\nTemplate:Confuse\nTemplate:ContentNavbox\nTemplate:CorpsInfobox\nTemplate:CorpsNavbox\nTemplate:CurrentVersion\nTemplate:Decrease\nTemplate:Defn\nTemplate:Delete\nTemplate:Delete/doc\nTemplate:Description\nTemplate:DeveloperInfobox\nTemplate:Disambig\nTemplate:Disambig/doc\nTemplate:Disputed\nTemplate:Distinguish\nTemplate:Div-end\nTemplate:Div-end/doc\nTemplate:Dmbox\nTemplate:Documentation\nTemplate:Documentation/doc\nTemplate:Down\nTemplate:Edit\nTemplate:Edit/doc\nTemplate:EngineerGearNavbox\nTemplate:EngineerModNavbox\nTemplate:EngineerNavbox\nTemplate:Ep-nav\nTemplate:Ep-nav/doc\nTemplate:EquipmentNavbox\nTemplate:Essay\nTemplate:Event\nTemplate:Expand\nTemplate:Expedition\nTemplate:ExpeditionInfoBox\nTemplate:ExpeditionInfoBox/doc\nTemplate:ExpeditionsNavbox\nTemplate:Fairuse\nTemplate:Fairuse/doc\nTemplate:For\nTemplate:For/doc\nTemplate:Forumheader\nTemplate:Forumheader/Help desk\nTemplate:Forumheader/Watercooler\nTemplate:Forumheader/doc\nTemplate:From Wikimedia\nTemplate:From Wikimedia/doc\nTemplate:Gain\nTemplate:GalNetNavBox\nTemplate:GalacticTime\nTemplate:Gloss\nTemplate:Glossend\nTemplate:Guardian\nTemplate:Header\nTemplate:In use\nTemplate:Increase\nTemplate:Infobox\nTemplate:Infobox/doc\nTemplate:Infobox Material\nTemplate:Infobox album\nTemplate:Infobox album/doc\nTemplate:Infobox book\nTemplate:Infobox book/doc\nTemplate:Infobox character\nTemplate:Infobox character/doc\nTemplate:Infobox episode\nTemplate:Infobox episode/doc\nTemplate:Infobox event\nTemplate:Infobox event/doc\nTemplate:Infobox item\nTemplate:Infobox item/doc\nTemplate:Infobox location\nTemplate:Infobox location/doc\nTemplate:Infobox quest\nTemplate:Infobox quest/doc\nTemplate:Invokes\nTemplate:Invokes/doc\nTemplate:LastPageEdit\nTemplate:Legacy Lore\nTemplate:Loss\nTemplate:Main\nTemplate:Main/Test\nTemplate:Main/doc\nTemplate:MainPageED\nTemplate:MainPageEvents\nTemplate:MainPageGames\nTemplate:MainPageIntro\nTemplate:MainPageNavigation\nTemplate:MainPageStory\nTemplate:MainPageVersion\nTemplate:MainPageVideos\nTemplate:ManufacturerNavbox\nTemplate:MaterialInfobox\nTemplate:Material Engineer\nTemplate:Material ship\nTemplate:MaterialsNavbox\nTemplate:Navbox\nTemplate:Navbox/doc\nTemplate:Newpages\nTemplate:No license\nTemplate:No license/doc\nTemplate:Nochange\nTemplate:OdysseyItemInfobox\nTemplate:Ombox\nTemplate:Organizationinfobox\nTemplate:Other free\nTemplate:Other free/doc\nTemplate:PD\nTemplate:PD/doc\nTemplate:POIInfobox\nTemplate:Performer\nTemplate:Performer/doc\nTemplate:Permission\nTemplate:Permission/doc\nTemplate:PilotEquipmentNavbox\nTemplate:PilotWeaponInfobox\nTemplate:PlayerGroup\nTemplate:PlayerGroup/doc\nTemplate:PointsofInterestNavbox\nTemplate:Policy\nTemplate:Policy/doc\nTemplate:PowersNavbox\nTemplate:Profit\nTemplate:Quote\nTemplate:Refimprove\nTemplate:Reflist\nTemplate:Reflist/doc\nTemplate:Remark\nTemplate:Remark/doc\nTemplate:RoleInfobox\nTemplate:SLFInfobox\nTemplate:SRV\nTemplate:SRVInfobox\nTemplate:Sandbox\nTemplate:Sandbox/doc\nTemplate:Scan Data Rewards\nTemplate:ScannableStructureTypeInfobox\nTemplate:Scrollbox-begin\nTemplate:SecurityForces\nTemplate:SecurityForcesNavbox\nTemplate:Self\nTemplate:Self/doc\nTemplate:SettlementInfobox\nTemplate:ShipIndividualInfobox\nTemplate:ShipInfobox\nTemplate:ShipInfobox/new\nTemplate:ShipNavbox\nTemplate:ShipTypeNavbox\nTemplate:Ship Outfitting Table\nTemplate:Ship Specifications Table\nTemplate:Shortcut\nTemplate:Sign\nTemplate:SignalInfobox\nTemplate:SignalSourcesNavbox\nTemplate:Source-article\nTemplate:SpeciesNavbox\nTemplate:Speciesinfobox\nTemplate:Speculate\nTemplate:Speedydelete\nTemplate:Spoiler\nTemplate:Spoiler/doc\nTemplate:Star System/doc\nTemplate:StationInfobox\nTemplate:Stdsummaries\nTemplate:Steady\nTemplate:StructureNavbox\nTemplate:Stub\nTemplate:Stub/doc\nTemplate:Succession\nTemplate:Succession/doc\nTemplate:SuitInfobox\nTemplate:Superpowerinfobox\nTemplate:SystemInfobox\nTemplate:T\nTemplate:T/doc\nTemplate:T/piece\nTemplate:T/piece/doc\nTemplate:Talkcreate\nTemplate:Talkcreate/doc\nTemplate:Talkheader\nTemplate:Talkheader/doc\nTemplate:Templatecategory\nTemplate:Templatecategory/doc\nTemplate:Term\nTemplate:Thargoids\nTemplate:Time ago\nTemplate:Tocright\nTemplate:Tocright/doc\nTemplate:Tooltip\nTemplate:Tooltip/doc\nTemplate:Tooltip Material\nTemplate:Under construction\nTemplate:Unreferenced\nTemplate:Unsigned\nTemplate:Unsigned/doc\nTemplate:Upcoming\nTemplate:UpcomingVersion\nTemplate:UpdateMe\nTemplate:UpdateMe/doc\nTemplate:WeaponNavbox\nTemplate:WelcIP\nTemplate:Welcome\nTemplate:Welcome/doc\nTemplate:WelcomeIP\nTemplate:WelcomeIP/doc\nTemplate:Wikipedia\nTemplate:Wikipedia/doc\nTemplate:YT\nTemplate talk:CommodityInfobox\nTemplate talk:Expedition\nTemplate talk:Infobox\nTemplate talk:ShipInfobox\nTemplate talk:ShipNavbox\nTemplate talk:Superpowerinfobox\nTemplate talk:SystemInfobox\nTemplate talk:Welcome\nHelp:Forums\nCategory:Abandoned Settlements\nCategory:Alien life\nCategory:Alliance\nCategory:Alliance key people\nCategory:Alliance player groups\nCategory:Allied citizens\nCategory:Article management templates\nCategory:Article stubs\nCategory:Articles in need of updating\nCategory:BlogListingPage\nCategory:Blog posts\nCategory:Browse\nCategory:Bulk Cruiser\nCategory:CQC\nCategory:CQC Arenas\nCategory:CQC Loadouts\nCategory:Candidates for deletion\nCategory:Candidates for speedy deletion\nCategory:Capital Ships\nCategory:Carrier\nCategory:Category templates\nCategory:Celestials\nCategory:Characters\nCategory:Chemical commodities\nCategory:Cinematic shorts\nCategory:Citation templates\nCategory:Citations needed\nCategory:Cities\nCategory:Claims\nCategory:Commerce\nCategory:Commodities\nCategory:Common materials\nCategory:Community\nCategory:Community Expeditions\nCategory:Components\nCategory:Concept Art\nCategory:Conflicts\nCategory:Congressmen\nCategory:Constellations\nCategory:Consumables\nCategory:Consumer item commodities\nCategory:Copyright\nCategory:Core Dynamics\nCategory:Corporations\nCategory:Data\nCategory:Disambiguations\nCategory:Discontinued Commodities\nCategory:Documents\nCategory:Elite Dangerous\nCategory:Elite Dangerous: Odyssey\nCategory:Elite Dangerous Wiki\nCategory:Elite series\nCategory:Empire\nCategory:Encoded materials\nCategory:Engineer Upgrades\nCategory:Engineer Upgrades for Pilot Equipment\nCategory:Engineers\nCategory:Equipment\nCategory:Essays\nCategory:Events\nCategory:Experimental Effects\nCategory:Factions\nCategory:Families\nCategory:Faulcon DeLacy\nCategory:Federal citizens\nCategory:Federal key people\nCategory:Federal player groups\nCategory:Federation\nCategory:Fiction\nCategory:Fighters\nCategory:Files\nCategory:Food commodities\nCategory:Forums\nCategory:Freighters\nCategory:Frontier Developments\nCategory:GalNet\nCategory:Galactic Superpower\nCategory:Galactic region\nCategory:Galaxies\nCategory:Galaxy\nCategory:Gameplay\nCategory:General wiki templates\nCategory:Goods\nCategory:Government agencies\nCategory:Governments\nCategory:Guardian\nCategory:Guidelines\nCategory:Guides\nCategory:Gutamaya\nCategory:Handheld Tools\nCategory:Handheld Weapons\nCategory:Help\nCategory:Help desk\nCategory:Hidden categories\nCategory:Icon templates\nCategory:Image wiki templates\nCategory:Images\nCategory:Imperial citizens\nCategory:Imperial key people\nCategory:Imperial player groups\nCategory:Independent citizens\nCategory:Independent player groups\nCategory:Industrial material commodities\nCategory:Infobox templates\nCategory:Installation\nCategory:Key people\nCategory:Lakon Spaceways\nCategory:Legal drug commodities\nCategory:Lists\nCategory:Lore\nCategory:Lua-based templates\nCategory:Machinery commodities\nCategory:Manufactured materials\nCategory:Manufacturers\nCategory:Material sources\nCategory:Materials\nCategory:Medicine commodities\nCategory:Mega Corporations\nCategory:Megaships\nCategory:Metal commodities\nCategory:Mineral commodities\nCategory:Minor Factions\nCategory:Mission Reward Commodities\nCategory:Modding\nCategory:Moons\nCategory:Multipurpose Ships\nCategory:Mysteries\nCategory:NPC Units\nCategory:Navigational templates\nCategory:Nebulae\nCategory:New pages\nCategory:Newsfeeds\nCategory:Novels\nCategory:Organization\nCategory:Organizations\nCategory:Outfitting\nCategory:Pages proposed for deletion\nCategory:Pages with broken file link\nCategory:Pages with broken file links\nCategory:Passenger Liners\nCategory:Pilot Equipment\nCategory:Pilots Federation\nCategory:Planetary Outposts\nCategory:Planets\nCategory:Player Minor Faction\nCategory:Player groups\nCategory:Points of Interest\nCategory:Policies\nCategory:Power\nCategory:Power-specific module\nCategory:Powerplay\nCategory:Rare Commodities\nCategory:Rare materials\nCategory:Raw materials\nCategory:Religions\nCategory:Robots\nCategory:Roles\nCategory:Salvage commodities\nCategory:Saud Kruger\nCategory:Security forces\nCategory:Senators\nCategory:Services and Contacts\nCategory:Settlements\nCategory:Ship-Launched Fighters\nCategory:Ships\nCategory:Signal Sources\nCategory:Site administration\nCategory:Site maintenance\nCategory:Skimmers\nCategory:Slavery commodities\nCategory:Space Probes\nCategory:Species\nCategory:Standard materials\nCategory:Star systems\nCategory:Star systems with Engineers\nCategory:Star systems with in-game descriptions\nCategory:Stars\nCategory:Stations\nCategory:Structures\nCategory:Suits\nCategory:Surface Commodities\nCategory:Surface Recon Vehicles\nCategory:Technology\nCategory:Technology commodities\nCategory:Template documentation\nCategory:Templates\nCategory:Textile commodities\nCategory:Thargoid Ships\nCategory:Thargoids\nCategory:Timelines\nCategory:Titles\nCategory:Unconfirmed\nCategory:Upcoming\nCategory:Useless materials\nCategory:Vehicles\nCategory:Very common materials\nCategory:Very rare materials\nCategory:Vessels\nCategory:Videos\nCategory:Waste commodities\nCategory:Watercooler\nCategory:Weapon commodities\nCategory:Weapons\nCategory:Zorgon Peterson\nCategory talk:Candidates for deletion\nCategory talk:Candidates for speedy deletion\nCategory talk:Equipment\nCategory talk:Factions\nCategory talk:Player groups\nCategory talk:Rare Commodities\nCategory talk:Star systems\nMessage Wall:\"Jackal\" Kreiss\nMessage Wall:00raymond\nMessage Wall:0xyg3nist\nMessage Wall:1.121.143.161\nMessage Wall:1.122.108.51\nMessage Wall:1.123.37.237\nMessage Wall:1.125.49.72\nMessage Wall:1.136.104.248\nMessage Wall:1.136.96.106\nMessage Wall:1.136.96.114\nMessage Wall:1.136.96.15\nMessage Wall:1.136.96.164\nMessage Wall:1.144.97.160\nMessage Wall:1.152.97.33\nMessage Wall:1.152.97.99\nMessage Wall:1.165.21.187\nMessage Wall:1.2.211.16\nMessage Wall:1.2.224.20\nMessage Wall:1.32.70.213\nMessage Wall:1.40.4.242\nMessage Wall:1.65.209.209\nMessage Wall:100.0.90.43\nMessage Wall:100.11.139.26\nMessage Wall:100.11.200.187\nMessage Wall:100.11.78.253\nMessage Wall:100.15.97.232\nMessage Wall:100.16.1.168\nMessage Wall:100.2.105.151\nMessage Wall:100.2.7.169\nMessage Wall:100.3.148.85\nMessage Wall:100.3.162.248\nMessage Wall:100.32.118.45\nMessage Wall:100.33.124.213\nMessage Wall:100.34.167.47\nMessage Wall:100.36.107.3\nMessage Wall:100.36.127.151\nMessage Wall:100.36.168.163\nMessage Wall:100.36.174.162\nMessage Wall:100.37.171.119\nMessage Wall:100.4.63.208\nMessage Wall:100.42.250.210\nMessage Wall:100.9.143.39\nMessage Wall:101.100.128.230\nMessage Wall:101.100.128.49\nMessage Wall:101.100.136.47\nMessage Wall:101.127.136.157\nMessage Wall:101.161.229.37\nMessage Wall:101.161.237.167\nMessage Wall:101.161.48.58\nMessage Wall:101.161.56.213\nMessage Wall:101.162.158.44\nMessage Wall:101.164.17.245\nMessage Wall:101.165.136.237\nMessage Wall:101.165.66.221\nMessage Wall:101.166.161.36\nMessage Wall:101.167.118.131\nMessage Wall:101.167.18.173\nMessage Wall:101.167.8.113\nMessage Wall:101.167.99.3\nMessage Wall:101.169.255.225\nMessage Wall:101.173.158.102\nMessage Wall:101.174.1.154\nMessage Wall:101.174.133.168\nMessage Wall:101.175.27.222\nMessage Wall:101.176.144.33\nMessage Wall:101.177.129.67\nMessage Wall:101.177.14.245\nMessage Wall:101.177.64.178\nMessage Wall:101.177.7.163\nMessage Wall:101.177.71.48\nMessage Wall:101.177.89.177\nMessage Wall:101.177.96.176\nMessage Wall:101.180.100.2\nMessage Wall:101.180.69.158\nMessage Wall:101.181.165.222\nMessage Wall:101.182.92.46\nMessage Wall:101.183.0.61\nMessage Wall:101.183.159.193\nMessage Wall:101.183.165.132\nMessage Wall:101.183.224.17\nMessage Wall:101.183.242.79\nMessage Wall:101.183.32.93\nMessage Wall:101.183.41.240\nMessage Wall:101.184.126.84\nMessage Wall:101.184.133.201\nMessage Wall:101.184.150.174\nMessage Wall:101.184.180.220\nMessage Wall:101.184.191.236\nMessage Wall:101.184.47.13\nMessage Wall:101.184.55.231\nMessage Wall:101.184.79.236\nMessage Wall:101.185.140.88\nMessage Wall:101.185.150.165\nMessage Wall:101.185.72.206\nMessage Wall:101.186.0.140\nMessage Wall:101.186.14.187\nMessage Wall:101.186.191.221\nMessage Wall:101.186.22.122\nMessage Wall:101.186.40.57\nMessage Wall:101.187.46.246\nMessage Wall:101.188.162.9\nMessage Wall:101.188.17.48\nMessage Wall:101.191.12.113\nMessage Wall:101.191.32.163\nMessage Wall:101.98.150.255\nMessage Wall:101.98.209.218\nMessage Wall:101.98.24.29\nMessage Wall:101.99.128.129\nMessage Wall:103.12.8.2\nMessage Wall:103.226.94.62\nMessage Wall:103.241.58.155\nMessage Wall:103.244.145.94\nMessage Wall:103.252.201.155\nMessage Wall:103.254.134.240\nMessage Wall:103.5.142.48\nMessage Wall:104.129.192.116\nMessage Wall:104.129.192.64\nMessage Wall:104.136.254.213\nMessage Wall:104.136.32.244\nMessage Wall:104.137.137.139\nMessage Wall:104.137.82.122\nMessage Wall:104.139.55.207\nMessage Wall:104.145.124.24\nMessage Wall:104.148.151.240\nMessage Wall:104.148.151.68\nMessage Wall:104.148.189.151\nMessage Wall:104.15.34.130\nMessage Wall:104.157.195.179\nMessage Wall:104.158.16.87\nMessage Wall:104.159.219.44\nMessage Wall:104.162.115.243\nMessage Wall:104.169.233.222\nMessage Wall:104.169.45.199\nMessage Wall:104.172.216.6\nMessage Wall:104.172.64.110\nMessage Wall:104.173.228.51\nMessage Wall:104.173.241.224\nMessage Wall:104.173.64.40\nMessage Wall:104.173.8.168\nMessage Wall:104.174.68.87\nMessage Wall:104.174.82.156\nMessage Wall:104.174.92.69\nMessage Wall:104.175.161.147\nMessage Wall:104.175.67.73\nMessage Wall:104.178.13.235\nMessage Wall:104.181.78.226\nMessage Wall:104.183.144.77\nMessage Wall:104.185.102.17\nMessage Wall:104.185.204.158\nMessage Wall:104.187.245.37\nMessage Wall:104.189.152.133\nMessage Wall:104.191.9.0\nMessage Wall:104.200.154.77\nMessage Wall:104.200.154.95\nMessage Wall:104.207.136.125\nMessage Wall:104.207.136.81\nMessage Wall:104.220.14.250\nMessage Wall:104.228.224.138\nMessage Wall:104.228.98.148\nMessage Wall:104.229.148.236\nMessage Wall:104.230.56.165\nMessage Wall:104.231.103.254\nMessage Wall:104.231.67.122\nMessage Wall:104.235.51.45\nMessage Wall:104.236.251.167\nMessage Wall:104.238.169.138\nMessage Wall:104.240.174.242\nMessage Wall:104.240.185.169\nMessage Wall:104.245.77.23\nMessage Wall:104.249.227.181\nMessage Wall:104.3.39.77\nMessage Wall:104.32.221.27\nMessage Wall:104.32.49.140\nMessage Wall:104.37.206.96\nMessage Wall:104.51.116.206\nMessage Wall:104.62.1.149\nMessage Wall:104.7.107.21\nMessage Wall:105.210.129.83\nMessage Wall:105.210.184.45\nMessage Wall:105.225.137.27\nMessage Wall:105.228.19.28\nMessage Wall:105.236.91.190\nMessage Wall:105.28.114.4\nMessage Wall:105.6.99.222\nMessage Wall:106.1.181.151\nMessage Wall:106.154.20.98\nMessage Wall:106.154.21.185\nMessage Wall:106.154.38.63\nMessage Wall:106.51.232.219\nMessage Wall:106.68.161.185\nMessage Wall:106.68.227.172\nMessage Wall:106.69.0.171\nMessage Wall:106.69.126.147\nMessage Wall:106.69.134.173\nMessage Wall:106.69.141.79\nMessage Wall:106.69.190.56\nMessage Wall:106.69.249.101\nMessage Wall:106.70.3.28\nMessage Wall:107.10.245.150\nMessage Wall:107.11.249.33\nMessage Wall:107.11.36.79\nMessage Wall:107.128.48.46\nMessage Wall:107.131.0.64\nMessage Wall:107.133.32.147\nMessage Wall:107.134.108.56\nMessage Wall:107.136.204.160\nMessage Wall:107.141.65.99\nMessage Wall:107.142.146.184\nMessage Wall:107.142.200.144\nMessage Wall:107.145.106.211\nMessage Wall:107.145.11.212\nMessage Wall:107.145.122.40\nMessage Wall:107.145.230.100\nMessage Wall:107.153.255.3\nMessage Wall:107.167.109.164\nMessage Wall:107.167.109.166\nMessage Wall:107.178.41.148\nMessage Wall:107.179.154.154\nMessage Wall:107.182.64.199\nMessage Wall:107.184.151.146\nMessage Wall:107.188.172.89\nMessage Wall:107.188.30.12\nMessage Wall:107.190.130.36\nMessage Wall:107.192.5.95\nMessage Wall:107.193.104.136\nMessage Wall:107.194.237.92\nMessage Wall:107.196.11.73\nMessage Wall:107.196.112.46\nMessage Wall:107.196.87.12\nMessage Wall:107.199.174.25\nMessage Wall:107.2.193.128\nMessage Wall:107.202.209.168\nMessage Wall:107.203.204.222\nMessage Wall:107.205.176.217\nMessage Wall:107.206.119.120\nMessage Wall:107.209.114.46\nMessage Wall:107.214.72.8\nMessage Wall:107.214.97.157\nMessage Wall:107.215.244.16\nMessage Wall:107.217.177.68\nMessage Wall:107.218.1.5\nMessage Wall:107.218.198.79\nMessage Wall:107.219.200.244\nMessage Wall:107.220.149.130\nMessage Wall:107.220.197.31\nMessage Wall:107.222.216.194\nMessage Wall:107.3.92.208\nMessage Wall:107.4.147.84\nMessage Wall:107.4.73.164\nMessage Wall:107.5.171.255\nMessage Wall:107.50.64.235\nMessage Wall:107.72.162.122\nMessage Wall:107.77.105.45\nMessage Wall:107.77.110.210\nMessage Wall:107.77.111.60\nMessage Wall:107.77.111.81\nMessage Wall:107.77.169.9\nMessage Wall:107.77.68.82\nMessage Wall:107.77.75.126\nMessage Wall:107.77.75.76\nMessage Wall:107.77.83.107\nMessage Wall:107.77.83.93\nMessage Wall:107.77.85.119\nMessage Wall:107.77.85.95\nMessage Wall:107.77.87.36\nMessage Wall:107.77.97.77\nMessage Wall:107.9.11.195\nMessage Wall:108.0.120.42\nMessage Wall:108.0.239.194\nMessage Wall:108.11.158.188\nMessage Wall:108.11.40.169\nMessage Wall:108.13.250.13\nMessage Wall:108.131.133.224\nMessage Wall:108.131.3.207\nMessage Wall:108.132.169.15\nMessage Wall:108.132.228.114\nMessage Wall:108.132.228.168\nMessage Wall:108.132.229.131\nMessage Wall:108.132.233.175\nMessage Wall:108.15.19.55\nMessage Wall:108.15.41.236\nMessage Wall:108.15.76.2\nMessage Wall:108.16.107.109\nMessage Wall:108.16.36.43\nMessage Wall:108.162.154.110\nMessage Wall:108.162.17.179\nMessage Wall:108.167.11.170\nMessage Wall:108.168.39.252\nMessage Wall:108.169.234.38\nMessage Wall:108.17.146.158\nMessage Wall:108.170.130.36\nMessage Wall:108.171.128.161\nMessage Wall:108.171.128.174\nMessage Wall:108.171.128.188\nMessage Wall:108.171.129.189\nMessage Wall:108.171.130.176\nMessage Wall:108.171.69.243\nMessage Wall:108.173.199.63\nMessage Wall:108.173.63.220\nMessage Wall:108.176.251.172\nMessage Wall:108.178.216.60\nMessage Wall:108.18.199.4\nMessage Wall:108.180.120.86\nMessage Wall:108.180.195.89\nMessage Wall:108.181.116.68\nMessage Wall:108.181.139.53\nMessage Wall:108.181.141.155\nMessage Wall:108.181.141.170\nMessage Wall:108.181.169.243\nMessage Wall:108.183.183.195\nMessage Wall:108.184.141.190\nMessage Wall:108.184.142.252\nMessage Wall:108.185.13.6\nMessage Wall:108.185.147.189\nMessage Wall:108.185.240.146\nMessage Wall:108.19.197.247\nMessage Wall:108.19.86.227\nMessage Wall:108.193.64.97\nMessage Wall:108.194.137.141\nMessage Wall:108.194.37.83\nMessage Wall:108.194.60.226\nMessage Wall:108.196.24.136\nMessage Wall:108.197.137.192\nMessage Wall:108.197.146.68\nMessage Wall:108.197.8.245\nMessage Wall:108.197.86.20\nMessage Wall:108.198.69.66\nMessage Wall:108.2.143.41\nMessage Wall:108.2.148.152\nMessage Wall:108.20.134.239\nMessage Wall:108.20.148.111\nMessage Wall:108.200.185.72\nMessage Wall:108.201.101.121\nMessage Wall:108.201.192.116\nMessage Wall:108.203.151.81\nMessage Wall:108.203.188.207\nMessage Wall:108.208.176.103\nMessage Wall:108.208.206.145\nMessage Wall:108.208.34.159\nMessage Wall:108.209.14.87\nMessage Wall:108.209.190.156\nMessage Wall:108.211.252.126\nMessage Wall:108.211.86.193\nMessage Wall:108.215.139.19\nMessage Wall:108.215.246.191\nMessage Wall:108.216.89.143\nMessage Wall:108.217.160.83\nMessage Wall:108.219.212.162\nMessage Wall:108.219.88.255\nMessage Wall:108.223.4.15\nMessage Wall:108.226.12.142\nMessage Wall:108.226.169.128\nMessage Wall:108.227.232.223\nMessage Wall:108.231.240.230\nMessage Wall:108.233.117.252\nMessage Wall:108.236.149.14\nMessage Wall:108.24.123.203\nMessage Wall:108.242.216.67\nMessage Wall:108.244.77.254\nMessage Wall:108.246.28.95\nMessage Wall:108.249.78.148\nMessage Wall:108.25.115.131\nMessage Wall:108.25.6.140\nMessage Wall:108.253.198.163\nMessage Wall:108.253.204.65\nMessage Wall:108.26.118.129\nMessage Wall:108.28.154.137\nMessage Wall:108.28.236.9\nMessage Wall:108.28.240.45\nMessage Wall:108.28.34.105\nMessage Wall:108.3.156.163\nMessage Wall:108.31.130.239\nMessage Wall:108.31.240.188\nMessage Wall:108.31.25.62\nMessage Wall:108.31.88.208\nMessage Wall:108.34.146.176\nMessage Wall:108.39.111.155\nMessage Wall:108.39.33.131\nMessage Wall:108.39.94.193\nMessage Wall:108.41.120.242\nMessage Wall:108.44.176.96\nMessage Wall:108.45.143.20\nMessage Wall:108.45.67.253\nMessage Wall:108.47.237.140\nMessage Wall:108.48.146.104\nMessage Wall:108.48.23.65\nMessage Wall:108.48.29.94\nMessage Wall:108.48.83.226\nMessage Wall:108.49.46.117\nMessage Wall:108.51.94.104\nMessage Wall:108.52.164.164\nMessage Wall:108.52.86.237\nMessage Wall:108.56.133.10\nMessage Wall:108.56.156.222\nMessage Wall:108.59.70.246\nMessage Wall:108.59.74.46\nMessage Wall:108.59.8.208\nMessage Wall:108.60.246.121\nMessage Wall:108.61.123.66\nMessage Wall:108.61.228.56\nMessage Wall:108.67.228.190\nMessage Wall:108.68.77.226\nMessage Wall:108.69.88.210\nMessage Wall:108.7.197.252\nMessage Wall:108.7.35.40\nMessage Wall:108.7.70.140\nMessage Wall:108.71.150.23\nMessage Wall:108.71.96.38\nMessage Wall:108.74.101.114\nMessage Wall:108.75.133.205\nMessage Wall:108.75.252.38\nMessage Wall:108.76.184.144\nMessage Wall:108.77.199.108\nMessage Wall:108.80.100.34\nMessage Wall:108.81.154.71\nMessage Wall:108.81.44.104\nMessage Wall:108.82.81.152\nMessage Wall:108.83.244.200\nMessage Wall:108.86.9.46\nMessage Wall:108.89.113.239\nMessage Wall:108.89.113.34\nMessage Wall:108.9.172.233\nMessage Wall:108.9.221.136\nMessage Wall:109.105.255.83\nMessage Wall:109.109.204.26\nMessage Wall:109.11.26.182\nMessage Wall:109.124.154.200\nMessage Wall:109.125.85.24\nMessage Wall:109.129.138.66\nMessage Wall:109.130.179.204\nMessage Wall:109.130.67.96\nMessage Wall:109.145.132.72\nMessage Wall:109.145.145.175\nMessage Wall:109.145.201.77\nMessage Wall:109.145.235.162\nMessage Wall:109.145.238.166\nMessage Wall:109.145.238.189\nMessage Wall:109.146.112.112\nMessage Wall:109.146.126.96\nMessage Wall:109.146.134.215\nMessage Wall:109.146.146.125\nMessage Wall:109.146.196.19\nMessage Wall:109.146.202.128\nMessage Wall:109.146.235.132\nMessage Wall:109.146.71.137\nMessage Wall:109.147.168.70\nMessage Wall:109.147.60.94\nMessage Wall:109.147.92.12\nMessage Wall:109.148.206.89\nMessage Wall:109.148.22.157\nMessage Wall:109.148.25.152\nMessage Wall:109.148.48.28\nMessage Wall:109.149.233.28\nMessage Wall:109.149.88.20\nMessage Wall:109.149.98.100\nMessage Wall:109.149.98.80\nMessage Wall:109.150.167.170\nMessage Wall:109.150.83.94\nMessage Wall:109.150.91.1\nMessage Wall:109.151.0.76\nMessage Wall:109.151.154.171\nMessage Wall:109.151.168.165\nMessage Wall:109.151.231.156\nMessage Wall:109.151.24.55\nMessage Wall:109.151.246.207\nMessage Wall:109.152.14.42\nMessage Wall:109.152.187.110\nMessage Wall:109.152.201.213\nMessage Wall:109.152.205.140\nMessage Wall:109.152.206.83\nMessage Wall:109.152.40.199\nMessage Wall:109.152.64.19\nMessage Wall:109.152.94.54\nMessage Wall:109.153.152.50\nMessage Wall:109.153.155.108\nMessage Wall:109.154.129.71\nMessage Wall:109.154.162.148\nMessage Wall:109.154.174.235\nMessage Wall:109.154.61.146\nMessage Wall:109.155.18.135\nMessage Wall:109.155.182.227\nMessage Wall:109.155.182.6\nMessage Wall:109.155.236.193\nMessage Wall:109.155.30.233\nMessage Wall:109.155.38.37\nMessage Wall:109.155.57.58\nMessage Wall:109.155.59.229\nMessage Wall:109.155.75.129\nMessage Wall:109.155.96.86\nMessage Wall:109.156.105.19\nMessage Wall:109.156.113.207\nMessage Wall:109.156.149.218\nMessage Wall:109.156.85.4\nMessage Wall:109.157.150.244\nMessage Wall:109.157.177.124\nMessage Wall:109.157.184.76\nMessage Wall:109.157.205.68\nMessage Wall:109.157.45.43\nMessage Wall:109.157.88.12\nMessage Wall:109.158.149.81\nMessage Wall:109.158.152.97\nMessage Wall:109.158.171.171\nMessage Wall:109.158.182.212\nMessage Wall:109.158.200.117\nMessage Wall:109.158.226.40\nMessage Wall:109.158.243.244\nMessage Wall:109.159.111.222\nMessage Wall:109.159.34.49\nMessage Wall:109.159.45.108\nMessage Wall:109.166.131.255\nMessage Wall:109.169.6.135\nMessage Wall:109.172.15.17\nMessage Wall:109.172.31.177\nMessage Wall:109.172.55.178\nMessage Wall:109.173.148.78\nMessage Wall:109.173.208.6\nMessage Wall:109.173.209.113\nMessage Wall:109.175.42.129\nMessage Wall:109.175.60.174\nMessage Wall:109.176.240.46\nMessage Wall:109.182.52.8\nMessage Wall:109.188.126.8\nMessage Wall:109.189.12.24\nMessage Wall:109.189.249.26\nMessage Wall:109.189.56.160\nMessage Wall:109.189.79.140\nMessage Wall:109.19.208.139\nMessage Wall:109.190.148.224\nMessage Wall:109.190.70.123\nMessage Wall:109.190.80.173\nMessage Wall:109.190.87.53\nMessage Wall:109.193.59.21\nMessage Wall:109.196.55.196\nMessage Wall:109.196.59.77\nMessage Wall:109.196.60.79\nMessage Wall:109.20.181.247\nMessage Wall:109.200.230.157\nMessage Wall:109.201.137.167\nMessage Wall:109.202.224.101\nMessage Wall:109.202.55.225\nMessage Wall:109.203.25.13\nMessage Wall:109.204.116.140\nMessage Wall:109.204.170.145\nMessage Wall:109.204.171.201\nMessage Wall:109.204.215.35\nMessage Wall:109.204.219.128\nMessage Wall:109.208.58.139\nMessage Wall:109.210.188.99\nMessage Wall:109.212.199.27\nMessage Wall:109.213.217.171\nMessage Wall:109.215.207.227\nMessage Wall:109.217.158.226\nMessage Wall:109.222.185.125\nMessage Wall:109.226.120.233\nMessage Wall:109.227.40.78\nMessage Wall:109.227.42.98\nMessage Wall:109.227.46.173\nMessage Wall:109.228.164.166\nMessage Wall:109.228.87.198\nMessage Wall:109.230.63.49\nMessage Wall:109.235.156.174\nMessage Wall:109.236.70.86\nMessage Wall:109.236.97.62\nMessage Wall:109.240.105.98\nMessage Wall:109.240.24.155\nMessage Wall:109.240.61.146\nMessage Wall:109.240.61.174\nMessage Wall:109.240.8.158\nMessage Wall:109.243.83.102\nMessage Wall:109.245.71.96\nMessage Wall:109.246.120.209\nMessage Wall:109.246.33.42\nMessage Wall:109.246.96.109\nMessage Wall:109.248.72.24\nMessage Wall:109.248.82.35\nMessage Wall:109.248.91.202\nMessage Wall:109.252.17.115\nMessage Wall:109.252.44.30\nMessage Wall:109.252.44.59\nMessage Wall:109.252.67.168\nMessage Wall:109.252.67.177\nMessage Wall:109.252.67.195\nMessage Wall:109.255.217.48\nMessage Wall:109.31.28.10\nMessage Wall:109.43.0.109\nMessage Wall:109.44.0.230\nMessage Wall:109.47.0.228\nMessage Wall:109.48.235.220\nMessage Wall:109.57.210.32\nMessage Wall:109.66.120.206\nMessage Wall:109.68.168.63\nMessage Wall:109.69.77.99\nMessage Wall:109.72.12.26\nMessage Wall:109.73.208.55\nMessage Wall:109.73.216.84\nMessage Wall:109.75.156.191\nMessage Wall:109.75.18.244\nMessage Wall:109.77.66.96\nMessage Wall:109.77.91.67\nMessage Wall:109.79.67.58\nMessage Wall:109.8.183.89\nMessage Wall:109.8.198.238\nMessage Wall:109.81.210.65\nMessage Wall:109.88.24.97\nMessage Wall:109.89.114.224\nMessage Wall:109.90.233.122\nMessage Wall:109.90.3.195\nMessage Wall:109.90.41.181\nMessage Wall:109.91.183.27\nMessage Wall:109.91.26.110\nMessage Wall:109.91.35.182\nMessage Wall:109.91.37.195\nMessage Wall:109.91.37.68\nMessage Wall:109.93.178.218\nMessage Wall:109.93.3.4\nMessage Wall:109.95.112.24\nMessage Wall:110.140.250.88\nMessage Wall:110.141.151.228\nMessage Wall:110.142.242.165\nMessage Wall:110.146.191.27\nMessage Wall:110.149.165.56\nMessage Wall:110.173.174.140\nMessage Wall:110.174.117.181\nMessage Wall:110.174.240.10\nMessage Wall:110.174.56.58\nMessage Wall:110.175.170.237\nMessage Wall:110.20.20.219\nMessage Wall:110.20.59.100\nMessage Wall:110.22.186.17\nMessage Wall:110.22.41.252\nMessage Wall:110.22.76.140\nMessage Wall:110.23.121.0\nMessage Wall:110.23.122.153\nMessage Wall:110.23.87.39\nMessage Wall:110.238.45.102\nMessage Wall:110.76.145.134\nMessage Wall:110.77.227.136\nMessage Wall:111.220.92.233\nMessage Wall:111.69.140.213\nMessage Wall:111.69.225.205\nMessage Wall:112.120.187.212\nMessage Wall:112.134.145.35\nMessage Wall:112.134.163.57\nMessage Wall:112.135.101.65\nMessage Wall:112.135.34.10\nMessage Wall:112.198.77.50\nMessage Wall:112.198.90.76\nMessage Wall:112.208.139.81\nMessage Wall:112.210.148.121\nMessage Wall:112.71.132.246\nMessage Wall:113.29.231.58\nMessage Wall:114.108.203.165\nMessage Wall:114.125.8.255\nMessage Wall:114.134.187.103\nMessage Wall:114.198.15.81\nMessage Wall:114.198.29.238\nMessage Wall:114.198.48.246\nMessage Wall:114.23.225.7\nMessage Wall:114.249.61.146\nMessage Wall:114.34.170.236\nMessage Wall:114.42.185.122\nMessage Wall:114.44.191.175\nMessage Wall:114.46.145.88\nMessage Wall:114.72.7.118\nMessage Wall:114.72.87.68\nMessage Wall:114.75.68.157\nMessage Wall:114.76.153.189\nMessage Wall:114.76.177.198\nMessage Wall:114.76.5.129\nMessage Wall:114.77.168.203\nMessage Wall:114.77.184.36\nMessage Wall:114.78.101.83\nMessage Wall:114.96.172.141\nMessage Wall:115.134.41.55\nMessage Wall:115.161.97.240\nMessage Wall:115.166.38.155\nMessage Wall:115.166.40.252\nMessage Wall:115.166.55.218\nMessage Wall:115.186.240.194\nMessage Wall:115.187.167.185\nMessage Wall:115.188.142.87\nMessage Wall:115.188.160.14\nMessage Wall:115.188.56.201\nMessage Wall:115.188.72.54\nMessage Wall:115.188.78.80\nMessage Wall:115.189.89.66\nMessage Wall:115.64.182.216\nMessage Wall:115.64.80.72\nMessage Wall:115.66.130.225\nMessage Wall:115.66.181.37\nMessage Wall:115.66.60.148\nMessage Wall:115.69.186.97\nMessage Wall:115.70.50.216\nMessage Wall:115.70.68.84\nMessage Wall:115.70.83.138\nMessage Wall:116.12.164.66\nMessage Wall:116.123.134.10\nMessage Wall:116.124.9.220\nMessage Wall:116.14.199.127\nMessage Wall:116.212.224.34\nMessage Wall:116.212.239.10\nMessage Wall:116.251.22.2\nMessage Wall:116.7.67.229\nMessage Wall:116.87.219.198\nMessage Wall:116.87.33.12\nMessage Wall:116.88.77.12\nMessage Wall:117.120.16.134\nMessage Wall:117.194.85.117\nMessage Wall:118.172.58.189\nMessage Wall:118.174.191.174\nMessage Wall:118.185.31.37\nMessage Wall:118.189.60.164\nMessage Wall:118.208.0.127\nMessage Wall:118.208.100.246\nMessage Wall:118.208.109.71\nMessage Wall:118.208.112.72\nMessage Wall:118.208.133.219\nMessage Wall:118.208.48.18\nMessage Wall:118.208.98.52\nMessage Wall:118.209.100.12\nMessage Wall:118.209.148.52\nMessage Wall:118.209.157.112\nMessage Wall:118.209.201.142\nMessage Wall:118.209.230.104\nMessage Wall:118.209.235.127\nMessage Wall:118.209.240.39\nMessage Wall:118.209.254.40\nMessage Wall:118.209.28.61\nMessage Wall:118.209.68.172\nMessage Wall:118.209.84.154\nMessage Wall:118.210.104.24\nMessage Wall:118.210.141.99\nMessage Wall:118.210.218.108\nMessage Wall:118.210.233.229\nMessage Wall:118.210.66.54\nMessage Wall:118.211.209.43\nMessage Wall:118.211.22.224\nMessage Wall:118.211.67.232\nMessage Wall:118.33.29.171\nMessage Wall:118.92.103.174\nMessage Wall:118.92.239.4\nMessage Wall:118.92.37.137\nMessage Wall:118.93.107.164\nMessage Wall:118.93.112.252\nMessage Wall:118.93.125.86\nMessage Wall:118.93.126.234\nMessage Wall:118.93.201.109\nMessage Wall:118.93.245.13\nMessage Wall:118.93.245.132\nMessage Wall:118.93.29.14\nMessage Wall:119.224.28.32\nMessage Wall:119.237.74.3\nMessage Wall:119.39.48.131\nMessage Wall:119.56.120.119\nMessage Wall:119.95.29.45\nMessage Wall:12.0.242.99\nMessage Wall:12.105.192.18\nMessage Wall:12.108.57.38\nMessage Wall:12.172.156.26\nMessage Wall:12.18.245.215\nMessage Wall:12.227.134.139\nMessage Wall:12.229.72.40\nMessage Wall:12.233.203.202\nMessage Wall:12.234.92.130\nMessage Wall:12.29.17.253\nMessage Wall:12.33.250.67\nMessage Wall:12.47.78.2\nMessage Wall:12.5.54.135\nMessage Wall:12.54.191.15\nMessage Wall:120.144.153.249\nMessage Wall:120.144.54.250\nMessage Wall:120.145.27.164\nMessage Wall:120.145.29.195\nMessage Wall:120.145.41.190\nMessage Wall:120.145.73.17\nMessage Wall:120.147.13.199\nMessage Wall:120.148.72.201\nMessage Wall:120.149.17.204\nMessage Wall:120.150.151.54\nMessage Wall:120.151.124.103\nMessage Wall:120.151.41.100\nMessage Wall:120.155.205.10\nMessage Wall:120.156.87.126\nMessage Wall:120.20.1.25\nMessage Wall:120.20.230.84\nMessage Wall:120.20.77.159\nMessage Wall:120.21.3.34\nMessage Wall:121.121.63.173\nMessage Wall:121.208.140.143\nMessage Wall:121.208.156.225\nMessage Wall:121.208.95.216\nMessage Wall:121.209.196.148\nMessage Wall:121.210.244.147\nMessage Wall:121.211.216.213\nMessage Wall:121.211.33.244\nMessage Wall:121.211.39.251\nMessage Wall:121.211.74.21\nMessage Wall:121.215.136.252\nMessage Wall:121.215.140.97\nMessage Wall:121.215.18.176\nMessage Wall:121.215.20.71\nMessage Wall:121.215.6.88\nMessage Wall:121.215.69.230\nMessage Wall:121.216.111.241\nMessage Wall:121.216.148.50\nMessage Wall:121.216.165.148\nMessage Wall:121.216.21.52\nMessage Wall:121.217.236.107\nMessage Wall:121.218.45.94\nMessage Wall:121.219.32.173\nMessage Wall:121.220.195.176\nMessage Wall:121.220.23.232\nMessage Wall:121.221.220.74\nMessage Wall:121.222.121.55\nMessage Wall:121.222.147.138\nMessage Wall:121.222.42.42\nMessage Wall:121.223.162.244\nMessage Wall:121.223.166.14\nMessage Wall:121.223.22.61\nMessage Wall:121.44.236.220\nMessage Wall:121.44.35.22\nMessage Wall:121.44.37.73\nMessage Wall:121.45.160.147\nMessage Wall:121.45.199.96\nMessage Wall:121.45.235.85\nMessage Wall:121.45.245.99\nMessage Wall:121.45.90.46\nMessage Wall:121.46.18.46\nMessage Wall:121.52.94.70\nMessage Wall:121.7.59.75\nMessage Wall:121.73.132.36\nMessage Wall:121.73.137.206\nMessage Wall:121.73.212.178\nMessage Wall:121.73.74.235\nMessage Wall:121.74.229.92\nMessage Wall:121.75.242.64\nMessage Wall:121.75.9.61\nMessage Wall:121.94.82.27\nMessage Wall:121.98.133.64\nMessage Wall:121.98.178.238\nMessage Wall:121.99.138.144\nMessage Wall:121.99.188.149\nMessage Wall:121.99.54.42\nMessage Wall:122.105.136.231\nMessage Wall:122.106.150.248\nMessage Wall:122.106.222.219\nMessage Wall:122.106.254.124\nMessage Wall:122.108.163.107\nMessage Wall:122.108.186.164\nMessage Wall:122.109.163.110\nMessage Wall:122.109.55.212\nMessage Wall:122.111.141.94\nMessage Wall:122.111.224.8\nMessage Wall:122.111.65.71\nMessage Wall:122.129.134.110\nMessage Wall:122.148.153.93\nMessage Wall:122.148.232.40\nMessage Wall:122.149.142.10\nMessage Wall:122.149.147.200\nMessage Wall:122.149.148.97\nMessage Wall:122.149.237.72\nMessage Wall:122.149.25.122\nMessage Wall:122.150.113.55\nMessage Wall:122.150.131.85\nMessage Wall:122.150.183.76\nMessage Wall:122.150.224.72\nMessage Wall:122.150.97.73\nMessage Wall:122.151.147.67\nMessage Wall:122.178.153.136\nMessage Wall:122.52.93.51\nMessage Wall:122.57.173.99\nMessage Wall:122.58.239.177\nMessage Wall:122.58.31.187\nMessage Wall:122.58.32.79\nMessage Wall:122.58.55.245\nMessage Wall:122.59.154.16\nMessage Wall:122.61.208.67\nMessage Wall:122.62.129.107\nMessage Wall:122.62.130.188\nMessage Wall:123.100.106.196\nMessage Wall:123.116.101.224\nMessage Wall:123.139.36.141\nMessage Wall:123.2.108.115\nMessage Wall:123.2.157.105\nMessage Wall:123.2.166.118\nMessage Wall:123.2.197.77\nMessage Wall:123.2.22.240\nMessage Wall:123.211.123.73\nMessage Wall:123.211.163.148\nMessage Wall:123.211.23.17\nMessage Wall:123.211.237.121\nMessage Wall:123.211.240.4\nMessage Wall:123.211.243.162\nMessage Wall:123.224.175.25\nMessage Wall:123.243.22.178\nMessage Wall:123.255.41.54\nMessage Wall:123.3.189.39\nMessage Wall:123jiordan\nMessage Wall:124.104.205.175\nMessage Wall:124.13.88.48\nMessage Wall:124.148.124.104\nMessage Wall:124.148.131.206\nMessage Wall:124.148.86.42\nMessage Wall:124.149.104.14\nMessage Wall:124.149.177.111\nMessage Wall:124.149.177.188\nMessage Wall:124.149.52.173\nMessage Wall:124.149.92.105\nMessage Wall:124.150.105.206\nMessage Wall:124.150.11.219\nMessage Wall:124.150.125.249\nMessage Wall:124.150.83.251\nMessage Wall:124.150.95.132\nMessage Wall:124.168.38.61\nMessage Wall:124.168.4.7\nMessage Wall:124.168.61.65\nMessage Wall:124.169.177.133\nMessage Wall:124.169.18.205\nMessage Wall:124.169.187.134\nMessage Wall:124.169.6.241\nMessage Wall:124.170.146.115\nMessage Wall:124.170.146.251\nMessage Wall:124.170.158.226\nMessage Wall:124.170.207.203\nMessage Wall:124.170.58.212\nMessage Wall:124.170.72.234\nMessage Wall:124.171.10.225\nMessage Wall:124.171.11.32\nMessage Wall:124.171.175.209\nMessage Wall:124.171.250.175\nMessage Wall:124.171.95.79\nMessage Wall:124.176.173.224\nMessage Wall:124.177.113.24\nMessage Wall:124.180.217.240\nMessage Wall:124.181.234.184\nMessage Wall:124.186.110.143\nMessage Wall:124.186.99.105\nMessage Wall:124.187.84.136\nMessage Wall:124.187.89.178\nMessage Wall:124.188.128.205\nMessage Wall:124.188.94.60\nMessage Wall:124.189.143.181\nMessage Wall:124.190.220.208\nMessage Wall:124.37.83.250\nMessage Wall:125.16.90.6\nMessage Wall:125.209.133.104\nMessage Wall:125.209.168.60\nMessage Wall:125.236.252.109\nMessage Wall:125.237.1.249\nMessage Wall:125.237.15.105\nMessage Wall:125.237.2.240\nMessage Wall:125.237.231.147\nMessage Wall:125.237.3.1\nMessage Wall:125.237.5.125\nMessage Wall:125.237.5.192\nMessage Wall:125.237.5.238\nMessage Wall:125.237.6.217\nMessage Wall:125.237.62.169\nMessage Wall:125.237.7.120\nMessage Wall:125.237.7.146\nMessage Wall:125.237.7.62\nMessage Wall:125.237.7.64\nMessage Wall:125.238.115.135\nMessage Wall:125.238.90.17\nMessage Wall:125.239.213.167\nMessage Wall:125.39.238.6\nMessage Wall:125.39.35.45\nMessage Wall:128.0.208.232\nMessage Wall:128.104.6.11\nMessage Wall:128.150.82.189\nMessage Wall:128.172.35.24\nMessage Wall:128.176.12.211\nMessage Wall:128.204.52.237\nMessage Wall:128.220.159.83\nMessage Wall:128.255.74.4\nMessage Wall:128.39.146.141\nMessage Wall:128.39.166.172\nMessage Wall:128.61.105.207\nMessage Wall:128.61.92.88\nMessage Wall:128.65.95.130\nMessage Wall:128.68.141.4\nMessage Wall:128.70.195.254\nMessage Wall:128.70.62.226\nMessage Wall:128.72.96.99\nMessage Wall:128.75.228.245\nMessage Wall:128.78.170.65\nMessage Wall:128.79.38.16\nMessage Wall:129.101.216.92\nMessage Wall:129.101.218.67\nMessage Wall:129.120.2.135\nMessage Wall:129.130.18.62\nMessage Wall:129.138.30.85\nMessage Wall:129.15.64.225\nMessage Wall:129.176.151.24\nMessage Wall:129.186.176.157\nMessage Wall:129.186.251.157\nMessage Wall:129.21.70.139\nMessage Wall:129.21.91.167\nMessage Wall:129.215.1.181\nMessage Wall:129.22.41.188\nMessage Wall:129.6.107.120\nMessage Wall:129.89.104.103\nMessage Wall:129.89.104.180\nMessage Wall:129.96.80.6\nMessage Wall:129.97.125.196\nMessage Wall:129.99.133.84\nMessage Wall:13.17.125.9\nMessage Wall:130.0.104.95\nMessage Wall:130.0.58.122\nMessage Wall:130.101.200.119\nMessage Wall:130.160.143.133\nMessage Wall:130.179.8.18\nMessage Wall:130.225.165.37\nMessage Wall:130.226.70.85\nMessage Wall:130.229.29.117\nMessage Wall:130.234.177.114\nMessage Wall:130.234.178.99\nMessage Wall:130.236.61.80\nMessage Wall:130.245.239.132\nMessage Wall:130.255.27.13\nMessage Wall:130.49.59.202\nMessage Wall:130.65.254.13\nMessage Wall:130.70.0.34\nMessage Wall:130.88.201.30\nMessage Wall:131.107.147.30\nMessage Wall:131.107.147.49\nMessage Wall:131.111.56.79\nMessage Wall:131.118.76.87\nMessage Wall:131.156.157.169\nMessage Wall:131.164.172.224\nMessage Wall:131.191.35.56\nMessage Wall:131.203.112.66\nMessage Wall:131.204.251.122\nMessage Wall:131.228.32.166\nMessage Wall:131.91.4.35\nMessage Wall:132.170.209.251\nMessage Wall:132.3.13.78\nMessage Wall:132.3.13.79\nMessage Wall:132.3.21.79\nMessage Wall:132.3.53.79\nMessage Wall:132.3.53.81\nMessage Wall:132.3.9.80\nMessage Wall:134.102.157.225\nMessage Wall:134.129.203.28\nMessage Wall:134.130.173.46\nMessage Wall:134.148.10.12\nMessage Wall:134.241.2.61\nMessage Wall:134.3.144.62\nMessage Wall:134.3.27.159\nMessage Wall:134.99.254.77\nMessage Wall:135.0.26.15\nMessage Wall:135.0.27.149\nMessage Wall:135.0.88.207\nMessage Wall:135.19.167.83\nMessage Wall:135.19.26.124\nMessage Wall:135.23.67.121\nMessage Wall:136.251.224.51\nMessage Wall:136.62.175.89\nMessage Wall:136.63.84.11\nMessage Wall:137.112.226.87\nMessage Wall:137.119.65.251\nMessage Wall:137.132.232.152\nMessage Wall:137.147.147.199\nMessage Wall:137.175.204.31\nMessage Wall:137.186.179.68\nMessage Wall:137.186.219.165\nMessage Wall:137.186.244.181\nMessage Wall:137.186.247.239\nMessage Wall:137.187.126.172\nMessage Wall:137.194.23.114\nMessage Wall:137.205.194.208\nMessage Wall:137.229.21.95\nMessage Wall:137.28.109.125\nMessage Wall:138.162.0.41\nMessage Wall:138.162.0.43\nMessage Wall:138.162.8.58\nMessage Wall:138.163.0.41\nMessage Wall:138.163.0.42\nMessage Wall:138.163.128.42\nMessage Wall:138.19.139.138\nMessage Wall:138.226.68.16\nMessage Wall:138.226.68.17\nMessage Wall:138.229.132.80\nMessage Wall:138.32.235.36\nMessage Wall:138.67.90.159\nMessage Wall:138.75.143.196\nMessage Wall:138.75.149.215\nMessage Wall:138.75.186.140\nMessage Wall:139.139.19.68\nMessage Wall:139.161.115.244\nMessage Wall:139.164.160.83\nMessage Wall:139.194.104.101\nMessage Wall:139.194.109.27\nMessage Wall:139.2.4.136\nMessage Wall:139.216.253.11\nMessage Wall:139.218.141.128\nMessage Wall:139.218.220.223\nMessage Wall:139.218.229.129\nMessage Wall:139.218.3.194\nMessage Wall:139.218.68.148\nMessage Wall:139.222.120.175\nMessage Wall:139.51.15.19\nMessage Wall:139.62.24.136\nMessage Wall:139.62.26.121\nMessage Wall:139.62.26.248\nMessage Wall:139.62.84.43\nMessage Wall:14.0.209.53\nMessage Wall:14.2.177.151\nMessage Wall:14.2.47.4\nMessage Wall:14.2.50.157\nMessage Wall:14.2.98.70\nMessage Wall:14.200.155.229\nMessage Wall:14.200.165.96\nMessage Wall:14.201.141.21\nMessage Wall:14.201.187.44\nMessage Wall:14.201.223.11\nMessage Wall:14.201.41.93\nMessage Wall:14.201.5.104\nMessage Wall:14.202.248.9\nMessage Wall:14.202.85.221\nMessage Wall:14.203.141.90\nMessage Wall:14.203.175.212\nMessage Wall:14.203.204.113\nMessage Wall:14.207.41.137\nMessage Wall:14.33.139.181\nMessage Wall:14.34.217.235\nMessage Wall:14.99.116.244\nMessage Wall:140.160.71.167\nMessage Wall:140.254.77.146\nMessage Wall:141.0.12.139\nMessage Wall:141.0.146.135\nMessage Wall:141.0.15.34\nMessage Wall:141.0.8.141\nMessage Wall:141.0.9.62\nMessage Wall:141.135.155.92\nMessage Wall:141.135.169.11\nMessage Wall:141.135.240.235\nMessage Wall:141.209.53.152\nMessage Wall:141.225.144.254\nMessage Wall:141.226.217.246\nMessage Wall:141.226.218.85\nMessage Wall:141.70.82.221\nMessage Wall:141.84.69.20\nMessage Wall:142.0.195.164\nMessage Wall:142.105.155.242\nMessage Wall:142.162.20.15\nMessage Wall:142.162.213.212\nMessage Wall:142.162.51.222\nMessage Wall:142.162.58.178\nMessage Wall:142.163.142.106\nMessage Wall:142.166.148.92\nMessage Wall:142.166.16.179\nMessage Wall:142.167.243.158\nMessage Wall:142.217.17.69\nMessage Wall:142.41.247.10\nMessage Wall:142.51.248.219\nMessage Wall:143.112.32.4\nMessage Wall:143.159.191.163\nMessage Wall:143.159.69.233\nMessage Wall:143.200.40.136\nMessage Wall:143.214.2.4\nMessage Wall:143.215.113.195\nMessage Wall:143.238.133.138\nMessage Wall:143.239.64.177\nMessage Wall:143.81.103.35\nMessage Wall:143.85.167.18\nMessage Wall:143.92.1.33\nMessage Wall:144.124.244.157\nMessage Wall:144.13.204.130\nMessage Wall:144.131.34.218\nMessage Wall:144.132.3.52\nMessage Wall:144.132.69.198\nMessage Wall:144.160.98.91\nMessage Wall:144.191.148.10\nMessage Wall:144.216.244.74\nMessage Wall:144.46.104.12\nMessage Wall:144.76.96.7\nMessage Wall:144.85.149.245\nMessage Wall:144.85.168.61\nMessage Wall:145.120.19.82\nMessage Wall:145.132.121.77\nMessage Wall:145.132.33.196\nMessage Wall:145.228.61.5\nMessage Wall:145.236.69.124\nMessage Wall:145.249.206.186\nMessage Wall:145.253.244.83\nMessage Wall:145.53.114.86\nMessage Wall:145.53.195.156\nMessage Wall:145.97.141.142\nMessage Wall:146.115.124.208\nMessage Wall:146.115.90.104\nMessage Wall:146.151.42.239\nMessage Wall:146.185.185.122\nMessage Wall:146.198.211.148\nMessage Wall:146.198.212.96\nMessage Wall:146.199.154.60\nMessage Wall:146.199.193.88\nMessage Wall:146.199.244.69\nMessage Wall:146.199.52.48\nMessage Wall:146.199.86.218\nMessage Wall:146.200.167.4\nMessage Wall:146.200.19.46\nMessage Wall:146.200.34.168\nMessage Wall:146.200.40.81\nMessage Wall:146.200.85.59\nMessage Wall:146.23.65.196\nMessage Wall:146.244.83.218\nMessage Wall:146.247.225.120\nMessage Wall:146.255.109.194\nMessage Wall:146.255.183.20\nMessage Wall:146.52.104.24\nMessage Wall:146.52.209.19\nMessage Wall:146.52.32.203\nMessage Wall:146.52.34.126\nMessage Wall:146.52.55.117\nMessage Wall:146.60.254.107\nMessage Wall:146.63.193.166\nMessage Wall:146.90.112.215\nMessage Wall:146.90.31.45\nMessage Wall:146.90.47.174\nMessage Wall:146.90.57.106\nMessage Wall:146.90.68.10\nMessage Wall:146.90.85.159\nMessage Wall:147.147.246.160\nMessage Wall:147.147.88.238\nMessage Wall:147.194.127.100\nMessage Wall:147.194.22.179\nMessage Wall:147.194.5.61\nMessage Wall:147.210.28.3\nMessage Wall:147.69.129.150\nMessage Wall:147.69.130.192\nMessage Wall:147.69.133.85\nMessage Wall:147.69.22.101\nMessage Wall:147.69.30.118\nMessage Wall:148.3.31.132\nMessage Wall:148.66.78.139\nMessage Wall:148.83.134.8\nMessage Wall:149.101.1.120\nMessage Wall:149.101.37.2\nMessage Wall:149.12.11.70\nMessage Wall:149.126.105.68\nMessage Wall:149.168.204.10\nMessage Wall:149.172.124.85\nMessage Wall:149.172.254.77\nMessage Wall:149.254.186.248\nMessage Wall:149.254.219.120\nMessage Wall:149.254.224.242\nMessage Wall:149.254.224.252\nMessage Wall:149.254.250.129\nMessage Wall:149.254.51.76\nMessage Wall:149.255.33.155\nMessage Wall:149.3.71.240\nMessage Wall:15.203.169.125\nMessage Wall:15.203.226.42\nMessage Wall:15.203.233.79\nMessage Wall:15.211.201.83\nMessage Wall:150.101.171.247\nMessage Wall:150.101.207.73\nMessage Wall:150.107.175.109\nMessage Wall:150.134.245.5\nMessage Wall:150.203.247.1\nMessage Wall:150.207.150.112\nMessage Wall:150.208.129.188\nMessage Wall:151.188.213.148\nMessage Wall:151.224.0.41\nMessage Wall:151.224.121.170\nMessage Wall:151.224.122.229\nMessage Wall:151.224.132.22\nMessage Wall:151.224.138.137\nMessage Wall:151.224.15.98\nMessage Wall:151.224.217.230\nMessage Wall:151.224.243.0\nMessage Wall:151.224.244.132\nMessage Wall:151.224.41.197\nMessage Wall:151.224.91.240\nMessage Wall:151.225.106.17\nMessage Wall:151.225.109.82\nMessage Wall:151.225.126.103\nMessage Wall:151.225.135.88\nMessage Wall:151.225.141.1\nMessage Wall:151.225.141.168\nMessage Wall:151.225.141.17\nMessage Wall:151.225.141.55\nMessage Wall:151.225.142.24\nMessage Wall:151.225.148.234\nMessage Wall:151.225.186.250\nMessage Wall:151.225.213.103\nMessage Wall:151.225.215.252\nMessage Wall:151.225.45.18\nMessage Wall:151.225.61.134\nMessage Wall:151.225.64.244\nMessage Wall:151.225.68.73\nMessage Wall:151.225.7.51\nMessage Wall:151.225.94.203\nMessage Wall:151.225.94.241\nMessage Wall:151.226.104.22\nMessage Wall:151.226.121.215\nMessage Wall:151.226.122.36\nMessage Wall:151.226.144.63\nMessage Wall:151.226.170.82\nMessage Wall:151.226.179.126\nMessage Wall:151.226.201.155\nMessage Wall:151.226.233.191\nMessage Wall:151.226.255.117\nMessage Wall:151.226.41.229\nMessage Wall:151.226.60.14\nMessage Wall:151.226.78.179\nMessage Wall:151.227.1.18\nMessage Wall:151.227.11.184\nMessage Wall:151.227.121.6\nMessage Wall:151.227.142.193\nMessage Wall:151.227.145.44\nMessage Wall:151.227.146.159\nMessage Wall:151.227.148.19\nMessage Wall:151.227.162.81\nMessage Wall:151.227.38.48\nMessage Wall:151.227.52.191\nMessage Wall:151.228.110.237\nMessage Wall:151.228.186.94\nMessage Wall:151.228.207.149\nMessage Wall:151.228.209.213\nMessage Wall:151.228.74.213\nMessage Wall:151.228.93.10\nMessage Wall:151.229.225.114\nMessage Wall:151.229.226.118\nMessage Wall:151.229.84.136\nMessage Wall:151.230.152.197\nMessage Wall:151.230.79.89\nMessage Wall:151.231.142.251\nMessage Wall:151.231.146.131\nMessage Wall:151.250.250.100\nMessage Wall:151.26.97.208\nMessage Wall:151.36.111.212\nMessage Wall:151.42.10.149\nMessage Wall:151.42.221.250\nMessage Wall:151.43.1.9\nMessage Wall:151.46.83.8\nMessage Wall:151.48.156.169\nMessage Wall:151.56.213.189\nMessage Wall:151.76.42.27\nMessage Wall:152.132.10.195\nMessage Wall:152.18.145.40\nMessage Wall:152.243.222.75\nMessage Wall:152.249.205.73\nMessage Wall:152.26.198.33\nMessage Wall:152.3.43.140\nMessage Wall:152.66.249.108\nMessage Wall:153.106.87.71\nMessage Wall:153.106.90.110\nMessage Wall:153.107.192.204\nMessage Wall:153.107.192.205\nMessage Wall:153.107.192.212\nMessage Wall:153.107.192.219\nMessage Wall:153.107.193.203\nMessage Wall:153.107.193.208\nMessage Wall:153.107.193.211\nMessage Wall:153.107.193.213\nMessage Wall:153.110.241.232\nMessage Wall:153.133.138.69\nMessage Wall:153.184.96.8\nMessage Wall:153.24.73.60\nMessage Wall:153.25.178.60\nMessage Wall:153.42.242.254\nMessage Wall:153.46.105.98\nMessage Wall:153.46.97.98\nMessage Wall:153.90.95.82\nMessage Wall:154.42.163.226\nMessage Wall:154.5.157.72\nMessage Wall:154.57.228.167\nMessage Wall:155.101.171.187\nMessage Wall:155.194.200.20\nMessage Wall:155.198.115.108\nMessage Wall:155.31.49.152\nMessage Wall:155.4.189.58\nMessage Wall:155.4.242.194\nMessage Wall:155.92.109.110\nMessage Wall:156.101.9.1\nMessage Wall:156.3.54.202\nMessage Wall:156.3.54.203\nMessage Wall:156.3.54.204\nMessage Wall:156.3.54.205\nMessage Wall:156.3.54.206\nMessage Wall:156.34.185.85\nMessage Wall:156.57.102.99\nMessage Wall:156.57.133.108\nMessage Wall:158.125.69.147\nMessage Wall:158.180.192.10\nMessage Wall:158.222.131.209\nMessage Wall:158.222.183.200\nMessage Wall:158.234.250.71\nMessage Wall:158.38.13.150\nMessage Wall:158.94.71.65\nMessage Wall:159.118.117.24\nMessage Wall:159.118.186.83\nMessage Wall:159.118.243.219\nMessage Wall:159.118.249.21\nMessage Wall:159.118.8.125\nMessage Wall:159.147.253.163\nMessage Wall:159.203.17.168\nMessage Wall:159.203.4.199\nMessage Wall:159.205.155.50\nMessage Wall:159.224.131.168\nMessage Wall:159.245.16.100\nMessage Wall:159.45.186.47\nMessage Wall:159.45.22.6\nMessage Wall:160.3.141.17\nMessage Wall:160.3.242.114\nMessage Wall:160.33.43.72\nMessage Wall:160.44.230.197\nMessage Wall:160.5.115.2\nMessage Wall:160.83.30.182\nMessage Wall:160.83.30.201\nMessage Wall:162.104.184.13\nMessage Wall:162.118.16.5\nMessage Wall:162.156.1.23\nMessage Wall:162.156.165.159\nMessage Wall:162.156.172.47\nMessage Wall:162.156.176.143\nMessage Wall:162.156.178.218\nMessage Wall:162.156.20.215\nMessage Wall:162.157.209.175\nMessage Wall:162.157.24.169\nMessage Wall:162.157.9.140\nMessage Wall:162.192.80.24\nMessage Wall:162.193.150.116\nMessage Wall:162.196.161.44\nMessage Wall:162.197.72.154\nMessage Wall:162.201.249.235\nMessage Wall:162.205.177.240\nMessage Wall:162.210.127.60\nMessage Wall:162.216.46.117\nMessage Wall:162.224.156.75\nMessage Wall:162.229.66.46\nMessage Wall:162.229.93.140\nMessage Wall:162.232.140.150\nMessage Wall:162.233.126.114\nMessage Wall:162.237.110.142\nMessage Wall:162.237.252.57\nMessage Wall:162.238.223.165\nMessage Wall:162.239.165.34\nMessage Wall:162.239.69.156\nMessage Wall:162.244.200.14\nMessage Wall:162.245.20.124\nMessage Wall:162.245.22.219\nMessage Wall:162.246.149.122\nMessage Wall:162.25.24.152\nMessage Wall:162.25.24.153\nMessage Wall:162.250.85.154\nMessage Wall:162.251.172.23\nMessage Wall:162.252.63.203\nMessage Wall:162.254.104.16\nMessage Wall:162.255.63.134\nMessage Wall:162.72.140.48\nMessage Wall:162.72.41.231\nMessage Wall:162.72.41.56\nMessage Wall:163.118.166.124\nMessage Wall:163.118.166.92\nMessage Wall:163.164.17.23\nMessage Wall:163.244.62.181\nMessage Wall:163.244.62.182\nMessage Wall:163.251.239.4\nMessage Wall:163.47.222.206\nMessage Wall:163.47.238.17\nMessage Wall:164.159.60.2\nMessage Wall:164.39.7.210\nMessage Wall:164.39.72.34\nMessage Wall:164.90.7.2\nMessage Wall:165.120.137.201\nMessage Wall:165.120.20.92\nMessage Wall:165.120.216.135\nMessage Wall:165.120.43.189\nMessage Wall:165.120.78.95\nMessage Wall:165.120.97.180\nMessage Wall:165.123.133.182\nMessage Wall:165.132.128.158\nMessage Wall:165.166.218.17\nMessage Wall:165.196.26.70\nMessage Wall:165.225.80.89\nMessage Wall:165.228.23.22\nMessage Wall:165.228.8.88\nMessage Wall:165.233.45.159\nMessage Wall:165.234.40.254\nMessage Wall:165.255.164.189\nMessage Wall:165.91.12.235\nMessage Wall:166.137.118.125\nMessage Wall:166.137.118.28\nMessage Wall:166.137.12.24\nMessage Wall:166.137.12.89\nMessage Wall:166.137.139.115\nMessage Wall:166.137.139.46\nMessage Wall:166.137.139.51\nMessage Wall:166.137.139.91\nMessage Wall:166.137.14.108\nMessage Wall:166.137.14.109\nMessage Wall:166.137.244.78\nMessage Wall:166.137.244.90\nMessage Wall:166.170.14.126\nMessage Wall:166.170.5.119\nMessage Wall:166.181.82.53\nMessage Wall:166.216.165.76\nMessage Wall:166.62.217.63\nMessage Wall:167.127.218.145\nMessage Wall:167.176.6.8\nMessage Wall:167.177.39.6\nMessage Wall:167.21.142.41\nMessage Wall:167.21.142.42\nMessage Wall:167.21.142.43\nMessage Wall:167.220.232.249\nMessage Wall:167.220.26.99\nMessage Wall:167.30.49.2\nMessage Wall:167.88.21.135\nMessage Wall:167.98.30.220\nMessage Wall:168.1.53.231\nMessage Wall:168.17.8.103\nMessage Wall:168.20.244.9\nMessage Wall:168.235.195.182\nMessage Wall:168.254.225.154\nMessage Wall:168.39.155.31\nMessage Wall:168.87.3.33\nMessage Wall:168.99.197.15\nMessage Wall:169.204.228.90\nMessage Wall:169.204.229.102\nMessage Wall:169.204.229.202\nMessage Wall:169.231.141.119\nMessage Wall:169.234.217.23\nMessage Wall:169.244.100.48\nMessage Wall:169.244.51.180\nMessage Wall:16tribe2\nMessage Wall:170.211.150.62\nMessage Wall:170.218.231.21\nMessage Wall:170.248.172.62\nMessage Wall:171.33.197.106\nMessage Wall:171.33.249.49\nMessage Wall:171.96.182.215\nMessage Wall:172.103.23.159\nMessage Wall:172.103.31.182\nMessage Wall:172.110.128.134\nMessage Wall:172.111.180.163\nMessage Wall:172.112.57.94\nMessage Wall:172.112.71.88\nMessage Wall:172.115.111.97\nMessage Wall:172.115.113.91\nMessage Wall:172.127.158.139\nMessage Wall:172.15.14.195\nMessage Wall:172.15.152.85\nMessage Wall:172.164.31.152\nMessage Wall:172.198.205.197\nMessage Wall:172.2.69.44\nMessage Wall:172.218.223.166\nMessage Wall:172.218.89.196\nMessage Wall:172.218.89.53\nMessage Wall:172.219.187.22\nMessage Wall:172.248.117.120\nMessage Wall:172.248.16.23\nMessage Wall:172.248.218.92\nMessage Wall:172.248.55.166\nMessage Wall:172.251.42.58\nMessage Wall:172.251.91.13\nMessage Wall:172.4.119.131\nMessage Wall:172.56.13.128\nMessage Wall:172.56.13.27\nMessage Wall:172.56.15.201\nMessage Wall:172.56.2.7\nMessage Wall:172.56.26.117\nMessage Wall:172.56.29.82\nMessage Wall:172.56.30.227\nMessage Wall:172.56.38.27\nMessage Wall:172.56.41.95\nMessage Wall:172.58.105.226\nMessage Wall:172.58.144.247\nMessage Wall:172.58.168.158\nMessage Wall:172.58.169.16\nMessage Wall:172.58.201.251\nMessage Wall:172.58.35.196\nMessage Wall:172.58.41.1\nMessage Wall:172.6.217.252\nMessage Wall:172.7.232.80\nMessage Wall:172.72.228.195\nMessage Wall:172.73.212.223\nMessage Wall:172.73.222.204\nMessage Wall:172.73.228.153\nMessage Wall:172.73.5.12\nMessage Wall:172.73.59.201\nMessage Wall:172.74.44.60\nMessage Wall:172.78.201.158\nMessage Wall:172.79.89.40\nMessage Wall:172.8.173.4\nMessage Wall:172.88.141.191\nMessage Wall:172.88.235.95\nMessage Wall:172.88.243.38\nMessage Wall:172.89.27.162\nMessage Wall:172.9.114.212\nMessage Wall:172.9.224.106\nMessage Wall:172.90.77.127\nMessage Wall:172.94.18.73\nMessage Wall:172.98.220.57\nMessage Wall:172.98.67.62\nMessage Wall:172.98.84.222\nMessage Wall:172.98.85.78\nMessage Wall:173.11.190.254\nMessage Wall:173.12.169.77\nMessage Wall:173.13.34.205\nMessage Wall:173.15.201.129\nMessage Wall:173.15.24.9\nMessage Wall:173.16.210.71\nMessage Wall:173.160.181.149\nMessage Wall:173.160.232.227\nMessage Wall:173.162.212.237\nMessage Wall:173.168.160.53\nMessage Wall:173.168.7.123\nMessage Wall:173.168.95.167\nMessage Wall:173.169.188.219\nMessage Wall:173.17.142.234\nMessage Wall:173.17.219.16\nMessage Wall:173.17.249.229\nMessage Wall:173.170.161.72\nMessage Wall:173.172.185.51\nMessage Wall:173.172.206.202\nMessage Wall:173.172.212.185\nMessage Wall:173.172.220.8\nMessage Wall:173.174.167.170\nMessage Wall:173.174.214.33\nMessage Wall:173.176.60.145\nMessage Wall:173.177.221.56\nMessage Wall:173.178.71.136\nMessage Wall:173.179.224.185\nMessage Wall:173.179.88.88\nMessage Wall:173.179.95.21\nMessage Wall:173.18.248.45\nMessage Wall:173.180.246.140\nMessage Wall:173.180.253.243\nMessage Wall:173.183.133.158\nMessage Wall:173.189.159.193\nMessage Wall:173.19.98.227\nMessage Wall:173.191.151.131\nMessage Wall:173.198.110.58\nMessage Wall:173.198.6.106\nMessage Wall:173.2.151.74\nMessage Wall:173.2.17.108\nMessage Wall:173.20.138.184\nMessage Wall:173.20.155.11\nMessage Wall:173.20.166.135\nMessage Wall:173.20.28.32\nMessage Wall:173.209.211.148\nMessage Wall:173.210.188.136\nMessage Wall:173.210.244.171\nMessage Wall:173.213.212.213\nMessage Wall:173.216.202.241\nMessage Wall:173.216.226.58\nMessage Wall:173.216.48.69\nMessage Wall:173.217.238.130\nMessage Wall:173.217.5.86\nMessage Wall:173.217.50.78\nMessage Wall:173.218.240.207\nMessage Wall:173.218.6.95\nMessage Wall:173.219.36.16\nMessage Wall:173.22.120.160\nMessage Wall:173.22.6.232\nMessage Wall:173.22.84.205\nMessage Wall:173.225.157.104\nMessage Wall:173.225.179.34\nMessage Wall:173.226.237.130\nMessage Wall:173.227.92.114\nMessage Wall:173.228.12.43\nMessage Wall:173.228.91.153\nMessage Wall:173.23.120.170\nMessage Wall:173.23.156.228\nMessage Wall:173.23.170.210\nMessage Wall:173.234.216.95\nMessage Wall:173.234.43.250\nMessage Wall:173.237.109.109\nMessage Wall:173.238.241.135\nMessage Wall:173.239.197.4\nMessage Wall:173.239.228.46\nMessage Wall:173.24.129.45\nMessage Wall:173.24.150.13\nMessage Wall:173.24.227.48\nMessage Wall:173.242.193.41\nMessage Wall:173.244.209.76\nMessage Wall:173.244.44.67\nMessage Wall:173.25.0.217\nMessage Wall:173.25.140.225\nMessage Wall:173.25.77.29\nMessage Wall:173.250.160.217\nMessage Wall:173.252.62.122\nMessage Wall:173.26.133.14\nMessage Wall:173.26.21.73\nMessage Wall:173.27.146.27\nMessage Wall:173.27.168.208\nMessage Wall:173.27.2.135\nMessage Wall:173.27.88.60\nMessage Wall:173.29.116.54\nMessage Wall:173.29.224.36\nMessage Wall:173.30.120.225\nMessage Wall:173.30.161.210\nMessage Wall:173.30.172.18\nMessage Wall:173.30.5.165\nMessage Wall:173.31.27.48\nMessage Wall:173.31.85.46\nMessage Wall:173.32.146.21\nMessage Wall:173.32.9.226\nMessage Wall:173.33.138.180\nMessage Wall:173.34.29.135\nMessage Wall:173.35.86.182\nMessage Wall:173.44.77.26\nMessage Wall:173.46.234.172\nMessage Wall:173.46.76.146\nMessage Wall:173.46.76.172\nMessage Wall:173.48.102.93\nMessage Wall:173.49.136.54\nMessage Wall:173.49.228.169\nMessage Wall:173.49.73.157\nMessage Wall:173.51.162.30\nMessage Wall:173.51.204.88\nMessage Wall:173.51.47.143\nMessage Wall:173.52.208.105\nMessage Wall:173.52.97.160\nMessage Wall:173.52.97.226\nMessage Wall:173.54.228.91\nMessage Wall:173.55.173.227\nMessage Wall:173.57.1.190\nMessage Wall:173.57.13.97\nMessage Wall:173.57.144.28\nMessage Wall:173.57.27.163\nMessage Wall:173.59.117.241\nMessage Wall:173.60.232.157\nMessage Wall:173.61.193.177\nMessage Wall:173.64.201.135\nMessage Wall:173.65.123.100\nMessage Wall:173.65.131.178\nMessage Wall:173.65.132.78\nMessage Wall:173.65.143.243\nMessage Wall:173.65.200.224\nMessage Wall:173.65.254.117\nMessage Wall:173.66.176.182\nMessage Wall:173.67.1.174\nMessage Wall:173.67.15.85\nMessage Wall:173.69.129.2\nMessage Wall:173.69.136.212\nMessage Wall:173.69.154.83\nMessage Wall:173.69.157.180\nMessage Wall:173.69.192.124\nMessage Wall:173.69.2.122\nMessage Wall:173.69.56.96\nMessage Wall:173.70.28.248\nMessage Wall:173.73.157.146\nMessage Wall:173.73.173.35\nMessage Wall:173.74.224.50\nMessage Wall:173.74.253.161\nMessage Wall:173.74.64.218\nMessage Wall:173.75.143.193\nMessage Wall:173.75.248.231\nMessage Wall:173.75.45.64\nMessage Wall:173.75.56.70\nMessage Wall:173.76.104.238\nMessage Wall:173.76.5.111\nMessage Wall:173.79.1.94\nMessage Wall:173.79.220.63\nMessage Wall:173.79.4.227\nMessage Wall:173.79.7.216\nMessage Wall:173.79.92.219\nMessage Wall:173.80.57.110\nMessage Wall:173.80.81.134\nMessage Wall:173.80.93.74\nMessage Wall:173.89.136.33\nMessage Wall:173.89.19.113\nMessage Wall:173.89.60.82\nMessage Wall:173.9.97.37\nMessage Wall:174.0.236.210\nMessage Wall:174.0.47.184\nMessage Wall:174.1.52.74\nMessage Wall:174.100.137.70\nMessage Wall:174.100.2.182\nMessage Wall:174.101.253.241\nMessage Wall:174.101.96.241\nMessage Wall:174.102.154.114\nMessage Wall:174.102.96.147\nMessage Wall:174.103.135.240\nMessage Wall:174.106.205.27\nMessage Wall:174.108.58.251\nMessage Wall:174.109.116.215\nMessage Wall:174.109.186.40\nMessage Wall:174.109.32.237\nMessage Wall:174.110.216.144\nMessage Wall:174.111.50.0\nMessage Wall:174.114.1.58\nMessage Wall:174.114.120.34\nMessage Wall:174.117.121.159\nMessage Wall:174.125.205.5\nMessage Wall:174.125.235.167\nMessage Wall:174.125.3.168\nMessage Wall:174.125.8.46\nMessage Wall:174.125.96.212\nMessage Wall:174.126.123.94\nMessage Wall:174.126.186.138\nMessage Wall:174.126.248.172\nMessage Wall:174.126.88.187\nMessage Wall:174.127.236.94\nMessage Wall:174.131.45.168\nMessage Wall:174.134.139.244\nMessage Wall:174.135.26.105\nMessage Wall:174.16.78.14\nMessage Wall:174.18.30.92\nMessage Wall:174.18.57.189\nMessage Wall:174.18.60.147\nMessage Wall:174.19.187.135\nMessage Wall:174.2.161.32\nMessage Wall:174.2.66.60\nMessage Wall:174.20.49.239\nMessage Wall:174.21.41.216\nMessage Wall:174.22.224.172\nMessage Wall:174.22.230.75\nMessage Wall:174.22.239.189\nMessage Wall:174.22.4.78\nMessage Wall:174.227.6.14\nMessage Wall:174.23.194.56\nMessage Wall:174.238.16.30\nMessage Wall:174.24.238.158\nMessage Wall:174.25.247.109\nMessage Wall:174.255.128.80\nMessage Wall:174.26.132.67\nMessage Wall:174.26.78.242\nMessage Wall:174.27.115.135\nMessage Wall:174.28.115.61\nMessage Wall:174.28.246.220\nMessage Wall:174.3.116.101\nMessage Wall:174.3.153.65\nMessage Wall:174.3.243.199\nMessage Wall:174.31.166.220\nMessage Wall:174.4.53.44\nMessage Wall:174.44.1.142\nMessage Wall:174.44.114.247\nMessage Wall:174.44.152.189\nMessage Wall:174.45.225.212\nMessage Wall:174.45.58.86\nMessage Wall:174.47.231.44\nMessage Wall:174.47.79.70\nMessage Wall:174.49.124.129\nMessage Wall:174.49.197.5\nMessage Wall:174.49.239.228\nMessage Wall:174.49.85.122\nMessage Wall:174.5.68.27\nMessage Wall:174.50.173.131\nMessage Wall:174.50.181.14\nMessage Wall:174.51.8.121\nMessage Wall:174.51.82.139\nMessage Wall:174.52.1.8\nMessage Wall:174.52.104.159\nMessage Wall:174.52.137.239\nMessage Wall:174.52.196.99\nMessage Wall:174.52.214.245\nMessage Wall:174.52.240.177\nMessage Wall:174.53.183.100\nMessage Wall:174.53.82.233\nMessage Wall:174.54.154.83\nMessage Wall:174.54.216.149\nMessage Wall:174.55.166.100\nMessage Wall:174.56.100.46\nMessage Wall:174.56.11.88\nMessage Wall:174.56.70.121\nMessage Wall:174.57.9.59\nMessage Wall:174.58.35.133\nMessage Wall:174.59.146.48\nMessage Wall:174.59.238.138\nMessage Wall:174.60.126.10\nMessage Wall:174.60.56.102\nMessage Wall:174.60.8.181\nMessage Wall:174.61.152.149\nMessage Wall:174.61.66.210\nMessage Wall:174.62.227.131\nMessage Wall:174.63.198.104\nMessage Wall:174.64.107.110\nMessage Wall:174.64.16.26\nMessage Wall:174.64.6.239\nMessage Wall:174.65.102.230\nMessage Wall:174.69.119.169\nMessage Wall:174.69.33.97\nMessage Wall:174.7.116.84\nMessage Wall:174.7.225.136\nMessage Wall:174.7.36.10\nMessage Wall:174.70.137.232\nMessage Wall:174.71.23.232\nMessage Wall:174.71.84.171\nMessage Wall:174.73.123.39\nMessage Wall:174.74.18.56\nMessage Wall:174.74.81.170\nMessage Wall:174.79.174.130\nMessage Wall:174.79.2.245\nMessage Wall:174.89.132.60\nMessage Wall:174.89.135.213\nMessage Wall:174.89.153.58\nMessage Wall:174.92.220.239\nMessage Wall:174.93.29.163\nMessage Wall:174.93.58.169\nMessage Wall:174.95.30.214\nMessage Wall:174.95.45.251\nMessage Wall:174.95.73.33\nMessage Wall:174.96.69.127\nMessage Wall:174.98.122.121\nMessage Wall:174.99.24.22\nMessage Wall:174.99.31.142\nMessage Wall:174.99.32.32\nMessage Wall:175.139.46.101\nMessage Wall:175.141.192.12\nMessage Wall:175.141.58.244\nMessage Wall:175.145.249.40\nMessage Wall:175.145.50.111\nMessage Wall:175.156.1.180\nMessage Wall:175.156.139.49\nMessage Wall:175.156.150.184\nMessage Wall:175.156.174.207\nMessage Wall:175.156.247.68\nMessage Wall:175.156.52.51\nMessage Wall:175.203.72.203\nMessage Wall:175.214.247.229\nMessage Wall:175.38.234.198\nMessage Wall:175.45.116.59\nMessage Wall:175.45.116.60\nMessage Wall:175.45.124.38\nMessage Wall:176.10.136.110\nMessage Wall:176.10.225.220\nMessage Wall:176.10.239.156\nMessage Wall:176.111.239.4\nMessage Wall:176.124.224.33\nMessage Wall:176.127.74.153\nMessage Wall:176.14.163.205\nMessage Wall:176.144.2.105\nMessage Wall:176.146.128.44\nMessage Wall:176.182.28.45\nMessage Wall:176.183.118.17\nMessage Wall:176.183.119.34\nMessage Wall:176.183.148.213\nMessage Wall:176.183.193.156\nMessage Wall:176.193.109.147\nMessage Wall:176.193.153.105\nMessage Wall:176.194.59.230\nMessage Wall:176.199.173.71\nMessage Wall:176.199.186.213\nMessage Wall:176.199.187.70\nMessage Wall:176.2.117.98\nMessage Wall:176.21.254.58\nMessage Wall:176.212.206.134\nMessage Wall:176.212.243.155\nMessage Wall:176.213.115.43\nMessage Wall:176.213.145.52\nMessage Wall:176.215.34.237\nMessage Wall:176.221.121.18\nMessage Wall:176.221.122.85\nMessage Wall:176.221.125.53\nMessage Wall:176.221.77.250\nMessage Wall:176.222.224.253\nMessage Wall:176.226.221.2\nMessage Wall:176.23.165.113\nMessage Wall:176.23.45.253\nMessage Wall:176.23.88.230\nMessage Wall:176.233.132.40\nMessage Wall:176.24.154.53\nMessage Wall:176.240.172.3\nMessage Wall:176.240.96.204\nMessage Wall:176.241.72.203\nMessage Wall:176.248.115.26\nMessage Wall:176.248.234.156\nMessage Wall:176.249.248.245\nMessage Wall:176.249.62.114\nMessage Wall:176.25.205.232\nMessage Wall:176.25.248.74\nMessage Wall:176.25.8.201\nMessage Wall:176.250.25.0\nMessage Wall:176.250.99.141\nMessage Wall:176.251.25.69\nMessage Wall:176.252.138.89\nMessage Wall:176.252.55.21\nMessage Wall:176.252.90.172\nMessage Wall:176.253.21.109\nMessage Wall:176.26.21.91\nMessage Wall:176.26.233.188\nMessage Wall:176.26.36.75\nMessage Wall:176.26.93.243\nMessage Wall:176.27.219.146\nMessage Wall:176.27.87.18\nMessage Wall:176.4.126.235\nMessage Wall:176.4.79.99\nMessage Wall:176.43.142.195\nMessage Wall:176.46.45.198\nMessage Wall:176.50.179.125\nMessage Wall:176.56.198.24\nMessage Wall:176.58.179.80\nMessage Wall:176.6.118.4\nMessage Wall:176.61.103.233\nMessage Wall:176.61.108.152\nMessage Wall:176.61.26.83\nMessage Wall:176.63.141.52\nMessage Wall:176.63.17.132\nMessage Wall:176.63.20.50\nMessage Wall:176.63.243.143\nMessage Wall:176.63.28.13\nMessage Wall:176.63.31.242\nMessage Wall:176.64.145.1\nMessage Wall:176.68.80.46\nMessage Wall:176.71.177.202\nMessage Wall:176.72.249.61\nMessage Wall:176.73.127.181\nMessage Wall:176.79.144.5\nMessage Wall:176.86.164.55\nMessage Wall:176.93.8.142\nMessage Wall:177.130.105.91\nMessage Wall:177.132.146.220\nMessage Wall:177.142.217.184\nMessage Wall:177.154.35.10\nMessage Wall:177.157.156.4\nMessage Wall:177.157.194.143\nMessage Wall:177.158.21.99\nMessage Wall:177.158.7.235\nMessage Wall:177.180.27.202\nMessage Wall:177.182.230.18\nMessage Wall:177.192.6.177\nMessage Wall:177.194.13.244\nMessage Wall:177.194.250.67\nMessage Wall:177.201.102.222\nMessage Wall:177.205.228.58\nMessage Wall:177.221.125.224\nMessage Wall:177.235.110.238\nMessage Wall:177.249.140.164\nMessage Wall:177.32.150.96\nMessage Wall:177.40.37.81\nMessage Wall:177.41.34.78\nMessage Wall:177.42.42.226\nMessage Wall:177.43.130.228\nMessage Wall:177.96.244.191\nMessage Wall:177.98.11.58\nMessage Wall:177.99.241.34\nMessage Wall:178.1.11.217\nMessage Wall:178.10.193.255\nMessage Wall:178.10.29.2\nMessage Wall:178.115.130.90\nMessage Wall:178.12.151.17\nMessage Wall:178.12.223.55\nMessage Wall:178.12.48.41\nMessage Wall:178.12.56.22\nMessage Wall:178.121.142.230\nMessage Wall:178.121.180.102\nMessage Wall:178.123.9.193\nMessage Wall:178.128.24.175\nMessage Wall:178.135.88.137\nMessage Wall:178.141.136.199\nMessage Wall:178.141.159.123\nMessage Wall:178.141.203.18\nMessage Wall:178.141.3.141\nMessage Wall:178.141.3.171\nMessage Wall:178.142.112.182\nMessage Wall:178.143.140.152\nMessage Wall:178.148.184.203\nMessage Wall:178.148.38.158\nMessage Wall:178.151.142.189\nMessage Wall:178.155.208.253\nMessage Wall:178.157.249.248\nMessage Wall:178.157.252.120\nMessage Wall:178.164.118.5\nMessage Wall:178.164.201.234\nMessage Wall:178.164.229.193\nMessage Wall:178.165.128.167\nMessage Wall:178.167.254.97\nMessage Wall:178.168.68.37\nMessage Wall:178.172.132.51\nMessage Wall:178.172.239.241\nMessage Wall:178.174.197.83\nMessage Wall:178.174.229.186\nMessage Wall:178.19.224.14\nMessage Wall:178.191.67.160\nMessage Wall:178.192.134.124\nMessage Wall:178.197.227.1\nMessage Wall:178.197.228.40\nMessage Wall:178.197.228.86\nMessage Wall:178.197.230.32\nMessage Wall:178.2.208.228\nMessage Wall:178.2.220.88\nMessage Wall:178.200.5.157\nMessage Wall:178.201.119.229\nMessage Wall:178.201.243.73\nMessage Wall:178.201.4.219\nMessage Wall:178.202.127.237\nMessage Wall:178.202.150.158\nMessage Wall:178.202.166.75\nMessage Wall:178.202.191.244\nMessage Wall:178.202.191.36\nMessage Wall:178.202.48.107\nMessage Wall:178.203.14.187\nMessage Wall:178.203.164.127\nMessage Wall:178.203.233.162\nMessage Wall:178.203.233.27\nMessage Wall:178.203.234.4\nMessage Wall:178.203.72.86\nMessage Wall:178.205.62.0\nMessage Wall:178.205.63.0\nMessage Wall:178.205.63.2\nMessage Wall:178.208.192.105\nMessage Wall:178.210.254.14\nMessage Wall:178.212.43.167\nMessage Wall:178.215.82.71\nMessage Wall:178.216.149.2\nMessage Wall:178.220.222.6\nMessage Wall:178.221.129.195\nMessage Wall:178.232.160.178\nMessage Wall:178.232.225.161\nMessage Wall:178.233.173.175\nMessage Wall:178.238.155.181\nMessage Wall:178.238.167.254\nMessage Wall:178.239.96.217\nMessage Wall:178.240.8.18\nMessage Wall:178.248.249.86\nMessage Wall:178.25.159.100\nMessage Wall:178.250.179.140\nMessage Wall:178.27.154.92\nMessage Wall:178.27.173.10\nMessage Wall:178.27.174.74\nMessage Wall:178.3.138.195\nMessage Wall:178.36.122.73\nMessage Wall:178.36.71.91\nMessage Wall:178.37.14.25\nMessage Wall:178.37.188.152\nMessage Wall:178.37.21.16\nMessage Wall:178.40.145.227\nMessage Wall:178.41.133.255\nMessage Wall:178.42.151.14\nMessage Wall:178.42.60.252\nMessage Wall:178.47.125.105\nMessage Wall:178.49.96.78\nMessage Wall:178.61.129.150\nMessage Wall:178.62.34.82\nMessage Wall:178.62.5.157\nMessage Wall:178.62.6.233\nMessage Wall:178.62.64.106\nMessage Wall:178.62.85.75\nMessage Wall:178.68.11.190\nMessage Wall:178.7.157.248\nMessage Wall:178.74.102.250\nMessage Wall:178.74.46.71\nMessage Wall:178.75.142.231\nMessage Wall:178.75.171.94\nMessage Wall:178.76.177.253\nMessage Wall:178.76.233.114\nMessage Wall:178.78.77.51\nMessage Wall:178.8.140.214\nMessage Wall:178.82.101.145\nMessage Wall:178.83.12.151\nMessage Wall:178.83.194.237\nMessage Wall:178.84.5.249\nMessage Wall:178.85.74.135\nMessage Wall:178.9.121.204\nMessage Wall:178.9.15.102\nMessage Wall:178.9.200.224\nMessage Wall:179.155.234.91\nMessage Wall:179.176.100.196\nMessage Wall:179.179.141.24\nMessage Wall:179.181.180.33\nMessage Wall:179.182.53.182\nMessage Wall:179.183.200.2\nMessage Wall:179.183.9.81\nMessage Wall:179.185.203.73\nMessage Wall:179.186.0.119\nMessage Wall:179.210.155.67\nMessage Wall:179.210.36.73\nMessage Wall:179.219.170.206\nMessage Wall:179.222.108.65\nMessage Wall:179.24.98.154\nMessage Wall:179.35.159.185\nMessage Wall:179.43.133.141\nMessage Wall:179.57.6.116\nMessage Wall:18.238.7.106\nMessage Wall:180.181.142.241\nMessage Wall:180.191.141.149\nMessage Wall:180.200.142.246\nMessage Wall:180.216.23.53\nMessage Wall:180.222.64.124\nMessage Wall:180.222.68.7\nMessage Wall:180.235.177.150\nMessage Wall:180.245.202.34\nMessage Wall:180.255.248.132\nMessage Wall:180.95.38.138\nMessage Wall:181.114.134.234\nMessage Wall:181.114.141.137\nMessage Wall:181.163.83.163\nMessage Wall:181.167.111.185\nMessage Wall:181.188.72.56\nMessage Wall:181.194.123.180\nMessage Wall:181.194.163.16\nMessage Wall:182.239.134.212\nMessage Wall:182.239.187.143\nMessage Wall:182.239.214.35\nMessage Wall:182.250.248.196\nMessage Wall:182.48.136.214\nMessage Wall:182.48.141.212\nMessage Wall:182.54.220.247\nMessage Wall:182.55.170.85\nMessage Wall:182.55.253.228\nMessage Wall:183.178.236.26\nMessage Wall:183.88.190.239\nMessage Wall:183.89.89.72\nMessage Wall:183.96.153.115\nMessage Wall:183.96.187.33\nMessage Wall:184.0.155.40\nMessage Wall:184.0.77.93\nMessage Wall:184.100.187.9\nMessage Wall:184.105.133.184\nMessage Wall:184.14.108.121\nMessage Wall:184.14.249.114\nMessage Wall:184.145.102.177\nMessage Wall:184.145.188.113\nMessage Wall:184.146.221.107\nMessage Wall:184.146.24.107\nMessage Wall:184.151.61.11\nMessage Wall:184.152.63.26\nMessage Wall:184.155.116.146\nMessage Wall:184.155.171.193\nMessage Wall:184.155.225.168\nMessage Wall:184.158.79.20\nMessage Wall:184.162.101.53\nMessage Wall:184.162.231.241\nMessage Wall:184.166.24.131\nMessage Wall:184.166.55.152\nMessage Wall:184.167.194.78\nMessage Wall:184.17.223.115\nMessage Wall:184.171.138.105\nMessage Wall:184.174.154.14\nMessage Wall:184.175.29.85\nMessage Wall:184.190.205.204\nMessage Wall:184.191.120.50\nMessage Wall:184.21.152.156\nMessage Wall:184.23.209.190\nMessage Wall:184.35.0.215\nMessage Wall:184.5.123.236\nMessage Wall:184.56.163.106\nMessage Wall:184.57.10.24\nMessage Wall:184.57.55.31\nMessage Wall:184.57.97.187\nMessage Wall:184.58.92.41\nMessage Wall:184.59.12.77\nMessage Wall:184.6.29.4\nMessage Wall:184.65.106.238\nMessage Wall:184.68.102.110\nMessage Wall:184.69.29.10\nMessage Wall:184.71.221.118\nMessage Wall:184.73.25.227\nMessage Wall:184.75.223.203\nMessage Wall:184.75.48.122\nMessage Wall:184.89.248.217\nMessage Wall:184.90.54.127\nMessage Wall:184.91.189.54\nMessage Wall:184.96.134.65\nMessage Wall:184.97.75.217\nMessage Wall:184.98.190.163\nMessage Wall:184.99.149.211\nMessage Wall:184.99.152.14\nMessage Wall:184.99.152.22\nMessage Wall:184.99.166.214\nMessage Wall:185.106.189.250\nMessage Wall:185.11.36.41\nMessage Wall:185.110.110.165\nMessage Wall:185.118.249.198\nMessage Wall:185.12.152.254\nMessage Wall:185.12.218.153\nMessage Wall:185.13.72.6\nMessage Wall:185.137.17.32\nMessage Wall:185.137.19.214\nMessage Wall:185.139.124.87\nMessage Wall:185.17.204.136\nMessage Wall:185.22.140.61\nMessage Wall:185.22.141.97\nMessage Wall:185.22.142.72\nMessage Wall:185.22.143.160\nMessage Wall:185.22.143.36\nMessage Wall:185.22.156.97\nMessage Wall:185.24.184.193\nMessage Wall:185.26.182.27\nMessage Wall:185.26.182.31\nMessage Wall:185.26.182.33\nMessage Wall:185.26.182.34\nMessage Wall:185.26.182.38\nMessage Wall:185.26.63.16\nMessage Wall:185.26.63.18\nMessage Wall:185.37.86.5\nMessage Wall:185.37.87.177\nMessage Wall:185.38.220.222\nMessage Wall:185.46.212.65\nMessage Wall:185.46.214.60\nMessage Wall:185.5.225.247\nMessage Wall:185.59.105.30\nMessage Wall:185.60.120.42\nMessage Wall:185.64.40.25\nMessage Wall:185.65.102.78\nMessage Wall:186.105.188.246\nMessage Wall:186.105.241.84\nMessage Wall:186.107.25.68\nMessage Wall:186.120.170.72\nMessage Wall:186.151.60.166\nMessage Wall:186.151.61.166\nMessage Wall:186.151.62.230\nMessage Wall:186.156.119.132\nMessage Wall:186.159.128.33\nMessage Wall:186.159.169.66\nMessage Wall:186.19.130.81\nMessage Wall:186.195.196.106\nMessage Wall:186.204.69.227\nMessage Wall:186.207.111.33\nMessage Wall:186.212.36.171\nMessage Wall:186.22.105.173\nMessage Wall:186.250.245.38\nMessage Wall:186.251.10.193\nMessage Wall:186.251.39.228\nMessage Wall:186.32.180.101\nMessage Wall:186.32.181.205\nMessage Wall:186.4.182.146\nMessage Wall:186.57.165.91\nMessage Wall:186.79.91.193\nMessage Wall:187.112.33.94\nMessage Wall:187.112.97.18\nMessage Wall:187.113.162.252\nMessage Wall:187.14.200.77\nMessage Wall:187.140.249.238\nMessage Wall:187.145.2.231\nMessage Wall:187.159.242.47\nMessage Wall:187.2.245.102\nMessage Wall:187.20.113.181\nMessage Wall:187.21.56.251\nMessage Wall:187.36.171.25\nMessage Wall:187.65.161.226\nMessage Wall:188.100.212.125\nMessage Wall:188.100.233.18\nMessage Wall:188.100.39.173\nMessage Wall:188.102.48.247\nMessage Wall:188.106.79.146\nMessage Wall:188.108.116.100\nMessage Wall:188.108.129.11\nMessage Wall:188.108.149.6\nMessage Wall:188.109.14.193\nMessage Wall:188.109.92.72\nMessage Wall:188.11.218.77\nMessage Wall:188.113.75.47\nMessage Wall:188.114.154.64\nMessage Wall:188.120.171.65\nMessage Wall:188.121.0.13\nMessage Wall:188.122.20.100\nMessage Wall:188.122.20.101\nMessage Wall:188.124.149.80\nMessage Wall:188.126.160.72\nMessage Wall:188.126.160.87\nMessage Wall:188.126.161.29\nMessage Wall:188.126.168.102\nMessage Wall:188.126.168.223\nMessage Wall:188.126.169.196\nMessage Wall:188.126.171.68\nMessage Wall:188.126.172.133\nMessage Wall:188.126.175.130\nMessage Wall:188.126.178.121\nMessage Wall:188.126.181.53\nMessage Wall:188.129.50.137\nMessage Wall:188.130.179.100\nMessage Wall:188.141.117.42\nMessage Wall:188.142.191.21\nMessage Wall:188.143.127.86\nMessage Wall:188.143.234.100\nMessage Wall:188.146.104.140\nMessage Wall:188.146.108.111\nMessage Wall:188.146.131.47\nMessage Wall:188.146.66.194\nMessage Wall:188.153.120.104\nMessage Wall:188.173.22.17\nMessage Wall:188.174.168.28\nMessage Wall:188.174.176.64\nMessage Wall:188.174.188.124\nMessage Wall:188.174.194.208\nMessage Wall:188.174.195.240\nMessage Wall:188.174.206.81\nMessage Wall:188.174.207.36\nMessage Wall:188.174.212.19\nMessage Wall:188.176.126.19\nMessage Wall:188.177.3.159\nMessage Wall:188.178.76.46\nMessage Wall:188.180.248.201\nMessage Wall:188.180.252.228\nMessage Wall:188.181.94.5\nMessage Wall:188.183.137.132\nMessage Wall:188.183.141.20\nMessage Wall:188.187.21.167\nMessage Wall:188.192.138.38\nMessage Wall:188.192.57.242\nMessage Wall:188.193.168.11\nMessage Wall:188.193.191.31\nMessage Wall:188.193.241.140\nMessage Wall:188.193.247.253\nMessage Wall:188.193.98.160\nMessage Wall:188.195.156.7\nMessage Wall:188.195.203.8\nMessage Wall:188.195.35.116\nMessage Wall:188.2.7.104\nMessage Wall:188.203.163.36\nMessage Wall:188.203.204.194\nMessage Wall:188.210.31.145\nMessage Wall:188.210.57.40\nMessage Wall:188.220.194.51\nMessage Wall:188.220.232.197\nMessage Wall:188.220.234.132\nMessage Wall:188.220.248.122\nMessage Wall:188.220.80.216\nMessage Wall:188.221.20.99\nMessage Wall:188.221.222.222\nMessage Wall:188.221.48.172\nMessage Wall:188.222.111.139\nMessage Wall:188.222.179.99\nMessage Wall:188.222.244.54\nMessage Wall:188.222.49.193\nMessage Wall:188.223.218.29\nMessage Wall:188.223.30.185\nMessage Wall:188.226.83.176\nMessage Wall:188.228.47.87\nMessage Wall:188.23.183.4\nMessage Wall:188.230.130.164\nMessage Wall:188.238.138.136\nMessage Wall:188.238.155.142\nMessage Wall:188.238.155.231\nMessage Wall:188.238.155.36\nMessage Wall:188.238.158.157\nMessage Wall:188.238.158.174\nMessage Wall:188.238.166.202\nMessage Wall:188.238.167.43\nMessage Wall:188.238.171.97\nMessage Wall:188.238.176.75\nMessage Wall:188.238.182.141\nMessage Wall:188.238.187.9\nMessage Wall:188.238.189.126\nMessage Wall:188.238.215.57\nMessage Wall:188.238.223.78\nMessage Wall:188.238.245.196\nMessage Wall:188.238.255.177\nMessage Wall:188.238.41.137\nMessage Wall:188.238.85.199\nMessage Wall:188.24.24.111\nMessage Wall:188.242.248.114\nMessage Wall:188.25.158.251\nMessage Wall:188.25.182.226\nMessage Wall:188.251.171.157\nMessage Wall:188.29.165.130\nMessage Wall:188.29.165.183\nMessage Wall:188.29.165.224\nMessage Wall:188.29.165.240\nMessage Wall:188.31.167.158\nMessage Wall:188.31.189.224\nMessage Wall:188.32.216.237\nMessage Wall:188.35.176.90\nMessage Wall:188.36.206.214\nMessage Wall:188.36.217.20\nMessage Wall:188.36.53.220\nMessage Wall:188.39.102.212\nMessage Wall:188.39.46.202\nMessage Wall:188.39.84.242\nMessage Wall:188.50.221.150\nMessage Wall:188.6.127.180\nMessage Wall:188.62.164.216\nMessage Wall:188.66.92.187\nMessage Wall:188.67.96.209\nMessage Wall:188.80.254.87\nMessage Wall:188.85.253.109\nMessage Wall:188.94.18.118\nMessage Wall:188.97.173.120\nMessage Wall:188.98.168.5\nMessage Wall:188.99.201.202\nMessage Wall:189.100.155.248\nMessage Wall:189.140.212.225\nMessage Wall:189.155.75.226\nMessage Wall:189.158.172.188\nMessage Wall:189.163.115.183\nMessage Wall:189.173.224.107\nMessage Wall:189.19.204.5\nMessage Wall:189.209.12.84\nMessage Wall:189.212.246.169\nMessage Wall:189.217.190.94\nMessage Wall:189.219.101.153\nMessage Wall:189.219.80.74\nMessage Wall:189.224.164.194\nMessage Wall:189.228.228.70\nMessage Wall:189.234.227.120\nMessage Wall:189.27.189.28\nMessage Wall:189.27.190.79\nMessage Wall:189.27.54.58\nMessage Wall:189.32.236.141\nMessage Wall:189.34.74.71\nMessage Wall:189.35.4.75\nMessage Wall:189.4.18.48\nMessage Wall:189.5.217.108\nMessage Wall:189.54.54.254\nMessage Wall:189.6.24.101\nMessage Wall:189.60.168.130\nMessage Wall:189.60.17.128\nMessage Wall:189.68.132.40\nMessage Wall:189.69.55.194\nMessage Wall:189.83.141.137\nMessage Wall:190.128.145.78\nMessage Wall:190.138.225.54\nMessage Wall:190.148.39.244\nMessage Wall:190.153.193.211\nMessage Wall:190.155.132.151\nMessage Wall:190.158.21.46\nMessage Wall:190.166.158.149\nMessage Wall:190.19.191.125\nMessage Wall:190.196.70.196\nMessage Wall:190.215.67.197\nMessage Wall:190.215.81.195\nMessage Wall:190.215.88.0\nMessage Wall:190.226.145.245\nMessage Wall:190.233.202.156\nMessage Wall:190.240.46.181\nMessage Wall:191.113.140.151\nMessage Wall:191.113.192.202\nMessage Wall:191.114.103.217\nMessage Wall:191.114.75.73\nMessage Wall:191.181.166.20\nMessage Wall:191.183.180.80\nMessage Wall:191.185.162.75\nMessage Wall:191.185.166.120\nMessage Wall:191.190.58.251\nMessage Wall:191.250.7.161\nMessage Wall:191.33.37.85\nMessage Wall:191.33.9.89\nMessage Wall:192.0.135.169\nMessage Wall:192.0.147.104\nMessage Wall:192.0.187.165\nMessage Wall:192.0.221.241\nMessage Wall:192.0.247.123\nMessage Wall:192.0.249.245\nMessage Wall:192.107.246.114\nMessage Wall:192.117.103.21\nMessage Wall:192.119.43.231\nMessage Wall:192.136.161.156\nMessage Wall:192.136.161.217\nMessage Wall:192.136.161.248\nMessage Wall:192.136.161.33\nMessage Wall:192.136.161.52\nMessage Wall:192.136.161.6\nMessage Wall:192.136.172.214\nMessage Wall:192.136.172.239\nMessage Wall:192.136.172.78\nMessage Wall:192.136.172.90\nMessage Wall:192.136.173.19\nMessage Wall:192.136.173.202\nMessage Wall:192.136.173.221\nMessage Wall:192.136.173.223\nMessage Wall:192.136.174.139\nMessage Wall:192.136.174.152\nMessage Wall:192.136.174.182\nMessage Wall:192.136.175.137\nMessage Wall:192.136.175.219\nMessage Wall:192.136.175.90\nMessage Wall:192.152.130.14\nMessage Wall:192.153.117.58\nMessage Wall:192.154.150.110\nMessage Wall:192.160.165.63\nMessage Wall:192.171.35.254\nMessage Wall:192.173.144.3\nMessage Wall:192.182.136.100\nMessage Wall:192.182.188.165\nMessage Wall:192.183.13.221\nMessage Wall:192.185.1.20\nMessage Wall:192.189.29.41\nMessage Wall:192.190.108.35\nMessage Wall:192.193.216.150\nMessage Wall:192.195.82.250\nMessage Wall:192.198.151.36\nMessage Wall:192.198.151.43\nMessage Wall:192.198.151.44\nMessage Wall:192.198.243.214\nMessage Wall:192.198.3.161\nMessage Wall:192.208.253.226\nMessage Wall:192.245.50.52\nMessage Wall:192.249.129.178\nMessage Wall:192.31.105.173\nMessage Wall:192.31.106.34\nMessage Wall:192.31.106.35\nMessage Wall:192.31.106.36\nMessage Wall:192.33.99.8\nMessage Wall:192.35.35.34\nMessage Wall:192.35.35.35\nMessage Wall:192.35.35.36\nMessage Wall:192.38.33.17\nMessage Wall:192.70.164.4\nMessage Wall:192.73.243.67\nMessage Wall:192.91.171.34\nMessage Wall:192.91.171.36\nMessage Wall:192.91.171.42\nMessage Wall:192.91.173.36\nMessage Wall:192.92.94.23\nMessage Wall:193.104.162.7\nMessage Wall:193.105.140.131\nMessage Wall:193.109.254.20\nMessage Wall:193.11.161.135\nMessage Wall:193.127.200.51\nMessage Wall:193.128.72.68\nMessage Wall:193.128.72.93\nMessage Wall:193.14.9.74\nMessage Wall:193.143.55.47\nMessage Wall:193.150.37.193\nMessage Wall:193.151.43.42\nMessage Wall:193.153.133.153\nMessage Wall:193.157.243.28\nMessage Wall:193.159.88.176\nMessage Wall:193.164.115.226\nMessage Wall:193.164.143.246\nMessage Wall:193.17.248.26\nMessage Wall:193.170.225.224\nMessage Wall:193.191.248.132\nMessage Wall:193.197.148.126\nMessage Wall:193.210.65.90\nMessage Wall:193.214.110.179\nMessage Wall:193.240.114.29\nMessage Wall:193.242.212.50\nMessage Wall:193.28.100.140\nMessage Wall:193.28.249.15\nMessage Wall:193.37.181.249\nMessage Wall:193.38.100.250\nMessage Wall:193.45.118.180\nMessage Wall:193.45.118.57\nMessage Wall:193.48.130.135\nMessage Wall:193.48.172.167\nMessage Wall:193.5.216.100\nMessage Wall:193.54.109.8\nMessage Wall:193.60.81.1\nMessage Wall:193.60.81.2\nMessage Wall:193.61.219.169\nMessage Wall:193.62.202.242\nMessage Wall:193.67.113.2\nMessage Wall:193.71.162.120\nMessage Wall:193.80.24.237\nMessage Wall:193.80.26.67\nMessage Wall:193.80.85.194\nMessage Wall:193.87.169.198\nMessage Wall:193.92.155.157\nMessage Wall:194.105.113.182\nMessage Wall:194.106.220.84\nMessage Wall:194.106.220.86\nMessage Wall:194.127.218.10\nMessage Wall:194.127.8.30\nMessage Wall:194.138.12.165\nMessage Wall:194.138.39.55\nMessage Wall:194.14.58.11\nMessage Wall:194.149.26.9\nMessage Wall:194.154.22.38\nMessage Wall:194.166.17.252\nMessage Wall:194.168.188.147\nMessage Wall:194.168.195.30\nMessage Wall:194.17.253.84\nMessage Wall:194.176.105.141\nMessage Wall:194.176.105.150\nMessage Wall:194.176.105.168\nMessage Wall:194.176.105.169\nMessage Wall:194.176.222.229\nMessage Wall:194.183.136.101\nMessage Wall:194.187.32.1\nMessage Wall:194.187.75.138\nMessage Wall:194.19.160.159\nMessage Wall:194.203.180.193\nMessage Wall:194.208.220.74\nMessage Wall:194.209.82.254\nMessage Wall:194.22.238.75\nMessage Wall:194.230.159.193\nMessage Wall:194.249.247.166\nMessage Wall:194.25.30.9\nMessage Wall:194.255.35.135\nMessage Wall:194.28.15.6\nMessage Wall:194.28.16.21\nMessage Wall:194.32.49.218\nMessage Wall:194.39.218.10\nMessage Wall:194.50.240.42\nMessage Wall:194.50.240.44\nMessage Wall:194.6.174.10\nMessage Wall:194.61.48.251\nMessage Wall:194.61.48.66\nMessage Wall:194.66.77.213\nMessage Wall:194.66.77.9\nMessage Wall:194.68.56.33\nMessage Wall:194.74.142.50\nMessage Wall:194.74.159.228\nMessage Wall:194.78.222.137\nMessage Wall:194.80.144.240\nMessage Wall:194.81.212.225\nMessage Wall:194.81.60.163\nMessage Wall:194.83.236.250\nMessage Wall:194.83.80.2\nMessage Wall:194.9.234.11\nMessage Wall:194.98.70.135\nMessage Wall:194.98.70.140\nMessage Wall:195.1.184.62\nMessage Wall:195.10.41.13\nMessage Wall:195.102.209.14\nMessage Wall:195.128.129.199\nMessage Wall:195.128.129.200\nMessage Wall:195.13.179.196\nMessage Wall:195.132.236.24\nMessage Wall:195.135.221.2\nMessage Wall:195.137.194.64\nMessage Wall:195.137.64.78\nMessage Wall:195.14.166.210\nMessage Wall:195.142.204.145\nMessage Wall:195.147.67.21\nMessage Wall:195.147.94.126\nMessage Wall:195.148.239.161\nMessage Wall:195.158.183.174\nMessage Wall:195.159.161.180\nMessage Wall:195.160.233.253\nMessage Wall:195.166.158.100\nMessage Wall:195.169.10.12\nMessage Wall:195.169.157.177\nMessage Wall:195.169.9.147\nMessage Wall:195.169.9.154\nMessage Wall:195.174.198.5\nMessage Wall:195.177.74.226\nMessage Wall:195.178.236.152\nMessage Wall:195.188.150.130\nMessage Wall:195.188.174.32\nMessage Wall:195.189.11.41\nMessage Wall:195.189.180.41\nMessage Wall:195.189.180.51\nMessage Wall:195.189.180.57\nMessage Wall:195.189.180.61\nMessage Wall:195.194.161.210\nMessage Wall:195.194.196.233\nMessage Wall:195.195.152.11\nMessage Wall:195.198.127.39\nMessage Wall:195.198.228.61\nMessage Wall:195.199.238.222\nMessage Wall:195.200.70.54\nMessage Wall:195.212.29.173\nMessage Wall:195.212.29.86\nMessage Wall:195.214.190.204\nMessage Wall:195.221.155.11\nMessage Wall:195.240.108.48\nMessage Wall:195.240.253.20\nMessage Wall:195.243.28.250\nMessage Wall:195.249.188.149\nMessage Wall:195.250.50.47\nMessage Wall:195.36.120.125\nMessage Wall:195.38.110.174\nMessage Wall:195.41.9.194\nMessage Wall:195.59.159.33\nMessage Wall:195.70.101.49\nMessage Wall:195.74.51.133\nMessage Wall:195.81.98.113\nMessage Wall:195.82.39.15\nMessage Wall:195.83.187.154\nMessage Wall:195.99.90.238\nMessage Wall:196.204.160.79\nMessage Wall:196.210.42.166\nMessage Wall:196.212.150.147\nMessage Wall:196.212.83.221\nMessage Wall:196.215.116.204\nMessage Wall:196.215.14.191\nMessage Wall:196.215.48.33\nMessage Wall:196.52.84.42\nMessage Wall:197.176.61.194\nMessage Wall:197.242.203.101\nMessage Wall:197.79.9.107\nMessage Wall:197.87.94.162\nMessage Wall:197.88.21.75\nMessage Wall:198.105.210.248\nMessage Wall:198.105.28.77\nMessage Wall:198.135.125.43\nMessage Wall:198.14.232.205\nMessage Wall:198.146.57.1\nMessage Wall:198.166.16.161\nMessage Wall:198.166.31.216\nMessage Wall:198.178.56.27\nMessage Wall:198.189.200.184\nMessage Wall:198.2.64.100\nMessage Wall:198.2.64.117\nMessage Wall:198.200.77.251\nMessage Wall:198.203.175.175\nMessage Wall:198.210.116.14\nMessage Wall:198.23.71.119\nMessage Wall:198.24.5.13\nMessage Wall:198.254.196.127\nMessage Wall:198.255.148.249\nMessage Wall:198.37.240.132\nMessage Wall:198.45.221.26\nMessage Wall:198.47.45.197\nMessage Wall:198.48.235.150\nMessage Wall:198.53.171.101\nMessage Wall:198.53.185.172\nMessage Wall:198.84.137.41\nMessage Wall:198.84.166.37\nMessage Wall:198.84.188.212\nMessage Wall:198.84.192.202\nMessage Wall:198.84.196.226\nMessage Wall:198.84.211.211\nMessage Wall:198.84.247.150\nMessage Wall:198.85.229.3\nMessage Wall:198.91.178.90\nMessage Wall:199.101.142.18\nMessage Wall:199.115.89.26\nMessage Wall:199.116.114.74\nMessage Wall:199.125.14.2\nMessage Wall:199.126.149.93\nMessage Wall:199.16.178.82\nMessage Wall:199.164.58.10\nMessage Wall:199.167.119.37\nMessage Wall:199.168.78.182\nMessage Wall:199.18.155.146\nMessage Wall:199.185.233.5\nMessage Wall:199.19.94.193\nMessage Wall:199.190.10.27\nMessage Wall:199.192.172.166\nMessage Wall:199.200.107.93\nMessage Wall:199.201.64.129\nMessage Wall:199.201.65.2\nMessage Wall:199.202.104.234\nMessage Wall:199.21.88.182\nMessage Wall:199.212.86.77\nMessage Wall:199.227.62.202\nMessage Wall:199.231.118.208\nMessage Wall:199.231.28.240\nMessage Wall:199.241.212.253\nMessage Wall:199.243.220.221\nMessage Wall:199.30.121.97\nMessage Wall:199.30.184.194\nMessage Wall:199.30.185.242\nMessage Wall:199.30.187.243\nMessage Wall:199.33.103.87\nMessage Wall:199.33.135.210\nMessage Wall:199.33.98.139\nMessage Wall:199.48.196.21\nMessage Wall:199.60.19.55\nMessage Wall:199.64.0.252\nMessage Wall:199.64.0.254\nMessage Wall:199.66.65.7\nMessage Wall:199.67.131.148\nMessage Wall:199.7.157.113\nMessage Wall:199.89.180.254\nMessage Wall:199.91.130.102\nMessage Wall:199.96.186.39\nMessage Wall:199.96.245.119\nMessage Wall:1bazr1\nMessage Wall:1geek2many\nMessage Wall:1mirg\nMessage Wall:2.100.41.160\nMessage Wall:2.101.122.1\nMessage Wall:2.101.226.149\nMessage Wall:2.101.240.90\nMessage Wall:2.101.39.74\nMessage Wall:2.101.93.89\nMessage Wall:2.102.69.132\nMessage Wall:2.103.144.83\nMessage Wall:2.103.34.194\nMessage Wall:2.103.94.131\nMessage Wall:2.107.239.233\nMessage Wall:2.108.204.55\nMessage Wall:2.108.218.116\nMessage Wall:2.109.200.229\nMessage Wall:2.110.92.78\nMessage Wall:2.111.66.150\nMessage Wall:2.120.186.137\nMessage Wall:2.120.195.215\nMessage Wall:2.120.197.0\nMessage Wall:2.121.180.154\nMessage Wall:2.121.50.58\nMessage Wall:2.121.88.207\nMessage Wall:2.122.28.96\nMessage Wall:2.122.97.54\nMessage Wall:2.123.24.85\nMessage Wall:2.123.36.185\nMessage Wall:2.123.39.3\nMessage Wall:2.123.73.219\nMessage Wall:2.124.162.136\nMessage Wall:2.124.17.171\nMessage Wall:2.125.136.63\nMessage Wall:2.125.210.222\nMessage Wall:2.125.215.187\nMessage Wall:2.125.235.54\nMessage Wall:2.125.86.129\nMessage Wall:2.126.146.132\nMessage Wall:2.126.168.159\nMessage Wall:2.126.225.191\nMessage Wall:2.126.247.125\nMessage Wall:2.126.94.7\nMessage Wall:2.127.116.18\nMessage Wall:2.127.116.54\nMessage Wall:2.127.48.243\nMessage Wall:2.137.41.181\nMessage Wall:2.138.115.165\nMessage Wall:2.14.111.73\nMessage Wall:2.150.54.185\nMessage Wall:2.155.241.228\nMessage Wall:2.161.173.212\nMessage Wall:2.166.151.12\nMessage Wall:2.2.11.234\nMessage Wall:2.203.87.240\nMessage Wall:2.216.47.167\nMessage Wall:2.217.241.16\nMessage Wall:2.219.107.97\nMessage Wall:2.219.11.77\nMessage Wall:2.219.113.13\nMessage Wall:2.219.191.108\nMessage Wall:2.220.142.183\nMessage Wall:2.220.233.51\nMessage Wall:2.220.52.86\nMessage Wall:2.220.58.42\nMessage Wall:2.221.115.78\nMessage Wall:2.221.147.164\nMessage Wall:2.221.5.236\nMessage Wall:2.222.206.51\nMessage Wall:2.222.52.236\nMessage Wall:2.222.62.136\nMessage Wall:2.222.68.197\nMessage Wall:2.224.7.129\nMessage Wall:2.227.186.218\nMessage Wall:2.229.133.34\nMessage Wall:2.230.164.197\nMessage Wall:2.234.178.38\nMessage Wall:2.234.225.160\nMessage Wall:2.236.111.150\nMessage Wall:2.238.195.28\nMessage Wall:2.24.189.45\nMessage Wall:2.24.218.252\nMessage Wall:2.242.191.169\nMessage Wall:2.247.152.88\nMessage Wall:2.247.161.111\nMessage Wall:2.25.147.238\nMessage Wall:2.25.200.25\nMessage Wall:2.25.200.85\nMessage Wall:2.25.215.32\nMessage Wall:2.25.217.235\nMessage Wall:2.26.233.136\nMessage Wall:2.27.3.235\nMessage Wall:2.27.71.222\nMessage Wall:2.27.91.253\nMessage Wall:2.27.93.99\nMessage Wall:2.28.196.148\nMessage Wall:2.29.101.214\nMessage Wall:2.29.109.231\nMessage Wall:2.29.213.197\nMessage Wall:2.29.213.240\nMessage Wall:2.29.231.8\nMessage Wall:2.29.54.7\nMessage Wall:2.30.11.220\nMessage Wall:2.30.13.227\nMessage Wall:2.30.147.75\nMessage Wall:2.30.224.115\nMessage Wall:2.31.156.17\nMessage Wall:2.31.213.229\nMessage Wall:2.31.35.189\nMessage Wall:2.31.35.239\nMessage Wall:2.31.43.65\nMessage Wall:2.31.46.89\nMessage Wall:2.31.52.255\nMessage Wall:2.31.81.162\nMessage Wall:2.51.69.171\nMessage Wall:2.71.33.124\nMessage Wall:2.8.120.99\nMessage Wall:2.82.24.225\nMessage Wall:2.84.32.80\nMessage Wall:2.85.229.199\nMessage Wall:2.85.231.5\nMessage Wall:2.85.79.178\nMessage Wall:2.86.195.192\nMessage Wall:2.86.195.8\nMessage Wall:2.88.30.244\nMessage Wall:2.96.163.98\nMessage Wall:2.96.213.40\nMessage Wall:2.96.47.38\nMessage Wall:2.97.7.0\nMessage Wall:2.98.152.81\nMessage Wall:2.98.177.184\nMessage Wall:2.99.0.251\nMessage Wall:2.99.218.211\nMessage Wall:2.99.81.233\nMessage Wall:20.133.0.13\nMessage Wall:200.112.19.31\nMessage Wall:200.113.32.182\nMessage Wall:200.125.71.19\nMessage Wall:200.165.164.244\nMessage Wall:200.172.252.68\nMessage Wall:200.85.54.26\nMessage Wall:200.86.48.92\nMessage Wall:2001:16B8:429B:5600:69FB:32EF:B257:D79E\nMessage Wall:2001:16B8:696:8B00:20C3:D41C:704D:4CDD\nMessage Wall:2001:1970:5DD6:9D00:6C16:4F33:323E:8FDA\nMessage Wall:2001:1C05:1200:2600:A495:7B0D:8D9D:89DC\nMessage Wall:2001:44B8:2BE:4704:7090:9E8C:CD46:2507\nMessage Wall:2001:4641:396:0:E4C1:3CAD:79A4:1283\nMessage Wall:2001:48F8:3037:FC2:89E7:CF7C:305E:E68C\nMessage Wall:2001:569:7C25:AB00:2CFC:1965:6D39:2E17\nMessage Wall:2001:8003:2446:AB00:6D36:233A:2572:F731\nMessage Wall:2001:8003:2446:AB00:CD81:C5F5:40D7:7541\nMessage Wall:2001:8003:5514:9900:5C31:9EDF:C08:FE12\nMessage Wall:2003:55:EE1E:99CD:1435:1CC7:EF9C:379E\nMessage Wall:2003:5F:280F:C439:48AB:298A:1BC9:13B2\nMessage Wall:2003:6:2146:6A53:88DD:7984:80B1:1FA1\nMessage Wall:2003:6A:6A07:B11:F536:99CD:3125:F568\nMessage Wall:2003:C6:C3C8:C912:C976:8D8A:6CB8:8129\nMessage Wall:2003:C6:C3D0:5D36:6496:6759:2F90:F82E\nMessage Wall:2003:CC:6BEA:2781:C833:6245:9228:4136\nMessage Wall:2003:DB:13CA:7A00:7910:991E:E75B:42F9\nMessage Wall:2003:DF:23D6:D55A:D938:B836:4121:16A8\nMessage Wall:2003:E4:D3C5:6301:CDC8:3359:3DF2:5AFA\nMessage Wall:201.141.232.193\nMessage Wall:201.153.234.183\nMessage Wall:201.233.2.45\nMessage Wall:201.3.105.98\nMessage Wall:201.34.59.174\nMessage Wall:201.37.232.159\nMessage Wall:201.42.221.230\nMessage Wall:201.47.215.219\nMessage Wall:201.47.227.125\nMessage Wall:201.52.196.217\nMessage Wall:201.7.186.59\nMessage Wall:201.70.169.219\nMessage Wall:201.81.241.117\nMessage Wall:201.82.60.184\nMessage Wall:202.129.184.234\nMessage Wall:202.138.12.126\nMessage Wall:202.141.255.90\nMessage Wall:202.147.46.147\nMessage Wall:202.150.126.163\nMessage Wall:202.156.46.73\nMessage Wall:202.159.181.55\nMessage Wall:202.169.246.120\nMessage Wall:202.171.160.184\nMessage Wall:202.171.168.172\nMessage Wall:202.174.174.123\nMessage Wall:202.176.218.100\nMessage Wall:202.177.218.75\nMessage Wall:202.180.70.20\nMessage Wall:202.36.179.100\nMessage Wall:202.36.179.104\nMessage Wall:202.36.179.81\nMessage Wall:202.37.17.68\nMessage Wall:202.45.119.36\nMessage Wall:202.50.0.100\nMessage Wall:202.50.5.100\nMessage Wall:202.59.241.67\nMessage Wall:202.61.133.8\nMessage Wall:202.67.105.187\nMessage Wall:202.72.150.98\nMessage Wall:202.80.212.176\nMessage Wall:202.80.212.204\nMessage Wall:202.89.167.243\nMessage Wall:202.90.82.184\nMessage Wall:202.94.72.27\nMessage Wall:203.104.11.24\nMessage Wall:203.104.11.27\nMessage Wall:203.106.113.203\nMessage Wall:203.116.187.1\nMessage Wall:203.129.54.34\nMessage Wall:203.129.55.114\nMessage Wall:203.14.52.144\nMessage Wall:203.14.52.145\nMessage Wall:203.147.101.16\nMessage Wall:203.161.76.104\nMessage Wall:203.161.94.78\nMessage Wall:203.168.58.34\nMessage Wall:203.171.54.38\nMessage Wall:203.173.179.166\nMessage Wall:203.173.249.98\nMessage Wall:203.173.29.85\nMessage Wall:203.179.90.205\nMessage Wall:203.184.21.43\nMessage Wall:203.185.180.236\nMessage Wall:203.185.180.254\nMessage Wall:203.194.11.73\nMessage Wall:203.201.225.211\nMessage Wall:203.206.122.242\nMessage Wall:203.206.20.249\nMessage Wall:203.206.233.232\nMessage Wall:203.206.35.105\nMessage Wall:203.206.5.115\nMessage Wall:203.213.49.147\nMessage Wall:203.214.128.236\nMessage Wall:203.214.82.38\nMessage Wall:203.217.12.146\nMessage Wall:203.217.30.55\nMessage Wall:203.217.38.58\nMessage Wall:203.218.79.92\nMessage Wall:203.219.228.189\nMessage Wall:203.221.210.40\nMessage Wall:203.40.33.160\nMessage Wall:203.45.151.71\nMessage Wall:203.56.22.126\nMessage Wall:203.57.208.193\nMessage Wall:203.59.108.3\nMessage Wall:203.59.210.118\nMessage Wall:203.59.6.220\nMessage Wall:203.62.211.6\nMessage Wall:203.7.13.252\nMessage Wall:203.7.75.205\nMessage Wall:203.7.81.23\nMessage Wall:203.7.85.87\nMessage Wall:203.7.97.135\nMessage Wall:203.79.101.78\nMessage Wall:203.86.204.36\nMessage Wall:203.96.200.84\nMessage Wall:204.109.64.68\nMessage Wall:204.11.185.224\nMessage Wall:204.11.209.212\nMessage Wall:204.111.255.79\nMessage Wall:204.112.10.60\nMessage Wall:204.112.23.46\nMessage Wall:204.112.26.121\nMessage Wall:204.112.27.159\nMessage Wall:204.112.29.149\nMessage Wall:204.112.29.249\nMessage Wall:204.112.3.82\nMessage Wall:204.112.34.99\nMessage Wall:204.112.35.135\nMessage Wall:204.112.38.153\nMessage Wall:204.112.38.196\nMessage Wall:204.112.5.230\nMessage Wall:204.112.51.241\nMessage Wall:204.124.18.195\nMessage Wall:204.14.164.166\nMessage Wall:204.152.156.1\nMessage Wall:204.16.232.2\nMessage Wall:204.169.28.106\nMessage Wall:204.17.33.178\nMessage Wall:204.186.195.72\nMessage Wall:204.186.68.102\nMessage Wall:204.187.101.227\nMessage Wall:204.191.154.122\nMessage Wall:204.191.90.246\nMessage Wall:204.209.209.131\nMessage Wall:204.236.115.240\nMessage Wall:204.27.156.147\nMessage Wall:204.40.130.131\nMessage Wall:204.50.199.4\nMessage Wall:204.54.36.245\nMessage Wall:204.75.125.134\nMessage Wall:204.8.193.172\nMessage Wall:204.83.116.180\nMessage Wall:204.89.152.91\nMessage Wall:205.147.237.11\nMessage Wall:205.167.170.20\nMessage Wall:205.167.7.194\nMessage Wall:205.168.48.194\nMessage Wall:205.174.48.3\nMessage Wall:205.197.219.34\nMessage Wall:205.197.242.154\nMessage Wall:205.204.21.78\nMessage Wall:205.206.72.126\nMessage Wall:205.206.90.137\nMessage Wall:205.209.78.180\nMessage Wall:205.210.253.12\nMessage Wall:205.211.112.130\nMessage Wall:205.213.208.86\nMessage Wall:205.222.248.112\nMessage Wall:205.222.248.120\nMessage Wall:205.237.231.50\nMessage Wall:205.57.48.8\nMessage Wall:206.105.116.11\nMessage Wall:206.116.68.11\nMessage Wall:206.125.89.63\nMessage Wall:206.16.224.136\nMessage Wall:206.173.9.66\nMessage Wall:206.174.12.46\nMessage Wall:206.174.199.142\nMessage Wall:206.174.243.110\nMessage Wall:206.174.97.138\nMessage Wall:206.208.187.105\nMessage Wall:206.217.17.47\nMessage Wall:206.251.41.130\nMessage Wall:206.251.43.121\nMessage Wall:206.255.220.148\nMessage Wall:206.255.91.226\nMessage Wall:206.45.38.43\nMessage Wall:206.45.79.199\nMessage Wall:206.47.100.175\nMessage Wall:206.47.101.222\nMessage Wall:206.47.112.138\nMessage Wall:206.47.113.74\nMessage Wall:206.47.136.172\nMessage Wall:206.47.31.116\nMessage Wall:206.47.78.114\nMessage Wall:206.66.66.1\nMessage Wall:206.74.70.134\nMessage Wall:206.75.171.242\nMessage Wall:206.75.19.54\nMessage Wall:206.82.31.8\nMessage Wall:207.155.87.153\nMessage Wall:207.160.119.251\nMessage Wall:207.161.130.75\nMessage Wall:207.161.241.158\nMessage Wall:207.161.84.117\nMessage Wall:207.162.58.3\nMessage Wall:207.163.15.122\nMessage Wall:207.164.60.30\nMessage Wall:207.166.7.215\nMessage Wall:207.172.254.213\nMessage Wall:207.179.224.29\nMessage Wall:207.183.171.49\nMessage Wall:207.190.125.19\nMessage Wall:207.204.86.3\nMessage Wall:207.210.5.180\nMessage Wall:207.216.120.119\nMessage Wall:207.224.177.23\nMessage Wall:207.225.128.74\nMessage Wall:207.235.13.59\nMessage Wall:207.236.193.195\nMessage Wall:207.238.166.68\nMessage Wall:207.244.189.141\nMessage Wall:207.244.74.1\nMessage Wall:207.244.77.2\nMessage Wall:207.244.86.201\nMessage Wall:207.250.60.193\nMessage Wall:207.253.1.70\nMessage Wall:207.253.170.194\nMessage Wall:207.255.249.142\nMessage Wall:207.255.250.241\nMessage Wall:207.30.100.162\nMessage Wall:207.47.204.62\nMessage Wall:207.47.253.237\nMessage Wall:207.6.186.207\nMessage Wall:207.62.149.111\nMessage Wall:207.8.224.2\nMessage Wall:207.81.115.168\nMessage Wall:207.81.17.26\nMessage Wall:207.81.239.2\nMessage Wall:207.87.250.150\nMessage Wall:207.96.211.31\nMessage Wall:208.102.117.12\nMessage Wall:208.103.243.249\nMessage Wall:208.105.248.34\nMessage Wall:208.107.102.40\nMessage Wall:208.107.123.36\nMessage Wall:208.107.223.159\nMessage Wall:208.107.224.24\nMessage Wall:208.108.127.250\nMessage Wall:208.108.212.70\nMessage Wall:208.114.92.134\nMessage Wall:208.118.149.62\nMessage Wall:208.119.81.90\nMessage Wall:208.122.126.194\nMessage Wall:208.125.193.34\nMessage Wall:208.126.217.202\nMessage Wall:208.127.120.49\nMessage Wall:208.127.124.18\nMessage Wall:208.138.31.76\nMessage Wall:208.167.254.205\nMessage Wall:208.180.123.195\nMessage Wall:208.180.216.168\nMessage Wall:208.184.157.62\nMessage Wall:208.38.124.35\nMessage Wall:208.46.188.190\nMessage Wall:208.54.83.137\nMessage Wall:208.54.83.252\nMessage Wall:208.58.127.2\nMessage Wall:208.58.205.146\nMessage Wall:208.58.52.242\nMessage Wall:208.59.132.97\nMessage Wall:208.70.82.22\nMessage Wall:208.74.212.59\nMessage Wall:208.79.244.64\nMessage Wall:208.86.202.10\nMessage Wall:208.87.196.68\nMessage Wall:208.88.170.206\nMessage Wall:208.91.1.34\nMessage Wall:208.92.19.20\nMessage Wall:208.92.20.48\nMessage Wall:208.94.110.50\nMessage Wall:208.95.100.29\nMessage Wall:208.96.73.84\nMessage Wall:209.107.210.64\nMessage Wall:209.112.208.16\nMessage Wall:209.12.67.163\nMessage Wall:209.121.203.45\nMessage Wall:209.129.148.213\nMessage Wall:209.129.241.42\nMessage Wall:209.129.33.10\nMessage Wall:209.132.221.66\nMessage Wall:209.147.144.17\nMessage Wall:209.152.108.167\nMessage Wall:209.159.249.80\nMessage Wall:209.169.196.5\nMessage Wall:209.169.66.112\nMessage Wall:209.17.128.228\nMessage Wall:209.173.14.125\nMessage Wall:209.181.252.33\nMessage Wall:209.183.185.254\nMessage Wall:209.197.138.154\nMessage Wall:209.197.6.182\nMessage Wall:209.203.210.233\nMessage Wall:209.203.31.186\nMessage Wall:209.211.111.130\nMessage Wall:209.217.213.114\nMessage Wall:209.22.221.73\nMessage Wall:209.226.83.236\nMessage Wall:209.23.239.126\nMessage Wall:209.234.187.245\nMessage Wall:209.237.120.80\nMessage Wall:209.242.141.55\nMessage Wall:209.242.141.60\nMessage Wall:209.242.141.63\nMessage Wall:209.242.166.83\nMessage Wall:209.33.126.70\nMessage Wall:209.41.116.253\nMessage Wall:209.41.116.254\nMessage Wall:209.51.65.158\nMessage Wall:209.52.10.218\nMessage Wall:209.54.78.19\nMessage Wall:209.58.128.143\nMessage Wall:209.6.66.7\nMessage Wall:209.63.111.66\nMessage Wall:209.91.107.153\nMessage Wall:209.93.210.112\nMessage Wall:209.93.216.130\nMessage Wall:209.93.47.80\nMessage Wall:209.95.50.102\nMessage Wall:209.95.50.45\nMessage Wall:209.95.50.50\nMessage Wall:210.108.144.17\nMessage Wall:210.124.128.146\nMessage Wall:210.176.194.100\nMessage Wall:210.216.57.205\nMessage Wall:210.246.25.204\nMessage Wall:210.246.50.90\nMessage Wall:210.49.91.112\nMessage Wall:210.50.251.232\nMessage Wall:210.54.38.13\nMessage Wall:210.55.18.198\nMessage Wall:210.55.186.178\nMessage Wall:210.56.68.148\nMessage Wall:210.86.93.108\nMessage Wall:210.94.98.151\nMessage Wall:211.181.144.144\nMessage Wall:211.24.50.45\nMessage Wall:211.26.211.103\nMessage Wall:211.28.46.54\nMessage Wall:211.30.20.175\nMessage Wall:211.33.6.190\nMessage Wall:211.36.156.97\nMessage Wall:212.10.25.166\nMessage Wall:212.111.4.206\nMessage Wall:212.112.149.50\nMessage Wall:212.112.154.177\nMessage Wall:212.114.159.142\nMessage Wall:212.120.229.225\nMessage Wall:212.124.158.255\nMessage Wall:212.124.236.1\nMessage Wall:212.127.204.25\nMessage Wall:212.130.241.198\nMessage Wall:212.130.56.55\nMessage Wall:212.131.148.177\nMessage Wall:212.150.174.180\nMessage Wall:212.159.100.81\nMessage Wall:212.159.112.118\nMessage Wall:212.159.117.21\nMessage Wall:212.159.122.240\nMessage Wall:212.159.184.252\nMessage Wall:212.159.19.208\nMessage Wall:212.159.35.110\nMessage Wall:212.159.46.162\nMessage Wall:212.161.30.62\nMessage Wall:212.167.5.6\nMessage Wall:212.169.36.40\nMessage Wall:212.17.38.148\nMessage Wall:212.178.246.94\nMessage Wall:212.18.176.6\nMessage Wall:212.183.111.145\nMessage Wall:212.183.128.235\nMessage Wall:212.183.140.19\nMessage Wall:212.187.95.37\nMessage Wall:212.193.78.163\nMessage Wall:212.198.117.28\nMessage Wall:212.198.89.104\nMessage Wall:212.200.132.81\nMessage Wall:212.202.64.10\nMessage Wall:212.204.68.178\nMessage Wall:212.205.39.98\nMessage Wall:212.219.240.75\nMessage Wall:212.219.248.132\nMessage Wall:212.219.39.137\nMessage Wall:212.219.49.93\nMessage Wall:212.23.9.210\nMessage Wall:212.241.109.214\nMessage Wall:212.242.247.116\nMessage Wall:212.247.15.114\nMessage Wall:212.250.100.34\nMessage Wall:212.250.169.98\nMessage Wall:212.250.214.3\nMessage Wall:212.250.214.4\nMessage Wall:212.250.214.7\nMessage Wall:212.250.25.118\nMessage Wall:212.251.198.176\nMessage Wall:212.251.53.165\nMessage Wall:212.252.98.10\nMessage Wall:212.253.220.113\nMessage Wall:212.35.27.63\nMessage Wall:212.41.65.33\nMessage Wall:212.42.177.213\nMessage Wall:212.44.18.254\nMessage Wall:212.44.19.62\nMessage Wall:212.50.119.23\nMessage Wall:212.50.133.39\nMessage Wall:212.50.133.62\nMessage Wall:212.51.136.110\nMessage Wall:212.59.37.193\nMessage Wall:212.59.47.2\nMessage Wall:212.60.176.218\nMessage Wall:212.60.33.220\nMessage Wall:212.69.51.71\nMessage Wall:212.85.181.163\nMessage Wall:212.85.88.117\nMessage Wall:212.87.70.130\nMessage Wall:212.93.116.117\nMessage Wall:212.95.12.67\nMessage Wall:212.96.58.244\nMessage Wall:212.97.234.199\nMessage Wall:213.1.249.253\nMessage Wall:213.10.174.205\nMessage Wall:213.10.86.45\nMessage Wall:213.104.129.236\nMessage Wall:213.104.224.122\nMessage Wall:213.104.33.0\nMessage Wall:213.106.113.50\nMessage Wall:213.106.4.221\nMessage Wall:213.106.84.43\nMessage Wall:213.107.112.201\nMessage Wall:213.107.176.22\nMessage Wall:213.112.123.223\nMessage Wall:213.114.128.40\nMessage Wall:213.114.157.12\nMessage Wall:213.114.71.185\nMessage Wall:213.118.129.55\nMessage Wall:213.118.180.216\nMessage Wall:213.118.7.57\nMessage Wall:213.120.234.106\nMessage Wall:213.120.234.109\nMessage Wall:213.120.234.122\nMessage Wall:213.120.234.138\nMessage Wall:213.120.234.146\nMessage Wall:213.120.234.154\nMessage Wall:213.120.94.197\nMessage Wall:213.121.188.130\nMessage Wall:213.122.150.226\nMessage Wall:213.123.224.182\nMessage Wall:213.125.131.226\nMessage Wall:213.125.176.250\nMessage Wall:213.127.233.19\nMessage Wall:213.127.69.182\nMessage Wall:213.127.72.24\nMessage Wall:213.128.183.200\nMessage Wall:213.129.33.126\nMessage Wall:213.134.242.115\nMessage Wall:213.136.0.93\nMessage Wall:213.14.152.246\nMessage Wall:213.14.171.51\nMessage Wall:213.140.68.166\nMessage Wall:213.143.115.81\nMessage Wall:213.144.92.2\nMessage Wall:213.153.91.179\nMessage Wall:213.156.126.64\nMessage Wall:213.162.68.90\nMessage Wall:213.168.177.14\nMessage Wall:213.172.91.229\nMessage Wall:213.174.192.220\nMessage Wall:213.185.226.15\nMessage Wall:213.188.127.173\nMessage Wall:213.204.48.131\nMessage Wall:213.205.194.185\nMessage Wall:213.205.253.124\nMessage Wall:213.206.188.68\nMessage Wall:213.206.237.194\nMessage Wall:213.209.79.173\nMessage Wall:213.21.11.95\nMessage Wall:213.21.33.78\nMessage Wall:213.21.90.11\nMessage Wall:213.211.213.202\nMessage Wall:213.211.214.66\nMessage Wall:213.211.39.65\nMessage Wall:213.219.154.151\nMessage Wall:213.243.175.189\nMessage Wall:213.243.180.79\nMessage Wall:213.246.186.191\nMessage Wall:213.249.140.86\nMessage Wall:213.249.232.33\nMessage Wall:213.251.230.57\nMessage Wall:213.254.131.239\nMessage Wall:213.29.118.223\nMessage Wall:213.32.242.226\nMessage Wall:213.33.10.133\nMessage Wall:213.37.122.67\nMessage Wall:213.39.145.88\nMessage Wall:213.46.119.188\nMessage Wall:213.46.36.137\nMessage Wall:213.47.46.77\nMessage Wall:213.47.57.226\nMessage Wall:213.47.77.205\nMessage Wall:213.47.84.196\nMessage Wall:213.48.137.24\nMessage Wall:213.50.164.1\nMessage Wall:213.65.158.103\nMessage Wall:213.7.33.89\nMessage Wall:213.70.98.2\nMessage Wall:213.80.106.54\nMessage Wall:213.81.131.34\nMessage Wall:213.87.130.203\nMessage Wall:213.87.139.21\nMessage Wall:213.88.27.20\nMessage Wall:213.89.72.142\nMessage Wall:213.93.13.15\nMessage Wall:213.93.179.103\nMessage Wall:213.93.219.126\nMessage Wall:213.93.63.19\nMessage Wall:213.93.75.232\nMessage Wall:216.1.200.2\nMessage Wall:216.10.175.81\nMessage Wall:216.100.91.10\nMessage Wall:216.108.17.126\nMessage Wall:216.108.25.5\nMessage Wall:216.110.194.19\nMessage Wall:216.110.250.95\nMessage Wall:216.113.55.223\nMessage Wall:216.114.50.74\nMessage Wall:216.116.252.50\nMessage Wall:216.121.135.133\nMessage Wall:216.121.216.235\nMessage Wall:216.121.235.144\nMessage Wall:216.128.101.136\nMessage Wall:216.136.13.242\nMessage Wall:216.145.81.17\nMessage Wall:216.146.186.227\nMessage Wall:216.15.113.175\nMessage Wall:216.15.25.248\nMessage Wall:216.154.105.28\nMessage Wall:216.157.200.126\nMessage Wall:216.161.95.133\nMessage Wall:216.164.232.183\nMessage Wall:216.166.20.1\nMessage Wall:216.184.95.100\nMessage Wall:216.185.63.23\nMessage Wall:216.186.217.14\nMessage Wall:216.186.221.149\nMessage Wall:216.203.80.125\nMessage Wall:216.209.229.222\nMessage Wall:216.211.178.8\nMessage Wall:216.221.119.224\nMessage Wall:216.221.88.67\nMessage Wall:216.229.170.227\nMessage Wall:216.229.21.11\nMessage Wall:216.232.238.113\nMessage Wall:216.237.234.29\nMessage Wall:216.246.233.85\nMessage Wall:216.251.21.87\nMessage Wall:216.26.106.82\nMessage Wall:216.36.8.153\nMessage Wall:216.40.73.161\nMessage Wall:216.48.132.138\nMessage Wall:216.58.56.56\nMessage Wall:216.6.241.157\nMessage Wall:216.63.175.7\nMessage Wall:216.67.122.9\nMessage Wall:216.70.8.194\nMessage Wall:216.81.94.70\nMessage Wall:216.82.241.35\nMessage Wall:217.10.128.170\nMessage Wall:217.10.136.229\nMessage Wall:217.103.113.206\nMessage Wall:217.112.168.161\nMessage Wall:217.115.65.19\nMessage Wall:217.115.65.20\nMessage Wall:217.115.65.21\nMessage Wall:217.120.123.160\nMessage Wall:217.120.202.195\nMessage Wall:217.120.238.45\nMessage Wall:217.120.74.73\nMessage Wall:217.121.218.161\nMessage Wall:217.121.233.136\nMessage Wall:217.121.72.88\nMessage Wall:217.122.192.124\nMessage Wall:217.123.142.75\nMessage Wall:217.129.168.245\nMessage Wall:217.13.128.68\nMessage Wall:217.136.39.248\nMessage Wall:217.136.43.223\nMessage Wall:217.140.243.24\nMessage Wall:217.140.245.32\nMessage Wall:217.149.117.196\nMessage Wall:217.150.32.232\nMessage Wall:217.155.43.123\nMessage Wall:217.155.64.19\nMessage Wall:217.156.103.4\nMessage Wall:217.156.156.69\nMessage Wall:217.156.254.68\nMessage Wall:217.162.107.158\nMessage Wall:217.162.181.10\nMessage Wall:217.186.252.218\nMessage Wall:217.187.172.211\nMessage Wall:217.187.175.177\nMessage Wall:217.189.194.33\nMessage Wall:217.19.28.60\nMessage Wall:217.190.184.235\nMessage Wall:217.191.236.40\nMessage Wall:217.196.75.67\nMessage Wall:217.20.16.190\nMessage Wall:217.206.155.18\nMessage Wall:217.206.228.211\nMessage Wall:217.210.64.145\nMessage Wall:217.210.76.238\nMessage Wall:217.211.168.74\nMessage Wall:217.211.174.175\nMessage Wall:217.215.8.123\nMessage Wall:217.225.187.252\nMessage Wall:217.229.134.245\nMessage Wall:217.229.5.33\nMessage Wall:217.230.0.209\nMessage Wall:217.230.21.70\nMessage Wall:217.233.83.192\nMessage Wall:217.233.86.74\nMessage Wall:217.235.224.146\nMessage Wall:217.252.102.76\nMessage Wall:217.252.82.25\nMessage Wall:217.252.85.44\nMessage Wall:217.252.95.185\nMessage Wall:217.253.227.172\nMessage Wall:217.254.28.95\nMessage Wall:217.32.219.178\nMessage Wall:217.32.220.171\nMessage Wall:217.33.115.4\nMessage Wall:217.35.229.250\nMessage Wall:217.37.111.25\nMessage Wall:217.39.204.209\nMessage Wall:217.40.212.138\nMessage Wall:217.42.160.58\nMessage Wall:217.43.112.132\nMessage Wall:217.43.204.232\nMessage Wall:217.44.125.233\nMessage Wall:217.44.204.210\nMessage Wall:217.44.216.116\nMessage Wall:217.44.84.62\nMessage Wall:217.44.97.78\nMessage Wall:217.46.67.248\nMessage Wall:217.50.252.90\nMessage Wall:217.50.98.10\nMessage Wall:217.51.170.54\nMessage Wall:217.51.8.152\nMessage Wall:217.63.51.178\nMessage Wall:217.65.255.64\nMessage Wall:217.65.61.55\nMessage Wall:217.66.152.45\nMessage Wall:217.70.31.116\nMessage Wall:217.71.46.34\nMessage Wall:217.71.47.196\nMessage Wall:217.81.40.63\nMessage Wall:217.82.166.135\nMessage Wall:217.85.199.9\nMessage Wall:217.93.194.161\nMessage Wall:217.95.44.216\nMessage Wall:217.95.83.7\nMessage Wall:217.99.147.137\nMessage Wall:218.101.119.205\nMessage Wall:218.17.252.162\nMessage Wall:218.214.113.193\nMessage Wall:218.214.249.209\nMessage Wall:218.250.142.119\nMessage Wall:218.250.142.212\nMessage Wall:219.74.237.179\nMessage Wall:219.75.109.224\nMessage Wall:220.132.232.79\nMessage Wall:220.135.119.178\nMessage Wall:220.209.22.41\nMessage Wall:220.233.117.211\nMessage Wall:220.233.234.74\nMessage Wall:220.233.29.196\nMessage Wall:220.233.64.162\nMessage Wall:220.233.9.125\nMessage Wall:220.233.98.106\nMessage Wall:220.239.101.22\nMessage Wall:220.239.204.47\nMessage Wall:220.239.44.18\nMessage Wall:220.240.137.235\nMessage Wall:220.240.183.240\nMessage Wall:220.240.202.225\nMessage Wall:220.240.46.165\nMessage Wall:220.244.135.219\nMessage Wall:220.244.217.235\nMessage Wall:220.244.4.162\nMessage Wall:220.244.63.162\nMessage Wall:220.245.157.133\nMessage Wall:220.253.132.197\nMessage Wall:220.253.144.214\nMessage Wall:220.253.45.72\nMessage Wall:221.186.93.139\nMessage Wall:222.129.17.251\nMessage Wall:222.152.164.124\nMessage Wall:222.152.184.197\nMessage Wall:222.153.0.116\nMessage Wall:222.154.73.23\nMessage Wall:222.164.186.79\nMessage Wall:223.205.9.229\nMessage Wall:23.120.124.81\nMessage Wall:23.120.241.110\nMessage Wall:23.121.17.103\nMessage Wall:23.122.214.44\nMessage Wall:23.124.164.188\nMessage Wall:23.125.139.95\nMessage Wall:23.16.106.220\nMessage Wall:23.16.160.165\nMessage Wall:23.16.181.220\nMessage Wall:23.16.196.177\nMessage Wall:23.16.39.137\nMessage Wall:23.17.193.195\nMessage Wall:23.228.175.189\nMessage Wall:23.233.1.213\nMessage Wall:23.233.163.16\nMessage Wall:23.233.68.176\nMessage Wall:23.238.143.242\nMessage Wall:23.241.105.66\nMessage Wall:23.241.88.81\nMessage Wall:23.242.17.242\nMessage Wall:23.242.205.117\nMessage Wall:23.243.104.185\nMessage Wall:23.243.16.10\nMessage Wall:23.243.177.165\nMessage Wall:23.252.54.64\nMessage Wall:23.252.83.195\nMessage Wall:23.255.128.115\nMessage Wall:23.255.141.42\nMessage Wall:23.30.224.246\nMessage Wall:23.31.203.154\nMessage Wall:23.91.239.25\nMessage Wall:23.91.248.232\nMessage Wall:23.97.229.135\nMessage Wall:24.0.117.57\nMessage Wall:24.1.13.164\nMessage Wall:24.1.7.128\nMessage Wall:24.1.76.43\nMessage Wall:24.10.109.21\nMessage Wall:24.10.133.211\nMessage Wall:24.10.191.78\nMessage Wall:24.10.194.73\nMessage Wall:24.10.201.22\nMessage Wall:24.10.25.42\nMessage Wall:24.100.136.1\nMessage Wall:24.104.70.146\nMessage Wall:24.107.142.252\nMessage Wall:24.107.155.228\nMessage Wall:24.107.187.63\nMessage Wall:24.107.39.228\nMessage Wall:24.108.196.243\nMessage Wall:24.11.28.110\nMessage Wall:24.111.74.158\nMessage Wall:24.113.13.224\nMessage Wall:24.113.165.151\nMessage Wall:24.113.174.125\nMessage Wall:24.114.48.123\nMessage Wall:24.114.57.133\nMessage Wall:24.114.59.162\nMessage Wall:24.114.70.156\nMessage Wall:24.114.71.238\nMessage Wall:24.115.208.231\nMessage Wall:24.115.98.51\nMessage Wall:24.116.55.17\nMessage Wall:24.117.186.113\nMessage Wall:24.117.207.202\nMessage Wall:24.118.211.245\nMessage Wall:24.118.224.118\nMessage Wall:24.118.47.100\nMessage Wall:24.119.117.98\nMessage Wall:24.119.176.226\nMessage Wall:24.119.212.227\nMessage Wall:24.12.76.250\nMessage Wall:24.120.35.36\nMessage Wall:24.121.100.115\nMessage Wall:24.124.110.192\nMessage Wall:24.124.121.106\nMessage Wall:24.124.77.87\nMessage Wall:24.124.95.123\nMessage Wall:24.125.1.107\nMessage Wall:24.125.101.86\nMessage Wall:24.126.215.37\nMessage Wall:24.127.206.107\nMessage Wall:24.127.85.0\nMessage Wall:24.129.88.88\nMessage Wall:24.130.129.205\nMessage Wall:24.130.147.167\nMessage Wall:24.130.227.94\nMessage Wall:24.132.173.88\nMessage Wall:24.132.70.227\nMessage Wall:24.138.177.246\nMessage Wall:24.138.43.83\nMessage Wall:24.138.8.129\nMessage Wall:24.14.175.130\nMessage Wall:24.14.215.87\nMessage Wall:24.140.113.193\nMessage Wall:24.141.225.61\nMessage Wall:24.142.245.178\nMessage Wall:24.142.56.53\nMessage Wall:24.143.11.128\nMessage Wall:24.143.228.149\nMessage Wall:24.144.159.100\nMessage Wall:24.146.166.2\nMessage Wall:24.147.83.175\nMessage Wall:24.148.56.29\nMessage Wall:24.15.53.43\nMessage Wall:24.150.197.201\nMessage Wall:24.150.6.12\nMessage Wall:24.150.97.53\nMessage Wall:24.151.145.58\nMessage Wall:24.152.220.130\nMessage Wall:24.152.223.103\nMessage Wall:24.155.103.119\nMessage Wall:24.156.172.86\nMessage Wall:24.156.204.195\nMessage Wall:24.156.242.133\nMessage Wall:24.157.191.151\nMessage Wall:24.157.60.34\nMessage Wall:24.158.117.145\nMessage Wall:24.158.246.199\nMessage Wall:24.158.83.238\nMessage Wall:24.159.216.8\nMessage Wall:24.16.11.207\nMessage Wall:24.16.173.126\nMessage Wall:24.16.62.241\nMessage Wall:24.16.82.73\nMessage Wall:24.161.66.185\nMessage Wall:24.162.160.70\nMessage Wall:24.162.70.89\nMessage Wall:24.163.1.216\nMessage Wall:24.166.111.32\nMessage Wall:24.166.40.71\nMessage Wall:24.17.42.64\nMessage Wall:24.17.81.158\nMessage Wall:24.171.42.116\nMessage Wall:24.176.141.54\nMessage Wall:24.176.151.50\nMessage Wall:24.176.238.197\nMessage Wall:24.177.200.153\nMessage Wall:24.177.242.154\nMessage Wall:24.178.26.241\nMessage Wall:24.179.184.62\nMessage Wall:24.179.244.193\nMessage Wall:24.179.67.65\nMessage Wall:24.18.105.176\nMessage Wall:24.18.127.9\nMessage Wall:24.18.40.26\nMessage Wall:24.181.180.48\nMessage Wall:24.182.67.163\nMessage Wall:24.183.157.142\nMessage Wall:24.183.99.192\nMessage Wall:24.184.10.22\nMessage Wall:24.184.10.253\nMessage Wall:24.184.11.243\nMessage Wall:24.184.12.11\nMessage Wall:24.184.12.72\nMessage Wall:24.184.128.45\nMessage Wall:24.184.13.211\nMessage Wall:24.184.15.59\nMessage Wall:24.184.201.104\nMessage Wall:24.185.107.228\nMessage Wall:24.185.253.30\nMessage Wall:24.187.9.187\nMessage Wall:24.188.190.253\nMessage Wall:24.188.236.157\nMessage Wall:24.19.28.2\nMessage Wall:24.190.10.43\nMessage Wall:24.191.104.87\nMessage Wall:24.191.124.26\nMessage Wall:24.192.77.112\nMessage Wall:24.193.49.116\nMessage Wall:24.194.3.246\nMessage Wall:24.194.8.71\nMessage Wall:24.196.130.95\nMessage Wall:24.196.238.21\nMessage Wall:24.197.108.99\nMessage Wall:24.2.111.151\nMessage Wall:24.2.204.233\nMessage Wall:24.20.104.8\nMessage Wall:24.20.112.112\nMessage Wall:24.20.226.246\nMessage Wall:24.20.243.71\nMessage Wall:24.20.5.143\nMessage Wall:24.201.40.95\nMessage Wall:24.202.53.65\nMessage Wall:24.203.146.3\nMessage Wall:24.203.178.91\nMessage Wall:24.203.68.225\nMessage Wall:24.204.162.205\nMessage Wall:24.207.184.54\nMessage Wall:24.207.194.94\nMessage Wall:24.207.59.87\nMessage Wall:24.209.105.251\nMessage Wall:24.209.65.95\nMessage Wall:24.21.222.176\nMessage Wall:24.21.33.55\nMessage Wall:24.21.83.22\nMessage Wall:24.21.84.97\nMessage Wall:24.211.170.178\nMessage Wall:24.212.10.175\nMessage Wall:24.212.136.210\nMessage Wall:24.212.248.42\nMessage Wall:24.213.104.2\nMessage Wall:24.216.150.212\nMessage Wall:24.216.188.246\nMessage Wall:24.217.94.175\nMessage Wall:24.218.184.200\nMessage Wall:24.22.22.97\nMessage Wall:24.22.27.163\nMessage Wall:24.22.34.138\nMessage Wall:24.22.49.121\nMessage Wall:24.22.91.126\nMessage Wall:24.223.203.14\nMessage Wall:24.224.226.237\nMessage Wall:24.225.119.133\nMessage Wall:24.225.29.221\nMessage Wall:24.228.138.199\nMessage Wall:24.228.248.215\nMessage Wall:24.229.105.74\nMessage Wall:24.229.197.56\nMessage Wall:24.23.137.133\nMessage Wall:24.23.253.235\nMessage Wall:24.230.225.107\nMessage Wall:24.230.56.254\nMessage Wall:24.233.225.101\nMessage Wall:24.233.227.195\nMessage Wall:24.233.46.168\nMessage Wall:24.234.123.18\nMessage Wall:24.236.252.224\nMessage Wall:24.236.70.30\nMessage Wall:24.236.77.192\nMessage Wall:24.237.217.23\nMessage Wall:24.237.250.116\nMessage Wall:24.237.90.245\nMessage Wall:24.237.93.59\nMessage Wall:24.238.18.68\nMessage Wall:24.239.111.33\nMessage Wall:24.239.249.103\nMessage Wall:24.239.58.122\nMessage Wall:24.239.93.107\nMessage Wall:24.240.107.212\nMessage Wall:24.240.67.75\nMessage Wall:24.241.226.23\nMessage Wall:24.242.105.203\nMessage Wall:24.242.111.9\nMessage Wall:24.242.80.8\nMessage Wall:24.243.230.171\nMessage Wall:24.243.60.217\nMessage Wall:24.243.61.132\nMessage Wall:24.243.62.225\nMessage Wall:24.244.104.21\nMessage Wall:24.246.118.194\nMessage Wall:24.246.224.201\nMessage Wall:24.246.5.87\nMessage Wall:24.249.188.120\nMessage Wall:24.250.1.3\nMessage Wall:24.250.255.219\nMessage Wall:24.251.2.89\nMessage Wall:24.251.226.202\nMessage Wall:24.252.201.131\nMessage Wall:24.253.12.114\nMessage Wall:24.253.215.39\nMessage Wall:24.253.218.93\nMessage Wall:24.253.75.17\nMessage Wall:24.254.228.215\nMessage Wall:24.255.168.35\nMessage Wall:24.255.174.30\nMessage Wall:24.255.176.40\nMessage Wall:24.255.208.127\nMessage Wall:24.255.219.97\nMessage Wall:24.27.36.71\nMessage Wall:24.27.75.33\nMessage Wall:24.28.12.120\nMessage Wall:24.28.32.193\nMessage Wall:24.3.218.232\nMessage Wall:24.3.229.5\nMessage Wall:24.32.157.174\nMessage Wall:24.32.70.54\nMessage Wall:24.34.193.63\nMessage Wall:24.34.224.101\nMessage Wall:24.36.7.27\nMessage Wall:24.38.130.34\nMessage Wall:24.4.216.147\nMessage Wall:24.4.32.238\nMessage Wall:24.40.167.11\nMessage Wall:24.42.137.185\nMessage Wall:24.44.123.201\nMessage Wall:24.45.89.88\nMessage Wall:24.45.93.5\nMessage Wall:24.46.248.176\nMessage Wall:24.46.26.36\nMessage Wall:24.48.175.154\nMessage Wall:24.48.202.38\nMessage Wall:24.49.128.15\nMessage Wall:24.49.208.114\nMessage Wall:24.49.255.218\nMessage Wall:24.49.36.39\nMessage Wall:24.50.1.194\nMessage Wall:24.50.147.130\nMessage Wall:24.50.152.197\nMessage Wall:24.50.5.91\nMessage Wall:24.51.209.179\nMessage Wall:24.53.244.177\nMessage Wall:24.53.244.69\nMessage Wall:24.54.133.217\nMessage Wall:24.55.13.173\nMessage Wall:24.55.227.59\nMessage Wall:24.55.29.116\nMessage Wall:24.56.240.19\nMessage Wall:24.56.242.42\nMessage Wall:24.56.62.151\nMessage Wall:24.57.176.5\nMessage Wall:24.59.121.208\nMessage Wall:24.59.154.19\nMessage Wall:24.6.20.122\nMessage Wall:24.61.136.77\nMessage Wall:24.61.235.218\nMessage Wall:24.61.241.98\nMessage Wall:24.61.64.170\nMessage Wall:24.62.136.8\nMessage Wall:24.62.86.197\nMessage Wall:24.63.120.162\nMessage Wall:24.63.224.51\nMessage Wall:24.63.55.33\nMessage Wall:24.63.64.198\nMessage Wall:24.64.185.153\nMessage Wall:24.65.103.10\nMessage Wall:24.65.105.116\nMessage Wall:24.66.236.230\nMessage Wall:24.66.39.25\nMessage Wall:24.68.0.128\nMessage Wall:24.68.111.197\nMessage Wall:24.7.114.135\nMessage Wall:24.7.44.194\nMessage Wall:24.70.159.69\nMessage Wall:24.70.38.212\nMessage Wall:24.72.128.134\nMessage Wall:24.72.161.40\nMessage Wall:24.72.93.159\nMessage Wall:24.74.117.72\nMessage Wall:24.74.16.164\nMessage Wall:24.76.241.23\nMessage Wall:24.77.135.101\nMessage Wall:24.77.55.221\nMessage Wall:24.77.8.172\nMessage Wall:24.8.43.218\nMessage Wall:24.8.65.16\nMessage Wall:24.84.28.169\nMessage Wall:24.84.86.75\nMessage Wall:24.85.110.225\nMessage Wall:24.85.114.121\nMessage Wall:24.86.220.105\nMessage Wall:24.86.34.239\nMessage Wall:24.88.93.15\nMessage Wall:24.88.94.182\nMessage Wall:24.9.171.99\nMessage Wall:24.9.80.183\nMessage Wall:24.90.153.127\nMessage Wall:24.91.144.18\nMessage Wall:24.92.220.10\nMessage Wall:24.93.194.27\nMessage Wall:24.96.161.57\nMessage Wall:24.96.25.44\nMessage Wall:24.96.250.21\nMessage Wall:24.98.125.164\nMessage Wall:24.98.142.172\nMessage Wall:24.99.224.197\nMessage Wall:2403:6200:8850:6CE3:DC5E:A3B5:5223:CD6A\nMessage Wall:2600:100D:B10A:38F2:2040:D888:533:6F12\nMessage Wall:2600:1:F143:E7E4:7C3D:46F8:CFC7:40D0\nMessage Wall:2600:387:1:802:0:0:0:24\nMessage Wall:2600:387:8:8:0:0:0:52\nMessage Wall:2600:6C44:17F:FAD2:ED2B:8A0:DFD:B43C\nMessage Wall:2600:6C44:37F:E778:51CE:B7EC:E74B:9C28\nMessage Wall:2600:6C44:37F:F8D3:2D4E:282D:5270:4227\nMessage Wall:2600:6C44:4380:1660:A499:E999:AA39:2D40\nMessage Wall:2600:6C64:6C7F:F58E:CD2E:F665:92C1:FF68\nMessage Wall:2600:8800:7100:5840:203D:7944:6179:7B2B\nMessage Wall:2600:8801:9300:1E06:2180:8A25:FF5:F621\nMessage Wall:2600:8807:8000:178:2CDA:5530:73EF:7B9\nMessage Wall:2600:E000:2E1:F9E0:280:AEFF:FEA6:8D21\nMessage Wall:2601:100:8600:6000:9C71:ED9:336D:CCC8\nMessage Wall:2601:147:4101:CE9E:5C9E:248F:CF6:49F\nMessage Wall:2601:190:8200:8C40:543:B1D5:4943:21C6\nMessage Wall:2601:19D:402:9C3:6D31:A600:DA5D:FF2D\nMessage Wall:2601:1C0:4401:A45B:6CFD:392F:6B54:74FC\nMessage Wall:2601:204:C802:FF40:D46C:225A:34FB:4637\nMessage Wall:2601:280:5A00:392B:1022:F5AB:A1D:E1E8\nMessage Wall:2601:283:0:6B9F:4D10:89A1:D0B6:FD81\nMessage Wall:2601:283:4701:CCCD:52C:32F3:D3C2:3CA1\nMessage Wall:2601:2C3:780:460:44EE:AAA1:C370:4F78\nMessage Wall:2601:2C3:780:460:6011:EB29:6484:24A8\nMessage Wall:2601:2C3:780:460:BC93:306A:C304:9D3B\nMessage Wall:2601:2C3:780:460:FD38:8EE2:240:5ACF\nMessage Wall:2601:380:4100:E610:1864:3800:4845:FFBF\nMessage Wall:2601:407:8500:7827:A83C:7F11:EF1C:B315\nMessage Wall:2601:441:8680:3610:29C3:C8B2:6185:935E\nMessage Wall:2601:441:8680:3610:9CD0:54B6:A655:A675\nMessage Wall:2601:4A:C400:5D50:75BC:5438:3923:BD26\nMessage Wall:2601:4A:C400:5D50:FCE4:1F4B:292E:32FA\nMessage Wall:2601:645:8002:45DC:5D49:4415:A053:D95C\nMessage Wall:2601:646:8E00:37B0:DDD0:D51B:AB7E:2CE5\nMessage Wall:2601:647:4A04:2210:C18C:FF67:89C0:8922\nMessage Wall:2601:647:4C00:49D4:F5F5:1CDF:5FD6:43A2\nMessage Wall:2601:647:4C80:5690:3D7B:2158:1E57:2E4C\nMessage Wall:2601:882:8000:9B2:8989:61:1FF9:F268\nMessage Wall:2601:980:8080:C4B0:D414:26D7:E3C6:F8C5\nMessage Wall:2601:982:200:2B30:802B:3960:D3A2:F415\nMessage Wall:2602:304:CE91:E5A0:2166:55C5:6795:1567\nMessage Wall:2602:306:3115:4F0:5EB:6EA4:5309:CA7A\nMessage Wall:2602:306:31AD:3410:C1FF:6DB2:DB95:736B\nMessage Wall:2602:306:32D5:9CC0:64F3:C14C:B457:5BA5\nMessage Wall:2602:306:32D5:9CC0:9C7E:7B4B:B80E:8302\nMessage Wall:2602:306:32D5:9CC0:A9F8:E811:1465:A339\nMessage Wall:2602:306:37B9:18E0:8C14:7561:F0E5:A9A1\nMessage Wall:2602:306:8BC9:5FF0:D1FD:886F:411C:9339\nMessage Wall:2602:306:BCF2:B840:3577:C2D:37B1:DD15\nMessage Wall:2602:306:C4DC:76C0:18C3:DAA4:F690:CFD0\nMessage Wall:2602:306:C4DC:76C0:2592:A64:52C3:8064\nMessage Wall:2602:306:C4DC:76C0:6C90:A451:9DAA:E686\nMessage Wall:2602:306:C4DC:76C0:7486:7D4E:D083:1C95\nMessage Wall:2602:306:C4DC:76C0:78D5:5932:1996:7FCA\nMessage Wall:2602:306:C4DC:76C0:914:9E4D:B883:AB25\nMessage Wall:2602:306:C4DC:76C0:D1A4:8EEF:916B:56DE\nMessage Wall:2602:306:C4DC:76C0:D87D:72D:1576:8355\nMessage Wall:2602:306:C4DC:76C0:DDD6:7746:66C5:1526\nMessage Wall:2602:30A:2E13:CC50:C54E:F144:DA36:2B62\nMessage Wall:2604:2D80:8403:82E0:3CB1:8F6A:1B77:7E3C\nMessage Wall:2604:2D80:8403:C35F:68AF:3F8A:B84F:C6FC\nMessage Wall:2604:2D80:8403:C35F:68FD:223B:B730:A357\nMessage Wall:2605:6000:170E:C041:A53A:529A:B159:7B61\nMessage Wall:2606:A000:BEC2:6700:8150:C8F1:1CD0:B4AD\nMessage Wall:2606:A000:F846:700:ED29:5E03:E128:5BBC\nMessage Wall:2607:FB90:4AA8:96CA:5121:77D2:2D92:4595\nMessage Wall:2607:FB90:4AB3:CAF7:8570:40C:4CC6:90BC\nMessage Wall:2607:FB90:4AB5:98DE:6190:DDF0:C629:6597\nMessage Wall:2607:FB90:5AF:5B99:1125:E1C6:DFF9:7FBA\nMessage Wall:2607:FEA8:1360:4E1:1004:1DB3:CDF5:2256\nMessage Wall:2607:FEA8:BD20:EBE:65BA:29BF:E7D1:E910\nMessage Wall:2607:FEA8:D100:33C:50E9:1B2F:3273:2D50\nMessage Wall:2607:FEA8:D100:33C:59A9:CD83:7CC5:7958\nMessage Wall:27.110.122.39\nMessage Wall:27.252.195.169\nMessage Wall:27.253.112.101\nMessage Wall:27.253.115.43\nMessage Wall:27.253.117.77\nMessage Wall:27.32.19.146\nMessage Wall:27.33.121.44\nMessage Wall:27.33.134.126\nMessage Wall:27.33.19.93\nMessage Wall:27.33.195.101\nMessage Wall:27.33.22.155\nMessage Wall:27.33.234.91\nMessage Wall:27.33.65.226\nMessage Wall:27.55.11.100\nMessage Wall:27.55.16.151\nMessage Wall:27duuude\nMessage Wall:2A00:23C0:B4F1:C901:F952:624:60DC:146A\nMessage Wall:2A00:23C0:C63F:FD01:ED10:B9D8:BE86:E6B2\nMessage Wall:2A00:23C1:74C1:FE00:D9B3:B219:E6C8:1081\nMessage Wall:2A00:23C1:A69A:F300:3D1E:5A77:C734:9255\nMessage Wall:2A00:23C4:170A:EF00:4525:7B2A:8DAC:FFD4\nMessage Wall:2A00:23C4:452A:E000:3167:1262:FC3A:A33E\nMessage Wall:2A00:23C4:ED82:AD00:75BB:B723:21B6:F725\nMessage Wall:2A00:801:211:544F:41A8:ADE6:2714:AFFA\nMessage Wall:2A01:E35:39A8:B820:14D8:518E:86C5:9B75\nMessage Wall:2A01:E35:39A8:B820:447:EC1E:7BD5:D311\nMessage Wall:2A01:E35:39A8:B820:4A0:D95D:6285:83AB\nMessage Wall:2A01:E35:39A8:B820:79A3:D52:AAF2:B467\nMessage Wall:2A02:8070:D185:5C00:C42E:85A2:C894:2655\nMessage Wall:2A02:8108:45C0:D9EC:FCDF:E555:EFE5:7B17\nMessage Wall:2A02:8108:4B40:403C:C1EC:1D20:9A3B:5987\nMessage Wall:2A02:810B:280:81:804A:E02A:5EDC:60E2\nMessage Wall:2A02:810D:C0:2F8:314F:A57A:AFDD:69E0\nMessage Wall:2A02:908:191:5E20:D0E2:E4EF:4E6:7638\nMessage Wall:2A02:C7D:16A9:4200:C421:6BA9:A8E8:D462\nMessage Wall:2A02:C7D:49CB:5E00:A41E:71A2:D5A1:F2CB\nMessage Wall:2A02:C7D:4A67:CE00:102C:C20F:4A2:9F64\nMessage Wall:2A02:C7D:7229:7500:354A:42A7:CB26:10D6\nMessage Wall:2A02:C7D:BF26:E500:E044:ABA7:1421:708C\nMessage Wall:2A02:C7F:3050:6500:98AD:65E0:AF38:4933\nMessage Wall:2A02:C7F:BA2C:5E00:DC1E:2855:1277:CFB8\nMessage Wall:2A02:C7F:C80A:4500:F4F2:3101:611A:EC82\nMessage Wall:2DVS4U\nMessage Wall:31.10.129.54\nMessage Wall:31.10.139.155\nMessage Wall:31.109.249.84\nMessage Wall:31.11.129.84\nMessage Wall:31.11.130.218\nMessage Wall:31.111.103.86\nMessage Wall:31.134.139.98\nMessage Wall:31.14.128.21\nMessage Wall:31.150.166.171\nMessage Wall:31.150.219.7\nMessage Wall:31.151.208.204\nMessage Wall:31.154.34.118\nMessage Wall:31.16.144.74\nMessage Wall:31.16.167.42\nMessage Wall:31.16.29.2\nMessage Wall:31.16.29.201\nMessage Wall:31.16.58.61\nMessage Wall:31.160.169.70\nMessage Wall:31.164.1.124\nMessage Wall:31.164.1.86\nMessage Wall:31.164.5.154\nMessage Wall:31.168.180.254\nMessage Wall:31.17.223.132\nMessage Wall:31.17.31.176\nMessage Wall:31.175.105.10\nMessage Wall:31.178.135.195\nMessage Wall:31.178.6.144\nMessage Wall:31.179.66.212\nMessage Wall:31.18.194.107\nMessage Wall:31.18.57.146\nMessage Wall:31.181.36.123\nMessage Wall:31.182.192.84\nMessage Wall:31.182.204.165\nMessage Wall:31.182.48.42\nMessage Wall:31.183.74.235\nMessage Wall:31.185.161.92\nMessage Wall:31.185.213.189\nMessage Wall:31.185.234.204\nMessage Wall:31.187.28.221\nMessage Wall:31.187.5.151\nMessage Wall:31.19.177.161\nMessage Wall:31.201.226.140\nMessage Wall:31.205.111.192\nMessage Wall:31.205.96.4\nMessage Wall:31.209.138.27\nMessage Wall:31.217.106.136\nMessage Wall:31.222.223.227\nMessage Wall:31.223.226.252\nMessage Wall:31.23.236.22\nMessage Wall:31.25.158.9\nMessage Wall:31.25.46.81\nMessage Wall:31.28.6.108\nMessage Wall:31.32.176.42\nMessage Wall:31.32.179.1\nMessage Wall:31.35.241.102\nMessage Wall:31.38.216.11\nMessage Wall:31.38.77.43\nMessage Wall:31.46.126.78\nMessage Wall:31.46.248.196\nMessage Wall:31.46.248.208\nMessage Wall:31.46.249.104\nMessage Wall:31.46.249.141\nMessage Wall:31.46.249.169\nMessage Wall:31.46.249.19\nMessage Wall:31.46.249.196\nMessage Wall:31.46.249.216\nMessage Wall:31.46.250.132\nMessage Wall:31.46.250.136\nMessage Wall:31.46.251.244\nMessage Wall:31.46.252.206\nMessage Wall:31.46.252.5\nMessage Wall:31.46.253.158\nMessage Wall:31.46.253.185\nMessage Wall:31.46.253.202\nMessage Wall:31.46.254.23\nMessage Wall:31.46.254.27\nMessage Wall:31.46.255.108\nMessage Wall:31.46.255.165\nMessage Wall:31.46.255.36\nMessage Wall:31.46.255.40\nMessage Wall:31.46.52.211\nMessage Wall:31.48.10.248\nMessage Wall:31.48.48.50\nMessage Wall:31.49.136.69\nMessage Wall:31.49.219.89\nMessage Wall:31.49.60.193\nMessage Wall:31.49.96.24\nMessage Wall:31.5.226.106\nMessage Wall:31.5.239.207\nMessage Wall:31.50.168.195\nMessage Wall:31.50.215.148\nMessage Wall:31.50.5.147\nMessage Wall:31.51.120.173\nMessage Wall:31.51.219.214\nMessage Wall:31.51.232.109\nMessage Wall:31.51.41.140\nMessage Wall:31.52.161.85\nMessage Wall:31.52.166.144\nMessage Wall:31.52.203.26\nMessage Wall:31.52.217.254\nMessage Wall:31.52.251.8\nMessage Wall:31.52.27.130\nMessage Wall:31.52.45.250\nMessage Wall:31.53.132.159\nMessage Wall:31.53.212.76\nMessage Wall:31.53.47.90\nMessage Wall:31.54.101.205\nMessage Wall:31.54.142.156\nMessage Wall:31.54.196.154\nMessage Wall:31.54.37.40\nMessage Wall:31.55.21.78\nMessage Wall:31.61.131.216\nMessage Wall:31.85.191.93\nMessage Wall:31.92.149.149\nMessage Wall:31.92.174.73\nMessage Wall:32.208.146.173\nMessage Wall:32.209.21.239\nMessage Wall:32.212.141.244\nMessage Wall:32.213.115.179\nMessage Wall:35.46.23.82\nMessage Wall:35.46.40.94\nMessage Wall:35.46.5.61\nMessage Wall:35.46.7.62\nMessage Wall:37.10.140.76\nMessage Wall:37.110.24.129\nMessage Wall:37.110.33.169\nMessage Wall:37.112.199.130\nMessage Wall:37.112.200.119\nMessage Wall:37.120.35.197\nMessage Wall:37.120.4.60\nMessage Wall:37.120.41.111\nMessage Wall:37.120.44.233\nMessage Wall:37.123.160.36\nMessage Wall:37.130.226.82\nMessage Wall:37.132.113.67\nMessage Wall:37.132.191.217\nMessage Wall:37.134.157.199\nMessage Wall:37.134.63.162\nMessage Wall:37.136.66.175\nMessage Wall:37.152.249.49\nMessage Wall:37.152.9.190\nMessage Wall:37.153.243.78\nMessage Wall:37.153.251.127\nMessage Wall:37.157.48.67\nMessage Wall:37.161.209.17\nMessage Wall:37.162.35.241\nMessage Wall:37.163.140.113\nMessage Wall:37.169.162.114\nMessage Wall:37.17.113.245\nMessage Wall:37.187.104.40\nMessage Wall:37.189.169.197\nMessage Wall:37.191.164.153\nMessage Wall:37.192.23.123\nMessage Wall:37.193.6.159\nMessage Wall:37.201.165.166\nMessage Wall:37.201.168.95\nMessage Wall:37.201.180.79\nMessage Wall:37.201.191.239\nMessage Wall:37.201.192.66\nMessage Wall:37.201.193.125\nMessage Wall:37.201.193.57\nMessage Wall:37.201.195.177\nMessage Wall:37.201.2.142\nMessage Wall:37.201.214.13\nMessage Wall:37.201.229.31\nMessage Wall:37.201.240.85\nMessage Wall:37.201.243.74\nMessage Wall:37.201.243.98\nMessage Wall:37.201.250.17\nMessage Wall:37.204.168.202\nMessage Wall:37.204.69.132\nMessage Wall:37.208.131.7\nMessage Wall:37.219.223.89\nMessage Wall:37.228.205.86\nMessage Wall:37.229.216.0\nMessage Wall:37.231.186.99\nMessage Wall:37.231.55.212\nMessage Wall:37.233.68.126\nMessage Wall:37.24.140.229\nMessage Wall:37.24.143.189\nMessage Wall:37.24.152.21\nMessage Wall:37.33.96.54\nMessage Wall:37.4.163.125\nMessage Wall:37.4.198.204\nMessage Wall:37.4.241.157\nMessage Wall:37.4.249.122\nMessage Wall:37.4.253.81\nMessage Wall:37.4.45.154\nMessage Wall:37.4.87.26\nMessage Wall:37.44.104.18\nMessage Wall:37.47.37.156\nMessage Wall:37.48.241.206\nMessage Wall:37.48.65.76\nMessage Wall:37.49.47.14\nMessage Wall:37.5.153.66\nMessage Wall:37.5.37.183\nMessage Wall:37.58.168.167\nMessage Wall:37.76.43.156\nMessage Wall:37.97.14.154\nMessage Wall:38.104.125.162\nMessage Wall:38.110.44.102\nMessage Wall:38.110.87.2\nMessage Wall:38.113.96.18\nMessage Wall:38.124.248.101\nMessage Wall:38.124.248.50\nMessage Wall:38.132.119.232\nMessage Wall:38.132.167.192\nMessage Wall:38.176.90.254\nMessage Wall:38.81.153.113\nMessage Wall:38.95.109.67\nMessage Wall:39.109.155.52\nMessage Wall:4.30.115.102\nMessage Wall:4.31.13.17\nMessage Wall:4.35.222.2\nMessage Wall:40.131.116.2\nMessage Wall:40.136.238.167\nMessage Wall:40.141.116.182\nMessage Wall:40.141.249.102\nMessage Wall:41.13.12.245\nMessage Wall:41.134.155.227\nMessage Wall:41.164.51.34\nMessage Wall:41.190.136.10\nMessage Wall:41.218.221.116\nMessage Wall:41.220.213.38\nMessage Wall:42.112.80.198\nMessage Wall:42.112.81.61\nMessage Wall:42.112.84.79\nMessage Wall:42.112.87.240\nMessage Wall:42.112.88.138\nMessage Wall:42.112.88.75\nMessage Wall:42.112.93.221\nMessage Wall:42.241.112.100\nMessage Wall:42.83.21.104\nMessage Wall:4231345tresgyfdbxzverzx\nMessage Wall:43.230.88.153\nMessage Wall:43.242.140.72\nMessage Wall:43.249.129.100\nMessage Wall:43.252.109.12\nMessage Wall:45.19.51.199\nMessage Wall:45.23.35.95\nMessage Wall:45.24.32.239\nMessage Wall:45.31.8.111\nMessage Wall:45.37.192.8\nMessage Wall:45.46.6.81\nMessage Wall:45.48.248.69\nMessage Wall:45.50.114.69\nMessage Wall:45.50.143.193\nMessage Wall:45.56.58.139\nMessage Wall:45.58.252.38\nMessage Wall:45.59.44.238\nMessage Wall:45.63.126.26\nMessage Wall:45.72.245.163\nMessage Wall:46.103.94.82\nMessage Wall:46.107.236.132\nMessage Wall:46.11.15.106\nMessage Wall:46.11.18.188\nMessage Wall:46.114.109.227\nMessage Wall:46.114.35.149\nMessage Wall:46.115.173.95\nMessage Wall:46.116.176.191\nMessage Wall:46.116.58.2\nMessage Wall:46.118.113.59\nMessage Wall:46.12.86.11\nMessage Wall:46.12.95.38\nMessage Wall:46.129.104.48\nMessage Wall:46.13.93.231\nMessage Wall:46.132.185.20\nMessage Wall:46.139.248.246\nMessage Wall:46.14.147.151\nMessage Wall:46.142.84.24\nMessage Wall:46.146.29.91\nMessage Wall:46.146.62.168\nMessage Wall:46.148.64.226\nMessage Wall:46.15.53.230\nMessage Wall:46.158.102.81\nMessage Wall:46.16.3.212\nMessage Wall:46.16.7.210\nMessage Wall:46.162.118.82\nMessage Wall:46.162.195.42\nMessage Wall:46.162.75.170\nMessage Wall:46.163.111.44\nMessage Wall:46.169.58.187\nMessage Wall:46.177.112.61\nMessage Wall:46.177.149.48\nMessage Wall:46.179.125.226\nMessage Wall:46.182.141.197\nMessage Wall:46.188.0.22\nMessage Wall:46.188.121.10\nMessage Wall:46.188.121.124\nMessage Wall:46.188.121.230\nMessage Wall:46.188.121.32\nMessage Wall:46.188.19.222\nMessage Wall:46.188.29.119\nMessage Wall:46.191.255.252\nMessage Wall:46.193.0.57\nMessage Wall:46.193.64.216\nMessage Wall:46.194.143.80\nMessage Wall:46.194.146.224\nMessage Wall:46.194.39.76\nMessage Wall:46.194.48.14\nMessage Wall:46.196.17.167\nMessage Wall:46.197.116.39\nMessage Wall:46.208.213.19\nMessage Wall:46.208.240.200\nMessage Wall:46.208.46.184\nMessage Wall:46.208.78.19\nMessage Wall:46.211.34.236\nMessage Wall:46.216.168.87\nMessage Wall:46.22.105.50\nMessage Wall:46.223.1.59\nMessage Wall:46.223.128.121\nMessage Wall:46.223.212.117\nMessage Wall:46.223.26.78\nMessage Wall:46.227.54.11\nMessage Wall:46.227.67.182\nMessage Wall:46.229.149.138\nMessage Wall:46.23.40.174\nMessage Wall:46.230.212.231\nMessage Wall:46.231.152.228\nMessage Wall:46.236.110.72\nMessage Wall:46.236.110.81\nMessage Wall:46.236.85.161\nMessage Wall:46.239.196.26\nMessage Wall:46.242.1.85\nMessage Wall:46.245.203.235\nMessage Wall:46.249.230.96\nMessage Wall:46.251.125.218\nMessage Wall:46.254.254.27\nMessage Wall:46.255.183.66\nMessage Wall:46.30.167.89\nMessage Wall:46.33.141.184\nMessage Wall:46.33.142.224\nMessage Wall:46.36.156.151\nMessage Wall:46.39.53.83\nMessage Wall:46.5.16.66\nMessage Wall:46.5.16.94\nMessage Wall:46.5.18.126\nMessage Wall:46.5.19.127\nMessage Wall:46.5.194.57\nMessage Wall:46.5.2.190\nMessage Wall:46.5.2.238\nMessage Wall:46.5.253.115\nMessage Wall:46.5.43.190\nMessage Wall:46.59.13.53\nMessage Wall:46.59.143.80\nMessage Wall:46.59.151.206\nMessage Wall:46.59.163.200\nMessage Wall:46.59.165.36\nMessage Wall:46.59.166.69\nMessage Wall:46.59.223.191\nMessage Wall:46.59.232.237\nMessage Wall:46.64.60.128\nMessage Wall:46.65.116.35\nMessage Wall:46.65.143.34\nMessage Wall:46.65.148.148\nMessage Wall:46.7.136.86\nMessage Wall:46.7.153.70\nMessage Wall:46.83.227.124\nMessage Wall:46.9.4.63\nMessage Wall:46.91.7.74\nMessage Wall:46.92.31.248\nMessage Wall:46.98.199.90\nMessage Wall:47.145.14.169\nMessage Wall:47.148.146.70\nMessage Wall:47.16.151.196\nMessage Wall:47.18.207.88\nMessage Wall:47.18.65.236\nMessage Wall:47.187.241.226\nMessage Wall:47.199.18.20\nMessage Wall:47.200.149.149\nMessage Wall:47.200.98.61\nMessage Wall:47.202.6.173\nMessage Wall:47.208.10.105\nMessage Wall:47.223.148.61\nMessage Wall:47.25.45.89\nMessage Wall:47.32.85.120\nMessage Wall:47.33.180.22\nMessage Wall:47.33.26.136\nMessage Wall:47.34.132.77\nMessage Wall:47.34.33.122\nMessage Wall:47.37.138.49\nMessage Wall:47.54.37.58\nMessage Wall:47.55.100.116\nMessage Wall:47.55.122.49\nMessage Wall:47.55.47.186\nMessage Wall:47.64.227.197\nMessage Wall:47.72.125.231\nMessage Wall:47.72.194.152\nMessage Wall:47.72.209.159\nMessage Wall:47.72.234.151\nMessage Wall:47.89.23.243\nMessage Wall:49.144.33.132\nMessage Wall:49.147.129.226\nMessage Wall:49.149.205.133\nMessage Wall:49.191.146.104\nMessage Wall:49.191.32.136\nMessage Wall:49.194.15.156\nMessage Wall:49.196.3.2\nMessage Wall:49.197.109.164\nMessage Wall:49.197.36.189\nMessage Wall:49.199.12.243\nMessage Wall:49.2.30.245\nMessage Wall:49.224.120.145\nMessage Wall:49.255.202.34\nMessage Wall:49.3.192.13\nMessage Wall:5.10.176.178\nMessage Wall:5.10.6.41\nMessage Wall:5.101.142.236\nMessage Wall:5.103.207.71\nMessage Wall:5.103.231.129\nMessage Wall:5.103.232.107\nMessage Wall:5.104.125.194\nMessage Wall:5.12.100.161\nMessage Wall:5.14.4.22\nMessage Wall:5.146.179.178\nMessage Wall:5.146.195.68\nMessage Wall:5.146.49.4\nMessage Wall:5.147.122.133\nMessage Wall:5.147.48.112\nMessage Wall:5.150.100.24\nMessage Wall:5.151.197.96\nMessage Wall:5.152.195.200\nMessage Wall:5.157.103.183\nMessage Wall:5.157.97.178\nMessage Wall:5.164.17.24\nMessage Wall:5.167.143.117\nMessage Wall:5.172.239.182\nMessage Wall:5.172.252.22\nMessage Wall:5.18.154.88\nMessage Wall:5.18.174.40\nMessage Wall:5.18.35.3\nMessage Wall:5.18.84.105\nMessage Wall:5.186.113.251\nMessage Wall:5.186.50.167\nMessage Wall:5.198.11.99\nMessage Wall:5.198.43.13\nMessage Wall:5.224.184.115\nMessage Wall:5.29.157.212\nMessage Wall:5.29.185.245\nMessage Wall:5.29.54.125\nMessage Wall:5.36.137.151\nMessage Wall:5.42.131.26\nMessage Wall:5.43.161.166\nMessage Wall:5.49.48.74\nMessage Wall:5.50.93.105\nMessage Wall:5.53.243.156\nMessage Wall:5.56.179.87\nMessage Wall:5.64.211.198\nMessage Wall:5.65.64.210\nMessage Wall:5.65.85.131\nMessage Wall:5.66.221.166\nMessage Wall:5.66.95.183\nMessage Wall:5.68.138.109\nMessage Wall:5.68.230.137\nMessage Wall:5.69.10.21\nMessage Wall:5.69.187.253\nMessage Wall:5.69.243.98\nMessage Wall:5.71.0.142\nMessage Wall:5.71.110.13\nMessage Wall:5.71.20.211\nMessage Wall:5.71.230.40\nMessage Wall:5.80.110.4\nMessage Wall:5.80.132.255\nMessage Wall:5.80.207.186\nMessage Wall:5.80.255.178\nMessage Wall:5.80.28.136\nMessage Wall:5.80.46.191\nMessage Wall:5.80.71.83\nMessage Wall:5.80.8.153\nMessage Wall:5.81.125.61\nMessage Wall:5.81.159.161\nMessage Wall:5.81.250.3\nMessage Wall:5.81.33.188\nMessage Wall:5.86.187.118\nMessage Wall:5.92.78.27\nMessage Wall:50.0.102.200\nMessage Wall:50.1.48.213\nMessage Wall:50.1.62.235\nMessage Wall:50.10.178.138\nMessage Wall:50.100.112.6\nMessage Wall:50.100.217.171\nMessage Wall:50.101.183.164\nMessage Wall:50.101.214.170\nMessage Wall:50.101.60.230\nMessage Wall:50.104.101.223\nMessage Wall:50.104.67.17\nMessage Wall:50.106.189.239\nMessage Wall:50.111.20.236\nMessage Wall:50.111.206.178\nMessage Wall:50.111.218.150\nMessage Wall:50.113.40.184\nMessage Wall:50.121.70.2\nMessage Wall:50.125.75.120\nMessage Wall:50.126.183.217\nMessage Wall:50.129.45.145\nMessage Wall:50.129.64.120\nMessage Wall:50.13.185.43\nMessage Wall:50.133.100.78\nMessage Wall:50.133.190.239\nMessage Wall:50.134.20.202\nMessage Wall:50.135.183.66\nMessage Wall:50.135.5.168\nMessage Wall:50.135.54.250\nMessage Wall:50.137.0.220\nMessage Wall:50.137.102.43\nMessage Wall:50.138.159.119\nMessage Wall:50.139.244.177\nMessage Wall:50.139.97.125\nMessage Wall:50.141.115.73\nMessage Wall:50.142.19.29\nMessage Wall:50.143.170.199\nMessage Wall:50.147.110.159\nMessage Wall:50.147.112.25\nMessage Wall:50.148.161.100\nMessage Wall:50.149.146.79\nMessage Wall:50.150.167.77\nMessage Wall:50.150.51.32\nMessage Wall:50.150.68.49\nMessage Wall:50.151.152.56\nMessage Wall:50.152.135.123\nMessage Wall:50.152.35.117\nMessage Wall:50.154.127.58\nMessage Wall:50.154.136.52\nMessage Wall:50.155.234.240\nMessage Wall:50.156.112.91\nMessage Wall:50.156.160.90\nMessage Wall:50.157.251.244\nMessage Wall:50.158.150.75\nMessage Wall:50.158.251.198\nMessage Wall:50.159.152.180\nMessage Wall:50.159.96.116\nMessage Wall:50.160.153.191\nMessage Wall:50.161.122.216\nMessage Wall:50.161.170.234\nMessage Wall:50.161.240.236\nMessage Wall:50.162.189.113\nMessage Wall:50.162.203.234\nMessage Wall:50.163.90.120\nMessage Wall:50.164.50.93\nMessage Wall:50.164.75.87\nMessage Wall:50.166.254.43\nMessage Wall:50.167.240.190\nMessage Wall:50.168.246.211\nMessage Wall:50.168.46.114\nMessage Wall:50.170.117.254\nMessage Wall:50.170.132.148\nMessage Wall:50.170.69.144\nMessage Wall:50.174.126.78\nMessage Wall:50.175.181.155\nMessage Wall:50.176.247.65\nMessage Wall:50.177.231.130\nMessage Wall:50.178.166.246\nMessage Wall:50.178.246.49\nMessage Wall:50.179.24.231\nMessage Wall:50.180.208.252\nMessage Wall:50.181.47.16\nMessage Wall:50.182.165.117\nMessage Wall:50.183.114.26\nMessage Wall:50.183.196.130\nMessage Wall:50.184.162.107\nMessage Wall:50.184.66.16\nMessage Wall:50.185.89.167\nMessage Wall:50.186.109.73\nMessage Wall:50.188.219.62\nMessage Wall:50.188.60.46\nMessage Wall:50.190.113.228\nMessage Wall:50.191.116.52\nMessage Wall:50.191.187.211\nMessage Wall:50.191.44.16\nMessage Wall:50.191.58.144\nMessage Wall:50.192.48.153\nMessage Wall:50.193.166.214\nMessage Wall:50.193.89.41\nMessage Wall:50.195.79.62\nMessage Wall:50.199.255.189\nMessage Wall:50.200.107.166\nMessage Wall:50.200.245.26\nMessage Wall:50.200.48.87\nMessage Wall:50.202.58.42\nMessage Wall:50.203.104.142\nMessage Wall:50.203.210.2\nMessage Wall:50.203.63.74\nMessage Wall:50.204.82.30\nMessage Wall:50.205.42.50\nMessage Wall:50.206.158.37\nMessage Wall:50.206.66.62\nMessage Wall:50.24.177.60\nMessage Wall:50.24.185.109\nMessage Wall:50.24.5.109\nMessage Wall:50.241.208.109\nMessage Wall:50.245.134.27\nMessage Wall:50.25.172.77\nMessage Wall:50.25.174.219\nMessage Wall:50.253.182.53\nMessage Wall:50.253.87.121\nMessage Wall:50.255.40.41\nMessage Wall:50.26.199.24\nMessage Wall:50.27.102.157\nMessage Wall:50.27.205.89\nMessage Wall:50.27.26.79\nMessage Wall:50.29.140.85\nMessage Wall:50.34.140.248\nMessage Wall:50.34.98.251\nMessage Wall:50.35.25.222\nMessage Wall:50.36.214.87\nMessage Wall:50.38.105.52\nMessage Wall:50.38.244.185\nMessage Wall:50.38.245.253\nMessage Wall:50.38.32.124\nMessage Wall:50.38.37.16\nMessage Wall:50.39.178.11\nMessage Wall:50.39.96.128\nMessage Wall:50.4.144.82\nMessage Wall:50.4.239.175\nMessage Wall:50.43.116.98\nMessage Wall:50.43.12.91\nMessage Wall:50.43.32.65\nMessage Wall:50.43.44.6\nMessage Wall:50.44.161.142\nMessage Wall:50.44.98.107\nMessage Wall:50.46.224.106\nMessage Wall:50.5.137.178\nMessage Wall:50.53.0.81\nMessage Wall:50.53.108.42\nMessage Wall:50.53.178.6\nMessage Wall:50.53.180.233\nMessage Wall:50.53.21.201\nMessage Wall:50.53.53.103\nMessage Wall:50.53.84.33\nMessage Wall:50.53.93.163\nMessage Wall:50.54.165.148\nMessage Wall:50.54.65.26\nMessage Wall:50.64.56.7\nMessage Wall:50.65.112.89\nMessage Wall:50.65.152.138\nMessage Wall:50.65.152.15\nMessage Wall:50.65.156.175\nMessage Wall:50.65.191.122\nMessage Wall:50.65.88.14\nMessage Wall:50.65.89.52\nMessage Wall:50.66.157.104\nMessage Wall:50.66.162.37\nMessage Wall:50.66.80.150\nMessage Wall:50.67.252.180\nMessage Wall:50.68.163.227\nMessage Wall:50.69.21.95\nMessage Wall:50.69.40.31\nMessage Wall:50.71.190.250\nMessage Wall:50.71.35.46\nMessage Wall:50.71.8.91\nMessage Wall:50.72.129.161\nMessage Wall:50.73.242.166\nMessage Wall:50.78.252.161\nMessage Wall:50.80.48.230\nMessage Wall:50.81.162.4\nMessage Wall:50.82.119.223\nMessage Wall:50.82.251.175\nMessage Wall:50.82.64.66\nMessage Wall:50.82.83.18\nMessage Wall:50.83.105.34\nMessage Wall:50.83.182.14\nMessage Wall:50.88.121.45\nMessage Wall:50.88.128.103\nMessage Wall:50.88.170.31\nMessage Wall:50.88.185.86\nMessage Wall:50.89.209.6\nMessage Wall:50.89.241.140\nMessage Wall:50.90.51.23\nMessage Wall:50.92.27.193\nMessage Wall:50.92.35.140\nMessage Wall:50.92.46.205\nMessage Wall:50.96.208.137\nMessage Wall:50.98.222.161\nMessage Wall:50.99.251.117\nMessage Wall:501.Legion\nMessage Wall:51.174.209.204\nMessage Wall:51.174.6.57\nMessage Wall:51.175.115.114\nMessage Wall:51.6.137.58\nMessage Wall:51.6.189.188\nMessage Wall:51.6.90.63\nMessage Wall:51.7.5.231\nMessage Wall:51.9.137.95\nMessage Wall:51.9.208.9\nMessage Wall:52.129.120.199\nMessage Wall:52.53.217.227\nMessage Wall:54.172.67.101\nMessage Wall:54.175.255.176\nMessage Wall:54.175.68.151\nMessage Wall:54.240.196.185\nMessage Wall:54.240.197.235\nMessage Wall:57.67.195.198\nMessage Wall:58.10.107.140\nMessage Wall:58.104.21.179\nMessage Wall:58.104.74.158\nMessage Wall:58.104.74.82\nMessage Wall:58.104.78.69\nMessage Wall:58.106.156.207\nMessage Wall:58.108.235.193\nMessage Wall:58.160.157.233\nMessage Wall:58.160.174.240\nMessage Wall:58.162.227.75\nMessage Wall:58.162.228.136\nMessage Wall:58.162.68.98\nMessage Wall:58.165.246.151\nMessage Wall:58.165.35.19\nMessage Wall:58.168.116.207\nMessage Wall:58.170.64.61\nMessage Wall:58.174.200.150\nMessage Wall:58.174.42.14\nMessage Wall:58.179.214.56\nMessage Wall:58.179.244.13\nMessage Wall:58.179.92.7\nMessage Wall:58.28.213.147\nMessage Wall:58.6.69.183\nMessage Wall:58.64.242.3\nMessage Wall:58.7.138.127\nMessage Wall:58.7.138.64\nMessage Wall:58.7.254.202\nMessage Wall:58.7.38.172\nMessage Wall:58.7.44.141\nMessage Wall:58.7.76.48\nMessage Wall:58.9.253.110\nMessage Wall:58.9.253.218\nMessage Wall:59.101.161.212\nMessage Wall:59.102.31.199\nMessage Wall:59.102.61.156\nMessage Wall:59.115.48.121\nMessage Wall:59.13.255.5\nMessage Wall:59.152.244.166\nMessage Wall:59.167.122.129\nMessage Wall:59.167.127.71\nMessage Wall:59.167.133.185\nMessage Wall:59.167.136.21\nMessage Wall:59.167.203.64\nMessage Wall:59.167.245.78\nMessage Wall:59.167.60.164\nMessage Wall:59.189.224.181\nMessage Wall:59.189.48.155\nMessage Wall:59.89.206.151\nMessage Wall:60.224.133.199\nMessage Wall:60.228.130.74\nMessage Wall:60.228.216.7\nMessage Wall:60.229.147.15\nMessage Wall:60.230.219.12\nMessage Wall:60.230.79.84\nMessage Wall:60.231.13.126\nMessage Wall:60.231.183.136\nMessage Wall:60.231.230.155\nMessage Wall:60.234.106.184\nMessage Wall:60.240.105.60\nMessage Wall:60.240.109.68\nMessage Wall:60.240.141.213\nMessage Wall:60.240.147.11\nMessage Wall:60.240.208.159\nMessage Wall:60.240.58.163\nMessage Wall:60.240.59.198\nMessage Wall:60.241.186.181\nMessage Wall:60.241.199.133\nMessage Wall:60.241.212.29\nMessage Wall:60.241.233.218\nMessage Wall:60.242.187.182\nMessage Wall:60.242.49.52\nMessage Wall:60.243.44.15\nMessage Wall:60.34.2.187\nMessage Wall:60.34.2.5\nMessage Wall:60.50.166.118\nMessage Wall:60.53.28.152\nMessage Wall:61.230.192.17\nMessage Wall:61.75.68.11\nMessage Wall:61.92.179.76\nMessage Wall:62.0.34.139\nMessage Wall:62.100.224.15\nMessage Wall:62.101.170.128\nMessage Wall:62.117.136.204\nMessage Wall:62.143.213.31\nMessage Wall:62.150.121.250\nMessage Wall:62.153.14.220\nMessage Wall:62.155.134.230\nMessage Wall:62.156.37.226\nMessage Wall:62.156.46.3\nMessage Wall:62.157.62.139\nMessage Wall:62.158.174.46\nMessage Wall:62.158.216.100\nMessage Wall:62.158.223.183\nMessage Wall:62.159.185.194\nMessage Wall:62.163.212.120\nMessage Wall:62.163.31.7\nMessage Wall:62.168.3.158\nMessage Wall:62.168.31.29\nMessage Wall:62.176.13.167\nMessage Wall:62.178.151.83\nMessage Wall:62.178.217.184\nMessage Wall:62.189.40.30\nMessage Wall:62.194.0.129\nMessage Wall:62.194.232.232\nMessage Wall:62.195.237.108\nMessage Wall:62.195.45.205\nMessage Wall:62.197.243.38\nMessage Wall:62.198.124.130\nMessage Wall:62.198.87.150\nMessage Wall:62.199.248.102\nMessage Wall:62.199.249.127\nMessage Wall:62.2.217.58\nMessage Wall:62.20.145.167\nMessage Wall:62.201.23.94\nMessage Wall:62.21.106.252\nMessage Wall:62.211.136.144\nMessage Wall:62.216.209.210\nMessage Wall:62.216.210.226\nMessage Wall:62.216.213.107\nMessage Wall:62.216.214.55\nMessage Wall:62.218.164.126\nMessage Wall:62.224.116.204\nMessage Wall:62.224.121.233\nMessage Wall:62.23.167.180\nMessage Wall:62.232.114.135\nMessage Wall:62.232.9.245\nMessage Wall:62.232.9.62\nMessage Wall:62.235.29.176\nMessage Wall:62.235.85.158\nMessage Wall:62.24.73.137\nMessage Wall:62.245.77.199\nMessage Wall:62.25.109.195\nMessage Wall:62.252.189.65\nMessage Wall:62.253.203.188\nMessage Wall:62.253.232.49\nMessage Wall:62.254.180.212\nMessage Wall:62.255.103.241\nMessage Wall:62.255.140.172\nMessage Wall:62.255.208.109\nMessage Wall:62.255.241.85\nMessage Wall:62.30.150.42\nMessage Wall:62.30.33.193\nMessage Wall:62.30.56.254\nMessage Wall:62.31.145.21\nMessage Wall:62.31.177.227\nMessage Wall:62.31.250.111\nMessage Wall:62.45.115.110\nMessage Wall:62.47.233.109\nMessage Wall:62.56.78.36\nMessage Wall:62.6.254.204\nMessage Wall:62.63.36.45\nMessage Wall:62.63.58.186\nMessage Wall:62.64.157.127\nMessage Wall:62.64.206.89\nMessage Wall:62.64.229.165\nMessage Wall:62.7.228.250\nMessage Wall:62.77.119.80\nMessage Wall:62.78.239.134\nMessage Wall:62.83.10.194\nMessage Wall:62.85.41.222\nMessage Wall:63.115.40.56\nMessage Wall:63.131.215.164\nMessage Wall:63.141.204.61\nMessage Wall:63.143.196.35\nMessage Wall:63.152.119.244\nMessage Wall:63.152.84.197\nMessage Wall:63.153.29.9\nMessage Wall:63.153.80.227\nMessage Wall:63.159.0.197\nMessage Wall:63.225.190.126\nMessage Wall:63.225.6.7\nMessage Wall:63.230.226.165\nMessage Wall:63.233.193.240\nMessage Wall:63.239.65.11\nMessage Wall:63.247.178.98\nMessage Wall:63.247.60.254\nMessage Wall:63.64.75.10\nMessage Wall:64.106.111.10\nMessage Wall:64.106.111.2\nMessage Wall:64.106.111.22\nMessage Wall:64.106.111.26\nMessage Wall:64.113.173.176\nMessage Wall:64.114.239.66\nMessage Wall:64.118.103.47\nMessage Wall:64.127.136.202\nMessage Wall:64.128.133.180\nMessage Wall:64.131.59.218\nMessage Wall:64.134.167.151\nMessage Wall:64.134.167.71\nMessage Wall:64.135.200.128\nMessage Wall:64.136.192.220\nMessage Wall:64.138.234.25\nMessage Wall:64.141.144.2\nMessage Wall:64.146.180.155\nMessage Wall:64.180.22.219\nMessage Wall:64.180.245.54\nMessage Wall:64.187.172.44\nMessage Wall:64.188.171.156\nMessage Wall:64.20.68.125\nMessage Wall:64.206.209.98\nMessage Wall:64.22.251.126\nMessage Wall:64.222.235.143\nMessage Wall:64.228.53.109\nMessage Wall:64.229.194.163\nMessage Wall:64.229.218.225\nMessage Wall:64.231.209.216\nMessage Wall:64.231.209.243\nMessage Wall:64.231.211.252\nMessage Wall:64.233.173.171\nMessage Wall:64.233.173.179\nMessage Wall:64.234.38.12\nMessage Wall:64.236.4.17\nMessage Wall:64.237.35.82\nMessage Wall:64.253.177.2\nMessage Wall:64.253.182.195\nMessage Wall:64.254.141.37\nMessage Wall:64.31.157.18\nMessage Wall:64.32.72.112\nMessage Wall:64.33.143.102\nMessage Wall:64.37.17.32\nMessage Wall:64.47.27.194\nMessage Wall:64.49.112.22\nMessage Wall:64.56.20.60\nMessage Wall:64.58.20.99\nMessage Wall:64.60.89.146\nMessage Wall:64.65.245.210\nMessage Wall:64.68.230.243\nMessage Wall:64.7.3.77\nMessage Wall:64.72.215.105\nMessage Wall:64.86.141.133\nMessage Wall:64.91.114.101\nMessage Wall:65.100.55.250\nMessage Wall:65.103.2.228\nMessage Wall:65.110.255.193\nMessage Wall:65.110.255.50\nMessage Wall:65.128.115.15\nMessage Wall:65.128.175.200\nMessage Wall:65.129.171.86\nMessage Wall:65.129.175.102\nMessage Wall:65.129.178.232\nMessage Wall:65.129.22.235\nMessage Wall:65.129.227.204\nMessage Wall:65.129.51.38\nMessage Wall:65.129.89.44\nMessage Wall:65.184.106.104\nMessage Wall:65.184.226.110\nMessage Wall:65.185.51.78\nMessage Wall:65.186.66.167\nMessage Wall:65.189.195.77\nMessage Wall:65.189.55.228\nMessage Wall:65.190.130.110\nMessage Wall:65.190.212.70\nMessage Wall:65.190.62.25\nMessage Wall:65.191.113.6\nMessage Wall:65.191.190.82\nMessage Wall:65.191.24.61\nMessage Wall:65.191.78.225\nMessage Wall:65.199.189.6\nMessage Wall:65.201.202.66\nMessage Wall:65.242.55.2\nMessage Wall:65.25.6.184\nMessage Wall:65.28.84.131\nMessage Wall:65.29.107.43\nMessage Wall:65.32.104.6\nMessage Wall:65.32.191.96\nMessage Wall:65.35.194.48\nMessage Wall:65.35.47.185\nMessage Wall:65.49.14.146\nMessage Wall:65.51.205.72\nMessage Wall:65.60.207.30\nMessage Wall:65.61.89.208\nMessage Wall:65.83.142.236\nMessage Wall:65.88.123.136\nMessage Wall:65.93.139.254\nMessage Wall:65.93.5.133\nMessage Wall:65.93.5.181\nMessage Wall:65.94.21.193\nMessage Wall:65.94.28.169\nMessage Wall:65.99.49.76\nMessage Wall:66.102.9.18\nMessage Wall:66.109.235.218\nMessage Wall:66.128.80.87\nMessage Wall:66.128.85.223\nMessage Wall:66.130.208.43\nMessage Wall:66.131.175.6\nMessage Wall:66.131.205.193\nMessage Wall:66.159.117.193\nMessage Wall:66.159.119.66\nMessage Wall:66.162.11.146\nMessage Wall:66.168.55.37\nMessage Wall:66.168.96.134\nMessage Wall:66.169.121.63\nMessage Wall:66.176.216.182\nMessage Wall:66.176.42.239\nMessage Wall:66.188.175.186\nMessage Wall:66.188.76.97\nMessage Wall:66.189.14.112\nMessage Wall:66.189.216.231\nMessage Wall:66.190.101.194\nMessage Wall:66.190.161.55\nMessage Wall:66.191.249.64\nMessage Wall:66.191.253.76\nMessage Wall:66.206.61.69\nMessage Wall:66.215.76.23\nMessage Wall:66.222.151.72\nMessage Wall:66.222.218.15\nMessage Wall:66.222.239.56\nMessage Wall:66.225.115.2\nMessage Wall:66.226.42.175\nMessage Wall:66.229.135.252\nMessage Wall:66.229.94.11\nMessage Wall:66.230.116.61\nMessage Wall:66.232.70.198\nMessage Wall:66.234.221.45\nMessage Wall:66.239.62.72\nMessage Wall:66.24.36.39\nMessage Wall:66.24.92.194\nMessage Wall:66.241.163.128\nMessage Wall:66.241.32.158\nMessage Wall:66.244.83.13\nMessage Wall:66.249.80.64\nMessage Wall:66.249.80.72\nMessage Wall:66.249.81.201\nMessage Wall:66.249.81.43\nMessage Wall:66.249.82.197\nMessage Wall:66.249.82.221\nMessage Wall:66.249.82.231\nMessage Wall:66.249.83.142\nMessage Wall:66.249.83.160\nMessage Wall:66.249.83.162\nMessage Wall:66.249.83.202\nMessage Wall:66.249.83.207\nMessage Wall:66.249.83.213\nMessage Wall:66.249.83.226\nMessage Wall:66.249.83.228\nMessage Wall:66.249.83.232\nMessage Wall:66.249.84.170\nMessage Wall:66.249.88.140\nMessage Wall:66.249.88.185\nMessage Wall:66.249.93.154\nMessage Wall:66.249.93.187\nMessage Wall:66.249.93.205\nMessage Wall:66.249.93.245\nMessage Wall:66.249.93.249\nMessage Wall:66.249.93.30\nMessage Wall:66.254.228.157\nMessage Wall:66.26.141.136\nMessage Wall:66.27.75.2\nMessage Wall:66.27.95.167\nMessage Wall:66.30.147.96\nMessage Wall:66.37.93.36\nMessage Wall:66.41.212.140\nMessage Wall:66.42.249.135\nMessage Wall:66.44.126.199\nMessage Wall:66.44.241.1\nMessage Wall:66.44.57.58\nMessage Wall:66.51.226.212\nMessage Wall:66.55.134.206\nMessage Wall:66.55.144.247\nMessage Wall:66.55.147.60\nMessage Wall:66.55.150.186\nMessage Wall:66.58.168.34\nMessage Wall:66.58.215.98\nMessage Wall:66.60.139.90\nMessage Wall:66.61.13.198\nMessage Wall:66.63.118.65\nMessage Wall:66.66.134.21\nMessage Wall:66.68.137.254\nMessage Wall:66.68.17.185\nMessage Wall:66.68.32.91\nMessage Wall:66.69.126.147\nMessage Wall:66.69.14.10\nMessage Wall:66.74.41.156\nMessage Wall:66.76.53.124\nMessage Wall:66.8.170.192\nMessage Wall:66.87.100.166\nMessage Wall:66.87.115.120\nMessage Wall:66.87.115.38\nMessage Wall:66.87.125.67\nMessage Wall:66.87.153.243\nMessage Wall:66.87.153.65\nMessage Wall:66.87.18.159\nMessage Wall:66.87.69.74\nMessage Wall:66.87.70.202\nMessage Wall:66.91.243.93\nMessage Wall:67.0.108.35\nMessage Wall:67.0.169.78\nMessage Wall:67.1.161.75\nMessage Wall:67.1.181.13\nMessage Wall:67.1.191.215\nMessage Wall:67.10.115.226\nMessage Wall:67.11.0.20\nMessage Wall:67.11.160.177\nMessage Wall:67.11.166.12\nMessage Wall:67.11.244.118\nMessage Wall:67.137.57.251\nMessage Wall:67.139.51.110\nMessage Wall:67.149.124.224\nMessage Wall:67.149.225.251\nMessage Wall:67.149.240.15\nMessage Wall:67.159.138.73\nMessage Wall:67.159.147.31\nMessage Wall:67.160.16.242\nMessage Wall:67.160.185.247\nMessage Wall:67.160.188.96\nMessage Wall:67.160.70.175\nMessage Wall:67.161.119.159\nMessage Wall:67.161.128.133\nMessage Wall:67.161.210.2\nMessage Wall:67.161.218.143\nMessage Wall:67.161.40.245\nMessage Wall:67.163.0.219\nMessage Wall:67.164.154.48\nMessage Wall:67.164.195.44\nMessage Wall:67.164.206.232\nMessage Wall:67.164.5.39\nMessage Wall:67.165.113.178\nMessage Wall:67.165.239.95\nMessage Wall:67.166.26.205\nMessage Wall:67.166.83.81\nMessage Wall:67.166.89.53\nMessage Wall:67.167.44.73\nMessage Wall:67.168.104.32\nMessage Wall:67.168.182.173\nMessage Wall:67.168.197.251\nMessage Wall:67.169.13.177\nMessage Wall:67.169.171.204\nMessage Wall:67.169.48.209\nMessage Wall:67.169.81.195\nMessage Wall:67.170.141.141\nMessage Wall:67.171.222.85\nMessage Wall:67.171.253.40\nMessage Wall:67.171.51.23\nMessage Wall:67.171.97.22\nMessage Wall:67.172.222.141\nMessage Wall:67.172.68.198\nMessage Wall:67.172.85.143\nMessage Wall:67.173.244.175\nMessage Wall:67.174.149.152\nMessage Wall:67.174.164.203\nMessage Wall:67.174.199.180\nMessage Wall:67.174.205.231\nMessage Wall:67.177.174.23\nMessage Wall:67.177.33.248\nMessage Wall:67.177.35.40\nMessage Wall:67.180.178.100\nMessage Wall:67.180.204.10\nMessage Wall:67.180.248.214\nMessage Wall:67.180.73.121\nMessage Wall:67.181.26.155\nMessage Wall:67.181.50.200\nMessage Wall:67.181.93.38\nMessage Wall:67.182.165.228\nMessage Wall:67.182.254.223\nMessage Wall:67.182.83.43\nMessage Wall:67.183.128.177\nMessage Wall:67.183.189.9\nMessage Wall:67.184.101.48\nMessage Wall:67.184.107.44\nMessage Wall:67.184.126.212\nMessage Wall:67.184.27.21\nMessage Wall:67.185.137.68\nMessage Wall:67.185.188.136\nMessage Wall:67.185.212.65\nMessage Wall:67.185.243.235\nMessage Wall:67.185.33.198\nMessage Wall:67.186.119.69\nMessage Wall:67.186.92.128\nMessage Wall:67.187.119.225\nMessage Wall:67.187.135.103\nMessage Wall:67.187.72.103\nMessage Wall:67.189.1.156\nMessage Wall:67.190.122.25\nMessage Wall:67.190.23.170\nMessage Wall:67.190.51.3\nMessage Wall:67.191.15.203\nMessage Wall:67.191.203.216\nMessage Wall:67.191.65.134\nMessage Wall:67.193.181.150\nMessage Wall:67.193.229.113\nMessage Wall:67.193.23.156\nMessage Wall:67.193.41.29\nMessage Wall:67.2.106.100\nMessage Wall:67.2.213.99\nMessage Wall:67.2.40.124\nMessage Wall:67.204.234.13\nMessage Wall:67.21.153.142\nMessage Wall:67.210.152.252\nMessage Wall:67.210.67.219\nMessage Wall:67.210.67.44\nMessage Wall:67.212.112.43\nMessage Wall:67.214.248.82\nMessage Wall:67.215.158.96\nMessage Wall:67.216.132.92\nMessage Wall:67.217.13.16\nMessage Wall:67.223.23.220\nMessage Wall:67.224.196.161\nMessage Wall:67.225.125.199\nMessage Wall:67.235.169.89\nMessage Wall:67.237.190.20\nMessage Wall:67.240.237.93\nMessage Wall:67.242.45.244\nMessage Wall:67.244.34.143\nMessage Wall:67.246.150.159\nMessage Wall:67.246.176.164\nMessage Wall:67.246.75.118\nMessage Wall:67.247.139.249\nMessage Wall:67.247.165.196\nMessage Wall:67.247.8.133\nMessage Wall:67.248.233.10\nMessage Wall:67.252.29.149\nMessage Wall:67.252.78.59\nMessage Wall:67.253.29.115\nMessage Wall:67.255.106.207\nMessage Wall:67.255.214.226\nMessage Wall:67.255.252.24\nMessage Wall:67.42.133.173\nMessage Wall:67.43.18.62\nMessage Wall:67.43.240.161\nMessage Wall:67.43.245.186\nMessage Wall:67.5.189.128\nMessage Wall:67.50.129.194\nMessage Wall:67.60.110.51\nMessage Wall:67.60.62.142\nMessage Wall:67.61.118.123\nMessage Wall:67.61.174.117\nMessage Wall:67.61.20.180\nMessage Wall:67.61.62.98\nMessage Wall:67.7.240.89\nMessage Wall:67.71.180.138\nMessage Wall:67.71.96.188\nMessage Wall:67.79.115.98\nMessage Wall:67.8.106.170\nMessage Wall:67.8.161.24\nMessage Wall:67.8.222.213\nMessage Wall:67.8.85.246\nMessage Wall:67.87.64.184\nMessage Wall:68.0.149.112\nMessage Wall:68.0.91.140\nMessage Wall:68.1.71.50\nMessage Wall:68.10.117.232\nMessage Wall:68.10.142.38\nMessage Wall:68.10.144.222\nMessage Wall:68.102.179.198\nMessage Wall:68.103.167.5\nMessage Wall:68.103.183.35\nMessage Wall:68.103.83.242\nMessage Wall:68.104.25.123\nMessage Wall:68.104.67.140\nMessage Wall:68.106.3.62\nMessage Wall:68.106.42.187\nMessage Wall:68.107.130.39\nMessage Wall:68.107.236.225\nMessage Wall:68.107.53.197\nMessage Wall:68.108.126.81\nMessage Wall:68.108.157.99\nMessage Wall:68.108.171.200\nMessage Wall:68.108.40.15\nMessage Wall:68.108.44.178\nMessage Wall:68.109.144.230\nMessage Wall:68.109.94.234\nMessage Wall:68.110.115.68\nMessage Wall:68.110.3.225\nMessage Wall:68.110.93.194\nMessage Wall:68.111.162.55\nMessage Wall:68.111.71.226\nMessage Wall:68.111.89.35\nMessage Wall:68.112.191.116\nMessage Wall:68.112.230.72\nMessage Wall:68.112.82.234\nMessage Wall:68.113.17.78\nMessage Wall:68.113.198.130\nMessage Wall:68.113.199.191\nMessage Wall:68.113.20.202\nMessage Wall:68.113.207.201\nMessage Wall:68.113.209.188\nMessage Wall:68.113.96.23\nMessage Wall:68.114.132.130\nMessage Wall:68.114.96.82\nMessage Wall:68.116.195.166\nMessage Wall:68.117.180.204\nMessage Wall:68.117.244.13\nMessage Wall:68.118.179.157\nMessage Wall:68.119.220.153\nMessage Wall:68.119.83.96\nMessage Wall:68.12.136.17\nMessage Wall:68.12.170.86\nMessage Wall:68.13.142.144\nMessage Wall:68.13.172.68\nMessage Wall:68.13.6.26\nMessage Wall:68.13.88.163\nMessage Wall:68.13.96.223\nMessage Wall:68.131.45.110\nMessage Wall:68.134.142.87\nMessage Wall:68.135.41.54\nMessage Wall:68.14.159.113\nMessage Wall:68.14.83.51\nMessage Wall:68.14.85.35\nMessage Wall:68.144.118.152\nMessage Wall:68.144.122.219\nMessage Wall:68.144.173.78\nMessage Wall:68.144.188.95\nMessage Wall:68.144.19.154\nMessage Wall:68.144.204.5\nMessage Wall:68.144.47.60\nMessage Wall:68.145.169.178\nMessage Wall:68.145.72.142\nMessage Wall:68.146.12.101\nMessage Wall:68.146.121.43\nMessage Wall:68.146.180.176\nMessage Wall:68.146.219.197\nMessage Wall:68.147.216.129\nMessage Wall:68.147.253.67\nMessage Wall:68.147.27.98\nMessage Wall:68.147.68.31\nMessage Wall:68.148.106.117\nMessage Wall:68.148.13.193\nMessage Wall:68.148.188.199\nMessage Wall:68.148.72.31\nMessage Wall:68.149.154.203\nMessage Wall:68.149.172.166\nMessage Wall:68.149.19.244\nMessage Wall:68.15.80.184\nMessage Wall:68.150.13.82\nMessage Wall:68.150.167.0\nMessage Wall:68.151.40.139\nMessage Wall:68.156.159.10\nMessage Wall:68.172.36.25\nMessage Wall:68.179.14.169\nMessage Wall:68.180.54.48\nMessage Wall:68.181.206.198\nMessage Wall:68.184.82.229\nMessage Wall:68.185.195.167\nMessage Wall:68.185.208.156\nMessage Wall:68.186.18.233\nMessage Wall:68.186.193.212\nMessage Wall:68.186.49.179\nMessage Wall:68.186.99.18\nMessage Wall:68.187.181.113\nMessage Wall:68.187.65.63\nMessage Wall:68.187.89.63\nMessage Wall:68.189.254.244\nMessage Wall:68.189.72.32\nMessage Wall:68.190.157.134\nMessage Wall:68.190.163.153\nMessage Wall:68.190.191.61\nMessage Wall:68.191.44.201\nMessage Wall:68.194.33.253\nMessage Wall:68.197.163.121\nMessage Wall:68.199.182.232\nMessage Wall:68.199.33.191\nMessage Wall:68.2.189.249\nMessage Wall:68.2.20.139\nMessage Wall:68.2.203.84\nMessage Wall:68.2.237.21\nMessage Wall:68.2.60.24\nMessage Wall:68.2.97.86\nMessage Wall:68.202.126.230\nMessage Wall:68.202.23.19\nMessage Wall:68.203.15.193\nMessage Wall:68.203.194.228\nMessage Wall:68.203.21.99\nMessage Wall:68.203.23.238\nMessage Wall:68.204.186.139\nMessage Wall:68.205.182.114\nMessage Wall:68.205.94.95\nMessage Wall:68.217.207.134\nMessage Wall:68.224.129.28\nMessage Wall:68.224.193.99\nMessage Wall:68.224.239.130\nMessage Wall:68.225.170.238\nMessage Wall:68.225.207.50\nMessage Wall:68.225.238.60\nMessage Wall:68.226.181.152\nMessage Wall:68.226.6.218\nMessage Wall:68.227.123.98\nMessage Wall:68.227.171.172\nMessage Wall:68.227.184.60\nMessage Wall:68.228.245.57\nMessage Wall:68.228.30.142\nMessage Wall:68.230.93.94\nMessage Wall:68.230.98.108\nMessage Wall:68.231.187.34\nMessage Wall:68.231.58.91\nMessage Wall:68.231.64.187\nMessage Wall:68.232.90.144\nMessage Wall:68.235.174.86\nMessage Wall:68.235.233.164\nMessage Wall:68.238.154.135\nMessage Wall:68.238.154.65\nMessage Wall:68.238.241.131\nMessage Wall:68.3.151.55\nMessage Wall:68.32.191.33\nMessage Wall:68.36.105.230\nMessage Wall:68.36.18.160\nMessage Wall:68.36.47.66\nMessage Wall:68.36.59.16\nMessage Wall:68.37.167.4\nMessage Wall:68.37.222.80\nMessage Wall:68.38.133.152\nMessage Wall:68.38.237.139\nMessage Wall:68.39.110.18\nMessage Wall:68.39.115.18\nMessage Wall:68.39.155.229\nMessage Wall:68.4.190.124\nMessage Wall:68.40.124.52\nMessage Wall:68.40.212.252\nMessage Wall:68.41.87.66\nMessage Wall:68.42.0.41\nMessage Wall:68.44.193.209\nMessage Wall:68.46.7.130\nMessage Wall:68.47.185.182\nMessage Wall:68.48.31.105\nMessage Wall:68.48.96.75\nMessage Wall:68.49.122.15\nMessage Wall:68.49.171.49\nMessage Wall:68.50.154.36\nMessage Wall:68.52.237.102\nMessage Wall:68.53.40.192\nMessage Wall:68.53.41.140\nMessage Wall:68.54.160.158\nMessage Wall:68.57.114.109\nMessage Wall:68.57.186.228\nMessage Wall:68.58.110.250\nMessage Wall:68.59.100.11\nMessage Wall:68.59.200.96\nMessage Wall:68.6.124.74\nMessage Wall:68.6.164.27\nMessage Wall:68.60.42.95\nMessage Wall:68.61.65.248\nMessage Wall:68.62.76.55\nMessage Wall:68.63.143.240\nMessage Wall:68.69.150.22\nMessage Wall:68.7.136.232\nMessage Wall:68.7.174.60\nMessage Wall:68.7.219.179\nMessage Wall:68.7.88.175\nMessage Wall:68.70.4.213\nMessage Wall:68.71.31.46\nMessage Wall:68.80.135.163\nMessage Wall:68.81.3.221\nMessage Wall:68.83.116.126\nMessage Wall:68.84.254.127\nMessage Wall:68.9.137.94\nMessage Wall:68.9.215.6\nMessage Wall:68.96.93.199\nMessage Wall:68.97.224.159\nMessage Wall:68.97.23.141\nMessage Wall:68.97.27.130\nMessage Wall:68.97.32.160\nMessage Wall:68.97.70.132\nMessage Wall:68.97.91.121\nMessage Wall:68.98.207.36\nMessage Wall:68.98.28.9\nMessage Wall:68.98.94.249\nMessage Wall:68.99.148.100\nMessage Wall:69.10.114.39\nMessage Wall:69.10.163.63\nMessage Wall:69.11.148.197\nMessage Wall:69.11.148.224\nMessage Wall:69.11.150.23\nMessage Wall:69.11.36.67\nMessage Wall:69.115.181.180\nMessage Wall:69.117.113.121\nMessage Wall:69.117.139.166\nMessage Wall:69.117.145.212\nMessage Wall:69.119.152.145\nMessage Wall:69.119.65.84\nMessage Wall:69.120.80.62\nMessage Wall:69.121.65.134\nMessage Wall:69.122.71.238\nMessage Wall:69.123.253.204\nMessage Wall:69.125.156.220\nMessage Wall:69.126.215.222\nMessage Wall:69.127.102.167\nMessage Wall:69.129.144.208\nMessage Wall:69.137.151.88\nMessage Wall:69.137.201.96\nMessage Wall:69.137.46.160\nMessage Wall:69.139.95.120\nMessage Wall:69.14.53.150\nMessage Wall:69.140.3.215\nMessage Wall:69.141.172.169\nMessage Wall:69.142.130.220\nMessage Wall:69.143.103.65\nMessage Wall:69.143.202.5\nMessage Wall:69.144.110.181\nMessage Wall:69.144.25.141\nMessage Wall:69.146.78.63\nMessage Wall:69.156.28.65\nMessage Wall:69.157.147.240\nMessage Wall:69.159.13.145\nMessage Wall:69.159.202.165\nMessage Wall:69.159.59.118\nMessage Wall:69.165.140.155\nMessage Wall:69.166.47.134\nMessage Wall:69.172.149.42\nMessage Wall:69.172.164.187\nMessage Wall:69.178.208.220\nMessage Wall:69.178.7.165\nMessage Wall:69.178.9.54\nMessage Wall:69.180.155.90\nMessage Wall:69.180.44.158\nMessage Wall:69.180.80.216\nMessage Wall:69.181.60.198\nMessage Wall:69.193.69.78\nMessage Wall:69.196.162.221\nMessage Wall:69.204.184.4\nMessage Wall:69.204.191.197\nMessage Wall:69.206.144.189\nMessage Wall:69.242.200.158\nMessage Wall:69.242.45.188\nMessage Wall:69.245.154.200\nMessage Wall:69.246.98.189\nMessage Wall:69.248.222.96\nMessage Wall:69.25.45.6\nMessage Wall:69.250.13.61\nMessage Wall:69.253.20.11\nMessage Wall:69.253.84.176\nMessage Wall:69.255.129.8\nMessage Wall:69.255.206.29\nMessage Wall:69.255.71.15\nMessage Wall:69.29.216.198\nMessage Wall:69.29.255.59\nMessage Wall:69.39.14.178\nMessage Wall:69.4.101.112\nMessage Wall:69.40.70.1\nMessage Wall:69.5.224.188\nMessage Wall:69.50.163.228\nMessage Wall:69.56.101.67\nMessage Wall:69.70.13.118\nMessage Wall:69.73.10.17\nMessage Wall:69.73.60.87\nMessage Wall:69.74.29.254\nMessage Wall:69.76.18.215\nMessage Wall:69.84.108.78\nMessage Wall:69.85.207.245\nMessage Wall:69.85.216.162\nMessage Wall:69.91.139.151\nMessage Wall:69.91.64.202\nMessage Wall:69.92.166.111\nMessage Wall:69.92.168.21\nMessage Wall:69.92.188.170\nMessage Wall:69.92.69.114\nMessage Wall:69.92.88.178\nMessage Wall:6 Xero 9\nMessage Wall:70.105.176.176\nMessage Wall:70.106.228.82\nMessage Wall:70.109.180.228\nMessage Wall:70.112.233.147\nMessage Wall:70.113.180.72\nMessage Wall:70.113.24.174\nMessage Wall:70.113.33.176\nMessage Wall:70.113.58.190\nMessage Wall:70.114.172.218\nMessage Wall:70.114.176.75\nMessage Wall:70.114.225.55\nMessage Wall:70.115.132.127\nMessage Wall:70.115.15.126\nMessage Wall:70.115.192.49\nMessage Wall:70.117.97.13\nMessage Wall:70.119.139.111\nMessage Wall:70.122.217.227\nMessage Wall:70.122.220.123\nMessage Wall:70.123.111.143\nMessage Wall:70.123.124.151\nMessage Wall:70.123.197.42\nMessage Wall:70.124.63.78\nMessage Wall:70.126.167.133\nMessage Wall:70.127.191.90\nMessage Wall:70.127.196.140\nMessage Wall:70.138.193.222\nMessage Wall:70.138.97.190\nMessage Wall:70.139.211.38\nMessage Wall:70.140.39.131\nMessage Wall:70.15.178.195\nMessage Wall:70.15.250.41\nMessage Wall:70.160.108.1\nMessage Wall:70.160.78.44\nMessage Wall:70.161.131.198\nMessage Wall:70.161.136.112\nMessage Wall:70.162.83.20\nMessage Wall:70.164.99.62\nMessage Wall:70.167.57.234\nMessage Wall:70.171.11.149\nMessage Wall:70.171.48.59\nMessage Wall:70.171.49.137\nMessage Wall:70.173.1.224\nMessage Wall:70.173.129.249\nMessage Wall:70.176.249.91\nMessage Wall:70.176.25.142\nMessage Wall:70.176.56.155\nMessage Wall:70.177.123.20\nMessage Wall:70.177.141.251\nMessage Wall:70.177.228.111\nMessage Wall:70.177.27.217\nMessage Wall:70.177.9.11\nMessage Wall:70.179.129.16\nMessage Wall:70.179.144.147\nMessage Wall:70.179.178.5\nMessage Wall:70.179.48.49\nMessage Wall:70.180.91.46\nMessage Wall:70.181.112.128\nMessage Wall:70.181.160.186\nMessage Wall:70.181.224.118\nMessage Wall:70.181.57.111\nMessage Wall:70.183.187.209\nMessage Wall:70.186.169.231\nMessage Wall:70.187.151.32\nMessage Wall:70.189.158.152\nMessage Wall:70.189.209.176\nMessage Wall:70.189.80.37\nMessage Wall:70.191.166.223\nMessage Wall:70.191.175.243\nMessage Wall:70.191.176.34\nMessage Wall:70.191.181.40\nMessage Wall:70.191.82.171\nMessage Wall:70.192.133.123\nMessage Wall:70.192.140.186\nMessage Wall:70.192.205.38\nMessage Wall:70.193.102.235\nMessage Wall:70.193.16.117\nMessage Wall:70.193.16.28\nMessage Wall:70.193.16.46\nMessage Wall:70.193.165.52\nMessage Wall:70.193.69.194\nMessage Wall:70.194.1.238\nMessage Wall:70.194.128.89\nMessage Wall:70.194.229.46\nMessage Wall:70.194.24.65\nMessage Wall:70.194.3.217\nMessage Wall:70.194.6.20\nMessage Wall:70.194.7.140\nMessage Wall:70.195.192.120\nMessage Wall:70.195.6.123\nMessage Wall:70.196.132.123\nMessage Wall:70.197.197.172\nMessage Wall:70.198.65.215\nMessage Wall:70.198.66.150\nMessage Wall:70.198.68.231\nMessage Wall:70.198.70.123\nMessage Wall:70.198.70.236\nMessage Wall:70.198.71.214\nMessage Wall:70.198.71.44\nMessage Wall:70.198.72.113\nMessage Wall:70.198.72.154\nMessage Wall:70.198.73.202\nMessage Wall:70.198.73.224\nMessage Wall:70.198.76.164\nMessage Wall:70.198.76.181\nMessage Wall:70.198.76.215\nMessage Wall:70.198.76.29\nMessage Wall:70.198.77.37\nMessage Wall:70.199.128.44\nMessage Wall:70.199.148.185\nMessage Wall:70.199.3.137\nMessage Wall:70.199.67.230\nMessage Wall:70.208.230.139\nMessage Wall:70.209.141.58\nMessage Wall:70.210.65.232\nMessage Wall:70.210.67.241\nMessage Wall:70.214.32.228\nMessage Wall:70.24.59.239\nMessage Wall:70.25.67.73\nMessage Wall:70.27.240.162\nMessage Wall:70.27.84.212\nMessage Wall:70.30.80.224\nMessage Wall:70.30.82.255\nMessage Wall:70.30.83.108\nMessage Wall:70.31.81.0\nMessage Wall:70.33.54.210\nMessage Wall:70.39.7.237\nMessage Wall:70.48.61.14\nMessage Wall:70.49.109.89\nMessage Wall:70.49.162.9\nMessage Wall:70.49.167.148\nMessage Wall:70.50.149.162\nMessage Wall:70.50.2.237\nMessage Wall:70.52.115.17\nMessage Wall:70.53.197.246\nMessage Wall:70.54.117.31\nMessage Wall:70.54.137.215\nMessage Wall:70.54.139.23\nMessage Wall:70.54.47.154\nMessage Wall:70.55.140.32\nMessage Wall:70.62.235.242\nMessage Wall:70.64.153.71\nMessage Wall:70.64.201.170\nMessage Wall:70.65.218.61\nMessage Wall:70.67.221.124\nMessage Wall:70.67.79.38\nMessage Wall:70.68.14.60\nMessage Wall:70.68.43.197\nMessage Wall:70.68.65.72\nMessage Wall:70.69.0.45\nMessage Wall:70.69.170.20\nMessage Wall:70.69.172.43\nMessage Wall:70.69.24.137\nMessage Wall:70.70.150.160\nMessage Wall:70.71.131.151\nMessage Wall:70.71.243.188\nMessage Wall:70.72.20.206\nMessage Wall:70.72.236.68\nMessage Wall:70.72.46.245\nMessage Wall:70.73.57.13\nMessage Wall:70.73.69.16\nMessage Wall:70.74.166.173\nMessage Wall:70.74.188.18\nMessage Wall:70.74.249.36\nMessage Wall:70.77.49.115\nMessage Wall:70.77.52.227\nMessage Wall:70.77.56.238\nMessage Wall:70.77.56.28\nMessage Wall:70.78.139.111\nMessage Wall:70.78.210.95\nMessage Wall:70.79.185.86\nMessage Wall:70.81.129.24\nMessage Wall:70.81.138.13\nMessage Wall:70.81.172.206\nMessage Wall:70.91.201.82\nMessage Wall:70.92.188.149\nMessage Wall:70.93.34.35\nMessage Wall:70.94.105.151\nMessage Wall:70.94.8.80\nMessage Wall:70.95.141.87\nMessage Wall:70.98.52.58\nMessage Wall:71.0.105.77\nMessage Wall:71.0.188.132\nMessage Wall:71.10.143.212\nMessage Wall:71.10.148.215\nMessage Wall:71.10.90.94\nMessage Wall:71.102.210.73\nMessage Wall:71.104.58.19\nMessage Wall:71.108.37.140\nMessage Wall:71.11.106.184\nMessage Wall:71.114.112.105\nMessage Wall:71.114.112.182\nMessage Wall:71.114.112.198\nMessage Wall:71.114.112.234\nMessage Wall:71.114.112.90\nMessage Wall:71.114.98.189\nMessage Wall:71.117.153.27\nMessage Wall:71.119.87.114\nMessage Wall:71.120.217.51\nMessage Wall:71.123.142.45\nMessage Wall:71.123.165.249\nMessage Wall:71.125.245.12\nMessage Wall:71.125.248.215\nMessage Wall:71.125.248.67\nMessage Wall:71.13.214.151\nMessage Wall:71.13.23.42\nMessage Wall:71.14.131.130\nMessage Wall:71.14.212.34\nMessage Wall:71.14.76.214\nMessage Wall:71.145.207.43\nMessage Wall:71.145.208.121\nMessage Wall:71.15.15.55\nMessage Wall:71.15.192.118\nMessage Wall:71.161.65.133\nMessage Wall:71.162.254.15\nMessage Wall:71.163.189.146\nMessage Wall:71.163.21.98\nMessage Wall:71.163.99.220\nMessage Wall:71.164.113.67\nMessage Wall:71.164.172.66\nMessage Wall:71.164.96.187\nMessage Wall:71.164.97.184\nMessage Wall:71.165.145.108\nMessage Wall:71.17.149.133\nMessage Wall:71.17.244.202\nMessage Wall:71.172.156.180\nMessage Wall:71.174.108.102\nMessage Wall:71.174.7.65\nMessage Wall:71.175.97.11\nMessage Wall:71.176.76.218\nMessage Wall:71.177.100.155\nMessage Wall:71.178.30.105\nMessage Wall:71.179.25.28\nMessage Wall:71.179.9.18\nMessage Wall:71.180.180.109\nMessage Wall:71.180.64.90\nMessage Wall:71.184.155.170\nMessage Wall:71.184.228.240\nMessage Wall:71.184.251.177\nMessage Wall:71.185.225.61\nMessage Wall:71.185.28.177\nMessage Wall:71.185.36.203\nMessage Wall:71.19.191.130\nMessage Wall:71.190.237.174\nMessage Wall:71.191.88.208\nMessage Wall:71.192.234.73\nMessage Wall:71.194.44.102\nMessage Wall:71.194.66.202\nMessage Wall:71.194.78.95\nMessage Wall:71.194.79.82\nMessage Wall:71.195.42.175\nMessage Wall:71.195.74.180\nMessage Wall:71.195.96.161\nMessage Wall:71.196.132.110\nMessage Wall:71.196.203.39\nMessage Wall:71.197.134.170\nMessage Wall:71.198.118.111\nMessage Wall:71.198.193.87\nMessage Wall:71.199.250.29\nMessage Wall:71.2.247.208\nMessage Wall:71.20.209.25\nMessage Wall:71.20.255.252\nMessage Wall:71.20.9.94\nMessage Wall:71.201.38.235\nMessage Wall:71.202.108.210\nMessage Wall:71.202.183.229\nMessage Wall:71.202.215.29\nMessage Wall:71.202.29.10\nMessage Wall:71.204.148.157\nMessage Wall:71.205.105.177\nMessage Wall:71.205.128.155\nMessage Wall:71.205.136.174\nMessage Wall:71.205.222.174\nMessage Wall:71.206.0.14\nMessage Wall:71.206.159.168\nMessage Wall:71.206.31.237\nMessage Wall:71.21.3.159\nMessage Wall:71.211.177.73\nMessage Wall:71.211.255.92\nMessage Wall:71.211.97.25\nMessage Wall:71.215.49.24\nMessage Wall:71.217.112.241\nMessage Wall:71.219.214.20\nMessage Wall:71.220.182.204\nMessage Wall:71.222.113.251\nMessage Wall:71.224.126.237\nMessage Wall:71.226.45.144\nMessage Wall:71.227.0.131\nMessage Wall:71.227.133.181\nMessage Wall:71.227.156.140\nMessage Wall:71.227.176.100\nMessage Wall:71.228.124.253\nMessage Wall:71.228.151.147\nMessage Wall:71.229.151.228\nMessage Wall:71.229.195.220\nMessage Wall:71.229.247.47\nMessage Wall:71.231.12.141\nMessage Wall:71.231.185.222\nMessage Wall:71.231.50.26\nMessage Wall:71.232.197.115\nMessage Wall:71.232.241.210\nMessage Wall:71.233.88.91\nMessage Wall:71.235.240.105\nMessage Wall:71.236.143.150\nMessage Wall:71.236.215.81\nMessage Wall:71.236.251.12\nMessage Wall:71.237.103.217\nMessage Wall:71.237.122.197\nMessage Wall:71.237.126.192\nMessage Wall:71.237.162.111\nMessage Wall:71.237.56.170\nMessage Wall:71.237.73.209\nMessage Wall:71.238.112.64\nMessage Wall:71.238.35.118\nMessage Wall:71.244.135.104\nMessage Wall:71.244.203.231\nMessage Wall:71.244.249.123\nMessage Wall:71.245.80.141\nMessage Wall:71.251.56.156\nMessage Wall:71.252.162.220\nMessage Wall:71.255.117.191\nMessage Wall:71.28.204.115\nMessage Wall:71.29.203.162\nMessage Wall:71.3.77.160\nMessage Wall:71.31.6.88\nMessage Wall:71.33.184.92\nMessage Wall:71.34.130.9\nMessage Wall:71.35.180.101\nMessage Wall:71.38.73.114\nMessage Wall:71.40.21.238\nMessage Wall:71.41.231.28\nMessage Wall:71.42.172.70\nMessage Wall:71.45.31.119\nMessage Wall:71.46.56.7\nMessage Wall:71.47.138.52\nMessage Wall:71.47.205.204\nMessage Wall:71.47.27.251\nMessage Wall:71.47.3.48\nMessage Wall:71.49.76.64\nMessage Wall:71.51.221.138\nMessage Wall:71.51.37.51\nMessage Wall:71.53.144.104\nMessage Wall:71.53.148.157\nMessage Wall:71.57.181.142\nMessage Wall:71.59.112.131\nMessage Wall:71.59.203.250\nMessage Wall:71.59.226.75\nMessage Wall:71.60.139.59\nMessage Wall:71.60.253.115\nMessage Wall:71.62.122.23\nMessage Wall:71.63.45.228\nMessage Wall:71.63.99.146\nMessage Wall:71.65.58.72\nMessage Wall:71.65.87.64\nMessage Wall:71.67.161.171\nMessage Wall:71.71.201.56\nMessage Wall:71.75.153.69\nMessage Wall:71.76.244.78\nMessage Wall:71.77.2.91\nMessage Wall:71.77.207.83\nMessage Wall:71.79.238.64\nMessage Wall:71.79.94.185\nMessage Wall:71.8.139.216\nMessage Wall:71.8.80.51\nMessage Wall:71.81.200.5\nMessage Wall:71.82.114.224\nMessage Wall:71.82.56.17\nMessage Wall:71.83.162.87\nMessage Wall:71.84.127.154\nMessage Wall:71.84.13.67\nMessage Wall:71.84.60.85\nMessage Wall:71.85.247.75\nMessage Wall:71.85.53.206\nMessage Wall:71.86.236.132\nMessage Wall:71.86.95.130\nMessage Wall:71.86.96.126\nMessage Wall:71.88.114.133\nMessage Wall:71.89.74.119\nMessage Wall:71.89.81.10\nMessage Wall:71.9.149.2\nMessage Wall:71.9.25.119\nMessage Wall:71.90.0.70\nMessage Wall:71.90.103.106\nMessage Wall:71.90.6.118\nMessage Wall:71.90.98.100\nMessage Wall:71.91.113.48\nMessage Wall:71.91.123.27\nMessage Wall:71.91.156.194\nMessage Wall:71.91.80.103\nMessage Wall:71.92.125.107\nMessage Wall:71.92.98.135\nMessage Wall:71.93.237.247\nMessage Wall:71.93.85.45\nMessage Wall:71.93.99.39\nMessage Wall:71.94.39.143\nMessage Wall:71.95.100.70\nMessage Wall:71.95.2.2\nMessage Wall:71.95.53.222\nMessage Wall:71.96.129.156\nMessage Wall:71.99.142.147\nMessage Wall:71.99.233.93\nMessage Wall:72.10.104.5\nMessage Wall:72.10.219.10\nMessage Wall:72.10.23.143\nMessage Wall:72.130.121.178\nMessage Wall:72.141.246.18\nMessage Wall:72.146.23.169\nMessage Wall:72.146.35.160\nMessage Wall:72.146.40.58\nMessage Wall:72.159.154.164\nMessage Wall:72.160.16.135\nMessage Wall:72.160.227.118\nMessage Wall:72.161.121.196\nMessage Wall:72.161.62.123\nMessage Wall:72.168.144.65\nMessage Wall:72.171.16.60\nMessage Wall:72.172.160.50\nMessage Wall:72.172.170.218\nMessage Wall:72.172.221.234\nMessage Wall:72.173.87.100\nMessage Wall:72.174.136.34\nMessage Wall:72.174.29.33\nMessage Wall:72.174.64.138\nMessage Wall:72.174.78.234\nMessage Wall:72.175.25.157\nMessage Wall:72.177.22.90\nMessage Wall:72.177.253.70\nMessage Wall:72.177.53.221\nMessage Wall:72.178.43.104\nMessage Wall:72.178.66.94\nMessage Wall:72.178.85.113\nMessage Wall:72.179.20.51\nMessage Wall:72.181.180.191\nMessage Wall:72.181.180.23\nMessage Wall:72.181.190.78\nMessage Wall:72.182.123.47\nMessage Wall:72.182.48.193\nMessage Wall:72.182.78.229\nMessage Wall:72.183.238.88\nMessage Wall:72.184.170.224\nMessage Wall:72.184.208.73\nMessage Wall:72.184.96.125\nMessage Wall:72.186.27.21\nMessage Wall:72.188.112.178\nMessage Wall:72.190.126.63\nMessage Wall:72.190.38.202\nMessage Wall:72.190.39.213\nMessage Wall:72.191.1.250\nMessage Wall:72.191.103.175\nMessage Wall:72.191.120.177\nMessage Wall:72.191.48.121\nMessage Wall:72.192.102.108\nMessage Wall:72.192.113.208\nMessage Wall:72.192.216.90\nMessage Wall:72.192.240.102\nMessage Wall:72.193.63.228\nMessage Wall:72.193.8.88\nMessage Wall:72.194.101.88\nMessage Wall:72.194.70.33\nMessage Wall:72.197.1.88\nMessage Wall:72.197.107.6\nMessage Wall:72.197.150.63\nMessage Wall:72.197.152.102\nMessage Wall:72.197.183.91\nMessage Wall:72.197.212.241\nMessage Wall:72.197.241.161\nMessage Wall:72.198.72.86\nMessage Wall:72.199.248.24\nMessage Wall:72.199.48.244\nMessage Wall:72.20.139.135\nMessage Wall:72.200.109.110\nMessage Wall:72.200.116.46\nMessage Wall:72.200.58.195\nMessage Wall:72.201.121.214\nMessage Wall:72.205.222.189\nMessage Wall:72.207.103.59\nMessage Wall:72.207.27.194\nMessage Wall:72.208.120.170\nMessage Wall:72.208.16.243\nMessage Wall:72.208.168.109\nMessage Wall:72.208.229.127\nMessage Wall:72.209.164.79\nMessage Wall:72.21.196.64\nMessage Wall:72.21.196.70\nMessage Wall:72.211.212.172\nMessage Wall:72.213.48.222\nMessage Wall:72.213.50.31\nMessage Wall:72.215.200.154\nMessage Wall:72.216.57.96\nMessage Wall:72.218.38.242\nMessage Wall:72.219.133.170\nMessage Wall:72.219.146.96\nMessage Wall:72.222.168.18\nMessage Wall:72.222.223.41\nMessage Wall:72.223.12.39\nMessage Wall:72.223.34.176\nMessage Wall:72.223.69.120\nMessage Wall:72.224.237.155\nMessage Wall:72.224.253.20\nMessage Wall:72.228.140.157\nMessage Wall:72.228.153.45\nMessage Wall:72.23.117.144\nMessage Wall:72.23.43.102\nMessage Wall:72.23.72.188\nMessage Wall:72.23.86.21\nMessage Wall:72.230.215.231\nMessage Wall:72.230.215.3\nMessage Wall:72.231.199.13\nMessage Wall:72.231.240.219\nMessage Wall:72.231.30.56\nMessage Wall:72.234.156.55\nMessage Wall:72.234.32.209\nMessage Wall:72.235.147.20\nMessage Wall:72.238.113.80\nMessage Wall:72.239.106.15\nMessage Wall:72.239.94.43\nMessage Wall:72.24.136.163\nMessage Wall:72.24.18.61\nMessage Wall:72.241.143.238\nMessage Wall:72.241.153.66\nMessage Wall:72.241.97.180\nMessage Wall:72.251.238.77\nMessage Wall:72.252.181.237\nMessage Wall:72.253.187.129\nMessage Wall:72.28.184.211\nMessage Wall:72.28.55.220\nMessage Wall:72.34.128.250\nMessage Wall:72.35.114.86\nMessage Wall:72.35.116.10\nMessage Wall:72.38.111.210\nMessage Wall:72.38.126.5\nMessage Wall:72.38.188.26\nMessage Wall:72.39.14.234\nMessage Wall:72.39.181.114\nMessage Wall:72.46.204.151\nMessage Wall:72.46.217.207\nMessage Wall:72.47.70.20\nMessage Wall:72.48.133.74\nMessage Wall:72.48.80.237\nMessage Wall:72.49.147.236\nMessage Wall:72.50.160.247\nMessage Wall:72.64.224.77\nMessage Wall:72.65.124.226\nMessage Wall:72.66.98.147\nMessage Wall:72.69.82.13\nMessage Wall:72.71.205.88\nMessage Wall:72.76.202.148\nMessage Wall:72.78.102.196\nMessage Wall:72.78.110.173\nMessage Wall:72.83.158.83\nMessage Wall:72.84.125.109\nMessage Wall:72.87.140.105\nMessage Wall:72.88.122.41\nMessage Wall:72.9.12.89\nMessage Wall:72.91.179.207\nMessage Wall:72.91.28.72\nMessage Wall:72.93.56.10\nMessage Wall:72.94.160.35\nMessage Wall:72.94.83.23\nMessage Wall:72.95.230.159\nMessage Wall:73.0.191.252\nMessage Wall:73.0.4.32\nMessage Wall:73.1.55.15\nMessage Wall:73.10.181.94\nMessage Wall:73.10.190.96\nMessage Wall:73.100.102.213\nMessage Wall:73.11.1.170\nMessage Wall:73.11.11.40\nMessage Wall:73.11.209.111\nMessage Wall:73.11.47.3\nMessage Wall:73.11.75.115\nMessage Wall:73.115.8.242\nMessage Wall:73.12.120.243\nMessage Wall:73.12.160.229\nMessage Wall:73.12.33.30\nMessage Wall:73.12.9.164\nMessage Wall:73.126.56.46\nMessage Wall:73.13.228.251\nMessage Wall:73.131.200.207\nMessage Wall:73.132.106.180\nMessage Wall:73.134.16.57\nMessage Wall:73.136.229.252\nMessage Wall:73.137.118.192\nMessage Wall:73.137.164.105\nMessage Wall:73.137.89.175\nMessage Wall:73.139.98.168\nMessage Wall:73.14.128.5\nMessage Wall:73.14.173.234\nMessage Wall:73.14.19.202\nMessage Wall:73.14.33.140\nMessage Wall:73.140.157.130\nMessage Wall:73.142.176.57\nMessage Wall:73.142.86.172\nMessage Wall:73.143.82.72\nMessage Wall:73.146.32.4\nMessage Wall:73.15.234.193\nMessage Wall:73.15.64.28\nMessage Wall:73.151.104.224\nMessage Wall:73.153.131.212\nMessage Wall:73.153.133.192\nMessage Wall:73.155.182.193\nMessage Wall:73.157.131.220\nMessage Wall:73.157.212.145\nMessage Wall:73.157.86.62\nMessage Wall:73.159.2.106\nMessage Wall:73.16.151.114\nMessage Wall:73.160.132.64\nMessage Wall:73.161.166.68\nMessage Wall:73.161.212.80\nMessage Wall:73.162.42.101\nMessage Wall:73.163.191.50\nMessage Wall:73.164.102.35\nMessage Wall:73.164.181.147\nMessage Wall:73.164.211.180\nMessage Wall:73.164.27.197\nMessage Wall:73.164.28.80\nMessage Wall:73.164.77.218\nMessage Wall:73.165.195.226\nMessage Wall:73.166.161.251\nMessage Wall:73.166.224.176\nMessage Wall:73.166.39.18\nMessage Wall:73.169.112.164\nMessage Wall:73.169.142.46\nMessage Wall:73.169.2.23\nMessage Wall:73.169.54.44\nMessage Wall:73.169.64.109\nMessage Wall:73.17.154.140\nMessage Wall:73.171.6.26\nMessage Wall:73.172.132.137\nMessage Wall:73.174.241.48\nMessage Wall:73.176.117.94\nMessage Wall:73.178.200.17\nMessage Wall:73.178.98.248\nMessage Wall:73.179.34.142\nMessage Wall:73.18.226.254\nMessage Wall:73.181.169.34\nMessage Wall:73.181.253.52\nMessage Wall:73.181.28.167\nMessage Wall:73.182.27.147\nMessage Wall:73.182.89.219\nMessage Wall:73.183.165.165\nMessage Wall:73.183.198.17\nMessage Wall:73.185.189.80\nMessage Wall:73.185.205.221\nMessage Wall:73.186.180.52\nMessage Wall:73.186.187.144\nMessage Wall:73.186.196.55\nMessage Wall:73.186.52.63\nMessage Wall:73.186.55.87\nMessage Wall:73.189.163.108\nMessage Wall:73.19.100.251\nMessage Wall:73.19.105.243\nMessage Wall:73.19.22.218\nMessage Wall:73.19.71.13\nMessage Wall:73.190.240.3\nMessage Wall:73.190.34.98\nMessage Wall:73.193.15.27\nMessage Wall:73.193.6.19\nMessage Wall:73.194.182.11\nMessage Wall:73.194.191.7\nMessage Wall:73.195.139.224\nMessage Wall:73.195.250.117\nMessage Wall:73.197.149.198\nMessage Wall:73.197.210.152\nMessage Wall:73.199.5.245\nMessage Wall:73.199.72.66\nMessage Wall:73.2.51.40\nMessage Wall:73.2.91.80\nMessage Wall:73.20.48.173\nMessage Wall:73.200.247.238\nMessage Wall:73.200.98.17\nMessage Wall:73.201.141.218\nMessage Wall:73.202.143.12\nMessage Wall:73.202.191.73\nMessage Wall:73.202.206.63\nMessage Wall:73.202.43.184\nMessage Wall:73.203.32.186\nMessage Wall:73.204.162.54\nMessage Wall:73.205.235.25\nMessage Wall:73.205.52.98\nMessage Wall:73.206.125.82\nMessage Wall:73.208.188.229\nMessage Wall:73.209.92.179\nMessage Wall:73.210.62.129\nMessage Wall:73.211.5.139\nMessage Wall:73.212.245.154\nMessage Wall:73.214.133.181\nMessage Wall:73.215.208.96\nMessage Wall:73.216.17.124\nMessage Wall:73.220.101.124\nMessage Wall:73.220.202.212\nMessage Wall:73.222.1.151\nMessage Wall:73.222.16.233\nMessage Wall:73.223.40.230\nMessage Wall:73.224.53.15\nMessage Wall:73.225.21.128\nMessage Wall:73.225.222.15\nMessage Wall:73.226.78.200\nMessage Wall:73.229.135.121\nMessage Wall:73.229.22.115\nMessage Wall:73.231.226.185\nMessage Wall:73.231.96.108\nMessage Wall:73.235.208.55\nMessage Wall:73.239.51.94\nMessage Wall:73.241.110.19\nMessage Wall:73.244.35.11\nMessage Wall:73.247.24.90\nMessage Wall:73.247.74.111\nMessage Wall:73.248.25.236\nMessage Wall:73.25.1.8\nMessage Wall:73.25.12.128\nMessage Wall:73.25.53.87\nMessage Wall:73.252.246.241\nMessage Wall:73.254.200.40\nMessage Wall:73.26.126.198\nMessage Wall:73.26.68.242\nMessage Wall:73.3.176.85\nMessage Wall:73.30.246.161\nMessage Wall:73.31.66.93\nMessage Wall:73.33.249.0\nMessage Wall:73.34.111.247\nMessage Wall:73.34.133.18\nMessage Wall:73.35.182.221\nMessage Wall:73.35.247.120\nMessage Wall:73.36.115.50\nMessage Wall:73.37.230.56\nMessage Wall:73.37.47.101\nMessage Wall:73.37.55.91\nMessage Wall:73.39.39.230\nMessage Wall:73.4.148.119\nMessage Wall:73.4.189.25\nMessage Wall:73.40.161.97\nMessage Wall:73.41.122.161\nMessage Wall:73.41.209.77\nMessage Wall:73.41.243.141\nMessage Wall:73.42.10.104\nMessage Wall:73.42.142.132\nMessage Wall:73.42.214.41\nMessage Wall:73.42.243.156\nMessage Wall:73.43.15.120\nMessage Wall:73.43.238.55\nMessage Wall:73.44.179.181\nMessage Wall:73.44.65.107\nMessage Wall:73.45.31.38\nMessage Wall:73.45.71.146\nMessage Wall:73.46.8.221\nMessage Wall:73.47.119.90\nMessage Wall:73.48.180.114\nMessage Wall:73.48.69.17\nMessage Wall:73.5.147.89\nMessage Wall:73.5.215.82\nMessage Wall:73.50.1.178\nMessage Wall:73.50.17.227\nMessage Wall:73.50.74.161\nMessage Wall:73.51.9.154\nMessage Wall:73.52.162.8\nMessage Wall:73.52.176.148\nMessage Wall:73.52.3.84\nMessage Wall:73.53.101.88\nMessage Wall:73.53.158.115\nMessage Wall:73.53.173.145\nMessage Wall:73.53.211.21\nMessage Wall:73.53.248.49\nMessage Wall:73.53.70.95\nMessage Wall:73.53.96.176\nMessage Wall:73.54.10.209\nMessage Wall:73.55.176.236\nMessage Wall:73.55.183.38\nMessage Wall:73.6.134.164\nMessage Wall:73.6.162.234\nMessage Wall:73.61.19.96\nMessage Wall:73.61.23.72\nMessage Wall:73.64.62.183\nMessage Wall:73.65.140.26\nMessage Wall:73.66.239.35\nMessage Wall:73.67.205.143\nMessage Wall:73.67.246.110\nMessage Wall:73.7.116.78\nMessage Wall:73.7.144.21\nMessage Wall:73.70.58.201\nMessage Wall:73.72.116.45\nMessage Wall:73.72.14.118\nMessage Wall:73.75.236.149\nMessage Wall:73.76.142.173\nMessage Wall:73.76.27.83\nMessage Wall:73.77.83.207\nMessage Wall:73.78.234.90\nMessage Wall:73.78.77.22\nMessage Wall:73.8.78.102\nMessage Wall:73.85.133.61\nMessage Wall:73.85.244.65\nMessage Wall:73.9.165.35\nMessage Wall:73.9.170.44\nMessage Wall:73.92.128.115\nMessage Wall:73.95.181.120\nMessage Wall:73.95.64.124\nMessage Wall:73.96.112.140\nMessage Wall:73.96.114.197\nMessage Wall:73.96.86.145\nMessage Wall:74.101.152.109\nMessage Wall:74.101.153.175\nMessage Wall:74.102.103.177\nMessage Wall:74.103.242.59\nMessage Wall:74.104.123.47\nMessage Wall:74.104.133.182\nMessage Wall:74.105.174.28\nMessage Wall:74.106.14.110\nMessage Wall:74.107.86.232\nMessage Wall:74.109.112.130\nMessage Wall:74.112.244.13\nMessage Wall:74.112.36.106\nMessage Wall:74.115.245.116\nMessage Wall:74.12.157.107\nMessage Wall:74.126.59.93\nMessage Wall:74.128.134.202\nMessage Wall:74.130.128.223\nMessage Wall:74.132.35.209\nMessage Wall:74.132.51.143\nMessage Wall:74.132.62.124\nMessage Wall:74.133.20.122\nMessage Wall:74.134.121.211\nMessage Wall:74.134.243.160\nMessage Wall:74.136.143.56\nMessage Wall:74.138.147.116\nMessage Wall:74.139.176.182\nMessage Wall:74.14.133.243\nMessage Wall:74.14.52.93\nMessage Wall:74.14.7.146\nMessage Wall:74.140.132.104\nMessage Wall:74.141.246.111\nMessage Wall:74.141.253.45\nMessage Wall:74.142.61.244\nMessage Wall:74.15.221.180\nMessage Wall:74.15.235.67\nMessage Wall:74.193.159.230\nMessage Wall:74.193.215.151\nMessage Wall:74.193.221.102\nMessage Wall:74.193.222.7\nMessage Wall:74.193.42.79\nMessage Wall:74.194.137.136\nMessage Wall:74.194.233.1\nMessage Wall:74.195.113.26\nMessage Wall:74.195.151.143\nMessage Wall:74.195.34.118\nMessage Wall:74.195.4.183\nMessage Wall:74.196.130.95\nMessage Wall:74.197.231.158\nMessage Wall:74.202.12.194\nMessage Wall:74.205.130.194\nMessage Wall:74.209.0.72\nMessage Wall:74.209.1.45\nMessage Wall:74.210.184.9\nMessage Wall:74.214.105.215\nMessage Wall:74.245.242.140\nMessage Wall:74.37.202.169\nMessage Wall:74.5.75.159\nMessage Wall:74.50.193.232\nMessage Wall:74.51.220.27\nMessage Wall:74.57.145.227\nMessage Wall:74.57.165.58\nMessage Wall:74.62.123.98\nMessage Wall:74.62.216.222\nMessage Wall:74.65.126.155\nMessage Wall:74.65.13.202\nMessage Wall:74.65.136.87\nMessage Wall:74.67.43.230\nMessage Wall:74.69.51.136\nMessage Wall:74.70.124.235\nMessage Wall:74.73.116.160\nMessage Wall:74.73.141.107\nMessage Wall:74.74.176.116\nMessage Wall:74.75.169.136\nMessage Wall:74.75.27.87\nMessage Wall:74.75.43.12\nMessage Wall:74.75.44.90\nMessage Wall:74.78.26.24\nMessage Wall:74.78.96.69\nMessage Wall:74.82.59.126\nMessage Wall:74.83.50.222\nMessage Wall:74.83.89.216\nMessage Wall:74.83.95.51\nMessage Wall:74.88.196.15\nMessage Wall:74.88.240.69\nMessage Wall:74.89.225.194\nMessage Wall:74.90.148.115\nMessage Wall:74.90.92.146\nMessage Wall:74.91.70.136\nMessage Wall:74.94.78.2\nMessage Wall:74.96.178.202\nMessage Wall:74.96.182.25\nMessage Wall:74.96.218.32\nMessage Wall:74.96.221.60\nMessage Wall:74.96.221.81\nMessage Wall:74.96.68.238\nMessage Wall:74.97.38.183\nMessage Wall:74.98.142.30\nMessage Wall:74.98.166.175\nMessage Wall:75.100.175.2\nMessage Wall:75.100.46.55\nMessage Wall:75.100.98.140\nMessage Wall:75.105.62.71\nMessage Wall:75.108.152.128\nMessage Wall:75.108.47.186\nMessage Wall:75.109.173.125\nMessage Wall:75.109.81.198\nMessage Wall:75.110.147.63\nMessage Wall:75.110.224.133\nMessage Wall:75.111.128.42\nMessage Wall:75.111.163.67\nMessage Wall:75.111.163.78\nMessage Wall:75.111.188.11\nMessage Wall:75.111.224.144\nMessage Wall:75.111.250.16\nMessage Wall:75.111.28.48\nMessage Wall:75.112.131.156\nMessage Wall:75.114.11.42\nMessage Wall:75.115.196.213\nMessage Wall:75.117.151.226\nMessage Wall:75.117.165.34\nMessage Wall:75.118.11.21\nMessage Wall:75.121.119.125\nMessage Wall:75.121.121.27\nMessage Wall:75.121.234.163\nMessage Wall:75.121.236.32\nMessage Wall:75.121.77.102\nMessage Wall:75.128.101.135\nMessage Wall:75.128.169.75\nMessage Wall:75.128.23.207\nMessage Wall:75.128.239.202\nMessage Wall:75.129.153.72\nMessage Wall:75.129.157.128\nMessage Wall:75.130.23.188\nMessage Wall:75.130.28.30\nMessage Wall:75.130.56.198\nMessage Wall:75.133.178.134\nMessage Wall:75.134.159.197\nMessage Wall:75.134.242.113\nMessage Wall:75.135.120.164\nMessage Wall:75.135.177.50\nMessage Wall:75.136.227.24\nMessage Wall:75.137.11.199\nMessage Wall:75.137.176.249\nMessage Wall:75.138.35.156\nMessage Wall:75.139.36.119\nMessage Wall:75.140.158.219\nMessage Wall:75.140.247.146\nMessage Wall:75.140.40.102\nMessage Wall:75.141.149.197\nMessage Wall:75.141.231.12\nMessage Wall:75.142.22.102\nMessage Wall:75.143.103.222\nMessage Wall:75.143.74.69\nMessage Wall:75.143.98.221\nMessage Wall:75.148.124.251\nMessage Wall:75.149.116.5\nMessage Wall:75.149.81.33\nMessage Wall:75.154.238.98\nMessage Wall:75.155.167.194\nMessage Wall:75.155.80.12\nMessage Wall:75.156.153.23\nMessage Wall:75.156.175.143\nMessage Wall:75.157.144.226\nMessage Wall:75.158.72.30\nMessage Wall:75.159.10.110\nMessage Wall:75.159.212.141\nMessage Wall:75.161.154.19\nMessage Wall:75.163.169.206\nMessage Wall:75.164.228.73\nMessage Wall:75.164.241.222\nMessage Wall:75.165.117.112\nMessage Wall:75.165.52.62\nMessage Wall:75.166.133.210\nMessage Wall:75.166.43.208\nMessage Wall:75.166.95.88\nMessage Wall:75.167.141.198\nMessage Wall:75.167.156.206\nMessage Wall:75.167.195.172\nMessage Wall:75.168.126.156\nMessage Wall:75.17.246.224\nMessage Wall:75.17.248.231\nMessage Wall:75.170.155.175\nMessage Wall:75.173.245.27\nMessage Wall:75.174.201.20\nMessage Wall:75.174.28.1\nMessage Wall:75.176.185.135\nMessage Wall:75.177.113.208\nMessage Wall:75.177.159.44\nMessage Wall:75.182.4.83\nMessage Wall:75.183.129.246\nMessage Wall:75.183.40.125\nMessage Wall:75.183.83.3\nMessage Wall:75.184.8.132\nMessage Wall:75.185.171.250\nMessage Wall:75.187.152.96\nMessage Wall:75.187.248.230\nMessage Wall:75.189.199.203\nMessage Wall:75.190.136.148\nMessage Wall:75.190.165.103\nMessage Wall:75.22.101.114\nMessage Wall:75.22.106.106\nMessage Wall:75.22.106.21\nMessage Wall:75.25.137.146\nMessage Wall:75.27.140.236\nMessage Wall:75.5.248.67\nMessage Wall:75.64.191.53\nMessage Wall:75.64.247.69\nMessage Wall:75.64.25.71\nMessage Wall:75.65.57.178\nMessage Wall:75.66.4.124\nMessage Wall:75.67.57.94\nMessage Wall:75.69.169.219\nMessage Wall:75.69.59.212\nMessage Wall:75.70.18.113\nMessage Wall:75.71.238.163\nMessage Wall:75.71.81.249\nMessage Wall:75.72.228.176\nMessage Wall:75.73.1.43\nMessage Wall:75.73.171.22\nMessage Wall:75.73.69.223\nMessage Wall:75.74.179.54\nMessage Wall:75.75.47.43\nMessage Wall:75.75.67.51\nMessage Wall:75.80.141.189\nMessage Wall:75.80.156.124\nMessage Wall:75.80.4.126\nMessage Wall:75.80.41.165\nMessage Wall:75.81.232.57\nMessage Wall:75.82.182.110\nMessage Wall:75.82.3.198\nMessage Wall:75.82.55.51\nMessage Wall:75.82.99.83\nMessage Wall:75.83.172.98\nMessage Wall:75.85.165.200\nMessage Wall:75.85.82.56\nMessage Wall:75.86.209.207\nMessage Wall:75.88.60.139\nMessage Wall:75.90.196.23\nMessage Wall:75.90.213.116\nMessage Wall:75.91.229.226\nMessage Wall:75.91.33.85\nMessage Wall:76.10.1.177\nMessage Wall:76.10.152.248\nMessage Wall:76.10.184.69\nMessage Wall:76.10.187.163\nMessage Wall:76.101.111.92\nMessage Wall:76.101.70.56\nMessage Wall:76.102.100.128\nMessage Wall:76.102.38.20\nMessage Wall:76.102.51.16\nMessage Wall:76.102.77.124\nMessage Wall:76.103.194.242\nMessage Wall:76.103.34.243\nMessage Wall:76.104.141.107\nMessage Wall:76.105.154.112\nMessage Wall:76.105.18.86\nMessage Wall:76.106.37.30\nMessage Wall:76.108.126.92\nMessage Wall:76.108.238.242\nMessage Wall:76.109.102.180\nMessage Wall:76.109.160.244\nMessage Wall:76.109.211.231\nMessage Wall:76.11.105.70\nMessage Wall:76.11.115.154\nMessage Wall:76.11.17.36\nMessage Wall:76.11.181.225\nMessage Wall:76.11.73.55\nMessage Wall:76.11.96.151\nMessage Wall:76.111.164.208\nMessage Wall:76.113.35.167\nMessage Wall:76.114.183.18\nMessage Wall:76.116.236.147\nMessage Wall:76.116.62.127\nMessage Wall:76.117.5.44\nMessage Wall:76.118.238.197\nMessage Wall:76.118.89.84\nMessage Wall:76.120.194.140\nMessage Wall:76.120.223.100\nMessage Wall:76.121.158.50\nMessage Wall:76.121.168.203\nMessage Wall:76.121.247.205\nMessage Wall:76.121.82.229\nMessage Wall:76.122.215.94\nMessage Wall:76.124.117.172\nMessage Wall:76.124.162.53\nMessage Wall:76.124.51.148\nMessage Wall:76.125.120.105\nMessage Wall:76.125.199.162\nMessage Wall:76.126.157.131\nMessage Wall:76.126.244.102\nMessage Wall:76.126.247.212\nMessage Wall:76.127.64.187\nMessage Wall:76.14.200.114\nMessage Wall:76.14.244.250\nMessage Wall:76.14.86.175\nMessage Wall:76.165.35.173\nMessage Wall:76.169.224.10\nMessage Wall:76.170.166.2\nMessage Wall:76.173.145.177\nMessage Wall:76.173.6.20\nMessage Wall:76.174.114.157\nMessage Wall:76.174.128.26\nMessage Wall:76.176.74.117\nMessage Wall:76.178.184.11\nMessage Wall:76.178.190.103\nMessage Wall:76.178.23.25\nMessage Wall:76.179.227.240\nMessage Wall:76.18.220.223\nMessage Wall:76.180.146.166\nMessage Wall:76.181.9.230\nMessage Wall:76.182.87.235\nMessage Wall:76.183.87.184\nMessage Wall:76.184.2.239\nMessage Wall:76.185.214.113\nMessage Wall:76.185.89.24\nMessage Wall:76.187.232.252\nMessage Wall:76.187.251.37\nMessage Wall:76.187.47.250\nMessage Wall:76.188.89.242\nMessage Wall:76.19.54.17\nMessage Wall:76.190.209.67\nMessage Wall:76.190.254.140\nMessage Wall:76.2.21.128\nMessage Wall:76.20.136.41\nMessage Wall:76.20.26.10\nMessage Wall:76.20.86.254\nMessage Wall:76.209.17.71\nMessage Wall:76.210.231.243\nMessage Wall:76.22.84.106\nMessage Wall:76.23.16.7\nMessage Wall:76.231.86.110\nMessage Wall:76.234.68.126\nMessage Wall:76.235.25.214\nMessage Wall:76.236.84.148\nMessage Wall:76.24.21.3\nMessage Wall:76.24.78.25\nMessage Wall:76.25.140.130\nMessage Wall:76.25.148.211\nMessage Wall:76.25.17.173\nMessage Wall:76.255.149.52\nMessage Wall:76.26.104.91\nMessage Wall:76.26.61.217\nMessage Wall:76.27.255.161\nMessage Wall:76.27.32.135\nMessage Wall:76.27.38.164\nMessage Wall:76.27.76.168\nMessage Wall:76.28.156.157\nMessage Wall:76.28.191.238\nMessage Wall:76.30.151.84\nMessage Wall:76.31.138.244\nMessage Wall:76.65.200.202\nMessage Wall:76.66.174.116\nMessage Wall:76.67.106.108\nMessage Wall:76.67.109.27\nMessage Wall:76.67.111.182\nMessage Wall:76.67.69.181\nMessage Wall:76.69.122.72\nMessage Wall:76.71.1.67\nMessage Wall:76.71.23.105\nMessage Wall:76.71.248.132\nMessage Wall:76.71.51.6\nMessage Wall:76.75.123.213\nMessage Wall:76.78.7.131\nMessage Wall:76.79.198.210\nMessage Wall:76.8.195.220\nMessage Wall:76.84.113.197\nMessage Wall:76.84.132.199\nMessage Wall:76.84.205.99\nMessage Wall:76.84.40.184\nMessage Wall:76.85.197.172\nMessage Wall:76.88.32.119\nMessage Wall:76.88.40.102\nMessage Wall:76.89.173.100\nMessage Wall:76.89.31.217\nMessage Wall:76.91.75.137\nMessage Wall:76.92.151.172\nMessage Wall:76.94.131.15\nMessage Wall:77.10.109.5\nMessage Wall:77.10.227.95\nMessage Wall:77.10.84.138\nMessage Wall:77.100.139.22\nMessage Wall:77.100.60.91\nMessage Wall:77.101.193.215\nMessage Wall:77.101.224.164\nMessage Wall:77.101.227.6\nMessage Wall:77.101.36.188\nMessage Wall:77.102.200.67\nMessage Wall:77.102.209.29\nMessage Wall:77.102.250.232\nMessage Wall:77.102.255.162\nMessage Wall:77.103.1.252\nMessage Wall:77.103.144.71\nMessage Wall:77.103.85.206\nMessage Wall:77.110.14.220\nMessage Wall:77.110.193.131\nMessage Wall:77.110.220.44\nMessage Wall:77.110.42.57\nMessage Wall:77.111.164.223\nMessage Wall:77.116.150.167\nMessage Wall:77.117.71.41\nMessage Wall:77.119.129.158\nMessage Wall:77.119.131.101\nMessage Wall:77.12.108.182\nMessage Wall:77.12.128.11\nMessage Wall:77.125.253.227\nMessage Wall:77.125.87.105\nMessage Wall:77.129.35.196\nMessage Wall:77.131.39.197\nMessage Wall:77.133.58.10\nMessage Wall:77.138.135.203\nMessage Wall:77.148.154.171\nMessage Wall:77.150.123.34\nMessage Wall:77.152.251.48\nMessage Wall:77.153.203.82\nMessage Wall:77.153.217.127\nMessage Wall:77.160.0.122\nMessage Wall:77.161.31.147\nMessage Wall:77.163.150.115\nMessage Wall:77.166.33.109\nMessage Wall:77.168.182.117\nMessage Wall:77.168.22.223\nMessage Wall:77.170.134.206\nMessage Wall:77.170.173.242\nMessage Wall:77.172.59.26\nMessage Wall:77.173.119.58\nMessage Wall:77.173.135.226\nMessage Wall:77.173.137.59\nMessage Wall:77.173.160.84\nMessage Wall:77.173.166.187\nMessage Wall:77.175.79.210\nMessage Wall:77.176.187.21\nMessage Wall:77.176.70.111\nMessage Wall:77.177.136.49\nMessage Wall:77.181.159.48\nMessage Wall:77.181.179.150\nMessage Wall:77.181.182.208\nMessage Wall:77.181.184.122\nMessage Wall:77.182.133.22\nMessage Wall:77.182.158.152\nMessage Wall:77.182.61.37\nMessage Wall:77.184.207.185\nMessage Wall:77.20.122.232\nMessage Wall:77.20.150.112\nMessage Wall:77.20.151.150\nMessage Wall:77.20.18.242\nMessage Wall:77.20.80.121\nMessage Wall:77.201.135.114\nMessage Wall:77.205.166.89\nMessage Wall:77.206.244.18\nMessage Wall:77.21.51.68\nMessage Wall:77.21.52.171\nMessage Wall:77.22.103.132\nMessage Wall:77.22.53.69\nMessage Wall:77.22.98.149\nMessage Wall:77.222.184.134\nMessage Wall:77.225.202.32\nMessage Wall:77.23.180.241\nMessage Wall:77.23.190.21\nMessage Wall:77.23.195.160\nMessage Wall:77.23.246.207\nMessage Wall:77.23.57.19\nMessage Wall:77.232.154.230\nMessage Wall:77.234.104.249\nMessage Wall:77.234.106.9\nMessage Wall:77.234.191.155\nMessage Wall:77.234.40.147\nMessage Wall:77.234.44.145\nMessage Wall:77.237.111.72\nMessage Wall:77.243.25.98\nMessage Wall:77.243.41.13\nMessage Wall:77.247.229.22\nMessage Wall:77.248.49.138\nMessage Wall:77.248.81.98\nMessage Wall:77.249.165.139\nMessage Wall:77.249.6.238\nMessage Wall:77.250.109.152\nMessage Wall:77.250.124.86\nMessage Wall:77.250.232.60\nMessage Wall:77.253.128.202\nMessage Wall:77.253.58.236\nMessage Wall:77.253.95.129\nMessage Wall:77.254.88.104\nMessage Wall:77.255.37.9\nMessage Wall:77.3.7.44\nMessage Wall:77.3.80.114\nMessage Wall:77.35.248.222\nMessage Wall:77.37.166.144\nMessage Wall:77.37.171.53\nMessage Wall:77.38.245.7\nMessage Wall:77.4.127.210\nMessage Wall:77.4.128.18\nMessage Wall:77.41.90.182\nMessage Wall:77.44.14.231\nMessage Wall:77.46.202.45\nMessage Wall:77.47.109.223\nMessage Wall:77.48.149.29\nMessage Wall:77.48.233.146\nMessage Wall:77.49.198.161\nMessage Wall:77.49.78.188\nMessage Wall:77.50.26.143\nMessage Wall:77.51.173.162\nMessage Wall:77.53.109.165\nMessage Wall:77.53.125.239\nMessage Wall:77.53.215.6\nMessage Wall:77.56.218.169\nMessage Wall:77.56.50.183\nMessage Wall:77.57.81.27\nMessage Wall:77.58.96.13\nMessage Wall:77.6.150.91\nMessage Wall:77.6.154.99\nMessage Wall:77.6.178.230\nMessage Wall:77.65.47.36\nMessage Wall:77.65.84.4\nMessage Wall:77.68.144.102\nMessage Wall:77.68.246.40\nMessage Wall:77.7.187.201\nMessage Wall:77.7.221.149\nMessage Wall:77.7.226.207\nMessage Wall:77.70.57.181\nMessage Wall:77.72.209.254\nMessage Wall:77.75.166.83\nMessage Wall:77.8.62.102\nMessage Wall:77.96.109.246\nMessage Wall:77.96.123.183\nMessage Wall:77.96.13.119\nMessage Wall:77.97.195.192\nMessage Wall:77.97.210.77\nMessage Wall:77.97.240.197\nMessage Wall:77.97.42.65\nMessage Wall:77.97.72.168\nMessage Wall:77.98.183.207\nMessage Wall:77.98.203.106\nMessage Wall:77.98.211.163\nMessage Wall:77.98.28.117\nMessage Wall:78.0.207.84\nMessage Wall:78.0.209.49\nMessage Wall:78.0.24.146\nMessage Wall:78.1.131.175\nMessage Wall:78.1.15.216\nMessage Wall:78.10.197.69\nMessage Wall:78.102.34.16\nMessage Wall:78.102.55.129\nMessage Wall:78.105.112.87\nMessage Wall:78.11.110.60\nMessage Wall:78.11.219.52\nMessage Wall:78.11.232.94\nMessage Wall:78.115.182.45\nMessage Wall:78.115.184.171\nMessage Wall:78.115.185.210\nMessage Wall:78.115.185.247\nMessage Wall:78.122.110.71\nMessage Wall:78.122.111.160\nMessage Wall:78.122.119.208\nMessage Wall:78.122.121.92\nMessage Wall:78.131.93.136\nMessage Wall:78.138.166.94\nMessage Wall:78.141.96.31\nMessage Wall:78.143.117.165\nMessage Wall:78.143.199.122\nMessage Wall:78.144.143.135\nMessage Wall:78.144.143.61\nMessage Wall:78.144.198.30\nMessage Wall:78.144.42.73\nMessage Wall:78.145.143.47\nMessage Wall:78.145.64.145\nMessage Wall:78.146.128.234\nMessage Wall:78.146.130.81\nMessage Wall:78.146.80.75\nMessage Wall:78.146.99.202\nMessage Wall:78.147.206.184\nMessage Wall:78.147.92.130\nMessage Wall:78.148.15.128\nMessage Wall:78.148.163.167\nMessage Wall:78.149.187.168\nMessage Wall:78.149.240.147\nMessage Wall:78.149.41.22\nMessage Wall:78.15.141.104\nMessage Wall:78.150.155.133\nMessage Wall:78.156.119.171\nMessage Wall:78.16.225.77\nMessage Wall:78.16.82.48\nMessage Wall:78.163.155.1\nMessage Wall:78.165.246.30\nMessage Wall:78.17.57.178\nMessage Wall:78.173.138.80\nMessage Wall:78.178.132.215\nMessage Wall:78.18.217.217\nMessage Wall:78.18.242.217\nMessage Wall:78.19.121.210\nMessage Wall:78.19.15.50\nMessage Wall:78.19.151.226\nMessage Wall:78.19.38.183\nMessage Wall:78.19.71.92\nMessage Wall:78.19.92.150\nMessage Wall:78.193.156.248\nMessage Wall:78.193.198.237\nMessage Wall:78.194.205.118\nMessage Wall:78.2.205.192\nMessage Wall:78.209.96.105\nMessage Wall:78.21.179.139\nMessage Wall:78.213.50.42\nMessage Wall:78.215.0.152\nMessage Wall:78.215.76.215\nMessage Wall:78.22.108.5\nMessage Wall:78.22.123.29\nMessage Wall:78.22.25.244\nMessage Wall:78.227.99.202\nMessage Wall:78.228.136.4\nMessage Wall:78.229.202.48\nMessage Wall:78.232.201.196\nMessage Wall:78.233.125.224\nMessage Wall:78.234.101.196\nMessage Wall:78.236.120.111\nMessage Wall:78.236.49.159\nMessage Wall:78.238.168.100\nMessage Wall:78.244.152.181\nMessage Wall:78.245.89.186\nMessage Wall:78.246.24.106\nMessage Wall:78.249.34.188\nMessage Wall:78.25.122.233\nMessage Wall:78.31.7.129\nMessage Wall:78.32.137.65\nMessage Wall:78.32.158.221\nMessage Wall:78.34.163.119\nMessage Wall:78.34.175.170\nMessage Wall:78.34.18.200\nMessage Wall:78.34.26.75\nMessage Wall:78.34.67.204\nMessage Wall:78.35.152.243\nMessage Wall:78.41.3.129\nMessage Wall:78.42.135.254\nMessage Wall:78.42.16.72\nMessage Wall:78.43.122.79\nMessage Wall:78.43.125.86\nMessage Wall:78.43.187.69\nMessage Wall:78.43.41.100\nMessage Wall:78.43.75.252\nMessage Wall:78.45.215.74\nMessage Wall:78.45.96.254\nMessage Wall:78.48.118.158\nMessage Wall:78.48.167.192\nMessage Wall:78.48.227.231\nMessage Wall:78.48.240.85\nMessage Wall:78.48.244.35\nMessage Wall:78.48.34.99\nMessage Wall:78.48.51.140\nMessage Wall:78.48.64.128\nMessage Wall:78.48.82.91\nMessage Wall:78.49.174.24\nMessage Wall:78.49.22.16\nMessage Wall:78.49.247.74\nMessage Wall:78.49.3.145\nMessage Wall:78.49.37.227\nMessage Wall:78.49.69.59\nMessage Wall:78.49.75.139\nMessage Wall:78.49.79.127\nMessage Wall:78.49.81.200\nMessage Wall:78.50.160.43\nMessage Wall:78.50.163.130\nMessage Wall:78.50.49.81\nMessage Wall:78.50.50.214\nMessage Wall:78.50.97.52\nMessage Wall:78.51.172.98\nMessage Wall:78.51.36.35\nMessage Wall:78.51.49.87\nMessage Wall:78.52.222.251\nMessage Wall:78.52.48.147\nMessage Wall:78.53.123.247\nMessage Wall:78.53.179.223\nMessage Wall:78.53.22.36\nMessage Wall:78.53.226.204\nMessage Wall:78.53.3.60\nMessage Wall:78.54.111.183\nMessage Wall:78.54.112.44\nMessage Wall:78.54.28.145\nMessage Wall:78.55.194.218\nMessage Wall:78.55.49.130\nMessage Wall:78.63.36.243\nMessage Wall:78.68.120.242\nMessage Wall:78.70.42.26\nMessage Wall:78.71.163.117\nMessage Wall:78.71.28.121\nMessage Wall:78.72.23.6\nMessage Wall:78.72.31.223\nMessage Wall:78.72.77.152\nMessage Wall:78.72.8.20\nMessage Wall:78.84.101.2\nMessage Wall:78.84.194.195\nMessage Wall:78.84.232.97\nMessage Wall:78.84.24.73\nMessage Wall:78.84.28.94\nMessage Wall:78.88.140.214\nMessage Wall:78.88.29.232\nMessage Wall:78.90.147.26\nMessage Wall:78.90.225.217\nMessage Wall:78.92.50.126\nMessage Wall:78.94.149.121\nMessage Wall:78.94.208.99\nMessage Wall:78.94.9.26\nMessage Wall:78.96.200.67\nMessage Wall:78.96.220.116\nMessage Wall:78.96.65.97\nMessage Wall:78.99.60.58\nMessage Wall:79.103.185.66\nMessage Wall:79.103.21.243\nMessage Wall:79.103.246.50\nMessage Wall:79.109.202.239\nMessage Wall:79.112.137.47\nMessage Wall:79.112.141.101\nMessage Wall:79.112.177.99\nMessage Wall:79.114.155.99\nMessage Wall:79.114.165.92\nMessage Wall:79.114.220.55\nMessage Wall:79.115.243.105\nMessage Wall:79.117.38.118\nMessage Wall:79.117.55.0\nMessage Wall:79.118.222.228\nMessage Wall:79.119.110.159\nMessage Wall:79.121.20.224\nMessage Wall:79.127.132.137\nMessage Wall:79.132.122.225\nMessage Wall:79.132.19.230\nMessage Wall:79.132.20.171\nMessage Wall:79.132.22.204\nMessage Wall:79.133.12.254\nMessage Wall:79.135.232.5\nMessage Wall:79.136.165.43\nMessage Wall:79.139.243.2\nMessage Wall:79.141.15.70\nMessage Wall:79.141.58.24\nMessage Wall:79.142.74.118\nMessage Wall:79.143.138.42\nMessage Wall:79.143.210.97\nMessage Wall:79.154.88.31\nMessage Wall:79.155.170.48\nMessage Wall:79.159.133.221\nMessage Wall:79.160.131.62\nMessage Wall:79.161.128.34\nMessage Wall:79.161.131.62\nMessage Wall:79.164.31.61\nMessage Wall:79.169.89.30\nMessage Wall:79.17.104.93\nMessage Wall:79.172.125.72\nMessage Wall:79.176.73.12\nMessage Wall:79.179.58.49\nMessage Wall:79.181.127.231\nMessage Wall:79.181.196.127\nMessage Wall:79.183.176.214\nMessage Wall:79.191.234.227\nMessage Wall:79.191.38.240\nMessage Wall:79.193.34.166\nMessage Wall:79.194.108.67\nMessage Wall:79.194.120.121\nMessage Wall:79.195.37.221\nMessage Wall:79.195.46.82\nMessage Wall:79.195.49.230\nMessage Wall:79.195.50.74\nMessage Wall:79.195.62.197\nMessage Wall:79.196.32.11\nMessage Wall:79.197.202.17\nMessage Wall:79.198.108.239\nMessage Wall:79.198.253.109\nMessage Wall:79.198.86.143\nMessage Wall:79.199.110.193\nMessage Wall:79.199.64.10\nMessage Wall:79.20.105.231\nMessage Wall:79.200.2.112\nMessage Wall:79.201.227.66\nMessage Wall:79.203.114.156\nMessage Wall:79.204.240.237\nMessage Wall:79.205.104.128\nMessage Wall:79.205.111.88\nMessage Wall:79.205.114.244\nMessage Wall:79.205.116.209\nMessage Wall:79.205.243.89\nMessage Wall:79.205.44.127\nMessage Wall:79.205.56.173\nMessage Wall:79.208.228.27\nMessage Wall:79.21.150.108\nMessage Wall:79.213.216.193\nMessage Wall:79.215.227.123\nMessage Wall:79.216.244.91\nMessage Wall:79.216.249.239\nMessage Wall:79.218.122.162\nMessage Wall:79.219.99.178\nMessage Wall:79.220.214.2\nMessage Wall:79.220.230.248\nMessage Wall:79.221.197.62\nMessage Wall:79.221.253.173\nMessage Wall:79.222.203.237\nMessage Wall:79.223.132.169\nMessage Wall:79.224.124.93\nMessage Wall:79.224.184.243\nMessage Wall:79.224.191.38\nMessage Wall:79.225.102.183\nMessage Wall:79.225.231.187\nMessage Wall:79.226.26.167\nMessage Wall:79.231.50.100\nMessage Wall:79.232.209.124\nMessage Wall:79.232.216.164\nMessage Wall:79.232.221.239\nMessage Wall:79.233.154.223\nMessage Wall:79.234.94.241\nMessage Wall:79.236.135.253\nMessage Wall:79.238.73.196\nMessage Wall:79.241.90.249\nMessage Wall:79.243.224.3\nMessage Wall:79.243.231.137\nMessage Wall:79.243.235.81\nMessage Wall:79.243.237.146\nMessage Wall:79.243.245.38\nMessage Wall:79.243.249.198\nMessage Wall:79.244.2.47\nMessage Wall:79.244.25.163\nMessage Wall:79.244.27.156\nMessage Wall:79.247.159.118\nMessage Wall:79.247.179.65\nMessage Wall:79.247.189.186\nMessage Wall:79.247.217.220\nMessage Wall:79.247.239.167\nMessage Wall:79.248.199.23\nMessage Wall:79.248.8.37\nMessage Wall:79.25.17.237\nMessage Wall:79.251.182.32\nMessage Wall:79.253.105.2\nMessage Wall:79.253.200.184\nMessage Wall:79.253.55.65\nMessage Wall:79.255.29.31\nMessage Wall:79.255.30.127\nMessage Wall:79.30.109.61\nMessage Wall:79.33.217.65\nMessage Wall:79.33.251.50\nMessage Wall:79.36.58.114\nMessage Wall:79.44.106.115\nMessage Wall:79.45.174.1\nMessage Wall:79.46.4.98\nMessage Wall:79.51.109.51\nMessage Wall:79.55.56.107\nMessage Wall:79.55.59.230\nMessage Wall:79.67.18.241\nMessage Wall:79.67.194.48\nMessage Wall:79.67.253.32\nMessage Wall:79.68.119.156\nMessage Wall:79.69.77.76\nMessage Wall:79.71.106.176\nMessage Wall:79.71.62.142\nMessage Wall:79.73.178.109\nMessage Wall:79.73.49.136\nMessage Wall:79.73.94.181\nMessage Wall:79.74.54.29\nMessage Wall:79.76.203.21\nMessage Wall:79.76.66.215\nMessage Wall:79.77.235.48\nMessage Wall:79.78.6.26\nMessage Wall:79.79.102.11\nMessage Wall:79.80.77.252\nMessage Wall:79.82.137.217\nMessage Wall:79.97.180.189\nMessage Wall:79.97.180.45\nMessage Wall:79.97.224.118\nMessage Wall:79.97.30.226\nMessage Wall:8.33.18.20\nMessage Wall:8.40.194.229\nMessage Wall:80.0.228.36\nMessage Wall:80.0.59.65\nMessage Wall:80.1.101.124\nMessage Wall:80.1.60.38\nMessage Wall:80.1.9.117\nMessage Wall:80.100.95.40\nMessage Wall:80.101.188.180\nMessage Wall:80.108.203.62\nMessage Wall:80.108.221.93\nMessage Wall:80.109.128.234\nMessage Wall:80.109.134.10\nMessage Wall:80.109.146.224\nMessage Wall:80.109.194.253\nMessage Wall:80.109.236.18\nMessage Wall:80.109.47.35\nMessage Wall:80.110.105.156\nMessage Wall:80.110.116.178\nMessage Wall:80.110.39.112\nMessage Wall:80.110.64.112\nMessage Wall:80.110.67.214\nMessage Wall:80.110.77.175\nMessage Wall:80.110.82.196\nMessage Wall:80.110.93.153\nMessage Wall:80.111.140.32\nMessage Wall:80.111.22.57\nMessage Wall:80.111.234.149\nMessage Wall:80.111.247.10\nMessage Wall:80.113.15.250\nMessage Wall:80.115.31.199\nMessage Wall:80.120.62.34\nMessage Wall:80.120.62.38\nMessage Wall:80.133.109.188\nMessage Wall:80.133.117.85\nMessage Wall:80.134.235.187\nMessage Wall:80.134.40.141\nMessage Wall:80.136.114.6\nMessage Wall:80.136.127.83\nMessage Wall:80.137.251.65\nMessage Wall:80.14.134.74\nMessage Wall:80.142.226.142\nMessage Wall:80.147.137.81\nMessage Wall:80.150.196.194\nMessage Wall:80.150.9.115\nMessage Wall:80.163.11.91\nMessage Wall:80.165.170.140\nMessage Wall:80.168.247.226\nMessage Wall:80.171.0.9\nMessage Wall:80.174.252.136\nMessage Wall:80.174.252.156\nMessage Wall:80.174.252.244\nMessage Wall:80.177.152.137\nMessage Wall:80.180.98.190\nMessage Wall:80.183.28.120\nMessage Wall:80.187.100.227\nMessage Wall:80.187.108.37\nMessage Wall:80.187.110.208\nMessage Wall:80.187.112.178\nMessage Wall:80.188.15.171\nMessage Wall:80.188.214.177\nMessage Wall:80.189.152.40\nMessage Wall:80.189.171.9\nMessage Wall:80.192.102.25\nMessage Wall:80.192.67.172\nMessage Wall:80.192.74.60\nMessage Wall:80.193.22.86\nMessage Wall:80.193.245.84\nMessage Wall:80.193.245.85\nMessage Wall:80.193.3.196\nMessage Wall:80.193.74.199\nMessage Wall:80.194.73.78\nMessage Wall:80.195.188.127\nMessage Wall:80.195.209.27\nMessage Wall:80.195.74.41\nMessage Wall:80.195.8.61\nMessage Wall:80.2.150.3\nMessage Wall:80.2.178.98\nMessage Wall:80.212.158.137\nMessage Wall:80.212.158.185\nMessage Wall:80.212.161.193\nMessage Wall:80.212.228.80\nMessage Wall:80.212.230.137\nMessage Wall:80.212.236.99\nMessage Wall:80.212.24.57\nMessage Wall:80.213.234.192\nMessage Wall:80.213.76.115\nMessage Wall:80.213.77.155\nMessage Wall:80.215.234.180\nMessage Wall:80.216.135.51\nMessage Wall:80.216.171.85\nMessage Wall:80.216.77.80\nMessage Wall:80.216.86.128\nMessage Wall:80.217.157.78\nMessage Wall:80.218.223.150\nMessage Wall:80.218.3.68\nMessage Wall:80.220.35.25\nMessage Wall:80.220.92.74\nMessage Wall:80.221.138.150\nMessage Wall:80.221.148.154\nMessage Wall:80.221.171.242\nMessage Wall:80.221.50.176\nMessage Wall:80.222.114.254\nMessage Wall:80.222.155.189\nMessage Wall:80.222.217.119\nMessage Wall:80.222.81.4\nMessage Wall:80.223.182.194\nMessage Wall:80.223.26.90\nMessage Wall:80.229.110.64\nMessage Wall:80.229.13.26\nMessage Wall:80.229.143.166\nMessage Wall:80.229.15.21\nMessage Wall:80.229.150.152\nMessage Wall:80.229.154.141\nMessage Wall:80.229.161.75\nMessage Wall:80.229.174.143\nMessage Wall:80.229.22.61\nMessage Wall:80.229.229.152\nMessage Wall:80.229.23.190\nMessage Wall:80.249.216.107\nMessage Wall:80.249.216.130\nMessage Wall:80.252.76.19\nMessage Wall:80.254.154.59\nMessage Wall:80.26.205.177\nMessage Wall:80.28.130.111\nMessage Wall:80.3.149.141\nMessage Wall:80.3.213.253\nMessage Wall:80.37.191.82\nMessage Wall:80.4.215.90\nMessage Wall:80.41.146.156\nMessage Wall:80.41.21.62\nMessage Wall:80.42.159.101\nMessage Wall:80.42.186.62\nMessage Wall:80.42.19.88\nMessage Wall:80.42.253.35\nMessage Wall:80.43.126.71\nMessage Wall:80.43.151.251\nMessage Wall:80.44.139.102\nMessage Wall:80.44.230.0\nMessage Wall:80.44.238.58\nMessage Wall:80.47.132.224\nMessage Wall:80.47.140.234\nMessage Wall:80.47.173.125\nMessage Wall:80.47.174.194\nMessage Wall:80.47.30.51\nMessage Wall:80.5.101.139\nMessage Wall:80.5.242.25\nMessage Wall:80.5.32.58\nMessage Wall:80.55.253.114\nMessage Wall:80.56.61.209\nMessage Wall:80.56.73.132\nMessage Wall:80.57.106.52\nMessage Wall:80.6.229.219\nMessage Wall:80.6.247.196\nMessage Wall:80.60.1.5\nMessage Wall:80.60.18.111\nMessage Wall:80.60.35.115\nMessage Wall:80.60.64.182\nMessage Wall:80.61.254.161\nMessage Wall:80.7.103.106\nMessage Wall:80.7.16.47\nMessage Wall:80.7.18.249\nMessage Wall:80.7.76.127\nMessage Wall:80.71.134.129\nMessage Wall:80.72.153.238\nMessage Wall:80.82.132.27\nMessage Wall:80.83.225.3\nMessage Wall:80.84.200.215\nMessage Wall:80.84.212.33\nMessage Wall:80.94.160.227\nMessage Wall:80.95.139.66\nMessage Wall:80.98.18.7\nMessage Wall:80.98.186.135\nMessage Wall:80.98.193.215\nMessage Wall:81.100.120.55\nMessage Wall:81.100.201.225\nMessage Wall:81.100.244.37\nMessage Wall:81.100.56.210\nMessage Wall:81.101.130.146\nMessage Wall:81.101.152.100\nMessage Wall:81.101.206.144\nMessage Wall:81.101.244.165\nMessage Wall:81.101.97.103\nMessage Wall:81.102.62.62\nMessage Wall:81.102.75.101\nMessage Wall:81.103.227.24\nMessage Wall:81.104.19.169\nMessage Wall:81.104.211.104\nMessage Wall:81.104.85.31\nMessage Wall:81.105.110.197\nMessage Wall:81.105.21.73\nMessage Wall:81.106.113.212\nMessage Wall:81.106.156.32\nMessage Wall:81.106.231.88\nMessage Wall:81.106.30.12\nMessage Wall:81.107.129.214\nMessage Wall:81.107.173.246\nMessage Wall:81.108.110.165\nMessage Wall:81.108.218.120\nMessage Wall:81.108.238.246\nMessage Wall:81.108.59.113\nMessage Wall:81.109.67.129\nMessage Wall:81.11.181.167\nMessage Wall:81.11.221.167\nMessage Wall:81.110.26.28\nMessage Wall:81.110.55.228\nMessage Wall:81.110.84.203\nMessage Wall:81.110.85.231\nMessage Wall:81.111.151.164\nMessage Wall:81.111.64.150\nMessage Wall:81.111.66.65\nMessage Wall:81.111.74.55\nMessage Wall:81.129.206.14\nMessage Wall:81.129.247.82\nMessage Wall:81.129.4.51\nMessage Wall:81.129.71.10\nMessage Wall:81.129.80.199\nMessage Wall:81.130.10.7\nMessage Wall:81.130.208.76\nMessage Wall:81.130.215.225\nMessage Wall:81.130.86.3\nMessage Wall:81.131.142.33\nMessage Wall:81.131.199.67\nMessage Wall:81.131.207.139\nMessage Wall:81.132.13.113\nMessage Wall:81.132.13.30\nMessage Wall:81.132.201.121\nMessage Wall:81.132.207.230\nMessage Wall:81.132.38.91\nMessage Wall:81.133.221.77\nMessage Wall:81.135.246.115\nMessage Wall:81.136.133.166\nMessage Wall:81.136.144.118\nMessage Wall:81.136.167.184\nMessage Wall:81.136.36.111\nMessage Wall:81.136.54.170\nMessage Wall:81.136.66.138\nMessage Wall:81.138.5.166\nMessage Wall:81.139.105.160\nMessage Wall:81.139.192.2\nMessage Wall:81.140.232.49\nMessage Wall:81.140.39.179\nMessage Wall:81.141.103.97\nMessage Wall:81.141.149.218\nMessage Wall:81.141.202.85\nMessage Wall:81.141.34.77\nMessage Wall:81.141.52.40\nMessage Wall:81.141.53.110\nMessage Wall:81.141.86.148\nMessage Wall:81.144.150.66\nMessage Wall:81.144.225.226\nMessage Wall:81.145.128.34\nMessage Wall:81.146.24.187\nMessage Wall:81.146.58.170\nMessage Wall:81.147.134.149\nMessage Wall:81.147.152.94\nMessage Wall:81.148.186.14\nMessage Wall:81.149.33.239\nMessage Wall:81.15.241.12\nMessage Wall:81.151.182.197\nMessage Wall:81.151.212.226\nMessage Wall:81.151.56.27\nMessage Wall:81.151.57.137\nMessage Wall:81.151.64.119\nMessage Wall:81.151.7.33\nMessage Wall:81.151.71.193\nMessage Wall:81.152.101.235\nMessage Wall:81.152.125.18\nMessage Wall:81.152.138.220\nMessage Wall:81.152.20.197\nMessage Wall:81.152.210.59\nMessage Wall:81.152.49.243\nMessage Wall:81.152.96.100\nMessage Wall:81.152.97.130\nMessage Wall:81.153.241.147\nMessage Wall:81.153.4.84\nMessage Wall:81.153.58.135\nMessage Wall:81.154.183.209\nMessage Wall:81.154.79.71\nMessage Wall:81.155.242.111\nMessage Wall:81.156.83.205\nMessage Wall:81.157.154.30\nMessage Wall:81.157.157.132\nMessage Wall:81.157.247.221\nMessage Wall:81.157.83.178\nMessage Wall:81.158.158.199\nMessage Wall:81.158.158.46\nMessage Wall:81.158.2.193\nMessage Wall:81.158.219.0\nMessage Wall:81.158.58.102\nMessage Wall:81.158.84.224\nMessage Wall:81.158.84.248\nMessage Wall:81.159.132.78\nMessage Wall:81.159.210.189\nMessage Wall:81.159.221.174\nMessage Wall:81.159.72.252\nMessage Wall:81.159.75.181\nMessage Wall:81.159.96.241\nMessage Wall:81.164.183.148\nMessage Wall:81.166.147.118\nMessage Wall:81.166.196.79\nMessage Wall:81.167.168.226\nMessage Wall:81.167.170.217\nMessage Wall:81.169.254.165\nMessage Wall:81.170.8.5\nMessage Wall:81.171.59.12\nMessage Wall:81.172.103.170\nMessage Wall:81.174.146.46\nMessage Wall:81.174.149.221\nMessage Wall:81.174.168.37\nMessage Wall:81.174.170.145\nMessage Wall:81.174.171.1\nMessage Wall:81.174.201.41\nMessage Wall:81.174.204.220\nMessage Wall:81.174.240.66\nMessage Wall:81.174.250.56\nMessage Wall:81.174.56.113\nMessage Wall:81.175.150.135\nMessage Wall:81.175.198.68\nMessage Wall:81.175.226.81\nMessage Wall:81.175.232.78\nMessage Wall:81.178.191.241\nMessage Wall:81.18.252.166\nMessage Wall:81.18.89.62\nMessage Wall:81.184.173.137\nMessage Wall:81.187.73.38\nMessage Wall:81.19.46.120\nMessage Wall:81.191.148.175\nMessage Wall:81.191.154.157\nMessage Wall:81.198.105.59\nMessage Wall:81.198.252.58\nMessage Wall:81.20.177.221\nMessage Wall:81.20.189.90\nMessage Wall:81.205.66.160\nMessage Wall:81.206.232.113\nMessage Wall:81.215.55.22\nMessage Wall:81.216.34.35\nMessage Wall:81.217.157.133\nMessage Wall:81.217.203.94\nMessage Wall:81.22.22.199\nMessage Wall:81.220.61.212\nMessage Wall:81.224.203.221\nMessage Wall:81.225.196.146\nMessage Wall:81.226.219.116\nMessage Wall:81.226.242.104\nMessage Wall:81.227.31.244\nMessage Wall:81.231.146.227\nMessage Wall:81.231.248.122\nMessage Wall:81.231.85.115\nMessage Wall:81.232.14.88\nMessage Wall:81.232.74.139\nMessage Wall:81.233.166.70\nMessage Wall:81.233.169.151\nMessage Wall:81.233.188.161\nMessage Wall:81.234.22.43\nMessage Wall:81.235.174.224\nMessage Wall:81.240.20.85\nMessage Wall:81.241.112.56\nMessage Wall:81.241.68.45\nMessage Wall:81.241.79.159\nMessage Wall:81.242.254.116\nMessage Wall:81.243.24.99\nMessage Wall:81.244.95.49\nMessage Wall:81.245.42.174\nMessage Wall:81.245.73.96\nMessage Wall:81.247.112.153\nMessage Wall:81.25.53.116\nMessage Wall:81.250.115.175\nMessage Wall:81.250.58.244\nMessage Wall:81.252.186.92\nMessage Wall:81.30.141.120\nMessage Wall:81.32.186.145\nMessage Wall:81.33.233.240\nMessage Wall:81.36.50.248\nMessage Wall:81.37.229.120\nMessage Wall:81.39.30.135\nMessage Wall:81.47.172.156\nMessage Wall:81.5.154.231\nMessage Wall:81.56.185.201\nMessage Wall:81.61.32.123\nMessage Wall:81.63.182.173\nMessage Wall:81.66.132.255\nMessage Wall:81.67.118.215\nMessage Wall:81.68.94.147\nMessage Wall:81.82.184.192\nMessage Wall:81.83.13.34\nMessage Wall:81.84.154.81\nMessage Wall:81.88.116.141\nMessage Wall:81.90.253.5\nMessage Wall:81.95.15.26\nMessage Wall:81.96.67.66\nMessage Wall:81.96.85.157\nMessage Wall:81.96.91.239\nMessage Wall:81.97.42.7\nMessage Wall:81.97.78.137\nMessage Wall:81.98.186.16\nMessage Wall:81.98.192.213\nMessage Wall:81.98.227.73\nMessage Wall:81.99.72.216\nMessage Wall:82.0.120.182\nMessage Wall:82.0.145.148\nMessage Wall:82.0.22.181\nMessage Wall:82.0.221.126\nMessage Wall:82.0.39.170\nMessage Wall:82.1.165.161\nMessage Wall:82.1.61.12\nMessage Wall:82.1.69.183\nMessage Wall:82.10.220.160\nMessage Wall:82.11.121.5\nMessage Wall:82.11.164.143\nMessage Wall:82.11.35.107\nMessage Wall:82.11.55.208\nMessage Wall:82.11.99.50\nMessage Wall:82.110.109.210\nMessage Wall:82.114.198.67\nMessage Wall:82.114.238.99\nMessage Wall:82.116.230.171\nMessage Wall:82.118.101.129\nMessage Wall:82.12.77.226\nMessage Wall:82.120.134.247\nMessage Wall:82.122.78.155\nMessage Wall:82.125.95.178\nMessage Wall:82.127.12.228\nMessage Wall:82.128.249.206\nMessage Wall:82.13.81.93\nMessage Wall:82.131.142.171\nMessage Wall:82.131.175.253\nMessage Wall:82.131.223.203\nMessage Wall:82.131.42.61\nMessage Wall:82.131.43.204\nMessage Wall:82.132.212.222\nMessage Wall:82.132.217.164\nMessage Wall:82.132.230.190\nMessage Wall:82.132.237.13\nMessage Wall:82.134.233.131\nMessage Wall:82.135.204.166\nMessage Wall:82.137.13.217\nMessage Wall:82.137.15.81\nMessage Wall:82.14.162.11\nMessage Wall:82.14.27.89\nMessage Wall:82.14.57.165\nMessage Wall:82.14.65.155\nMessage Wall:82.145.220.235\nMessage Wall:82.145.220.53\nMessage Wall:82.147.248.98\nMessage Wall:82.148.166.90\nMessage Wall:82.15.177.28\nMessage Wall:82.151.111.197\nMessage Wall:82.153.100.10\nMessage Wall:82.153.112.55\nMessage Wall:82.156.116.254\nMessage Wall:82.16.119.45\nMessage Wall:82.16.131.141\nMessage Wall:82.16.196.92\nMessage Wall:82.16.43.241\nMessage Wall:82.16.53.59\nMessage Wall:82.161.204.126\nMessage Wall:82.161.55.18\nMessage Wall:82.166.140.125\nMessage Wall:82.168.105.216\nMessage Wall:82.169.234.224\nMessage Wall:82.169.90.156\nMessage Wall:82.17.194.229\nMessage Wall:82.17.223.212\nMessage Wall:82.17.84.126\nMessage Wall:82.18.130.34\nMessage Wall:82.18.133.13\nMessage Wall:82.18.159.110\nMessage Wall:82.18.176.185\nMessage Wall:82.18.232.243\nMessage Wall:82.18.248.165\nMessage Wall:82.181.31.246\nMessage Wall:82.181.36.147\nMessage Wall:82.181.70.174\nMessage Wall:82.19.125.83\nMessage Wall:82.19.14.126\nMessage Wall:82.19.145.5\nMessage Wall:82.190.5.212\nMessage Wall:82.192.226.115\nMessage Wall:82.192.241.30\nMessage Wall:82.192.46.88\nMessage Wall:82.194.220.22\nMessage Wall:82.196.124.194\nMessage Wall:82.197.195.147\nMessage Wall:82.197.212.7\nMessage Wall:82.2.125.150\nMessage Wall:82.2.143.109\nMessage Wall:82.2.18.76\nMessage Wall:82.2.198.74\nMessage Wall:82.2.44.42\nMessage Wall:82.2.45.99\nMessage Wall:82.2.74.231\nMessage Wall:82.2.79.60\nMessage Wall:82.2.95.19\nMessage Wall:82.20.100.207\nMessage Wall:82.20.218.159\nMessage Wall:82.20.25.193\nMessage Wall:82.20.30.42\nMessage Wall:82.20.43.167\nMessage Wall:82.208.5.86\nMessage Wall:82.209.144.12\nMessage Wall:82.209.179.35\nMessage Wall:82.21.19.62\nMessage Wall:82.21.35.72\nMessage Wall:82.21.94.67\nMessage Wall:82.211.216.102\nMessage Wall:82.211.217.195\nMessage Wall:82.216.129.175\nMessage Wall:82.217.13.233\nMessage Wall:82.217.212.189\nMessage Wall:82.217.54.242\nMessage Wall:82.218.226.157\nMessage Wall:82.22.201.255\nMessage Wall:82.22.60.40\nMessage Wall:82.220.1.196\nMessage Wall:82.222.130.189\nMessage Wall:82.224.162.129\nMessage Wall:82.226.121.139\nMessage Wall:82.227.123.100\nMessage Wall:82.227.178.47\nMessage Wall:82.227.254.38\nMessage Wall:82.227.5.100\nMessage Wall:82.228.151.108\nMessage Wall:82.228.231.76\nMessage Wall:82.23.244.3\nMessage Wall:82.230.123.144\nMessage Wall:82.233.116.4\nMessage Wall:82.235.0.168\nMessage Wall:82.237.248.209\nMessage Wall:82.239.91.95\nMessage Wall:82.24.105.102\nMessage Wall:82.24.227.152\nMessage Wall:82.24.229.51\nMessage Wall:82.24.250.176\nMessage Wall:82.24.57.204\nMessage Wall:82.241.236.151\nMessage Wall:82.244.46.35\nMessage Wall:82.244.88.189\nMessage Wall:82.246.228.179\nMessage Wall:82.247.216.222\nMessage Wall:82.247.70.239\nMessage Wall:82.25.132.84\nMessage Wall:82.25.175.6\nMessage Wall:82.25.185.43\nMessage Wall:82.25.20.248\nMessage Wall:82.25.91.128\nMessage Wall:82.25.92.103\nMessage Wall:82.250.222.63\nMessage Wall:82.254.37.126\nMessage Wall:82.26.114.24\nMessage Wall:82.26.149.254\nMessage Wall:82.26.164.194\nMessage Wall:82.26.184.167\nMessage Wall:82.27.106.72\nMessage Wall:82.27.25.6\nMessage Wall:82.28.120.225\nMessage Wall:82.28.154.132\nMessage Wall:82.28.166.251\nMessage Wall:82.28.172.248\nMessage Wall:82.28.175.202\nMessage Wall:82.28.239.89\nMessage Wall:82.29.12.196\nMessage Wall:82.29.169.45\nMessage Wall:82.29.186.189\nMessage Wall:82.3.104.115\nMessage Wall:82.3.188.41\nMessage Wall:82.3.191.15\nMessage Wall:82.3.206.100\nMessage Wall:82.3.208.151\nMessage Wall:82.3.6.64\nMessage Wall:82.3.86.66\nMessage Wall:82.30.236.238\nMessage Wall:82.31.165.217\nMessage Wall:82.31.177.188\nMessage Wall:82.31.188.60\nMessage Wall:82.31.33.36\nMessage Wall:82.31.34.186\nMessage Wall:82.31.97.0\nMessage Wall:82.32.79.85\nMessage Wall:82.33.100.31\nMessage Wall:82.33.117.165\nMessage Wall:82.33.246.130\nMessage Wall:82.33.30.158\nMessage Wall:82.34.20.208\nMessage Wall:82.34.83.113\nMessage Wall:82.35.108.29\nMessage Wall:82.35.136.86\nMessage Wall:82.35.139.120\nMessage Wall:82.35.144.5\nMessage Wall:82.35.148.35\nMessage Wall:82.35.224.103\nMessage Wall:82.35.94.224\nMessage Wall:82.36.103.204\nMessage Wall:82.36.112.212\nMessage Wall:82.36.199.64\nMessage Wall:82.36.221.32\nMessage Wall:82.36.89.8\nMessage Wall:82.37.135.121\nMessage Wall:82.37.138.189\nMessage Wall:82.37.213.132\nMessage Wall:82.37.7.24\nMessage Wall:82.38.144.39\nMessage Wall:82.38.158.47\nMessage Wall:82.38.185.71\nMessage Wall:82.38.246.95\nMessage Wall:82.38.252.29\nMessage Wall:82.38.51.32\nMessage Wall:82.38.93.66\nMessage Wall:82.39.104.24\nMessage Wall:82.4.187.184\nMessage Wall:82.4.71.151\nMessage Wall:82.40.25.154\nMessage Wall:82.40.40.25\nMessage Wall:82.41.159.118\nMessage Wall:82.41.46.198\nMessage Wall:82.41.65.176\nMessage Wall:82.42.214.76\nMessage Wall:82.43.128.159\nMessage Wall:82.43.173.210\nMessage Wall:82.43.43.240\nMessage Wall:82.43.82.64\nMessage Wall:82.43.87.96\nMessage Wall:82.43.91.57\nMessage Wall:82.43.94.186\nMessage Wall:82.43.96.64\nMessage Wall:82.44.159.112\nMessage Wall:82.44.57.175\nMessage Wall:82.45.170.141\nMessage Wall:82.45.19.147\nMessage Wall:82.45.20.13\nMessage Wall:82.45.236.70\nMessage Wall:82.45.31.202\nMessage Wall:82.45.41.26\nMessage Wall:82.45.48.66\nMessage Wall:82.46.123.131\nMessage Wall:82.46.180.86\nMessage Wall:82.47.167.18\nMessage Wall:82.47.191.91\nMessage Wall:82.47.212.225\nMessage Wall:82.47.233.130\nMessage Wall:82.47.94.124\nMessage Wall:82.48.66.234\nMessage Wall:82.49.158.212\nMessage Wall:82.49.169.40\nMessage Wall:82.5.118.61\nMessage Wall:82.5.247.253\nMessage Wall:82.5.251.131\nMessage Wall:82.53.50.162\nMessage Wall:82.6.176.130\nMessage Wall:82.61.91.249\nMessage Wall:82.66.117.115\nMessage Wall:82.67.222.125\nMessage Wall:82.67.24.137\nMessage Wall:82.68.149.138\nMessage Wall:82.68.149.142\nMessage Wall:82.69.108.71\nMessage Wall:82.69.22.226\nMessage Wall:82.69.31.190\nMessage Wall:82.69.79.251\nMessage Wall:82.69.9.196\nMessage Wall:82.69.95.27\nMessage Wall:82.7.139.174\nMessage Wall:82.7.154.17\nMessage Wall:82.7.216.22\nMessage Wall:82.71.19.127\nMessage Wall:82.71.34.195\nMessage Wall:82.71.63.52\nMessage Wall:82.71.9.96\nMessage Wall:82.72.141.146\nMessage Wall:82.72.90.35\nMessage Wall:82.74.25.252\nMessage Wall:82.75.252.114\nMessage Wall:82.75.82.55\nMessage Wall:82.76.217.215\nMessage Wall:82.78.205.19\nMessage Wall:82.8.139.112\nMessage Wall:82.8.142.45\nMessage Wall:82.8.47.72\nMessage Wall:82.81.17.90\nMessage Wall:82.83.133.123\nMessage Wall:82.83.136.117\nMessage Wall:82.83.137.248\nMessage Wall:82.83.143.39\nMessage Wall:82.83.143.69\nMessage Wall:82.83.144.201\nMessage Wall:82.83.144.80\nMessage Wall:82.83.155.101\nMessage Wall:82.84.195.150\nMessage Wall:82.85.142.168\nMessage Wall:82.9.236.252\nMessage Wall:82.9.59.120\nMessage Wall:82.9.85.160\nMessage Wall:82.99.27.68\nMessage Wall:83.10.155.20\nMessage Wall:83.10.167.252\nMessage Wall:83.113.224.233\nMessage Wall:83.113.229.185\nMessage Wall:83.125.103.157\nMessage Wall:83.134.205.187\nMessage Wall:83.135.242.86\nMessage Wall:83.135.63.220\nMessage Wall:83.136.43.44\nMessage Wall:83.139.146.158\nMessage Wall:83.139.66.198\nMessage Wall:83.141.215.108\nMessage Wall:83.143.149.132\nMessage Wall:83.144.107.78\nMessage Wall:83.145.205.176\nMessage Wall:83.145.208.113\nMessage Wall:83.145.238.35\nMessage Wall:83.157.227.7\nMessage Wall:83.162.210.172\nMessage Wall:83.162.251.49\nMessage Wall:83.163.141.221\nMessage Wall:83.163.148.100\nMessage Wall:83.163.164.225\nMessage Wall:83.165.1.101\nMessage Wall:83.165.5.231\nMessage Wall:83.179.32.172\nMessage Wall:83.185.243.241\nMessage Wall:83.185.85.142\nMessage Wall:83.199.218.250\nMessage Wall:83.199.222.191\nMessage Wall:83.200.14.242\nMessage Wall:83.202.243.188\nMessage Wall:83.208.184.9\nMessage Wall:83.208.206.168\nMessage Wall:83.208.41.31\nMessage Wall:83.215.226.120\nMessage Wall:83.223.191.203\nMessage Wall:83.223.21.91\nMessage Wall:83.226.143.100\nMessage Wall:83.227.100.204\nMessage Wall:83.227.111.30\nMessage Wall:83.227.71.235\nMessage Wall:83.228.134.154\nMessage Wall:83.237.122.118\nMessage Wall:83.238.224.67\nMessage Wall:83.240.126.50\nMessage Wall:83.244.197.2\nMessage Wall:83.248.104.120\nMessage Wall:83.248.59.175\nMessage Wall:83.25.139.174\nMessage Wall:83.250.97.74\nMessage Wall:83.251.113.163\nMessage Wall:83.251.235.63\nMessage Wall:83.251.73.238\nMessage Wall:83.252.118.197\nMessage Wall:83.252.190.254\nMessage Wall:83.253.19.53\nMessage Wall:83.253.212.171\nMessage Wall:83.254.244.172\nMessage Wall:83.254.38.215\nMessage Wall:83.254.45.223\nMessage Wall:83.254.82.138\nMessage Wall:83.26.183.83\nMessage Wall:83.26.250.223\nMessage Wall:83.31.106.190\nMessage Wall:83.31.114.52\nMessage Wall:83.33.189.165\nMessage Wall:83.33.38.223\nMessage Wall:83.36.48.101\nMessage Wall:83.37.157.185\nMessage Wall:83.4.106.187\nMessage Wall:83.41.205.170\nMessage Wall:83.41.223.238\nMessage Wall:83.43.134.8\nMessage Wall:83.44.233.6\nMessage Wall:83.45.156.156\nMessage Wall:83.46.201.236\nMessage Wall:83.49.45.46\nMessage Wall:83.55.154.151\nMessage Wall:83.57.1.248\nMessage Wall:83.59.89.81\nMessage Wall:83.6.223.216\nMessage Wall:83.60.167.215\nMessage Wall:83.61.230.131\nMessage Wall:83.7.3.68\nMessage Wall:83.7.43.24\nMessage Wall:83.71.11.235\nMessage Wall:83.71.7.201\nMessage Wall:83.81.193.219\nMessage Wall:83.81.209.159\nMessage Wall:83.81.236.121\nMessage Wall:83.81.70.93\nMessage Wall:83.82.132.3\nMessage Wall:83.82.242.75\nMessage Wall:83.84.236.246\nMessage Wall:83.84.38.44\nMessage Wall:83.85.57.124\nMessage Wall:83.86.187.95\nMessage Wall:83.86.56.71\nMessage Wall:83.87.189.86\nMessage Wall:83.87.69.23\nMessage Wall:83.87.73.52\nMessage Wall:83.9.74.202\nMessage Wall:83.93.4.137\nMessage Wall:83.93.62.53\nMessage Wall:83.95.121.223\nMessage Wall:83.95.162.88\nMessage Wall:83.95.165.66\nMessage Wall:83.97.204.249\nMessage Wall:83.99.115.169\nMessage Wall:83.99.147.171\nMessage Wall:83.99.17.160\nMessage Wall:84.0.35.155\nMessage Wall:84.0.43.234\nMessage Wall:84.1.173.167\nMessage Wall:84.1.35.38\nMessage Wall:84.10.214.212\nMessage Wall:84.101.149.246\nMessage Wall:84.104.124.74\nMessage Wall:84.104.180.109\nMessage Wall:84.104.203.193\nMessage Wall:84.104.43.59\nMessage Wall:84.104.54.118\nMessage Wall:84.105.109.157\nMessage Wall:84.105.246.107\nMessage Wall:84.105.71.72\nMessage Wall:84.106.111.176\nMessage Wall:84.106.211.98\nMessage Wall:84.107.201.162\nMessage Wall:84.109.145.114\nMessage Wall:84.113.160.103\nMessage Wall:84.113.194.215\nMessage Wall:84.113.243.159\nMessage Wall:84.113.247.3\nMessage Wall:84.113.8.35\nMessage Wall:84.114.135.109\nMessage Wall:84.114.24.90\nMessage Wall:84.115.34.133\nMessage Wall:84.118.149.52\nMessage Wall:84.118.161.74\nMessage Wall:84.118.193.4\nMessage Wall:84.118.95.75\nMessage Wall:84.119.101.147\nMessage Wall:84.119.93.33\nMessage Wall:84.121.55.244\nMessage Wall:84.122.118.162\nMessage Wall:84.129.64.89\nMessage Wall:84.129.82.134\nMessage Wall:84.129.82.244\nMessage Wall:84.13.102.249\nMessage Wall:84.13.108.51\nMessage Wall:84.13.224.147\nMessage Wall:84.13.232.40\nMessage Wall:84.13.237.84\nMessage Wall:84.13.50.128\nMessage Wall:84.130.89.143\nMessage Wall:84.132.217.71\nMessage Wall:84.132.223.203\nMessage Wall:84.132.36.14\nMessage Wall:84.132.59.199\nMessage Wall:84.133.100.92\nMessage Wall:84.133.101.168\nMessage Wall:84.133.178.73\nMessage Wall:84.135.10.124\nMessage Wall:84.135.20.6\nMessage Wall:84.135.23.53\nMessage Wall:84.135.250.6\nMessage Wall:84.135.27.214\nMessage Wall:84.135.30.179\nMessage Wall:84.135.37.29\nMessage Wall:84.137.178.107\nMessage Wall:84.138.118.123\nMessage Wall:84.138.22.152\nMessage Wall:84.138.86.36\nMessage Wall:84.139.30.50\nMessage Wall:84.139.5.58\nMessage Wall:84.142.11.128\nMessage Wall:84.143.11.152\nMessage Wall:84.143.3.248\nMessage Wall:84.144.211.192\nMessage Wall:84.144.221.102\nMessage Wall:84.144.221.122\nMessage Wall:84.146.213.213\nMessage Wall:84.146.218.55\nMessage Wall:84.151.203.73\nMessage Wall:84.152.166.22\nMessage Wall:84.153.86.155\nMessage Wall:84.154.82.86\nMessage Wall:84.154.84.138\nMessage Wall:84.154.86.74\nMessage Wall:84.154.87.72\nMessage Wall:84.154.92.89\nMessage Wall:84.154.94.100\nMessage Wall:84.155.116.113\nMessage Wall:84.155.26.150\nMessage Wall:84.156.247.251\nMessage Wall:84.157.17.100\nMessage Wall:84.159.107.114\nMessage Wall:84.159.252.67\nMessage Wall:84.162.9.234\nMessage Wall:84.165.23.131\nMessage Wall:84.168.106.87\nMessage Wall:84.168.106.88\nMessage Wall:84.168.114.123\nMessage Wall:84.171.70.245\nMessage Wall:84.171.87.195\nMessage Wall:84.171.95.19\nMessage Wall:84.172.221.41\nMessage Wall:84.173.105.208\nMessage Wall:84.173.112.19\nMessage Wall:84.173.127.25\nMessage Wall:84.174.123.253\nMessage Wall:84.174.129.230\nMessage Wall:84.174.162.212\nMessage Wall:84.174.163.95\nMessage Wall:84.175.69.206\nMessage Wall:84.175.75.209\nMessage Wall:84.175.99.203\nMessage Wall:84.177.221.188\nMessage Wall:84.178.203.118\nMessage Wall:84.178.26.71\nMessage Wall:84.183.105.254\nMessage Wall:84.183.20.7\nMessage Wall:84.186.82.98\nMessage Wall:84.188.117.211\nMessage Wall:84.190.211.124\nMessage Wall:84.192.14.107\nMessage Wall:84.192.97.75\nMessage Wall:84.193.126.61\nMessage Wall:84.193.142.189\nMessage Wall:84.193.153.26\nMessage Wall:84.194.124.8\nMessage Wall:84.195.191.69\nMessage Wall:84.195.222.165\nMessage Wall:84.195.54.27\nMessage Wall:84.195.8.142\nMessage Wall:84.198.255.204\nMessage Wall:84.199.100.122\nMessage Wall:84.2.223.68\nMessage Wall:84.202.144.181\nMessage Wall:84.202.200.137\nMessage Wall:84.203.5.26\nMessage Wall:84.203.7.208\nMessage Wall:84.208.172.79\nMessage Wall:84.208.244.95\nMessage Wall:84.210.45.78\nMessage Wall:84.211.132.29\nMessage Wall:84.212.124.156\nMessage Wall:84.214.99.111\nMessage Wall:84.226.85.56\nMessage Wall:84.227.113.201\nMessage Wall:84.23.147.109\nMessage Wall:84.234.145.94\nMessage Wall:84.236.87.38\nMessage Wall:84.237.177.149\nMessage Wall:84.242.125.139\nMessage Wall:84.245.13.8\nMessage Wall:84.245.27.111\nMessage Wall:84.246.166.26\nMessage Wall:84.247.138.189\nMessage Wall:84.247.190.133\nMessage Wall:84.248.122.164\nMessage Wall:84.248.64.145\nMessage Wall:84.248.70.53\nMessage Wall:84.249.206.93\nMessage Wall:84.25.166.143\nMessage Wall:84.25.232.122\nMessage Wall:84.250.122.99\nMessage Wall:84.250.166.244\nMessage Wall:84.250.168.119\nMessage Wall:84.250.30.175\nMessage Wall:84.250.32.136\nMessage Wall:84.250.76.92\nMessage Wall:84.251.25.39\nMessage Wall:84.251.68.190\nMessage Wall:84.26.144.208\nMessage Wall:84.26.168.123\nMessage Wall:84.26.251.5\nMessage Wall:84.27.177.13\nMessage Wall:84.27.94.67\nMessage Wall:84.28.173.158\nMessage Wall:84.29.101.245\nMessage Wall:84.3.175.207\nMessage Wall:84.30.161.90\nMessage Wall:84.42.238.19\nMessage Wall:84.46.23.192\nMessage Wall:84.51.142.99\nMessage Wall:84.51.159.32\nMessage Wall:84.52.38.228\nMessage Wall:84.57.80.23\nMessage Wall:84.59.126.149\nMessage Wall:84.59.169.210\nMessage Wall:84.59.182.34\nMessage Wall:84.60.149.251\nMessage Wall:84.62.107.198\nMessage Wall:84.62.40.193\nMessage Wall:84.62.46.180\nMessage Wall:84.62.46.84\nMessage Wall:84.63.84.52\nMessage Wall:84.72.20.96\nMessage Wall:84.74.0.24\nMessage Wall:84.74.192.41\nMessage Wall:84.75.167.109\nMessage Wall:84.76.229.30\nMessage Wall:84.80.149.177\nMessage Wall:84.80.186.77\nMessage Wall:84.82.15.219\nMessage Wall:84.87.114.253\nMessage Wall:84.9.60.161\nMessage Wall:84.9.81.209\nMessage Wall:84.92.114.178\nMessage Wall:84.92.123.246\nMessage Wall:84.93.101.103\nMessage Wall:84.93.144.196\nMessage Wall:84.93.189.188\nMessage Wall:84.99.4.95\nMessage Wall:85.0.193.79\nMessage Wall:85.1.111.143\nMessage Wall:85.103.75.91\nMessage Wall:85.105.100.25\nMessage Wall:85.108.145.195\nMessage Wall:85.11.232.221\nMessage Wall:85.115.52.180\nMessage Wall:85.115.52.201\nMessage Wall:85.115.54.180\nMessage Wall:85.115.54.201\nMessage Wall:85.115.54.202\nMessage Wall:85.12.76.63\nMessage Wall:85.138.251.218\nMessage Wall:85.14.86.142\nMessage Wall:85.140.203.49\nMessage Wall:85.150.31.102\nMessage Wall:85.157.129.60\nMessage Wall:85.157.197.167\nMessage Wall:85.159.168.177\nMessage Wall:85.165.152.56\nMessage Wall:85.165.212.157\nMessage Wall:85.165.223.45\nMessage Wall:85.165.24.241\nMessage Wall:85.165.26.186\nMessage Wall:85.165.88.205\nMessage Wall:85.166.108.253\nMessage Wall:85.166.176.97\nMessage Wall:85.166.222.26\nMessage Wall:85.166.255.240\nMessage Wall:85.166.45.124\nMessage Wall:85.166.74.253\nMessage Wall:85.166.79.119\nMessage Wall:85.168.197.35\nMessage Wall:85.168.93.235\nMessage Wall:85.169.230.68\nMessage Wall:85.172.163.57\nMessage Wall:85.176.108.135\nMessage Wall:85.176.224.224\nMessage Wall:85.177.137.35\nMessage Wall:85.177.49.86\nMessage Wall:85.177.78.181\nMessage Wall:85.177.92.191\nMessage Wall:85.178.12.184\nMessage Wall:85.178.61.110\nMessage Wall:85.178.8.38\nMessage Wall:85.179.235.118\nMessage Wall:85.179.67.168\nMessage Wall:85.179.70.102\nMessage Wall:85.18.231.4\nMessage Wall:85.180.129.113\nMessage Wall:85.180.213.204\nMessage Wall:85.181.154.184\nMessage Wall:85.182.140.170\nMessage Wall:85.192.70.113\nMessage Wall:85.197.35.31\nMessage Wall:85.197.54.90\nMessage Wall:85.199.248.92\nMessage Wall:85.199.49.197\nMessage Wall:85.2.81.96\nMessage Wall:85.201.17.88\nMessage Wall:85.206.22.34\nMessage Wall:85.21.236.31\nMessage Wall:85.21.249.183\nMessage Wall:85.210.94.219\nMessage Wall:85.216.210.38\nMessage Wall:85.218.24.76\nMessage Wall:85.221.31.192\nMessage Wall:85.224.157.125\nMessage Wall:85.224.224.106\nMessage Wall:85.224.255.58\nMessage Wall:85.224.70.136\nMessage Wall:85.225.6.86\nMessage Wall:85.226.211.156\nMessage Wall:85.228.210.179\nMessage Wall:85.228.241.219\nMessage Wall:85.229.110.38\nMessage Wall:85.229.250.15\nMessage Wall:85.229.59.186\nMessage Wall:85.23.172.59\nMessage Wall:85.23.196.186\nMessage Wall:85.23.20.246\nMessage Wall:85.23.245.78\nMessage Wall:85.23.91.117\nMessage Wall:85.230.100.76\nMessage Wall:85.238.175.224\nMessage Wall:85.240.98.46\nMessage Wall:85.245.45.181\nMessage Wall:85.246.104.196\nMessage Wall:85.246.140.217\nMessage Wall:85.247.81.152\nMessage Wall:85.252.215.127\nMessage Wall:85.253.173.110\nMessage Wall:85.253.217.23\nMessage Wall:85.254.79.173\nMessage Wall:85.255.232.50\nMessage Wall:85.255.233.6\nMessage Wall:85.255.234.219\nMessage Wall:85.255.235.157\nMessage Wall:85.3.160.199\nMessage Wall:85.30.180.131\nMessage Wall:85.30.188.48\nMessage Wall:85.5.2.71\nMessage Wall:85.59.18.238\nMessage Wall:85.64.89.143\nMessage Wall:85.68.245.20\nMessage Wall:85.7.147.142\nMessage Wall:85.7.154.13\nMessage Wall:85.7.20.185\nMessage Wall:85.70.18.52\nMessage Wall:85.70.209.143\nMessage Wall:85.70.228.87\nMessage Wall:85.71.224.148\nMessage Wall:85.72.182.172\nMessage Wall:85.76.110.202\nMessage Wall:85.76.12.250\nMessage Wall:85.76.130.137\nMessage Wall:85.76.144.108\nMessage Wall:85.76.150.251\nMessage Wall:85.76.21.164\nMessage Wall:85.76.22.235\nMessage Wall:85.76.32.99\nMessage Wall:85.76.49.132\nMessage Wall:85.85.225.97\nMessage Wall:85.87.44.86\nMessage Wall:85.9.58.227\nMessage Wall:85.93.199.122\nMessage Wall:85.96.27.240\nMessage Wall:86.0.130.106\nMessage Wall:86.0.225.14\nMessage Wall:86.0.250.148\nMessage Wall:86.1.123.240\nMessage Wall:86.1.17.5\nMessage Wall:86.1.43.146\nMessage Wall:86.1.61.9\nMessage Wall:86.1.70.139\nMessage Wall:86.1.76.90\nMessage Wall:86.10.64.111\nMessage Wall:86.10.7.58\nMessage Wall:86.10.94.81\nMessage Wall:86.10.95.235\nMessage Wall:86.101.117.105\nMessage Wall:86.103.167.47\nMessage Wall:86.11.128.32\nMessage Wall:86.11.139.27\nMessage Wall:86.11.155.67\nMessage Wall:86.11.52.143\nMessage Wall:86.11.99.35\nMessage Wall:86.12.194.135\nMessage Wall:86.12.229.79\nMessage Wall:86.12.254.251\nMessage Wall:86.12.45.1\nMessage Wall:86.12.53.149\nMessage Wall:86.12.81.174\nMessage Wall:86.125.182.243\nMessage Wall:86.126.174.136\nMessage Wall:86.126.94.34\nMessage Wall:86.127.131.245\nMessage Wall:86.127.143.245\nMessage Wall:86.127.43.198\nMessage Wall:86.129.13.33\nMessage Wall:86.129.134.51\nMessage Wall:86.129.226.92\nMessage Wall:86.129.91.235\nMessage Wall:86.13.253.177\nMessage Wall:86.13.64.107\nMessage Wall:86.131.75.158\nMessage Wall:86.132.116.75\nMessage Wall:86.132.64.6\nMessage Wall:86.133.138.188\nMessage Wall:86.133.20.97\nMessage Wall:86.134.128.209\nMessage Wall:86.134.190.119\nMessage Wall:86.134.3.148\nMessage Wall:86.134.37.188\nMessage Wall:86.134.9.205\nMessage Wall:86.135.202.70\nMessage Wall:86.135.32.154\nMessage Wall:86.135.73.136\nMessage Wall:86.136.152.44\nMessage Wall:86.136.233.194\nMessage Wall:86.136.26.250\nMessage Wall:86.137.143.23\nMessage Wall:86.137.229.249\nMessage Wall:86.137.26.128\nMessage Wall:86.138.149.129\nMessage Wall:86.138.180.56\nMessage Wall:86.139.100.120\nMessage Wall:86.139.195.109\nMessage Wall:86.139.41.81\nMessage Wall:86.139.42.97\nMessage Wall:86.139.67.175\nMessage Wall:86.139.72.33\nMessage Wall:86.14.127.43\nMessage Wall:86.14.221.83\nMessage Wall:86.14.75.31\nMessage Wall:86.14.78.108\nMessage Wall:86.140.117.80\nMessage Wall:86.140.95.254\nMessage Wall:86.142.146.174\nMessage Wall:86.142.225.249\nMessage Wall:86.144.234.165\nMessage Wall:86.144.240.217\nMessage Wall:86.144.66.150\nMessage Wall:86.145.236.37\nMessage Wall:86.145.238.157\nMessage Wall:86.145.5.132\nMessage Wall:86.145.57.201\nMessage Wall:86.145.62.163\nMessage Wall:86.146.28.97\nMessage Wall:86.147.230.52\nMessage Wall:86.147.34.79\nMessage Wall:86.147.48.146\nMessage Wall:86.147.51.185\nMessage Wall:86.147.73.239\nMessage Wall:86.147.93.1\nMessage Wall:86.148.115.225\nMessage Wall:86.148.126.246\nMessage Wall:86.148.22.245\nMessage Wall:86.148.44.122\nMessage Wall:86.149.119.194\nMessage Wall:86.149.145.169\nMessage Wall:86.149.147.109\nMessage Wall:86.149.18.26\nMessage Wall:86.149.197.112\nMessage Wall:86.149.32.233\nMessage Wall:86.15.218.140\nMessage Wall:86.15.249.79\nMessage Wall:86.15.253.161\nMessage Wall:86.150.100.27\nMessage Wall:86.150.114.98\nMessage Wall:86.150.233.45\nMessage Wall:86.150.248.166\nMessage Wall:86.150.83.18\nMessage Wall:86.151.180.217\nMessage Wall:86.151.194.46\nMessage Wall:86.151.241.145\nMessage Wall:86.152.69.213\nMessage Wall:86.152.72.58\nMessage Wall:86.152.87.254\nMessage Wall:86.152.88.171\nMessage Wall:86.152.99.162\nMessage Wall:86.153.131.213\nMessage Wall:86.153.163.242\nMessage Wall:86.153.193.107\nMessage Wall:86.153.43.97\nMessage Wall:86.153.60.122\nMessage Wall:86.153.62.21\nMessage Wall:86.153.76.75\nMessage Wall:86.154.20.48\nMessage Wall:86.154.255.164\nMessage Wall:86.154.48.121\nMessage Wall:86.154.51.83\nMessage Wall:86.155.180.230\nMessage Wall:86.155.195.62\nMessage Wall:86.155.245.175\nMessage Wall:86.155.247.69\nMessage Wall:86.155.32.39\nMessage Wall:86.156.100.199\nMessage Wall:86.156.108.141\nMessage Wall:86.156.164.114\nMessage Wall:86.156.178.36\nMessage Wall:86.156.183.25\nMessage Wall:86.156.202.56\nMessage Wall:86.156.66.143\nMessage Wall:86.157.102.208\nMessage Wall:86.157.105.175\nMessage Wall:86.157.128.229\nMessage Wall:86.157.43.37\nMessage Wall:86.157.6.203\nMessage Wall:86.157.6.35\nMessage Wall:86.157.77.155\nMessage Wall:86.157.9.232\nMessage Wall:86.158.233.43\nMessage Wall:86.158.252.212\nMessage Wall:86.158.255.94\nMessage Wall:86.158.84.220\nMessage Wall:86.159.200.181\nMessage Wall:86.159.35.193\nMessage Wall:86.16.221.233\nMessage Wall:86.16.25.74\nMessage Wall:86.16.27.37\nMessage Wall:86.16.31.42\nMessage Wall:86.160.14.90\nMessage Wall:86.160.150.17\nMessage Wall:86.160.222.167\nMessage Wall:86.160.8.191\nMessage Wall:86.160.92.18\nMessage Wall:86.161.108.26\nMessage Wall:86.161.153.188\nMessage Wall:86.161.153.82\nMessage Wall:86.161.155.122\nMessage Wall:86.161.175.219\nMessage Wall:86.161.199.25\nMessage Wall:86.161.252.97\nMessage Wall:86.161.30.82\nMessage Wall:86.162.116.2\nMessage Wall:86.162.122.57\nMessage Wall:86.162.139.148\nMessage Wall:86.162.142.158\nMessage Wall:86.162.183.25\nMessage Wall:86.162.55.104\nMessage Wall:86.163.163.218\nMessage Wall:86.163.190.11\nMessage Wall:86.163.190.248\nMessage Wall:86.163.211.91\nMessage Wall:86.163.248.194\nMessage Wall:86.163.29.132\nMessage Wall:86.163.85.169\nMessage Wall:86.164.124.32\nMessage Wall:86.164.133.149\nMessage Wall:86.164.60.64\nMessage Wall:86.164.87.176\nMessage Wall:86.165.131.167\nMessage Wall:86.165.194.85\nMessage Wall:86.166.163.192\nMessage Wall:86.166.68.28\nMessage Wall:86.166.87.176\nMessage Wall:86.166.90.218\nMessage Wall:86.167.255.237\nMessage Wall:86.168.162.236\nMessage Wall:86.168.165.47\nMessage Wall:86.168.212.172\nMessage Wall:86.168.218.13\nMessage Wall:86.168.252.223\nMessage Wall:86.169.177.227\nMessage Wall:86.169.229.205\nMessage Wall:86.169.44.90\nMessage Wall:86.169.54.249\nMessage Wall:86.17.218.62\nMessage Wall:86.17.228.178\nMessage Wall:86.17.36.171\nMessage Wall:86.170.114.178\nMessage Wall:86.170.131.85\nMessage Wall:86.171.150.243\nMessage Wall:86.171.156.220\nMessage Wall:86.172.221.107\nMessage Wall:86.172.35.13\nMessage Wall:86.172.50.175\nMessage Wall:86.173.139.49\nMessage Wall:86.173.246.20\nMessage Wall:86.173.44.37\nMessage Wall:86.173.64.205\nMessage Wall:86.174.121.244\nMessage Wall:86.174.156.237\nMessage Wall:86.174.159.100\nMessage Wall:86.174.168.35\nMessage Wall:86.174.58.249\nMessage Wall:86.175.0.177\nMessage Wall:86.175.205.157\nMessage Wall:86.175.70.138\nMessage Wall:86.176.127.11\nMessage Wall:86.176.132.205\nMessage Wall:86.176.191.154\nMessage Wall:86.176.2.77\nMessage Wall:86.176.235.194\nMessage Wall:86.176.39.223\nMessage Wall:86.176.80.222\nMessage Wall:86.177.104.242\nMessage Wall:86.177.237.111\nMessage Wall:86.177.57.37\nMessage Wall:86.177.58.123\nMessage Wall:86.177.58.43\nMessage Wall:86.177.62.151\nMessage Wall:86.177.92.14\nMessage Wall:86.178.183.109\nMessage Wall:86.178.50.7\nMessage Wall:86.179.22.156\nMessage Wall:86.179.224.169\nMessage Wall:86.179.44.153\nMessage Wall:86.179.79.163\nMessage Wall:86.179.81.244\nMessage Wall:86.18.163.124\nMessage Wall:86.18.22.61\nMessage Wall:86.18.238.215\nMessage Wall:86.18.29.251\nMessage Wall:86.18.84.96\nMessage Wall:86.180.180.0\nMessage Wall:86.180.180.49\nMessage Wall:86.180.181.193\nMessage Wall:86.180.183.115\nMessage Wall:86.180.220.143\nMessage Wall:86.180.221.203\nMessage Wall:86.180.6.177\nMessage Wall:86.181.195.160\nMessage Wall:86.181.22.127\nMessage Wall:86.181.250.172\nMessage Wall:86.181.30.18\nMessage Wall:86.181.40.147\nMessage Wall:86.181.87.197\nMessage Wall:86.181.99.199\nMessage Wall:86.182.155.177\nMessage Wall:86.182.208.202\nMessage Wall:86.182.212.179\nMessage Wall:86.182.65.139\nMessage Wall:86.182.99.161\nMessage Wall:86.183.104.15\nMessage Wall:86.183.105.175\nMessage Wall:86.183.122.161\nMessage Wall:86.183.142.49\nMessage Wall:86.183.17.198\nMessage Wall:86.183.57.129\nMessage Wall:86.183.75.52\nMessage Wall:86.183.78.247\nMessage Wall:86.183.98.125\nMessage Wall:86.184.172.252\nMessage Wall:86.184.180.55\nMessage Wall:86.184.207.101\nMessage Wall:86.184.233.97\nMessage Wall:86.185.135.6\nMessage Wall:86.185.140.28\nMessage Wall:86.185.177.76\nMessage Wall:86.185.25.128\nMessage Wall:86.185.89.204\nMessage Wall:86.186.129.235\nMessage Wall:86.186.190.3\nMessage Wall:86.186.250.147\nMessage Wall:86.187.95.130\nMessage Wall:86.188.115.207\nMessage Wall:86.188.194.210\nMessage Wall:86.188.28.51\nMessage Wall:86.188.59.115\nMessage Wall:86.189.214.23\nMessage Wall:86.189.246.17\nMessage Wall:86.19.119.135\nMessage Wall:86.19.135.236\nMessage Wall:86.19.157.214\nMessage Wall:86.19.158.165\nMessage Wall:86.19.161.72\nMessage Wall:86.19.209.224\nMessage Wall:86.190.19.66\nMessage Wall:86.190.201.230\nMessage Wall:86.190.208.194\nMessage Wall:86.190.232.35\nMessage Wall:86.190.83.101\nMessage Wall:86.191.120.173\nMessage Wall:86.191.157.71\nMessage Wall:86.191.188.2\nMessage Wall:86.191.204.163\nMessage Wall:86.191.220.18\nMessage Wall:86.191.238.78\nMessage Wall:86.191.74.65\nMessage Wall:86.192.28.11\nMessage Wall:86.192.85.195\nMessage Wall:86.195.31.35\nMessage Wall:86.197.249.33\nMessage Wall:86.197.54.210\nMessage Wall:86.2.210.231\nMessage Wall:86.2.236.64\nMessage Wall:86.2.41.231\nMessage Wall:86.2.70.1\nMessage Wall:86.20.102.232\nMessage Wall:86.20.122.182\nMessage Wall:86.20.14.215\nMessage Wall:86.20.15.6\nMessage Wall:86.20.181.21\nMessage Wall:86.20.205.11\nMessage Wall:86.20.98.201\nMessage Wall:86.201.104.154\nMessage Wall:86.204.129.140\nMessage Wall:86.205.77.113\nMessage Wall:86.206.251.116\nMessage Wall:86.209.67.114\nMessage Wall:86.21.205.114\nMessage Wall:86.21.212.113\nMessage Wall:86.212.194.241\nMessage Wall:86.212.246.169\nMessage Wall:86.215.126.50\nMessage Wall:86.216.132.200\nMessage Wall:86.217.27.155\nMessage Wall:86.218.125.32\nMessage Wall:86.218.94.205\nMessage Wall:86.219.178.75\nMessage Wall:86.219.25.231\nMessage Wall:86.221.26.84\nMessage Wall:86.233.9.104\nMessage Wall:86.24.127.31\nMessage Wall:86.24.199.248\nMessage Wall:86.24.232.63\nMessage Wall:86.242.112.26\nMessage Wall:86.242.183.139\nMessage Wall:86.25.130.224\nMessage Wall:86.25.231.220\nMessage Wall:86.26.1.26\nMessage Wall:86.26.147.35\nMessage Wall:86.26.172.129\nMessage Wall:86.26.19.129\nMessage Wall:86.26.20.73\nMessage Wall:86.26.207.234\nMessage Wall:86.27.136.29\nMessage Wall:86.27.141.194\nMessage Wall:86.27.82.22\nMessage Wall:86.28.175.123\nMessage Wall:86.28.187.117\nMessage Wall:86.28.203.34\nMessage Wall:86.28.205.138\nMessage Wall:86.28.229.13\nMessage Wall:86.29.214.189\nMessage Wall:86.29.214.196\nMessage Wall:86.3.205.254\nMessage Wall:86.3.43.53\nMessage Wall:86.3.74.137\nMessage Wall:86.30.112.220\nMessage Wall:86.30.13.224\nMessage Wall:86.30.143.7\nMessage Wall:86.30.252.23\nMessage Wall:86.31.100.44\nMessage Wall:86.31.180.218\nMessage Wall:86.31.198.223\nMessage Wall:86.33.112.69\nMessage Wall:86.4.163.185\nMessage Wall:86.4.233.239\nMessage Wall:86.40.233.184\nMessage Wall:86.41.119.43\nMessage Wall:86.41.207.96\nMessage Wall:86.42.60.84\nMessage Wall:86.45.98.174\nMessage Wall:86.46.135.21\nMessage Wall:86.49.145.11\nMessage Wall:86.49.39.227\nMessage Wall:86.5.155.28\nMessage Wall:86.5.28.193\nMessage Wall:86.5.70.43\nMessage Wall:86.50.88.59\nMessage Wall:86.52.131.116\nMessage Wall:86.52.37.178\nMessage Wall:86.52.45.54\nMessage Wall:86.52.83.175\nMessage Wall:86.52.85.36\nMessage Wall:86.56.68.95\nMessage Wall:86.56.81.150\nMessage Wall:86.59.122.178\nMessage Wall:86.59.163.221\nMessage Wall:86.59.167.129\nMessage Wall:86.59.213.66\nMessage Wall:86.6.157.60\nMessage Wall:86.6.216.241\nMessage Wall:86.6.69.62\nMessage Wall:86.61.166.2\nMessage Wall:86.7.3.144\nMessage Wall:86.7.33.136\nMessage Wall:86.71.118.51\nMessage Wall:86.73.140.91\nMessage Wall:86.73.40.69\nMessage Wall:86.76.226.245\nMessage Wall:86.8.153.84\nMessage Wall:86.8.24.248\nMessage Wall:86.8.9.144\nMessage Wall:86.82.236.206\nMessage Wall:86.85.183.80\nMessage Wall:86.85.209.235\nMessage Wall:86.88.200.3\nMessage Wall:86.89.218.95\nMessage Wall:86.9.108.33\nMessage Wall:86.9.237.13\nMessage Wall:86.9.27.238\nMessage Wall:86.9.62.138\nMessage Wall:86.9.76.195\nMessage Wall:86.90.35.69\nMessage Wall:86.94.163.181\nMessage Wall:87.102.15.207\nMessage Wall:87.103.12.117\nMessage Wall:87.104.144.99\nMessage Wall:87.104.178.202\nMessage Wall:87.104.197.109\nMessage Wall:87.11.124.253\nMessage Wall:87.110.122.22\nMessage Wall:87.110.123.199\nMessage Wall:87.110.144.198\nMessage Wall:87.112.20.229\nMessage Wall:87.112.244.226\nMessage Wall:87.112.50.180\nMessage Wall:87.113.181.226\nMessage Wall:87.113.185.60\nMessage Wall:87.113.211.162\nMessage Wall:87.113.240.130\nMessage Wall:87.113.91.172\nMessage Wall:87.114.176.29\nMessage Wall:87.114.179.44\nMessage Wall:87.114.189.20\nMessage Wall:87.114.218.231\nMessage Wall:87.114.31.223\nMessage Wall:87.114.61.114\nMessage Wall:87.114.73.33\nMessage Wall:87.115.185.4\nMessage Wall:87.115.186.136\nMessage Wall:87.115.203.10\nMessage Wall:87.115.218.141\nMessage Wall:87.115.62.14\nMessage Wall:87.115.75.87\nMessage Wall:87.116.25.195\nMessage Wall:87.117.16.40\nMessage Wall:87.117.189.202\nMessage Wall:87.123.114.64\nMessage Wall:87.123.195.137\nMessage Wall:87.123.5.41\nMessage Wall:87.127.164.177\nMessage Wall:87.128.14.118\nMessage Wall:87.13.14.194\nMessage Wall:87.133.55.215\nMessage Wall:87.137.72.82\nMessage Wall:87.14.210.182\nMessage Wall:87.14.36.175\nMessage Wall:87.142.113.118\nMessage Wall:87.144.140.146\nMessage Wall:87.144.142.141\nMessage Wall:87.145.16.248\nMessage Wall:87.146.222.116\nMessage Wall:87.148.202.51\nMessage Wall:87.15.111.108\nMessage Wall:87.15.4.187\nMessage Wall:87.150.111.52\nMessage Wall:87.150.173.56\nMessage Wall:87.151.29.113\nMessage Wall:87.152.185.245\nMessage Wall:87.154.187.72\nMessage Wall:87.155.103.246\nMessage Wall:87.155.121.190\nMessage Wall:87.157.53.88\nMessage Wall:87.158.131.45\nMessage Wall:87.158.137.104\nMessage Wall:87.158.139.216\nMessage Wall:87.158.141.32\nMessage Wall:87.158.143.128\nMessage Wall:87.158.143.57\nMessage Wall:87.158.144.39\nMessage Wall:87.158.150.252\nMessage Wall:87.158.150.52\nMessage Wall:87.158.156.106\nMessage Wall:87.158.159.92\nMessage Wall:87.158.28.227\nMessage Wall:87.162.240.78\nMessage Wall:87.163.145.24\nMessage Wall:87.163.150.179\nMessage Wall:87.163.152.202\nMessage Wall:87.164.191.100\nMessage Wall:87.165.109.70\nMessage Wall:87.165.112.206\nMessage Wall:87.168.118.136\nMessage Wall:87.171.144.205\nMessage Wall:87.173.161.62\nMessage Wall:87.174.31.153\nMessage Wall:87.174.52.172\nMessage Wall:87.174.6.226\nMessage Wall:87.176.243.145\nMessage Wall:87.176.244.27\nMessage Wall:87.177.3.4\nMessage Wall:87.178.125.192\nMessage Wall:87.178.224.136\nMessage Wall:87.179.72.222\nMessage Wall:87.179.78.51\nMessage Wall:87.181.124.181\nMessage Wall:87.181.126.140\nMessage Wall:87.181.75.9\nMessage Wall:87.181.78.57\nMessage Wall:87.184.206.181\nMessage Wall:87.186.34.124\nMessage Wall:87.188.107.253\nMessage Wall:87.188.206.145\nMessage Wall:87.188.226.203\nMessage Wall:87.188.226.83\nMessage Wall:87.188.84.216\nMessage Wall:87.189.100.68\nMessage Wall:87.189.156.139\nMessage Wall:87.197.138.213\nMessage Wall:87.2.104.166\nMessage Wall:87.2.13.223\nMessage Wall:87.205.172.25\nMessage Wall:87.205.235.201\nMessage Wall:87.205.238.138\nMessage Wall:87.205.81.13\nMessage Wall:87.205.94.189\nMessage Wall:87.206.209.14\nMessage Wall:87.206.7.221\nMessage Wall:87.218.56.139\nMessage Wall:87.227.25.41\nMessage Wall:87.231.134.180\nMessage Wall:87.231.26.122\nMessage Wall:87.231.43.96\nMessage Wall:87.241.107.6\nMessage Wall:87.242.159.65\nMessage Wall:87.242.164.175\nMessage Wall:87.242.205.63\nMessage Wall:87.244.115.145\nMessage Wall:87.244.71.119\nMessage Wall:87.249.20.162\nMessage Wall:87.253.63.54\nMessage Wall:87.5.61.236\nMessage Wall:87.55.109.238\nMessage Wall:87.58.109.162\nMessage Wall:87.59.123.108\nMessage Wall:87.6.231.61\nMessage Wall:87.63.105.162\nMessage Wall:87.65.154.203\nMessage Wall:87.65.199.197\nMessage Wall:87.65.208.168\nMessage Wall:87.65.233.175\nMessage Wall:87.65.249.25\nMessage Wall:87.66.175.84\nMessage Wall:87.66.214.14\nMessage Wall:87.67.188.79\nMessage Wall:87.73.90.11\nMessage Wall:87.78.43.115\nMessage Wall:87.79.100.83\nMessage Wall:87.79.131.56\nMessage Wall:87.79.156.234\nMessage Wall:87.79.179.197\nMessage Wall:87.8.54.92\nMessage Wall:87.81.139.4\nMessage Wall:87.81.150.250\nMessage Wall:87.81.175.224\nMessage Wall:87.81.186.115\nMessage Wall:87.81.231.236\nMessage Wall:87.81.239.124\nMessage Wall:87.81.250.189\nMessage Wall:87.89.34.241\nMessage Wall:87.93.178.210\nMessage Wall:87.94.229.254\nMessage Wall:87.98.44.188\nMessage Wall:88.10.69.188\nMessage Wall:88.100.52.140\nMessage Wall:88.101.52.139\nMessage Wall:88.102.152.99\nMessage Wall:88.102.161.39\nMessage Wall:88.104.253.1\nMessage Wall:88.106.11.92\nMessage Wall:88.106.30.154\nMessage Wall:88.106.92.130\nMessage Wall:88.109.53.111\nMessage Wall:88.109.55.111\nMessage Wall:88.109.83.17\nMessage Wall:88.110.93.217\nMessage Wall:88.111.0.197\nMessage Wall:88.111.92.216\nMessage Wall:88.112.115.253\nMessage Wall:88.112.129.112\nMessage Wall:88.112.171.17\nMessage Wall:88.112.91.114\nMessage Wall:88.113.156.218\nMessage Wall:88.113.77.22\nMessage Wall:88.113.93.91\nMessage Wall:88.114.21.167\nMessage Wall:88.115.12.164\nMessage Wall:88.115.162.11\nMessage Wall:88.115.190.42\nMessage Wall:88.115.191.247\nMessage Wall:88.115.71.172\nMessage Wall:88.117.120.1\nMessage Wall:88.117.93.86\nMessage Wall:88.123.4.162\nMessage Wall:88.125.166.63\nMessage Wall:88.129.233.107\nMessage Wall:88.130.212.27\nMessage Wall:88.131.105.133\nMessage Wall:88.134.134.115\nMessage Wall:88.139.99.207\nMessage Wall:88.147.48.12\nMessage Wall:88.147.65.191\nMessage Wall:88.149.170.67\nMessage Wall:88.149.171.209\nMessage Wall:88.150.206.168\nMessage Wall:88.152.131.156\nMessage Wall:88.152.186.216\nMessage Wall:88.152.36.105\nMessage Wall:88.152.46.63\nMessage Wall:88.152.65.199\nMessage Wall:88.152.85.18\nMessage Wall:88.152.98.102\nMessage Wall:88.153.108.130\nMessage Wall:88.153.26.176\nMessage Wall:88.153.6.187\nMessage Wall:88.153.7.180\nMessage Wall:88.153.81.102\nMessage Wall:88.156.226.166\nMessage Wall:88.156.5.208\nMessage Wall:88.159.109.149\nMessage Wall:88.159.77.1\nMessage Wall:88.160.86.181\nMessage Wall:88.161.154.35\nMessage Wall:88.162.87.224\nMessage Wall:88.163.254.90\nMessage Wall:88.164.101.35\nMessage Wall:88.164.157.173\nMessage Wall:88.165.117.229\nMessage Wall:88.165.17.22\nMessage Wall:88.168.110.81\nMessage Wall:88.168.127.93\nMessage Wall:88.17.77.58\nMessage Wall:88.173.202.245\nMessage Wall:88.175.110.191\nMessage Wall:88.176.116.33\nMessage Wall:88.179.236.165\nMessage Wall:88.18.164.212\nMessage Wall:88.184.124.10\nMessage Wall:88.185.61.186\nMessage Wall:88.190.190.208\nMessage Wall:88.191.239.117\nMessage Wall:88.192.22.237\nMessage Wall:88.192.81.190\nMessage Wall:88.195.183.220\nMessage Wall:88.195.207.152\nMessage Wall:88.195.244.170\nMessage Wall:88.195.6.50\nMessage Wall:88.196.200.164\nMessage Wall:88.196.200.74\nMessage Wall:88.20.114.68\nMessage Wall:88.206.182.6\nMessage Wall:88.206.9.47\nMessage Wall:88.207.13.91\nMessage Wall:88.207.220.195\nMessage Wall:88.207.35.224\nMessage Wall:88.212.37.153\nMessage Wall:88.215.93.52\nMessage Wall:88.216.27.79\nMessage Wall:88.217.180.108\nMessage Wall:88.217.181.201\nMessage Wall:88.217.25.187\nMessage Wall:88.217.5.191\nMessage Wall:88.217.64.214\nMessage Wall:88.220.45.222\nMessage Wall:88.223.66.201\nMessage Wall:88.23.79.23\nMessage Wall:88.235.151.1\nMessage Wall:88.235.187.185\nMessage Wall:88.6.91.22\nMessage Wall:88.64.237.72\nMessage Wall:88.65.181.37\nMessage Wall:88.65.82.161\nMessage Wall:88.66.145.183\nMessage Wall:88.68.232.213\nMessage Wall:88.7.79.210\nMessage Wall:88.70.22.246\nMessage Wall:88.72.1.36\nMessage Wall:88.72.8.201\nMessage Wall:88.73.246.252\nMessage Wall:88.73.51.131\nMessage Wall:88.73.65.64\nMessage Wall:88.73.8.204\nMessage Wall:88.75.155.221\nMessage Wall:88.76.232.202\nMessage Wall:88.8.69.87\nMessage Wall:88.80.251.245\nMessage Wall:88.84.15.165\nMessage Wall:88.84.189.177\nMessage Wall:88.85.155.146\nMessage Wall:88.85.44.241\nMessage Wall:88.88.13.150\nMessage Wall:88.89.115.252\nMessage Wall:88.89.154.155\nMessage Wall:88.9.175.167\nMessage Wall:88.90.97.199\nMessage Wall:88.91.195.106\nMessage Wall:88.91.253.148\nMessage Wall:88.91.72.134\nMessage Wall:88.96.97.118\nMessage Wall:88.97.57.221\nMessage Wall:88.98.207.25\nMessage Wall:88.98.51.190\nMessage Wall:89.0.159.228\nMessage Wall:89.0.16.224\nMessage Wall:89.0.222.15\nMessage Wall:89.0.248.64\nMessage Wall:89.100.162.55\nMessage Wall:89.100.254.253\nMessage Wall:89.100.84.116\nMessage Wall:89.101.211.80\nMessage Wall:89.101.53.58\nMessage Wall:89.101.97.130\nMessage Wall:89.102.140.98\nMessage Wall:89.102.141.56\nMessage Wall:89.103.130.206\nMessage Wall:89.103.163.33\nMessage Wall:89.103.44.238\nMessage Wall:89.103.56.151\nMessage Wall:89.106.138.1\nMessage Wall:89.114.86.0\nMessage Wall:89.115.159.235\nMessage Wall:89.12.48.215\nMessage Wall:89.129.30.32\nMessage Wall:89.13.118.16\nMessage Wall:89.13.93.165\nMessage Wall:89.130.224.86\nMessage Wall:89.134.204.83\nMessage Wall:89.135.145.194\nMessage Wall:89.136.179.79\nMessage Wall:89.136.244.65\nMessage Wall:89.137.153.149\nMessage Wall:89.14.113.144\nMessage Wall:89.144.207.73\nMessage Wall:89.146.142.73\nMessage Wall:89.151.148.222\nMessage Wall:89.152.151.58\nMessage Wall:89.154.201.149\nMessage Wall:89.155.22.46\nMessage Wall:89.156.57.45\nMessage Wall:89.158.249.171\nMessage Wall:89.160.214.15\nMessage Wall:89.160.84.242\nMessage Wall:89.164.134.104\nMessage Wall:89.164.144.20\nMessage Wall:89.166.237.95\nMessage Wall:89.166.28.176\nMessage Wall:89.168.0.206\nMessage Wall:89.168.120.161\nMessage Wall:89.168.133.96\nMessage Wall:89.168.144.45\nMessage Wall:89.168.207.223\nMessage Wall:89.169.6.226\nMessage Wall:89.172.68.75\nMessage Wall:89.173.35.241\nMessage Wall:89.173.76.190\nMessage Wall:89.176.13.114\nMessage Wall:89.176.136.134\nMessage Wall:89.176.178.22\nMessage Wall:89.177.15.113\nMessage Wall:89.177.178.97\nMessage Wall:89.177.56.212\nMessage Wall:89.181.91.0\nMessage Wall:89.182.199.237\nMessage Wall:89.182.56.174\nMessage Wall:89.184.130.188\nMessage Wall:89.192.161.218\nMessage Wall:89.2.77.125\nMessage Wall:89.2.9.249\nMessage Wall:89.204.130.181\nMessage Wall:89.204.130.57\nMessage Wall:89.204.135.129\nMessage Wall:89.204.139.136\nMessage Wall:89.212.154.170\nMessage Wall:89.213.14.198\nMessage Wall:89.22.50.59\nMessage Wall:89.228.81.37\nMessage Wall:89.233.232.121\nMessage Wall:89.240.203.112\nMessage Wall:89.240.242.30\nMessage Wall:89.240.60.254\nMessage Wall:89.242.42.212\nMessage Wall:89.243.18.74\nMessage Wall:89.243.93.9\nMessage Wall:89.245.41.160\nMessage Wall:89.246.168.252\nMessage Wall:89.246.188.54\nMessage Wall:89.249.2.53\nMessage Wall:89.253.76.71\nMessage Wall:89.27.35.127\nMessage Wall:89.27.36.133\nMessage Wall:89.27.82.108\nMessage Wall:89.29.254.38\nMessage Wall:89.42.37.132\nMessage Wall:89.64.32.196\nMessage Wall:89.65.236.135\nMessage Wall:89.65.51.237\nMessage Wall:89.66.219.62\nMessage Wall:89.66.38.22\nMessage Wall:89.66.59.144\nMessage Wall:89.72.109.26\nMessage Wall:89.72.119.169\nMessage Wall:89.72.218.9\nMessage Wall:89.73.209.101\nMessage Wall:89.73.219.205\nMessage Wall:89.73.52.82\nMessage Wall:89.73.55.19\nMessage Wall:89.73.90.167\nMessage Wall:89.74.12.11\nMessage Wall:89.74.228.150\nMessage Wall:89.74.232.156\nMessage Wall:89.74.234.103\nMessage Wall:89.77.85.31\nMessage Wall:89.78.233.58\nMessage Wall:89.85.50.189\nMessage Wall:89.88.48.115\nMessage Wall:89.92.119.132\nMessage Wall:89.92.232.118\nMessage Wall:89.93.134.81\nMessage Wall:89.99.171.161\nMessage Wall:90.107.121.63\nMessage Wall:90.12.126.218\nMessage Wall:90.12.220.122\nMessage Wall:90.144.181.197\nMessage Wall:90.144.200.153\nMessage Wall:90.144.212.14\nMessage Wall:90.144.215.198\nMessage Wall:90.144.216.23\nMessage Wall:90.144.254.74\nMessage Wall:90.149.11.183\nMessage Wall:90.149.15.199\nMessage Wall:90.149.231.161\nMessage Wall:90.15.110.73\nMessage Wall:90.15.4.231\nMessage Wall:90.152.7.182\nMessage Wall:90.154.74.185\nMessage Wall:90.154.74.197\nMessage Wall:90.154.74.237\nMessage Wall:90.154.74.53\nMessage Wall:90.155.79.249\nMessage Wall:90.169.232.108\nMessage Wall:90.170.9.145\nMessage Wall:90.177.69.121\nMessage Wall:90.18.13.49\nMessage Wall:90.18.41.23\nMessage Wall:90.181.68.241\nMessage Wall:90.184.62.140\nMessage Wall:90.185.98.78\nMessage Wall:90.19.184.252\nMessage Wall:90.190.185.5\nMessage Wall:90.190.244.77\nMessage Wall:90.191.106.62\nMessage Wall:90.191.217.209\nMessage Wall:90.192.168.68\nMessage Wall:90.193.239.170\nMessage Wall:90.194.43.190\nMessage Wall:90.195.21.142\nMessage Wall:90.196.59.122\nMessage Wall:90.197.118.147\nMessage Wall:90.197.15.46\nMessage Wall:90.197.160.197\nMessage Wall:90.198.109.101\nMessage Wall:90.198.69.26\nMessage Wall:90.199.237.224\nMessage Wall:90.199.8.70\nMessage Wall:90.2.153.121\nMessage Wall:90.200.169.37\nMessage Wall:90.201.34.97\nMessage Wall:90.202.205.125\nMessage Wall:90.202.52.114\nMessage Wall:90.203.125.65\nMessage Wall:90.204.159.25\nMessage Wall:90.205.111.208\nMessage Wall:90.205.35.59\nMessage Wall:90.205.91.129\nMessage Wall:90.206.33.30\nMessage Wall:90.206.55.152\nMessage Wall:90.206.77.248\nMessage Wall:90.208.6.45\nMessage Wall:90.21.52.152\nMessage Wall:90.210.17.201\nMessage Wall:90.210.206.69\nMessage Wall:90.211.75.104\nMessage Wall:90.212.109.31\nMessage Wall:90.212.140.132\nMessage Wall:90.212.156.106\nMessage Wall:90.212.40.223\nMessage Wall:90.213.127.35\nMessage Wall:90.215.99.210\nMessage Wall:90.216.134.197\nMessage Wall:90.216.196.198\nMessage Wall:90.216.228.6\nMessage Wall:90.216.46.192\nMessage Wall:90.216.90.246\nMessage Wall:90.217.129.100\nMessage Wall:90.217.225.12\nMessage Wall:90.217.42.150\nMessage Wall:90.217.95.144\nMessage Wall:90.218.113.180\nMessage Wall:90.218.148.248\nMessage Wall:90.218.225.205\nMessage Wall:90.218.4.200\nMessage Wall:90.218.7.157\nMessage Wall:90.219.125.40\nMessage Wall:90.219.136.177\nMessage Wall:90.219.235.26\nMessage Wall:90.219.50.166\nMessage Wall:90.219.97.65\nMessage Wall:90.220.141.0\nMessage Wall:90.220.204.4\nMessage Wall:90.220.229.220\nMessage Wall:90.221.134.174\nMessage Wall:90.221.7.222\nMessage Wall:90.222.117.61\nMessage Wall:90.222.125.73\nMessage Wall:90.222.158.206\nMessage Wall:90.222.86.59\nMessage Wall:90.222.90.97\nMessage Wall:90.226.110.52\nMessage Wall:90.226.83.68\nMessage Wall:90.229.193.208\nMessage Wall:90.230.130.74\nMessage Wall:90.230.209.150\nMessage Wall:90.230.3.38\nMessage Wall:90.231.164.36\nMessage Wall:90.231.177.208\nMessage Wall:90.231.183.223\nMessage Wall:90.231.188.102\nMessage Wall:90.24.8.107\nMessage Wall:90.25.15.29\nMessage Wall:90.25.249.46\nMessage Wall:90.25.36.137\nMessage Wall:90.25.69.6\nMessage Wall:90.254.106.155\nMessage Wall:90.254.27.195\nMessage Wall:90.255.194.128\nMessage Wall:90.255.83.60\nMessage Wall:90.26.73.59\nMessage Wall:90.27.223.213\nMessage Wall:90.28.134.149\nMessage Wall:90.3.121.131\nMessage Wall:90.3.38.51\nMessage Wall:90.35.245.215\nMessage Wall:90.38.83.66\nMessage Wall:90.41.171.173\nMessage Wall:90.43.150.82\nMessage Wall:90.46.41.103\nMessage Wall:90.48.60.238\nMessage Wall:90.5.182.122\nMessage Wall:90.52.182.72\nMessage Wall:90.54.232.29\nMessage Wall:90.61.228.242\nMessage Wall:90.62.173.13\nMessage Wall:90.8.89.74\nMessage Wall:90.92.121.44\nMessage Wall:90Ghost90\nMessage Wall:91.11.106.189\nMessage Wall:91.11.91.178\nMessage Wall:91.113.219.98\nMessage Wall:91.113.60.62\nMessage Wall:91.116.144.253\nMessage Wall:91.117.5.94\nMessage Wall:91.119.21.122\nMessage Wall:91.119.28.87\nMessage Wall:91.119.29.23\nMessage Wall:91.12.109.116\nMessage Wall:91.12.109.240\nMessage Wall:91.120.67.156\nMessage Wall:91.123.27.10\nMessage Wall:91.125.14.42\nMessage Wall:91.125.153.117\nMessage Wall:91.125.153.169\nMessage Wall:91.125.161.161\nMessage Wall:91.125.221.236\nMessage Wall:91.125.23.232\nMessage Wall:91.125.239.5\nMessage Wall:91.125.254.73\nMessage Wall:91.125.26.177\nMessage Wall:91.125.67.26\nMessage Wall:91.125.91.192\nMessage Wall:91.127.161.87\nMessage Wall:91.128.220.15\nMessage Wall:91.13.192.177\nMessage Wall:91.133.79.193\nMessage Wall:91.135.8.90\nMessage Wall:91.138.15.112\nMessage Wall:91.139.0.193\nMessage Wall:91.140.76.123\nMessage Wall:91.141.3.77\nMessage Wall:91.141.3.94\nMessage Wall:91.143.240.245\nMessage Wall:91.144.143.204\nMessage Wall:91.144.199.135\nMessage Wall:91.145.115.173\nMessage Wall:91.146.214.136\nMessage Wall:91.151.207.102\nMessage Wall:91.152.102.4\nMessage Wall:91.152.193.52\nMessage Wall:91.153.171.188\nMessage Wall:91.153.25.132\nMessage Wall:91.153.81.197\nMessage Wall:91.154.126.118\nMessage Wall:91.154.94.135\nMessage Wall:91.155.150.140\nMessage Wall:91.155.244.212\nMessage Wall:91.156.146.127\nMessage Wall:91.156.148.106\nMessage Wall:91.156.180.54\nMessage Wall:91.156.236.227\nMessage Wall:91.157.132.170\nMessage Wall:91.157.139.69\nMessage Wall:91.157.142.84\nMessage Wall:91.157.82.176\nMessage Wall:91.158.15.3\nMessage Wall:91.158.160.234\nMessage Wall:91.158.168.72\nMessage Wall:91.158.173.97\nMessage Wall:91.158.175.250\nMessage Wall:91.159.105.72\nMessage Wall:91.159.106.176\nMessage Wall:91.159.154.165\nMessage Wall:91.176.222.127\nMessage Wall:91.176.74.129\nMessage Wall:91.178.229.84\nMessage Wall:91.179.26.112\nMessage Wall:91.180.145.64\nMessage Wall:91.180.155.48\nMessage Wall:91.180.98.181\nMessage Wall:91.181.50.244\nMessage Wall:91.186.159.111\nMessage Wall:91.189.0.214\nMessage Wall:91.193.208.114\nMessage Wall:91.196.8.74\nMessage Wall:91.197.174.239\nMessage Wall:91.2.214.200\nMessage Wall:91.2.251.140\nMessage Wall:91.20.124.78\nMessage Wall:91.206.0.43\nMessage Wall:91.21.237.123\nMessage Wall:91.212.44.254\nMessage Wall:91.216.1.103\nMessage Wall:91.221.55.69\nMessage Wall:91.226.196.10\nMessage Wall:91.226.199.157\nMessage Wall:91.227.212.3\nMessage Wall:91.228.164.28\nMessage Wall:91.228.234.104\nMessage Wall:91.228.234.126\nMessage Wall:91.228.45.15\nMessage Wall:91.23.70.81\nMessage Wall:91.230.165.147\nMessage Wall:91.231.141.225\nMessage Wall:91.231.24.73\nMessage Wall:91.231.248.212\nMessage Wall:91.236.210.184\nMessage Wall:91.238.197.7\nMessage Wall:91.238.197.89\nMessage Wall:91.239.175.40\nMessage Wall:91.246.112.139\nMessage Wall:91.248.142.83\nMessage Wall:91.3.111.3\nMessage Wall:91.35.190.134\nMessage Wall:91.35.219.38\nMessage Wall:91.36.54.203\nMessage Wall:91.36.9.81\nMessage Wall:91.41.165.193\nMessage Wall:91.42.214.80\nMessage Wall:91.42.216.240\nMessage Wall:91.44.87.109\nMessage Wall:91.44.97.161\nMessage Wall:91.48.47.63\nMessage Wall:91.49.155.37\nMessage Wall:91.50.235.118\nMessage Wall:91.52.190.237\nMessage Wall:91.53.185.233\nMessage Wall:91.53.194.25\nMessage Wall:91.55.177.33\nMessage Wall:91.55.180.93\nMessage Wall:91.56.221.137\nMessage Wall:91.58.12.76\nMessage Wall:91.59.208.111\nMessage Wall:91.6.227.194\nMessage Wall:91.6.74.105\nMessage Wall:91.61.118.25\nMessage Wall:91.63.204.169\nMessage Wall:91.63.98.114\nMessage Wall:91.64.143.213\nMessage Wall:91.64.159.106\nMessage Wall:91.64.199.60\nMessage Wall:91.64.211.22\nMessage Wall:91.64.72.150\nMessage Wall:91.65.154.243\nMessage Wall:91.65.226.215\nMessage Wall:91.65.35.233\nMessage Wall:91.65.95.184\nMessage Wall:91.66.140.21\nMessage Wall:91.67.18.218\nMessage Wall:91.67.206.51\nMessage Wall:91.67.22.246\nMessage Wall:91.67.33.209\nMessage Wall:91.67.81.110\nMessage Wall:91.78.26.254\nMessage Wall:91.79.62.107\nMessage Wall:91.8.148.90\nMessage Wall:91.8.154.54\nMessage Wall:91.82.1.140\nMessage Wall:91.82.177.218\nMessage Wall:91.82.6.151\nMessage Wall:91.83.18.105\nMessage Wall:91.89.132.56\nMessage Wall:91.89.253.9\nMessage Wall:91.89.40.136\nMessage Wall:91.89.70.42\nMessage Wall:91.9.1.204\nMessage Wall:91.9.174.107\nMessage Wall:91.9.198.84\nMessage Wall:91.90.160.132\nMessage Wall:91.93.95.95\nMessage Wall:91.96.184.177\nMessage Wall:91.96.63.45\nMessage Wall:91.97.80.118\nMessage Wall:91.97.99.58\nMessage Wall:92.0.101.57\nMessage Wall:92.1.13.66\nMessage Wall:92.1.139.196\nMessage Wall:92.1.187.231\nMessage Wall:92.1.38.118\nMessage Wall:92.1.91.134\nMessage Wall:92.10.30.133\nMessage Wall:92.10.69.239\nMessage Wall:92.103.158.186\nMessage Wall:92.104.139.72\nMessage Wall:92.104.152.6\nMessage Wall:92.104.171.77\nMessage Wall:92.106.23.229\nMessage Wall:92.107.88.36\nMessage Wall:92.108.140.162\nMessage Wall:92.108.198.210\nMessage Wall:92.108.45.208\nMessage Wall:92.108.91.178\nMessage Wall:92.109.212.209\nMessage Wall:92.11.187.4\nMessage Wall:92.110.173.129\nMessage Wall:92.12.133.204\nMessage Wall:92.12.134.221\nMessage Wall:92.12.47.26\nMessage Wall:92.12.65.85\nMessage Wall:92.12.7.130\nMessage Wall:92.129.108.11\nMessage Wall:92.129.214.220\nMessage Wall:92.129.244.178\nMessage Wall:92.13.10.47\nMessage Wall:92.131.83.51\nMessage Wall:92.132.34.9\nMessage Wall:92.134.120.108\nMessage Wall:92.137.216.7\nMessage Wall:92.137.22.140\nMessage Wall:92.138.196.196\nMessage Wall:92.14.158.231\nMessage Wall:92.14.159.68\nMessage Wall:92.143.154.216\nMessage Wall:92.148.141.169\nMessage Wall:92.15.17.195\nMessage Wall:92.152.148.30\nMessage Wall:92.152.168.126\nMessage Wall:92.153.59.116\nMessage Wall:92.155.134.78\nMessage Wall:92.155.173.64\nMessage Wall:92.155.176.2\nMessage Wall:92.16.244.251\nMessage Wall:92.16.38.248\nMessage Wall:92.161.173.116\nMessage Wall:92.162.82.54\nMessage Wall:92.163.96.206\nMessage Wall:92.17.140.188\nMessage Wall:92.17.185.172\nMessage Wall:92.17.203.153\nMessage Wall:92.17.203.159\nMessage Wall:92.17.248.173\nMessage Wall:92.17.252.66\nMessage Wall:92.171.46.65\nMessage Wall:92.18.9.213\nMessage Wall:92.19.140.78\nMessage Wall:92.19.150.72\nMessage Wall:92.19.249.180\nMessage Wall:92.19.254.45\nMessage Wall:92.195.209.83\nMessage Wall:92.2.156.102\nMessage Wall:92.2.189.235\nMessage Wall:92.2.212.134\nMessage Wall:92.2.215.233\nMessage Wall:92.20.71.147\nMessage Wall:92.20.86.112\nMessage Wall:92.201.107.224\nMessage Wall:92.201.125.128\nMessage Wall:92.201.125.138\nMessage Wall:92.201.14.171\nMessage Wall:92.201.175.22\nMessage Wall:92.201.187.198\nMessage Wall:92.201.227.36\nMessage Wall:92.201.26.118\nMessage Wall:92.201.34.131\nMessage Wall:92.201.42.159\nMessage Wall:92.201.69.204\nMessage Wall:92.201.72.6\nMessage Wall:92.201.87.115\nMessage Wall:92.201.9.186\nMessage Wall:92.203.158.140\nMessage Wall:92.206.201.148\nMessage Wall:92.206.202.77\nMessage Wall:92.206.237.33\nMessage Wall:92.206.59.96\nMessage Wall:92.207.224.82\nMessage Wall:92.208.167.229\nMessage Wall:92.208.175.201\nMessage Wall:92.208.204.186\nMessage Wall:92.208.58.208\nMessage Wall:92.208.78.162\nMessage Wall:92.209.110.179\nMessage Wall:92.209.161.201\nMessage Wall:92.209.21.172\nMessage Wall:92.209.76.89\nMessage Wall:92.21.193.149\nMessage Wall:92.21.208.233\nMessage Wall:92.21.78.236\nMessage Wall:92.210.69.5\nMessage Wall:92.211.2.27\nMessage Wall:92.212.26.73\nMessage Wall:92.217.17.215\nMessage Wall:92.217.203.175\nMessage Wall:92.217.226.180\nMessage Wall:92.22.154.195\nMessage Wall:92.22.220.140\nMessage Wall:92.22.226.247\nMessage Wall:92.22.57.38\nMessage Wall:92.221.177.135\nMessage Wall:92.221.25.137\nMessage Wall:92.224.159.219\nMessage Wall:92.224.216.115\nMessage Wall:92.225.152.155\nMessage Wall:92.226.139.222\nMessage Wall:92.227.144.70\nMessage Wall:92.227.54.97\nMessage Wall:92.228.166.148\nMessage Wall:92.228.34.154\nMessage Wall:92.228.98.133\nMessage Wall:92.229.13.27\nMessage Wall:92.229.137.153\nMessage Wall:92.229.56.147\nMessage Wall:92.229.69.57\nMessage Wall:92.23.104.38\nMessage Wall:92.23.106.245\nMessage Wall:92.23.201.249\nMessage Wall:92.230.252.35\nMessage Wall:92.232.109.150\nMessage Wall:92.232.199.243\nMessage Wall:92.232.37.16\nMessage Wall:92.232.55.39\nMessage Wall:92.232.98.15\nMessage Wall:92.233.112.147\nMessage Wall:92.233.155.30\nMessage Wall:92.233.172.238\nMessage Wall:92.233.172.95\nMessage Wall:92.233.235.254\nMessage Wall:92.233.59.130\nMessage Wall:92.233.63.242\nMessage Wall:92.234.236.152\nMessage Wall:92.234.46.128\nMessage Wall:92.234.50.61\nMessage Wall:92.234.70.27\nMessage Wall:92.236.114.198\nMessage Wall:92.236.136.128\nMessage Wall:92.236.195.31\nMessage Wall:92.236.196.168\nMessage Wall:92.236.205.253\nMessage Wall:92.236.213.128\nMessage Wall:92.236.35.168\nMessage Wall:92.236.4.93\nMessage Wall:92.236.71.232\nMessage Wall:92.237.16.146\nMessage Wall:92.237.172.232\nMessage Wall:92.237.210.92\nMessage Wall:92.237.214.77\nMessage Wall:92.238.119.183\nMessage Wall:92.238.165.10\nMessage Wall:92.238.228.83\nMessage Wall:92.238.230.46\nMessage Wall:92.239.144.25\nMessage Wall:92.239.173.247\nMessage Wall:92.239.222.180\nMessage Wall:92.239.254.228\nMessage Wall:92.239.45.34\nMessage Wall:92.239.52.70\nMessage Wall:92.24.200.71\nMessage Wall:92.240.181.208\nMessage Wall:92.240.234.221\nMessage Wall:92.246.1.42\nMessage Wall:92.247.124.114\nMessage Wall:92.249.142.62\nMessage Wall:92.249.243.8\nMessage Wall:92.25.69.192\nMessage Wall:92.255.195.135\nMessage Wall:92.26.38.151\nMessage Wall:92.27.80.36\nMessage Wall:92.28.119.187\nMessage Wall:92.28.224.176\nMessage Wall:92.28.247.50\nMessage Wall:92.28.249.166\nMessage Wall:92.30.133.75\nMessage Wall:92.30.188.129\nMessage Wall:92.31.186.127\nMessage Wall:92.4.168.112\nMessage Wall:92.4.169.155\nMessage Wall:92.4.169.220\nMessage Wall:92.40.248.179\nMessage Wall:92.40.248.33\nMessage Wall:92.40.249.136\nMessage Wall:92.40.249.162\nMessage Wall:92.40.249.183\nMessage Wall:92.43.25.50\nMessage Wall:92.43.71.143\nMessage Wall:92.44.196.43\nMessage Wall:92.5.107.86\nMessage Wall:92.52.35.205\nMessage Wall:92.52.61.249\nMessage Wall:92.6.142.103\nMessage Wall:92.65.137.121\nMessage Wall:92.7.146.228\nMessage Wall:92.7.154.170\nMessage Wall:92.7.168.128\nMessage Wall:92.72.184.220\nMessage Wall:92.74.230.108\nMessage Wall:92.74.93.186\nMessage Wall:92.75.192.252\nMessage Wall:92.75.92.22\nMessage Wall:92.76.171.93\nMessage Wall:92.77.66.46\nMessage Wall:92.78.240.216\nMessage Wall:92.78.245.143\nMessage Wall:92.78.3.156\nMessage Wall:92.8.234.182\nMessage Wall:92.8.238.65\nMessage Wall:92.80.169.88\nMessage Wall:92.80.180.212\nMessage Wall:92.80.190.200\nMessage Wall:92.9.145.2\nMessage Wall:92.9.16.55\nMessage Wall:92.9.53.84\nMessage Wall:92.92.161.94\nMessage Wall:92.93.40.41\nMessage Wall:92.97.210.35\nMessage Wall:93.0.249.1\nMessage Wall:93.103.105.74\nMessage Wall:93.103.14.160\nMessage Wall:93.104.164.6\nMessage Wall:93.104.48.21\nMessage Wall:93.105.179.62\nMessage Wall:93.106.105.88\nMessage Wall:93.106.148.82\nMessage Wall:93.106.178.84\nMessage Wall:93.106.195.224\nMessage Wall:93.106.198.121\nMessage Wall:93.106.201.18\nMessage Wall:93.106.202.73\nMessage Wall:93.106.238.13\nMessage Wall:93.106.238.237\nMessage Wall:93.106.239.50\nMessage Wall:93.106.31.186\nMessage Wall:93.106.44.161\nMessage Wall:93.106.54.51\nMessage Wall:93.106.6.170\nMessage Wall:93.106.61.5\nMessage Wall:93.106.96.86\nMessage Wall:93.11.182.226\nMessage Wall:93.123.172.89\nMessage Wall:93.125.49.21\nMessage Wall:93.128.142.221\nMessage Wall:93.128.165.141\nMessage Wall:93.128.200.153\nMessage Wall:93.130.136.67\nMessage Wall:93.130.140.87\nMessage Wall:93.132.23.32\nMessage Wall:93.132.34.85\nMessage Wall:93.133.137.82\nMessage Wall:93.133.150.90\nMessage Wall:93.134.53.86\nMessage Wall:93.135.128.89\nMessage Wall:93.135.151.221\nMessage Wall:93.136.59.67\nMessage Wall:93.137.22.203\nMessage Wall:93.138.249.137\nMessage Wall:93.142.168.255\nMessage Wall:93.143.0.99\nMessage Wall:93.143.107.104\nMessage Wall:93.143.124.130\nMessage Wall:93.143.29.57\nMessage Wall:93.143.32.90\nMessage Wall:93.143.85.240\nMessage Wall:93.143.89.105\nMessage Wall:93.143.94.2\nMessage Wall:93.143.99.56\nMessage Wall:93.152.47.124\nMessage Wall:93.153.67.35\nMessage Wall:93.159.21.36\nMessage Wall:93.160.212.246\nMessage Wall:93.162.36.242\nMessage Wall:93.163.189.98\nMessage Wall:93.165.148.186\nMessage Wall:93.173.186.116\nMessage Wall:93.176.121.100\nMessage Wall:93.181.1.205\nMessage Wall:93.185.17.212\nMessage Wall:93.185.18.204\nMessage Wall:93.185.19.138\nMessage Wall:93.185.19.24\nMessage Wall:93.185.26.112\nMessage Wall:93.185.26.136\nMessage Wall:93.185.27.186\nMessage Wall:93.185.27.77\nMessage Wall:93.186.148.4\nMessage Wall:93.186.60.222\nMessage Wall:93.187.177.160\nMessage Wall:93.188.136.2\nMessage Wall:93.191.202.60\nMessage Wall:93.192.102.26\nMessage Wall:93.192.122.154\nMessage Wall:93.192.244.118\nMessage Wall:93.192.248.34\nMessage Wall:93.193.182.199\nMessage Wall:93.193.20.197\nMessage Wall:93.193.217.106\nMessage Wall:93.193.76.231\nMessage Wall:93.194.75.92\nMessage Wall:93.194.83.48\nMessage Wall:93.198.245.76\nMessage Wall:93.199.235.188\nMessage Wall:93.199.251.51\nMessage Wall:93.2.132.140\nMessage Wall:93.200.213.193\nMessage Wall:93.205.246.214\nMessage Wall:93.205.90.125\nMessage Wall:93.205.95.173\nMessage Wall:93.21.134.208\nMessage Wall:93.211.82.204\nMessage Wall:93.211.84.136\nMessage Wall:93.212.218.233\nMessage Wall:93.212.87.2\nMessage Wall:93.213.88.23\nMessage Wall:93.213.94.198\nMessage Wall:93.214.223.192\nMessage Wall:93.214.250.70\nMessage Wall:93.215.224.126\nMessage Wall:93.218.114.165\nMessage Wall:93.218.200.168\nMessage Wall:93.220.119.47\nMessage Wall:93.220.14.11\nMessage Wall:93.220.214.36\nMessage Wall:93.220.223.143\nMessage Wall:93.220.230.91\nMessage Wall:93.220.238.48\nMessage Wall:93.220.251.201\nMessage Wall:93.220.69.15\nMessage Wall:93.220.74.162\nMessage Wall:93.220.82.62\nMessage Wall:93.221.13.67\nMessage Wall:93.221.151.242\nMessage Wall:93.221.218.231\nMessage Wall:93.222.116.50\nMessage Wall:93.222.120.94\nMessage Wall:93.222.237.96\nMessage Wall:93.222.66.228\nMessage Wall:93.222.73.140\nMessage Wall:93.222.75.35\nMessage Wall:93.222.91.137\nMessage Wall:93.223.117.167\nMessage Wall:93.223.118.85\nMessage Wall:93.223.123.140\nMessage Wall:93.223.68.4\nMessage Wall:93.223.86.15\nMessage Wall:93.223.88.74\nMessage Wall:93.227.140.102\nMessage Wall:93.227.91.176\nMessage Wall:93.228.37.207\nMessage Wall:93.229.209.22\nMessage Wall:93.230.61.163\nMessage Wall:93.232.200.71\nMessage Wall:93.233.7.61\nMessage Wall:93.234.143.162\nMessage Wall:93.237.119.187\nMessage Wall:93.237.127.243\nMessage Wall:93.238.255.200\nMessage Wall:93.239.186.228\nMessage Wall:93.244.196.248\nMessage Wall:93.245.59.79\nMessage Wall:93.245.64.23\nMessage Wall:93.31.47.34\nMessage Wall:93.35.1.34\nMessage Wall:93.37.145.246\nMessage Wall:93.38.219.189\nMessage Wall:93.38.84.161\nMessage Wall:93.40.64.32\nMessage Wall:93.47.115.157\nMessage Wall:93.48.111.252\nMessage Wall:93.50.180.177\nMessage Wall:93.55.88.222\nMessage Wall:93.63.151.10\nMessage Wall:93.64.88.166\nMessage Wall:93.74.168.37\nMessage Wall:93.76.182.81\nMessage Wall:93.80.116.108\nMessage Wall:93.80.254.105\nMessage Wall:93.81.237.84\nMessage Wall:93.83.109.90\nMessage Wall:93.86.166.24\nMessage Wall:93.99.226.40\nMessage Wall:94.0.205.23\nMessage Wall:94.1.115.61\nMessage Wall:94.1.156.159\nMessage Wall:94.1.238.28\nMessage Wall:94.1.46.36\nMessage Wall:94.1.65.7\nMessage Wall:94.10.30.248\nMessage Wall:94.100.12.160\nMessage Wall:94.11.124.80\nMessage Wall:94.11.13.9\nMessage Wall:94.11.230.225\nMessage Wall:94.11.32.255\nMessage Wall:94.112.108.171\nMessage Wall:94.112.162.105\nMessage Wall:94.112.71.190\nMessage Wall:94.113.145.17\nMessage Wall:94.113.85.255\nMessage Wall:94.113.94.54\nMessage Wall:94.113.95.155\nMessage Wall:94.114.172.238\nMessage Wall:94.12.31.80\nMessage Wall:94.12.83.1\nMessage Wall:94.127.25.138\nMessage Wall:94.132.168.253\nMessage Wall:94.134.38.132\nMessage Wall:94.134.71.25\nMessage Wall:94.135.236.134\nMessage Wall:94.135.241.190\nMessage Wall:94.135.241.243\nMessage Wall:94.137.220.195\nMessage Wall:94.138.28.157\nMessage Wall:94.139.3.91\nMessage Wall:94.139.85.141\nMessage Wall:94.14.225.105\nMessage Wall:94.14.227.191\nMessage Wall:94.14.79.222\nMessage Wall:94.140.241.15\nMessage Wall:94.143.236.180\nMessage Wall:94.145.94.218\nMessage Wall:94.15.136.251\nMessage Wall:94.15.142.192\nMessage Wall:94.15.73.200\nMessage Wall:94.154.25.226\nMessage Wall:94.16.131.245\nMessage Wall:94.16.146.105\nMessage Wall:94.163.110.64\nMessage Wall:94.170.225.32\nMessage Wall:94.173.10.42\nMessage Wall:94.173.15.242\nMessage Wall:94.173.193.173\nMessage Wall:94.173.232.105\nMessage Wall:94.174.172.9\nMessage Wall:94.174.174.160\nMessage Wall:94.174.47.99\nMessage Wall:94.175.143.234\nMessage Wall:94.175.18.147\nMessage Wall:94.175.209.135\nMessage Wall:94.175.38.129\nMessage Wall:94.175.53.183\nMessage Wall:94.177.32.154\nMessage Wall:94.18.233.78\nMessage Wall:94.181.96.236\nMessage Wall:94.181.99.243\nMessage Wall:94.189.140.210\nMessage Wall:94.189.160.96\nMessage Wall:94.192.107.86\nMessage Wall:94.192.120.228\nMessage Wall:94.192.122.78\nMessage Wall:94.192.23.185\nMessage Wall:94.192.4.122\nMessage Wall:94.192.51.213\nMessage Wall:94.192.91.84\nMessage Wall:94.193.133.186\nMessage Wall:94.193.156.240\nMessage Wall:94.193.35.156\nMessage Wall:94.194.142.143\nMessage Wall:94.194.238.143\nMessage Wall:94.194.68.7\nMessage Wall:94.194.71.181\nMessage Wall:94.195.170.97\nMessage Wall:94.195.171.204\nMessage Wall:94.195.202.121\nMessage Wall:94.195.52.27\nMessage Wall:94.195.77.240\nMessage Wall:94.197.120.8\nMessage Wall:94.197.121.138\nMessage Wall:94.197.121.182\nMessage Wall:94.2.87.110\nMessage Wall:94.200.8.198\nMessage Wall:94.201.81.47\nMessage Wall:94.204.37.202\nMessage Wall:94.208.134.52\nMessage Wall:94.209.123.249\nMessage Wall:94.209.127.220\nMessage Wall:94.21.101.9\nMessage Wall:94.21.31.139\nMessage Wall:94.213.251.41\nMessage Wall:94.213.76.55\nMessage Wall:94.214.115.204\nMessage Wall:94.214.160.218\nMessage Wall:94.214.203.161\nMessage Wall:94.215.20.106\nMessage Wall:94.216.181.100\nMessage Wall:94.219.19.220\nMessage Wall:94.219.36.130\nMessage Wall:94.22.80.7\nMessage Wall:94.220.0.223\nMessage Wall:94.221.219.143\nMessage Wall:94.221.230.144\nMessage Wall:94.221.77.25\nMessage Wall:94.222.63.109\nMessage Wall:94.223.174.230\nMessage Wall:94.223.175.124\nMessage Wall:94.224.166.162\nMessage Wall:94.224.205.48\nMessage Wall:94.224.214.81\nMessage Wall:94.225.100.238\nMessage Wall:94.225.163.99\nMessage Wall:94.231.23.137\nMessage Wall:94.232.225.1\nMessage Wall:94.234.170.119\nMessage Wall:94.234.37.31\nMessage Wall:94.234.38.145\nMessage Wall:94.234.38.220\nMessage Wall:94.234.39.174\nMessage Wall:94.242.69.138\nMessage Wall:94.248.128.172\nMessage Wall:94.248.180.80\nMessage Wall:94.248.197.209\nMessage Wall:94.248.198.197\nMessage Wall:94.248.209.240\nMessage Wall:94.254.0.87\nMessage Wall:94.254.101.76\nMessage Wall:94.254.48.78\nMessage Wall:94.254.51.213\nMessage Wall:94.254.8.87\nMessage Wall:94.26.69.234\nMessage Wall:94.29.46.190\nMessage Wall:94.29.73.129\nMessage Wall:94.3.42.120\nMessage Wall:94.3.55.237\nMessage Wall:94.31.115.158\nMessage Wall:94.31.117.102\nMessage Wall:94.34.19.216\nMessage Wall:94.39.28.242\nMessage Wall:94.4.2.23\nMessage Wall:94.4.220.115\nMessage Wall:94.4.225.121\nMessage Wall:94.41.93.71\nMessage Wall:94.42.253.237\nMessage Wall:94.5.120.55\nMessage Wall:94.5.138.232\nMessage Wall:94.5.220.159\nMessage Wall:94.5.40.108\nMessage Wall:94.54.17.161\nMessage Wall:94.6.152.78\nMessage Wall:94.6.19.171\nMessage Wall:94.6.251.44\nMessage Wall:94.64.113.189\nMessage Wall:94.64.248.22\nMessage Wall:94.65.178.75\nMessage Wall:94.67.193.103\nMessage Wall:94.67.239.32\nMessage Wall:94.69.201.158\nMessage Wall:94.69.206.50\nMessage Wall:94.7.173.143\nMessage Wall:94.7.180.150\nMessage Wall:94.7.185.21\nMessage Wall:94.70.59.72\nMessage Wall:94.71.71.117\nMessage Wall:94.71.97.97\nMessage Wall:94.72.249.65\nMessage Wall:94.74.219.234\nMessage Wall:94.74.219.74\nMessage Wall:94.74.230.138\nMessage Wall:94.79.174.218\nMessage Wall:94.8.175.109\nMessage Wall:94.9.142.131\nMessage Wall:94.9.164.136\nMessage Wall:94.9.91.98\nMessage Wall:95.102.245.16\nMessage Wall:95.103.180.241\nMessage Wall:95.105.134.43\nMessage Wall:95.105.238.148\nMessage Wall:95.105.83.44\nMessage Wall:95.109.10.70\nMessage Wall:95.112.198.157\nMessage Wall:95.112.199.247\nMessage Wall:95.113.92.193\nMessage Wall:95.114.15.30\nMessage Wall:95.114.202.104\nMessage Wall:95.114.229.45\nMessage Wall:95.115.109.2\nMessage Wall:95.115.174.30\nMessage Wall:95.115.180.147\nMessage Wall:95.116.198.21\nMessage Wall:95.118.170.144\nMessage Wall:95.118.189.89\nMessage Wall:95.118.87.153\nMessage Wall:95.118.91.204\nMessage Wall:95.118.97.229\nMessage Wall:95.119.225.204\nMessage Wall:95.123.63.35\nMessage Wall:95.129.56.35\nMessage Wall:95.131.110.124\nMessage Wall:95.140.2.29\nMessage Wall:95.143.139.6\nMessage Wall:95.144.202.58\nMessage Wall:95.144.42.132\nMessage Wall:95.144.56.50\nMessage Wall:95.145.144.176\nMessage Wall:95.145.190.189\nMessage Wall:95.145.248.253\nMessage Wall:95.145.248.89\nMessage Wall:95.145.93.188\nMessage Wall:95.145.93.211\nMessage Wall:95.145.93.231\nMessage Wall:95.145.93.245\nMessage Wall:95.146.130.198\nMessage Wall:95.146.77.249\nMessage Wall:95.147.14.227\nMessage Wall:95.147.143.133\nMessage Wall:95.147.153.138\nMessage Wall:95.147.56.106\nMessage Wall:95.147.56.95\nMessage Wall:95.148.119.52\nMessage Wall:95.148.160.0\nMessage Wall:95.148.174.33\nMessage Wall:95.148.3.35\nMessage Wall:95.148.76.215\nMessage Wall:95.148.78.93\nMessage Wall:95.150.153.134\nMessage Wall:95.150.153.179\nMessage Wall:95.151.18.23\nMessage Wall:95.154.62.70\nMessage Wall:95.155.208.147\nMessage Wall:95.155.218.135\nMessage Wall:95.16.69.173\nMessage Wall:95.160.152.196\nMessage Wall:95.169.56.219\nMessage Wall:95.175.104.28\nMessage Wall:95.195.141.178\nMessage Wall:95.208.248.120\nMessage Wall:95.208.248.169\nMessage Wall:95.208.248.64\nMessage Wall:95.208.248.80\nMessage Wall:95.208.248.91\nMessage Wall:95.220.110.113\nMessage Wall:95.220.177.10\nMessage Wall:95.222.27.216\nMessage Wall:95.222.29.93\nMessage Wall:95.222.30.200\nMessage Wall:95.223.119.8\nMessage Wall:95.223.214.127\nMessage Wall:95.234.42.22\nMessage Wall:95.237.233.81\nMessage Wall:95.238.224.233\nMessage Wall:95.242.198.224\nMessage Wall:95.242.92.82\nMessage Wall:95.249.248.189\nMessage Wall:95.25.134.67\nMessage Wall:95.25.91.68\nMessage Wall:95.26.232.30\nMessage Wall:95.28.62.129\nMessage Wall:95.29.191.89\nMessage Wall:95.31.139.237\nMessage Wall:95.33.100.221\nMessage Wall:95.33.113.142\nMessage Wall:95.33.120.203\nMessage Wall:95.33.124.191\nMessage Wall:95.33.147.84\nMessage Wall:95.33.224.218\nMessage Wall:95.33.225.99\nMessage Wall:95.33.66.119\nMessage Wall:95.34.114.92\nMessage Wall:95.34.132.190\nMessage Wall:95.34.202.228\nMessage Wall:95.34.239.81\nMessage Wall:95.38.132.55\nMessage Wall:95.40.8.60\nMessage Wall:95.44.167.157\nMessage Wall:95.45.48.113\nMessage Wall:95.45.85.205\nMessage Wall:95.49.138.80\nMessage Wall:95.49.178.238\nMessage Wall:95.55.242.253\nMessage Wall:95.79.2.249\nMessage Wall:95.84.224.39\nMessage Wall:95.85.212.6\nMessage Wall:95.90.138.209\nMessage Wall:95.90.186.102\nMessage Wall:95.90.186.129\nMessage Wall:95.90.192.30\nMessage Wall:95.90.192.54\nMessage Wall:95.90.195.100\nMessage Wall:95.90.196.141\nMessage Wall:95.90.196.42\nMessage Wall:95.90.199.164\nMessage Wall:95.90.199.37\nMessage Wall:95.90.200.1\nMessage Wall:95.90.202.69\nMessage Wall:95.90.206.84\nMessage Wall:95.90.210.152\nMessage Wall:95.90.212.109\nMessage Wall:95.90.214.138\nMessage Wall:95.90.217.27\nMessage Wall:95.90.218.223\nMessage Wall:95.90.222.149\nMessage Wall:95.90.222.220\nMessage Wall:95.90.225.184\nMessage Wall:95.90.225.217\nMessage Wall:95.90.231.188\nMessage Wall:95.90.234.1\nMessage Wall:95.90.238.132\nMessage Wall:95.90.239.21\nMessage Wall:95.90.240.212\nMessage Wall:95.90.250.113\nMessage Wall:95.90.65.43\nMessage Wall:95.91.113.94\nMessage Wall:95.91.162.210\nMessage Wall:95.91.192.94\nMessage Wall:95.91.201.196\nMessage Wall:95.91.203.141\nMessage Wall:95.91.208.35\nMessage Wall:95.91.216.101\nMessage Wall:95.91.228.100\nMessage Wall:95.91.228.104\nMessage Wall:95.91.228.12\nMessage Wall:95.91.228.126\nMessage Wall:95.91.228.130\nMessage Wall:95.91.228.134\nMessage Wall:95.91.228.136\nMessage Wall:95.91.228.146\nMessage Wall:95.91.228.154\nMessage Wall:95.91.228.159\nMessage Wall:95.91.228.162\nMessage Wall:95.91.228.17\nMessage Wall:95.91.228.170\nMessage Wall:95.91.228.171\nMessage Wall:95.91.228.175\nMessage Wall:95.91.228.177\nMessage Wall:95.91.228.181\nMessage Wall:95.91.228.189\nMessage Wall:95.91.228.196\nMessage Wall:95.91.228.198\nMessage Wall:95.91.228.199\nMessage Wall:95.91.228.25\nMessage Wall:95.91.228.26\nMessage Wall:95.91.228.27\nMessage Wall:95.91.228.28\nMessage Wall:95.91.228.5\nMessage Wall:95.91.228.55\nMessage Wall:95.91.228.58\nMessage Wall:95.91.228.62\nMessage Wall:95.91.228.67\nMessage Wall:95.91.228.78\nMessage Wall:95.91.228.79\nMessage Wall:95.91.228.84\nMessage Wall:95.91.228.91\nMessage Wall:95.91.228.98\nMessage Wall:95.91.229.243\nMessage Wall:95.91.231.29\nMessage Wall:95.91.232.99\nMessage Wall:95.91.234.132\nMessage Wall:95.91.235.164\nMessage Wall:95.91.236.173\nMessage Wall:95.91.251.192\nMessage Wall:95.92.245.81\nMessage Wall:95.93.194.234\nMessage Wall:95.94.211.176\nMessage Wall:95.95.85.237\nMessage Wall:95.96.225.41\nMessage Wall:96.10.15.138\nMessage Wall:96.125.245.170\nMessage Wall:96.127.205.105\nMessage Wall:96.18.166.143\nMessage Wall:96.19.57.120\nMessage Wall:96.2.102.106\nMessage Wall:96.2.123.81\nMessage Wall:96.2.14.92\nMessage Wall:96.2.214.121\nMessage Wall:96.2.37.60\nMessage Wall:96.20.109.129\nMessage Wall:96.21.38.225\nMessage Wall:96.22.103.73\nMessage Wall:96.225.135.19\nMessage Wall:96.226.117.67\nMessage Wall:96.226.122.165\nMessage Wall:96.226.149.68\nMessage Wall:96.226.91.232\nMessage Wall:96.227.242.190\nMessage Wall:96.227.81.214\nMessage Wall:96.230.155.67\nMessage Wall:96.231.135.31\nMessage Wall:96.231.157.246\nMessage Wall:96.231.19.138\nMessage Wall:96.231.43.151\nMessage Wall:96.236.133.22\nMessage Wall:96.238.132.92\nMessage Wall:96.238.190.51\nMessage Wall:96.240.142.46\nMessage Wall:96.244.102.204\nMessage Wall:96.244.223.120\nMessage Wall:96.244.54.189\nMessage Wall:96.246.190.70\nMessage Wall:96.250.78.181\nMessage Wall:96.252.13.2\nMessage Wall:96.253.38.31\nMessage Wall:96.253.89.73\nMessage Wall:96.254.94.56\nMessage Wall:96.255.124.134\nMessage Wall:96.255.138.40\nMessage Wall:96.255.158.253\nMessage Wall:96.255.174.7\nMessage Wall:96.255.18.100\nMessage Wall:96.255.237.211\nMessage Wall:96.29.182.189\nMessage Wall:96.30.139.0\nMessage Wall:96.32.150.249\nMessage Wall:96.32.178.133\nMessage Wall:96.36.46.146\nMessage Wall:96.37.192.150\nMessage Wall:96.37.31.189\nMessage Wall:96.37.43.138\nMessage Wall:96.38.145.98\nMessage Wall:96.38.150.136\nMessage Wall:96.40.240.193\nMessage Wall:96.40.84.252\nMessage Wall:96.41.152.154\nMessage Wall:96.41.189.102\nMessage Wall:96.41.191.172\nMessage Wall:96.42.201.2\nMessage Wall:96.42.209.70\nMessage Wall:96.42.66.124\nMessage Wall:96.44.189.178\nMessage Wall:96.47.139.228\nMessage Wall:96.48.145.152\nMessage Wall:96.48.16.219\nMessage Wall:96.48.222.23\nMessage Wall:96.49.36.186\nMessage Wall:96.51.100.67\nMessage Wall:96.51.57.126\nMessage Wall:96.52.151.7\nMessage Wall:96.52.184.32\nMessage Wall:96.52.24.64\nMessage Wall:96.52.26.15\nMessage Wall:96.52.40.149\nMessage Wall:96.53.212.139\nMessage Wall:96.54.13.194\nMessage Wall:96.54.228.144\nMessage Wall:96.54.247.38\nMessage Wall:96.58.254.124\nMessage Wall:96.66.230.137\nMessage Wall:96.66.42.177\nMessage Wall:96.8.156.223\nMessage Wall:96.95.63.49\nMessage Wall:97.100.164.53\nMessage Wall:97.100.173.121\nMessage Wall:97.100.234.198\nMessage Wall:97.101.181.23\nMessage Wall:97.101.245.137\nMessage Wall:97.104.170.117\nMessage Wall:97.104.97.199\nMessage Wall:97.113.178.136\nMessage Wall:97.113.5.235\nMessage Wall:97.115.178.154\nMessage Wall:97.117.157.216\nMessage Wall:97.117.244.127\nMessage Wall:97.118.56.116\nMessage Wall:97.121.44.128\nMessage Wall:97.122.123.45\nMessage Wall:97.122.232.217\nMessage Wall:97.123.131.49\nMessage Wall:97.124.100.162\nMessage Wall:97.124.103.112\nMessage Wall:97.124.84.150\nMessage Wall:97.126.139.151\nMessage Wall:97.127.242.69\nMessage Wall:97.127.3.142\nMessage Wall:97.34.130.50\nMessage Wall:97.41.137.114\nMessage Wall:97.64.215.195\nMessage Wall:97.64.220.2\nMessage Wall:97.65.143.146\nMessage Wall:97.80.112.58\nMessage Wall:97.80.123.129\nMessage Wall:97.80.124.149\nMessage Wall:97.80.132.42\nMessage Wall:97.81.64.207\nMessage Wall:97.81.74.197\nMessage Wall:97.83.226.123\nMessage Wall:97.84.102.143\nMessage Wall:97.84.134.173\nMessage Wall:97.84.134.46\nMessage Wall:97.88.124.107\nMessage Wall:97.90.153.87\nMessage Wall:97.90.198.28\nMessage Wall:97.91.145.197\nMessage Wall:97.92.233.179\nMessage Wall:97.92.39.44\nMessage Wall:97.94.8.39\nMessage Wall:97.95.165.168\nMessage Wall:97.95.172.254\nMessage Wall:97.95.235.26\nMessage Wall:97.95.250.169\nMessage Wall:98.10.198.180\nMessage Wall:98.101.226.187\nMessage Wall:98.112.59.159\nMessage Wall:98.113.25.115\nMessage Wall:98.113.34.239\nMessage Wall:98.114.105.110\nMessage Wall:98.114.171.21\nMessage Wall:98.114.191.50\nMessage Wall:98.114.53.59\nMessage Wall:98.116.207.126\nMessage Wall:98.117.91.42\nMessage Wall:98.117.94.58\nMessage Wall:98.118.84.133\nMessage Wall:98.119.183.233\nMessage Wall:98.119.78.103\nMessage Wall:98.122.144.150\nMessage Wall:98.125.169.62\nMessage Wall:98.125.220.72\nMessage Wall:98.125.228.187\nMessage Wall:98.125.232.227\nMessage Wall:98.125.251.83\nMessage Wall:98.127.122.221\nMessage Wall:98.14.0.13\nMessage Wall:98.142.75.64\nMessage Wall:98.144.90.96\nMessage Wall:98.145.209.229\nMessage Wall:98.145.8.106\nMessage Wall:98.148.221.218\nMessage Wall:98.148.83.230\nMessage Wall:98.15.171.123\nMessage Wall:98.155.115.120\nMessage Wall:98.160.203.30\nMessage Wall:98.163.6.191\nMessage Wall:98.165.15.207\nMessage Wall:98.165.188.228\nMessage Wall:98.165.189.29\nMessage Wall:98.165.224.103\nMessage Wall:98.165.232.236\nMessage Wall:98.166.148.157\nMessage Wall:98.166.76.240\nMessage Wall:98.167.121.196\nMessage Wall:98.167.235.4\nMessage Wall:98.167.88.131\nMessage Wall:98.168.155.68\nMessage Wall:98.169.16.80\nMessage Wall:98.169.29.69\nMessage Wall:98.170.240.244\nMessage Wall:98.171.160.89\nMessage Wall:98.171.162.230\nMessage Wall:98.171.173.99\nMessage Wall:98.176.90.36\nMessage Wall:98.181.56.184\nMessage Wall:98.183.81.72\nMessage Wall:98.186.164.103\nMessage Wall:98.186.84.109\nMessage Wall:98.19.3.28\nMessage Wall:98.190.248.72\nMessage Wall:98.193.171.214\nMessage Wall:98.194.72.123\nMessage Wall:98.195.170.173\nMessage Wall:98.195.179.219\nMessage Wall:98.196.181.135\nMessage Wall:98.196.242.112\nMessage Wall:98.196.253.135\nMessage Wall:98.197.171.137\nMessage Wall:98.198.144.47\nMessage Wall:98.198.176.244\nMessage Wall:98.198.247.179\nMessage Wall:98.199.90.169\nMessage Wall:98.20.68.54\nMessage Wall:98.201.212.101\nMessage Wall:98.202.4.170\nMessage Wall:98.202.40.46\nMessage Wall:98.202.75.164\nMessage Wall:98.203.179.111\nMessage Wall:98.206.39.56\nMessage Wall:98.208.216.52\nMessage Wall:98.210.124.81\nMessage Wall:98.210.154.81\nMessage Wall:98.213.250.0\nMessage Wall:98.214.6.212\nMessage Wall:98.215.221.108\nMessage Wall:98.216.193.104\nMessage Wall:98.217.90.30\nMessage Wall:98.220.205.167\nMessage Wall:98.220.73.80\nMessage Wall:98.222.235.179\nMessage Wall:98.222.91.241\nMessage Wall:98.223.123.205\nMessage Wall:98.223.133.113\nMessage Wall:98.225.69.62\nMessage Wall:98.225.72.245\nMessage Wall:98.225.98.174\nMessage Wall:98.226.192.248\nMessage Wall:98.226.242.124\nMessage Wall:98.226.72.171\nMessage Wall:98.227.152.9\nMessage Wall:98.228.99.5\nMessage Wall:98.23.195.64\nMessage Wall:98.231.112.78\nMessage Wall:98.231.139.220\nMessage Wall:98.231.77.210\nMessage Wall:98.233.40.74\nMessage Wall:98.234.88.94\nMessage Wall:98.235.17.163\nMessage Wall:98.235.93.174\nMessage Wall:98.236.173.203\nMessage Wall:98.236.197.236\nMessage Wall:98.237.193.126\nMessage Wall:98.238.133.226\nMessage Wall:98.238.218.2\nMessage Wall:98.239.13.251\nMessage Wall:98.239.139.216\nMessage Wall:98.239.231.211\nMessage Wall:98.239.48.227\nMessage Wall:98.240.59.96\nMessage Wall:98.242.36.239\nMessage Wall:98.243.139.202\nMessage Wall:98.243.222.60\nMessage Wall:98.244.150.69\nMessage Wall:98.244.151.22\nMessage Wall:98.245.104.68\nMessage Wall:98.245.12.110\nMessage Wall:98.245.151.251\nMessage Wall:98.245.210.143\nMessage Wall:98.246.169.211\nMessage Wall:98.246.184.253\nMessage Wall:98.246.37.142\nMessage Wall:98.246.54.51\nMessage Wall:98.247.36.112\nMessage Wall:98.248.175.113\nMessage Wall:98.248.242.18\nMessage Wall:98.248.8.62\nMessage Wall:98.251.129.85\nMessage Wall:98.253.51.176\nMessage Wall:98.253.89.16\nMessage Wall:98.26.87.63\nMessage Wall:98.27.16.252\nMessage Wall:98.28.229.144\nMessage Wall:98.28.68.147\nMessage Wall:98.29.29.110\nMessage Wall:98.3.22.178\nMessage Wall:98.30.105.178\nMessage Wall:98.30.129.38\nMessage Wall:98.30.27.95\nMessage Wall:98.31.11.82\nMessage Wall:98.31.38.3\nMessage Wall:98.67.244.100\nMessage Wall:98.89.131.219\nMessage Wall:99.0.13.106\nMessage Wall:99.100.68.108\nMessage Wall:99.103.7.16\nMessage Wall:99.108.144.199\nMessage Wall:99.112.17.13\nMessage Wall:99.113.119.1\nMessage Wall:99.113.49.199\nMessage Wall:99.113.61.88\nMessage Wall:99.114.125.222\nMessage Wall:99.114.190.59\nMessage Wall:99.114.68.181\nMessage Wall:99.126.164.93\nMessage Wall:99.126.198.247\nMessage Wall:99.126.215.49\nMessage Wall:99.127.158.153\nMessage Wall:99.13.115.50\nMessage Wall:99.135.98.174\nMessage Wall:99.14.137.192\nMessage Wall:99.146.68.140\nMessage Wall:99.163.241.2\nMessage Wall:99.164.180.119\nMessage Wall:99.168.125.98\nMessage Wall:99.169.5.215\nMessage Wall:99.17.198.206\nMessage Wall:99.175.72.128\nMessage Wall:99.179.137.15\nMessage Wall:99.179.26.4\nMessage Wall:99.182.120.66\nMessage Wall:99.191.24.26\nMessage Wall:99.192.113.251\nMessage Wall:99.192.50.108\nMessage Wall:99.194.247.125\nMessage Wall:99.197.202.36\nMessage Wall:99.198.205.144\nMessage Wall:99.20.142.217\nMessage Wall:99.20.89.243\nMessage Wall:99.224.146.121\nMessage Wall:99.225.27.221\nMessage Wall:99.226.158.79\nMessage Wall:99.226.208.146\nMessage Wall:99.226.84.56\nMessage Wall:99.227.202.43\nMessage Wall:99.227.66.111\nMessage Wall:99.229.244.4\nMessage Wall:99.231.66.128\nMessage Wall:99.232.27.104\nMessage Wall:99.232.83.19\nMessage Wall:99.233.203.226\nMessage Wall:99.233.44.152\nMessage Wall:99.235.30.6\nMessage Wall:99.236.0.91\nMessage Wall:99.236.137.187\nMessage Wall:99.236.40.121\nMessage Wall:99.236.44.164\nMessage Wall:99.237.37.136\nMessage Wall:99.238.192.59\nMessage Wall:99.238.230.165\nMessage Wall:99.239.112.93\nMessage Wall:99.239.113.223\nMessage Wall:99.239.182.156\nMessage Wall:99.239.198.38\nMessage Wall:99.239.68.181\nMessage Wall:99.240.216.131\nMessage Wall:99.241.192.89\nMessage Wall:99.242.240.234\nMessage Wall:99.244.166.37\nMessage Wall:99.244.50.94\nMessage Wall:99.245.24.70\nMessage Wall:99.246.160.248\nMessage Wall:99.247.201.55\nMessage Wall:99.248.168.191\nMessage Wall:99.248.50.97\nMessage Wall:99.249.175.100\nMessage Wall:99.249.183.230\nMessage Wall:99.250.116.218\nMessage Wall:99.253.153.153\nMessage Wall:99.253.66.222\nMessage Wall:99.254.2.135\nMessage Wall:99.254.92.60\nMessage Wall:99.255.17.35\nMessage Wall:99.255.32.193\nMessage Wall:99.255.61.118\nMessage Wall:99.255.77.203\nMessage Wall:99.26.68.253\nMessage Wall:99.28.228.22\nMessage Wall:99.29.0.151\nMessage Wall:99.3.27.210\nMessage Wall:99.40.4.128\nMessage Wall:99.42.129.60\nMessage Wall:99.42.81.149\nMessage Wall:99.43.74.103\nMessage Wall:99.44.16.152\nMessage Wall:99.45.180.246\nMessage Wall:99.46.113.251\nMessage Wall:99.46.141.100\nMessage Wall:99.46.204.166\nMessage Wall:99.51.71.135\nMessage Wall:99.54.58.25\nMessage Wall:99.57.137.118\nMessage Wall:99.6.9.167\nMessage Wall:99.61.168.9\nMessage Wall:99.61.20.65\nMessage Wall:99.68.145.146\nMessage Wall:99.7.120.162\nMessage Wall:99.7.30.18\nMessage Wall:99.7.33.246\nMessage Wall:99.75.78.210\nMessage Wall:99.8.143.101\nMessage Wall:99.90.4.83\nMessage Wall:99.91.222.100\nMessage Wall:99.92.61.108\nMessage Wall:99.95.4.38\nMessage Wall:99.99.109.121\nMessage Wall:99.99.173.102\nMessage Wall:A-DEVIOUS-HYENA\nMessage Wall:A.JK18\nMessage Wall:A26706940\nMessage Wall:AAABatteryX\nMessage Wall:ADelicateBalance\nMessage Wall:AFTABURNER\nMessage Wall:AGR-13\nMessage Wall:AKA MasterG\nMessage Wall:ALittleBird\nMessage Wall:A Loyalist\nMessage Wall:Aalku\nMessage Wall:Aardcore\nMessage Wall:Aaroniscrazy\nMessage Wall:Aawood\nMessage Wall:Aazelion\nMessage Wall:AbioticSquare0\nMessage Wall:Abodythehero\nMessage Wall:Abyssflight\nMessage Wall:Ace Kestrel\nMessage Wall:Aceman2234\nMessage Wall:Achuta\nMessage Wall:Adalovegirls\nMessage Wall:Adamrsb48\nMessage Wall:AdiTheFox\nMessage Wall:Adinashawanda\nMessage Wall:Adminpwn123\nMessage Wall:Admsoul500\nMessage Wall:Adobetemplar\nMessage Wall:Adrian549kiyoshi\nMessage Wall:Aelkins3\nMessage Wall:Aeqsce\nMessage Wall:Aerziel\nMessage Wall:Aesamdal\nMessage Wall:Aethylred-fduser\nMessage Wall:Aeyonx\nMessage Wall:Afreeflyingsoul\nMessage Wall:AgentExeider\nMessage Wall:Agentnewbie\nMessage Wall:Agony Aunt\nMessage Wall:Agorash\nMessage Wall:AidenTEM\nMessage Wall:Aiihuan\nMessage Wall:Ajh16\nMessage Wall:AkaHeretic\nMessage Wall:Al1000000\nMessage Wall:AlatarRhys\nMessage Wall:Albie02\nMessage Wall:Alejojojo6\nMessage Wall:AlekMitch\nMessage Wall:Aleswigger\nMessage Wall:Alex8obrien\nMessage Wall:Alexander Yunker\nMessage Wall:Alexsto1999\nMessage Wall:Aliceinspace\nMessage Wall:Alicia Melchiott\nMessage Wall:Alien199490\nMessage Wall:Alifoo\nMessage Wall:Alin Alexandru\nMessage Wall:Allmass\nMessage Wall:Allosauro Polare\nMessage Wall:Almighty Deity\nMessage Wall:AlphaSpace\nMessage Wall:Alphaengineer\nMessage Wall:Alphetto\nMessage Wall:Alshain Aquilae\nMessage Wall:Amastoll\nMessage Wall:AmayaManami\nMessage Wall:Ambient.Impact\nMessage Wall:Ambiorix33\nMessage Wall:Amorelia\nMessage Wall:An attempted username\nMessage Wall:AnalyticalGamer\nMessage Wall:Anarch157a\nMessage Wall:AnarchySys-1\nMessage Wall:AndersonDG\nMessage Wall:AndiSarrian\nMessage Wall:Andix1\nMessage Wall:Andraez\nMessage Wall:Andrealessi\nMessage Wall:Andreferhelst\nMessage Wall:Andrew279cz\nMessage Wall:AndrewTJ31\nMessage Wall:Andrew Woden\nMessage Wall:AndricReal\nMessage Wall:Andrtan\nMessage Wall:AndySimpson96\nMessage Wall:Andybish\nMessage Wall:AngelCatGamer\nMessage Wall:AngelicSkyPig\nMessage Wall:AngelusNeron\nMessage Wall:AnimeKid\nMessage Wall:AnimusDeFi\nMessage Wall:Anon1444\nMessage Wall:Anonymoususer705\nMessage Wall:Antezscar\nMessage Wall:AntonerUSSR\nMessage Wall:AntonyVern\nMessage Wall:AntyAztek\nMessage Wall:AnxiousAndroid\nMessage Wall:Anzhi88601\nMessage Wall:AppleAuthority\nMessage Wall:Applemasterexpert\nMessage Wall:Aquarius Alodar\nMessage Wall:Aquaticaquarian\nMessage Wall:ArakiSatoshi\nMessage Wall:Aran.ilyaris\nMessage Wall:Araxes Falanor\nMessage Wall:Arbie2\nMessage Wall:Arcalane\nMessage Wall:Arcanii\nMessage Wall:Archemp\nMessage Wall:ArchmageFil\nMessage Wall:Arcslayer0\nMessage Wall:ArcticEngie\nMessage Wall:Arerix\nMessage Wall:Arfur Faulkes Hake\nMessage Wall:Arguendo\nMessage Wall:Arithon68\nMessage Wall:ArithonUK\nMessage Wall:ArkadeMachine\nMessage Wall:Arkronis\nMessage Wall:Arktac13\nMessage Wall:Arminelec\nMessage Wall:Armorial\nMessage Wall:Arnoldhdz\nMessage Wall:Arron X\nMessage Wall:Arrrrgh\nMessage Wall:Artemis317\nMessage Wall:Artemis871\nMessage Wall:ArthurFistMeme\nMessage Wall:Asalamanca\nMessage Wall:Asbestosinhaler\nMessage Wall:Ascott08\nMessage Wall:Ashcraven\nMessage Wall:Asherett\nMessage Wall:Ashnak\nMessage Wall:Askanison40\nMessage Wall:Asphixian\nMessage Wall:Assassin1454\nMessage Wall:Astaldor\nMessage Wall:Atamoor\nMessage Wall:Atarak\nMessage Wall:Atdc98\nMessage Wall:Athenian Goddess\nMessage Wall:Atlas29k\nMessage Wall:Atribe\nMessage Wall:Auhrii\nMessage Wall:Auron Volgar\nMessage Wall:AuroraXerox\nMessage Wall:Aussiecookie\nMessage Wall:Autemer\nMessage Wall:AvalonTreman\nMessage Wall:Avaruus\nMessage Wall:Avonw\nMessage Wall:Aw360\nMessage Wall:AwakenDeath\nMessage Wall:Ax028\nMessage Wall:Axarus\nMessage Wall:Axelskox\nMessage Wall:Aygor974\nMessage Wall:Aymerix\nMessage Wall:Azeoss\nMessage Wall:Azgoodaz\nMessage Wall:Azgru\nMessage Wall:Azuki, Connoisseur d'Catgirl\nMessage Wall:Azutone\nMessage Wall:B1uetears\nMessage Wall:BAdbUd65\nMessage Wall:BBuster20\nMessage Wall:BLaZeR666uk\nMessage Wall:BNSF1995\nMessage Wall:BOOTZed\nMessage Wall:BULLIITT\nMessage Wall:Babyss\nMessage Wall:BadBunnie\nMessage Wall:Badboyswat007\nMessage Wall:Baelydon\nMessage Wall:Baledor\nMessage Wall:Banos Ayado\nMessage Wall:Barateza\nMessage Wall:Barkertron\nMessage Wall:BaronCrusher\nMessage Wall:Baroness Galaxy\nMessage Wall:Barrechor\nMessage Wall:Bastardblaster\nMessage Wall:Bderochie\nMessage Wall:Bear Heroditus\nMessage Wall:Beebro22\nMessage Wall:Beetusdeletus\nMessage Wall:Bene1993\nMessage Wall:BennyBoyW\nMessage Wall:Bentheshrubber\nMessage Wall:BestalienUK\nMessage Wall:Bethcharissa9\nMessage Wall:Bgavares\nMessage Wall:Bhaalspawn\nMessage Wall:Bidabug\nMessage Wall:Bidoof king\nMessage Wall:BigBadB ED\nMessage Wall:BigBlackWolf\nMessage Wall:Biker4487\nMessage Wall:Bilberquist\nMessage Wall:Bilgewat3r\nMessage Wall:BinaryHatred\nMessage Wall:Bingo Brewster\nMessage Wall:Binlid\nMessage Wall:Bionicbytes\nMessage Wall:BirDty\nMessage Wall:Bishop Inskipp\nMessage Wall:Bit'n'byte\nMessage Wall:Bitboy0\nMessage Wall:Bl00dh0und9\nMessage Wall:BlackFlare\nMessage Wall:BlackKnight343\nMessage Wall:BlackWidower\nMessage Wall:Blackenedbutterfly\nMessage Wall:Blackmesa141\nMessage Wall:Blackproud\nMessage Wall:Bladefeather\nMessage Wall:Blades762\nMessage Wall:Blaes3304\nMessage Wall:BlaesTheLoreguy\nMessage Wall:BlanquePayge81\nMessage Wall:Blastburn94\nMessage Wall:BlastedFire\nMessage Wall:Bliss000\nMessage Wall:Blizzard36\nMessage Wall:BloatedPelican\nMessage Wall:Blockade3\nMessage Wall:Blood Drunk Gaming\nMessage Wall:Blowdog\nMessage Wall:Blu Razgriz\nMessage Wall:Blubbinio\nMessage Wall:BlueJoeCo\nMessage Wall:BlueMystical\nMessage Wall:Bluebunny507\nMessage Wall:Bluecrash\nMessage Wall:Bluekieran\nMessage Wall:Bluewave256\nMessage Wall:Bo55vxr\nMessage Wall:Bob - Chicken Eater\nMessage Wall:BobbyARandomGuy\nMessage Wall:Boczyslav\nMessage Wall:Boernsi2000\nMessage Wall:Bogeybum\nMessage Wall:Bohric\nMessage Wall:Bohtauri\nMessage Wall:Bolloxim\nMessage Wall:Bompiz\nMessage Wall:Bongerman85\nMessage Wall:Bongorider\nMessage Wall:Boomaya\nMessage Wall:Bordmon\nMessage Wall:Bordric\nMessage Wall:Borgkube\nMessage Wall:BornBadAimer\nMessage Wall:Boronshark\nMessage Wall:BostonBrawler\nMessage Wall:Bounceyhedgehog\nMessage Wall:Brackynews\nMessage Wall:Bragolatch\nMessage Wall:BramSter\nMessage Wall:Brandon Potts\nMessage Wall:Brass79\nMessage Wall:Bravo17\nMessage Wall:Brayzure\nMessage Wall:BreaksWindu\nMessage Wall:Breywood\nMessage Wall:Brimston\nMessage Wall:BritishAdmiral\nMessage Wall:Britishfish\nMessage Wall:BruceWillyyy\nMessage Wall:Brucejr70\nMessage Wall:Bruno3700\nMessage Wall:Brusilov\nMessage Wall:BrutalBird\nMessage Wall:Bruzt\nMessage Wall:Bubbabenali\nMessage Wall:Buggs1a\nMessage Wall:Bughunter13\nMessage Wall:Buliell\nMessage Wall:Bullman88\nMessage Wall:Burninghero\nMessage Wall:Bus Ticket\nMessage Wall:Buster6676\nMessage Wall:BwShadowFang\nMessage Wall:Bwc153\nMessage Wall:Bwoodward\nMessage Wall:C0b4ltl1ghtn1ng\nMessage Wall:CASAGE\nMessage Wall:CC9020\nMessage Wall:CDR Fokker\nMessage Wall:CLuther\nMessage Wall:CMDE Megashot7727\nMessage Wall:CMDR-GreenDemon\nMessage Wall:CMDRAaronParker\nMessage Wall:CMDRAquillus\nMessage Wall:CMDRExorcist\nMessage Wall:CMDRGURU951\nMessage Wall:CMDRGrayArea\nMessage Wall:CMDRJimenez\nMessage Wall:CMDRKennyJacket\nMessage Wall:CMDRMegalos\nMessage Wall:CMDRPaelon\nMessage Wall:CMDRPlater\nMessage Wall:CMDRSalad\nMessage Wall:CMDRTitusValerius\nMessage Wall:CMDRToXik\nMessage Wall:CMDR AL3X\nMessage Wall:CMDR Alex Harrow\nMessage Wall:CMDR Algomatic\nMessage Wall:CMDR Archlich\nMessage Wall:CMDR Berton\nMessage Wall:CMDR DTOM\nMessage Wall:CMDR Danzo Treeface\nMessage Wall:CMDR Deathbringer\nMessage Wall:CMDR DraphtN\nMessage Wall:CMDR EAMONN\nMessage Wall:CMDR Ed Mussie\nMessage Wall:CMDR Eleshenar\nMessage Wall:CMDR Elnar\nMessage Wall:CMDR EpicClown\nMessage Wall:CMDR FISHCANDY\nMessage Wall:CMDR Fallen Heart\nMessage Wall:CMDR Ferroll\nMessage Wall:CMDR Frakie\nMessage Wall:CMDR Furyosa\nMessage Wall:CMDR Good Guy Jones\nMessage Wall:CMDR Grey Wolfe\nMessage Wall:CMDR IWl\nMessage Wall:CMDR Kalperine\nMessage Wall:CMDR Kastor\nMessage Wall:CMDR Kirv Goldblade\nMessage Wall:CMDR Knolan\nMessage Wall:CMDR Kune\nMessage Wall:CMDR Manfredvonrichtoffen\nMessage Wall:CMDR Montague Druitt\nMessage Wall:CMDR Moonprayer\nMessage Wall:CMDR Nashorn\nMessage Wall:CMDR NineSun\nMessage Wall:CMDR Ostey\nMessage Wall:CMDR Owl\nMessage Wall:CMDR PAUSANIAS\nMessage Wall:CMDR Pandishi\nMessage Wall:CMDR Paul Golov\nMessage Wall:CMDR Pittam\nMessage Wall:CMDR Pweeps\nMessage Wall:CMDR RahnKavall\nMessage Wall:CMDR Ramza Fellos\nMessage Wall:CMDR Reaper\nMessage Wall:CMDR RebelUK\nMessage Wall:CMDR Remi Lassalle\nMessage Wall:CMDR Rhye\nMessage Wall:CMDR Shane Lee\nMessage Wall:CMDR Shwinky\nMessage Wall:CMDR Slyve\nMessage Wall:CMDR Sniffy\nMessage Wall:CMDR Soifua\nMessage Wall:CMDR Space Dawg\nMessage Wall:CMDR Spencer B\nMessage Wall:CMDR Stahlwollvieh\nMessage Wall:CMDR StenJay the 8th wonder\nMessage Wall:CMDR Sudoken\nMessage Wall:CMDR Sushin\nMessage Wall:CMDR Tigivo\nMessage Wall:CMDR Treya\nMessage Wall:CMDR Triton Zeal\nMessage Wall:CMDR Trium Augus\nMessage Wall:CMDR Vincentius\nMessage Wall:CMDR WAZENER\nMessage Wall:CMDR Zer0Skill\nMessage Wall:CMDR victordestroyer\nMessage Wall:CMDRbranch\nMessage Wall:CMD Kerpla\nMessage Wall:CMNDRXenon\nMessage Wall:CTFunny\nMessage Wall:Cab13140\nMessage Wall:Cabbage928\nMessage Wall:CakeSlayr\nMessage Wall:CaldariLegend\nMessage Wall:Caleb Blackpaw\nMessage Wall:CallMeHyphen\nMessage Wall:Callummcf0501\nMessage Wall:Callzter\nMessage Wall:Canadianicehole\nMessage Wall:Capirossi\nMessage Wall:CaptAnopheles\nMessage Wall:CaptHank\nMessage Wall:CaptSummers\nMessage Wall:CaptainBarracuda\nMessage Wall:CaptainMeap\nMessage Wall:CaptainTeachBlackBeard\nMessage Wall:Captain Barracuda\nMessage Wall:Captain Breton\nMessage Wall:Captain Tickle\nMessage Wall:Captain rafix\nMessage Wall:Card1974\nMessage Wall:CarryAubriella\nMessage Wall:CarverSindile\nMessage Wall:CashewCraft\nMessage Wall:CastielVII\nMessage Wall:CatalystReality\nMessage Wall:CavaX\nMessage Wall:Cdw129\nMessage Wall:Celarius\nMessage Wall:Celness\nMessage Wall:Cephalos1981\nMessage Wall:Cephalos81\nMessage Wall:Cessoe\nMessage Wall:Chandoss\nMessage Wall:Charizard1596\nMessage Wall:Chiconspiracy\nMessage Wall:Chinagreenelvis\nMessage Wall:Chrisdubbels\nMessage Wall:Chrisnb1\nMessage Wall:Chromfell\nMessage Wall:Chrras\nMessage Wall:ChuckyB\nMessage Wall:Cinoth\nMessage Wall:CirrusFlare\nMessage Wall:City12\nMessage Wall:Ck.ender\nMessage Wall:Clavain\nMessage Wall:Clingo316\nMessage Wall:ClkWrkCuttlfish\nMessage Wall:Clockpuncher\nMessage Wall:Clovengoof\nMessage Wall:Cmd jase\nMessage Wall:Cmdr.musketeer\nMessage Wall:CmdrCleonymus\nMessage Wall:CmdrCrob\nMessage Wall:CmdrFlemming\nMessage Wall:CmdrJonah\nMessage Wall:CmdrKantosKan\nMessage Wall:CmdrLard\nMessage Wall:CmdrMajorWood\nMessage Wall:CmdrNightstorm\nMessage Wall:CmdrRedfox\nMessage Wall:CmdrSigon\nMessage Wall:CmdrTictac\nMessage Wall:Cmdr Double Eagle\nMessage Wall:Cmdr Foamborn\nMessage Wall:Cmdr Gecko Fosho\nMessage Wall:Cmdr Glassfish\nMessage Wall:Cmdr Hans\nMessage Wall:Cmdr Mad Cow\nMessage Wall:Cmdr Myrkur\nMessage Wall:Cmdr SLAYER\nMessage Wall:Cmdr Saii\nMessage Wall:Cmdr Sekiou\nMessage Wall:Cmdr Shocken-Orr\nMessage Wall:Cmdr Tooth\nMessage Wall:Cmdr Velvet Remedy\nMessage Wall:Cmdr Void\nMessage Wall:Cmdr byker\nMessage Wall:Cmdr grazza\nMessage Wall:Cmdr ragveil\nMessage Wall:Cmdr unkownkiller\nMessage Wall:Cmdrmarx\nMessage Wall:Cmdrp\nMessage Wall:Cmdrthefairy\nMessage Wall:Cmdrtimsk\nMessage Wall:Cnschulz\nMessage Wall:Coaster4321\nMessage Wall:Cod killer90210\nMessage Wall:Cofefe\nMessage Wall:CokaCola1\nMessage Wall:ColonelJakes ZA\nMessage Wall:Colonia Jesus\nMessage Wall:CombatSanta\nMessage Wall:ComediNyan\nMessage Wall:Comicsserg\nMessage Wall:CommanderOfACobra\nMessage Wall:Commander Eddington\nMessage Wall:Commander KayDee\nMessage Wall:Commander Pants Man\nMessage Wall:Commander Shit Face\nMessage Wall:Commander Space Caveman\nMessage Wall:Commander cornstalk\nMessage Wall:CommandoCatt\nMessage Wall:Compander\nMessage Wall:Compro01\nMessage Wall:ComradeWinston\nMessage Wall:Conceited1\nMessage Wall:Console.cc\nMessage Wall:Coobra-fduser\nMessage Wall:Cookie das Monster\nMessage Wall:Copperpug\nMessage Wall:Copticc\nMessage Wall:Corelias01\nMessage Wall:Corpsealot\nMessage Wall:Corrigendum\nMessage Wall:CorvoKAttano\nMessage Wall:Corvustech\nMessage Wall:CouncilGuy\nMessage Wall:Coverwatch\nMessage Wall:Cowbert\nMessage Wall:Cpt4grimm\nMessage Wall:CptGrumbles\nMessage Wall:CrafterDave\nMessage Wall:CreepyD\nMessage Wall:Creepyhobo101\nMessage Wall:Crimsonphoenixca\nMessage Wall:Cristianoferr\nMessage Wall:Crixomix\nMessage Wall:Crolis1\nMessage Wall:CrossCoffee\nMessage Wall:Cryptark\nMessage Wall:CrystallizedSoul\nMessage Wall:Csucsok\nMessage Wall:Ctlarson\nMessage Wall:Cubusaddendum\nMessage Wall:CursedUnderwear\nMessage Wall:CyberAngel82\nMessage Wall:CyberKP\nMessage Wall:CyberTX\nMessage Wall:Cybershaman\nMessage Wall:Cybrpnkrpg\nMessage Wall:Cyne01\nMessage Wall:Cynteara\nMessage Wall:Cypherpunks\nMessage Wall:Cyrusdexter\nMessage Wall:Cytheria01\nMessage Wall:Cyzair\nMessage Wall:D33rgod\nMessage Wall:DHaze121\nMessage Wall:DJScias\nMessage Wall:DLambeau\nMessage Wall:DNYI\nMessage Wall:DRxArchangelxDR\nMessage Wall:Daddychew\nMessage Wall:Daemoniak\nMessage Wall:Daenuisvar\nMessage Wall:Daftpunk150466\nMessage Wall:Dagerun\nMessage Wall:Dagnarius\nMessage Wall:Dagoonx\nMessage Wall:Daishi424\nMessage Wall:Dak47922\nMessage Wall:DakotaTheWolf\nMessage Wall:Dan-Erik\nMessage Wall:DanL 216\nMessage Wall:Dangerousbuzz934\nMessage Wall:DanielKuk\nMessage Wall:DanielZwolf\nMessage Wall:Dankuk\nMessage Wall:Dapwnanator\nMessage Wall:Darck vador\nMessage Wall:DarkDanger\nMessage Wall:DarkLive\nMessage Wall:DarkSlayerKnight\nMessage Wall:DarkWidow\nMessage Wall:Darkkillex\nMessage Wall:Darkrai1276\nMessage Wall:Darrenjohngrey\nMessage Wall:DarthWall275\nMessage Wall:DarthWonko\nMessage Wall:Darth Raijiin\nMessage Wall:Darth Snowie\nMessage Wall:Daspisch\nMessage Wall:Datan0de\nMessage Wall:DaveLister22\nMessage Wall:Daverex1992\nMessage Wall:David Kieser\nMessage Wall:Davidl rt06\nMessage Wall:Davinchavin\nMessage Wall:Dazinablender\nMessage Wall:Dbeachy11\nMessage Wall:Dcseal\nMessage Wall:DeMangler\nMessage Wall:DeRanGed De\nMessage Wall:Deakie\nMessage Wall:DearKingSombra\nMessage Wall:Deathparcito\nMessage Wall:Dedblu\nMessage Wall:Defender6213\nMessage Wall:DefenderX1\nMessage Wall:Defranks\nMessage Wall:Deidara1113\nMessage Wall:Deimos2k20\nMessage Wall:DejayRezme\nMessage Wall:DeltaEchoLima\nMessage Wall:DemiserofD\nMessage Wall:Denishowe\nMessage Wall:Denisjackman\nMessage Wall:DerFlob\nMessage Wall:Derthek\nMessage Wall:Desatio\nMessage Wall:Descrasnezul\nMessage Wall:Destikahr1\nMessage Wall:Detlas Legacy\nMessage Wall:Deusjensen\nMessage Wall:DevaKitty\nMessage Wall:Devantejah\nMessage Wall:Deviyue\nMessage Wall:DexLuther\nMessage Wall:DexSK\nMessage Wall:Dexcuracy\nMessage Wall:Dfault988998\nMessage Wall:Dguzmanalk\nMessage Wall:Dha12oks\nMessage Wall:Diabetic Doggo\nMessage Wall:Diamondfast\nMessage Wall:Dicando220833BR\nMessage Wall:Diegovilar\nMessage Wall:Digistruct0r\nMessage Wall:Digletteer\nMessage Wall:Dikivan2000\nMessage Wall:Dimmu1313\nMessage Wall:Dinee\nMessage Wall:Direwolf2496\nMessage Wall:Disulfiram\nMessage Wall:Djadjok\nMessage Wall:Djdahav\nMessage Wall:Dmitri Korolev\nMessage Wall:Dneif\nMessage Wall:Dniwe koreec\nMessage Wall:DobrijZmej\nMessage Wall:DoctorEvil CZ\nMessage Wall:Doctor Brohoof\nMessage Wall:Doctor Demento\nMessage Wall:Doctor Introvertsius\nMessage Wall:DofD\nMessage Wall:Doktor Smyth\nMessage Wall:Dombal\nMessage Wall:DominateEye\nMessage Wall:Don Alphonso\nMessage Wall:Dorfski\nMessage Wall:Dr. Clayton Forrestor\nMessage Wall:DrBarbar\nMessage Wall:DrKayRoss\nMessage Wall:DrProtuberanec\nMessage Wall:Dr Pillman\nMessage Wall:Draco25240\nMessage Wall:Draco84oz\nMessage Wall:Draconigena16\nMessage Wall:Dragon Arcadia\nMessage Wall:Dragonswagin\nMessage Wall:Dragoon346\nMessage Wall:Drakhor\nMessage Wall:Dratir-fduser\nMessage Wall:Drax658\nMessage Wall:Drayath\nMessage Wall:Drayviss\nMessage Wall:Drbobo\nMessage Wall:Dread-Fox\nMessage Wall:Dread2k\nMessage Wall:DreadZed\nMessage Wall:Dreadmetis\nMessage Wall:Dreadric\nMessage Wall:Drenidor\nMessage Wall:Drewj1300\nMessage Wall:Drewwagar\nMessage Wall:Driku\nMessage Wall:Droid8Apple\nMessage Wall:Droxy\nMessage Wall:Drscandalous\nMessage Wall:Dsnt02518\nMessage Wall:Dukeofbattle\nMessage Wall:Dunrankin\nMessage Wall:Dusk118\nMessage Wall:Dust Driver\nMessage Wall:DwnRghtBlak\nMessage Wall:Dylan Coates\nMessage Wall:Dyotan\nMessage Wall:Dyppo\nMessage Wall:Dyse Flux\nMessage Wall:Dzarafata\nMessage Wall:EDPirate\nMessage Wall:EDSM\nMessage Wall:ELITEUnkownkiller\nMessage Wall:ENVR\nMessage Wall:EPiK DR0PPER\nMessage Wall:ETSDRAGON\nMessage Wall:EboClintontabi\nMessage Wall:Echo890\nMessage Wall:EchoBladeMC\nMessage Wall:Eckee\nMessage Wall:Eddie21k\nMessage Wall:Eddpayne\nMessage Wall:Eddyfb\nMessage Wall:Edgreaves\nMessage Wall:EdoLevy\nMessage Wall:EekaDroid\nMessage Wall:Eeryyxx23\nMessage Wall:Effingbrian\nMessage Wall:Egovich\nMessage Wall:EgrAndrew\nMessage Wall:EhTAmiD\nMessage Wall:Ei8htx\nMessage Wall:EightHook37\nMessage Wall:Eisfunke\nMessage Wall:Ekholbrook\nMessage Wall:Elbarto331\nMessage Wall:Electricnacho\nMessage Wall:Elfener99\nMessage Wall:Elite:reporter\nMessage Wall:EliteAdvisor\nMessage Wall:EliteTheLand\nMessage Wall:EliteWikiMan\nMessage Wall:Elite 73\nMessage Wall:Elite Credits\nMessage Wall:Elite fan 73\nMessage Wall:Elitewikia\nMessage Wall:ElliottB1\nMessage Wall:Elterchet\nMessage Wall:Elvisdumbledore\nMessage Wall:Emailformygames\nMessage Wall:Emhilradim\nMessage Wall:Emptylord\nMessage Wall:EnderCraftFinlay\nMessage Wall:EnigmaNL\nMessage Wall:Entdude\nMessage Wall:Enweelh\nMessage Wall:Eoraptorur\nMessage Wall:Ephymis\nMessage Wall:EpicMhyre\nMessage Wall:EpicnessUnleashed\nMessage Wall:Epoch365\nMessage Wall:Eric L8s\nMessage Wall:Erikrpm\nMessage Wall:Erlaed\nMessage Wall:Erwgd\nMessage Wall:Esesci\nMessage Wall:Esk 7\nMessage Wall:EssentialNPC\nMessage Wall:EstrelaDoTipoF48\nMessage Wall:Ethribin\nMessage Wall:Ethzero77\nMessage Wall:Euan The Goid Killer\nMessage Wall:Evelas\nMessage Wall:Evittalex\nMessage Wall:Ewalden\nMessage Wall:Ewex\nMessage Wall:ExTenor\nMessage Wall:Exaemo\nMessage Wall:Excalibuh\nMessage Wall:Exigeous\nMessage Wall:Exitwound 45\nMessage Wall:Exodus83\nMessage Wall:Exofi\nMessage Wall:Externalpower43\nMessage Wall:Extremofire\nMessage Wall:Ezri778\nMessage Wall:FEUERBACH\nMessage Wall:FLUX2226\nMessage Wall:FR0D0sam\nMessage Wall:FW Ludicer\nMessage Wall:Facehurt\nMessage Wall:Faceman667\nMessage Wall:FailRail hero\nMessage Wall:Falita\nMessage Wall:FallShortOfTheTruth\nMessage Wall:Famba\nMessage Wall:Fanghur Rahl\nMessage Wall:Fapiko\nMessage Wall:Farcaller\nMessage Wall:Farin Cross\nMessage Wall:Faroutmat\nMessage Wall:Fat chucky\nMessage Wall:Fdevareliars\nMessage Wall:Fegazeus\nMessage Wall:Feiercrack\nMessage Wall:FelizR\nMessage Wall:Fendalton\nMessage Wall:Fernandogod12\nMessage Wall:Ferret141\nMessage Wall:Ferret Bueller\nMessage Wall:FerricFoxide\nMessage Wall:Ferritt\nMessage Wall:Ffuschini\nMessage Wall:FireInABottle5\nMessage Wall:FireZenesis\nMessage Wall:FishTank\nMessage Wall:Fixxel\nMessage Wall:Flaicher\nMessage Wall:FlashDeviant\nMessage Wall:Fleecer\nMessage Wall:Flerble\nMessage Wall:Fletcher32\nMessage Wall:FlightDeck\nMessage Wall:Flutterhawk\nMessage Wall:Flyingtiger172\nMessage Wall:Fokkusu88\nMessage Wall:Foldlet\nMessage Wall:Forbiddenlake\nMessage Wall:Forcesinger\nMessage Wall:Forgottenlord\nMessage Wall:Forkinator\nMessage Wall:Foundryguy\nMessage Wall:Fozza\nMessage Wall:Fraggle\nMessage Wall:Freakishwizard\nMessage Wall:Freedom4556\nMessage Wall:Freelancer105\nMessage Wall:Freetrack\nMessage Wall:Frexie\nMessage Wall:Frogben\nMessage Wall:Fronink1980\nMessage Wall:FrrVegeta\nMessage Wall:Frungi\nMessage Wall:Fuhsaz\nMessage Wall:Fw190a8\nMessage Wall:Fyah88\nMessage Wall:GALDART\nMessage Wall:GEONEgaming\nMessage Wall:GMoney132\nMessage Wall:GOL127\nMessage Wall:GZulu\nMessage Wall:Gabriel Lane\nMessage Wall:Gadaha\nMessage Wall:GaidinBDJ\nMessage Wall:Gaius0\nMessage Wall:GaleTheWhale\nMessage Wall:Gametunes\nMessage Wall:GamezombieCZ\nMessage Wall:Gammamudo\nMessage Wall:Gandalfnog\nMessage Wall:GarGwill\nMessage Wall:Gark2001\nMessage Wall:Garlenife\nMessage Wall:GaryxGaming\nMessage Wall:Gattaca67\nMessage Wall:Gaurdianaq\nMessage Wall:Ged UK\nMessage Wall:Geley\nMessage Wall:GeneralBrae\nMessage Wall:General 1\nMessage Wall:Geriadd\nMessage Wall:Gert Nielsen\nMessage Wall:Ginrikuzuma\nMessage Wall:Gitman\nMessage Wall:GitouttahereStalker\nMessage Wall:Gjallarhorn the IceWing\nMessage Wall:Gle353\nMessage Wall:Glewtek\nMessage Wall:Gmurante\nMessage Wall:Gobbibomb\nMessage Wall:Gobshiite\nMessage Wall:Gods of Odds\nMessage Wall:Gofast1993\nMessage Wall:GoinXwellElite\nMessage Wall:Goldsy\nMessage Wall:GombariNoah\nMessage Wall:Goose4291\nMessage Wall:Gorfic\nMessage Wall:GramNam\nMessage Wall:Grandtheftautoma\nMessage Wall:GreenReaper\nMessage Wall:Greenrabbidrabbit\nMessage Wall:Greentigerdragon\nMessage Wall:Gregorthebigmac\nMessage Wall:Grendona\nMessage Wall:GreyJackal\nMessage Wall:Grif2142\nMessage Wall:Grimmtooth\nMessage Wall:Grinbringer\nMessage Wall:Grisbane\nMessage Wall:GrnTigr\nMessage Wall:Groffel\nMessage Wall:Groyolo\nMessage Wall:Gruff46\nMessage Wall:Gryper\nMessage Wall:Gryphon\nMessage Wall:Guardian1128\nMessage Wall:GuardianSong\nMessage Wall:Guerreiroanfibio\nMessage Wall:Guillaume Drolet\nMessage Wall:GunmadMadman\nMessage Wall:Gunny1\nMessage Wall:GusHaines\nMessage Wall:Guvenor\nMessage Wall:Guyver137\nMessage Wall:Gökay Atakan\nMessage Wall:H.hasenack\nMessage Wall:H0079jnicle0\nMessage Wall:H3g3m0n\nMessage Wall:HCIJess\nMessage Wall:HShot\nMessage Wall:HTarchinski\nMessage Wall:HX Alpha\nMessage Wall:Hadrian Augustus Duval\nMessage Wall:Hairy Dude\nMessage Wall:Hairyross\nMessage Wall:Hal foxharken\nMessage Wall:Halfbax328\nMessage Wall:Halvor-olsen\nMessage Wall:Hammersmith13\nMessage Wall:HammyTV\nMessage Wall:HamnavoePer\nMessage Wall:Hantif\nMessage Wall:Haolih\nMessage Wall:Harbinger73\nMessage Wall:Harbinger91\nMessage Wall:Hardmoor\nMessage Wall:HarryHenryGebel\nMessage Wall:Hawki\nMessage Wall:Hazmat616\nMessage Wall:HazzmangoVEVO\nMessage Wall:Heavy Johnson\nMessage Wall:Heavy runner\nMessage Wall:Heckatoo\nMessage Wall:HeckobA\nMessage Wall:Heckuvahydra\nMessage Wall:Heizena\nMessage Wall:Hekkaryk\nMessage Wall:Hellfire85\nMessage Wall:Hellovart\nMessage Wall:Hellscout666\nMessage Wall:Hemophile\nMessage Wall:Henhen2\nMessage Wall:Heranion\nMessage Wall:Herdox\nMessage Wall:Herman2000\nMessage Wall:Herzbube\nMessage Wall:Hexcaliber\nMessage Wall:Himpundulu\nMessage Wall:Himurajubei\nMessage Wall:Hoddd9000\nMessage Wall:Hodxer\nMessage Wall:Holl0918\nMessage Wall:Holland Novak\nMessage Wall:HolovaR\nMessage Wall:Hoodwynk\nMessage Wall:HoppingGrass\nMessage Wall:Hoppizilla\nMessage Wall:Horakhty07\nMessage Wall:HoranIsBae\nMessage Wall:Hordwon\nMessage Wall:Howmanymexicans\nMessage Wall:Hubert Eliphas\nMessage Wall:Hubsyn\nMessage Wall:Huin\nMessage Wall:Humani generis\nMessage Wall:Hunter24123\nMessage Wall:Hyena92\nMessage Wall:Hygh Tek\nMessage Wall:Hylky\nMessage Wall:Hyperfiree\nMessage Wall:IAmThePilot\nMessage Wall:IGRiM R3AP3R\nMessage Wall:IMaSsMaYhEmI\nMessage Wall:IPeer\nMessage Wall:I Sith\nMessage Wall:Iajret\nMessage Wall:IamSKYWOLF\nMessage Wall:Iamwarhead\nMessage Wall:Ian Gragos\nMessage Wall:IceDroid06\nMessage Wall:IceboundMetal\nMessage Wall:Icier\nMessage Wall:IckieStickieMick\nMessage Wall:Icpmcp\nMessage Wall:Idealcompany\nMessage Wall:Idonolis\nMessage Wall:Ilikepizza1275\nMessage Wall:ImSoBored246\nMessage Wall:Imm3rsion\nMessage Wall:ImmortalGhost\nMessage Wall:Inanis Itineris\nMessage Wall:Inccoming\nMessage Wall:Incrognito\nMessage Wall:InfamousMyzt\nMessage Wall:Infinito77\nMessage Wall:Inkmmo\nMessage Wall:Innokentiytheparrot\nMessage Wall:Inoi Troriak\nMessage Wall:Inojakal\nMessage Wall:Intelfx\nMessage Wall:Interstitial\nMessage Wall:Invisible Robot Fish 2.0\nMessage Wall:Ion070\nMessage Wall:IrCelt\nMessage Wall:Iridium Nova\nMessage Wall:Irisa Nyira\nMessage Wall:Isaac Heinleinclarke\nMessage Wall:Ishmat\nMessage Wall:IsilwenStardust\nMessage Wall:Istrul\nMessage Wall:Itchü\nMessage Wall:ItzNikkitty\nMessage Wall:IvKon\nMessage Wall:Iznato\nMessage Wall:J0nTK\nMessage Wall:JAFFO70\nMessage Wall:JGCaymon\nMessage Wall:JGagada\nMessage Wall:JP69713Bson\nMessage Wall:JQuery34\nMessage Wall:JWSmythe\nMessage Wall:Jabossu\nMessage Wall:Jace Hawks\nMessage Wall:Jack0088\nMessage Wall:JackSamMarkTim\nMessage Wall:Jack Shaftoe\nMessage Wall:JackassJames\nMessage Wall:Jacklul\nMessage Wall:Jackofallgods\nMessage Wall:Jaess\nMessage Wall:Jaiotu\nMessage Wall:JakeGill\nMessage Wall:Jakubuz\nMessage Wall:Jamania\nMessage Wall:JamesF0790\nMessage Wall:James Razor\nMessage Wall:JamieInRed\nMessage Wall:Jamminok\nMessage Wall:JansterLE\nMessage Wall:JaroslavPe\nMessage Wall:JaskorWF\nMessage Wall:JaxRock\nMessage Wall:Jay-Dee-76\nMessage Wall:JayStopMotionAndMore\nMessage Wall:JayZedKay\nMessage Wall:Jaybird3326\nMessage Wall:JayceFox\nMessage Wall:Jayden42\nMessage Wall:Jayeffaar\nMessage Wall:JazHaz\nMessage Wall:Jedesis\nMessage Wall:Jeffealex\nMessage Wall:Jefzwang-fduser\nMessage Wall:Jeoffman\nMessage Wall:Jetdude\nMessage Wall:Jetfoxx\nMessage Wall:Jibsman\nMessage Wall:Jijonbreaker1\nMessage Wall:JimSan\nMessage Wall:Jim Stjerne\nMessage Wall:Jimmy396\nMessage Wall:Jimmy Leeroy\nMessage Wall:Jitsuke The Cat\nMessage Wall:Jj003333\nMessage Wall:Jlakshan\nMessage Wall:Jntq98\nMessage Wall:Johaunna\nMessage Wall:JohnNL1982\nMessage Wall:JohnStabler\nMessage Wall:John Guevara\nMessage Wall:Johnliem\nMessage Wall:Johns1307\nMessage Wall:Jokonnoh\nMessage Wall:JonJennings\nMessage Wall:JoseffZerafa\nMessage Wall:Joyce143katsuma\nMessage Wall:JoyeuseGlorieuse\nMessage Wall:Jriwanek\nMessage Wall:Jstnbcn\nMessage Wall:Jtrevillion\nMessage Wall:Juan.farias.88344\nMessage Wall:Judemagog\nMessage Wall:Julian Korolev\nMessage Wall:Junekoj\nMessage Wall:Juper0\nMessage Wall:Justified90\nMessage Wall:Justin.mccown.182\nMessage Wall:Jvideo121\nMessage Wall:Jwparker1\nMessage Wall:K0skid\nMessage Wall:KEEREN\nMessage Wall:KKona Elite\nMessage Wall:KUBE.exe\nMessage Wall:KYLEHARPER1500\nMessage Wall:KZ.FREW\nMessage Wall:Kaa-ching\nMessage Wall:Kablke\nMessage Wall:Kabraloth\nMessage Wall:Kaeinar\nMessage Wall:Kai-dan Novarek\nMessage Wall:Kaidan Ysles\nMessage Wall:KaiserJagerI\nMessage Wall:KaiserKolovos\nMessage Wall:Kaleb Brooks\nMessage Wall:Kalenchoe\nMessage Wall:Kalko SK\nMessage Wall:Kaloonzu\nMessage Wall:Kanthes\nMessage Wall:Kantraah\nMessage Wall:Kapitein Dree\nMessage Wall:Karrdio\nMessage Wall:Karth32\nMessage Wall:KassidyRawr\nMessage Wall:Kaulnagunae\nMessage Wall:Kayahr\nMessage Wall:KaylieStarspear\nMessage Wall:Kaythan\nMessage Wall:Kaytrox\nMessage Wall:Keanukeen\nMessage Wall:Keegandalf\nMessage Wall:Keelhauler98\nMessage Wall:Keeval\nMessage Wall:Keline Fraser\nMessage Wall:Keotik\nMessage Wall:Kepler68\nMessage Wall:Kerbonaut\nMessage Wall:Kerenski667\nMessage Wall:Kersthaas\nMessage Wall:Kettless\nMessage Wall:KevinMcScrooge\nMessage Wall:Kevinmook\nMessage Wall:Kezika\nMessage Wall:Khamar\nMessage Wall:KickRAzz\nMessage Wall:Kida155\nMessage Wall:Kidakins\nMessage Wall:Kiestaking\nMessage Wall:Kikbow\nMessage Wall:Killja Witta\nMessage Wall:KingKeepo\nMessage Wall:KingRider\nMessage Wall:Kingdavis45\nMessage Wall:Kingpin12345\nMessage Wall:Kingsmasher678\nMessage Wall:Kipkuligan\nMessage Wall:Kira0rg\nMessage Wall:Kirk68\nMessage Wall:Kirky007\nMessage Wall:Kiryu-DSeraph\nMessage Wall:Kittenpox\nMessage Wall:Kiyos\nMessage Wall:Kman314II\nMessage Wall:Knabber\nMessage Wall:Knights4jesus\nMessage Wall:KnotMix\nMessage Wall:KockaAdmiralac\nMessage Wall:Komotz\nMessage Wall:Kookas\nMessage Wall:KopiG\nMessage Wall:KordianK\nMessage Wall:KormaKing\nMessage Wall:Kossilar\nMessage Wall:Kranitoko\nMessage Wall:Krooolll\nMessage Wall:Krystan\nMessage Wall:KrytoThenseld\nMessage Wall:KubeKing\nMessage Wall:Kudach\nMessage Wall:Kuhgene\nMessage Wall:Kumorifox\nMessage Wall:Kuzumby\nMessage Wall:Kvasirr\nMessage Wall:Kwalish\nMessage Wall:Kyouko Bot\nMessage Wall:Kyrieviviana58\nMessage Wall:Kyryptos\nMessage Wall:LBoy447\nMessage Wall:LSXpoweredcouch\nMessage Wall:LT3ShadowBolt\nMessage Wall:LaShreader\nMessage Wall:Laceynarcissus\nMessage Wall:LadyDarkWolf\nMessage Wall:LambChop82\nMessage Wall:Landomatic\nMessage Wall:Laprasfox\nMessage Wall:Larkfeast\nMessage Wall:Laserwolf7\nMessage Wall:Lasky's Diary\nMessage Wall:Laundry Machine\nMessage Wall:Lauren Darkmore\nMessage Wall:LaurenceR\nMessage Wall:LawaBoy\nMessage Wall:Lazahman\nMessage Wall:Lcf80\nMessage Wall:LeKola2\nMessage Wall:LeMort121\nMessage Wall:Leavatrex\nMessage Wall:Leavism\nMessage Wall:LeerySquid13\nMessage Wall:Leftaf\nMessage Wall:LegendaryAce 73\nMessage Wall:Legit spartan\nMessage Wall:Lelouch Di Britannia\nMessage Wall:Lennysmeme\nMessage Wall:Leo McCoy\nMessage Wall:Leonick\nMessage Wall:Letho2469\nMessage Wall:Levian Grea\nMessage Wall:Lewisse\nMessage Wall:Light Fingers\nMessage Wall:Lilstinger\nMessage Wall:Lily Peet\nMessage Wall:Limoncello Lizard\nMessage Wall:Linkle10112\nMessage Wall:LionWalker\nMessage Wall:Lionelmessisxmn\nMessage Wall:Liperium\nMessage Wall:LiveseyMD\nMessage Wall:Livesiren\nMessage Wall:Lmxar\nMessage Wall:LogicMage\nMessage Wall:LogicMage3\nMessage Wall:Logyboy77\nMessage Wall:Loke Khan Torgou of Rhun\nMessage Wall:Lokorazor\nMessage Wall:Loliboli8\nMessage Wall:Lolife1\nMessage Wall:Lone Hunter\nMessage Wall:Lord Nerdicus\nMessage Wall:Lord Setesh\nMessage Wall:LostGamer76\nMessage Wall:Lou209\nMessage Wall:Louie2\nMessage Wall:Loumil4\nMessage Wall:LucasHile\nMessage Wall:Lucasdigital\nMessage Wall:Lucid Asimov\nMessage Wall:Ludicrusnb\nMessage Wall:Ludwegg\nMessage Wall:Ludzikz\nMessage Wall:Lufia22\nMessage Wall:Lumiria Duval\nMessage Wall:Lurkertalen\nMessage Wall:Lymark\nMessage Wall:Lynata\nMessage Wall:Lynk,yourlord\nMessage Wall:Lynk1973\nMessage Wall:MADmanOne\nMessage Wall:MBISOK\nMessage Wall:MChrome\nMessage Wall:MERLINDIX\nMessage Wall:MHE111\nMessage Wall:MJR1133\nMessage Wall:MONTItheRed\nMessage Wall:MRNasher\nMessage Wall:MR Allianz Demonceau\nMessage Wall:MSSQ\nMessage Wall:Maarduuk\nMessage Wall:Macros Black\nMessage Wall:MadMalkie\nMessage Wall:Mad Martha\nMessage Wall:Maddavo\nMessage Wall:Maeglin73\nMessage Wall:MafooUK\nMessage Wall:MagicPuncher\nMessage Wall:Magictrip\nMessage Wall:Magnificent Beard\nMessage Wall:Majinvash\nMessage Wall:Majkl578\nMessage Wall:Makinote\nMessage Wall:Malakkai69\nMessage Wall:Malix82\nMessage Wall:Mandrac\nMessage Wall:Mannie Davis\nMessage Wall:Manwolf12\nMessage Wall:Maplesquid\nMessage Wall:Marblebarbles\nMessage Wall:MarcusBritish\nMessage Wall:Marcus gord\nMessage Wall:MarikZero\nMessage Wall:Mariusz695\nMessage Wall:Markasoftware\nMessage Wall:MarksMan12345\nMessage Wall:Marquezz\nMessage Wall:Mars Yurip\nMessage Wall:Martinjgde\nMessage Wall:Match Attax19\nMessage Wall:Matty Gamer\nMessage Wall:MaxWolff\nMessage Wall:Maxhead79\nMessage Wall:MaximVonValentine\nMessage Wall:Maxipack13\nMessage Wall:Maxodonis\nMessage Wall:Maxwell Hauser\nMessage Wall:MayW-DigiMay\nMessage Wall:McClunkey\nMessage Wall:Mcdimm\nMessage Wall:Mebebarney\nMessage Wall:MechanicPluto24\nMessage Wall:MeddlesomeDic\nMessage Wall:MediocrePigeon\nMessage Wall:Meg81\nMessage Wall:MegaBZerK\nMessage Wall:MellokUA\nMessage Wall:Memory.of.a.dream\nMessage Wall:Mendelt\nMessage Wall:Menroth\nMessage Wall:MeowMeowNyan\nMessage Wall:MercurianVI\nMessage Wall:Messixieuquay\nMessage Wall:Metabo\nMessage Wall:Metael\nMessage Wall:Mg010a3406\nMessage Wall:Mgiuffrida\nMessage Wall:Mgramm\nMessage Wall:MiasmaticMouse\nMessage Wall:Michael-B347\nMessage Wall:Michaelangelo007\nMessage Wall:Michal1717\nMessage Wall:MickalyaSchmidt\nMessage Wall:Micromagos\nMessage Wall:Midnight1138\nMessage Wall:MidnightWyvern\nMessage Wall:Mihawk Moha\nMessage Wall:Mikarara\nMessage Wall:Miki99999\nMessage Wall:Mikuana\nMessage Wall:Miles1317\nMessage Wall:MinecrackTyler\nMessage Wall:MiniPax\nMessage Wall:MinnesotaLotion\nMessage Wall:Mischievousflea\nMessage Wall:MisterFacepalm\nMessage Wall:MisterFy\nMessage Wall:Mitchell YT\nMessage Wall:Mitchz95\nMessage Wall:Mitleidspender\nMessage Wall:Mknote\nMessage Wall:Mob1leN1nja\nMessage Wall:Mobibu\nMessage Wall:ModnMaster\nMessage Wall:MoebiusLive\nMessage Wall:MographMark\nMessage Wall:Moleculor\nMessage Wall:Mondrak\nMessage Wall:Monkeytommo\nMessage Wall:Monoman567\nMessage Wall:Montcore\nMessage Wall:MoonmanX22\nMessage Wall:Mordredeon\nMessage Wall:Morgo the monkeygod\nMessage Wall:Morwo01\nMessage Wall:MountainMan2786\nMessage Wall:MovGP0\nMessage Wall:Mowge\nMessage Wall:MozzyViorla\nMessage Wall:Mr. Kobayashi\nMessage Wall:MrBl4eP4nda\nMessage Wall:MrClin\nMessage Wall:MrFaert\nMessage Wall:MrFoxyCracker\nMessage Wall:MrJiggyDancer\nMessage Wall:MrOz59\nMessage Wall:MrWackyGuy\nMessage Wall:Mr Edison Trent\nMessage Wall:Mr Modem\nMessage Wall:Mr Sidebyrnes\nMessage Wall:Mr Taz\nMessage Wall:Mrfruitcups\nMessage Wall:Mrs!lk\nMessage Wall:Mrsilk13642\nMessage Wall:Mrtouchngo\nMessage Wall:Muerthogari\nMessage Wall:Mujaki\nMessage Wall:Mumuv\nMessage Wall:Murphy2020\nMessage Wall:Music Luke\nMessage Wall:Musketeer.elite\nMessage Wall:Mwerle\nMessage Wall:MxCherryBlue\nMessage Wall:Mylife98\nMessage Wall:Myphammiraso\nMessage Wall:MysticalArchAngel\nMessage Wall:Mythic Centaur\nMessage Wall:NGCT\nMessage Wall:NORKIE3221\nMessage Wall:NULUSIOS\nMessage Wall:N skid11\nMessage Wall:Nagydeak\nMessage Wall:Namelessclone01\nMessage Wall:Namiellis68\nMessage Wall:Nanite2000\nMessage Wall:Napther\nMessage Wall:Nashaan\nMessage Wall:Nathanmnm\nMessage Wall:NatsumeAshikaga\nMessage Wall:Navigator80ITA\nMessage Wall:Nazder\nMessage Wall:Neizir\nMessage Wall:Neker07\nMessage Wall:Nekonax\nMessage Wall:Nelkerak\nMessage Wall:NeoGeoSin\nMessage Wall:Neofactor\nMessage Wall:Neojack\nMessage Wall:Neowave\nMessage Wall:NeoxRave\nMessage Wall:Netan MalDoran\nMessage Wall:Nethaufer\nMessage Wall:Netheniel\nMessage Wall:Netston\nMessage Wall:NevanNedall\nMessage Wall:New Model 15\nMessage Wall:Newo15\nMessage Wall:Nextmhgdanger\nMessage Wall:Niapet\nMessage Wall:Niatov\nMessage Wall:Nibiki\nMessage Wall:NickerNanners\nMessage Wall:Nicomicho\nMessage Wall:Nicou12313\nMessage Wall:Night Wing Zero\nMessage Wall:Nightcat666\nMessage Wall:Nikolai Albinus\nMessage Wall:Nishi1337\nMessage Wall:NiteLynr\nMessage Wall:Nixxter 208\nMessage Wall:NoFoolLikeOne\nMessage Wall:NoMeansNoED\nMessage Wall:No Regret\nMessage Wall:Noahtheyeeter\nMessage Wall:Noekemi\nMessage Wall:Nolfin\nMessage Wall:Nominix\nMessage Wall:Nonchip\nMessage Wall:Nondidjos\nMessage Wall:Nop277\nMessage Wall:Nordavind\nMessage Wall:Norlin\nMessage Wall:Northpin\nMessage Wall:Noruzenchi86\nMessage Wall:NotThatMadCat\nMessage Wall:Novalkar\nMessage Wall:Nox and Sox\nMessage Wall:Nralbers\nMessage Wall:Nsara\nMessage Wall:NuclearMissile7\nMessage Wall:Nujalik\nMessage Wall:Nukeajs\nMessage Wall:Nukeguard\nMessage Wall:Nuljones\nMessage Wall:Numerlor\nMessage Wall:Nutsynator\nMessage Wall:Nuvey\nMessage Wall:Nvmb3rth30ry\nMessage Wall:Nyrany\nMessage Wall:Nyrexis\nMessage Wall:Nytrox1\nMessage Wall:Nøni\nMessage Wall:OGR Nova\nMessage Wall:OOZ662\nMessage Wall:Oathmaster1st\nMessage Wall:Obij3ff\nMessage Wall:Ocramavaf\nMessage Wall:Oddaaron00\nMessage Wall:Odysseus3301\nMessage Wall:Off the Rails\nMessage Wall:OldMadDawg\nMessage Wall:Olivia Vespera\nMessage Wall:Omber\nMessage Wall:Omightyone\nMessage Wall:OneViGOR\nMessage Wall:Onevorah-fduser\nMessage Wall:OnyxVovin\nMessage Wall:Oogaboogston\nMessage Wall:Orchestrator\nMessage Wall:OrderOfPhobos\nMessage Wall:Orgoon\nMessage Wall:Orin Snider\nMessage Wall:OrionKaelin\nMessage Wall:OrionandAries06\nMessage Wall:Orvidius-fduser\nMessage Wall:Oss133\nMessage Wall:Ostoff\nMessage Wall:Otis B.\nMessage Wall:Ottone82\nMessage Wall:Ouen\nMessage Wall:Outsider7724\nMessage Wall:Overcon\nMessage Wall:Ozrix\nMessage Wall:PSR1974\nMessage Wall:Pa3s\nMessage Wall:Panzertard\nMessage Wall:Papercrane1001\nMessage Wall:Parpyduck\nMessage Wall:Pascalcph-fduser\nMessage Wall:Pasmans23\nMessage Wall:PasteteDoeniel\nMessage Wall:Patrone2012\nMessage Wall:Paul Morrison\nMessage Wall:Pavel Seagull\nMessage Wall:PavoCristatus701\nMessage Wall:Pawprintjj\nMessage Wall:Peeper Yeeter\nMessage Wall:Pegzy\nMessage Wall:Penthux\nMessage Wall:Perfect Vyctory\nMessage Wall:PeterisKrisjanis\nMessage Wall:Peteyboy1981\nMessage Wall:Petomatick\nMessage Wall:Petrosa\nMessage Wall:Phantagor\nMessage Wall:Pharku\nMessage Wall:Pharuan Undearth\nMessage Wall:PhasmaFelis1\nMessage Wall:Phatpanz\nMessage Wall:Phazon Xenomorph\nMessage Wall:Phenix19\nMessage Wall:Phenom D\nMessage Wall:PhiZeroth\nMessage Wall:PhilHibbs\nMessage Wall:Phil O Dendron\nMessage Wall:Philo Wintercoat\nMessage Wall:Phineas\nMessage Wall:Phmalu\nMessage Wall:Phoebiousz\nMessage Wall:Phoenix316\nMessage Wall:Phoenixfire2001\nMessage Wall:Phreedom\nMessage Wall:PianoWizzy\nMessage Wall:Pierschip\nMessage Wall:PijkaCZ\nMessage Wall:Pilot 117\nMessage Wall:Pindab0ter-fduser\nMessage Wall:Pinkishu\nMessage Wall:Pio387\nMessage Wall:PirateKing42\nMessage Wall:Pirits\nMessage Wall:Pirow\nMessage Wall:Pitricko\nMessage Wall:Pitulek\nMessage Wall:Pixel Bandits\nMessage Wall:Pixelgamer7\nMessage Wall:Pjaj\nMessage Wall:PlanetVyctory\nMessage Wall:Planitis\nMessage Wall:Plasma1119\nMessage Wall:Player1isready\nMessage Wall:Player863\nMessage Wall:Pobert69\nMessage Wall:Poetika\nMessage Wall:Porkyworky\nMessage Wall:Portagame\nMessage Wall:Poshblobfish\nMessage Wall:Positronic Tomato\nMessage Wall:Potkola\nMessage Wall:Poubelle\nMessage Wall:Poulpe38000\nMessage Wall:Prattusa\nMessage Wall:Prescia\nMessage Wall:Prime Heretic\nMessage Wall:Pro ahuramazda\nMessage Wall:ProjectPaatt\nMessage Wall:PrometheusDarko\nMessage Wall:Protozorq\nMessage Wall:Pseudonomyn\nMessage Wall:Psieonic\nMessage Wall:Psilocyb\nMessage Wall:Psy0n\nMessage Wall:PsychoPhobic\nMessage Wall:Ptmyers01\nMessage Wall:PublicServiceBroadcasting\nMessage Wall:Pukaloree\nMessage Wall:Pumzika\nMessage Wall:Punchymonkey009\nMessage Wall:Purplenum\nMessage Wall:Pxtseryu\nMessage Wall:Pyrix\nMessage Wall:Qds1401744017\nMessage Wall:Qeveren\nMessage Wall:Qhil\nMessage Wall:Quackarov\nMessage Wall:Quarhedron\nMessage Wall:Quasikrys\nMessage Wall:Quasur\nMessage Wall:Quis345\nMessage Wall:Qwertyforever\nMessage Wall:R.sathees\nMessage Wall:R2d266m\nMessage Wall:R6Nighthawk\nMessage Wall:RAXXE\nMessage Wall:REDWIN ONE\nMessage Wall:RRabbit42\nMessage Wall:RRetromant\nMessage Wall:RUSHER0600\nMessage Wall:RUSHv4\nMessage Wall:Rabbit Fear\nMessage Wall:Raf von Thorn\nMessage Wall:Ragn4rok234\nMessage Wall:RagnarSvartmon\nMessage Wall:Rahulyadavseo01\nMessage Wall:RainA\nMessage Wall:Rainoa\nMessage Wall:Rakeesh\nMessage Wall:Rakmarok\nMessage Wall:Ramiwhite\nMessage Wall:Rando First Blood Part Two\nMessage Wall:RandomStilskin\nMessage Wall:Randomenemy321\nMessage Wall:RandomlyGenerated69\nMessage Wall:Rapidfire88\nMessage Wall:Rappyfx\nMessage Wall:Ratcom\nMessage Wall:Ratking15\nMessage Wall:RawrZillaFace\nMessage Wall:Raylan13\nMessage Wall:Raynerl\nMessage Wall:Raynor1111\nMessage Wall:Rayyyy91\nMessage Wall:RazielAlphadios\nMessage Wall:Razr Wolfgang\nMessage Wall:Rburns625\nMessage Wall:ReCaptcherer\nMessage Wall:ReXxX1984\nMessage Wall:RealFurion\nMessage Wall:Real state\nMessage Wall:Realsense\nMessage Wall:Reapers Gale\nMessage Wall:Rebel The Husky\nMessage Wall:Red469\nMessage Wall:RedBomb1\nMessage Wall:RedRocky54\nMessage Wall:RedSpeeds17\nMessage Wall:RedWho\nMessage Wall:RedWolfProject\nMessage Wall:Redoneter593\nMessage Wall:Redzer88\nMessage Wall:Rejectedpotato\nMessage Wall:Rellikplug\nMessage Wall:RelynSerano\nMessage Wall:Ren Kurogane\nMessage Wall:Renevato\nMessage Wall:ReplicatorED\nMessage Wall:Reticulum\nMessage Wall:Retribution1337\nMessage Wall:Retrogav\nMessage Wall:Revanche\nMessage Wall:Rexosaur7\nMessage Wall:Rhadagast\nMessage Wall:Rhaikh\nMessage Wall:Rhaversen\nMessage Wall:RheaAyase\nMessage Wall:RichardAHallett\nMessage Wall:Richardtknightwdf\nMessage Wall:Rik079\nMessage Wall:Rildin\nMessage Wall:RilicTheWolf\nMessage Wall:Ripkord\nMessage Wall:Ripred Ganin\nMessage Wall:Ripto22475\nMessage Wall:Riptoze\nMessage Wall:Rizal72\nMessage Wall:Rj16066\nMessage Wall:RjTurtleSquid\nMessage Wall:Rkcampelo\nMessage Wall:Rmonsen\nMessage Wall:Roadrunner1971A\nMessage Wall:Rob492\nMessage Wall:RobCraft\nMessage Wall:Robborboy\nMessage Wall:Robert Marc Knoth\nMessage Wall:RoboYote\nMessage Wall:Rochopsian\nMessage Wall:Rocktester\nMessage Wall:Rockycodeman\nMessage Wall:Roddy1990\nMessage Wall:Roelie73\nMessage Wall:Rogerawright\nMessage Wall:Rohaq\nMessage Wall:Rohtakdigital\nMessage Wall:RolfRolf1337\nMessage Wall:Ronsoak\nMessage Wall:Ronzik\nMessage Wall:Roober the Stroober\nMessage Wall:Rophanger\nMessage Wall:Roschnicron\nMessage Wall:Rossilaz\nMessage Wall:Roughpup\nMessage Wall:Roybe\nMessage Wall:Rozmar Hvalross\nMessage Wall:Rreg29\nMessage Wall:Rrrman\nMessage Wall:Rubinelle1\nMessage Wall:Ruby60475\nMessage Wall:Ruchalus\nMessage Wall:Ruibarian\nMessage Wall:Rukja\nMessage Wall:RulerOfEverything\nMessage Wall:RumekFuria\nMessage Wall:RustInPieces\nMessage Wall:Rutzefu\nMessage Wall:Rxsmok-fduser\nMessage Wall:Rykaar\nMessage Wall:S.Kracht\nMessage Wall:S3lvatico\nMessage Wall:SANCOON\nMessage Wall:SG935\nMessage Wall:SPOOKS80\nMessage Wall:SVL KrizZ\nMessage Wall:SWCC\nMessage Wall:Sabotrax\nMessage Wall:Sachiel3\nMessage Wall:SadisticSavior\nMessage Wall:Sagdatmar\nMessage Wall:Sajano90\nMessage Wall:SaliVader\nMessage Wall:Salmonllama\nMessage Wall:Sam445\nMessage Wall:Sam Vanguard\nMessage Wall:SamboNZ\nMessage Wall:Sams52\nMessage Wall:Sanage14*\nMessage Wall:Sanguinius Angelus\nMessage Wall:SanguisDiabolus\nMessage Wall:Sangyn\nMessage Wall:Sannemen\nMessage Wall:Santaranger\nMessage Wall:SanyaJuutilainen\nMessage Wall:Sasquatch the great\nMessage Wall:Sathayorn\nMessage Wall:Saucy Wiggles\nMessage Wall:Scatoogle\nMessage Wall:Scctldq123\nMessage Wall:Scheidt\nMessage Wall:Schnappischnap\nMessage Wall:Schrauger-fduser\nMessage Wall:Scifiguru\nMessage Wall:ScorpidBlackDragon\nMessage Wall:Scotthesilent\nMessage Wall:Scottyart\nMessage Wall:Scoutpie\nMessage Wall:ScrabbleVoice\nMessage Wall:Seamus Donohue\nMessage Wall:SebStoodley\nMessage Wall:Seforian\nMessage Wall:Seizure1990\nMessage Wall:Sekotser\nMessage Wall:Sekuiya\nMessage Wall:Selfburner\nMessage Wall:Senturion1186\nMessage Wall:SepAvatar14\nMessage Wall:Seraphimneeded\nMessage Wall:Serbanstein\nMessage Wall:Serikst\nMessage Wall:Seriousrikk\nMessage Wall:SethInABlender\nMessage Wall:Sethiroth66\nMessage Wall:Seud\nMessage Wall:Sev Mara\nMessage Wall:Sevatar40k\nMessage Wall:SeventhVixen\nMessage Wall:Several\nMessage Wall:Sfinxul\nMessage Wall:Sgtdeous\nMessage Wall:Shabooka\nMessage Wall:Shader UA\nMessage Wall:Shadevari\nMessage Wall:Shadow11177\nMessage Wall:Shadowgar\nMessage Wall:Shadowgun1102\nMessage Wall:Shadowgun1103\nMessage Wall:Shadowhuntsman7\nMessage Wall:Shadowjonathan\nMessage Wall:Shads76\nMessage Wall:Shaheena Evelga\nMessage Wall:Shane0ooo\nMessage Wall:Shane Graytail\nMessage Wall:Shaphron\nMessage Wall:Sharlikran\nMessage Wall:Sharpshifter\nMessage Wall:ShatteredOrbit\nMessage Wall:Shellafee\nMessage Wall:Shihao21\nMessage Wall:Shikaka00\nMessage Wall:Shimacu\nMessage Wall:Shinkaze33\nMessage Wall:ShiroHagen\nMessage Wall:Shiroi Hane\nMessage Wall:Shogunnate\nMessage Wall:Shokanshi\nMessage Wall:Shukari\nMessage Wall:Shwinky49\nMessage Wall:Sianmink\nMessage Wall:Siegard\nMessage Wall:Signal5\nMessage Wall:Signal Five\nMessage Wall:SilentGarud\nMessage Wall:Silenthebi\nMessage Wall:Silentpiranha\nMessage Wall:Silverfan0\nMessage Wall:Silyus\nMessage Wall:SingularisFox\nMessage Wall:Singularity iOS\nMessage Wall:Sinixster11b\nMessage Wall:Sinnaj63\nMessage Wall:Sinnersprayer\nMessage Wall:Sinnersprayer89\nMessage Wall:Sintering Steel\nMessage Wall:Sinxar\nMessage Wall:Sir.FireMouse\nMessage Wall:SirAmiga\nMessage Wall:SirBumperJumperOfAvalon\nMessage Wall:SirKaldar\nMessage Wall:SirSpooks\nMessage Wall:Sir Porky McBacon\nMessage Wall:Sircompo\nMessage Wall:Skibacon\nMessage Wall:Skitthecrit\nMessage Wall:Skogwolfen\nMessage Wall:Skwurr\nMessage Wall:SkyHunnter\nMessage Wall:SkyLock8973\nMessage Wall:Slark2\nMessage Wall:Sleek34\nMessage Wall:Slidey Lad\nMessage Wall:SlimTheDiabolical\nMessage Wall:Slimydoom\nMessage Wall:Slimysomething\nMessage Wall:Slinky317\nMessage Wall:Slothman320\nMessage Wall:Slowpoke67\nMessage Wall:Slugsie\nMessage Wall:Smacker65\nMessage Wall:Smaudet\nMessage Wall:Smdepot\nMessage Wall:Smintili\nMessage Wall:Smooticus\nMessage Wall:Sn0w181\nMessage Wall:Snackington\nMessage Wall:SnookyShark\nMessage Wall:Snuble\nMessage Wall:Soa Crow\nMessage Wall:Soicaumientrung\nMessage Wall:Soifua\nMessage Wall:Solidusjungle\nMessage Wall:Solsticide\nMessage Wall:Someguy2020503\nMessage Wall:Someone stole my name: Kaisler\nMessage Wall:Son Of Kyuss\nMessage Wall:Sonic306\nMessage Wall:SonyaUliana\nMessage Wall:Soulflare3\nMessage Wall:SoulofValorium\nMessage Wall:Soulofthereaver\nMessage Wall:SourcePony\nMessage Wall:Sourison\nMessage Wall:SovietWind\nMessage Wall:Sp4rkR4t\nMessage Wall:SpaceBadger117\nMessage Wall:SpaceMerlin\nMessage Wall:SpaceWolf04\nMessage Wall:Space Rhino\nMessage Wall:SpadedTail\nMessage Wall:SparroHawc\nMessage Wall:Spartan0536\nMessage Wall:Spartan5811\nMessage Wall:Spatzz\nMessage Wall:SpazeMan\nMessage Wall:SpecialOperationsTrooper\nMessage Wall:Spectralsalmon\nMessage Wall:Spidermindgames\nMessage Wall:SpilcapesQ\nMessage Wall:Spinningspark\nMessage Wall:Spliffster74\nMessage Wall:Spoilers1\nMessage Wall:SpyTec\nMessage Wall:Spyrojackie\nMessage Wall:SqueakySquak\nMessage Wall:Srjek\nMessage Wall:Sryn\nMessage Wall:Ssarusss\nMessage Wall:Sslay\nMessage Wall:Ssnake42069\nMessage Wall:StClair\nMessage Wall:StarFClass14\nMessage Wall:StarFClass32\nMessage Wall:StarLightPL\nMessage Wall:Starbolt-81\nMessage Wall:StarmanW\nMessage Wall:StartledOctopus\nMessage Wall:Statelymc\nMessage Wall:Steffan456\nMessage Wall:Steffshow\nMessage Wall:Stevolab\nMessage Wall:Stiggy1968\nMessage Wall:StingerB29\nMessage Wall:StingerGhost1\nMessage Wall:Stonewall89\nMessage Wall:Stormjoy\nMessage Wall:Stormzez\nMessage Wall:Strelokov\nMessage Wall:Stren\nMessage Wall:Strider503\nMessage Wall:Strontium10538\nMessage Wall:StuartGT\nMessage Wall:StuntPanda\nMessage Wall:StupidDuckGames\nMessage Wall:Suisanahta\nMessage Wall:Sulandir\nMessage Wall:Sumeraxe\nMessage Wall:Sumerlove\nMessage Wall:SunwolfNC\nMessage Wall:Super Sugar\nMessage Wall:Superb0y04\nMessage Wall:Supercruise\nMessage Wall:Superdave27\nMessage Wall:Superguy163\nMessage Wall:Supermertgul\nMessage Wall:Supermike2\nMessage Wall:SuperocoiLoicadoBRBRBR\nMessage Wall:Superstorm666\nMessage Wall:Superstringcheese\nMessage Wall:Superwatery\nMessage Wall:Suretterus\nMessage Wall:Surkrem\nMessage Wall:Svzurich\nMessage Wall:SweRaider1993\nMessage Wall:Sweeep\nMessage Wall:Swi7ch\nMessage Wall:SwiftoHS\nMessage Wall:SwissTHX11384EB\nMessage Wall:SwissTony45\nMessage Wall:Sylwirzhae\nMessage Wall:Symmetry\nMessage Wall:Synthya Wylder\nMessage Wall:T. Konstantine\nMessage Wall:T3hbernardo\nMessage Wall:T4UMick\nMessage Wall:TANG0611\nMessage Wall:TCEd\nMessage Wall:THE BERK\nMessage Wall:THEgerbilOFdoom\nMessage Wall:TN0717\nMessage Wall:TVs Revan\nMessage Wall:Talion Camisade\nMessage Wall:Talmahera\nMessage Wall:Talonclaw1\nMessage Wall:TanyaT1\nMessage Wall:Tar-Elendil\nMessage Wall:Tartley\nMessage Wall:Tathiel\nMessage Wall:TayDex\nMessage Wall:Tazuren\nMessage Wall:Tboy2210\nMessage Wall:Tdh10\nMessage Wall:Tearakudo\nMessage Wall:Teatime42\nMessage Wall:Tech21101\nMessage Wall:TechcraftHD\nMessage Wall:Ted509\nMessage Wall:Teelahendrix\nMessage Wall:Teentitansgofan1111\nMessage Wall:Teeteon\nMessage Wall:Teheboom1\nMessage Wall:Tehstachewhacker\nMessage Wall:Tek0516\nMessage Wall:Tekwerk\nMessage Wall:Temp20\nMessage Wall:Temporelus\nMessage Wall:Ten pla\nMessage Wall:TenhGrey\nMessage Wall:TerinaMenken\nMessage Wall:TerminalHunter\nMessage Wall:TerminalVentures\nMessage Wall:Test7357\nMessage Wall:Tevue\nMessage Wall:ThatFlyingThing\nMessage Wall:Thatguythatfixesthings\nMessage Wall:Thatpixguy\nMessage Wall:Thcr18\nMessage Wall:The14th\nMessage Wall:TheCyanDragon\nMessage Wall:TheDeiWolf\nMessage Wall:TheEnd59949084859584958958696\nMessage Wall:TheFallen018\nMessage Wall:TheGamer0101\nMessage Wall:TheGoldenPatrik1\nMessage Wall:TheIke73\nMessage Wall:TheMindOfMadness\nMessage Wall:TheOperator288\nMessage Wall:ThePenguinFace\nMessage Wall:ThePhyx\nMessage Wall:TheVarangian\nMessage Wall:TheWarNeko\nMessage Wall:TheZemalf\nMessage Wall:TheZexdex\nMessage Wall:The Dyre Wolf\nMessage Wall:The Enclave is Bae\nMessage Wall:The God Himself\nMessage Wall:The Man in a Red Mask\nMessage Wall:The Mol Man\nMessage Wall:The Officer DWM\nMessage Wall:The One Toki\nMessage Wall:The RedBurn\nMessage Wall:The Shadowmaker\nMessage Wall:The Zephyrion\nMessage Wall:Theduckofdeath\nMessage Wall:Thekilon\nMessage Wall:Theolaf1\nMessage Wall:Therasse\nMessage Wall:Therealstubot\nMessage Wall:Thetruluhe\nMessage Wall:Theu04\nMessage Wall:Theunmademan\nMessage Wall:Thiccastley\nMessage Wall:Thirstybadger\nMessage Wall:ThisWasn'tTaken\nMessage Wall:Thismightbeiam\nMessage Wall:Thoitrangbaby\nMessage Wall:Thomas Bewick\nMessage Wall:Thor131\nMessage Wall:ThranMaru\nMessage Wall:ThreeFive35\nMessage Wall:Threyon\nMessage Wall:ThrottleFox\nMessage Wall:Thrudd\nMessage Wall:Thundertwat\nMessage Wall:ThunderxBolt101\nMessage Wall:Thwomp123\nMessage Wall:Timo.viinanen\nMessage Wall:Timothy Flint\nMessage Wall:Timsk\nMessage Wall:Timstro59\nMessage Wall:TimtheBigDaddy\nMessage Wall:TinyClayMan\nMessage Wall:Tinycubegamer45\nMessage Wall:TitanPilotUK\nMessage Wall:Titanic71\nMessage Wall:Titanpaul21\nMessage Wall:Tjeufd\nMessage Wall:Tnascimento\nMessage Wall:Toastclaimer\nMessage Wall:Tobiasvl\nMessage Wall:Tobytoolbag\nMessage Wall:Togukawa\nMessage Wall:TokihikoH11\nMessage Wall:Tolimee\nMessage Wall:TomDeJRad\nMessage Wall:Tomcoates\nMessage Wall:Tomparkes1993\nMessage Wall:Tomw95\nMessage Wall:Tondaczek\nMessage Wall:Tonileys\nMessage Wall:Tonyem328\nMessage Wall:Toomas The Lord Bringer\nMessage Wall:Top2323\nMessage Wall:TopoSolitario\nMessage Wall:Torm1358\nMessage Wall:Tosmo\nMessage Wall:Totaldeath5500\nMessage Wall:Tovbeotvbe\nMessage Wall:Toxyca\nMessage Wall:Tpennanen\nMessage Wall:Trairan\nMessage Wall:Tramker\nMessage Wall:Transmothra\nMessage Wall:TrenchCoatCorgi\nMessage Wall:Trent1542\nMessage Wall:Trepcsuit\nMessage Wall:Trico703\nMessage Wall:Triniwiki\nMessage Wall:TripN KniveZ\nMessage Wall:Triple88a\nMessage Wall:Trr1ppy\nMessage Wall:TrueLuminus\nMessage Wall:TrustMe67\nMessage Wall:Tsarkz\nMessage Wall:Tuinkabouter\nMessage Wall:Turkwinif\nMessage Wall:Turtlbrdr\nMessage Wall:Tutu10\nMessage Wall:Tutu1112\nMessage Wall:Tvis\nMessage Wall:TwentySevenFive\nMessage Wall:Twentypence\nMessage Wall:Twincast\nMessage Wall:Twinmerlin\nMessage Wall:Tws\nMessage Wall:Tyree42\nMessage Wall:TyroDreamscape\nMessage Wall:Tyrranis\nMessage Wall:UDaRealMVP01\nMessage Wall:Ubenn Hadd\nMessage Wall:UberVoyager-fduser\nMessage Wall:Ujinobu\nMessage Wall:Ukulele j\nMessage Wall:Umsik\nMessage Wall:Unau\nMessage Wall:Unforgivable\nMessage Wall:Univero\nMessage Wall:Unknowninja\nMessage Wall:UnstoppableDrew\nMessage Wall:Urane\nMessage Wall:Urb0123\nMessage Wall:Uriei\nMessage Wall:Ursuul\nMessage Wall:Usikava\nMessage Wall:VADER KHAN\nMessage Wall:Vacuum Cleaner\nMessage Wall:Valethar\nMessage Wall:Valiran\nMessage Wall:Valyn Arvis\nMessage Wall:Van Der Dyke\nMessage Wall:VandalAxis\nMessage Wall:Varigor\nMessage Wall:Variun\nMessage Wall:Vato76\nMessage Wall:Vealdin\nMessage Wall:VegBerg\nMessage Wall:Velaxtor\nMessage Wall:VenZell\nMessage Wall:Venom49637\nMessage Wall:VenomVdub\nMessage Wall:Veranmis\nMessage Wall:Verbatum14\nMessage Wall:Vesto Slipher\nMessage Wall:Vetryxx\nMessage Wall:VexaloT\nMessage Wall:VideoGamePhenom\nMessage Wall:Vikhrs\nMessage Wall:Vikindor\nMessage Wall:Vikingcat75\nMessage Wall:Vincent396\nMessage Wall:Viperial Leader\nMessage Wall:Vitor.leite.1777\nMessage Wall:VivaDaylight3\nMessage Wall:Vivaporius\nMessage Wall:Vivid Velleity\nMessage Wall:Vladeros\nMessage Wall:Vojjta96\nMessage Wall:Vombatiform\nMessage Wall:Vondrekkenov\nMessage Wall:Voriann\nMessage Wall:Vurrath\nMessage Wall:Vylanis\nMessage Wall:WAZALIZALALI\nMessage Wall:WC Yaffle\nMessage Wall:Wafflexboy\nMessage Wall:Wakadoo\nMessage Wall:WalkerFan12\nMessage Wall:Wanwan159\nMessage Wall:Warchylde73\nMessage Wall:Warforged44\nMessage Wall:Warhawker\nMessage Wall:Wazabbi\nMessage Wall:WeatherTopToo\nMessage Wall:WesULVD\nMessage Wall:Weylon\nMessage Wall:Wheatley450\nMessage Wall:WhiteRunner11\nMessage Wall:WhitesnakeSS\nMessage Wall:Wickednoreaster\nMessage Wall:Wiergan\nMessage Wall:Wikia\nMessage Wall:WikiaBot\nMessage Wall:Wikimonkey\nMessage Wall:Wilbowaggins\nMessage Wall:Willard1975\nMessage Wall:Williezk\nMessage Wall:WingCommanderBob\nMessage Wall:Winning444\nMessage Wall:WinterFur\nMessage Wall:Wiseguy7\nMessage Wall:Wishblend\nMessage Wall:Withnail7\nMessage Wall:WolfGeek101\nMessage Wall:Wonkyria\nMessage Wall:Woodventure\nMessage Wall:WookieeRoar\nMessage Wall:Woorloog\nMessage Wall:WraithFSC\nMessage Wall:Wraith Warrior\nMessage Wall:Wrenth\nMessage Wall:Wulfangel\nMessage Wall:Wuzziwu\nMessage Wall:XB1-VexaloT\nMessage Wall:XCaliber-Forever\nMessage Wall:XEoDx\nMessage Wall:XMedicatorx\nMessage Wall:XMizinx\nMessage Wall:XMoneyShadow\nMessage Wall:XND4SPDx\nMessage Wall:XOpticalGHOSTX\nMessage Wall:XXRanceXx\nMessage Wall:XX PR3$T0N GR4VEE Xx\nMessage Wall:XXxDCMTxXx\nMessage Wall:XXxTULIPxXx\nMessage Wall:Xaal\nMessage Wall:Xanapoo\nMessage Wall:Xandalis\nMessage Wall:Xandrathii\nMessage Wall:Xavion85\nMessage Wall:Xbivoj\nMessage Wall:Xellos013\nMessage Wall:Xenthor\nMessage Wall:Xerodark\nMessage Wall:Xeticus\nMessage Wall:Xijadeku\nMessage Wall:XimpleXociety\nMessage Wall:Xinbi\nMessage Wall:Xiongu\nMessage Wall:Xjph\nMessage Wall:Xmodule\nMessage Wall:Xryak\nMessage Wall:Xuxuanqi13\nMessage Wall:XxRagin Rickxx\nMessage Wall:XxSick DemonxX\nMessage Wall:Xzbyt\nMessage Wall:Xzenocrimzie\nMessage Wall:Y1n4space\nMessage Wall:YALE70\nMessage Wall:YaBoiJack\nMessage Wall:Yamiks\nMessage Wall:Yan March\nMessage Wall:Yce52\nMessage Wall:Yeetboi03\nMessage Wall:Yeetus6810\nMessage Wall:Yesimjeremy\nMessage Wall:Yeungcc1\nMessage Wall:Yianniv\nMessage Wall:Ykrop00\nMessage Wall:Ymdred16\nMessage Wall:Yobrotomo\nMessage Wall:Yodebe\nMessage Wall:YourGentderk\nMessage Wall:YueShuYaC\nMessage Wall:Yuubari\nMessage Wall:Ywokls\nMessage Wall:ZXDetonator\nMessage Wall:ZaYFix\nMessage Wall:Zach9054\nMessage Wall:ZackPanda\nMessage Wall:Zadok0\nMessage Wall:Zahadrin\nMessage Wall:Zalifer\nMessage Wall:Zankor\nMessage Wall:Zapness\nMessage Wall:Zapstone\nMessage Wall:ZeZombieChicken\nMessage Wall:Zeidokku\nMessage Wall:Zerakue\nMessage Wall:ZeroOne\nMessage Wall:Zerog6\nMessage Wall:Zeronekox\nMessage Wall:Zgrillo2004\nMessage Wall:Zhadnost\nMessage Wall:Ziraal\nMessage Wall:Zloyfedya\nMessage Wall:Zlybratblizniak\nMessage Wall:Zoogoo40\nMessage Wall:Zotic1989\nMessage Wall:Zranta\nMessage Wall:Zweanslord\nMessage Wall:Zyrr\nMessage Wall:Задолбался Подбирать Имя\nThread:\"Jackal\" Kreiss/@comment-32769624-20180126144407\nThread:00raymond/@comment-32769624-20180425174537\nThread:0xyg3nist/@comment-22439-20150315111337\nThread:1.121.143.161/@comment-22439-20160825070415\nThread:1.122.108.51/@comment-22439-20161026124250\nThread:1.123.37.237/@comment-22439-20150610140905\nThread:1.125.49.72/@comment-22439-20150612024627\nThread:1.136.104.248/@comment-32769624-20170908235625\nThread:1.136.96.106/@comment-22439-20150919003612\nThread:1.136.96.114/@comment-22439-20150926001442\nThread:1.136.96.15/@comment-22439-20150804035448\nThread:1.136.96.164/@comment-22439-20160722085746\nThread:1.144.97.160/@comment-22439-20170314092415\nThread:1.152.97.33/@comment-22439-20170720000241\nThread:1.152.97.99/@comment-22439-20160905214755\nThread:1.165.21.187/@comment-4403388-20170813193735\nThread:1.2.211.16/@comment-22439-20150503111413\nThread:1.2.224.20/@comment-22439-20150108130317\nThread:1.40.4.242/@comment-22439-20160111062807\nThread:1.65.209.209/@comment-22439-20160404094422\nThread:100.0.90.43/@comment-22439-20150717181903\nThread:100.11.139.26/@comment-22439-20150821195825\nThread:100.11.200.187/@comment-22439-20150720032158\nThread:100.11.78.253/@comment-22439-20160128162040\nThread:100.15.97.232/@comment-22439-20160304064333\nThread:100.16.1.168/@comment-22439-20160315201559\nThread:100.2.105.151/@comment-22439-20141007003737\nThread:100.2.7.169/@comment-22439-20160214032901\nThread:100.3.148.85/@comment-22439-20150507032727\nThread:100.3.162.248/@comment-22439-20160204220015\nThread:100.32.118.45/@comment-22439-20150620233750\nThread:100.33.124.213/@comment-22439-20141001180819\nThread:100.34.167.47/@comment-22439-20160923063230\nThread:100.36.107.3/@comment-22439-20151218064317\nThread:100.36.127.151/@comment-22439-20160217005255\nThread:100.36.168.163/@comment-22439-20161002195121\nThread:100.36.174.162/@comment-22439-20160417135816\nThread:100.37.171.119/@comment-22439-20150720033746\nThread:100.4.63.208/@comment-22439-20151201043503\nThread:100.42.250.210/@comment-22439-20150805201552\nThread:100.9.143.39/@comment-22439-20150621101242\nThread:101.100.128.230/@comment-22439-20150915033350\nThread:101.100.128.49/@comment-22439-20170718135213\nThread:101.100.136.47/@comment-32769624-20170907133032\nThread:101.127.136.157/@comment-22439-20141005062821\nThread:101.161.229.37/@comment-22439-20150622235010\nThread:101.161.237.167/@comment-22439-20150802113425\nThread:101.161.48.58/@comment-22439-20160313112617\nThread:101.161.56.213/@comment-22439-20161129062349\nThread:101.164.17.245/@comment-22439-20141017044915\nThread:101.165.136.237/@comment-22439-20160720050344\nThread:101.166.161.36/@comment-22439-20150404122444\nThread:101.167.118.131/@comment-22439-20150224141055\nThread:101.167.18.173/@comment-22439-20160917135325\nThread:101.167.8.113/@comment-22439-20141130074339\nThread:101.167.99.3/@comment-22439-20141213093106\nThread:101.169.255.225/@comment-22439-20150404032722\nThread:101.173.158.102/@comment-22439-20160119142249\nThread:101.174.1.154/@comment-22439-20151231015351\nThread:101.174.133.168/@comment-22439-20141125180442\nThread:101.175.27.222/@comment-22439-20160303194444\nThread:101.176.144.33/@comment-22439-20151028001530\nThread:101.177.129.67/@comment-22439-20150612062124\nThread:101.177.14.245/@comment-22439-20160803120630\nThread:101.177.64.178/@comment-22439-20150609125822\nThread:101.177.7.163/@comment-22439-20160518101218\nThread:101.177.71.48/@comment-22439-20150330081547\nThread:101.177.89.177/@comment-22439-20150415142710\nThread:101.177.96.176/@comment-22439-20150517133601\nThread:101.180.100.2/@comment-22439-20170107020838\nThread:101.180.69.158/@comment-22439-20160826141419\nThread:101.181.165.222/@comment-22439-20150906154526\nThread:101.182.92.46/@comment-22439-20161130061323\nThread:101.183.0.61/@comment-22439-20150406055056\nThread:101.183.159.193/@comment-22439-20150816150258\nThread:101.183.165.132/@comment-22439-20151222005818\nThread:101.183.224.17/@comment-22439-20170415101510\nThread:101.183.242.79/@comment-22439-20151115132110\nThread:101.183.32.93/@comment-22439-20151130090626\nThread:101.183.41.240/@comment-22439-20150908070843\nThread:101.184.126.84/@comment-22439-20160130033030\nThread:101.184.133.201/@comment-22439-20160203101807\nThread:101.184.150.174/@comment-22439-20160109234507\nThread:101.184.180.220/@comment-22439-20160122124719\nThread:101.184.191.236/@comment-22439-20151019121106\nThread:101.184.47.13/@comment-22439-20151117071634\nThread:101.184.55.231/@comment-22439-20150428073858\nThread:101.184.79.236/@comment-22439-20151207053353\nThread:101.185.140.88/@comment-22439-20170217223911\nThread:101.185.150.165/@comment-22439-20160301110305\nThread:101.185.72.206/@comment-22439-20161223043936\nThread:101.186.0.140/@comment-22439-20150115054555\nThread:101.186.14.187/@comment-22439-20150819092946\nThread:101.186.191.221/@comment-22439-20161030002435\nThread:101.186.22.122/@comment-22439-20150709091357\nThread:101.186.40.57/@comment-22439-20150719165051\nThread:101.187.46.246/@comment-22439-20150311011914\nThread:101.188.162.9/@comment-22439-20160820161103\nThread:101.188.17.48/@comment-22439-20160508040854\nThread:101.191.12.113/@comment-22439-20150528045746\nThread:101.191.32.163/@comment-22439-20151022120249\nThread:101.98.150.255/@comment-22439-20151022054438\nThread:101.98.209.218/@comment-22439-20150506095116\nThread:101.98.24.29/@comment-22439-20160107064355\nThread:101.99.128.129/@comment-22439-20170714020345\nThread:103.12.8.2/@comment-22439-20151207033224\nThread:103.226.94.62/@comment-22439-20150722044425\nThread:103.241.58.155/@comment-22439-20150915035919\nThread:103.244.145.94/@comment-22439-20160201090955\nThread:103.252.201.155/@comment-32769624-20170901072728\nThread:103.254.134.240/@comment-22439-20160806225033\nThread:103.5.142.48/@comment-22439-20150422053644\nThread:104.129.192.116/@comment-22439-20170329005306\nThread:104.129.192.64/@comment-22439-20150501180048\nThread:104.136.254.213/@comment-22439-20150914182306\nThread:104.136.32.244/@comment-22439-20170802034554\nThread:104.137.137.139/@comment-22439-20160109073852\nThread:104.137.82.122/@comment-22439-20161114010913\nThread:104.139.55.207/@comment-22439-20160830184148\nThread:104.145.124.24/@comment-22439-20170614192249\nThread:104.148.151.240/@comment-22439-20161219091638\nThread:104.148.151.68/@comment-22439-20161218083644\nThread:104.148.189.151/@comment-22439-20140925185746\nThread:104.15.34.130/@comment-22439-20170528185624\nThread:104.157.195.179/@comment-22439-20150315155418\nThread:104.158.16.87/@comment-22439-20150703091449\nThread:104.159.219.44/@comment-22439-20150121130419\nThread:104.162.115.243/@comment-22439-20160419234043\nThread:104.169.233.222/@comment-22439-20151204114257\nThread:104.169.45.199/@comment-22439-20151231203840\nThread:104.172.216.6/@comment-22439-20160128112857\nThread:104.172.64.110/@comment-22439-20160101224055\nThread:104.173.228.51/@comment-22439-20150107033436\nThread:104.173.241.224/@comment-22439-20151201053125\nThread:104.173.64.40/@comment-22439-20150801014615\nThread:104.173.8.168/@comment-22439-20160522051014\nThread:104.174.68.87/@comment-22439-20150425055717\nThread:104.174.82.156/@comment-22439-20151025054948\nThread:104.174.92.69/@comment-22439-20160905023920\nThread:104.175.161.147/@comment-22439-20141229004744\nThread:104.175.67.73/@comment-22439-20170324094515\nThread:104.178.13.235/@comment-22439-20150719034023\nThread:104.181.78.226/@comment-22439-20160104185913\nThread:104.183.144.77/@comment-22439-20150513223957\nThread:104.185.102.17/@comment-22439-20161203051322\nThread:104.185.204.158/@comment-22439-20160928032216\nThread:104.187.245.37/@comment-22439-20151101165815\nThread:104.189.152.133/@comment-22439-20161122023710\nThread:104.191.9.0/@comment-22439-20141223030037\nThread:104.200.154.77/@comment-22439-20151104022616\nThread:104.200.154.95/@comment-22439-20160408191535\nThread:104.207.136.125/@comment-22439-20150307193437\nThread:104.207.136.81/@comment-22439-20150828224037\nThread:104.220.14.250/@comment-22439-20141216061356\nThread:104.228.224.138/@comment-22439-20170310014131\nThread:104.228.98.148/@comment-22439-20170628102727\nThread:104.229.148.236/@comment-22439-20150713130411\nThread:104.230.56.165/@comment-22439-20151013182146\nThread:104.231.103.254/@comment-22439-20150619155541\nThread:104.231.67.122/@comment-22439-20170111003752\nThread:104.235.51.45/@comment-22439-20170213022846\nThread:104.236.251.167/@comment-22439-20160707045050\nThread:104.238.169.138/@comment-22439-20150603211409\nThread:104.240.174.242/@comment-22439-20151221080021\nThread:104.240.185.169/@comment-22439-20150214033246\nThread:104.245.77.23/@comment-22439-20150317012522\nThread:104.245.77.23/@comment-26009169-20150418174437\nThread:104.249.227.181/@comment-22439-20170220181813\nThread:104.3.39.77/@comment-22439-20160516170620\nThread:104.32.221.27/@comment-22439-20161127000213\nThread:104.32.49.140/@comment-22439-20150714204923\nThread:104.37.206.96/@comment-22439-20150603034032\nThread:104.51.116.206/@comment-22439-20150819180158\nThread:104.62.1.149/@comment-22439-20150714234145\nThread:104.7.107.21/@comment-22439-20150109050950\nThread:105.210.129.83/@comment-22439-20150313162356\nThread:105.210.184.45/@comment-22439-20150621091431\nThread:105.225.137.27/@comment-22439-20160312160422\nThread:105.228.19.28/@comment-22439-20160827190106\nThread:105.236.91.190/@comment-22439-20150102162028\nThread:105.28.114.4/@comment-22439-20170702174331\nThread:105.6.99.222/@comment-22439-20161220124658\nThread:106.1.181.151/@comment-22439-20160318095805\nThread:106.154.20.98/@comment-22439-20170418235823\nThread:106.154.21.185/@comment-22439-20170412094704\nThread:106.154.38.63/@comment-22439-20170415101225\nThread:106.51.232.219/@comment-22439-20141002070721\nThread:106.68.161.185/@comment-22439-20150427144138\nThread:106.68.227.172/@comment-22439-20140918151545\nThread:106.69.0.171/@comment-22439-20160725034428\nThread:106.69.126.147/@comment-22439-20141216232704\nThread:106.69.134.173/@comment-22439-20150627234632\nThread:106.69.141.79/@comment-22439-20170515223953\nThread:106.69.190.56/@comment-22439-20140611072835\nThread:106.69.249.101/@comment-22439-20161019184333\nThread:106.70.3.28/@comment-22439-20170701004304\nThread:107.10.245.150/@comment-22439-20150327062349\nThread:107.11.249.33/@comment-22439-20170216204805\nThread:107.11.36.79/@comment-22439-20170319185710\nThread:107.128.48.46/@comment-22439-20151021223112\nThread:107.131.0.64/@comment-22439-20150130074639\nThread:107.133.32.147/@comment-22439-20150424204122\nThread:107.134.108.56/@comment-22439-20150131145711\nThread:107.136.204.160/@comment-22439-20150519024003\nThread:107.141.65.99/@comment-22439-20150531125422\nThread:107.142.146.184/@comment-22439-20160112024512\nThread:107.142.200.144/@comment-22439-20150224055030\nThread:107.145.106.211/@comment-22439-20150524065059\nThread:107.145.11.212/@comment-22439-20150808031306\nThread:107.145.122.40/@comment-22439-20160211071601\nThread:107.145.230.100/@comment-22439-20170430012348\nThread:107.153.255.3/@comment-22439-20160203190701\nThread:107.167.109.164/@comment-32769624-20170905175745\nThread:107.167.109.166/@comment-32769624-20170906190336\nThread:107.178.41.148/@comment-22439-20160311092016\nThread:107.179.154.154/@comment-22439-20151114033223\nThread:107.182.64.199/@comment-22439-20150720011917\nThread:107.184.151.146/@comment-22439-20141127063848\nThread:107.188.172.89/@comment-22439-20150825222912\nThread:107.188.30.12/@comment-22439-20150319024617\nThread:107.190.130.36/@comment-22439-20160313084536\nThread:107.192.5.95/@comment-22439-20150726041624\nThread:107.193.104.136/@comment-22439-20161104104704\nThread:107.194.237.92/@comment-22439-20150211051959\nThread:107.196.11.73/@comment-22439-20150606223833\nThread:107.196.112.46/@comment-22439-20151107045420\nThread:107.196.87.12/@comment-22439-20150820184631\nThread:107.199.174.25/@comment-22439-20160307042339\nThread:107.2.193.128/@comment-22439-20150507150009\nThread:107.202.209.168/@comment-22439-20160210220441\nThread:107.203.204.222/@comment-22439-20151013153311\nThread:107.205.176.217/@comment-22439-20151019202816\nThread:107.206.119.120/@comment-22439-20170317010347\nThread:107.209.114.46/@comment-22439-20150703082551\nThread:107.214.72.8/@comment-22439-20170610212348\nThread:107.214.97.157/@comment-22439-20150613025433\nThread:107.215.244.16/@comment-22439-20150915194403\nThread:107.217.177.68/@comment-22439-20170414082417\nThread:107.218.1.5/@comment-22439-20170125223636\nThread:107.218.198.79/@comment-22439-20151117065049\nThread:107.219.200.244/@comment-22439-20150115191207\nThread:107.220.149.130/@comment-22439-20150712054935\nThread:107.220.197.31/@comment-22439-20150321185132\nThread:107.222.216.194/@comment-22439-20150622201233\nThread:107.3.92.208/@comment-22439-20150311012906\nThread:107.4.147.84/@comment-22439-20150503070320\nThread:107.4.73.164/@comment-22439-20150106223306\nThread:107.5.171.255/@comment-22439-20150613201823\nThread:107.50.64.235/@comment-22439-20150530153247\nThread:107.72.162.122/@comment-22439-20151205183506\nThread:107.77.105.45/@comment-22439-20151215223350\nThread:107.77.110.210/@comment-22439-20161102220340\nThread:107.77.111.60/@comment-22439-20161102221117\nThread:107.77.111.81/@comment-22439-20160503183255\nThread:107.77.169.9/@comment-22439-20170223134800\nThread:107.77.68.82/@comment-22439-20150202233455\nThread:107.77.75.126/@comment-22439-20150206173529\nThread:107.77.75.76/@comment-22439-20161028015006\nThread:107.77.83.107/@comment-22439-20150125074120\nThread:107.77.83.93/@comment-22439-20161104215834\nThread:107.77.85.119/@comment-22439-20170806212840\nThread:107.77.85.95/@comment-22439-20150124150921\nThread:107.77.87.36/@comment-22439-20160303031808\nThread:107.77.97.77/@comment-22439-20150817032946\nThread:107.9.11.195/@comment-22439-20151231132359\nThread:108.0.120.42/@comment-22439-20160104010820\nThread:108.0.239.194/@comment-22439-20160721181403\nThread:108.11.158.188/@comment-22439-20151220033133\nThread:108.11.40.169/@comment-22439-20150724051011\nThread:108.13.250.13/@comment-22439-20160131211158\nThread:108.131.133.224/@comment-22439-20141226025026\nThread:108.131.3.207/@comment-22439-20170616234156\nThread:108.132.169.15/@comment-22439-20150428001438\nThread:108.132.228.114/@comment-22439-20150506015142\nThread:108.132.228.168/@comment-22439-20150526215131\nThread:108.132.229.131/@comment-22439-20150504111738\nThread:108.132.233.175/@comment-22439-20150524173132\nThread:108.15.19.55/@comment-22439-20170525221853\nThread:108.15.41.236/@comment-22439-20160914034210\nThread:108.15.76.2/@comment-22439-20141213030027\nThread:108.16.107.109/@comment-22439-20170114092339\nThread:108.16.36.43/@comment-22439-20161027181716\nThread:108.162.154.110/@comment-22439-20150723023125\nThread:108.162.17.179/@comment-22439-20170807184824\nThread:108.168.39.252/@comment-22439-20150806040008\nThread:108.169.234.38/@comment-22439-20151110213506\nThread:108.17.146.158/@comment-22439-20150926000051\nThread:108.170.130.36/@comment-22439-20150102173151\nThread:108.171.128.161/@comment-22439-20160106130305\nThread:108.171.128.174/@comment-22439-20160111032815\nThread:108.171.128.188/@comment-22439-20170605004950\nThread:108.171.129.189/@comment-22439-20170426093238\nThread:108.171.130.176/@comment-22439-20170324214435\nThread:108.171.69.243/@comment-22439-20151030210407\nThread:108.173.199.63/@comment-22439-20170418162112\nThread:108.173.63.220/@comment-22439-20160604212208\nThread:108.176.251.172/@comment-22439-20150713020346\nThread:108.178.216.60/@comment-22439-20150103052308\nThread:108.18.199.4/@comment-22439-20170314034254\nThread:108.180.120.86/@comment-22439-20150915192405\nThread:108.180.195.89/@comment-22439-20150113101231\nThread:108.181.116.68/@comment-22439-20150121144531\nThread:108.181.139.53/@comment-22439-20150927234003\nThread:108.181.141.155/@comment-22439-20160110012803\nThread:108.181.141.170/@comment-22439-20150312020618\nThread:108.181.169.243/@comment-22439-20150602032742\nThread:108.183.183.195/@comment-22439-20150917203315\nThread:108.184.141.190/@comment-22439-20151115164839\nThread:108.184.142.252/@comment-22439-20150427042504\nThread:108.185.13.6/@comment-22439-20161127041449\nThread:108.185.147.189/@comment-22439-20161112214002\nThread:108.185.240.146/@comment-22439-20150616044255\nThread:108.19.197.247/@comment-22439-20151219004159\nThread:108.19.86.227/@comment-22439-20150201015932\nThread:108.193.64.97/@comment-22439-20160123092320\nThread:108.194.137.141/@comment-22439-20150624181716\nThread:108.194.37.83/@comment-22439-20150612030554\nThread:108.194.60.226/@comment-22439-20150711120138\nThread:108.196.24.136/@comment-22439-20160201044439\nThread:108.197.137.192/@comment-22439-20151126141315\nThread:108.197.146.68/@comment-22439-20150505003821\nThread:108.197.8.245/@comment-22439-20170206221432\nThread:108.197.86.20/@comment-22439-20170303054745\nThread:108.198.69.66/@comment-22439-20160622162209\nThread:108.2.143.41/@comment-22439-20150927184500\nThread:108.2.148.152/@comment-22439-20170427014322\nThread:108.20.134.239/@comment-22439-20150416041633\nThread:108.20.148.111/@comment-22439-20150328195559\nThread:108.200.185.72/@comment-22439-20150402033952\nThread:108.201.101.121/@comment-22439-20151217133954\nThread:108.201.192.116/@comment-22439-20150510000227\nThread:108.203.151.81/@comment-22439-20151022144826\nThread:108.203.188.207/@comment-22439-20150702000028\nThread:108.208.176.103/@comment-22439-20150415154117\nThread:108.208.206.145/@comment-22439-20150628071240\nThread:108.208.34.159/@comment-22439-20150603050736\nThread:108.209.14.87/@comment-22439-20170623140509\nThread:108.209.190.156/@comment-22439-20160908144710\nThread:108.211.252.126/@comment-22439-20150131000115\nThread:108.211.86.193/@comment-22439-20150912010614\nThread:108.215.139.19/@comment-22439-20141222204510\nThread:108.215.246.191/@comment-22439-20141001214653\nThread:108.216.89.143/@comment-22439-20150509185354\nThread:108.217.160.83/@comment-22439-20141019013230\nThread:108.219.212.162/@comment-22439-20150816075838\nThread:108.219.88.255/@comment-22439-20141228124355\nThread:108.223.4.15/@comment-22439-20141114052525\nThread:108.226.12.142/@comment-22439-20150113220535\nThread:108.226.169.128/@comment-22439-20170805211410\nThread:108.227.232.223/@comment-22439-20150521020032\nThread:108.231.240.230/@comment-22439-20150218044613\nThread:108.233.117.252/@comment-22439-20151211153126\nThread:108.236.149.14/@comment-22439-20150128033010\nThread:108.24.123.203/@comment-22439-20150406235646\nThread:108.242.216.67/@comment-22439-20150201082020\nThread:108.244.77.254/@comment-22439-20170327204242\nThread:108.246.28.95/@comment-22439-20150530032323\nThread:108.249.78.148/@comment-22439-20160603171928\nThread:108.25.115.131/@comment-22439-20170617034024\nThread:108.25.6.140/@comment-4403388-20170813021133\nThread:108.253.198.163/@comment-22439-20150524171158\nThread:108.253.204.65/@comment-22439-20140907052605\nThread:108.26.118.129/@comment-22439-20170204023953\nThread:108.28.154.137/@comment-22439-20150614002310\nThread:108.28.236.9/@comment-22439-20160126152942\nThread:108.28.240.45/@comment-22439-20141231144415\nThread:108.28.34.105/@comment-22439-20170709172517\nThread:108.3.156.163/@comment-22439-20170617182659\nThread:108.31.130.239/@comment-22439-20160102070525\nThread:108.31.240.188/@comment-22439-20160820224714\nThread:108.31.25.62/@comment-22439-20161209212446\nThread:108.31.88.208/@comment-22439-20150323221451\nThread:108.34.146.176/@comment-22439-20151022232057\nThread:108.39.111.155/@comment-22439-20141229034646\nThread:108.39.33.131/@comment-22439-20150124193425\nThread:108.39.94.193/@comment-22439-20150624175812\nThread:108.41.120.242/@comment-22439-20151022100856\nThread:108.44.176.96/@comment-22439-20150411161837\nThread:108.45.143.20/@comment-22439-20150829110705\nThread:108.45.67.253/@comment-22439-20160122172207\nThread:108.47.237.140/@comment-22439-20150916235855\nThread:108.48.146.104/@comment-22439-20160408215848\nThread:108.48.23.65/@comment-22439-20150929061503\nThread:108.48.29.94/@comment-22439-20151224171910\nThread:108.48.83.226/@comment-22439-20151015113331\nThread:108.49.46.117/@comment-22439-20150313210415\nThread:108.51.94.104/@comment-22439-20150319025343\nThread:108.52.164.164/@comment-22439-20150316231246\nThread:108.52.86.237/@comment-22439-20170301213618\nThread:108.56.133.10/@comment-22439-20150810151430\nThread:108.56.156.222/@comment-32769624-20170910173134\nThread:108.59.70.246/@comment-22439-20151219035805\nThread:108.59.74.46/@comment-22439-20160722190542\nThread:108.59.8.208/@comment-22439-20141223200616\nThread:108.60.246.121/@comment-22439-20150104121535\nThread:108.61.123.66/@comment-22439-20160107180334\nThread:108.61.228.56/@comment-22439-20160210000452\nThread:108.67.228.190/@comment-22439-20150712071756\nThread:108.68.77.226/@comment-22439-20150126083616\nThread:108.69.88.210/@comment-22439-20141227054752\nThread:108.7.197.252/@comment-22439-20150202045956\nThread:108.7.35.40/@comment-22439-20151113234956\nThread:108.7.70.140/@comment-22439-20150607225213\nThread:108.71.150.23/@comment-22439-20160911231538\nThread:108.71.96.38/@comment-22439-20141230001425\nThread:108.74.101.114/@comment-22439-20150516171828\nThread:108.75.133.205/@comment-22439-20151106032010\nThread:108.75.252.38/@comment-22439-20170109015841\nThread:108.76.184.144/@comment-22439-20170618012335\nThread:108.77.199.108/@comment-22439-20170123110341\nThread:108.80.100.34/@comment-22439-20151204092729\nThread:108.81.154.71/@comment-22439-20170417205849\nThread:108.81.44.104/@comment-22439-20160102200739\nThread:108.82.81.152/@comment-22439-20150712040725\nThread:108.83.244.200/@comment-22439-20150730191540\nThread:108.86.9.46/@comment-22439-20151107140507\nThread:108.89.113.239/@comment-22439-20160114091941\nThread:108.89.113.34/@comment-22439-20160913023735\nThread:108.9.172.233/@comment-22439-20150905152205\nThread:108.9.221.136/@comment-22439-20141231220526\nThread:109.105.255.83/@comment-22439-20150925181151\nThread:109.109.204.26/@comment-22439-20150626113953\nThread:109.11.26.182/@comment-22439-20150808121918\nThread:109.124.154.200/@comment-22439-20141219124714\nThread:109.125.85.24/@comment-22439-20150331133432\nThread:109.129.138.66/@comment-22439-20160705135711\nThread:109.130.179.204/@comment-22439-20160126003326\nThread:109.130.67.96/@comment-22439-20141005144437\nThread:109.145.132.72/@comment-22439-20151219123420\nThread:109.145.145.175/@comment-22439-20150702181654\nThread:109.145.201.77/@comment-22439-20151106183433\nThread:109.145.235.162/@comment-22439-20150430052453\nThread:109.145.238.166/@comment-22439-20150429182903\nThread:109.145.238.189/@comment-22439-20150502182136\nThread:109.146.112.112/@comment-22439-20160526172036\nThread:109.146.126.96/@comment-22439-20160215161235\nThread:109.146.134.215/@comment-22439-20150411124955\nThread:109.146.146.125/@comment-22439-20150117183116\nThread:109.146.196.19/@comment-22439-20150521165648\nThread:109.146.202.128/@comment-22439-20151027162350\nThread:109.146.235.132/@comment-22439-20140318114947\nThread:109.146.71.137/@comment-22439-20170707223859\nThread:109.147.168.70/@comment-22439-20170106182014\nThread:109.147.60.94/@comment-22439-20150123020530\nThread:109.147.92.12/@comment-22439-20150503102437\nThread:109.148.206.89/@comment-22439-20170417170751\nThread:109.148.22.157/@comment-22439-20160521040301\nThread:109.148.25.152/@comment-22439-20150814145738\nThread:109.148.48.28/@comment-22439-20150106030658\nThread:109.149.233.28/@comment-22439-20141219175454\nThread:109.149.88.20/@comment-22439-20160108120206\nThread:109.149.98.100/@comment-22439-20160103172140\nThread:109.149.98.80/@comment-22439-20160605154837\nThread:109.150.167.170/@comment-22439-20160313150704\nThread:109.150.83.94/@comment-22439-20140612190417\nThread:109.150.91.1/@comment-22439-20150718174312\nThread:109.151.0.76/@comment-22439-20170712235727\nThread:109.151.154.171/@comment-22439-20150102011647\nThread:109.151.168.165/@comment-22439-20150817080140\nThread:109.151.231.156/@comment-22439-20150612184758\nThread:109.151.24.55/@comment-22439-20141120215524\nThread:109.151.246.207/@comment-22439-20160109025225\nThread:109.152.14.42/@comment-22439-20150930174614\nThread:109.152.187.110/@comment-22439-20150429132831\nThread:109.152.201.213/@comment-22439-20170106232839\nThread:109.152.205.140/@comment-22439-20150223160609\nThread:109.152.206.83/@comment-22439-20150606085820\nThread:109.152.40.199/@comment-22439-20170716184113\nThread:109.152.64.19/@comment-22439-20150214230636\nThread:109.152.94.54/@comment-22439-20150207093755\nThread:109.153.152.50/@comment-22439-20141220220533\nThread:109.153.155.108/@comment-22439-20151030100849\nThread:109.154.129.71/@comment-22439-20150620151051\nThread:109.154.162.148/@comment-22439-20170718075955\nThread:109.154.174.235/@comment-22439-20160705091810\nThread:109.154.61.146/@comment-22439-20170612033838\nThread:109.155.18.135/@comment-22439-20140316013103\nThread:109.155.182.227/@comment-22439-20150607134823\nThread:109.155.182.6/@comment-22439-20150314185156\nThread:109.155.236.193/@comment-22439-20150128023507\nThread:109.155.30.233/@comment-22439-20150107130224\nThread:109.155.38.37/@comment-22439-20141224053419\nThread:109.155.57.58/@comment-22439-20141221145645\nThread:109.155.59.229/@comment-22439-20140922120539\nThread:109.155.75.129/@comment-22439-20150509214544\nThread:109.155.96.86/@comment-22439-20170220181257\nThread:109.156.105.19/@comment-22439-20150201110857\nThread:109.156.113.207/@comment-22439-20160111210151\nThread:109.156.149.218/@comment-22439-20150310213129\nThread:109.156.85.4/@comment-22439-20150918063156\nThread:109.157.150.244/@comment-22439-20150320171038\nThread:109.157.177.124/@comment-22439-20150401161448\nThread:109.157.184.76/@comment-22439-20150228180936\nThread:109.157.205.68/@comment-22439-20170324214213\nThread:109.157.45.43/@comment-22439-20150522202501\nThread:109.157.88.12/@comment-22439-20150729165652\nThread:109.158.149.81/@comment-22439-20140921194042\nThread:109.158.152.97/@comment-22439-20161218073447\nThread:109.158.171.171/@comment-22439-20160819114450\nThread:109.158.182.212/@comment-22439-20150221221408\nThread:109.158.200.117/@comment-22439-20150529232257\nThread:109.158.226.40/@comment-22439-20150501171350\nThread:109.158.243.244/@comment-22439-20160103135849\nThread:109.159.111.222/@comment-22439-20160508153407\nThread:109.159.34.49/@comment-22439-20160324204317\nThread:109.159.45.108/@comment-22439-20160817223622\nThread:109.166.131.255/@comment-22439-20151119180822\nThread:109.169.6.135/@comment-22439-20170728120348\nThread:109.172.15.17/@comment-22439-20141222150139\nThread:109.172.31.177/@comment-22439-20150208081816\nThread:109.172.55.178/@comment-22439-20140929215651\nThread:109.173.148.78/@comment-22439-20170402182446\nThread:109.173.208.6/@comment-22439-20150719191207\nThread:109.173.209.113/@comment-22439-20150712192257\nThread:109.175.42.129/@comment-22439-20150122004750\nThread:109.175.60.174/@comment-22439-20150119123030\nThread:109.176.240.46/@comment-22439-20160726223117\nThread:109.182.52.8/@comment-22439-20160128225801\nThread:109.188.126.8/@comment-22439-20150121115927\nThread:109.189.12.24/@comment-22439-20150622151128\nThread:109.189.249.26/@comment-22439-20160519172804\nThread:109.189.56.160/@comment-22439-20141109132413\nThread:109.189.79.140/@comment-22439-20150814202247\nThread:109.19.208.139/@comment-22439-20160722194732\nThread:109.190.148.224/@comment-22439-20151018165128\nThread:109.190.70.123/@comment-22439-20150224224826\nThread:109.190.80.173/@comment-22439-20150320080748\nThread:109.190.87.53/@comment-22439-20160708084848\nThread:109.193.59.21/@comment-22439-20150124155332\nThread:109.196.55.196/@comment-22439-20150113152536\nThread:109.196.59.77/@comment-22439-20150912094203\nThread:109.196.60.79/@comment-22439-20151123184634\nThread:109.20.181.247/@comment-22439-20150903100828\nThread:109.200.230.157/@comment-22439-20170415000350\nThread:109.201.137.167/@comment-22439-20150411075842\nThread:109.202.224.101/@comment-22439-20170503221526\nThread:109.202.55.225/@comment-22439-20170709133500\nThread:109.203.25.13/@comment-32769624-20170819192309\nThread:109.204.116.140/@comment-22439-20150529082646\nThread:109.204.170.145/@comment-22439-20150713223642\nThread:109.204.171.201/@comment-22439-20151227084901\nThread:109.204.215.35/@comment-22439-20170804195128\nThread:109.204.219.128/@comment-22439-20141207170745\nThread:109.208.58.139/@comment-22439-20141124092621\nThread:109.210.188.99/@comment-22439-20151114122813\nThread:109.212.199.27/@comment-22439-20150802011114\nThread:109.213.217.171/@comment-22439-20150615153929\nThread:109.215.207.227/@comment-22439-20150131114155\nThread:109.217.158.226/@comment-22439-20160102161411\nThread:109.222.185.125/@comment-22439-20150725111018\nThread:109.226.120.233/@comment-22439-20150313151506\nThread:109.227.40.78/@comment-22439-20150408085442\nThread:109.227.42.98/@comment-22439-20150407075252\nThread:109.227.46.173/@comment-22439-20150409070957\nThread:109.228.164.166/@comment-22439-20170312190123\nThread:109.228.87.198/@comment-22439-20150104132000\nThread:109.230.63.49/@comment-22439-20160131230900\nThread:109.235.156.174/@comment-22439-20150405023000\nThread:109.236.70.86/@comment-22439-20151208125324\nThread:109.236.97.62/@comment-22439-20150414162616\nThread:109.240.105.98/@comment-22439-20161127082751\nThread:109.240.24.155/@comment-22439-20170322151125\nThread:109.240.61.146/@comment-22439-20170120203821\nThread:109.240.61.174/@comment-22439-20170723143114\nThread:109.240.8.158/@comment-22439-20170418144405\nThread:109.243.83.102/@comment-22439-20150414233830\nThread:109.245.71.96/@comment-22439-20150626143330\nThread:109.246.120.209/@comment-22439-20150124153916\nThread:109.246.33.42/@comment-22439-20150104134128\nThread:109.246.96.109/@comment-22439-20151004150727\nThread:109.248.72.24/@comment-22439-20150220170111\nThread:109.248.82.35/@comment-22439-20160130112714\nThread:109.248.91.202/@comment-22439-20160212140626\nThread:109.252.17.115/@comment-22439-20170120223357\nThread:109.252.44.30/@comment-22439-20170617165741\nThread:109.252.44.59/@comment-22439-20160112223741\nThread:109.252.67.168/@comment-22439-20161030211421\nThread:109.252.67.177/@comment-22439-20160828111128\nThread:109.252.67.195/@comment-22439-20160629160409\nThread:109.255.217.48/@comment-22439-20170225172227\nThread:109.31.28.10/@comment-22439-20151220202841\nThread:109.43.0.109/@comment-22439-20141230215241\nThread:109.44.0.230/@comment-22439-20151218085622\nThread:109.47.0.228/@comment-22439-20160805112222\nThread:109.48.235.220/@comment-22439-20170404201741\nThread:109.57.210.32/@comment-22439-20150806220405\nThread:109.66.120.206/@comment-22439-20150928213153\nThread:109.68.168.63/@comment-22439-20141225012349\nThread:109.69.77.99/@comment-22439-20150129175255\nThread:109.72.12.26/@comment-22439-20160306213417\nThread:109.73.208.55/@comment-22439-20150118084301\nThread:109.73.216.84/@comment-22439-20160217174805\nThread:109.75.156.191/@comment-22439-20160109120948\nThread:109.75.18.244/@comment-22439-20150127201136\nThread:109.77.66.96/@comment-22439-20170725185640\nThread:109.77.91.67/@comment-22439-20170724232724\nThread:109.79.67.58/@comment-22439-20151013162341\nThread:109.8.183.89/@comment-22439-20160915013129\nThread:109.8.198.238/@comment-32769624-20170828092750\nThread:109.81.210.65/@comment-22439-20150102132106\nThread:109.88.24.97/@comment-22439-20141201012618\nThread:109.89.114.224/@comment-22439-20150320204742\nThread:109.90.233.122/@comment-22439-20150326113144\nThread:109.90.3.195/@comment-22439-20150813231304\nThread:109.90.41.181/@comment-22439-20161026134648\nThread:109.91.183.27/@comment-22439-20141130110820\nThread:109.91.26.110/@comment-32769624-20170820144814\nThread:109.91.35.182/@comment-22439-20161210114037\nThread:109.91.37.195/@comment-22439-20151009080516\nThread:109.91.37.68/@comment-22439-20150813145046\nThread:109.93.178.218/@comment-22439-20170507062629\nThread:109.93.3.4/@comment-22439-20150409153858\nThread:109.95.112.24/@comment-22439-20161118111150\nThread:110.140.250.88/@comment-22439-20170224151948\nThread:110.141.151.228/@comment-22439-20151114122857\nThread:110.142.242.165/@comment-22439-20150914131305\nThread:110.146.191.27/@comment-22439-20151003103041\nThread:110.149.165.56/@comment-22439-20150606072008\nThread:110.173.174.140/@comment-22439-20160913073702\nThread:110.174.117.181/@comment-22439-20170709075427\nThread:110.174.240.10/@comment-22439-20150609113827\nThread:110.174.56.58/@comment-22439-20150108114153\nThread:110.175.170.237/@comment-22439-20150322022246\nThread:110.20.20.219/@comment-22439-20170411060820\nThread:110.20.59.100/@comment-22439-20150422082523\nThread:110.22.186.17/@comment-22439-20160529034106\nThread:110.22.41.252/@comment-22439-20150507085215\nThread:110.22.76.140/@comment-22439-20150103233704\nThread:110.23.121.0/@comment-22439-20161203060815\nThread:110.23.122.153/@comment-22439-20160222164225\nThread:110.23.87.39/@comment-22439-20150809025023\nThread:110.238.45.102/@comment-22439-20170117032325\nThread:110.76.145.134/@comment-22439-20150629132248\nThread:110.77.227.136/@comment-22439-20170228174852\nThread:111.220.92.233/@comment-22439-20170203183441\nThread:111.69.140.213/@comment-22439-20161112091925\nThread:111.69.225.205/@comment-22439-20150716073755\nThread:112.120.187.212/@comment-22439-20161227205808\nThread:112.134.145.35/@comment-22439-20151230191709\nThread:112.134.163.57/@comment-22439-20160122071137\nThread:112.135.101.65/@comment-22439-20151025175830\nThread:112.135.34.10/@comment-22439-20151108182920\nThread:112.198.77.50/@comment-22439-20141211170350\nThread:112.198.90.76/@comment-22439-20150606193532\nThread:112.208.139.81/@comment-22439-20150626184118\nThread:112.210.148.121/@comment-22439-20170521194532\nThread:112.71.132.246/@comment-22439-20151217094505\nThread:113.29.231.58/@comment-22439-20150328091053\nThread:114.108.203.165/@comment-22439-20150711215940\nThread:114.125.8.255/@comment-22439-20161104180818\nThread:114.134.187.103/@comment-22439-20150323120524\nThread:114.198.15.81/@comment-22439-20161112092832\nThread:114.198.29.238/@comment-22439-20150822052259\nThread:114.198.48.246/@comment-22439-20161216122633\nThread:114.23.225.7/@comment-22439-20170104000026\nThread:114.249.61.146/@comment-22439-20151102080440\nThread:114.34.170.236/@comment-22439-20150223211833\nThread:114.42.185.122/@comment-22439-20150902005142\nThread:114.44.191.175/@comment-22439-20150815185328\nThread:114.46.145.88/@comment-22439-20150506035657\nThread:114.72.7.118/@comment-22439-20160225093705\nThread:114.72.87.68/@comment-22439-20170806104840\nThread:114.75.68.157/@comment-22439-20170121131923\nThread:114.76.153.189/@comment-22439-20150127062717\nThread:114.76.177.198/@comment-22439-20150118081227\nThread:114.76.5.129/@comment-22439-20160904051221\nThread:114.77.168.203/@comment-22439-20160207123633\nThread:114.77.184.36/@comment-22439-20160827083822\nThread:114.78.101.83/@comment-22439-20150314062121\nThread:114.96.172.141/@comment-22439-20150930154844\nThread:115.134.41.55/@comment-22439-20160102051223\nThread:115.161.97.240/@comment-22439-20150514205525\nThread:115.166.38.155/@comment-22439-20160227032245\nThread:115.166.40.252/@comment-22439-20150516050810\nThread:115.166.55.218/@comment-22439-20170103151321\nThread:115.186.240.194/@comment-22439-20150130000037\nThread:115.187.167.185/@comment-22439-20150227234030\nThread:115.188.142.87/@comment-22439-20150314220752\nThread:115.188.160.14/@comment-22439-20150206091818\nThread:115.188.56.201/@comment-22439-20150420234942\nThread:115.188.72.54/@comment-22439-20150504074837\nThread:115.188.78.80/@comment-22439-20150509233652\nThread:115.189.89.66/@comment-22439-20161217053328\nThread:115.64.182.216/@comment-22439-20150613115158\nThread:115.64.80.72/@comment-22439-20150513074127\nThread:115.66.130.225/@comment-32769624-20170822175500\nThread:115.66.181.37/@comment-22439-20170321111923\nThread:115.66.60.148/@comment-22439-20150724141010\nThread:115.69.186.97/@comment-22439-20151221064703\nThread:115.70.50.216/@comment-32769624-20170911140501\nThread:115.70.68.84/@comment-22439-20150104103721\nThread:115.70.83.138/@comment-22439-20160901094318\nThread:116.12.164.66/@comment-22439-20151002090910\nThread:116.123.134.10/@comment-22439-20150228171122\nThread:116.124.9.220/@comment-22439-20150504021037\nThread:116.14.199.127/@comment-22439-20150331145900\nThread:116.212.224.34/@comment-22439-20150730045225\nThread:116.212.239.10/@comment-32769624-20170829022424\nThread:116.251.22.2/@comment-22439-20161021062947\nThread:116.7.67.229/@comment-22439-20160903101846\nThread:116.87.219.198/@comment-22439-20170208055118\nThread:116.87.33.12/@comment-22439-20161009132321\nThread:116.88.77.12/@comment-22439-20170114052626\nThread:117.120.16.134/@comment-22439-20150929215959\nThread:117.194.85.117/@comment-22439-20130901153725\nThread:118.172.58.189/@comment-22439-20160223193403\nThread:118.174.191.174/@comment-22439-20170311021841\nThread:118.185.31.37/@comment-32769624-20170828135301\nThread:118.189.60.164/@comment-22439-20150716074515\nThread:118.208.0.127/@comment-22439-20150327084521\nThread:118.208.100.246/@comment-22439-20141223200954\nThread:118.208.109.71/@comment-22439-20150104032346\nThread:118.208.112.72/@comment-22439-20150627134532\nThread:118.208.133.219/@comment-22439-20150614085202\nThread:118.208.48.18/@comment-22439-20150620222124\nThread:118.208.98.52/@comment-22439-20170710090034\nThread:118.209.100.12/@comment-22439-20151017040831\nThread:118.209.148.52/@comment-22439-20170730090834\nThread:118.209.157.112/@comment-22439-20130108052212\nThread:118.209.201.142/@comment-22439-20130114125729\nThread:118.209.230.104/@comment-22439-20161017104452\nThread:118.209.235.127/@comment-22439-20160814071809\nThread:118.209.240.39/@comment-22439-20160629083007\nThread:118.209.254.40/@comment-22439-20160814124024\nThread:118.209.28.61/@comment-22439-20140919150638\nThread:118.209.68.172/@comment-22439-20150102092055\nThread:118.209.84.154/@comment-22439-20170104013527\nThread:118.210.104.24/@comment-22439-20141029134238\nThread:118.210.141.99/@comment-22439-20170318153307\nThread:118.210.218.108/@comment-22439-20141127171345\nThread:118.210.233.229/@comment-22439-20151013124126\nThread:118.210.66.54/@comment-22439-20160918060916\nThread:118.211.209.43/@comment-22439-20161214172003\nThread:118.211.22.224/@comment-22439-20160209173756\nThread:118.211.67.232/@comment-22439-20150712053416\nThread:118.33.29.171/@comment-22439-20150606053529\nThread:118.92.103.174/@comment-22439-20150130012426\nThread:118.92.239.4/@comment-22439-20160124034322\nThread:118.92.37.137/@comment-22439-20150107021040\nThread:118.93.107.164/@comment-22439-20150726041217\nThread:118.93.112.252/@comment-22439-20150402050539\nThread:118.93.125.86/@comment-22439-20150731193344\nThread:118.93.126.234/@comment-22439-20150127105617\nThread:118.93.201.109/@comment-22439-20160625122903\nThread:118.93.245.13/@comment-22439-20151121175809\nThread:118.93.245.132/@comment-22439-20150112091842\nThread:118.93.29.14/@comment-22439-20170225064636\nThread:119.224.28.32/@comment-22439-20150116212201\nThread:119.237.74.3/@comment-22439-20150103215016\nThread:119.39.48.131/@comment-22439-20150803030252\nThread:119.56.120.119/@comment-22439-20160619095036\nThread:119.95.29.45/@comment-22439-20160123014757\nThread:12.0.242.99/@comment-22439-20170411223921\nThread:12.105.192.18/@comment-22439-20150806200502\nThread:12.108.57.38/@comment-22439-20170724042605\nThread:12.172.156.26/@comment-22439-20160929200913\nThread:12.18.245.215/@comment-22439-20150916204845\nThread:12.227.134.139/@comment-22439-20170508053301\nThread:12.229.72.40/@comment-22439-20150115190145\nThread:12.233.203.202/@comment-22439-20170205201710\nThread:12.234.92.130/@comment-22439-20141107000658\nThread:12.29.17.253/@comment-22439-20150409233445\nThread:12.33.250.67/@comment-22439-20151203042619\nThread:12.47.78.2/@comment-22439-20150127053641\nThread:12.5.54.135/@comment-22439-20151001151650\nThread:12.54.191.15/@comment-22439-20170707202329\nThread:120.144.153.249/@comment-22439-20150403024822\nThread:120.144.54.250/@comment-22439-20151015035649\nThread:120.145.27.164/@comment-22439-20170416152707\nThread:120.145.29.195/@comment-22439-20160211162319\nThread:120.145.41.190/@comment-22439-20150701164327\nThread:120.145.73.17/@comment-22439-20140430020901\nThread:120.147.13.199/@comment-22439-20141103014839\nThread:120.148.72.201/@comment-22439-20150804125630\nThread:120.149.17.204/@comment-22439-20150227020159\nThread:120.150.151.54/@comment-22439-20170422105857\nThread:120.151.124.103/@comment-22439-20170412091155\nThread:120.151.41.100/@comment-22439-20150517070730\nThread:120.155.205.10/@comment-22439-20161011033632\nThread:120.156.87.126/@comment-22439-20160730104018\nThread:120.20.1.25/@comment-22439-20150719101948\nThread:120.20.230.84/@comment-22439-20151004120131\nThread:120.20.77.159/@comment-22439-20150711060806\nThread:120.21.3.34/@comment-22439-20151227170028\nThread:121.208.140.143/@comment-22439-20150104114739\nThread:121.208.156.225/@comment-22439-20150903014808\nThread:121.208.95.216/@comment-22439-20161022001533\nThread:121.209.196.148/@comment-22439-20160126093004\nThread:121.210.244.147/@comment-22439-20150903114100\nThread:121.211.216.213/@comment-22439-20141226222526\nThread:121.211.33.244/@comment-22439-20151227031521\nThread:121.211.39.251/@comment-22439-20150117031120\nThread:121.211.74.21/@comment-22439-20150115080203\nThread:121.215.136.252/@comment-22439-20150529093210\nThread:121.215.140.97/@comment-22439-20160412085015\nThread:121.215.18.176/@comment-22439-20150111074608\nThread:121.215.20.71/@comment-22439-20141226080354\nThread:121.215.6.88/@comment-22439-20160329133433\nThread:121.215.69.230/@comment-22439-20141224135527\nThread:121.216.111.241/@comment-22439-20160825000956\nThread:121.216.148.50/@comment-22439-20150717154541\nThread:121.216.165.148/@comment-22439-20150608110422\nThread:121.216.21.52/@comment-22439-20160502085359\nThread:121.217.236.107/@comment-22439-20160115104027\nThread:121.219.32.173/@comment-22439-20150624132501\nThread:121.220.195.176/@comment-22439-20150111110738\nThread:121.220.23.232/@comment-22439-20141214111022\nThread:121.221.220.74/@comment-22439-20170605051549\nThread:121.222.121.55/@comment-22439-20161018221452\nThread:121.222.147.138/@comment-22439-20151228082708\nThread:121.222.42.42/@comment-22439-20150830130700\nThread:121.223.162.244/@comment-22439-20161206101519\nThread:121.223.166.14/@comment-22439-20160121032713\nThread:121.223.22.61/@comment-22439-20150526172307\nThread:121.44.236.220/@comment-22439-20141115065819\nThread:121.44.35.22/@comment-22439-20141123162353\nThread:121.44.37.73/@comment-22439-20170705074800\nThread:121.45.160.147/@comment-22439-20160712113359\nThread:121.45.199.96/@comment-22439-20150313080523\nThread:121.45.235.85/@comment-22439-20161126171826\nThread:121.45.245.99/@comment-22439-20150406041239\nThread:121.45.90.46/@comment-22439-20140907083104\nThread:121.46.18.46/@comment-22439-20160831033117\nThread:121.52.94.70/@comment-22439-20150427083951\nThread:121.7.59.75/@comment-22439-20160310053321\nThread:121.73.132.36/@comment-22439-20150315011219\nThread:121.73.137.206/@comment-22439-20150224034657\nThread:121.73.212.178/@comment-22439-20150108150613\nThread:121.73.74.235/@comment-22439-20150822204114\nThread:121.74.229.92/@comment-22439-20141230125919\nThread:121.75.242.64/@comment-22439-20170208072203\nThread:121.75.9.61/@comment-22439-20150502014729\nThread:121.94.82.27/@comment-22439-20150801104931\nThread:121.98.133.64/@comment-22439-20150111105542\nThread:121.98.178.238/@comment-22439-20160110093159\nThread:121.99.138.144/@comment-22439-20150213124957\nThread:121.99.188.149/@comment-22439-20170122044337\nThread:121.99.54.42/@comment-22439-20170114013109\nThread:122.105.136.231/@comment-22439-20150427175340\nThread:122.106.150.248/@comment-22439-20141127162841\nThread:122.106.222.219/@comment-22439-20170707013816\nThread:122.106.254.124/@comment-22439-20150612180512\nThread:122.108.163.107/@comment-22439-20160305051734\nThread:122.108.186.164/@comment-22439-20150101130234\nThread:122.109.163.110/@comment-22439-20160213104516\nThread:122.109.55.212/@comment-22439-20150816025751\nThread:122.111.141.94/@comment-22439-20151128112701\nThread:122.111.224.8/@comment-22439-20141223150123\nThread:122.111.65.71/@comment-22439-20130922204707\nThread:122.129.134.110/@comment-22439-20150803100018\nThread:122.148.153.93/@comment-22439-20150920010352\nThread:122.148.232.40/@comment-22439-20141124143439\nThread:122.149.142.10/@comment-22439-20151203080556\nThread:122.149.147.200/@comment-22439-20150913002829\nThread:122.149.148.97/@comment-22439-20150211032432\nThread:122.149.237.72/@comment-22439-20150513061943\nThread:122.149.25.122/@comment-22439-20160630140017\nThread:122.150.113.55/@comment-22439-20150226122027\nThread:122.150.131.85/@comment-22439-20150408085034\nThread:122.150.183.76/@comment-22439-20140907103455\nThread:122.150.224.72/@comment-22439-20160118004011\nThread:122.150.97.73/@comment-22439-20141215170536\nThread:122.151.147.67/@comment-22439-20170608130348\nThread:122.178.153.136/@comment-22439-20151206051136\nThread:122.52.93.51/@comment-22439-20150821113157\nThread:122.57.173.99/@comment-22439-20150130224457\nThread:122.58.239.177/@comment-22439-20161118225040\nThread:122.58.31.187/@comment-22439-20141229113155\nThread:122.58.32.79/@comment-22439-20150421040618\nThread:122.58.55.245/@comment-22439-20160828005304\nThread:122.59.154.16/@comment-22439-20161029135240\nThread:122.61.208.67/@comment-22439-20151205043350\nThread:122.62.129.107/@comment-22439-20150528091141\nThread:122.62.130.188/@comment-22439-20151228084936\nThread:123.100.106.196/@comment-22439-20151027013331\nThread:123.116.101.224/@comment-22439-20170415165425\nThread:123.139.36.141/@comment-22439-20151129070228\nThread:123.2.108.115/@comment-22439-20150410073439\nThread:123.2.157.105/@comment-22439-20150612015245\nThread:123.2.166.118/@comment-22439-20151021102416\nThread:123.2.197.77/@comment-4403388-20170809102039\nThread:123.2.22.240/@comment-22439-20160609090015\nThread:123.211.123.73/@comment-22439-20151216021036\nThread:123.211.163.148/@comment-22439-20150927052457\nThread:123.211.23.17/@comment-22439-20150303170753\nThread:123.211.237.121/@comment-22439-20141227103810\nThread:123.211.240.4/@comment-22439-20150114093955\nThread:123.211.243.162/@comment-22439-20161109085525\nThread:123.224.175.25/@comment-22439-20150415105219\nThread:123.243.22.178/@comment-22439-20160815224724\nThread:123.255.41.54/@comment-22439-20150219115803\nThread:123.3.189.39/@comment-22439-20150726150553\nThread:123jiordan/@comment-32769624-20180129193202\nThread:124.104.205.175/@comment-22439-20150607133143\nThread:124.13.88.48/@comment-22439-20150108203551\nThread:124.148.124.104/@comment-22439-20150102124517\nThread:124.148.131.206/@comment-22439-20160322061622\nThread:124.148.86.42/@comment-22439-20141025084441\nThread:124.149.104.14/@comment-22439-20150726071636\nThread:124.149.177.111/@comment-22439-20160312082859\nThread:124.149.177.188/@comment-22439-20150708033507\nThread:124.149.52.173/@comment-22439-20160221101934\nThread:124.149.92.105/@comment-22439-20150114142711\nThread:124.150.105.206/@comment-22439-20141228004906\nThread:124.150.11.219/@comment-22439-20170703105916\nThread:124.150.125.249/@comment-22439-20150802101239\nThread:124.150.83.251/@comment-22439-20150118084852\nThread:124.150.95.132/@comment-22439-20150125145715\nThread:124.168.38.61/@comment-22439-20160323041032\nThread:124.168.4.7/@comment-22439-20150112041558\nThread:124.168.61.65/@comment-22439-20160223034225\nThread:124.169.177.133/@comment-22439-20150421103741\nThread:124.169.18.205/@comment-22439-20160726133154\nThread:124.169.187.134/@comment-22439-20150116064428\nThread:124.169.6.241/@comment-22439-20150623042652\nThread:124.170.146.115/@comment-22439-20150323022848\nThread:124.170.146.251/@comment-22439-20150126193659\nThread:124.170.158.226/@comment-22439-20150405014857\nThread:124.170.207.203/@comment-22439-20150208002247\nThread:124.170.58.212/@comment-22439-20160123055806\nThread:124.170.72.234/@comment-22439-20150314071254\nThread:124.171.10.225/@comment-22439-20150712141810\nThread:124.171.11.32/@comment-22439-20160222080344\nThread:124.171.175.209/@comment-22439-20170726172005\nThread:124.171.250.175/@comment-22439-20170713062318\nThread:124.171.95.79/@comment-22439-20170606042753\nThread:124.176.173.224/@comment-22439-20150330110208\nThread:124.177.113.24/@comment-22439-20150620192428\nThread:124.180.217.240/@comment-22439-20150112133105\nThread:124.181.234.184/@comment-22439-20141207121840\nThread:124.186.110.143/@comment-22439-20150606143509\nThread:124.186.99.105/@comment-22439-20151217131057\nThread:124.187.84.136/@comment-22439-20150608151447\nThread:124.187.89.178/@comment-22439-20160830224856\nThread:124.188.128.205/@comment-22439-20170115094046\nThread:124.188.94.60/@comment-22439-20170227073413\nThread:124.189.143.181/@comment-22439-20150927044414\nThread:124.190.220.208/@comment-22439-20160809225605\nThread:124.37.83.250/@comment-22439-20160726062939\nThread:125.16.90.6/@comment-22439-20160617112501\nThread:125.209.133.104/@comment-22439-20170619134531\nThread:125.209.168.60/@comment-22439-20141129111231\nThread:125.236.252.109/@comment-22439-20170406235812\nThread:125.237.1.249/@comment-22439-20150819045224\nThread:125.237.15.105/@comment-22439-20150511034104\nThread:125.237.2.240/@comment-22439-20160912002405\nThread:125.237.231.147/@comment-22439-20160601085324\nThread:125.237.3.1/@comment-2155082-20161012001648\nThread:125.237.3.1/@comment-22439-20161010033009\nThread:125.237.5.125/@comment-22439-20160904012429\nThread:125.237.5.192/@comment-22439-20161007042835\nThread:125.237.5.238/@comment-22439-20170707042325\nThread:125.237.6.217/@comment-22439-20170507075340\nThread:125.237.62.169/@comment-22439-20141209091314\nThread:125.237.7.120/@comment-22439-20170124184926\nThread:125.237.7.146/@comment-22439-20170418192451\nThread:125.237.7.62/@comment-22439-20161210032440\nThread:125.237.7.64/@comment-22439-20161125200751\nThread:125.238.115.135/@comment-22439-20150826003544\nThread:125.238.90.17/@comment-22439-20150616071455\nThread:125.239.213.167/@comment-22439-20151113042420\nThread:125.39.238.6/@comment-22439-20150201073337\nThread:125.39.35.45/@comment-22439-20150530105043\nThread:128.0.208.232/@comment-22439-20160115210127\nThread:128.104.6.11/@comment-22439-20141006163626\nThread:128.150.82.189/@comment-22439-20150618153109\nThread:128.172.35.24/@comment-22439-20150115000042\nThread:128.176.12.211/@comment-22439-20150108095326\nThread:128.204.52.237/@comment-22439-20150122233915\nThread:128.220.159.83/@comment-22439-20141207070650\nThread:128.255.74.4/@comment-22439-20150408132957\nThread:128.39.146.141/@comment-22439-20151117185435\nThread:128.39.166.172/@comment-22439-20150111222511\nThread:128.61.105.207/@comment-22439-20150310065517\nThread:128.61.92.88/@comment-22439-20170503171838\nThread:128.65.95.130/@comment-22439-20160709192317\nThread:128.68.141.4/@comment-22439-20150406211319\nThread:128.70.195.254/@comment-22439-20160601191744\nThread:128.70.62.226/@comment-22439-20150624012353\nThread:128.72.96.99/@comment-22439-20160104211533\nThread:128.75.228.245/@comment-22439-20170102140011\nThread:128.78.170.65/@comment-22439-20151216114245\nThread:128.79.38.16/@comment-22439-20150601194934\nThread:129.101.216.92/@comment-22439-20170204070319\nThread:129.101.218.67/@comment-22439-20161211234447\nThread:129.120.2.135/@comment-22439-20141125201150\nThread:129.130.18.62/@comment-22439-20151031022007\nThread:129.138.30.85/@comment-22439-20150311081432\nThread:129.15.64.225/@comment-22439-20160606195028\nThread:129.176.151.24/@comment-22439-20160527165839\nThread:129.186.176.157/@comment-22439-20150227000114\nThread:129.186.251.157/@comment-22439-20160120184319\nThread:129.21.70.139/@comment-22439-20160202151749\nThread:129.21.91.167/@comment-22439-20151001195511\nThread:129.215.1.181/@comment-22439-20161115103540\nThread:129.22.41.188/@comment-22439-20151113223705\nThread:129.6.107.120/@comment-22439-20150626153438\nThread:129.89.104.103/@comment-22439-20141227173325\nThread:129.89.104.180/@comment-22439-20141221174552\nThread:129.96.80.6/@comment-22439-20170723233047\nThread:129.97.125.196/@comment-22439-20141216014739\nThread:129.99.133.84/@comment-22439-20160201045716\nThread:13.17.125.9/@comment-22439-20130225112211\nThread:130.0.104.95/@comment-22439-20150626073526\nThread:130.0.58.122/@comment-22439-20151227163013\nThread:130.101.200.119/@comment-22439-20150715225127\nThread:130.160.143.133/@comment-22439-20150420114534\nThread:130.179.8.18/@comment-22439-20151116175101\nThread:130.225.165.37/@comment-22439-20150610073911\nThread:130.226.70.85/@comment-22439-20170305075913\nThread:130.229.29.117/@comment-22439-20160301122213\nThread:130.234.177.114/@comment-22439-20150105152307\nThread:130.234.178.99/@comment-22439-20170517022310\nThread:130.236.61.80/@comment-22439-20150224113013\nThread:130.245.239.132/@comment-22439-20150128140941\nThread:130.255.27.13/@comment-22439-20151030191533\nThread:130.49.59.202/@comment-22439-20150111165159\nThread:130.65.254.13/@comment-22439-20170316004103\nThread:130.70.0.34/@comment-22439-20160404204004\nThread:130.88.201.30/@comment-22439-20170110121939\nThread:131.107.147.30/@comment-22439-20140628213925\nThread:131.107.147.49/@comment-22439-20150326224438\nThread:131.111.56.79/@comment-22439-20160105094430\nThread:131.118.76.87/@comment-22439-20161027043202\nThread:131.156.157.169/@comment-22439-20151123011218\nThread:131.164.172.224/@comment-22439-20170524194824\nThread:131.191.35.56/@comment-22439-20150104081025\nThread:131.203.112.66/@comment-22439-20170731002521\nThread:131.204.251.122/@comment-22439-20150430192135\nThread:131.228.32.166/@comment-176.241.72.203-20190726163122\nThread:131.91.4.35/@comment-22439-20151002030103\nThread:132.170.209.251/@comment-22439-20160204100447\nThread:132.3.13.78/@comment-22439-20150430021901\nThread:132.3.13.79/@comment-22439-20150430022320\nThread:132.3.21.79/@comment-22439-20160216085155\nThread:132.3.53.79/@comment-22439-20151214082254\nThread:132.3.53.81/@comment-22439-20151214082354\nThread:132.3.9.80/@comment-22439-20151116192644\nThread:134.102.157.225/@comment-22439-20160902084129\nThread:134.129.203.28/@comment-22439-20151021163440\nThread:134.130.173.46/@comment-22439-20170629211615\nThread:134.148.10.12/@comment-22439-20150903022813\nThread:134.241.2.61/@comment-22439-20151109154112\nThread:134.3.144.62/@comment-22439-20150603163916\nThread:134.3.27.159/@comment-22439-20150121113126\nThread:134.99.254.77/@comment-22439-20150703131820\nThread:135.0.26.15/@comment-22439-20150718221058\nThread:135.0.27.149/@comment-22439-20150104041732\nThread:135.0.88.207/@comment-22439-20170411230435\nThread:135.19.167.83/@comment-22439-20150122203157\nThread:135.19.26.124/@comment-22439-20150803214828\nThread:135.23.67.121/@comment-22439-20160208201956\nThread:136.251.224.51/@comment-22439-20150108142055\nThread:136.62.175.89/@comment-136.62.175.89-20190202000820\nThread:136.63.84.11/@comment-22439-20160126075805\nThread:137.112.226.87/@comment-22439-20150327142012\nThread:137.119.65.251/@comment-22439-20150815210607\nThread:137.132.232.152/@comment-22439-20161202135202\nThread:137.147.147.199/@comment-22439-20150625151401\nThread:137.175.204.31/@comment-22439-20160830012449\nThread:137.186.179.68/@comment-22439-20141218083838\nThread:137.186.219.165/@comment-22439-20160805001704\nThread:137.186.244.181/@comment-22439-20161026061054\nThread:137.186.247.239/@comment-22439-20160104010429\nThread:137.187.126.172/@comment-22439-20141111143542\nThread:137.194.23.114/@comment-22439-20150616092212\nThread:137.205.194.208/@comment-22439-20140108105034\nThread:137.229.21.95/@comment-22439-20160428231722\nThread:137.28.109.125/@comment-22439-20151218194443\nThread:138.162.0.41/@comment-22439-20151220202540\nThread:138.162.0.43/@comment-22439-20151203014135\nThread:138.162.8.58/@comment-22439-20150527021049\nThread:138.163.0.41/@comment-22439-20150112175723\nThread:138.163.0.42/@comment-22439-20150112181531\nThread:138.163.128.42/@comment-22439-20141118135013\nThread:138.19.139.138/@comment-22439-20161019141504\nThread:138.226.68.16/@comment-22439-20141218030754\nThread:138.226.68.17/@comment-22439-20141212211450\nThread:138.229.132.80/@comment-4403388-20170812232243\nThread:138.32.235.36/@comment-22439-20150910043236\nThread:138.67.90.159/@comment-22439-20160118025151\nThread:138.75.143.196/@comment-22439-20151110214205\nThread:138.75.149.215/@comment-22439-20151021132101\nThread:138.75.186.140/@comment-22439-20150829045835\nThread:139.139.19.68/@comment-22439-20150924122630\nThread:139.161.115.244/@comment-22439-20151025032953\nThread:139.164.160.83/@comment-22439-20170106122357\nThread:139.194.104.101/@comment-22439-20141125180158\nThread:139.194.109.27/@comment-22439-20170111120141\nThread:139.2.4.136/@comment-22439-20150611123551\nThread:139.216.253.11/@comment-22439-20150809115815\nThread:139.218.141.128/@comment-22439-20160619065227\nThread:139.218.220.223/@comment-22439-20160105082008\nThread:139.218.229.129/@comment-22439-20151004091421\nThread:139.218.3.194/@comment-22439-20161021072311\nThread:139.218.68.148/@comment-22439-20160506033138\nThread:139.222.120.175/@comment-22439-20130111132905\nThread:139.51.15.19/@comment-22439-20150114155926\nThread:139.62.24.136/@comment-22439-20151015211637\nThread:139.62.26.121/@comment-22439-20150910203845\nThread:139.62.26.248/@comment-22439-20150417145909\nThread:139.62.84.43/@comment-22439-20160227073311\nThread:14.0.209.53/@comment-22439-20151214131351\nThread:14.2.177.151/@comment-22439-20151216170444\nThread:14.2.47.4/@comment-22439-20151001024839\nThread:14.2.50.157/@comment-22439-20150816040347\nThread:14.2.98.70/@comment-22439-20160611131522\nThread:14.200.155.229/@comment-22439-20160210113605\nThread:14.200.165.96/@comment-22439-20141224002406\nThread:14.201.141.21/@comment-22439-20170325181656\nThread:14.201.187.44/@comment-22439-20150321053611\nThread:14.201.223.11/@comment-22439-20160101045215\nThread:14.201.41.93/@comment-22439-20150124030316\nThread:14.201.5.104/@comment-22439-20160816115307\nThread:14.202.248.9/@comment-22439-20150110072850\nThread:14.202.85.221/@comment-22439-20160103034357\nThread:14.203.141.90/@comment-22439-20160130144928\nThread:14.203.175.212/@comment-22439-20150921084248\nThread:14.203.204.113/@comment-22439-20160404185849\nThread:14.207.41.137/@comment-22439-20161021074510\nThread:14.33.139.181/@comment-22439-20150118053411\nThread:14.34.217.235/@comment-22439-20160108155847\nThread:14.99.116.244/@comment-22439-20160820090301\nThread:140.160.71.167/@comment-22439-20160404193248\nThread:140.254.77.146/@comment-22439-20161010183727\nThread:141.0.12.139/@comment-22439-20160810044026\nThread:141.0.146.135/@comment-22439-20150713203932\nThread:141.0.15.34/@comment-22439-20170115023638\nThread:141.0.8.141/@comment-22439-20150114085457\nThread:141.0.9.62/@comment-22439-20151205221622\nThread:141.135.155.92/@comment-22439-20150314062729\nThread:141.135.169.11/@comment-22439-20150412102832\nThread:141.135.240.235/@comment-22439-20170331222402\nThread:141.209.53.152/@comment-22439-20170221151236\nThread:141.225.144.254/@comment-22439-20150501202001\nThread:141.226.217.246/@comment-22439-20170312180232\nThread:141.226.218.85/@comment-22439-20170511102915\nThread:141.70.82.221/@comment-22439-20170126135827\nThread:141.84.69.20/@comment-22439-20150617142237\nThread:142.0.195.164/@comment-22439-20170217094554\nThread:142.105.155.242/@comment-22439-20151001210345\nThread:142.162.20.15/@comment-22439-20150722002447\nThread:142.162.213.212/@comment-22439-20170302000007\nThread:142.162.51.222/@comment-22439-20150208163116\nThread:142.162.58.178/@comment-22439-20160825230023\nThread:142.163.142.106/@comment-22439-20150617164600\nThread:142.166.148.92/@comment-22439-20141216011754\nThread:142.166.16.179/@comment-22439-20150322133613\nThread:142.167.243.158/@comment-22439-20160110044108\nThread:142.217.17.69/@comment-22439-20170704111300\nThread:142.41.247.10/@comment-22439-20130306144022\nThread:142.51.248.219/@comment-4403388-20170815064845\nThread:143.112.32.4/@comment-22439-20150909040811\nThread:143.159.191.163/@comment-22439-20170423112658\nThread:143.159.69.233/@comment-22439-20170308210307\nThread:143.200.40.136/@comment-22439-20150908033120\nThread:143.214.2.4/@comment-22439-20150908204455\nThread:143.215.113.195/@comment-22439-20170419110830\nThread:143.238.133.138/@comment-22439-20150604181454\nThread:143.239.64.177/@comment-22439-20150514131239\nThread:143.81.103.35/@comment-22439-20151220214226\nThread:143.85.167.18/@comment-22439-20150124123853\nThread:143.92.1.33/@comment-22439-20141103015940\nThread:144.124.244.157/@comment-22439-20150203130039\nThread:144.13.204.130/@comment-22439-20161101202505\nThread:144.131.34.218/@comment-22439-20150413043047\nThread:144.132.3.52/@comment-22439-20161211200241\nThread:144.132.69.198/@comment-22439-20150307105433\nThread:144.160.98.91/@comment-22439-20160324184346\nThread:144.191.148.10/@comment-22439-20170621190503\nThread:144.216.244.74/@comment-22439-20151031223900\nThread:144.46.104.12/@comment-22439-20150115220721\nThread:144.76.96.7/@comment-22439-20160709194227\nThread:144.85.149.245/@comment-22439-20141225174108\nThread:144.85.168.61/@comment-22439-20150310014431\nThread:145.120.19.82/@comment-32769624-20170818233231\nThread:145.132.121.77/@comment-22439-20150524204248\nThread:145.132.33.196/@comment-22439-20170514185132\nThread:145.228.61.5/@comment-22439-20141127090524\nThread:145.236.69.124/@comment-22439-20160125223005\nThread:145.249.206.186/@comment-22439-20170131011041\nThread:145.253.244.83/@comment-22439-20150203120611\nThread:145.53.114.86/@comment-22439-20151018182914\nThread:145.53.195.156/@comment-22439-20141225142207\nThread:145.97.141.142/@comment-22439-20160114202507\nThread:146.115.124.208/@comment-22439-20160617020153\nThread:146.115.90.104/@comment-22439-20151216183709\nThread:146.151.42.239/@comment-22439-20150313165920\nThread:146.185.185.122/@comment-22439-20160530103156\nThread:146.198.211.148/@comment-22439-20150831164752\nThread:146.198.212.96/@comment-32769624-20170818070418\nThread:146.199.154.60/@comment-22439-20150928091626\nThread:146.199.193.88/@comment-22439-20150502213530\nThread:146.199.244.69/@comment-32769624-20170910194723\nThread:146.199.52.48/@comment-22439-20141230092843\nThread:146.199.86.218/@comment-22439-20150822070418\nThread:146.200.167.4/@comment-22439-20150605185746\nThread:146.200.19.46/@comment-22439-20150328150912\nThread:146.200.34.168/@comment-22439-20150305053900\nThread:146.200.40.81/@comment-22439-20141221150454\nThread:146.200.85.59/@comment-22439-20160315135934\nThread:146.23.65.196/@comment-22439-20150830205610\nThread:146.244.83.218/@comment-22439-20141211202123\nThread:146.247.225.120/@comment-22439-20141228213935\nThread:146.255.109.194/@comment-22439-20170717162930\nThread:146.255.183.20/@comment-22439-20170322112606\nThread:146.52.104.24/@comment-22439-20150527173038\nThread:146.52.209.19/@comment-22439-20150312194505\nThread:146.52.32.203/@comment-22439-20150322172938\nThread:146.52.34.126/@comment-22439-20150321165619\nThread:146.52.55.117/@comment-22439-20151004114010\nThread:146.60.254.107/@comment-22439-20150805171613\nThread:146.63.193.166/@comment-22439-20151111015943\nThread:146.90.112.215/@comment-22439-20150610103854\nThread:146.90.31.45/@comment-22439-20150223231149\nThread:146.90.47.174/@comment-22439-20170325175720\nThread:146.90.57.106/@comment-22439-20161027131137\nThread:146.90.68.10/@comment-22439-20141213191148\nThread:146.90.85.159/@comment-22439-20160103215250\nThread:147.147.246.160/@comment-22439-20170122192223\nThread:147.147.88.238/@comment-22439-20160828005148\nThread:147.194.127.100/@comment-22439-20170413214815\nThread:147.194.22.179/@comment-22439-20150123182649\nThread:147.194.5.61/@comment-22439-20150114073224\nThread:147.210.28.3/@comment-22439-20151118160746\nThread:147.69.129.150/@comment-22439-20160229052334\nThread:147.69.130.192/@comment-22439-20150414093320\nThread:147.69.133.85/@comment-22439-20160203070843\nThread:147.69.22.101/@comment-22439-20150920024634\nThread:147.69.30.118/@comment-22439-20160212051433\nThread:148.3.31.132/@comment-22439-20160112233651\nThread:148.66.78.139/@comment-22439-20160217042111\nThread:148.83.134.8/@comment-22439-20150415120111\nThread:149.101.1.120/@comment-22439-20160818165426\nThread:149.101.37.2/@comment-22439-20170425005243\nThread:149.12.11.70/@comment-22439-20150526173419\nThread:149.126.105.68/@comment-22439-20151016155719\nThread:149.168.204.10/@comment-22439-20141222180029\nThread:149.172.124.85/@comment-22439-20150114205008\nThread:149.172.254.77/@comment-22439-20141211010633\nThread:149.254.186.248/@comment-22439-20141109101351\nThread:149.254.219.120/@comment-22439-20141031230518\nThread:149.254.224.242/@comment-22439-20150304021932\nThread:149.254.224.252/@comment-22439-20150220051138\nThread:149.254.250.129/@comment-22439-20150202083118\nThread:149.254.51.76/@comment-22439-20150316200921\nThread:149.254.56.232/@comment-22439-20140309095930\nThread:149.255.33.155/@comment-22439-20150507023210\nThread:149.3.71.240/@comment-22439-20170130093526\nThread:15.203.169.125/@comment-22439-20151209172539\nThread:15.203.226.42/@comment-32769624-20170907071003\nThread:15.203.233.79/@comment-22439-20150328111635\nThread:15.211.201.83/@comment-22439-20151021155542\nThread:150.101.171.247/@comment-22439-20150308093329\nThread:150.101.207.73/@comment-22439-20150707003016\nThread:150.107.175.109/@comment-22439-20161227031509\nThread:150.134.245.5/@comment-22439-20141027210914\nThread:150.203.247.1/@comment-22439-20150609025413\nThread:150.207.150.112/@comment-22439-20160105224340\nThread:150.208.129.188/@comment-22439-20170120140340\nThread:151.188.213.148/@comment-22439-20151215160707\nThread:151.224.0.41/@comment-22439-20150118041227\nThread:151.224.121.170/@comment-32769624-20170819024029\nThread:151.224.122.229/@comment-22439-20160910090011\nThread:151.224.132.22/@comment-22439-20141017164803\nThread:151.224.138.137/@comment-22439-20140422162338\nThread:151.224.15.98/@comment-22439-20150118023848\nThread:151.224.217.230/@comment-22439-20151203165020\nThread:151.224.243.0/@comment-22439-20170414211015\nThread:151.224.244.132/@comment-22439-20160518153702\nThread:151.224.41.197/@comment-22439-20150705140726\nThread:151.224.91.240/@comment-22439-20141220170501\nThread:151.225.106.17/@comment-22439-20170226232522\nThread:151.225.109.82/@comment-22439-20160904122729\nThread:151.225.109.82/@comment-5959508-20160904175856\nThread:151.225.126.103/@comment-22439-20150127121934\nThread:151.225.135.88/@comment-32769624-20170818071713\nThread:151.225.141.1/@comment-22439-20160104043904\nThread:151.225.141.168/@comment-22439-20160307222932\nThread:151.225.141.17/@comment-22439-20151014191558\nThread:151.225.141.55/@comment-22439-20150916074403\nThread:151.225.142.24/@comment-22439-20160114150345\nThread:151.225.148.234/@comment-22439-20150218024305\nThread:151.225.186.250/@comment-22439-20150125022812\nThread:151.225.213.103/@comment-22439-20151016210208\nThread:151.225.215.252/@comment-22439-20160818122651\nThread:151.225.45.18/@comment-22439-20150801013151\nThread:151.225.61.134/@comment-22439-20151019152042\nThread:151.225.64.244/@comment-22439-20150113140248\nThread:151.225.68.73/@comment-22439-20150323161545\nThread:151.225.7.51/@comment-22439-20150611140256\nThread:151.225.94.203/@comment-22439-20160109132540\nThread:151.225.94.241/@comment-22439-20150506181729\nThread:151.226.104.22/@comment-22439-20140913102207\nThread:151.226.121.215/@comment-22439-20150725101952\nThread:151.226.122.36/@comment-22439-20150918203547\nThread:151.226.144.63/@comment-22439-20141224000930\nThread:151.226.170.82/@comment-22439-20150411181217\nThread:151.226.179.126/@comment-22439-20141004124347\nThread:151.226.201.155/@comment-22439-20141218234546\nThread:151.226.233.191/@comment-22439-20150310190421\nThread:151.226.255.117/@comment-22439-20150110041420\nThread:151.226.41.229/@comment-22439-20151204150423\nThread:151.226.60.14/@comment-22439-20150125110402\nThread:151.226.78.179/@comment-22439-20150317055706\nThread:151.227.1.18/@comment-22439-20150405130126\nThread:151.227.11.184/@comment-22439-20141227182723\nThread:151.227.121.6/@comment-22439-20150402222306\nThread:151.227.142.193/@comment-22439-20141228210931\nThread:151.227.145.44/@comment-22439-20160303163103\nThread:151.227.146.159/@comment-22439-20170519165150\nThread:151.227.148.19/@comment-22439-20150412204937\nThread:151.227.162.81/@comment-22439-20141002214826\nThread:151.227.38.48/@comment-22439-20150818222224\nThread:151.227.52.191/@comment-22439-20150418180608\nThread:151.228.110.237/@comment-32769624-20170831115022\nThread:151.228.186.94/@comment-22439-20150317001631\nThread:151.228.207.149/@comment-22439-20150315132944\nThread:151.228.209.213/@comment-22439-20151210211356\nThread:151.228.74.213/@comment-22439-20161027171113\nThread:151.228.93.10/@comment-22439-20150708203945\nThread:151.229.225.114/@comment-22439-20151020073719\nThread:151.229.226.118/@comment-22439-20150722201301\nThread:151.229.84.136/@comment-22439-20141117133513\nThread:151.230.152.197/@comment-22439-20170316173645\nThread:151.230.79.89/@comment-22439-20151024222616\nThread:151.231.142.251/@comment-22439-20150910121313\nThread:151.231.146.131/@comment-22439-20151025142339\nThread:151.250.250.100/@comment-22439-20150728172658\nThread:151.26.97.208/@comment-22439-20150412230017\nThread:151.36.111.212/@comment-22439-20160820132928\nThread:151.42.10.149/@comment-22439-20141231140853\nThread:151.42.221.250/@comment-22439-20141224164916\nThread:151.43.1.9/@comment-22439-20161102180047\nThread:151.46.83.8/@comment-22439-20141229184219\nThread:151.48.156.169/@comment-22439-20151210212708\nThread:151.56.213.189/@comment-22439-20150522154120\nThread:151.76.42.27/@comment-22439-20151101163211\nThread:152.132.10.195/@comment-22439-20150607063701\nThread:152.18.145.40/@comment-22439-20170502171009\nThread:152.243.222.75/@comment-22439-20150209201022\nThread:152.249.205.73/@comment-22439-20150815182141\nThread:152.26.198.33/@comment-22439-20170313162333\nThread:152.3.43.140/@comment-22439-20170422131205\nThread:152.66.249.108/@comment-22439-20150211191249\nThread:153.106.87.71/@comment-22439-20150323182921\nThread:153.106.90.110/@comment-22439-20150501181926\nThread:153.107.192.204/@comment-22439-20160308230626\nThread:153.107.192.205/@comment-22439-20160222213837\nThread:153.107.192.212/@comment-22439-20160406001132\nThread:153.107.192.219/@comment-22439-20160309225601\nThread:153.107.193.203/@comment-22439-20160226023240\nThread:153.107.193.208/@comment-22439-20160315234050\nThread:153.107.193.211/@comment-22439-20160223235653\nThread:153.107.193.213/@comment-22439-20160919233840\nThread:153.110.241.232/@comment-22439-20150722091305\nThread:153.133.138.69/@comment-22439-20141109042725\nThread:153.184.96.8/@comment-22439-20150921083257\nThread:153.24.73.60/@comment-22439-20160111220316\nThread:153.25.178.60/@comment-22439-20141213160643\nThread:153.42.242.254/@comment-22439-20150927220443\nThread:153.46.105.98/@comment-22439-20151026191754\nThread:153.46.97.98/@comment-22439-20150521081839\nThread:153.90.95.82/@comment-22439-20150330025734\nThread:154.42.163.226/@comment-22439-20151209164450\nThread:154.5.157.72/@comment-22439-20150510200052\nThread:154.57.228.167/@comment-22439-20170717132517\nThread:155.101.171.187/@comment-22439-20170413212547\nThread:155.194.200.20/@comment-22439-20141229190322\nThread:155.198.115.108/@comment-22439-20130918181859\nThread:155.31.49.152/@comment-22439-20150415220405\nThread:155.4.189.58/@comment-32769624-20170902204604\nThread:155.4.242.194/@comment-22439-20161201231647\nThread:155.92.109.110/@comment-22439-20141102071332\nThread:156.101.9.1/@comment-22439-20160316204340\nThread:156.3.54.202/@comment-22439-20150427145537\nThread:156.3.54.203/@comment-22439-20150424163858\nThread:156.3.54.204/@comment-22439-20150428212521\nThread:156.3.54.205/@comment-22439-20150921172732\nThread:156.3.54.206/@comment-22439-20150928182628\nThread:156.34.185.85/@comment-22439-20150406220015\nThread:156.57.102.99/@comment-22439-20160907001508\nThread:156.57.133.108/@comment-22439-20170205173904\nThread:158.125.69.147/@comment-22439-20150106173940\nThread:158.180.192.10/@comment-22439-20141005114621\nThread:158.222.131.209/@comment-22439-20141031060945\nThread:158.222.183.200/@comment-22439-20170109073316\nThread:158.234.250.71/@comment-22439-20150717124317\nThread:158.38.13.150/@comment-22439-20150128043329\nThread:158.94.71.65/@comment-22439-20150703101205\nThread:159.118.117.24/@comment-22439-20150121095814\nThread:159.118.186.83/@comment-22439-20150704175130\nThread:159.118.243.219/@comment-22439-20141020011340\nThread:159.118.249.21/@comment-32769624-20170819062531\nThread:159.118.8.125/@comment-22439-20150717054639\nThread:159.147.253.163/@comment-22439-20151201143456\nThread:159.203.17.168/@comment-22439-20160731024849\nThread:159.203.4.199/@comment-22439-20160729050936\nThread:159.205.155.50/@comment-22439-20150912174713\nThread:159.224.131.168/@comment-22439-20160920222151\nThread:159.245.16.100/@comment-22439-20160129083118\nThread:159.45.186.47/@comment-22439-20160821175221\nThread:159.45.22.6/@comment-22439-20170131194047\nThread:160.3.141.17/@comment-22439-20150925065224\nThread:160.3.242.114/@comment-22439-20160109162009\nThread:160.33.43.72/@comment-22439-20141222233119\nThread:160.44.230.197/@comment-22439-20150717070322\nThread:160.5.115.2/@comment-22439-20150522132149\nThread:160.83.30.182/@comment-22439-20160602123151\nThread:160.83.30.201/@comment-22439-20150630082036\nThread:162.104.184.13/@comment-22439-20160223033031\nThread:162.118.16.5/@comment-4403388-20170811041435\nThread:162.156.1.23/@comment-22439-20141225052647\nThread:162.156.165.159/@comment-22439-20150617062818\nThread:162.156.172.47/@comment-22439-20150211000122\nThread:162.156.176.143/@comment-22439-20160330074143\nThread:162.156.178.218/@comment-22439-20150320194500\nThread:162.156.20.215/@comment-22439-20150118184049\nThread:162.157.209.175/@comment-22439-20150702072120\nThread:162.157.24.169/@comment-22439-20150328175124\nThread:162.157.9.140/@comment-22439-20160117155331\nThread:162.192.80.24/@comment-22439-20150205054713\nThread:162.193.150.116/@comment-22439-20151114010810\nThread:162.196.161.44/@comment-22439-20151203100236\nThread:162.197.72.154/@comment-22439-20160110040719\nThread:162.201.249.235/@comment-22439-20150406014035\nThread:162.205.177.240/@comment-22439-20150202012909\nThread:162.210.127.60/@comment-22439-20150330211717\nThread:162.216.46.117/@comment-22439-20151220040203\nThread:162.224.156.75/@comment-22439-20151019020813\nThread:162.229.66.46/@comment-22439-20150803013511\nThread:162.229.93.140/@comment-22439-20150305010226\nThread:162.232.140.150/@comment-22439-20150307221036\nThread:162.233.126.114/@comment-22439-20150202103707\nThread:162.237.110.142/@comment-22439-20161220015632\nThread:162.237.252.57/@comment-22439-20150106072842\nThread:162.238.223.165/@comment-22439-20170221065330\nThread:162.239.165.34/@comment-22439-20150422182440\nThread:162.239.69.156/@comment-22439-20160111003822\nThread:162.244.200.14/@comment-22439-20161122120644\nThread:162.245.20.124/@comment-22439-20160418001838\nThread:162.245.22.219/@comment-22439-20150326210839\nThread:162.246.149.122/@comment-22439-20150103202445\nThread:162.25.24.152/@comment-22439-20160523111405\nThread:162.25.24.153/@comment-22439-20160216154808\nThread:162.250.85.154/@comment-22439-20141008043605\nThread:162.251.172.23/@comment-22439-20170429143202\nThread:162.252.63.203/@comment-22439-20151207172809\nThread:162.254.104.16/@comment-22439-20150910221753\nThread:162.255.63.134/@comment-22439-20151216180126\nThread:162.72.140.48/@comment-22439-20160617231957\nThread:162.72.41.231/@comment-22439-20150506222058\nThread:162.72.41.56/@comment-22439-20160522212701\nThread:163.118.166.124/@comment-22439-20150327135938\nThread:163.118.166.92/@comment-22439-20150325143351\nThread:163.164.17.23/@comment-22439-20150313093038\nThread:163.244.62.181/@comment-22439-20150226085939\nThread:163.244.62.182/@comment-22439-20150126194145\nThread:163.251.239.4/@comment-22439-20151002061836\nThread:163.47.222.206/@comment-22439-20141229024530\nThread:163.47.238.17/@comment-22439-20170511040526\nThread:164.159.60.2/@comment-22439-20141219165415\nThread:164.39.7.210/@comment-22439-20161116181604\nThread:164.39.72.34/@comment-22439-20151021123203\nThread:164.90.7.2/@comment-22439-20170501004856\nThread:165.120.137.201/@comment-22439-20160811134635\nThread:165.120.20.92/@comment-22439-20170518151045\nThread:165.120.216.135/@comment-22439-20160427134739\nThread:165.120.43.189/@comment-22439-20150106222011\nThread:165.120.78.95/@comment-22439-20150608010742\nThread:165.120.97.180/@comment-22439-20151014233956\nThread:165.123.133.182/@comment-22439-20151211190315\nThread:165.132.128.158/@comment-22439-20170629161208\nThread:165.166.218.17/@comment-22439-20151025203603\nThread:165.196.26.70/@comment-22439-20150324164630\nThread:165.225.80.89/@comment-4403388-20170808140734\nThread:165.228.8.88/@comment-22439-20150120101149\nThread:165.233.45.159/@comment-22439-20151224082458\nThread:165.234.40.254/@comment-22439-20161105150654\nThread:165.255.164.189/@comment-22439-20170414220834\nThread:165.91.12.235/@comment-22439-20150924025315\nThread:166.137.118.125/@comment-22439-20170717023642\nThread:166.137.118.28/@comment-22439-20170322172820\nThread:166.137.12.24/@comment-22439-20141212203424\nThread:166.137.12.89/@comment-22439-20141217011328\nThread:166.137.139.115/@comment-22439-20170629184532\nThread:166.137.139.46/@comment-32769624-20170817213554\nThread:166.137.139.51/@comment-22439-20141215140608\nThread:166.137.139.91/@comment-22439-20141206084124\nThread:166.137.14.108/@comment-22439-20150102015347\nThread:166.137.14.109/@comment-22439-20150108231913\nThread:166.137.244.78/@comment-22439-20150611160350\nThread:166.137.244.90/@comment-22439-20150705155801\nThread:166.170.14.126/@comment-22439-20170501143012\nThread:166.170.5.119/@comment-22439-20150808181447\nThread:166.181.82.53/@comment-22439-20150125135132\nThread:166.216.165.76/@comment-22439-20150210171743\nThread:166.62.217.63/@comment-22439-20150113050731\nThread:167.127.218.145/@comment-22439-20160128214424\nThread:167.176.6.8/@comment-22439-20150611190543\nThread:167.177.39.6/@comment-22439-20151109155854\nThread:167.21.142.41/@comment-22439-20170201171830\nThread:167.21.142.42/@comment-22439-20170221142000\nThread:167.21.142.43/@comment-22439-20170224174714\nThread:167.220.232.249/@comment-22439-20150318010127\nThread:167.220.26.99/@comment-22439-20150217010637\nThread:167.30.49.2/@comment-22439-20141118034348\nThread:167.88.21.135/@comment-22439-20151108093316\nThread:167.98.30.220/@comment-22439-20170504124724\nThread:168.1.53.231/@comment-22439-20170413175739\nThread:168.17.8.103/@comment-22439-20150218031359\nThread:168.20.244.9/@comment-22439-20150331220051\nThread:168.235.195.182/@comment-22439-20150527234252\nThread:168.254.225.154/@comment-22439-20151202191759\nThread:168.39.155.31/@comment-22439-20160211222506\nThread:168.87.3.33/@comment-22439-20150410084759\nThread:168.99.197.15/@comment-22439-20140910171643\nThread:169.204.228.90/@comment-22439-20150508170137\nThread:169.204.229.102/@comment-22439-20170112174824\nThread:169.204.229.202/@comment-22439-20160224182209\nThread:169.231.141.119/@comment-22439-20161222201328\nThread:169.234.217.23/@comment-22439-20160306194031\nThread:169.244.100.48/@comment-22439-20150518175505\nThread:169.244.51.180/@comment-22439-20151206001800\nThread:16tribe2/@comment-22439-20161006193843\nThread:170.211.150.62/@comment-32769624-20170817202333\nThread:170.218.231.21/@comment-22439-20150630203911\nThread:170.248.172.62/@comment-22439-20150309154111\nThread:171.33.197.106/@comment-22439-20161108105648\nThread:171.33.249.49/@comment-22439-20170108011953\nThread:171.96.182.215/@comment-22439-20150627140908\nThread:172.103.23.159/@comment-22439-20170314184939\nThread:172.103.31.182/@comment-22439-20170224010650\nThread:172.110.128.134/@comment-22439-20170128182814\nThread:172.111.180.163/@comment-32769624-20170831075901\nThread:172.112.57.94/@comment-22439-20151021065219\nThread:172.112.71.88/@comment-22439-20151223194830\nThread:172.115.111.97/@comment-22439-20160827192610\nThread:172.115.113.91/@comment-22439-20161122200958\nThread:172.127.158.139/@comment-22439-20170115203454\nThread:172.15.14.195/@comment-22439-20151017052805\nThread:172.15.152.85/@comment-22439-20150418124022\nThread:172.164.31.152/@comment-22439-20160825151433\nThread:172.198.205.197/@comment-22439-20151208125023\nThread:172.2.69.44/@comment-22439-20151015070949\nThread:172.218.223.166/@comment-22439-20150427014024\nThread:172.218.89.196/@comment-22439-20150624031149\nThread:172.218.89.53/@comment-22439-20160103070243\nThread:172.219.187.22/@comment-22439-20170617220444\nThread:172.248.117.120/@comment-22439-20150714014927\nThread:172.248.16.23/@comment-22439-20150113082853\nThread:172.248.218.92/@comment-22439-20160813205612\nThread:172.248.55.166/@comment-22439-20170618205231\nThread:172.251.42.58/@comment-22439-20150325040447\nThread:172.251.91.13/@comment-22439-20150412074252\nThread:172.4.119.131/@comment-22439-20150322185127\nThread:172.56.13.128/@comment-22439-20160516193658\nThread:172.56.13.27/@comment-22439-20141219222942\nThread:172.56.15.201/@comment-22439-20150318153340\nThread:172.56.2.7/@comment-22439-20150904095129\nThread:172.56.26.117/@comment-22439-20150119160804\nThread:172.56.29.82/@comment-22439-20141226022525\nThread:172.56.30.227/@comment-22439-20151215195530\nThread:172.56.38.27/@comment-22439-20140907004518\nThread:172.56.41.95/@comment-22439-20161115050413\nThread:172.58.105.226/@comment-22439-20160818055908\nThread:172.58.144.247/@comment-22439-20170418034816\nThread:172.58.168.158/@comment-22439-20170215170813\nThread:172.58.169.16/@comment-22439-20170208111310\nThread:172.58.201.251/@comment-32769624-20170820032048\nThread:172.58.35.196/@comment-22439-20161129205147\nThread:172.58.41.1/@comment-22439-20151204175742\nThread:172.6.217.252/@comment-22439-20160110071102\nThread:172.7.232.80/@comment-22439-20160622220146\nThread:172.72.228.195/@comment-22439-20150717145629\nThread:172.73.212.223/@comment-22439-20160209041750\nThread:172.73.222.204/@comment-22439-20161114021829\nThread:172.73.228.153/@comment-22439-20151023001303\nThread:172.73.5.12/@comment-22439-20150721094741\nThread:172.73.59.201/@comment-22439-20161018200013\nThread:172.74.44.60/@comment-22439-20150621052851\nThread:172.78.201.158/@comment-22439-20150726042725\nThread:172.79.89.40/@comment-22439-20170116224733\nThread:172.8.173.4/@comment-22439-20151101003608\nThread:172.88.141.191/@comment-22439-20151129054806\nThread:172.88.235.95/@comment-22439-20160213030602\nThread:172.88.243.38/@comment-22439-20170414061445\nThread:172.89.27.162/@comment-22439-20151129103309\nThread:172.9.114.212/@comment-22439-20170610131357\nThread:172.9.224.106/@comment-22439-20150324003951\nThread:172.90.77.127/@comment-22439-20150716013447\nThread:172.94.18.73/@comment-22439-20170525103307\nThread:172.98.220.57/@comment-22439-20150713193846\nThread:172.98.67.62/@comment-22439-20160211011208\nThread:172.98.84.222/@comment-22439-20160928125626\nThread:172.98.85.78/@comment-22439-20160130225404\nThread:173.11.190.254/@comment-22439-20150507192141\nThread:173.12.169.77/@comment-22439-20170119001342\nThread:173.13.34.205/@comment-22439-20151013173535\nThread:173.15.201.129/@comment-22439-20150405045156\nThread:173.15.24.9/@comment-22439-20150114141413\nThread:173.16.210.71/@comment-22439-20170128112938\nThread:173.160.181.149/@comment-22439-20141217114700\nThread:173.160.232.227/@comment-22439-20150927050340\nThread:173.162.212.237/@comment-22439-20150929173312\nThread:173.168.160.53/@comment-22439-20150701083031\nThread:173.168.7.123/@comment-22439-20150205185720\nThread:173.168.95.167/@comment-22439-20150408075920\nThread:173.169.188.219/@comment-32769624-20170909142845\nThread:173.17.142.234/@comment-22439-20150918054227\nThread:173.17.219.16/@comment-22439-20151229041041\nThread:173.17.249.229/@comment-22439-20160104224812\nThread:173.170.161.72/@comment-22439-20150816172638\nThread:173.172.185.51/@comment-22439-20160221045017\nThread:173.172.206.202/@comment-22439-20160920021516\nThread:173.172.212.185/@comment-22439-20150806010805\nThread:173.172.220.8/@comment-22439-20150131025800\nThread:173.174.167.170/@comment-22439-20150502055930\nThread:173.174.214.33/@comment-22439-20170615211709\nThread:173.176.60.145/@comment-22439-20150418035530\nThread:173.177.221.56/@comment-22439-20151211050728\nThread:173.178.71.136/@comment-22439-20150524025045\nThread:173.179.224.185/@comment-22439-20150323185047\nThread:173.179.88.88/@comment-22439-20161211131349\nThread:173.179.95.21/@comment-22439-20160803002618\nThread:173.18.248.45/@comment-22439-20150606194830\nThread:173.180.246.140/@comment-22439-20150420221305\nThread:173.180.253.243/@comment-22439-20160927011239\nThread:173.183.133.158/@comment-22439-20150927013001\nThread:173.189.159.193/@comment-22439-20150605055508\nThread:173.19.98.227/@comment-22439-20170608214236\nThread:173.191.151.131/@comment-22439-20151224082926\nThread:173.198.110.58/@comment-22439-20161221195306\nThread:173.198.6.106/@comment-22439-20151130173315\nThread:173.2.151.74/@comment-22439-20150116060454\nThread:173.2.17.108/@comment-22439-20170720042539\nThread:173.20.138.184/@comment-22439-20160304210246\nThread:173.20.155.11/@comment-22439-20151216161343\nThread:173.20.166.135/@comment-22439-20151023004422\nThread:173.20.28.32/@comment-22439-20150205100541\nThread:173.209.211.148/@comment-22439-20150302235953\nThread:173.210.188.136/@comment-22439-20170803065256\nThread:173.210.244.171/@comment-22439-20150714050502\nThread:173.213.212.213/@comment-22439-20170801010246\nThread:173.216.202.241/@comment-22439-20151104040612\nThread:173.216.226.58/@comment-22439-20160613005153\nThread:173.216.48.69/@comment-22439-20170716194531\nThread:173.217.238.130/@comment-22439-20141123094559\nThread:173.217.5.86/@comment-22439-20150929224809\nThread:173.217.50.78/@comment-22439-20150529010412\nThread:173.218.240.207/@comment-22439-20151017061613\nThread:173.218.6.95/@comment-22439-20160109104408\nThread:173.219.36.16/@comment-22439-20141007041621\nThread:173.22.6.232/@comment-22439-20150915040827\nThread:173.22.84.205/@comment-22439-20150405024921\nThread:173.225.157.104/@comment-22439-20141021023215\nThread:173.225.179.34/@comment-22439-20161216172953\nThread:173.226.237.130/@comment-22439-20151111212930\nThread:173.227.92.114/@comment-22439-20150423161628\nThread:173.228.12.43/@comment-22439-20150611184001\nThread:173.228.91.153/@comment-22439-20150224101928\nThread:173.23.120.170/@comment-22439-20170123194149\nThread:173.23.156.228/@comment-22439-20150518194659\nThread:173.23.170.210/@comment-22439-20150401010417\nThread:173.234.216.95/@comment-22439-20170113151408\nThread:173.234.43.250/@comment-22439-20141208165857\nThread:173.237.109.109/@comment-22439-20160202211311\nThread:173.238.241.135/@comment-22439-20160712220055\nThread:173.239.197.4/@comment-22439-20170409005944\nThread:173.239.228.46/@comment-22439-20170628050321\nThread:173.24.129.45/@comment-22439-20170208163947\nThread:173.24.150.13/@comment-22439-20150422211551\nThread:173.24.227.48/@comment-22439-20150204124251\nThread:173.242.193.41/@comment-32769624-20170822021045\nThread:173.244.209.76/@comment-22439-20170208100026\nThread:173.244.44.67/@comment-22439-20170616044713\nThread:173.25.0.217/@comment-22439-20141216030539\nThread:173.25.140.225/@comment-22439-20151019154255\nThread:173.25.77.29/@comment-22439-20150906215922\nThread:173.250.160.217/@comment-22439-20151130202843\nThread:173.252.62.122/@comment-22439-20141222200436\nThread:173.26.133.14/@comment-22439-20151226012356\nThread:173.26.21.73/@comment-22439-20170617201103\nThread:173.27.146.27/@comment-22439-20141221172745\nThread:173.27.168.208/@comment-22439-20170113072358\nThread:173.27.2.135/@comment-22439-20150403020116\nThread:173.27.88.60/@comment-22439-20160604180154\nThread:173.29.116.54/@comment-22439-20160213050340\nThread:173.29.224.36/@comment-22439-20151105060621\nThread:173.30.120.225/@comment-22439-20150215003704\nThread:173.30.161.210/@comment-22439-20170508012114\nThread:173.30.172.18/@comment-22439-20160910065333\nThread:173.30.5.165/@comment-22439-20150902051656\nThread:173.31.27.48/@comment-22439-20170201065859\nThread:173.31.85.46/@comment-22439-20150123032401\nThread:173.32.146.21/@comment-22439-20150314181250\nThread:173.32.9.226/@comment-22439-20141124205938\nThread:173.33.138.180/@comment-22439-20160101040437\nThread:173.34.29.135/@comment-22439-20160404022535\nThread:173.35.86.182/@comment-22439-20150324231512\nThread:173.44.77.26/@comment-22439-20150801210943\nThread:173.46.234.172/@comment-22439-20141227002601\nThread:173.46.76.146/@comment-22439-20161129052946\nThread:173.46.76.172/@comment-22439-20161124111040\nThread:173.48.102.93/@comment-22439-20160206181140\nThread:173.49.136.54/@comment-22439-20150121094747\nThread:173.49.228.169/@comment-22439-20160510155939\nThread:173.49.73.157/@comment-22439-20170801220409\nThread:173.51.162.30/@comment-22439-20151209084154\nThread:173.51.204.88/@comment-22439-20160103094322\nThread:173.51.47.143/@comment-22439-20141002060707\nThread:173.52.208.105/@comment-22439-20150508235612\nThread:173.52.97.160/@comment-22439-20160401184256\nThread:173.52.97.226/@comment-22439-20161109195819\nThread:173.54.228.91/@comment-22439-20150707014144\nThread:173.55.173.227/@comment-22439-20150512041507\nThread:173.57.1.190/@comment-22439-20141227015947\nThread:173.57.13.97/@comment-22439-20150430180829\nThread:173.57.144.28/@comment-22439-20160121235752\nThread:173.57.27.163/@comment-22439-20151027175837\nThread:173.59.117.241/@comment-22439-20161218214346\nThread:173.60.232.157/@comment-22439-20160805191357\nThread:173.61.193.177/@comment-22439-20150826195419\nThread:173.64.201.135/@comment-22439-20151003042937\nThread:173.65.123.100/@comment-22439-20150902065547\nThread:173.65.131.178/@comment-22439-20160229115043\nThread:173.65.132.78/@comment-22439-20151119190549\nThread:173.65.143.243/@comment-22439-20150406051351\nThread:173.65.200.224/@comment-22439-20150414044625\nThread:173.65.254.117/@comment-22439-20160505001416\nThread:173.66.176.182/@comment-22439-20150425193927\nThread:173.67.1.174/@comment-22439-20141208211811\nThread:173.67.15.85/@comment-22439-20150415011826\nThread:173.69.129.2/@comment-22439-20170712195710\nThread:173.69.136.212/@comment-22439-20150415013106\nThread:173.69.154.83/@comment-22439-20170107163207\nThread:173.69.157.180/@comment-22439-20170606000525\nThread:173.69.192.124/@comment-22439-20150205014021\nThread:173.69.2.122/@comment-22439-20170205222723\nThread:173.69.56.96/@comment-22439-20160103133440\nThread:173.70.28.248/@comment-22439-20160514152028\nThread:173.73.157.146/@comment-22439-20160619150403\nThread:173.73.173.35/@comment-22439-20170128233837\nThread:173.74.224.50/@comment-22439-20141222025831\nThread:173.74.253.161/@comment-22439-20150402233557\nThread:173.74.64.218/@comment-22439-20150110235641\nThread:173.75.143.193/@comment-22439-20151202075303\nThread:173.75.248.231/@comment-22439-20150101190334\nThread:173.75.45.64/@comment-22439-20141217000017\nThread:173.75.56.70/@comment-22439-20160604225223\nThread:173.76.104.238/@comment-22439-20150912013827\nThread:173.76.5.111/@comment-22439-20150720125215\nThread:173.79.1.94/@comment-22439-20150418205204\nThread:173.79.220.63/@comment-22439-20150415205634\nThread:173.79.4.227/@comment-22439-20150623212317\nThread:173.79.7.216/@comment-22439-20141225232614\nThread:173.79.92.219/@comment-22439-20161028192853\nThread:173.80.57.110/@comment-22439-20161111120045\nThread:173.80.81.134/@comment-22439-20161003013948\nThread:173.80.93.74/@comment-22439-20151127023607\nThread:173.89.136.33/@comment-22439-20151108204339\nThread:173.89.19.113/@comment-22439-20161222015556\nThread:173.89.60.82/@comment-22439-20150622041609\nThread:173.9.97.37/@comment-22439-20160528145533\nThread:174.0.236.210/@comment-22439-20160805064533\nThread:174.1.52.74/@comment-22439-20151227004044\nThread:174.100.137.70/@comment-22439-20150430193637\nThread:174.100.2.182/@comment-22439-20160112225131\nThread:174.101.253.241/@comment-22439-20161218081908\nThread:174.101.96.241/@comment-22439-20160815035857\nThread:174.102.154.114/@comment-22439-20150123032727\nThread:174.102.96.147/@comment-22439-20141229071555\nThread:174.103.135.240/@comment-22439-20150121124308\nThread:174.106.205.27/@comment-22439-20150115235534\nThread:174.108.58.251/@comment-22439-20141110023350\nThread:174.109.116.215/@comment-22439-20150831234707\nThread:174.109.186.40/@comment-22439-20160303222308\nThread:174.109.32.237/@comment-22439-20150513010424\nThread:174.110.216.144/@comment-22439-20160419224351\nThread:174.111.50.0/@comment-22439-20150106064718\nThread:174.114.1.58/@comment-22439-20150222022520\nThread:174.114.120.34/@comment-22439-20151218212134\nThread:174.117.121.159/@comment-22439-20141101171905\nThread:174.125.205.5/@comment-22439-20160910083652\nThread:174.125.235.167/@comment-22439-20150421063846\nThread:174.125.3.168/@comment-22439-20150926180102\nThread:174.125.8.46/@comment-22439-20150914004740\nThread:174.125.96.212/@comment-22439-20160820233405\nThread:174.126.123.94/@comment-22439-20151221064643\nThread:174.126.186.138/@comment-22439-20150909221603\nThread:174.126.248.172/@comment-22439-20151126185740\nThread:174.126.88.187/@comment-22439-20160823013007\nThread:174.127.236.94/@comment-22439-20170705040158\nThread:174.131.45.168/@comment-22439-20141218211031\nThread:174.134.139.244/@comment-22439-20150306041909\nThread:174.135.26.105/@comment-22439-20151229053238\nThread:174.16.78.14/@comment-22439-20160821223239\nThread:174.18.30.92/@comment-22439-20160807054251\nThread:174.18.57.189/@comment-22439-20160815070831\nThread:174.18.60.147/@comment-22439-20160608085028\nThread:174.19.187.135/@comment-22439-20151113233619\nThread:174.2.161.32/@comment-22439-20150830042003\nThread:174.2.66.60/@comment-22439-20150713180907\nThread:174.20.49.239/@comment-22439-20170425103533\nThread:174.21.41.216/@comment-22439-20151204070504\nThread:174.22.224.172/@comment-22439-20150303215820\nThread:174.22.230.75/@comment-22439-20150605182334\nThread:174.22.239.189/@comment-22439-20140904065135\nThread:174.22.4.78/@comment-22439-20150409032634\nThread:174.227.6.14/@comment-32769624-20170825132534\nThread:174.23.194.56/@comment-22439-20150408222324\nThread:174.238.16.30/@comment-22439-20170617000219\nThread:174.24.238.158/@comment-22439-20151205033801\nThread:174.25.247.109/@comment-22439-20161217112627\nThread:174.255.128.80/@comment-4403388-20170809020025\nThread:174.26.132.67/@comment-22439-20160106163143\nThread:174.26.78.242/@comment-22439-20150722000055\nThread:174.27.115.135/@comment-22439-20150717203922\nThread:174.28.115.61/@comment-22439-20150329184657\nThread:174.28.246.220/@comment-32769624-20170818061004\nThread:174.3.116.101/@comment-22439-20170301201454\nThread:174.3.153.65/@comment-22439-20150127070109\nThread:174.3.243.199/@comment-22439-20170717091603\nThread:174.31.166.220/@comment-22439-20160219074255\nThread:174.4.53.44/@comment-22439-20150731041100\nThread:174.44.1.142/@comment-22439-20150911220902\nThread:174.44.114.247/@comment-22439-20150303235428\nThread:174.44.152.189/@comment-32769624-20170830193741\nThread:174.45.225.212/@comment-22439-20170606114134\nThread:174.45.58.86/@comment-22439-20141220023111\nThread:174.47.231.44/@comment-22439-20170723085838\nThread:174.47.79.70/@comment-22439-20151202234254\nThread:174.49.124.129/@comment-22439-20161116195059\nThread:174.49.197.5/@comment-22439-20160824023335\nThread:174.49.239.228/@comment-22439-20150322190722\nThread:174.49.85.122/@comment-22439-20160813192518\nThread:174.5.68.27/@comment-22439-20150426062141\nThread:174.50.173.131/@comment-22439-20161013052609\nThread:174.50.181.14/@comment-22439-20160415140919\nThread:174.51.8.121/@comment-22439-20151218025034\nThread:174.51.82.139/@comment-22439-20150130065550\nThread:174.52.1.8/@comment-22439-20150629014644\nThread:174.52.104.159/@comment-22439-20141230230853\nThread:174.52.137.239/@comment-22439-20150731170355\nThread:174.52.196.99/@comment-22439-20151008235721\nThread:174.52.214.245/@comment-22439-20161113061911\nThread:174.52.240.177/@comment-22439-20150716223303\nThread:174.53.183.100/@comment-22439-20150913183505\nThread:174.53.82.233/@comment-22439-20160222053437\nThread:174.54.154.83/@comment-22439-20150331052816\nThread:174.54.216.149/@comment-22439-20141226202400\nThread:174.55.166.100/@comment-22439-20150711025925\nThread:174.56.100.46/@comment-22439-20150318042840\nThread:174.56.11.88/@comment-22439-20170514024815\nThread:174.56.70.121/@comment-22439-20160101030853\nThread:174.57.9.59/@comment-22439-20161012001452\nThread:174.58.35.133/@comment-22439-20150511152923\nThread:174.59.146.48/@comment-22439-20151229020743\nThread:174.59.238.138/@comment-22439-20151017174848\nThread:174.60.126.10/@comment-22439-20160807225510\nThread:174.60.56.102/@comment-22439-20150510034626\nThread:174.60.8.181/@comment-22439-20150817005127\nThread:174.61.152.149/@comment-22439-20150320055602\nThread:174.61.66.210/@comment-22439-20160119133817\nThread:174.62.227.131/@comment-22439-20151003151453\nThread:174.63.198.104/@comment-22439-20170228204927\nThread:174.64.107.110/@comment-22439-20150529191033\nThread:174.64.16.26/@comment-22439-20160424215517\nThread:174.64.6.239/@comment-22439-20150528191409\nThread:174.65.102.230/@comment-22439-20150107233858\nThread:174.69.119.169/@comment-22439-20150322192704\nThread:174.69.33.97/@comment-22439-20150524060908\nThread:174.7.116.84/@comment-22439-20151221063133\nThread:174.7.225.136/@comment-22439-20170117082451\nThread:174.7.36.10/@comment-22439-20160302230952\nThread:174.70.137.232/@comment-22439-20150531023908\nThread:174.71.23.232/@comment-22439-20160117125038\nThread:174.71.84.171/@comment-22439-20150912011813\nThread:174.73.123.39/@comment-22439-20151216064445\nThread:174.74.18.56/@comment-22439-20160210015513\nThread:174.74.81.170/@comment-22439-20150409063703\nThread:174.79.174.130/@comment-22439-20150915031302\nThread:174.79.2.245/@comment-22439-20150507192322\nThread:174.89.132.60/@comment-22439-20170313054512\nThread:174.89.135.213/@comment-22439-20161019225913\nThread:174.89.153.58/@comment-22439-20170307035259\nThread:174.92.220.239/@comment-22439-20160728033021\nThread:174.93.29.163/@comment-22439-20160304015222\nThread:174.93.58.169/@comment-22439-20150322080203\nThread:174.95.30.214/@comment-22439-20170213171934\nThread:174.95.45.251/@comment-22439-20150518211610\nThread:174.95.73.33/@comment-22439-20160114050920\nThread:174.96.69.127/@comment-22439-20150313090329\nThread:174.98.122.121/@comment-22439-20141126150531\nThread:174.99.24.22/@comment-22439-20160528214953\nThread:174.99.31.142/@comment-22439-20151231025042\nThread:174.99.32.32/@comment-22439-20150310210217\nThread:175.139.46.101/@comment-22439-20151130043159\nThread:175.141.192.12/@comment-22439-20150329045231\nThread:175.141.58.244/@comment-22439-20150915051522\nThread:175.145.249.40/@comment-22439-20160207101431\nThread:175.145.50.111/@comment-22439-20160906084401\nThread:175.156.1.180/@comment-22439-20160108190129\nThread:175.156.139.49/@comment-22439-20150802023303\nThread:175.156.150.184/@comment-22439-20150216093553\nThread:175.156.174.207/@comment-22439-20150408133307\nThread:175.156.247.68/@comment-22439-20150409110617\nThread:175.156.52.51/@comment-22439-20151230210014\nThread:175.203.72.203/@comment-22439-20150503054059\nThread:175.214.247.229/@comment-22439-20150803154750\nThread:175.38.234.198/@comment-22439-20150503005439\nThread:175.45.116.59/@comment-22439-20150528014537\nThread:175.45.116.60/@comment-22439-20151016003159\nThread:175.45.124.38/@comment-22439-20150712234221\nThread:176.10.136.110/@comment-22439-20160221170817\nThread:176.10.225.220/@comment-22439-20141215045941\nThread:176.10.239.156/@comment-22439-20141225143746\nThread:176.111.239.4/@comment-22439-20161229200014\nThread:176.124.224.33/@comment-22439-20150730094554\nThread:176.127.74.153/@comment-22439-20160408175627\nThread:176.14.163.205/@comment-22439-20150404103620\nThread:176.144.2.105/@comment-22439-20160408191715\nThread:176.146.128.44/@comment-22439-20170401114730\nThread:176.182.28.45/@comment-22439-20150426213028\nThread:176.183.118.17/@comment-22439-20160117163201\nThread:176.183.119.34/@comment-22439-20150408203645\nThread:176.183.148.213/@comment-22439-20150724144754\nThread:176.183.193.156/@comment-22439-20150124165350\nThread:176.193.109.147/@comment-22439-20141229215744\nThread:176.193.153.105/@comment-22439-20150413130254\nThread:176.194.59.230/@comment-22439-20150110184236\nThread:176.199.173.71/@comment-22439-20141228005103\nThread:176.199.186.213/@comment-22439-20160126052050\nThread:176.199.187.70/@comment-22439-20150510200732\nThread:176.2.117.98/@comment-22439-20150611004645\nThread:176.21.254.58/@comment-22439-20150104111206\nThread:176.212.206.134/@comment-22439-20151217114424\nThread:176.212.243.155/@comment-22439-20160913171629\nThread:176.213.115.43/@comment-22439-20150110045407\nThread:176.213.145.52/@comment-22439-20151201163405\nThread:176.215.34.237/@comment-22439-20170107065244\nThread:176.221.121.18/@comment-22439-20160325191604\nThread:176.221.122.85/@comment-22439-20170313145258\nThread:176.221.125.53/@comment-22439-20160311221808\nThread:176.221.77.250/@comment-22439-20170712101009\nThread:176.222.224.253/@comment-22439-20160527095656\nThread:176.226.221.2/@comment-22439-20151025140926\nThread:176.23.165.113/@comment-22439-20170422210826\nThread:176.23.45.253/@comment-22439-20160705210416\nThread:176.23.88.230/@comment-22439-20170317031934\nThread:176.233.132.40/@comment-22439-20160213201322\nThread:176.24.154.53/@comment-22439-20161108002019\nThread:176.240.172.3/@comment-22439-20170630104330\nThread:176.240.96.204/@comment-22439-20150713140918\nThread:176.241.72.203/@comment-131.228.32.166-20190313141733\nThread:176.241.72.203/@comment-176.241.72.203-20190726162925\nThread:176.248.115.26/@comment-22439-20160714121446\nThread:176.248.234.156/@comment-22439-20141224073651\nThread:176.249.248.245/@comment-22439-20150915174128\nThread:176.249.62.114/@comment-4403388-20170809234219\nThread:176.25.205.232/@comment-22439-20150711213205\nThread:176.25.205.232/@comment-5959508-20150711235151\nThread:176.25.248.74/@comment-22439-20151219011858\nThread:176.25.8.201/@comment-22439-20170212162456\nThread:176.250.25.0/@comment-22439-20150101111644\nThread:176.250.99.141/@comment-22439-20141231235640\nThread:176.251.25.69/@comment-22439-20150727153834\nThread:176.252.138.89/@comment-22439-20151025184910\nThread:176.252.55.21/@comment-22439-20160207222440\nThread:176.252.90.172/@comment-22439-20160605083429\nThread:176.253.21.109/@comment-22439-20160709190536\nThread:176.26.21.91/@comment-22439-20160602195006\nThread:176.26.233.188/@comment-22439-20170422001929\nThread:176.26.36.75/@comment-22439-20160620195339\nThread:176.26.93.243/@comment-22439-20170213204443\nThread:176.27.219.146/@comment-22439-20160508200912\nThread:176.27.87.18/@comment-22439-20160513061149\nThread:176.4.126.235/@comment-22439-20150617015401\nThread:176.4.79.99/@comment-22439-20150618010540\nThread:176.43.142.195/@comment-22439-20160616030138\nThread:176.46.45.198/@comment-22439-20150726111227\nThread:176.50.179.125/@comment-22439-20160106073051\nThread:176.56.198.24/@comment-22439-20151009194205\nThread:176.58.179.80/@comment-22439-20141022171503\nThread:176.6.118.4/@comment-22439-20160530165137\nThread:176.61.103.233/@comment-22439-20150914181558\nThread:176.61.108.152/@comment-22439-20150911101134\nThread:176.61.26.83/@comment-22439-20141229205658\nThread:176.63.141.52/@comment-22439-20151218170043\nThread:176.63.17.132/@comment-22439-20160922115843\nThread:176.63.20.50/@comment-22439-20160711183153\nThread:176.63.243.143/@comment-22439-20160201214439\nThread:176.63.28.13/@comment-22439-20161225191726\nThread:176.63.31.242/@comment-22439-20151116005814\nThread:176.64.145.1/@comment-22439-20150911140753\nThread:176.68.80.46/@comment-22439-20150914231442\nThread:176.71.177.202/@comment-22439-20161107180358\nThread:176.72.249.61/@comment-22439-20140506063943\nThread:176.73.127.181/@comment-22439-20151216053719\nThread:176.79.144.5/@comment-22439-20151111232639\nThread:176.86.164.55/@comment-32769624-20170911193057\nThread:176.93.8.142/@comment-22439-20150627190156\nThread:177.130.105.91/@comment-22439-20160115014512\nThread:177.132.146.220/@comment-22439-20150704053915\nThread:177.142.217.184/@comment-22439-20170218174319\nThread:177.154.35.10/@comment-22439-20170109044343\nThread:177.157.156.4/@comment-22439-20160826165952\nThread:177.157.194.143/@comment-22439-20161210174023\nThread:177.158.21.99/@comment-22439-20170511041941\nThread:177.158.7.235/@comment-22439-20150914182303\nThread:177.180.27.202/@comment-22439-20170427164341\nThread:177.182.230.18/@comment-22439-20161116015453\nThread:177.192.6.177/@comment-22439-20160406105708\nThread:177.194.13.244/@comment-22439-20141220010922\nThread:177.194.250.67/@comment-22439-20170228092156\nThread:177.201.102.222/@comment-22439-20150118054317\nThread:177.205.228.58/@comment-22439-20150403045519\nThread:177.221.125.224/@comment-22439-20160124125846\nThread:177.235.110.238/@comment-22439-20160815132929\nThread:177.249.140.164/@comment-22439-20150526182341\nThread:177.32.150.96/@comment-22439-20151205002213\nThread:177.40.37.81/@comment-22439-20160309125710\nThread:177.41.34.78/@comment-22439-20160116150140\nThread:177.42.42.226/@comment-22439-20170429192220\nThread:177.43.130.228/@comment-22439-20160719180531\nThread:177.96.244.191/@comment-22439-20150826175655\nThread:177.98.11.58/@comment-22439-20150425134744\nThread:177.99.241.34/@comment-22439-20151014150359\nThread:178.1.11.217/@comment-22439-20150321111917\nThread:178.10.193.255/@comment-22439-20160102225611\nThread:178.10.29.2/@comment-22439-20151215094930\nThread:178.115.130.90/@comment-22439-20170506105549\nThread:178.12.151.17/@comment-22439-20141221113722\nThread:178.12.223.55/@comment-22439-20160923000448\nThread:178.12.48.41/@comment-22439-20150804165533\nThread:178.12.56.22/@comment-22439-20151202222825\nThread:178.121.142.230/@comment-22439-20150620095052\nThread:178.121.180.102/@comment-22439-20150623192147\nThread:178.123.9.193/@comment-22439-20141216053736\nThread:178.128.24.175/@comment-22439-20161022024932\nThread:178.135.88.137/@comment-22439-20161223115035\nThread:178.141.136.199/@comment-22439-20150109000637\nThread:178.141.159.123/@comment-22439-20151210131534\nThread:178.141.203.18/@comment-22439-20150628182703\nThread:178.141.3.141/@comment-22439-20150203185651\nThread:178.141.3.171/@comment-22439-20150119185637\nThread:178.142.112.182/@comment-22439-20151121062348\nThread:178.143.140.152/@comment-22439-20151023182006\nThread:178.148.184.203/@comment-22439-20150401032038\nThread:178.148.38.158/@comment-22439-20150111220632\nThread:178.151.142.189/@comment-22439-20150107203329\nThread:178.155.208.253/@comment-22439-20140922113949\nThread:178.157.249.248/@comment-22439-20160109135505\nThread:178.157.252.120/@comment-22439-20150702220533\nThread:178.164.118.5/@comment-22439-20170419160302\nThread:178.164.201.234/@comment-22439-20160118200334\nThread:178.164.229.193/@comment-22439-20160213212259\nThread:178.165.128.167/@comment-22439-20170130225954\nThread:178.167.254.97/@comment-22439-20150110180205\nThread:178.168.68.37/@comment-22439-20150422001808\nThread:178.172.132.51/@comment-22439-20160130192427\nThread:178.172.239.241/@comment-22439-20150616102601\nThread:178.174.197.83/@comment-22439-20150102192828\nThread:178.174.229.186/@comment-22439-20150826155952\nThread:178.19.224.14/@comment-22439-20150325213348\nThread:178.191.67.160/@comment-22439-20170528212659\nThread:178.192.134.124/@comment-22439-20150122202533\nThread:178.197.227.1/@comment-22439-20170126152327\nThread:178.197.228.40/@comment-22439-20151210115542\nThread:178.197.228.86/@comment-32769624-20170908224708\nThread:178.197.230.32/@comment-22439-20150124183902\nThread:178.2.208.228/@comment-22439-20151203212316\nThread:178.2.220.88/@comment-22439-20150114003802\nThread:178.200.5.157/@comment-22439-20150128202631\nThread:178.201.119.229/@comment-22439-20141211103622\nThread:178.201.243.73/@comment-22439-20160410115618\nThread:178.201.4.219/@comment-22439-20150530200732\nThread:178.202.127.237/@comment-22439-20160221170307\nThread:178.202.150.158/@comment-22439-20170707152554\nThread:178.202.166.75/@comment-22439-20170327185558\nThread:178.202.191.244/@comment-22439-20161206142806\nThread:178.202.191.36/@comment-22439-20170304192932\nThread:178.202.48.107/@comment-22439-20150724112659\nThread:178.203.14.187/@comment-22439-20150418080224\nThread:178.203.164.127/@comment-22439-20160317214430\nThread:178.203.233.162/@comment-22439-20160921211448\nThread:178.203.233.27/@comment-22439-20160828101829\nThread:178.203.234.4/@comment-22439-20161130171357\nThread:178.203.72.86/@comment-22439-20141222150531\nThread:178.205.62.0/@comment-22439-20141002184754\nThread:178.205.63.0/@comment-22439-20141122213439\nThread:178.205.63.2/@comment-22439-20141003105004\nThread:178.208.192.105/@comment-22439-20151022221013\nThread:178.210.254.14/@comment-22439-20141213095141\nThread:178.212.43.167/@comment-22439-20170419115214\nThread:178.215.82.71/@comment-22439-20160831191440\nThread:178.216.149.2/@comment-22439-20141222152401\nThread:178.220.222.6/@comment-22439-20170422023123\nThread:178.221.129.195/@comment-22439-20170524063723\nThread:178.232.160.178/@comment-22439-20160320193124\nThread:178.232.225.161/@comment-22439-20150524134830\nThread:178.233.173.175/@comment-22439-20140517031105\nThread:178.238.155.181/@comment-22439-20150108224911\nThread:178.238.167.254/@comment-22439-20160105212646\nThread:178.239.96.217/@comment-22439-20151214125749\nThread:178.240.8.18/@comment-22439-20151201025757\nThread:178.248.249.86/@comment-22439-20150503112740\nThread:178.25.159.100/@comment-22439-20151216182908\nThread:178.250.179.140/@comment-22439-20150618091420\nThread:178.27.154.92/@comment-22439-20150214183621\nThread:178.27.173.10/@comment-22439-20150205011539\nThread:178.27.174.74/@comment-22439-20150822195904\nThread:178.3.138.195/@comment-22439-20150103170220\nThread:178.36.122.73/@comment-22439-20151105012300\nThread:178.36.71.91/@comment-22439-20150402001837\nThread:178.37.14.25/@comment-22439-20170227152400\nThread:178.37.188.152/@comment-22439-20160107213103\nThread:178.37.21.16/@comment-22439-20170226193603\nThread:178.40.145.227/@comment-22439-20150107145732\nThread:178.41.133.255/@comment-22439-20170704224324\nThread:178.42.151.14/@comment-22439-20160309222614\nThread:178.42.60.252/@comment-22439-20150923074548\nThread:178.47.125.105/@comment-22439-20161010211209\nThread:178.49.96.78/@comment-22439-20150709140502\nThread:178.61.129.150/@comment-22439-20150530205406\nThread:178.62.34.82/@comment-22439-20160718174926\nThread:178.62.5.157/@comment-22439-20160211141843\nThread:178.62.6.233/@comment-22439-20160120132726\nThread:178.62.64.106/@comment-22439-20150626130817\nThread:178.62.85.75/@comment-22439-20151023123906\nThread:178.7.157.248/@comment-22439-20141030205247\nThread:178.74.102.250/@comment-22439-20150109144410\nThread:178.74.46.71/@comment-22439-20150606143659\nThread:178.75.142.231/@comment-22439-20151014204413\nThread:178.75.171.94/@comment-22439-20150330005934\nThread:178.76.177.253/@comment-22439-20141206223801\nThread:178.76.233.114/@comment-22439-20151220213612\nThread:178.78.77.51/@comment-22439-20160104144026\nThread:178.8.140.214/@comment-22439-20150312175139\nThread:178.82.101.145/@comment-22439-20150724001939\nThread:178.83.12.151/@comment-22439-20160605103901\nThread:178.83.194.237/@comment-22439-20150317122756\nThread:178.84.5.249/@comment-22439-20150118205747\nThread:178.85.74.135/@comment-22439-20151022031418\nThread:178.9.121.204/@comment-22439-20150806011932\nThread:178.9.15.102/@comment-22439-20151218081020\nThread:178.9.200.224/@comment-22439-20141221130700\nThread:179.155.234.91/@comment-22439-20150915204006\nThread:179.176.100.196/@comment-22439-20170505195158\nThread:179.179.141.24/@comment-22439-20150825180609\nThread:179.181.180.33/@comment-22439-20170509180230\nThread:179.182.53.182/@comment-22439-20170503041555\nThread:179.183.200.2/@comment-22439-20150418143944\nThread:179.183.9.81/@comment-22439-20150611155452\nThread:179.185.203.73/@comment-22439-20150110233800\nThread:179.186.0.119/@comment-22439-20150918135341\nThread:179.210.155.67/@comment-22439-20151230002746\nThread:179.210.36.73/@comment-22439-20150901104347\nThread:179.219.170.206/@comment-22439-20150613013536\nThread:179.222.108.65/@comment-22439-20151104031126\nThread:179.24.98.154/@comment-22439-20151219213034\nThread:179.35.159.185/@comment-22439-20160505041653\nThread:179.43.133.141/@comment-22439-20161007145728\nThread:179.57.6.116/@comment-22439-20141117222127\nThread:18.238.7.106/@comment-22439-20140911193038\nThread:180.181.142.241/@comment-22439-20170716130353\nThread:180.191.141.149/@comment-22439-20141220154938\nThread:180.200.142.246/@comment-22439-20151204095459\nThread:180.216.23.53/@comment-22439-20150207054102\nThread:180.222.64.124/@comment-22439-20150210042449\nThread:180.222.68.7/@comment-22439-20160211233954\nThread:180.235.177.150/@comment-22439-20150223110235\nThread:180.245.202.34/@comment-22439-20150527190220\nThread:180.255.248.132/@comment-22439-20141102173928\nThread:180.95.38.138/@comment-22439-20150729030800\nThread:181.114.134.234/@comment-22439-20160922212441\nThread:181.114.141.137/@comment-22439-20161016114946\nThread:181.163.83.163/@comment-22439-20150426190919\nThread:181.167.111.185/@comment-22439-20150219024709\nThread:181.188.72.56/@comment-22439-20140911004230\nThread:181.194.123.180/@comment-22439-20150321164416\nThread:181.194.163.16/@comment-22439-20151231234258\nThread:182.239.134.212/@comment-22439-20151004231637\nThread:182.239.187.143/@comment-22439-20160922130848\nThread:182.239.214.35/@comment-22439-20150728122757\nThread:182.250.248.196/@comment-22439-20170221055904\nThread:182.48.136.214/@comment-22439-20150203004003\nThread:182.48.141.212/@comment-22439-20161009183822\nThread:182.54.220.247/@comment-22439-20150331072300\nThread:182.55.170.85/@comment-22439-20141230101122\nThread:182.55.253.228/@comment-22439-20150327115147\nThread:183.178.236.26/@comment-22439-20170521053638\nThread:183.88.190.239/@comment-22439-20160914084342\nThread:183.89.89.72/@comment-22439-20151227173216\nThread:183.96.153.115/@comment-22439-20150428032203\nThread:183.96.187.33/@comment-22439-20150530162730\nThread:184.0.155.40/@comment-22439-20150714163719\nThread:184.0.77.93/@comment-22439-20151126183611\nThread:184.100.187.9/@comment-22439-20160813175601\nThread:184.105.133.184/@comment-22439-20160224015759\nThread:184.14.108.121/@comment-22439-20150218232456\nThread:184.14.249.114/@comment-22439-20160118100211\nThread:184.145.102.177/@comment-22439-20150719195648\nThread:184.145.188.113/@comment-22439-20160829223322\nThread:184.146.221.107/@comment-22439-20150709004527\nThread:184.146.24.107/@comment-22439-20150310044204\nThread:184.151.61.11/@comment-22439-20150115172622\nThread:184.152.63.26/@comment-22439-20160913135816\nThread:184.155.116.146/@comment-22439-20150306235209\nThread:184.155.171.193/@comment-22439-20150430041844\nThread:184.155.225.168/@comment-22439-20160220090925\nThread:184.158.79.20/@comment-22439-20170408022748\nThread:184.162.101.53/@comment-22439-20160602194708\nThread:184.162.231.241/@comment-22439-20151229190914\nThread:184.166.24.131/@comment-22439-20150617234057\nThread:184.166.55.152/@comment-22439-20161004044452\nThread:184.167.194.78/@comment-22439-20151223173823\nThread:184.17.223.115/@comment-22439-20170120013636\nThread:184.171.138.105/@comment-22439-20150429121831\nThread:184.174.154.14/@comment-22439-20150411155457\nThread:184.175.29.85/@comment-22439-20161026214408\nThread:184.175.29.85/@comment-26810597-20171009084141\nThread:184.190.205.204/@comment-22439-20150113062107\nThread:184.191.120.50/@comment-22439-20151019032301\nThread:184.21.152.156/@comment-22439-20150214161417\nThread:184.23.209.190/@comment-22439-20151106152043\nThread:184.35.0.215/@comment-22439-20170504205757\nThread:184.5.123.236/@comment-22439-20150604160102\nThread:184.56.163.106/@comment-22439-20150612052701\nThread:184.57.10.24/@comment-22439-20151218220820\nThread:184.57.55.31/@comment-22439-20150401162128\nThread:184.57.97.187/@comment-22439-20141222070212\nThread:184.58.92.41/@comment-22439-20151117003419\nThread:184.59.12.77/@comment-22439-20150808061752\nThread:184.6.29.4/@comment-22439-20151217032026\nThread:184.65.106.238/@comment-22439-20141108183905\nThread:184.68.102.110/@comment-22439-20150519010047\nThread:184.69.29.10/@comment-22439-20150617225310\nThread:184.71.221.118/@comment-22439-20150216200313\nThread:184.73.25.227/@comment-22439-20150528012758\nThread:184.75.223.203/@comment-22439-20160116064723\nThread:184.75.48.122/@comment-22439-20151209164956\nThread:184.89.248.217/@comment-22439-20170123103104\nThread:184.90.54.127/@comment-22439-20160811022106\nThread:184.91.189.54/@comment-22439-20150321224723\nThread:184.96.134.65/@comment-22439-20170704213423\nThread:184.97.75.217/@comment-22439-20160126024156\nThread:184.98.190.163/@comment-22439-20151201233811\nThread:184.99.149.211/@comment-22439-20160731215335\nThread:184.99.152.14/@comment-22439-20151025015733\nThread:184.99.152.22/@comment-22439-20161202102153\nThread:184.99.166.214/@comment-22439-20150618225715\nThread:185.106.189.250/@comment-22439-20160809203025\nThread:185.11.36.41/@comment-22439-20141225190518\nThread:185.110.110.165/@comment-22439-20170416041118\nThread:185.118.249.198/@comment-22439-20170307125500\nThread:185.12.152.254/@comment-22439-20160114071609\nThread:185.12.218.153/@comment-22439-20150123001553\nThread:185.13.72.6/@comment-22439-20141223085345\nThread:185.137.17.32/@comment-22439-20170419155747\nThread:185.137.19.214/@comment-32769624-20170901213513\nThread:185.139.124.87/@comment-22439-20170412163214\nThread:185.17.204.136/@comment-22439-20170113151525\nThread:185.22.140.61/@comment-22439-20150630143444\nThread:185.22.141.97/@comment-22439-20170408180643\nThread:185.22.142.72/@comment-22439-20151017150247\nThread:185.22.143.160/@comment-22439-20160214145740\nThread:185.22.143.36/@comment-22439-20160423070459\nThread:185.22.156.97/@comment-22439-20141127084447\nThread:185.24.184.193/@comment-22439-20151015064220\nThread:185.26.182.27/@comment-22439-20151127150954\nThread:185.26.182.31/@comment-22439-20151205144748\nThread:185.26.182.33/@comment-22439-20151004192906\nThread:185.26.182.34/@comment-22439-20150506070455\nThread:185.26.182.38/@comment-22439-20151024155445\nThread:185.26.63.16/@comment-22439-20141216142638\nThread:185.26.63.18/@comment-22439-20150402222236\nThread:185.37.86.5/@comment-22439-20150805094255\nThread:185.37.87.177/@comment-22439-20150213224117\nThread:185.38.220.222/@comment-22439-20150723073452\nThread:185.46.212.65/@comment-22439-20150707105340\nThread:185.46.214.60/@comment-22439-20160210112023\nThread:185.5.225.247/@comment-22439-20141212155428\nThread:185.59.105.30/@comment-22439-20160127110113\nThread:185.60.120.42/@comment-22439-20150417140320\nThread:185.64.40.25/@comment-22439-20160627162100\nThread:185.65.102.78/@comment-22439-20160114141246\nThread:186.105.188.246/@comment-22439-20150920025448\nThread:186.105.241.84/@comment-22439-20151018214102\nThread:186.107.25.68/@comment-22439-20150808221611\nThread:186.120.170.72/@comment-22439-20150121074316\nThread:186.151.60.166/@comment-22439-20150203200023\nThread:186.151.61.166/@comment-22439-20150127081637\nThread:186.151.62.230/@comment-22439-20150730150024\nThread:186.156.119.132/@comment-22439-20160115035412\nThread:186.159.128.33/@comment-22439-20160214001839\nThread:186.159.169.66/@comment-4403388-20170810164408\nThread:186.19.130.81/@comment-22439-20160117150500\nThread:186.195.196.106/@comment-22439-20151030225344\nThread:186.204.69.227/@comment-22439-20150102055954\nThread:186.207.111.33/@comment-22439-20160328214055\nThread:186.212.36.171/@comment-22439-20151103150155\nThread:186.22.105.173/@comment-22439-20160529005230\nThread:186.251.10.193/@comment-4403388-20170813181402\nThread:186.251.39.228/@comment-22439-20150126202955\nThread:186.32.180.101/@comment-22439-20150612135703\nThread:186.32.181.205/@comment-22439-20150223210217\nThread:186.4.182.146/@comment-22439-20160323192745\nThread:186.57.165.91/@comment-22439-20150531224154\nThread:186.79.91.193/@comment-22439-20150511073630\nThread:187.112.33.94/@comment-22439-20150201164456\nThread:187.112.97.18/@comment-22439-20151216221749\nThread:187.113.162.252/@comment-22439-20151229031727\nThread:187.14.200.77/@comment-22439-20150422004726\nThread:187.140.249.238/@comment-22439-20150529164123\nThread:187.145.2.231/@comment-22439-20170805015412\nThread:187.159.242.47/@comment-32769624-20170909100509\nThread:187.2.245.102/@comment-22439-20170213171231\nThread:187.20.113.181/@comment-22439-20150921172053\nThread:187.21.56.251/@comment-22439-20150415153543\nThread:187.36.171.25/@comment-22439-20150714235135\nThread:187.65.161.226/@comment-22439-20150219143209\nThread:188.100.212.125/@comment-22439-20150608213518\nThread:188.100.233.18/@comment-22439-20151216205655\nThread:188.100.39.173/@comment-22439-20150406152642\nThread:188.102.48.247/@comment-22439-20150531155807\nThread:188.106.79.146/@comment-22439-20170105004806\nThread:188.108.116.100/@comment-22439-20151209165635\nThread:188.108.129.11/@comment-22439-20150613201437\nThread:188.108.149.6/@comment-22439-20170802202632\nThread:188.109.14.193/@comment-22439-20150111144732\nThread:188.109.92.72/@comment-22439-20160530211019\nThread:188.11.218.77/@comment-22439-20151024000610\nThread:188.113.75.47/@comment-22439-20151103233951\nThread:188.114.154.64/@comment-22439-20151222195220\nThread:188.120.171.65/@comment-22439-20160325041740\nThread:188.121.0.13/@comment-22439-20150928141416\nThread:188.122.20.100/@comment-22439-20160709080512\nThread:188.122.20.101/@comment-22439-20160917092452\nThread:188.124.149.80/@comment-22439-20150114193703\nThread:188.126.160.72/@comment-22439-20160815035044\nThread:188.126.160.87/@comment-22439-20160516133449\nThread:188.126.161.29/@comment-22439-20151222204810\nThread:188.126.168.102/@comment-22439-20150615005330\nThread:188.126.168.223/@comment-22439-20150618155124\nThread:188.126.169.196/@comment-22439-20150515014625\nThread:188.126.171.68/@comment-22439-20161207022219\nThread:188.126.172.133/@comment-22439-20161121102914\nThread:188.126.178.121/@comment-22439-20170409222847\nThread:188.126.181.53/@comment-22439-20151221153802\nThread:188.129.50.137/@comment-22439-20160318215123\nThread:188.130.179.100/@comment-22439-20151231124424\nThread:188.141.117.42/@comment-22439-20141201011826\nThread:188.142.191.21/@comment-22439-20160103181249\nThread:188.143.127.86/@comment-22439-20160109032001\nThread:188.143.234.100/@comment-22439-20150819094201\nThread:188.146.104.140/@comment-22439-20170801204458\nThread:188.146.108.111/@comment-22439-20170711000946\nThread:188.146.131.47/@comment-32769624-20170818103413\nThread:188.146.66.194/@comment-22439-20170805234253\nThread:188.153.120.104/@comment-22439-20150801102618\nThread:188.173.22.17/@comment-22439-20150621141440\nThread:188.174.168.28/@comment-22439-20150822195455\nThread:188.174.176.64/@comment-22439-20141012203456\nThread:188.174.188.124/@comment-22439-20150319165911\nThread:188.174.194.208/@comment-22439-20150624060515\nThread:188.174.195.240/@comment-22439-20150610204252\nThread:188.174.206.81/@comment-22439-20150819211623\nThread:188.174.207.36/@comment-22439-20150916053109\nThread:188.174.212.19/@comment-22439-20150808181703\nThread:188.176.126.19/@comment-22439-20161126213419\nThread:188.177.3.159/@comment-22439-20141224010210\nThread:188.178.76.46/@comment-22439-20151023174813\nThread:188.180.248.201/@comment-22439-20170422131739\nThread:188.180.252.228/@comment-22439-20151219005934\nThread:188.181.94.5/@comment-32769624-20170825173908\nThread:188.183.137.132/@comment-22439-20160201214116\nThread:188.183.141.20/@comment-22439-20141118210114\nThread:188.187.21.167/@comment-22439-20150416233814\nThread:188.192.138.38/@comment-22439-20150216164039\nThread:188.192.57.242/@comment-22439-20150219231123\nThread:188.193.168.11/@comment-22439-20150621200031\nThread:188.193.191.31/@comment-22439-20150103212545\nThread:188.193.241.140/@comment-22439-20150105152135\nThread:188.193.247.253/@comment-22439-20150216115035\nThread:188.193.98.160/@comment-22439-20170727070931\nThread:188.195.156.7/@comment-22439-20150330133641\nThread:188.195.203.8/@comment-22439-20150115183017\nThread:188.195.35.116/@comment-22439-20160911155000\nThread:188.2.7.104/@comment-22439-20170623175928\nThread:188.203.163.36/@comment-22439-20151201162448\nThread:188.203.204.194/@comment-22439-20170413122036\nThread:188.210.31.145/@comment-22439-20150814203921\nThread:188.210.57.40/@comment-22439-20150818103205\nThread:188.220.194.51/@comment-22439-20151116002626\nThread:188.220.232.197/@comment-22439-20160126160943\nThread:188.220.234.132/@comment-22439-20151207150037\nThread:188.220.248.122/@comment-22439-20130402081407\nThread:188.220.80.216/@comment-22439-20160128180042\nThread:188.221.20.99/@comment-22439-20151220012720\nThread:188.221.222.222/@comment-22439-20160131221430\nThread:188.221.48.172/@comment-22439-20170312092022\nThread:188.222.111.139/@comment-22439-20151022124240\nThread:188.222.179.99/@comment-22439-20161129220035\nThread:188.222.244.54/@comment-22439-20141031212320\nThread:188.222.49.193/@comment-22439-20151217013801\nThread:188.223.218.29/@comment-22439-20160329105259\nThread:188.223.30.185/@comment-22439-20150319003128\nThread:188.226.83.176/@comment-22439-20161005200651\nThread:188.228.47.87/@comment-22439-20160805141142\nThread:188.23.183.4/@comment-22439-20150118180429\nThread:188.230.130.164/@comment-22439-20160117150415\nThread:188.238.138.136/@comment-22439-20170218100416\nThread:188.238.155.142/@comment-22439-20170110193405\nThread:188.238.155.231/@comment-22439-20161029104923\nThread:188.238.155.36/@comment-22439-20161219181031\nThread:188.238.158.157/@comment-22439-20170127082244\nThread:188.238.158.174/@comment-22439-20160618184612\nThread:188.238.166.202/@comment-22439-20170701183404\nThread:188.238.167.43/@comment-22439-20161020132313\nThread:188.238.171.97/@comment-22439-20170320213017\nThread:188.238.176.75/@comment-22439-20170705122739\nThread:188.238.182.141/@comment-22439-20160922101833\nThread:188.238.187.9/@comment-22439-20161031153622\nThread:188.238.189.126/@comment-22439-20170501175603\nThread:188.238.215.57/@comment-22439-20170224142810\nThread:188.238.223.78/@comment-22439-20161129162658\nThread:188.238.245.196/@comment-22439-20160920150942\nThread:188.238.255.177/@comment-22439-20161227191059\nThread:188.238.41.137/@comment-22439-20160531074625\nThread:188.238.85.199/@comment-22439-20160526084032\nThread:188.24.24.111/@comment-22439-20150419190537\nThread:188.242.248.114/@comment-22439-20151206230255\nThread:188.25.158.251/@comment-22439-20151112134912\nThread:188.25.182.226/@comment-22439-20151225031401\nThread:188.251.171.157/@comment-22439-20161019202447\nThread:188.29.165.130/@comment-22439-20151027153402\nThread:188.29.165.183/@comment-22439-20160214102624\nThread:188.29.165.224/@comment-22439-20140921020715\nThread:188.29.165.240/@comment-22439-20151002200258\nThread:188.31.167.158/@comment-22439-20160125223237\nThread:188.31.189.224/@comment-22439-20160213230412\nThread:188.32.216.237/@comment-22439-20150520072054\nThread:188.35.176.90/@comment-22439-20160607152421\nThread:188.36.206.214/@comment-22439-20141201210009\nThread:188.36.217.20/@comment-22439-20150606032523\nThread:188.36.53.220/@comment-22439-20160116111314\nThread:188.39.102.212/@comment-22439-20150626211407\nThread:188.39.46.202/@comment-22439-20150203121033\nThread:188.39.84.242/@comment-22439-20150124125813\nThread:188.50.221.150/@comment-22439-20150402192840\nThread:188.6.127.180/@comment-22439-20151108144052\nThread:188.62.164.216/@comment-22439-20160720161010\nThread:188.66.92.187/@comment-22439-20161208080211\nThread:188.67.96.209/@comment-22439-20150528202815\nThread:188.80.254.87/@comment-22439-20150610191812\nThread:188.85.253.109/@comment-22439-20160413211332\nThread:188.94.18.118/@comment-22439-20150106144245\nThread:188.97.173.120/@comment-22439-20151022145335\nThread:188.98.168.5/@comment-22439-20150606075651\nThread:188.99.201.202/@comment-22439-20170521142057\nThread:189.100.155.248/@comment-22439-20151108183845\nThread:189.140.212.225/@comment-22439-20161221020125\nThread:189.155.75.226/@comment-22439-20150908191826\nThread:189.158.172.188/@comment-22439-20150816114751\nThread:189.163.115.183/@comment-22439-20160930195411\nThread:189.173.224.107/@comment-22439-20160205224805\nThread:189.19.204.5/@comment-22439-20150526205235\nThread:189.209.12.84/@comment-22439-20141029225553\nThread:189.212.246.169/@comment-22439-20150502192128\nThread:189.217.190.94/@comment-22439-20151120061232\nThread:189.219.101.153/@comment-22439-20150709014215\nThread:189.219.80.74/@comment-22439-20150721010905\nThread:189.224.164.194/@comment-22439-20150921005613\nThread:189.228.228.70/@comment-22439-20151018175838\nThread:189.234.227.120/@comment-22439-20141204025002\nThread:189.27.189.28/@comment-22439-20161229120841\nThread:189.27.190.79/@comment-22439-20170101112419\nThread:189.27.54.58/@comment-22439-20170601205641\nThread:189.32.236.141/@comment-22439-20170124205804\nThread:189.34.74.71/@comment-22439-20170325081207\nThread:189.35.4.75/@comment-22439-20151201011106\nThread:189.4.18.48/@comment-22439-20151110013945\nThread:189.5.217.108/@comment-22439-20160518130034\nThread:189.54.54.254/@comment-22439-20151020005535\nThread:189.6.24.101/@comment-22439-20170603212644\nThread:189.60.168.130/@comment-22439-20150326234343\nThread:189.60.17.128/@comment-22439-20150316181757\nThread:189.68.132.40/@comment-22439-20160801214514\nThread:189.69.55.194/@comment-22439-20170625224455\nThread:189.83.141.137/@comment-22439-20150722042752\nThread:190.128.145.78/@comment-22439-20150718114624\nThread:190.138.225.54/@comment-22439-20160203200948\nThread:190.148.39.244/@comment-22439-20160819200136\nThread:190.153.193.211/@comment-22439-20151203061059\nThread:190.155.132.151/@comment-22439-20150528021406\nThread:190.158.21.46/@comment-22439-20170704060859\nThread:190.166.158.149/@comment-22439-20160325202520\nThread:190.19.191.125/@comment-22439-20150215060105\nThread:190.196.70.196/@comment-22439-20160915183937\nThread:190.215.67.197/@comment-22439-20170315210545\nThread:190.215.81.195/@comment-22439-20150606022724\nThread:190.215.88.0/@comment-22439-20151120043141\nThread:190.226.145.245/@comment-22439-20150325153226\nThread:190.233.202.156/@comment-22439-20140320082140\nThread:190.240.46.181/@comment-22439-20161209184922\nThread:191.113.140.151/@comment-22439-20160124015450\nThread:191.113.192.202/@comment-22439-20161123060807\nThread:191.114.103.217/@comment-22439-20151114112047\nThread:191.114.75.73/@comment-22439-20151120114315\nThread:191.181.166.20/@comment-22439-20150505175313\nThread:191.183.180.80/@comment-22439-20160218131353\nThread:191.185.162.75/@comment-22439-20141029223709\nThread:191.185.166.120/@comment-22439-20141122150006\nThread:191.190.58.251/@comment-32769624-20170911224201\nThread:191.250.7.161/@comment-22439-20160604130311\nThread:191.33.37.85/@comment-22439-20150420233356\nThread:191.33.9.89/@comment-22439-20150417223009\nThread:192.0.135.169/@comment-22439-20161228133115\nThread:192.0.147.104/@comment-22439-20150324222156\nThread:192.0.187.165/@comment-22439-20141225174601\nThread:192.0.221.241/@comment-22439-20151211050523\nThread:192.0.247.123/@comment-22439-20160124195349\nThread:192.0.249.245/@comment-22439-20160604150259\nThread:192.107.246.114/@comment-22439-20150511132959\nThread:192.117.103.21/@comment-22439-20150317183034\nThread:192.119.43.231/@comment-22439-20150120030920\nThread:192.136.161.156/@comment-22439-20160907025339\nThread:192.136.161.217/@comment-22439-20160730120418\nThread:192.136.161.248/@comment-22439-20160801192020\nThread:192.136.161.33/@comment-32769624-20170820142924\nThread:192.136.161.52/@comment-22439-20161101111146\nThread:192.136.161.6/@comment-22439-20170720200212\nThread:192.136.172.214/@comment-22439-20160401112446\nThread:192.136.172.239/@comment-22439-20160126182936\nThread:192.136.172.78/@comment-22439-20160406111711\nThread:192.136.172.90/@comment-22439-20160317161846\nThread:192.136.173.19/@comment-22439-20160515115232\nThread:192.136.173.202/@comment-22439-20160412130417\nThread:192.136.173.221/@comment-22439-20160729184920\nThread:192.136.173.221/@comment-22439-20160729184920/@comment-192.136.161.217-20160730120415\nThread:192.136.173.221/@comment-22439-20160729184920/@comment-192.136.161.217-20160730131420\nThread:192.136.173.221/@comment-22439-20160729184920/@comment-26009169-20160730120943\nThread:192.136.173.223/@comment-22439-20160607212519\nThread:192.136.174.139/@comment-22439-20160217121626\nThread:192.136.174.152/@comment-22439-20160303182353\nThread:192.136.174.182/@comment-192.136.174.182-20160615123006\nThread:192.136.174.182/@comment-22439-20160614153017\nThread:192.136.175.137/@comment-22439-20160429171412\nThread:192.136.175.219/@comment-22439-20160222122046\nThread:192.136.175.90/@comment-22439-20160602121631\nThread:192.152.130.14/@comment-22439-20150904002012\nThread:192.153.117.58/@comment-22439-20170604195122\nThread:192.154.150.110/@comment-22439-20150409173407\nThread:192.160.165.63/@comment-22439-20160228221105\nThread:192.171.35.254/@comment-22439-20150818145055\nThread:192.173.144.3/@comment-22439-20160527153120\nThread:192.182.136.100/@comment-22439-20150603052819\nThread:192.182.188.165/@comment-22439-20150725155126\nThread:192.183.13.221/@comment-22439-20151222010705\nThread:192.185.1.20/@comment-22439-20150124122510\nThread:192.189.29.41/@comment-22439-20160821170021\nThread:192.190.108.35/@comment-22439-20151108235517\nThread:192.193.216.150/@comment-22439-20160206025049\nThread:192.195.82.250/@comment-22439-20150410212450\nThread:192.198.151.36/@comment-22439-20141217194907\nThread:192.198.151.43/@comment-22439-20141218101646\nThread:192.198.151.44/@comment-22439-20141218101633\nThread:192.198.243.214/@comment-22439-20161025160708\nThread:192.198.3.161/@comment-22439-20160112013833\nThread:192.208.253.226/@comment-22439-20150217082705\nThread:192.245.50.52/@comment-22439-20170802133452\nThread:192.249.129.178/@comment-22439-20160129180145\nThread:192.31.105.173/@comment-22439-20170124230909\nThread:192.31.106.34/@comment-22439-20150124140137\nThread:192.31.106.35/@comment-22439-20150121100458\nThread:192.31.106.36/@comment-22439-20150122205429\nThread:192.33.99.8/@comment-22439-20150615083522\nThread:192.35.35.34/@comment-22439-20150128185500\nThread:192.35.35.35/@comment-22439-20160304164145\nThread:192.35.35.36/@comment-22439-20150127065817\nThread:192.38.33.17/@comment-22439-20150806122406\nThread:192.70.164.4/@comment-22439-20151109174955\nThread:192.73.243.67/@comment-22439-20150825161514\nThread:192.91.171.34/@comment-22439-20150220215551\nThread:192.91.171.36/@comment-22439-20151210165037\nThread:192.91.171.42/@comment-22439-20150121100545\nThread:192.91.173.36/@comment-22439-20150128185555\nThread:192.92.94.23/@comment-22439-20150107094155\nThread:193.104.162.7/@comment-22439-20160614073905\nThread:193.105.140.131/@comment-22439-20151216135721\nThread:193.109.254.20/@comment-22439-20150721094440\nThread:193.11.161.135/@comment-22439-20150414211254\nThread:193.127.200.51/@comment-22439-20170529112651\nThread:193.128.72.68/@comment-22439-20141104151654\nThread:193.128.72.93/@comment-22439-20150324095926\nThread:193.14.9.74/@comment-22439-20150209081810\nThread:193.143.55.47/@comment-22439-20151015043142\nThread:193.150.37.193/@comment-22439-20170524123407\nThread:193.151.43.42/@comment-22439-20150330192910\nThread:193.153.133.153/@comment-22439-20151218040713\nThread:193.157.243.28/@comment-22439-20161019065034\nThread:193.159.88.176/@comment-22439-20160829092319\nThread:193.164.115.226/@comment-22439-20150424100632\nThread:193.164.143.246/@comment-22439-20150216160548\nThread:193.17.248.26/@comment-22439-20170130224332\nThread:193.170.225.224/@comment-22439-20150617134106\nThread:193.191.248.132/@comment-22439-20150624070127\nThread:193.197.148.126/@comment-22439-20160219111541\nThread:193.210.65.90/@comment-22439-20131014101412\nThread:193.214.110.179/@comment-22439-20140601093149\nThread:193.240.114.29/@comment-22439-20141229110918\nThread:193.242.212.50/@comment-22439-20170111174549\nThread:193.28.100.140/@comment-22439-20160114120656\nThread:193.28.249.15/@comment-22439-20150312123713\nThread:193.37.181.249/@comment-22439-20141205134807\nThread:193.38.100.250/@comment-22439-20150424144225\nThread:193.45.118.180/@comment-22439-20150917055226\nThread:193.45.118.57/@comment-22439-20150918062733\nThread:193.48.130.135/@comment-22439-20150527075039\nThread:193.48.172.167/@comment-22439-20170124002827\nThread:193.5.216.100/@comment-22439-20150210101508\nThread:193.54.109.8/@comment-22439-20150120151501\nThread:193.60.81.1/@comment-22439-20150121045448\nThread:193.60.81.2/@comment-22439-20150112123825\nThread:193.61.219.169/@comment-22439-20150325165646\nThread:193.62.202.242/@comment-22439-20170206112327\nThread:193.67.113.2/@comment-22439-20151015093454\nThread:193.71.162.120/@comment-22439-20160530035411\nThread:193.80.24.237/@comment-22439-20150202222731\nThread:193.80.26.67/@comment-22439-20150128052012\nThread:193.80.85.194/@comment-22439-20141129215035\nThread:193.87.169.198/@comment-22439-20151202172157\nThread:193.92.155.157/@comment-22439-20150909153904\nThread:194.105.113.182/@comment-22439-20150409071348\nThread:194.106.220.84/@comment-22439-20151020083135\nThread:194.106.220.86/@comment-22439-20150227133115\nThread:194.127.218.10/@comment-22439-20160127151344\nThread:194.127.8.30/@comment-22439-20141212153911\nThread:194.138.12.165/@comment-22439-20150120140159\nThread:194.138.39.55/@comment-22439-20150217082622\nThread:194.14.58.11/@comment-22439-20150708141649\nThread:194.149.26.9/@comment-22439-20141222162816\nThread:194.154.22.38/@comment-22439-20130110104704\nThread:194.166.17.252/@comment-22439-20160817193613\nThread:194.168.188.147/@comment-22439-20151125100158\nThread:194.168.195.30/@comment-22439-20160816154407\nThread:194.17.253.84/@comment-22439-20141215234111\nThread:194.176.105.141/@comment-22439-20150414100103\nThread:194.176.105.150/@comment-22439-20170125163933\nThread:194.176.105.168/@comment-22439-20150721130408\nThread:194.176.105.169/@comment-22439-20160219154832\nThread:194.176.222.229/@comment-22439-20141231180638\nThread:194.183.136.101/@comment-22439-20170111154941\nThread:194.187.32.1/@comment-22439-20141217154658\nThread:194.187.75.138/@comment-22439-20160516194214\nThread:194.19.160.159/@comment-22439-20151024092141\nThread:194.203.180.193/@comment-22439-20150313114727\nThread:194.208.220.74/@comment-22439-20141226140553\nThread:194.209.82.254/@comment-22439-20151117115854\nThread:194.22.238.75/@comment-22439-20160219105052\nThread:194.230.159.193/@comment-22439-20150122202239\nThread:194.249.247.166/@comment-22439-20150618111257\nThread:194.25.30.9/@comment-22439-20150708091325\nThread:194.255.35.135/@comment-22439-20150908210939\nThread:194.28.15.6/@comment-22439-20150115005524\nThread:194.28.16.21/@comment-22439-20141225105549\nThread:194.32.49.218/@comment-22439-20151030102226\nThread:194.39.218.10/@comment-22439-20150312132631\nThread:194.50.240.42/@comment-22439-20141003080020\nThread:194.50.240.44/@comment-22439-20141003080123\nThread:194.6.174.10/@comment-22439-20160102150334\nThread:194.61.48.251/@comment-22439-20150412085140\nThread:194.61.48.66/@comment-22439-20160214151032\nThread:194.66.77.213/@comment-22439-20161029101732\nThread:194.66.77.9/@comment-22439-20161026102409\nThread:194.68.56.33/@comment-22439-20170210090033\nThread:194.74.142.50/@comment-22439-20160819121354\nThread:194.74.159.228/@comment-22439-20170703133012\nThread:194.78.222.137/@comment-22439-20151207125822\nThread:194.80.144.240/@comment-22439-20160608135019\nThread:194.81.212.225/@comment-22439-20160125112639\nThread:194.81.60.163/@comment-22439-20160614075916\nThread:194.83.236.250/@comment-22439-20150630102812\nThread:194.83.80.2/@comment-22439-20170502082317\nThread:194.9.234.11/@comment-22439-20150406205032\nThread:194.98.70.135/@comment-22439-20150610093038\nThread:194.98.70.140/@comment-22439-20150608124926\nThread:195.1.184.62/@comment-22439-20150312094350\nThread:195.10.41.13/@comment-22439-20160825094832\nThread:195.102.209.14/@comment-22439-20170804113208\nThread:195.128.129.199/@comment-22439-20150901073837\nThread:195.128.129.200/@comment-22439-20150914135457\nThread:195.13.179.196/@comment-22439-20150413063805\nThread:195.132.236.24/@comment-22439-20170429135138\nThread:195.135.221.2/@comment-22439-20150611080743\nThread:195.137.194.64/@comment-22439-20141031144815\nThread:195.137.64.78/@comment-22439-20130105200653\nThread:195.14.166.210/@comment-22439-20150404203900\nThread:195.142.204.145/@comment-22439-20150623173906\nThread:195.147.67.21/@comment-22439-20160125102910\nThread:195.147.94.126/@comment-22439-20170707103031\nThread:195.148.239.161/@comment-22439-20130222090809\nThread:195.158.183.174/@comment-22439-20160525100801\nThread:195.159.161.180/@comment-22439-20150505103140\nThread:195.160.233.253/@comment-22439-20150114141512\nThread:195.166.158.100/@comment-22439-20150202221746\nThread:195.169.10.12/@comment-22439-20160630132900\nThread:195.169.157.177/@comment-22439-20150601144638\nThread:195.169.9.147/@comment-22439-20161207103617\nThread:195.169.9.154/@comment-22439-20161208150959\nThread:195.174.198.5/@comment-22439-20150714104045\nThread:195.177.74.226/@comment-22439-20141225121529\nThread:195.178.236.152/@comment-22439-20141124144101\nThread:195.188.150.130/@comment-22439-20160331215850\nThread:195.188.174.32/@comment-22439-20150128140109\nThread:195.189.11.41/@comment-22439-20141231072606\nThread:195.189.180.41/@comment-22439-20170308102259\nThread:195.189.180.51/@comment-22439-20150106173435\nThread:195.189.180.57/@comment-22439-20151220110215\nThread:195.189.180.61/@comment-22439-20151205161522\nThread:195.194.161.210/@comment-22439-20140618093320\nThread:195.194.196.233/@comment-22439-20150324173720\nThread:195.195.152.11/@comment-22439-20150115133714\nThread:195.198.127.39/@comment-22439-20170124083632\nThread:195.198.228.61/@comment-22439-20150119045237\nThread:195.199.238.222/@comment-22439-20151208100426\nThread:195.200.70.54/@comment-22439-20151023084329\nThread:195.212.29.173/@comment-22439-20150522052205\nThread:195.212.29.86/@comment-22439-20141103110124\nThread:195.214.190.204/@comment-22439-20170316230645\nThread:195.221.155.11/@comment-22439-20151103084459\nThread:195.240.108.48/@comment-22439-20140929111029\nThread:195.240.108.48/@comment-26009169-20150203132249\nThread:195.240.253.20/@comment-22439-20151028200031\nThread:195.243.28.250/@comment-22439-20150424123931\nThread:195.249.188.149/@comment-22439-20140927000645\nThread:195.250.50.47/@comment-22439-20150313103817\nThread:195.36.120.125/@comment-22439-20150401094730\nThread:195.38.110.174/@comment-22439-20150513104401\nThread:195.41.9.194/@comment-22439-20141006180334\nThread:195.59.159.33/@comment-22439-20161215081159\nThread:195.70.101.49/@comment-22439-20150921125537\nThread:195.74.51.133/@comment-22439-20151118200820\nThread:195.81.98.113/@comment-22439-20150615223504\nThread:195.82.39.15/@comment-22439-20170704122621\nThread:195.83.187.154/@comment-22439-20150129172007\nThread:195.99.90.238/@comment-22439-20160520185615\nThread:196.204.160.79/@comment-22439-20160331081942\nThread:196.210.42.166/@comment-22439-20150612154424\nThread:196.212.150.147/@comment-22439-20141222132904\nThread:196.212.83.221/@comment-22439-20170805212515\nThread:196.215.116.204/@comment-22439-20170212005246\nThread:196.215.14.191/@comment-22439-20170105223314\nThread:196.215.48.33/@comment-22439-20160115163554\nThread:196.52.84.42/@comment-22439-20170806080654\nThread:197.176.61.194/@comment-22439-20170630153136\nThread:197.242.203.101/@comment-22439-20170531110836\nThread:197.79.9.107/@comment-22439-20160113053830\nThread:197.87.94.162/@comment-22439-20150103233555\nThread:197.88.21.75/@comment-22439-20151101151943\nThread:198.105.210.248/@comment-22439-20151205202811\nThread:198.105.28.77/@comment-22439-20160904052421\nThread:198.135.125.43/@comment-22439-20161123173002\nThread:198.14.232.205/@comment-22439-20160412100523\nThread:198.146.57.1/@comment-22439-20160624142951\nThread:198.166.16.161/@comment-22439-20150123004215\nThread:198.166.31.216/@comment-22439-20150109164156\nThread:198.178.56.27/@comment-22439-20150626192034\nThread:198.189.200.184/@comment-22439-20150210195348\nThread:198.2.64.100/@comment-22439-20170603053910\nThread:198.2.64.117/@comment-22439-20170412012429\nThread:198.200.77.251/@comment-22439-20150723153224\nThread:198.203.175.175/@comment-22439-20151224160202\nThread:198.210.116.14/@comment-22439-20161226232538\nThread:198.23.71.119/@comment-22439-20150104081632\nThread:198.24.5.13/@comment-22439-20151216110648\nThread:198.254.196.127/@comment-22439-20140628213922\nThread:198.255.148.249/@comment-22439-20150216130834\nThread:198.37.240.132/@comment-22439-20161031212025\nThread:198.45.221.26/@comment-22439-20150102002517\nThread:198.47.45.197/@comment-22439-20150114022712\nThread:198.48.235.150/@comment-22439-20150103233953\nThread:198.53.171.101/@comment-22439-20170226120828\nThread:198.53.185.172/@comment-22439-20150430083157\nThread:198.84.137.41/@comment-22439-20160115230810\nThread:198.84.166.37/@comment-22439-20150128193734\nThread:198.84.188.212/@comment-22439-20141225055952\nThread:198.84.192.202/@comment-22439-20150717021800\nThread:198.84.196.226/@comment-22439-20151202222023\nThread:198.84.211.211/@comment-22439-20151226205056\nThread:198.84.247.150/@comment-22439-20170106040925\nThread:198.85.229.3/@comment-22439-20151228154622\nThread:198.91.178.90/@comment-22439-20160104010811\nThread:199.101.142.18/@comment-22439-20150204090914\nThread:199.115.89.26/@comment-22439-20161228180303\nThread:199.116.114.74/@comment-22439-20170424213711\nThread:199.125.14.2/@comment-22439-20150105222138\nThread:199.126.149.93/@comment-22439-20150126065719\nThread:199.16.178.82/@comment-22439-20160226023850\nThread:199.164.58.10/@comment-22439-20160216161459\nThread:199.167.119.37/@comment-22439-20170718170723\nThread:199.168.78.182/@comment-22439-20150716184339\nThread:199.18.155.146/@comment-22439-20160204181839\nThread:199.185.233.5/@comment-22439-20141124192453\nThread:199.19.94.193/@comment-22439-20150112043044\nThread:199.190.10.27/@comment-22439-20141219162048\nThread:199.192.172.166/@comment-22439-20141210052739\nThread:199.200.107.93/@comment-22439-20150926035714\nThread:199.201.64.129/@comment-22439-20150922062504\nThread:199.201.65.2/@comment-22439-20150326014041\nThread:199.202.104.234/@comment-22439-20150814211355\nThread:199.21.88.182/@comment-22439-20151218090345\nThread:199.212.86.77/@comment-22439-20160415125358\nThread:199.227.62.202/@comment-22439-20150510100635\nThread:199.231.118.208/@comment-22439-20150317064304\nThread:199.231.28.240/@comment-22439-20160921173856\nThread:199.241.212.253/@comment-22439-20141221193312\nThread:199.243.220.221/@comment-22439-20150806232122\nThread:199.30.121.97/@comment-22439-20151118025156\nThread:199.30.184.194/@comment-22439-20160528003722\nThread:199.30.185.242/@comment-22439-20150405005116\nThread:199.30.187.243/@comment-22439-20170426113710\nThread:199.33.103.87/@comment-22439-20150119132413\nThread:199.33.135.210/@comment-22439-20150712142504\nThread:199.33.98.139/@comment-22439-20160109023836\nThread:199.48.196.21/@comment-22439-20170711203110\nThread:199.60.19.55/@comment-22439-20150527191552\nThread:199.64.0.252/@comment-22439-20141221223502\nThread:199.64.0.254/@comment-22439-20141225205301\nThread:199.66.65.7/@comment-22439-20160530112557\nThread:199.67.131.148/@comment-22439-20160203034600\nThread:199.7.157.113/@comment-22439-20141227200356\nThread:199.89.180.254/@comment-22439-20170427013710\nThread:199.91.130.102/@comment-22439-20140924041115\nThread:199.96.186.39/@comment-22439-20150521172153\nThread:199.96.245.119/@comment-22439-20170330194617\nThread:1bazr1/@comment-32769624-20181026005017\nThread:1geek2many/@comment-22439-20141009080209\nThread:1mirg/@comment-22439-20150115131636\nThread:2.100.41.160/@comment-22439-20161120121431\nThread:2.101.122.1/@comment-22439-20150914034912\nThread:2.101.226.149/@comment-22439-20141109114955\nThread:2.101.240.90/@comment-22439-20151004180710\nThread:2.101.39.74/@comment-22439-20151021140727\nThread:2.101.93.89/@comment-22439-20161031163354\nThread:2.102.69.132/@comment-22439-20150307010451\nThread:2.103.144.83/@comment-22439-20150731001140\nThread:2.103.34.194/@comment-22439-20150908210600\nThread:2.103.94.131/@comment-22439-20160109215310\nThread:2.107.239.233/@comment-22439-20150317160808\nThread:2.108.204.55/@comment-22439-20141230140939\nThread:2.108.218.116/@comment-22439-20151101022631\nThread:2.109.200.229/@comment-22439-20141207184225\nThread:2.110.92.78/@comment-22439-20151024155212\nThread:2.111.66.150/@comment-22439-20141125011923\nThread:2.120.186.137/@comment-22439-20151223170644\nThread:2.120.195.215/@comment-22439-20150224140457\nThread:2.120.197.0/@comment-22439-20150501220737\nThread:2.121.180.154/@comment-22439-20141227180105\nThread:2.121.50.58/@comment-22439-20151226024016\nThread:2.121.88.207/@comment-22439-20141017181406\nThread:2.122.28.96/@comment-22439-20150308192510\nThread:2.122.97.54/@comment-22439-20150801091601\nThread:2.123.24.85/@comment-22439-20160831010543\nThread:2.123.36.185/@comment-22439-20150809203238\nThread:2.123.39.3/@comment-22439-20160823113954\nThread:2.123.73.219/@comment-22439-20150823183206\nThread:2.124.162.136/@comment-22439-20150604121329\nThread:2.124.17.171/@comment-22439-20141230142618\nThread:2.125.136.63/@comment-22439-20150125043243\nThread:2.125.210.222/@comment-22439-20151113140704\nThread:2.125.215.187/@comment-22439-20151110165644\nThread:2.125.235.54/@comment-22439-20150224094026\nThread:2.125.86.129/@comment-22439-20150322112254\nThread:2.126.146.132/@comment-22439-20150321185751\nThread:2.126.168.159/@comment-22439-20170527143805\nThread:2.126.225.191/@comment-22439-20150626145542\nThread:2.126.247.125/@comment-22439-20151024173143\nThread:2.126.94.7/@comment-22439-20140908104044\nThread:2.127.116.18/@comment-22439-20170119065855\nThread:2.127.116.54/@comment-22439-20170201032201\nThread:2.127.48.243/@comment-22439-20151028153734\nThread:2.137.41.181/@comment-22439-20151227222511\nThread:2.138.115.165/@comment-22439-20170715131206\nThread:2.14.111.73/@comment-22439-20141009190456\nThread:2.150.54.185/@comment-22439-20160130234754\nThread:2.155.241.228/@comment-22439-20170323191113\nThread:2.161.173.212/@comment-22439-20160714000557\nThread:2.166.151.12/@comment-22439-20150506131750\nThread:2.2.11.234/@comment-22439-20150521162028\nThread:2.203.87.240/@comment-22439-20140916205432\nThread:2.216.47.167/@comment-22439-20150111164923\nThread:2.217.241.16/@comment-22439-20170112220220\nThread:2.219.107.97/@comment-22439-20150207003609\nThread:2.219.11.77/@comment-22439-20151130144405\nThread:2.219.113.13/@comment-22439-20160522175046\nThread:2.219.191.108/@comment-22439-20150329111359\nThread:2.220.142.183/@comment-22439-20161004141750\nThread:2.220.233.51/@comment-22439-20150322111927\nThread:2.220.52.86/@comment-22439-20160513132652\nThread:2.220.58.42/@comment-22439-20161009234435\nThread:2.221.115.78/@comment-22439-20161229134147\nThread:2.221.147.164/@comment-22439-20150217181041\nThread:2.221.5.236/@comment-22439-20150824173611\nThread:2.222.206.51/@comment-22439-20150526220103\nThread:2.222.52.236/@comment-22439-20150405085929\nThread:2.222.62.136/@comment-22439-20150826162715\nThread:2.222.68.197/@comment-22439-20160502194424\nThread:2.224.7.129/@comment-22439-20150910213107\nThread:2.227.186.218/@comment-22439-20150517134135\nThread:2.229.133.34/@comment-22439-20150514205534\nThread:2.230.164.197/@comment-22439-20160307133917\nThread:2.234.178.38/@comment-22439-20151019101906\nThread:2.234.225.160/@comment-22439-20141026112848\nThread:2.236.111.150/@comment-22439-20141226185248\nThread:2.238.195.28/@comment-22439-20150401012829\nThread:2.24.189.45/@comment-22439-20170320182929\nThread:2.24.218.252/@comment-22439-20150407214829\nThread:2.242.191.169/@comment-22439-20150619123123\nThread:2.247.152.88/@comment-22439-20151211223813\nThread:2.247.161.111/@comment-22439-20150809162600\nThread:2.25.147.238/@comment-22439-20160128061222\nThread:2.25.200.25/@comment-22439-20150313155918\nThread:2.25.200.85/@comment-22439-20141217194416\nThread:2.25.215.32/@comment-22439-20150301024051\nThread:2.25.217.235/@comment-22439-20150210183132\nThread:2.26.233.136/@comment-22439-20150224211124\nThread:2.27.3.235/@comment-22439-20170525230544\nThread:2.27.71.222/@comment-22439-20160830093544\nThread:2.27.91.253/@comment-22439-20150225172652\nThread:2.27.93.99/@comment-22439-20150311145050\nThread:2.28.196.148/@comment-22439-20150904001501\nThread:2.29.101.214/@comment-22439-20161120155023\nThread:2.29.109.231/@comment-22439-20150301002415\nThread:2.29.213.197/@comment-22439-20161028131107\nThread:2.29.213.240/@comment-22439-20150728112939\nThread:2.29.231.8/@comment-22439-20150824153923\nThread:2.29.54.7/@comment-22439-20160112172716\nThread:2.30.11.220/@comment-22439-20150217091304\nThread:2.30.13.227/@comment-22439-20150227000929\nThread:2.30.147.75/@comment-22439-20160812130939\nThread:2.30.224.115/@comment-22439-20150303221914\nThread:2.31.156.17/@comment-22439-20170603121251\nThread:2.31.213.229/@comment-22439-20150212185507\nThread:2.31.35.189/@comment-22439-20160410181850\nThread:2.31.35.239/@comment-22439-20160326160443\nThread:2.31.43.65/@comment-22439-20170525173025\nThread:2.31.46.89/@comment-22439-20170622105743\nThread:2.31.52.255/@comment-22439-20150123055433\nThread:2.31.81.162/@comment-22439-20150118194038\nThread:2.51.69.171/@comment-22439-20150608180505\nThread:2.71.33.124/@comment-22439-20150728215654\nThread:2.8.120.99/@comment-22439-20151020002823\nThread:2.82.24.225/@comment-22439-20160531204946\nThread:2.84.32.80/@comment-22439-20150924082625\nThread:2.85.229.199/@comment-22439-20150416193305\nThread:2.85.231.5/@comment-22439-20151223002103\nThread:2.85.79.178/@comment-22439-20170110165141\nThread:2.86.195.192/@comment-22439-20150223094323\nThread:2.86.195.8/@comment-22439-20161031081615\nThread:2.88.30.244/@comment-22439-20150419195632\nThread:2.96.163.98/@comment-22439-20150226000624\nThread:2.96.213.40/@comment-22439-20150802191528\nThread:2.96.47.38/@comment-22439-20150713203930\nThread:2.97.7.0/@comment-22439-20150209161123\nThread:2.98.152.81/@comment-22439-20170808075533\nThread:2.98.177.184/@comment-22439-20150103194746\nThread:2.99.0.251/@comment-22439-20140925214107\nThread:2.99.218.211/@comment-22439-20150125095140\nThread:2.99.81.233/@comment-22439-20150827230047\nThread:20.133.0.13/@comment-22439-20160121165341\nThread:200.112.19.31/@comment-22439-20151113113127\nThread:200.113.32.182/@comment-22439-20150925191918\nThread:200.125.71.19/@comment-22439-20150530225839\nThread:200.165.164.244/@comment-22439-20150623205148\nThread:200.172.252.68/@comment-22439-20160519203213\nThread:200.85.54.26/@comment-22439-20160808194815\nThread:200.86.48.92/@comment-22439-20150624155320\nThread:2001:16B8:429B:5600:69FB:32EF:B257:D79E/@comment-22439-20170802140235\nThread:2001:16B8:696:8B00:20C3:D41C:704D:4CDD/@comment-32769624-20170818231803\nThread:2001:1970:5DD6:9D00:6C16:4F33:323E:8FDA/@comment-32769624-20170903054555\nThread:2001:1C05:1200:2600:A495:7B0D:8D9D:89DC/@comment-32769624-20170828190914\nThread:2001:44B8:2BE:4704:7090:9E8C:CD46:2507/@comment-22439-20170727110107\nThread:2001:4641:396:0:E4C1:3CAD:79A4:1283/@comment-32769624-20170820085338\nThread:2001:48F8:3037:FC2:89E7:CF7C:305E:E68C/@comment-22439-20170715015849\nThread:2001:569:7C25:AB00:2CFC:1965:6D39:2E17/@comment-22439-20170710200642\nThread:2001:8003:2446:AB00:6D36:233A:2572:F731/@comment-22439-20170719161805\nThread:2001:8003:2446:AB00:CD81:C5F5:40D7:7541/@comment-22439-20170722115509\nThread:2001:8003:5514:9900:5C31:9EDF:C08:FE12/@comment-22439-20170720015203\nThread:2003:55:EE1E:99CD:1435:1CC7:EF9C:379E/@comment-32769624-20170825163932\nThread:2003:5F:280F:C439:48AB:298A:1BC9:13B2/@comment-22439-20170801185643\nThread:2003:6:2146:6A53:88DD:7984:80B1:1FA1/@comment-32769624-20170825012834\nThread:2003:6A:6A07:B11:F536:99CD:3125:F568/@comment-22439-20170724134215\nThread:2003:C6:C3C8:C912:C976:8D8A:6CB8:8129/@comment-22439-20170714152706\nThread:2003:C6:C3D0:5D36:6496:6759:2F90:F82E/@comment-32769624-20170818170842\nThread:2003:CC:6BEA:2781:C833:6245:9228:4136/@comment-22439-20170701214907\nThread:2003:DB:13CA:7A00:7910:991E:E75B:42F9/@comment-32769624-20170901165126\nThread:2003:DF:23D6:D55A:D938:B836:4121:16A8/@comment-22439-20170724124100\nThread:2003:E4:D3C5:6301:CDC8:3359:3DF2:5AFA/@comment-4403388-20170811175951\nThread:201.141.232.193/@comment-22439-20141127152714\nThread:201.153.234.183/@comment-22439-20160607150045\nThread:201.233.2.45/@comment-22439-20141224045140\nThread:201.3.105.98/@comment-22439-20160107032635\nThread:201.34.59.174/@comment-22439-20150116020449\nThread:201.37.232.159/@comment-22439-20150725005153\nThread:201.42.221.230/@comment-22439-20170426234903\nThread:201.47.215.219/@comment-22439-20170523200627\nThread:201.47.227.125/@comment-22439-20170104110059\nThread:201.52.196.217/@comment-22439-20150114042253\nThread:201.7.186.59/@comment-22439-20170130170322\nThread:201.70.169.219/@comment-22439-20160212111238\nThread:201.81.241.117/@comment-22439-20161004043830\nThread:201.82.60.184/@comment-22439-20160203200104\nThread:202.129.184.234/@comment-22439-20150715173623\nThread:202.138.12.126/@comment-22439-20150531045947\nThread:202.141.255.90/@comment-22439-20170712061547\nThread:202.147.46.147/@comment-22439-20150515070429\nThread:202.150.126.163/@comment-22439-20150717045940\nThread:202.156.46.73/@comment-22439-20141226070240\nThread:202.159.181.55/@comment-22439-20150202121414\nThread:202.169.246.120/@comment-22439-20170412085842\nThread:202.171.160.184/@comment-22439-20141224035912\nThread:202.171.168.172/@comment-22439-20150524124459\nThread:202.174.174.123/@comment-22439-20150504080319\nThread:202.176.218.100/@comment-32769624-20170821081201\nThread:202.177.218.75/@comment-22439-20150114042742\nThread:202.180.70.20/@comment-22439-20150331051832\nThread:202.36.179.100/@comment-22439-20150420004849\nThread:202.36.179.104/@comment-22439-20160118025134\nThread:202.36.179.81/@comment-22439-20150515010137\nThread:202.37.17.68/@comment-22439-20160717002512\nThread:202.45.119.36/@comment-22439-20170720234226\nThread:202.50.0.100/@comment-22439-20150506010942\nThread:202.50.5.100/@comment-22439-20150512004850\nThread:202.59.241.67/@comment-22439-20160824005813\nThread:202.61.133.8/@comment-22439-20160301060612\nThread:202.67.105.187/@comment-22439-20160215112720\nThread:202.72.150.98/@comment-22439-20150525083803\nThread:202.80.212.176/@comment-22439-20170127140213\nThread:202.80.212.204/@comment-22439-20161029163034\nThread:202.89.167.243/@comment-22439-20141201140348\nThread:202.90.82.184/@comment-22439-20141223050911\nThread:202.94.72.27/@comment-22439-20141224045654\nThread:203.104.11.24/@comment-22439-20151110005754\nThread:203.104.11.27/@comment-22439-20160201235244\nThread:203.106.113.203/@comment-22439-20150926155201\nThread:203.116.187.1/@comment-22439-20150514034618\nThread:203.129.54.34/@comment-22439-20141218155818\nThread:203.129.55.114/@comment-22439-20150516015041\nThread:203.14.52.144/@comment-22439-20150207074231\nThread:203.14.52.145/@comment-22439-20170125001810\nThread:203.161.76.104/@comment-22439-20150311062121\nThread:203.161.94.78/@comment-22439-20161201083007\nThread:203.168.58.34/@comment-22439-20160209052745\nThread:203.171.54.38/@comment-22439-20130114212202\nThread:203.173.179.166/@comment-22439-20150301010206\nThread:203.173.29.85/@comment-22439-20160503091746\nThread:203.179.90.205/@comment-22439-20160222093946\nThread:203.184.21.43/@comment-22439-20170206055100\nThread:203.185.180.236/@comment-22439-20150112015331\nThread:203.185.180.254/@comment-22439-20150111145111\nThread:203.194.11.73/@comment-22439-20170108150622\nThread:203.201.225.211/@comment-22439-20150824115055\nThread:203.206.122.242/@comment-22439-20150809042920\nThread:203.206.20.249/@comment-22439-20150615132558\nThread:203.206.233.232/@comment-22439-20150902061141\nThread:203.206.35.105/@comment-22439-20150413145313\nThread:203.206.5.115/@comment-22439-20150312085551\nThread:203.213.49.147/@comment-22439-20150122015007\nThread:203.214.128.236/@comment-22439-20150115133550\nThread:203.214.82.38/@comment-22439-20170424025704\nThread:203.217.12.146/@comment-22439-20150305222000\nThread:203.217.30.55/@comment-22439-20150202001038\nThread:203.217.38.58/@comment-22439-20161018104943\nThread:203.218.79.92/@comment-22439-20160903150925\nThread:203.219.228.189/@comment-22439-20170718082033\nThread:203.221.210.40/@comment-22439-20170415121753\nThread:203.40.33.160/@comment-22439-20160731152553\nThread:203.45.151.71/@comment-22439-20150203140629\nThread:203.56.22.126/@comment-22439-20150416003730\nThread:203.57.208.193/@comment-22439-20150727063001\nThread:203.59.108.3/@comment-22439-20151111082222\nThread:203.59.210.118/@comment-22439-20150516060626\nThread:203.59.6.220/@comment-22439-20160910091158\nThread:203.62.211.6/@comment-22439-20141121021304\nThread:203.7.13.252/@comment-22439-20161012102414\nThread:203.7.75.205/@comment-22439-20161106064921\nThread:203.7.81.23/@comment-22439-20170127081127\nThread:203.7.85.87/@comment-22439-20170216163559\nThread:203.7.97.135/@comment-22439-20150315045724\nThread:203.79.101.78/@comment-22439-20160827025930\nThread:203.86.204.36/@comment-22439-20150109040455\nThread:203.96.200.84/@comment-22439-20150310104002\nThread:204.109.64.68/@comment-22439-20151016161159\nThread:204.11.185.224/@comment-22439-20160205173922\nThread:204.11.209.212/@comment-22439-20141002143853\nThread:204.111.255.79/@comment-22439-20150302000626\nThread:204.112.10.60/@comment-22439-20151201160053\nThread:204.112.23.46/@comment-22439-20150904052054\nThread:204.112.26.121/@comment-22439-20150917083139\nThread:204.112.27.159/@comment-22439-20150911115352\nThread:204.112.29.149/@comment-22439-20150912031838\nThread:204.112.29.249/@comment-22439-20151206142503\nThread:204.112.3.82/@comment-22439-20160822031844\nThread:204.112.34.99/@comment-22439-20150509104533\nThread:204.112.35.135/@comment-22439-20150531234300\nThread:204.112.38.153/@comment-22439-20150909011149\nThread:204.112.38.196/@comment-22439-20151203175720\nThread:204.112.5.230/@comment-22439-20151117132546\nThread:204.112.51.241/@comment-22439-20150925220726\nThread:204.124.18.195/@comment-22439-20151223221008\nThread:204.14.164.166/@comment-22439-20170712003542\nThread:204.152.156.1/@comment-22439-20151124160454\nThread:204.16.232.2/@comment-22439-20141114220351\nThread:204.169.28.106/@comment-22439-20151125161406\nThread:204.17.33.178/@comment-22439-20161201154931\nThread:204.186.195.72/@comment-22439-20170121210031\nThread:204.186.68.102/@comment-22439-20151221210645\nThread:204.187.101.227/@comment-22439-20150201230405\nThread:204.191.154.122/@comment-22439-20160118230331\nThread:204.191.90.246/@comment-22439-20150412200831\nThread:204.209.209.131/@comment-22439-20150508160046\nThread:204.236.115.240/@comment-22439-20150103223100\nThread:204.27.156.147/@comment-22439-20160411203930\nThread:204.40.130.131/@comment-22439-20170626150452\nThread:204.50.199.4/@comment-22439-20150120015728\nThread:204.54.36.245/@comment-22439-20150826143236\nThread:204.75.125.134/@comment-22439-20161014134646\nThread:204.8.193.172/@comment-22439-20150827201558\nThread:204.83.116.180/@comment-22439-20170118053240\nThread:205.147.237.11/@comment-22439-20151216122622\nThread:205.167.170.20/@comment-22439-20160106212422\nThread:205.167.7.194/@comment-22439-20170427150502\nThread:205.168.48.194/@comment-22439-20150501164322\nThread:205.174.48.3/@comment-22439-20150611170546\nThread:205.197.219.34/@comment-22439-20150112201113\nThread:205.197.242.154/@comment-22439-20161027102316\nThread:205.204.21.78/@comment-22439-20160831055402\nThread:205.206.72.126/@comment-22439-20150831170931\nThread:205.206.90.137/@comment-22439-20141124085437\nThread:205.209.78.180/@comment-22439-20150517201751\nThread:205.210.253.12/@comment-22439-20141006193702\nThread:205.211.112.130/@comment-22439-20150114143246\nThread:205.213.208.86/@comment-22439-20170331171117\nThread:205.222.248.112/@comment-22439-20141218161106\nThread:205.222.248.112/@comment-82.181.36.147-20141220213635\nThread:205.222.248.112/@comment-82.181.36.147-20141220213635/@comment-108.215.139.19-20141222203342\nThread:205.222.248.120/@comment-22439-20170516131049\nThread:205.237.231.50/@comment-22439-20150211234420\nThread:205.57.48.8/@comment-22439-20151125223837\nThread:206.105.116.11/@comment-22439-20150713135740\nThread:206.116.68.11/@comment-22439-20150313074830\nThread:206.125.89.63/@comment-22439-20160227115626\nThread:206.16.224.136/@comment-22439-20160112214425\nThread:206.173.9.66/@comment-22439-20150128051544\nThread:206.174.12.46/@comment-22439-20150917172350\nThread:206.174.199.142/@comment-32769624-20170825053232\nThread:206.174.243.110/@comment-22439-20160325033641\nThread:206.174.97.138/@comment-22439-20141118092831\nThread:206.208.187.105/@comment-22439-20160310201349\nThread:206.217.17.47/@comment-22439-20160717071316\nThread:206.251.41.130/@comment-22439-20150104040651\nThread:206.251.43.121/@comment-22439-20150623013353\nThread:206.255.220.148/@comment-22439-20150502160056\nThread:206.255.91.226/@comment-22439-20170101170935\nThread:206.45.38.43/@comment-22439-20150219184101\nThread:206.45.79.199/@comment-22439-20170430201510\nThread:206.47.100.175/@comment-22439-20151001174651\nThread:206.47.101.222/@comment-22439-20151117190334\nThread:206.47.112.138/@comment-22439-20160122175203\nThread:206.47.113.74/@comment-22439-20160413064031\nThread:206.47.136.172/@comment-22439-20160127200857\nThread:206.47.31.116/@comment-22439-20160425200246\nThread:206.47.78.114/@comment-22439-20160812143900\nThread:206.66.66.1/@comment-22439-20150726172804\nThread:206.74.70.134/@comment-22439-20170715164604\nThread:206.75.171.242/@comment-22439-20150606101453\nThread:206.75.19.54/@comment-22439-20161102043737\nThread:206.82.31.8/@comment-22439-20151023174503\nThread:207.155.87.153/@comment-22439-20170210082834\nThread:207.160.119.251/@comment-22439-20160108151958\nThread:207.161.130.75/@comment-22439-20150425064812\nThread:207.161.241.158/@comment-22439-20130110043305\nThread:207.162.58.3/@comment-22439-20151120014744\nThread:207.163.15.122/@comment-22439-20170524155855\nThread:207.164.60.30/@comment-22439-20160219195343\nThread:207.166.7.215/@comment-22439-20160104190757\nThread:207.172.254.213/@comment-22439-20170114202157\nThread:207.179.224.29/@comment-22439-20150923152035\nThread:207.183.171.49/@comment-22439-20151001001827\nThread:207.190.125.19/@comment-22439-20160103072702\nThread:207.204.86.3/@comment-22439-20141210222657\nThread:207.210.5.180/@comment-22439-20150201002342\nThread:207.216.120.119/@comment-22439-20150920175451\nThread:207.224.177.23/@comment-22439-20150916165954\nThread:207.225.128.74/@comment-22439-20141226174536\nThread:207.235.13.59/@comment-22439-20150306151631\nThread:207.236.193.195/@comment-22439-20150804232529\nThread:207.238.166.68/@comment-22439-20170105200652\nThread:207.244.189.141/@comment-22439-20150712002948\nThread:207.244.74.1/@comment-22439-20141226070616\nThread:207.244.77.2/@comment-22439-20150221190241\nThread:207.244.86.201/@comment-22439-20141231224944\nThread:207.250.60.193/@comment-22439-20140521122959\nThread:207.253.1.70/@comment-22439-20160402193929\nThread:207.253.170.194/@comment-22439-20160125212151\nThread:207.255.249.142/@comment-22439-20160822180459\nThread:207.255.250.241/@comment-22439-20170725172236\nThread:207.30.100.162/@comment-22439-20150610151321\nThread:207.47.204.62/@comment-22439-20150130001241\nThread:207.47.253.237/@comment-22439-20150823015208\nThread:207.6.186.207/@comment-22439-20150913120619\nThread:207.62.149.111/@comment-22439-20150308062033\nThread:207.8.224.2/@comment-22439-20150127064255\nThread:207.81.115.168/@comment-22439-20170524202131\nThread:207.81.17.26/@comment-22439-20150319080731\nThread:207.81.239.2/@comment-22439-20150620033402\nThread:207.87.250.150/@comment-22439-20160927175906\nThread:207.96.211.31/@comment-22439-20151017140127\nThread:208.102.117.12/@comment-22439-20151019223823\nThread:208.103.243.249/@comment-22439-20170227223533\nThread:208.105.248.34/@comment-22439-20150312015006\nThread:208.107.102.40/@comment-22439-20150513172320\nThread:208.107.123.36/@comment-22439-20160108140439\nThread:208.107.223.159/@comment-22439-20150422072638\nThread:208.107.224.24/@comment-22439-20160914163829\nThread:208.108.127.250/@comment-22439-20150123060039\nThread:208.108.212.70/@comment-22439-20151013140911\nThread:208.114.92.134/@comment-32769624-20170827034111\nThread:208.118.149.62/@comment-22439-20141225221630\nThread:208.119.81.90/@comment-22439-20160309001121\nThread:208.122.126.194/@comment-22439-20170508205234\nThread:208.125.193.34/@comment-22439-20150502000540\nThread:208.126.217.202/@comment-22439-20160719042223\nThread:208.127.120.49/@comment-22439-20141230081920\nThread:208.127.124.18/@comment-22439-20161026053527\nThread:208.138.31.76/@comment-22439-20141231172809\nThread:208.167.254.205/@comment-22439-20150721135424\nThread:208.180.123.195/@comment-22439-20170123090404\nThread:208.180.216.168/@comment-22439-20160920154816\nThread:208.184.157.62/@comment-22439-20170201171518\nThread:208.38.124.35/@comment-22439-20150608201823\nThread:208.46.188.190/@comment-22439-20141006210601\nThread:208.54.83.137/@comment-22439-20170116230809\nThread:208.54.83.252/@comment-22439-20141112000139\nThread:208.58.127.2/@comment-22439-20150807165510\nThread:208.58.205.146/@comment-22439-20161104181311\nThread:208.58.52.242/@comment-22439-20160112132438\nThread:208.59.132.97/@comment-22439-20160330025018\nThread:208.70.82.22/@comment-32769624-20170820133640\nThread:208.74.212.59/@comment-22439-20170424022752\nThread:208.79.244.64/@comment-22439-20141223175807\nThread:208.86.202.10/@comment-22439-20150807211003\nThread:208.87.196.68/@comment-22439-20150318204037\nThread:208.88.170.206/@comment-22439-20150711164051\nThread:208.91.1.34/@comment-22439-20160809135020\nThread:208.92.19.20/@comment-22439-20160522190319\nThread:208.92.20.48/@comment-22439-20160811195343\nThread:208.94.110.50/@comment-22439-20160825192008\nThread:208.95.100.29/@comment-22439-20170512202830\nThread:208.96.73.84/@comment-22439-20160103062314\nThread:209.107.210.64/@comment-32769624-20170823223833\nThread:209.112.208.16/@comment-22439-20150322203938\nThread:209.12.67.163/@comment-22439-20150828235406\nThread:209.121.203.45/@comment-22439-20151201020513\nThread:209.129.148.213/@comment-22439-20160317203504\nThread:209.129.241.42/@comment-22439-20170427021944\nThread:209.129.33.10/@comment-22439-20170620162917\nThread:209.132.221.66/@comment-22439-20150104081134\nThread:209.147.144.17/@comment-22439-20150503214231\nThread:209.152.108.167/@comment-22439-20160621162901\nThread:209.159.249.80/@comment-22439-20160408183934\nThread:209.169.196.5/@comment-22439-20140928204752\nThread:209.169.66.112/@comment-22439-20161027223011\nThread:209.17.128.228/@comment-22439-20150623153513\nThread:209.173.14.125/@comment-22439-20150112152109\nThread:209.181.252.33/@comment-22439-20151227183551\nThread:209.183.185.254/@comment-22439-20151014033302\nThread:209.197.138.154/@comment-22439-20151201030358\nThread:209.197.6.182/@comment-22439-20150624080546\nThread:209.203.210.233/@comment-22439-20170613202241\nThread:209.203.31.186/@comment-22439-20150423055618\nThread:209.211.111.130/@comment-22439-20150617181938\nThread:209.217.213.114/@comment-22439-20150610144430\nThread:209.22.221.73/@comment-22439-20150124110441\nThread:209.226.83.236/@comment-22439-20151109164342\nThread:209.23.239.126/@comment-22439-20150416174204\nThread:209.234.187.245/@comment-22439-20150714183235\nThread:209.237.120.80/@comment-22439-20160719204818\nThread:209.242.141.55/@comment-22439-20151013181721\nThread:209.242.141.60/@comment-22439-20160204170219\nThread:209.242.141.63/@comment-22439-20151209215011\nThread:209.242.166.83/@comment-22439-20150130175749\nThread:209.33.126.70/@comment-22439-20160526233650\nThread:209.41.116.253/@comment-22439-20150625053726\nThread:209.41.116.254/@comment-22439-20150610044710\nThread:209.51.65.158/@comment-22439-20150107033327\nThread:209.52.10.218/@comment-22439-20151115002208\nThread:209.54.78.19/@comment-22439-20151229020042\nThread:209.58.128.143/@comment-22439-20141214210227\nThread:209.6.66.7/@comment-22439-20150426213327\nThread:209.63.111.66/@comment-22439-20170429093358\nThread:209.91.107.153/@comment-22439-20150316233410\nThread:209.93.210.112/@comment-22439-20160825101455\nThread:209.93.216.130/@comment-22439-20170524004343\nThread:209.93.47.80/@comment-22439-20170523083649\nThread:209.95.50.102/@comment-22439-20151219014357\nThread:209.95.50.45/@comment-22439-20160512175205\nThread:209.95.50.50/@comment-22439-20161228155127\nThread:210.108.144.17/@comment-22439-20150103082222\nThread:210.124.128.146/@comment-22439-20160305114509\nThread:210.176.194.100/@comment-22439-20170206023255\nThread:210.216.57.205/@comment-22439-20141115195805\nThread:210.246.25.204/@comment-22439-20161127021909\nThread:210.246.50.90/@comment-22439-20150208082928\nThread:210.49.91.112/@comment-22439-20150103222212\nThread:210.50.251.232/@comment-32769624-20170903230137\nThread:210.54.38.13/@comment-22439-20151218200313\nThread:210.55.18.198/@comment-22439-20150903185749\nThread:210.55.186.178/@comment-22439-20150728224900\nThread:210.56.68.148/@comment-22439-20160804022835\nThread:210.86.93.108/@comment-22439-20150615005035\nThread:210.94.98.151/@comment-22439-20170331062400\nThread:211.181.144.144/@comment-22439-20150609123738\nThread:211.24.50.45/@comment-22439-20131224015332\nThread:211.26.211.103/@comment-22439-20170608121743\nThread:211.28.46.54/@comment-22439-20150913040214\nThread:211.30.20.175/@comment-22439-20160124074227\nThread:211.33.6.190/@comment-22439-20170725121158\nThread:211.36.156.97/@comment-22439-20160723124835\nThread:212.10.25.166/@comment-22439-20150316221508\nThread:212.111.4.206/@comment-22439-20141228230904\nThread:212.112.149.50/@comment-22439-20160725144652\nThread:212.112.154.177/@comment-22439-20160516123554\nThread:212.114.159.142/@comment-22439-20151009065323\nThread:212.120.229.225/@comment-22439-20150125132409\nThread:212.124.158.255/@comment-22439-20150326142008\nThread:212.124.236.1/@comment-22439-20150216114305\nThread:212.127.204.25/@comment-22439-20150131134559\nThread:212.130.241.198/@comment-22439-20170519083313\nThread:212.130.56.55/@comment-22439-20151109144623\nThread:212.131.148.177/@comment-22439-20141126091244\nThread:212.150.174.180/@comment-22439-20150723131406\nThread:212.159.100.81/@comment-22439-20150213000302\nThread:212.159.112.118/@comment-22439-20150316225310\nThread:212.159.117.21/@comment-22439-20151016155407\nThread:212.159.122.240/@comment-22439-20161225163921\nThread:212.159.184.252/@comment-22439-20150324112544\nThread:212.159.19.208/@comment-22439-20150718202429\nThread:212.159.35.110/@comment-22439-20150102150801\nThread:212.159.46.162/@comment-22439-20150322094725\nThread:212.161.30.62/@comment-22439-20151218132957\nThread:212.167.5.6/@comment-22439-20161201141805\nThread:212.169.36.40/@comment-22439-20150629140641\nThread:212.17.38.148/@comment-22439-20150310192908\nThread:212.178.246.94/@comment-22439-20160114234631\nThread:212.18.176.6/@comment-22439-20150123060618\nThread:212.183.111.145/@comment-22439-20150211214108\nThread:212.183.128.235/@comment-22439-20141217013841\nThread:212.183.140.19/@comment-22439-20141221231743\nThread:212.187.95.37/@comment-22439-20150303222623\nThread:212.193.78.163/@comment-22439-20160309121933\nThread:212.198.117.28/@comment-22439-20151014132702\nThread:212.198.89.104/@comment-22439-20150128102627\nThread:212.200.132.81/@comment-22439-20141219075506\nThread:212.202.64.10/@comment-22439-20160127082134\nThread:212.204.68.178/@comment-22439-20151001113119\nThread:212.205.39.98/@comment-22439-20170704201438\nThread:212.219.240.75/@comment-22439-20160113134521\nThread:212.219.248.132/@comment-22439-20170522123742\nThread:212.219.39.137/@comment-22439-20141014121342\nThread:212.219.49.93/@comment-22439-20150226145511\nThread:212.23.9.210/@comment-22439-20141111155754\nThread:212.241.109.214/@comment-22439-20160126224506\nThread:212.242.247.116/@comment-22439-20160120175216\nThread:212.247.15.114/@comment-22439-20170505064349\nThread:212.250.100.34/@comment-22439-20141210151245\nThread:212.250.169.98/@comment-22439-20150506172253\nThread:212.250.214.3/@comment-22439-20160503081918\nThread:212.250.214.4/@comment-22439-20160503081515\nThread:212.250.214.7/@comment-22439-20160503085214\nThread:212.250.25.118/@comment-22439-20150521142424\nThread:212.251.198.176/@comment-22439-20150315130941\nThread:212.251.53.165/@comment-22439-20150505060253\nThread:212.252.98.10/@comment-22439-20161029004647\nThread:212.253.220.113/@comment-22439-20151020194627\nThread:212.35.27.63/@comment-22439-20161102112312\nThread:212.41.65.33/@comment-22439-20150309170130\nThread:212.42.177.213/@comment-22439-20150621152607\nThread:212.44.18.254/@comment-22439-20150223144450\nThread:212.44.19.62/@comment-22439-20150622152920\nThread:212.50.119.23/@comment-22439-20141227160813\nThread:212.50.133.39/@comment-22439-20160117180246\nThread:212.50.133.62/@comment-22439-20150406165742\nThread:212.51.136.110/@comment-22439-20150403134627\nThread:212.59.37.193/@comment-22439-20150828061948\nThread:212.59.47.2/@comment-22439-20150325094825\nThread:212.60.176.218/@comment-22439-20150328175858\nThread:212.60.33.220/@comment-22439-20161213214539\nThread:212.69.51.71/@comment-22439-20150419184837\nThread:212.85.181.163/@comment-22439-20150413120628\nThread:212.85.88.117/@comment-22439-20150110233614\nThread:212.87.70.130/@comment-4403388-20170814082607\nThread:212.93.116.117/@comment-22439-20150930193543\nThread:212.95.12.67/@comment-22439-20160113155339\nThread:212.96.58.244/@comment-22439-20170213211058\nThread:212.97.234.199/@comment-22439-20150307121051\nThread:213.1.249.253/@comment-22439-20150729130926\nThread:213.10.174.205/@comment-22439-20141214025914\nThread:213.10.86.45/@comment-22439-20160823120919\nThread:213.104.129.236/@comment-22439-20160127154527\nThread:213.104.224.122/@comment-22439-20150609230725\nThread:213.104.33.0/@comment-22439-20150524160502\nThread:213.106.113.50/@comment-22439-20150606144435\nThread:213.106.4.221/@comment-22439-20150725150119\nThread:213.106.84.43/@comment-22439-20140925114946\nThread:213.107.112.201/@comment-22439-20141029010834\nThread:213.107.176.22/@comment-22439-20150606122950\nThread:213.112.123.223/@comment-22439-20170618215449\nThread:213.114.128.40/@comment-22439-20150315162628\nThread:213.114.157.12/@comment-22439-20160207184323\nThread:213.114.71.185/@comment-22439-20150105160320\nThread:213.118.129.55/@comment-22439-20141004224434\nThread:213.118.180.216/@comment-22439-20150124220601\nThread:213.118.7.57/@comment-22439-20150925155634\nThread:213.120.234.106/@comment-22439-20150310211205\nThread:213.120.234.109/@comment-22439-20150705215459\nThread:213.120.234.122/@comment-22439-20150331175648\nThread:213.120.234.138/@comment-22439-20150915192141\nThread:213.120.234.146/@comment-22439-20151111144014\nThread:213.120.234.154/@comment-22439-20150331181456\nThread:213.120.94.197/@comment-22439-20141231122349\nThread:213.121.188.130/@comment-22439-20160205104650\nThread:213.122.150.226/@comment-22439-20161007115551\nThread:213.123.224.182/@comment-22439-20151004180348\nThread:213.125.131.226/@comment-22439-20150113101043\nThread:213.125.176.250/@comment-22439-20160124184602\nThread:213.127.233.19/@comment-22439-20170414161511\nThread:213.127.69.182/@comment-22439-20170119034917\nThread:213.127.72.24/@comment-22439-20170112163015\nThread:213.128.183.200/@comment-22439-20150317201527\nThread:213.129.33.126/@comment-22439-20150529141400\nThread:213.134.242.115/@comment-22439-20170701120402\nThread:213.136.0.93/@comment-22439-20160210112538\nThread:213.14.152.246/@comment-22439-20161122071702\nThread:213.14.171.51/@comment-22439-20170628141227\nThread:213.140.68.166/@comment-22439-20160223210609\nThread:213.143.115.81/@comment-32769624-20170830081837\nThread:213.144.92.2/@comment-22439-20170125134823\nThread:213.153.91.179/@comment-22439-20150105153342\nThread:213.156.126.64/@comment-22439-20150102015023\nThread:213.162.68.90/@comment-22439-20151107031246\nThread:213.168.177.14/@comment-22439-20150129123754\nThread:213.172.91.229/@comment-22439-20141228090559\nThread:213.174.192.220/@comment-22439-20151102115442\nThread:213.185.226.15/@comment-22439-20150315055656\nThread:213.188.127.173/@comment-22439-20160804205338\nThread:213.204.48.131/@comment-22439-20151206111039\nThread:213.205.194.185/@comment-22439-20151116204944\nThread:213.205.253.124/@comment-22439-20170515113825\nThread:213.206.188.68/@comment-22439-20151126204819\nThread:213.206.237.194/@comment-22439-20141215220516\nThread:213.209.79.173/@comment-32769624-20170902115918\nThread:213.21.11.95/@comment-22439-20170309054640\nThread:213.21.33.78/@comment-22439-20141219021457\nThread:213.21.90.11/@comment-22439-20141002105342\nThread:213.211.213.202/@comment-22439-20150115213704\nThread:213.211.214.66/@comment-22439-20150628163029\nThread:213.211.39.65/@comment-22439-20150606151958\nThread:213.219.154.151/@comment-22439-20150516110944\nThread:213.243.175.189/@comment-22439-20141026074517\nThread:213.243.180.79/@comment-22439-20170419115228\nThread:213.246.186.191/@comment-22439-20150113070909\nThread:213.249.140.86/@comment-22439-20130225143912\nThread:213.249.232.33/@comment-22439-20141212051537\nThread:213.251.230.57/@comment-22439-20170721214946\nThread:213.254.131.239/@comment-22439-20161121130413\nThread:213.29.118.223/@comment-22439-20150113222334\nThread:213.32.242.226/@comment-22439-20170625191610\nThread:213.33.10.133/@comment-22439-20141223151838\nThread:213.37.122.67/@comment-22439-20141226234505\nThread:213.39.145.88/@comment-22439-20150329145613\nThread:213.46.119.188/@comment-22439-20150713175023\nThread:213.46.36.137/@comment-22439-20151216125530\nThread:213.47.46.77/@comment-4403388-20170815170310\nThread:213.47.57.226/@comment-22439-20150102123347\nThread:213.47.77.205/@comment-22439-20151205063632\nThread:213.47.84.196/@comment-22439-20150513181000\nThread:213.48.137.24/@comment-22439-20150914145836\nThread:213.50.164.1/@comment-22439-20141012083631\nThread:213.65.158.103/@comment-22439-20150916054634\nThread:213.7.33.89/@comment-22439-20150423191902\nThread:213.70.98.2/@comment-22439-20150410123535\nThread:213.80.106.54/@comment-22439-20160729153108\nThread:213.81.131.34/@comment-22439-20170522005813\nThread:213.87.130.203/@comment-22439-20150801175854\nThread:213.87.139.21/@comment-22439-20150216114415\nThread:213.88.27.20/@comment-22439-20150128022925\nThread:213.89.72.142/@comment-22439-20161119192952\nThread:213.93.13.15/@comment-4403388-20170809222121\nThread:213.93.179.103/@comment-22439-20140928202308\nThread:213.93.219.126/@comment-22439-20140916181923\nThread:213.93.63.19/@comment-22439-20141020141417\nThread:213.93.75.232/@comment-22439-20150131145217\nThread:216.1.200.2/@comment-22439-20151210220804\nThread:216.10.175.81/@comment-22439-20170708215516\nThread:216.100.91.10/@comment-22439-20160226192809\nThread:216.108.17.126/@comment-22439-20160207200117\nThread:216.108.25.5/@comment-22439-20150624003756\nThread:216.110.194.19/@comment-22439-20170417042326\nThread:216.110.250.95/@comment-22439-20150420015845\nThread:216.113.55.223/@comment-22439-20170804095212\nThread:216.114.50.74/@comment-22439-20150704193128\nThread:216.116.252.50/@comment-22439-20150916163824\nThread:216.121.135.133/@comment-22439-20150725230413\nThread:216.121.216.235/@comment-22439-20150714040833\nThread:216.121.235.144/@comment-22439-20170519184829\nThread:216.128.101.136/@comment-22439-20170701211202\nThread:216.136.13.242/@comment-22439-20170807203555\nThread:216.145.81.17/@comment-22439-20150715194734\nThread:216.146.186.227/@comment-22439-20141208232955\nThread:216.15.113.175/@comment-22439-20170314162822\nThread:216.15.25.248/@comment-22439-20150115122517\nThread:216.154.105.28/@comment-22439-20141221085342\nThread:216.157.200.126/@comment-22439-20151019121140\nThread:216.161.95.133/@comment-22439-20150113073702\nThread:216.164.232.183/@comment-22439-20170403193334\nThread:216.166.20.1/@comment-22439-20150203052635\nThread:216.184.95.100/@comment-32769624-20170817125416\nThread:216.185.63.23/@comment-22439-20141103165159\nThread:216.186.217.14/@comment-22439-20160529215115\nThread:216.186.221.149/@comment-22439-20150108123635\nThread:216.203.80.125/@comment-22439-20160226131929\nThread:216.209.229.222/@comment-22439-20161210022157\nThread:216.211.178.8/@comment-22439-20160207044557\nThread:216.221.119.224/@comment-22439-20150912041120\nThread:216.221.88.67/@comment-22439-20150413174237\nThread:216.229.170.227/@comment-22439-20161026200207\nThread:216.229.21.11/@comment-22439-20150316120234\nThread:216.232.238.113/@comment-22439-20150804041241\nThread:216.237.234.29/@comment-22439-20160720194355\nThread:216.246.233.85/@comment-22439-20150505043939\nThread:216.251.21.87/@comment-22439-20160414025023\nThread:216.26.106.82/@comment-22439-20160228230049\nThread:216.36.8.153/@comment-22439-20150429224706\nThread:216.40.73.161/@comment-22439-20170225015240\nThread:216.48.132.138/@comment-22439-20160121133321\nThread:216.58.56.56/@comment-22439-20151017011005\nThread:216.6.241.157/@comment-22439-20141218043659\nThread:216.63.175.7/@comment-22439-20160925042711\nThread:216.67.122.9/@comment-22439-20150922052447\nThread:216.70.8.194/@comment-22439-20150317135550\nThread:216.81.94.70/@comment-22439-20150808181108\nThread:216.82.241.35/@comment-22439-20160710180456\nThread:217.10.128.170/@comment-22439-20141103114616\nThread:217.10.136.229/@comment-22439-20130907213725\nThread:217.103.113.206/@comment-22439-20160104203019\nThread:217.112.168.161/@comment-22439-20170520105003\nThread:217.115.65.19/@comment-22439-20150123062227\nThread:217.115.65.20/@comment-22439-20150127054948\nThread:217.115.65.21/@comment-22439-20150130223901\nThread:217.120.123.160/@comment-22439-20160911182404\nThread:217.120.202.195/@comment-22439-20150809224452\nThread:217.120.238.45/@comment-22439-20160225174802\nThread:217.120.74.73/@comment-22439-20150707205726\nThread:217.121.218.161/@comment-22439-20141011225242\nThread:217.121.233.136/@comment-22439-20141231202955\nThread:217.121.72.88/@comment-22439-20150710194527\nThread:217.122.192.124/@comment-22439-20150524080641\nThread:217.123.142.75/@comment-22439-20140918222740\nThread:217.129.168.245/@comment-22439-20151019215504\nThread:217.13.128.68/@comment-22439-20150217160309\nThread:217.136.39.248/@comment-22439-20160216011031\nThread:217.136.43.223/@comment-22439-20160607091129\nThread:217.140.243.24/@comment-22439-20130114111720\nThread:217.140.245.32/@comment-22439-20131016034920\nThread:217.149.117.196/@comment-22439-20160528165154\nThread:217.150.32.232/@comment-22439-20150205051836\nThread:217.155.43.123/@comment-22439-20150820130239\nThread:217.155.64.19/@comment-22439-20141222191326\nThread:217.156.103.4/@comment-22439-20150619155609\nThread:217.156.156.69/@comment-22439-20150518083549\nThread:217.156.254.68/@comment-22439-20160119152358\nThread:217.162.107.158/@comment-22439-20150715162225\nThread:217.162.181.10/@comment-22439-20160120180406\nThread:217.186.252.218/@comment-22439-20170219130018\nThread:217.187.172.211/@comment-22439-20150801022500\nThread:217.187.175.177/@comment-22439-20150727141304\nThread:217.189.194.33/@comment-22439-20150327224957\nThread:217.19.28.60/@comment-22439-20170105160338\nThread:217.190.184.235/@comment-22439-20141224135318\nThread:217.191.236.40/@comment-22439-20150101233213\nThread:217.196.75.67/@comment-22439-20150901134710\nThread:217.20.16.190/@comment-4403388-20170817085119\nThread:217.206.155.18/@comment-22439-20161111145624\nThread:217.206.228.211/@comment-22439-20161006140334\nThread:217.210.64.145/@comment-22439-20150710014637\nThread:217.210.76.238/@comment-22439-20160311173011\nThread:217.211.168.74/@comment-22439-20150526154809\nThread:217.211.174.175/@comment-22439-20160804015229\nThread:217.215.8.123/@comment-22439-20170204152314\nThread:217.225.187.252/@comment-22439-20161024001140\nThread:217.229.134.245/@comment-22439-20150622130042\nThread:217.229.5.33/@comment-22439-20150727200553\nThread:217.230.0.209/@comment-22439-20141005184636\nThread:217.230.21.70/@comment-22439-20150603174650\nThread:217.233.83.192/@comment-22439-20150207065807\nThread:217.233.86.74/@comment-22439-20150109164252\nThread:217.235.224.146/@comment-22439-20150320170958\nThread:217.252.102.76/@comment-22439-20151028222934\nThread:217.252.82.25/@comment-22439-20150615212153\nThread:217.252.85.44/@comment-22439-20150622140639\nThread:217.252.95.185/@comment-22439-20150627203337\nThread:217.253.227.172/@comment-22439-20150124194658\nThread:217.254.28.95/@comment-22439-20160108235600\nThread:217.32.219.178/@comment-22439-20150124112851\nThread:217.32.220.171/@comment-22439-20150608120635\nThread:217.33.115.4/@comment-22439-20150630135743\nThread:217.35.229.250/@comment-22439-20151017201618\nThread:217.37.111.25/@comment-22439-20150807114742\nThread:217.39.204.209/@comment-22439-20151116101158\nThread:217.40.212.138/@comment-22439-20150210101308\nThread:217.42.160.58/@comment-22439-20150902220306\nThread:217.43.112.132/@comment-22439-20160326155753\nThread:217.43.204.232/@comment-22439-20170503015121\nThread:217.44.125.233/@comment-22439-20151118113838\nThread:217.44.204.210/@comment-22439-20160512173925\nThread:217.44.216.116/@comment-22439-20150725101406\nThread:217.44.84.62/@comment-22439-20151229014431\nThread:217.44.97.78/@comment-22439-20170128195510\nThread:217.46.67.248/@comment-22439-20151120224825\nThread:217.50.252.90/@comment-22439-20160529011402\nThread:217.50.98.10/@comment-22439-20150129164459\nThread:217.51.170.54/@comment-22439-20151116023653\nThread:217.51.8.152/@comment-22439-20161005000419\nThread:217.63.51.178/@comment-22439-20170131230313\nThread:217.65.255.64/@comment-22439-20151231030133\nThread:217.65.61.55/@comment-22439-20150107013637\nThread:217.66.152.45/@comment-22439-20150628005623\nThread:217.70.31.116/@comment-22439-20131116121015\nThread:217.71.46.34/@comment-22439-20170105150145\nThread:217.71.47.196/@comment-22439-20160220071759\nThread:217.81.40.63/@comment-22439-20150719170355\nThread:217.82.166.135/@comment-22439-20151208191449\nThread:217.85.199.9/@comment-22439-20160112131312\nThread:217.93.194.161/@comment-22439-20151017205553\nThread:217.95.44.216/@comment-22439-20150505115432\nThread:217.95.83.7/@comment-22439-20151019191857\nThread:217.99.147.137/@comment-22439-20151211233545\nThread:218.101.119.205/@comment-22439-20150604065345\nThread:218.17.252.162/@comment-22439-20150925020403\nThread:218.214.113.193/@comment-22439-20150806171245\nThread:218.214.249.209/@comment-22439-20160612041302\nThread:218.250.142.119/@comment-22439-20160628183317\nThread:218.250.142.212/@comment-22439-20160704062719\nThread:219.74.237.179/@comment-22439-20170621110920\nThread:219.75.109.224/@comment-22439-20150629191749\nThread:220.132.232.79/@comment-22439-20151025184534\nThread:220.135.119.178/@comment-22439-20170216121953\nThread:220.209.22.41/@comment-22439-20150106144321\nThread:220.233.117.211/@comment-22439-20150416002847\nThread:220.233.234.74/@comment-22439-20150311001501\nThread:220.233.29.196/@comment-22439-20141230230030\nThread:220.233.64.162/@comment-22439-20150403131919\nThread:220.233.9.125/@comment-22439-20160119053750\nThread:220.233.98.106/@comment-22439-20150204002225\nThread:220.239.101.22/@comment-22439-20161214110343\nThread:220.239.204.47/@comment-22439-20150317135801\nThread:220.239.44.18/@comment-22439-20150510160112\nThread:220.240.137.235/@comment-22439-20150617091849\nThread:220.240.183.240/@comment-22439-20160128105447\nThread:220.240.202.225/@comment-22439-20151122121313\nThread:220.240.46.165/@comment-22439-20150505085921\nThread:220.244.135.219/@comment-22439-20141115040505\nThread:220.244.217.235/@comment-22439-20150101111601\nThread:220.244.4.162/@comment-22439-20150914002045\nThread:220.244.63.162/@comment-22439-20170219235638\nThread:220.245.157.133/@comment-22439-20141225134238\nThread:220.253.132.197/@comment-22439-20170715150027\nThread:220.253.144.214/@comment-22439-20170104060512\nThread:220.253.45.72/@comment-22439-20170313080251\nThread:221.186.93.139/@comment-22439-20170704055227\nThread:222.129.17.251/@comment-22439-20150605102236\nThread:222.152.164.124/@comment-22439-20151009201732\nThread:222.152.184.197/@comment-22439-20150328051335\nThread:222.153.0.116/@comment-22439-20160523141847\nThread:222.154.73.23/@comment-22439-20170122175705\nThread:222.164.186.79/@comment-22439-20150110185614\nThread:223.205.9.229/@comment-22439-20170317154207\nThread:23.120.124.81/@comment-22439-20141115230403\nThread:23.120.241.110/@comment-22439-20150619000317\nThread:23.121.17.103/@comment-22439-20150408081303\nThread:23.122.214.44/@comment-22439-20150317033644\nThread:23.124.164.188/@comment-22439-20150104051339\nThread:23.125.139.95/@comment-22439-20150911205134\nThread:23.16.106.220/@comment-22439-20160810230536\nThread:23.16.160.165/@comment-22439-20160512224631\nThread:23.16.181.220/@comment-22439-20150428021513\nThread:23.16.196.177/@comment-22439-20140921154117\nThread:23.16.39.137/@comment-22439-20150310215552\nThread:23.17.193.195/@comment-22439-20150810043823\nThread:23.228.175.189/@comment-22439-20160108222009\nThread:23.233.1.213/@comment-22439-20150113061214\nThread:23.233.163.16/@comment-22439-20150731085600\nThread:23.233.68.176/@comment-22439-20141224042105\nThread:23.238.143.242/@comment-22439-20170724073401\nThread:23.241.105.66/@comment-22439-20160726142010\nThread:23.241.88.81/@comment-22439-20150416044046\nThread:23.242.17.242/@comment-22439-20151122183207\nThread:23.242.205.117/@comment-22439-20150714005054\nThread:23.243.104.185/@comment-22439-20170527093637\nThread:23.243.16.10/@comment-22439-20150511225628\nThread:23.243.177.165/@comment-22439-20150517214606\nThread:23.252.54.64/@comment-22439-20150101043430\nThread:23.252.83.195/@comment-22439-20141228064553\nThread:23.255.128.115/@comment-22439-20151218085704\nThread:23.255.141.42/@comment-22439-20150121103809\nThread:23.30.224.246/@comment-22439-20150406170707\nThread:23.31.203.154/@comment-22439-20151217192822\nThread:23.91.239.25/@comment-22439-20150408044051\nThread:23.91.248.232/@comment-22439-20151109052549\nThread:23.97.229.135/@comment-22439-20150113095934\nThread:24.0.117.57/@comment-22439-20170804040612\nThread:24.1.13.164/@comment-22439-20151206002654\nThread:24.1.7.128/@comment-22439-20150809172838\nThread:24.1.76.43/@comment-22439-20170307231642\nThread:24.10.109.21/@comment-22439-20150111040357\nThread:24.10.133.211/@comment-22439-20151111133953\nThread:24.10.191.78/@comment-22439-20150915163155\nThread:24.10.194.73/@comment-22439-20150809073229\nThread:24.10.201.22/@comment-22439-20150214200809\nThread:24.10.25.42/@comment-22439-20160207163715\nThread:24.100.136.1/@comment-22439-20170124114156\nThread:24.104.70.146/@comment-22439-20150526192446\nThread:24.107.142.252/@comment-22439-20170731172606\nThread:24.107.155.228/@comment-22439-20151023023843\nThread:24.107.187.63/@comment-22439-20141218185054\nThread:24.107.39.228/@comment-22439-20150312062240\nThread:24.108.196.243/@comment-22439-20170613090744\nThread:24.11.28.110/@comment-22439-20170212193625\nThread:24.111.74.158/@comment-22439-20160903000923\nThread:24.113.13.224/@comment-22439-20151022140930\nThread:24.113.165.151/@comment-22439-20160402052942\nThread:24.113.174.125/@comment-22439-20170130043726\nThread:24.114.48.123/@comment-22439-20150313204741\nThread:24.114.57.133/@comment-22439-20160515060951\nThread:24.114.59.162/@comment-22439-20150312215139\nThread:24.114.70.156/@comment-22439-20150311223656\nThread:24.114.71.238/@comment-22439-20151110120146\nThread:24.115.208.231/@comment-22439-20160504201214\nThread:24.115.98.51/@comment-22439-20150118221346\nThread:24.116.55.17/@comment-22439-20150524230425\nThread:24.117.186.113/@comment-22439-20170203200917\nThread:24.117.207.202/@comment-22439-20151009022045\nThread:24.118.211.245/@comment-22439-20170417233956\nThread:24.118.224.118/@comment-22439-20160310210540\nThread:24.118.47.100/@comment-22439-20150416184145\nThread:24.119.117.98/@comment-32769624-20170826010929\nThread:24.119.176.226/@comment-22439-20150315075224\nThread:24.119.212.227/@comment-22439-20170421233046\nThread:24.12.76.250/@comment-22439-20150116191505\nThread:24.120.35.36/@comment-22439-20170203195747\nThread:24.121.100.115/@comment-22439-20150501004608\nThread:24.124.110.192/@comment-22439-20150706073501\nThread:24.124.121.106/@comment-32769624-20170911071350\nThread:24.124.77.87/@comment-22439-20150831000006\nThread:24.124.95.123/@comment-22439-20150111065138\nThread:24.125.1.107/@comment-22439-20150924011630\nThread:24.125.101.86/@comment-22439-20170114004030\nThread:24.126.215.37/@comment-22439-20141013211946\nThread:24.127.206.107/@comment-22439-20170506030345\nThread:24.127.85.0/@comment-22439-20150111192725\nThread:24.130.129.205/@comment-22439-20150722031958\nThread:24.130.147.167/@comment-22439-20141104151050\nThread:24.130.227.94/@comment-22439-20150402085916\nThread:24.132.173.88/@comment-22439-20150502001203\nThread:24.132.70.227/@comment-22439-20150617214407\nThread:24.138.177.246/@comment-22439-20151029215026\nThread:24.138.43.83/@comment-22439-20150320045400\nThread:24.138.8.129/@comment-22439-20150129025457\nThread:24.14.175.130/@comment-22439-20151031002800\nThread:24.14.215.87/@comment-22439-20151207015922\nThread:24.140.113.193/@comment-22439-20151018193035\nThread:24.141.225.61/@comment-22439-20150806200003\nThread:24.142.245.178/@comment-22439-20150605131325\nThread:24.142.56.53/@comment-22439-20170425020920\nThread:24.143.11.128/@comment-32769624-20170905015031\nThread:24.143.228.149/@comment-22439-20150606170307\nThread:24.144.159.100/@comment-22439-20170419013620\nThread:24.146.166.2/@comment-22439-20160206201818\nThread:24.147.83.175/@comment-22439-20141223165521\nThread:24.148.56.29/@comment-22439-20150207142248\nThread:24.15.53.43/@comment-22439-20150131222628\nThread:24.150.197.201/@comment-22439-20141224061150\nThread:24.150.6.12/@comment-22439-20150121110253\nThread:24.150.97.53/@comment-22439-20160207185731\nThread:24.151.145.58/@comment-22439-20150221205456\nThread:24.152.220.130/@comment-22439-20150729135440\nThread:24.152.223.103/@comment-22439-20150126052214\nThread:24.155.103.119/@comment-22439-20160821211645\nThread:24.156.172.86/@comment-22439-20170708183148\nThread:24.156.204.195/@comment-22439-20160818000630\nThread:24.156.242.133/@comment-22439-20151217065916\nThread:24.157.191.151/@comment-22439-20160514032455\nThread:24.157.60.34/@comment-22439-20160829123347\nThread:24.158.117.145/@comment-32769624-20170904043923\nThread:24.158.246.199/@comment-22439-20150911114118\nThread:24.158.83.238/@comment-22439-20140928175939\nThread:24.159.216.8/@comment-22439-20170523162307\nThread:24.16.11.207/@comment-22439-20160704104501\nThread:24.16.173.126/@comment-22439-20150126153326\nThread:24.16.62.241/@comment-22439-20151123050940\nThread:24.16.82.73/@comment-22439-20170506041008\nThread:24.161.66.185/@comment-22439-20151027153456\nThread:24.162.160.70/@comment-22439-20150822214203\nThread:24.162.70.89/@comment-32769624-20170818215502\nThread:24.163.1.216/@comment-22439-20170206061917\nThread:24.166.111.32/@comment-22439-20170203000902\nThread:24.166.40.71/@comment-4403388-20170814164246\nThread:24.17.42.64/@comment-22439-20151018050157\nThread:24.17.81.158/@comment-22439-20150413191012\nThread:24.171.42.116/@comment-22439-20150421001241\nThread:24.176.141.54/@comment-22439-20150405152604\nThread:24.176.151.50/@comment-22439-20160723035257\nThread:24.176.238.197/@comment-22439-20150510163440\nThread:24.177.200.153/@comment-22439-20150504231220\nThread:24.177.242.154/@comment-22439-20150608031654\nThread:24.178.26.241/@comment-22439-20150326040310\nThread:24.179.184.62/@comment-22439-20150603143351\nThread:24.179.244.193/@comment-22439-20170523231836\nThread:24.18.105.176/@comment-22439-20150328021148\nThread:24.18.127.9/@comment-22439-20170419195931\nThread:24.18.40.26/@comment-22439-20161016225047\nThread:24.18.40.26/@comment-81.174.168.37-20170123233343\nThread:24.18.40.26/@comment-81.174.168.37-20170123233343/@comment-26009169-20170124005308\nThread:24.181.180.48/@comment-22439-20170319060439\nThread:24.182.67.163/@comment-22439-20160309022928\nThread:24.183.157.142/@comment-22439-20150127083722\nThread:24.183.99.192/@comment-22439-20161111174922\nThread:24.184.10.22/@comment-22439-20151014220632\nThread:24.184.10.253/@comment-22439-20151025153247\nThread:24.184.11.243/@comment-22439-20150817214311\nThread:24.184.12.11/@comment-22439-20150726161620\nThread:24.184.12.72/@comment-22439-20150805233808\nThread:24.184.128.45/@comment-22439-20150628201152\nThread:24.184.13.211/@comment-22439-20150419064509\nThread:24.184.15.59/@comment-22439-20150425190807\nThread:24.184.201.104/@comment-22439-20151222013929\nThread:24.185.107.228/@comment-22439-20150203213237\nThread:24.185.253.30/@comment-22439-20150331034627\nThread:24.187.9.187/@comment-22439-20150516164822\nThread:24.188.190.253/@comment-22439-20150908183835\nThread:24.188.236.157/@comment-22439-20170106081202\nThread:24.19.28.2/@comment-22439-20150130004529\nThread:24.190.10.43/@comment-22439-20150718205042\nThread:24.191.104.87/@comment-22439-20161102191025\nThread:24.191.124.26/@comment-22439-20170530184602\nThread:24.192.77.112/@comment-22439-20151205132915\nThread:24.193.49.116/@comment-22439-20160918134212\nThread:24.194.3.246/@comment-22439-20160207023011\nThread:24.194.8.71/@comment-22439-20160812055826\nThread:24.196.130.95/@comment-22439-20160515182217\nThread:24.196.238.21/@comment-22439-20141229043250\nThread:24.197.108.99/@comment-22439-20170525161529\nThread:24.2.111.151/@comment-22439-20151214015143\nThread:24.2.204.233/@comment-22439-20160219014245\nThread:24.20.104.8/@comment-22439-20161218090059\nThread:24.20.112.112/@comment-22439-20150107081545\nThread:24.20.226.246/@comment-22439-20150202212746\nThread:24.20.243.71/@comment-22439-20170413204949\nThread:24.20.5.143/@comment-22439-20141007193729\nThread:24.201.40.95/@comment-22439-20160729165531\nThread:24.202.53.65/@comment-22439-20150718021210\nThread:24.203.146.3/@comment-22439-20150919160238\nThread:24.203.178.91/@comment-22439-20150606131336\nThread:24.203.68.225/@comment-22439-20160717160219\nThread:24.204.162.205/@comment-22439-20170415025248\nThread:24.207.184.54/@comment-22439-20170422164652\nThread:24.207.194.94/@comment-22439-20150723193033\nThread:24.207.59.87/@comment-22439-20160825004848\nThread:24.209.105.251/@comment-22439-20150327190558\nThread:24.209.65.95/@comment-22439-20170430150654\nThread:24.209.65.95/@comment-5959508-20170501114702\nThread:24.21.222.176/@comment-22439-20151222003146\nThread:24.21.33.55/@comment-22439-20150410162634\nThread:24.21.83.22/@comment-22439-20161129044154\nThread:24.21.84.97/@comment-22439-20150529105301\nThread:24.211.170.178/@comment-22439-20150315203120\nThread:24.212.10.175/@comment-22439-20150221214316\nThread:24.212.136.210/@comment-22439-20160316071740\nThread:24.212.248.42/@comment-22439-20150927195624\nThread:24.213.104.2/@comment-22439-20161206231814\nThread:24.216.150.212/@comment-22439-20161215192838\nThread:24.216.188.246/@comment-22439-20141028205043\nThread:24.217.94.175/@comment-22439-20150629111125\nThread:24.218.184.200/@comment-22439-20150123064318\nThread:24.22.22.97/@comment-22439-20161028143754\nThread:24.22.27.163/@comment-22439-20150110151316\nThread:24.22.34.138/@comment-22439-20150711055221\nThread:24.22.49.121/@comment-22439-20150130190702\nThread:24.22.91.126/@comment-22439-20150810064442\nThread:24.223.203.14/@comment-22439-20151004004318\nThread:24.224.226.237/@comment-22439-20151016055235\nThread:24.225.119.133/@comment-22439-20170728084851\nThread:24.225.29.221/@comment-22439-20170708030336\nThread:24.228.138.199/@comment-22439-20141004230627\nThread:24.228.248.215/@comment-22439-20161223162424\nThread:24.229.105.74/@comment-22439-20150315133813\nThread:24.229.197.56/@comment-22439-20151220021944\nThread:24.23.137.133/@comment-22439-20160608030206\nThread:24.23.253.235/@comment-22439-20150414035051\nThread:24.230.225.107/@comment-22439-20150824000725\nThread:24.230.56.254/@comment-22439-20160624182940\nThread:24.233.225.101/@comment-22439-20150718121742\nThread:24.233.227.195/@comment-22439-20150315134520\nThread:24.233.46.168/@comment-22439-20150915062448\nThread:24.234.123.18/@comment-22439-20170118193255\nThread:24.236.252.224/@comment-22439-20160608201706\nThread:24.236.70.30/@comment-22439-20151029121220\nThread:24.236.77.192/@comment-22439-20150128120451\nThread:24.237.217.23/@comment-22439-20151107165738\nThread:24.237.250.116/@comment-22439-20141226235038\nThread:24.237.90.245/@comment-22439-20150624131207\nThread:24.237.93.59/@comment-22439-20141224123504\nThread:24.238.18.68/@comment-22439-20150124173630\nThread:24.239.111.33/@comment-22439-20160315202849\nThread:24.239.249.103/@comment-22439-20150719141416\nThread:24.239.58.122/@comment-22439-20151102025749\nThread:24.239.93.107/@comment-22439-20150507052158\nThread:24.240.107.212/@comment-22439-20170511172115\nThread:24.240.67.75/@comment-22439-20160827213530\nThread:24.241.226.23/@comment-22439-20160528210153\nThread:24.242.105.203/@comment-22439-20141229200230\nThread:24.242.111.9/@comment-22439-20170208073615\nThread:24.242.80.8/@comment-22439-20150520204943\nThread:24.243.230.171/@comment-22439-20150323175911\nThread:24.243.60.217/@comment-22439-20160925150510\nThread:24.243.61.132/@comment-22439-20141231032527\nThread:24.243.62.225/@comment-22439-20150607224613\nThread:24.244.104.21/@comment-22439-20160311021800\nThread:24.246.118.194/@comment-22439-20151013155503\nThread:24.246.224.201/@comment-22439-20161105234137\nThread:24.246.5.87/@comment-22439-20160125210150\nThread:24.249.188.120/@comment-22439-20150325155113\nThread:24.250.1.3/@comment-22439-20160922124734\nThread:24.250.255.219/@comment-22439-20151115133337\nThread:24.251.2.89/@comment-22439-20160221223349\nThread:24.251.226.202/@comment-32769624-20170829155845\nThread:24.252.201.131/@comment-22439-20161024073912\nThread:24.253.12.114/@comment-22439-20160405020852\nThread:24.253.215.39/@comment-22439-20150428090125\nThread:24.253.218.93/@comment-22439-20150625160921\nThread:24.253.75.17/@comment-22439-20150714035738\nThread:24.254.228.215/@comment-22439-20170712153921\nThread:24.255.168.35/@comment-22439-20151208022221\nThread:24.255.174.30/@comment-22439-20150604041253\nThread:24.255.176.40/@comment-22439-20160809232316\nThread:24.255.208.127/@comment-22439-20151002230513\nThread:24.255.219.97/@comment-22439-20160109222344\nThread:24.27.36.71/@comment-22439-20151030224538\nThread:24.27.75.33/@comment-22439-20151229214819\nThread:24.28.12.120/@comment-22439-20170227123346\nThread:24.28.32.193/@comment-22439-20150706190807\nThread:24.3.218.232/@comment-22439-20151202145529\nThread:24.3.229.5/@comment-22439-20150826002323\nThread:24.32.157.174/@comment-22439-20170209020415\nThread:24.32.70.54/@comment-22439-20150510220514\nThread:24.34.193.63/@comment-22439-20160813194754\nThread:24.34.224.101/@comment-22439-20150622080240\nThread:24.36.7.27/@comment-22439-20141231000229\nThread:24.38.130.34/@comment-22439-20170319144534\nThread:24.4.216.147/@comment-22439-20150330060607\nThread:24.4.32.238/@comment-22439-20141212023926\nThread:24.40.167.11/@comment-22439-20160828145325\nThread:24.42.137.185/@comment-22439-20160105051324\nThread:24.44.123.201/@comment-22439-20150104105416\nThread:24.45.89.88/@comment-22439-20150327034848\nThread:24.45.93.5/@comment-22439-20150225233650\nThread:24.46.248.176/@comment-22439-20140922223331\nThread:24.46.26.36/@comment-22439-20160526225626\nThread:24.48.175.154/@comment-22439-20150417224435\nThread:24.48.202.38/@comment-22439-20151231081836\nThread:24.49.128.15/@comment-22439-20160318042441\nThread:24.49.208.114/@comment-22439-20160923184145\nThread:24.49.255.218/@comment-22439-20141230140106\nThread:24.49.36.39/@comment-22439-20160108172310\nThread:24.50.1.194/@comment-22439-20141004221128\nThread:24.50.147.130/@comment-22439-20150927155404\nThread:24.50.152.197/@comment-22439-20141222194615\nThread:24.50.5.91/@comment-22439-20150606020532\nThread:24.51.209.179/@comment-22439-20150308172453\nThread:24.53.244.177/@comment-22439-20160505045530\nThread:24.53.244.69/@comment-22439-20170716234117\nThread:24.54.133.217/@comment-22439-20151029032127\nThread:24.55.13.173/@comment-22439-20150311113653\nThread:24.55.227.59/@comment-22439-20151018203029\nThread:24.55.29.116/@comment-22439-20150718181220\nThread:24.56.240.19/@comment-22439-20141228170755\nThread:24.56.242.42/@comment-22439-20151114235100\nThread:24.56.62.151/@comment-22439-20150514160019\nThread:24.57.176.5/@comment-22439-20150416175807\nThread:24.59.121.208/@comment-22439-20160310024054\nThread:24.59.154.19/@comment-22439-20160905043342\nThread:24.6.20.122/@comment-22439-20160718162144\nThread:24.61.136.77/@comment-22439-20160120213506\nThread:24.61.235.218/@comment-22439-20150308180029\nThread:24.61.241.98/@comment-22439-20150516150053\nThread:24.61.64.170/@comment-22439-20150419232328\nThread:24.62.136.8/@comment-22439-20160825070022\nThread:24.62.86.197/@comment-22439-20150725005447\nThread:24.63.120.162/@comment-22439-20161208210429\nThread:24.63.224.51/@comment-22439-20160221203515\nThread:24.63.55.33/@comment-22439-20141215132514\nThread:24.63.64.198/@comment-22439-20160606220033\nThread:24.64.185.153/@comment-22439-20160306000115\nThread:24.65.103.10/@comment-22439-20150715233019\nThread:24.65.105.116/@comment-22439-20160829232907\nThread:24.66.236.230/@comment-22439-20150103053208\nThread:24.66.39.25/@comment-22439-20160307060005\nThread:24.68.0.128/@comment-22439-20161223215909\nThread:24.68.111.197/@comment-22439-20160101021553\nThread:24.7.114.135/@comment-22439-20150918035839\nThread:24.7.44.194/@comment-22439-20170122073251\nThread:24.70.159.69/@comment-22439-20160820124034\nThread:24.70.38.212/@comment-22439-20150822183712\nThread:24.72.128.134/@comment-22439-20151113223125\nThread:24.72.161.40/@comment-22439-20150312203639\nThread:24.72.93.159/@comment-22439-20160331015657\nThread:24.74.117.72/@comment-22439-20151217072127\nThread:24.74.16.164/@comment-22439-20151120194750\nThread:24.76.241.23/@comment-22439-20150424161442\nThread:24.77.135.101/@comment-32769624-20170818221034\nThread:24.77.55.221/@comment-22439-20150820034946\nThread:24.77.8.172/@comment-22439-20141008172011\nThread:24.8.43.218/@comment-32769624-20170826025422\nThread:24.8.65.16/@comment-22439-20170708000008\nThread:24.84.28.169/@comment-22439-20150828030757\nThread:24.84.86.75/@comment-22439-20150502204946\nThread:24.85.110.225/@comment-22439-20150310011556\nThread:24.85.114.121/@comment-22439-20150601205216\nThread:24.86.220.105/@comment-22439-20151015181315\nThread:24.86.34.239/@comment-22439-20141217071753\nThread:24.88.93.15/@comment-22439-20160221164025\nThread:24.88.94.182/@comment-22439-20141230154345\nThread:24.9.171.99/@comment-22439-20150120040559\nThread:24.9.80.183/@comment-22439-20141230001950\nThread:24.90.153.127/@comment-22439-20150308195048\nThread:24.91.144.18/@comment-22439-20150104014033\nThread:24.92.220.10/@comment-22439-20141227221200\nThread:24.93.194.27/@comment-22439-20150517050444\nThread:24.96.161.57/@comment-22439-20150915061131\nThread:24.96.25.44/@comment-22439-20151028160932\nThread:24.96.250.21/@comment-22439-20160820012910\nThread:24.98.125.164/@comment-22439-20150331033627\nThread:24.98.142.172/@comment-22439-20160109194614\nThread:24.99.224.197/@comment-22439-20150217171223\nThread:2403:6200:8850:6CE3:DC5E:A3B5:5223:CD6A/@comment-22439-20170728165934\nThread:2600:100D:B10A:38F2:2040:D888:533:6F12/@comment-176.241.72.203-20190724204456\nThread:2600:1:F143:E7E4:7C3D:46F8:CFC7:40D0/@comment-22439-20170717130754\nThread:2600:387:1:802:0:0:0:24/@comment-32769624-20170819154435\nThread:2600:387:8:8:0:0:0:52/@comment-22439-20170713033304\nThread:2600:6C44:17F:FAD2:ED2B:8A0:DFD:B43C/@comment-22439-20170729015729\nThread:2600:6C44:37F:E778:51CE:B7EC:E74B:9C28/@comment-22439-20170711171450\nThread:2600:6C44:37F:F8D3:2D4E:282D:5270:4227/@comment-22439-20170726054042\nThread:2600:6C44:4380:1660:A499:E999:AA39:2D40/@comment-22439-20170630032900\nThread:2600:6C64:6C7F:F58E:CD2E:F665:92C1:FF68/@comment-22439-20170803213157\nThread:2600:8800:7100:5840:203D:7944:6179:7B2B/@comment-22439-20170720142922\nThread:2600:8801:9300:1E06:2180:8A25:FF5:F621/@comment-32769624-20170819223922\nThread:2600:8807:8000:178:2CDA:5530:73EF:7B9/@comment-32769624-20170901034142\nThread:2600:E000:2E1:F9E0:280:AEFF:FEA6:8D21/@comment-22439-20170802215816\nThread:2601:100:8600:6000:9C71:ED9:336D:CCC8/@comment-22439-20170718225501\nThread:2601:147:4101:CE9E:5C9E:248F:CF6:49F/@comment-32769624-20170822025512\nThread:2601:190:8200:8C40:543:B1D5:4943:21C6/@comment-22439-20170712220503\nThread:2601:19D:402:9C3:6D31:A600:DA5D:FF2D/@comment-22439-20170730105356\nThread:2601:1C0:4401:A45B:6CFD:392F:6B54:74FC/@comment-22439-20170805052005\nThread:2601:204:C802:FF40:D46C:225A:34FB:4637/@comment-22439-20170803203743\nThread:2601:280:5A00:392B:1022:F5AB:A1D:E1E8/@comment-22439-20170801043831\nThread:2601:283:0:6B9F:4D10:89A1:D0B6:FD81/@comment-32769624-20170902042347\nThread:2601:283:4701:CCCD:52C:32F3:D3C2:3CA1/@comment-22439-20170727231205\nThread:2601:2C3:780:460:44EE:AAA1:C370:4F78/@comment-22439-20170808071759\nThread:2601:2C3:780:460:6011:EB29:6484:24A8/@comment-32769624-20170818011258\nThread:2601:2C3:780:460:BC93:306A:C304:9D3B/@comment-4403388-20170814181317\nThread:2601:2C3:780:460:FD38:8EE2:240:5ACF/@comment-22439-20170801014214\nThread:2601:380:4100:E610:1864:3800:4845:FFBF/@comment-22439-20170803193940\nThread:2601:407:8500:7827:A83C:7F11:EF1C:B315/@comment-22439-20170713232627\nThread:2601:441:8680:3610:29C3:C8B2:6185:935E/@comment-22439-20170729024116\nThread:2601:441:8680:3610:9CD0:54B6:A655:A675/@comment-32769624-20170907000943\nThread:2601:4A:C400:5D50:75BC:5438:3923:BD26/@comment-32769624-20170822224651\nThread:2601:4A:C400:5D50:FCE4:1F4B:292E:32FA/@comment-32769624-20170817144418\nThread:2601:645:8002:45DC:5D49:4415:A053:D95C/@comment-22439-20170725004222\nThread:2601:646:8E00:37B0:DDD0:D51B:AB7E:2CE5/@comment-22439-20170706185356\nThread:2601:647:4A04:2210:C18C:FF67:89C0:8922/@comment-22439-20170712201841\nThread:2601:647:4C00:49D4:F5F5:1CDF:5FD6:43A2/@comment-32769624-20170824073755\nThread:2601:647:4C80:5690:3D7B:2158:1E57:2E4C/@comment-22439-20170704234135\nThread:2601:882:8000:9B2:8989:61:1FF9:F268/@comment-22439-20170808032851\nThread:2601:980:8080:C4B0:D414:26D7:E3C6:F8C5/@comment-4403388-20170813002432\nThread:2601:982:200:2B30:802B:3960:D3A2:F415/@comment-22439-20170712061150\nThread:2602:304:CE91:E5A0:2166:55C5:6795:1567/@comment-22439-20170807003212\nThread:2602:306:3115:4F0:5EB:6EA4:5309:CA7A/@comment-4403388-20170810135506\nThread:2602:306:31AD:3410:C1FF:6DB2:DB95:736B/@comment-22439-20170629151051\nThread:2602:306:32D5:9CC0:64F3:C14C:B457:5BA5/@comment-22439-20170806010742\nThread:2602:306:32D5:9CC0:9C7E:7B4B:B80E:8302/@comment-4403388-20170812113938\nThread:2602:306:32D5:9CC0:A9F8:E811:1465:A339/@comment-22439-20170805075329\nThread:2602:306:37B9:18E0:8C14:7561:F0E5:A9A1/@comment-32769624-20170912034222\nThread:2602:306:8BC9:5FF0:D1FD:886F:411C:9339/@comment-22439-20170703145637\nThread:2602:306:BCF2:B840:3577:C2D:37B1:DD15/@comment-22439-20170712061005\nThread:2602:306:C4DC:76C0:18C3:DAA4:F690:CFD0/@comment-22439-20170717133226\nThread:2602:306:C4DC:76C0:2592:A64:52C3:8064/@comment-22439-20170705122824\nThread:2602:306:C4DC:76C0:6C90:A451:9DAA:E686/@comment-22439-20170729001720\nThread:2602:306:C4DC:76C0:7486:7D4E:D083:1C95/@comment-22439-20170802230438\nThread:2602:306:C4DC:76C0:78D5:5932:1996:7FCA/@comment-22439-20170727002926\nThread:2602:306:C4DC:76C0:914:9E4D:B883:AB25/@comment-22439-20170730113925\nThread:2602:306:C4DC:76C0:D1A4:8EEF:916B:56DE/@comment-22439-20170707144607\nThread:2602:306:C4DC:76C0:D87D:72D:1576:8355/@comment-22439-20170725152129\nThread:2602:306:C4DC:76C0:DDD6:7746:66C5:1526/@comment-22439-20170719235504\nThread:2602:30A:2E13:CC50:C54E:F144:DA36:2B62/@comment-22439-20170716211226\nThread:2604:2D80:8403:82E0:3CB1:8F6A:1B77:7E3C/@comment-22439-20170711030056\nThread:2604:2D80:8403:C35F:68AF:3F8A:B84F:C6FC/@comment-22439-20170724234944\nThread:2604:2D80:8403:C35F:68FD:223B:B730:A357/@comment-22439-20170727111024\nThread:2605:6000:170E:C041:A53A:529A:B159:7B61/@comment-4403388-20170817045326\nThread:2606:A000:BEC2:6700:8150:C8F1:1CD0:B4AD/@comment-32769624-20170906155231\nThread:2606:A000:F846:700:ED29:5E03:E128:5BBC/@comment-32769624-20170819042828\nThread:2607:FB90:4AA8:96CA:5121:77D2:2D92:4595/@comment-32769624-20170825204611\nThread:2607:FB90:4AB3:CAF7:8570:40C:4CC6:90BC/@comment-32769624-20170906142721\nThread:2607:FB90:4AB5:98DE:6190:DDF0:C629:6597/@comment-4403388-20170810170801\nThread:2607:FB90:5AF:5B99:1125:E1C6:DFF9:7FBA/@comment-4403388-20170816091614\nThread:2607:FEA8:1360:4E1:1004:1DB3:CDF5:2256/@comment-32769624-20170822053411\nThread:2607:FEA8:BD20:EBE:65BA:29BF:E7D1:E910/@comment-22439-20170801153130\nThread:2607:FEA8:D100:33C:50E9:1B2F:3273:2D50/@comment-22439-20170713180342\nThread:2607:FEA8:D100:33C:59A9:CD83:7CC5:7958/@comment-22439-20170708170327\nThread:27.110.122.39/@comment-22439-20140915090329\nThread:27.252.195.169/@comment-22439-20141218210816\nThread:27.253.112.101/@comment-22439-20150410094445\nThread:27.253.115.43/@comment-22439-20140926084155\nThread:27.253.117.77/@comment-22439-20150117111310\nThread:27.32.19.146/@comment-22439-20160116081043\nThread:27.33.121.44/@comment-22439-20150324085003\nThread:27.33.134.126/@comment-22439-20160220133714\nThread:27.33.19.93/@comment-22439-20160204100823\nThread:27.33.195.101/@comment-22439-20170422103934\nThread:27.33.22.155/@comment-22439-20150109151422\nThread:27.33.234.91/@comment-22439-20141005112116\nThread:27.33.65.226/@comment-22439-20150206144701\nThread:27.55.11.100/@comment-22439-20170614003528\nThread:27.55.16.151/@comment-22439-20160407132918\nThread:27duuude/@comment-32769624-20200327011943\nThread:2A00:23C0:B4F1:C901:F952:624:60DC:146A/@comment-22439-20170714110137\nThread:2A00:23C0:C63F:FD01:ED10:B9D8:BE86:E6B2/@comment-22439-20170804102607\nThread:2A00:23C1:74C1:FE00:D9B3:B219:E6C8:1081/@comment-22439-20170805221018\nThread:2A00:23C1:A69A:F300:3D1E:5A77:C734:9255/@comment-22439-20170706015011\nThread:2A00:23C4:170A:EF00:4525:7B2A:8DAC:FFD4/@comment-22439-20170708160145\nThread:2A00:23C4:452A:E000:3167:1262:FC3A:A33E/@comment-32769624-20170826100621\nThread:2A00:23C4:ED82:AD00:75BB:B723:21B6:F725/@comment-32769624-20170901204040\nThread:2A00:801:211:544F:41A8:ADE6:2714:AFFA/@comment-22439-20170806133820\nThread:2A01:E35:39A8:B820:14D8:518E:86C5:9B75/@comment-22439-20170731152846\nThread:2A01:E35:39A8:B820:447:EC1E:7BD5:D311/@comment-32769624-20170820162456\nThread:2A01:E35:39A8:B820:4A0:D95D:6285:83AB/@comment-32769624-20170819182922\nThread:2A01:E35:39A8:B820:79A3:D52:AAF2:B467/@comment-22439-20170801084525\nThread:2A02:8070:D185:5C00:C42E:85A2:C894:2655/@comment-22439-20170316224009\nThread:2A02:8108:45C0:D9EC:FCDF:E555:EFE5:7B17/@comment-22439-20170718173839\nThread:2A02:8108:4B40:403C:C1EC:1D20:9A3B:5987/@comment-32769624-20170831174534\nThread:2A02:810B:280:81:804A:E02A:5EDC:60E2/@comment-32769624-20170831200115\nThread:2A02:810D:C0:2F8:314F:A57A:AFDD:69E0/@comment-22439-20170803163052\nThread:2A02:908:191:5E20:D0E2:E4EF:4E6:7638/@comment-32769624-20170911133115\nThread:2A02:C7D:16A9:4200:C421:6BA9:A8E8:D462/@comment-22439-20170701135430\nThread:2A02:C7D:49CB:5E00:A41E:71A2:D5A1:F2CB/@comment-4403388-20170808162529\nThread:2A02:C7D:4A67:CE00:102C:C20F:4A2:9F64/@comment-32769624-20170903173642\nThread:2A02:C7D:7229:7500:354A:42A7:CB26:10D6/@comment-22439-20170628180551\nThread:2A02:C7D:BF26:E500:E044:ABA7:1421:708C/@comment-22439-20170711225306\nThread:2A02:C7F:3050:6500:98AD:65E0:AF38:4933/@comment-22439-20170723143921\nThread:2A02:C7F:BA2C:5E00:DC1E:2855:1277:CFB8/@comment-22439-20170716213836\nThread:2A02:C7F:C80A:4500:F4F2:3101:611A:EC82/@comment-32769624-20170828145328\nThread:2DVS4U/@comment-22439-20150225170548\nThread:2DVS4U/@comment-22439-20150225170548/@comment-2.27.91.253-20150225172650\nThread:2DVS4U/@comment-22439-20150225170548/@comment-26145776-20150225175529\nThread:31.10.129.54/@comment-22439-20160529145559\nThread:31.10.139.155/@comment-22439-20160930041830\nThread:31.109.249.84/@comment-22439-20150908043519\nThread:31.11.129.84/@comment-22439-20170306174330\nThread:31.11.130.218/@comment-22439-20170419182401\nThread:31.111.103.86/@comment-22439-20150609103521\nThread:31.134.139.98/@comment-22439-20161025221535\nThread:31.14.128.21/@comment-22439-20141024184140\nThread:31.150.166.171/@comment-22439-20150131154732\nThread:31.150.219.7/@comment-22439-20150110231448\nThread:31.151.208.204/@comment-22439-20150209225910\nThread:31.154.34.118/@comment-22439-20160820183414\nThread:31.16.144.74/@comment-22439-20170301173231\nThread:31.16.167.42/@comment-22439-20160215231553\nThread:31.16.29.2/@comment-22439-20151115142720\nThread:31.16.29.201/@comment-22439-20151201211501\nThread:31.16.58.61/@comment-22439-20160716231309\nThread:31.160.169.70/@comment-22439-20170719152925\nThread:31.164.1.124/@comment-22439-20150118120734\nThread:31.164.1.86/@comment-22439-20150316111020\nThread:31.164.5.154/@comment-22439-20161031133310\nThread:31.168.180.254/@comment-22439-20170226154135\nThread:31.17.223.132/@comment-22439-20150322151902\nThread:31.17.31.176/@comment-22439-20151023193705\nThread:31.175.105.10/@comment-22439-20161012131422\nThread:31.178.135.195/@comment-22439-20150124111154\nThread:31.178.6.144/@comment-22439-20160731125746\nThread:31.179.66.212/@comment-22439-20160226010643\nThread:31.18.194.107/@comment-22439-20151128131431\nThread:31.18.57.146/@comment-22439-20150710193531\nThread:31.181.36.123/@comment-22439-20161110084251\nThread:31.182.192.84/@comment-22439-20170416075830\nThread:31.182.204.165/@comment-22439-20170423193136\nThread:31.182.48.42/@comment-22439-20160722211636\nThread:31.183.74.235/@comment-22439-20150313181404\nThread:31.185.161.92/@comment-22439-20150402081710\nThread:31.185.213.189/@comment-22439-20161225225714\nThread:31.185.234.204/@comment-22439-20131117160532\nThread:31.187.28.221/@comment-22439-20150123052251\nThread:31.187.5.151/@comment-22439-20160929144547\nThread:31.19.177.161/@comment-22439-20150606063950\nThread:31.201.226.140/@comment-22439-20160804084950\nThread:31.205.111.192/@comment-22439-20150117141345\nThread:31.205.96.4/@comment-22439-20141213210827\nThread:31.209.138.27/@comment-22439-20150403021530\nThread:31.217.106.136/@comment-22439-20150415154555\nThread:31.222.223.227/@comment-22439-20150601142728\nThread:31.223.226.252/@comment-22439-20150410194030\nThread:31.23.236.22/@comment-22439-20141207105617\nThread:31.25.158.9/@comment-22439-20160224162558\nThread:31.25.46.81/@comment-22439-20141211174228\nThread:31.28.6.108/@comment-22439-20150629152128\nThread:31.32.176.42/@comment-22439-20150221001238\nThread:31.32.179.1/@comment-22439-20141219232740\nThread:31.35.241.102/@comment-22439-20151104233825\nThread:31.38.216.11/@comment-22439-20151205030346\nThread:31.38.77.43/@comment-22439-20150420194758\nThread:31.46.126.78/@comment-22439-20151126212601\nThread:31.46.248.196/@comment-22439-20151124215226\nThread:31.46.248.208/@comment-22439-20160109144454\nThread:31.46.249.104/@comment-22439-20151208220109\nThread:31.46.249.141/@comment-22439-20151128182345\nThread:31.46.249.169/@comment-22439-20151118163412\nThread:31.46.249.19/@comment-22439-20151128105423\nThread:31.46.249.196/@comment-22439-20151129092006\nThread:31.46.249.216/@comment-22439-20151117162857\nThread:31.46.250.132/@comment-22439-20151130190756\nThread:31.46.250.136/@comment-22439-20151117120835\nThread:31.46.251.244/@comment-22439-20151123164420\nThread:31.46.252.206/@comment-22439-20151227110123\nThread:31.46.252.5/@comment-22439-20160123122110\nThread:31.46.253.158/@comment-22439-20151203205050\nThread:31.46.253.185/@comment-22439-20151209201445\nThread:31.46.253.202/@comment-22439-20151128224245\nThread:31.46.254.23/@comment-22439-20151202191624\nThread:31.46.254.27/@comment-22439-20151230225924\nThread:31.46.255.108/@comment-22439-20160114162027\nThread:31.46.255.165/@comment-22439-20151110222940\nThread:31.46.255.36/@comment-22439-20151119132206\nThread:31.46.255.40/@comment-22439-20151124163357\nThread:31.46.52.211/@comment-22439-20160103004742\nThread:31.48.10.248/@comment-22439-20151013141922\nThread:31.48.48.50/@comment-22439-20151206185430\nThread:31.49.136.69/@comment-22439-20140914155828\nThread:31.49.219.89/@comment-22439-20160417052034\nThread:31.49.60.193/@comment-22439-20160920140755\nThread:31.49.96.24/@comment-22439-20150918202536\nThread:31.5.226.106/@comment-22439-20150522093027\nThread:31.5.239.207/@comment-22439-20150104000255\nThread:31.50.168.195/@comment-22439-20160320140353\nThread:31.50.215.148/@comment-22439-20150115005130\nThread:31.50.5.147/@comment-22439-20150817105546\nThread:31.51.120.173/@comment-22439-20160116111745\nThread:31.51.232.109/@comment-22439-20141102155956\nThread:31.51.41.140/@comment-22439-20150521215324\nThread:31.52.161.85/@comment-22439-20150711202755\nThread:31.52.166.144/@comment-22439-20150912133858\nThread:31.52.203.26/@comment-22439-20151027011931\nThread:31.52.217.254/@comment-22439-20160319215235\nThread:31.52.251.8/@comment-22439-20150818145804\nThread:31.52.27.130/@comment-22439-20161020230844\nThread:31.52.45.250/@comment-22439-20150330131850\nThread:31.53.132.159/@comment-22439-20161115161244\nThread:31.53.212.76/@comment-22439-20130110073810\nThread:31.53.47.90/@comment-22439-20151224120912\nThread:31.54.101.205/@comment-22439-20170303002106\nThread:31.54.142.156/@comment-22439-20150922151112\nThread:31.54.196.154/@comment-22439-20141102161408\nThread:31.54.37.40/@comment-22439-20141228165959\nThread:31.55.21.78/@comment-22439-20141007002904\nThread:31.61.131.216/@comment-22439-20150106023359\nThread:31.85.191.93/@comment-22439-20141213191842\nThread:31.92.149.149/@comment-5959508-20130425173006\nThread:31.92.174.73/@comment-32769624-20170903083019\nThread:32.208.146.173/@comment-22439-20161225034008\nThread:32.209.21.239/@comment-22439-20151016212115\nThread:32.212.141.244/@comment-22439-20140906211241\nThread:32.213.115.179/@comment-22439-20151204193346\nThread:35.46.23.82/@comment-22439-20140913194722\nThread:35.46.40.94/@comment-22439-20140915144551\nThread:35.46.5.61/@comment-22439-20160904045502\nThread:35.46.7.62/@comment-22439-20160913000603\nThread:37.10.140.76/@comment-22439-20160114171239\nThread:37.110.24.129/@comment-22439-20160725212259\nThread:37.110.33.169/@comment-22439-20141223201323\nThread:37.112.199.130/@comment-22439-20151212161939\nThread:37.112.200.119/@comment-22439-20151206041618\nThread:37.120.35.197/@comment-22439-20170707201127\nThread:37.120.4.60/@comment-22439-20151212053550\nThread:37.120.41.111/@comment-22439-20170804201948\nThread:37.120.44.233/@comment-22439-20170705040212\nThread:37.123.160.36/@comment-22439-20150816141611\nThread:37.130.226.82/@comment-22439-20170305090653\nThread:37.132.113.67/@comment-22439-20151126210241\nThread:37.132.191.217/@comment-22439-20151002163953\nThread:37.134.157.199/@comment-22439-20150329012026\nThread:37.134.63.162/@comment-22439-20150725222529\nThread:37.136.66.175/@comment-22439-20151213181853\nThread:37.152.249.49/@comment-22439-20160303100652\nThread:37.152.9.190/@comment-22439-20141204102013\nThread:37.153.243.78/@comment-22439-20150105151846\nThread:37.153.251.127/@comment-22439-20160912082657\nThread:37.157.48.67/@comment-22439-20160810133714\nThread:37.161.209.17/@comment-22439-20150607095133\nThread:37.162.35.241/@comment-22439-20150520160344\nThread:37.163.140.113/@comment-22439-20150515183824\nThread:37.169.162.114/@comment-22439-20170710065813\nThread:37.17.113.245/@comment-22439-20150406124530\nThread:37.187.104.40/@comment-22439-20170704060240\nThread:37.189.169.197/@comment-22439-20151019012705\nThread:37.191.164.153/@comment-22439-20150209170808\nThread:37.192.23.123/@comment-22439-20150324201402\nThread:37.193.6.159/@comment-22439-20160502103117\nThread:37.201.165.166/@comment-22439-20151008202603\nThread:37.201.168.95/@comment-22439-20160102144841\nThread:37.201.180.79/@comment-32769624-20170817190403\nThread:37.201.191.239/@comment-22439-20151114174443\nThread:37.201.192.66/@comment-22439-20150317175906\nThread:37.201.193.125/@comment-22439-20160326110719\nThread:37.201.193.57/@comment-22439-20160320045607\nThread:37.201.195.177/@comment-22439-20150113060838\nThread:37.201.2.142/@comment-22439-20161219180058\nThread:37.201.214.13/@comment-22439-20160306221837\nThread:37.201.229.31/@comment-22439-20150707180812\nThread:37.201.240.85/@comment-22439-20150319221027\nThread:37.201.243.74/@comment-22439-20160228195708\nThread:37.201.243.98/@comment-22439-20170608151601\nThread:37.201.250.17/@comment-22439-20151009181235\nThread:37.204.168.202/@comment-22439-20150621100204\nThread:37.204.69.132/@comment-22439-20150802154824\nThread:37.208.131.7/@comment-22439-20150624160627\nThread:37.219.223.89/@comment-22439-20170513090509\nThread:37.228.205.86/@comment-22439-20151021203924\nThread:37.229.216.0/@comment-22439-20160906120623\nThread:37.231.186.99/@comment-22439-20150531092420\nThread:37.231.55.212/@comment-22439-20150423061128\nThread:37.233.68.126/@comment-22439-20161217161838\nThread:37.24.140.229/@comment-22439-20150920153912\nThread:37.24.143.189/@comment-22439-20150216194934\nThread:37.24.152.21/@comment-22439-20141229223739\nThread:37.33.96.54/@comment-22439-20150714131223\nThread:37.4.163.125/@comment-22439-20141224184352\nThread:37.4.198.204/@comment-22439-20150101160337\nThread:37.4.241.157/@comment-22439-20151113164535\nThread:37.4.249.122/@comment-22439-20150817152827\nThread:37.4.253.81/@comment-22439-20151018223921\nThread:37.4.45.154/@comment-22439-20150406122018\nThread:37.4.87.26/@comment-22439-20150109165402\nThread:37.44.104.18/@comment-22439-20150112234242\nThread:37.47.37.156/@comment-22439-20170625101203\nThread:37.48.241.206/@comment-22439-20160107144825\nThread:37.48.65.76/@comment-22439-20141201230303\nThread:37.49.47.14/@comment-22439-20150411092451\nThread:37.5.153.66/@comment-22439-20141224171803\nThread:37.5.37.183/@comment-22439-20160227172345\nThread:37.58.168.167/@comment-22439-20150106133105\nThread:37.76.43.156/@comment-22439-20150807142910\nThread:37.97.14.154/@comment-22439-20160218220842\nThread:38.104.125.162/@comment-22439-20150107222951\nThread:38.110.44.102/@comment-22439-20150928002826\nThread:38.110.87.2/@comment-22439-20141220162505\nThread:38.113.96.18/@comment-22439-20170214212719\nThread:38.124.248.101/@comment-32769624-20170826130224\nThread:38.124.248.50/@comment-22439-20170505221146\nThread:38.132.119.232/@comment-22439-20170723213202\nThread:38.132.167.192/@comment-22439-20160116062758\nThread:38.176.90.254/@comment-22439-20160601210725\nThread:38.81.153.113/@comment-22439-20150829090754\nThread:38.95.109.67/@comment-22439-20160728210558\nThread:39.109.155.52/@comment-22439-20151218142052\nThread:4.30.115.102/@comment-22439-20150130174423\nThread:4.31.13.17/@comment-22439-20150409205802\nThread:4.35.222.2/@comment-22439-20160817175111\nThread:40.131.116.2/@comment-22439-20150614060107\nThread:40.136.238.167/@comment-22439-20150903022804\nThread:40.141.116.182/@comment-22439-20160508085338\nThread:40.141.249.102/@comment-22439-20160621094859\nThread:41.13.12.245/@comment-22439-20141227045924\nThread:41.134.155.227/@comment-22439-20141117114623\nThread:41.164.51.34/@comment-22439-20160213072834\nThread:41.190.136.10/@comment-22439-20150806114911\nThread:41.218.221.116/@comment-22439-20160120025056\nThread:41.220.213.38/@comment-22439-20150920153400\nThread:42.112.80.198/@comment-22439-20170108144839\nThread:42.112.81.61/@comment-22439-20160830205229\nThread:42.112.84.79/@comment-22439-20161123205459\nThread:42.112.87.240/@comment-22439-20161006180224\nThread:42.112.88.138/@comment-22439-20161128054756\nThread:42.112.88.75/@comment-22439-20161003055507\nThread:42.112.93.221/@comment-22439-20161008161851\nThread:42.241.112.100/@comment-22439-20161112140126\nThread:42.83.21.104/@comment-22439-20150501111107\nThread:4231345tresgyfdbxzverzx/@comment-32769624-20181027040356\nThread:43.230.88.153/@comment-22439-20151020162310\nThread:43.242.140.72/@comment-22439-20151020045450\nThread:43.249.129.100/@comment-22439-20150507053821\nThread:43.252.109.12/@comment-22439-20150415175446\nThread:45.19.51.199/@comment-22439-20151217195704\nThread:45.23.35.95/@comment-22439-20160927002119\nThread:45.24.32.239/@comment-22439-20150717032034\nThread:45.31.8.111/@comment-22439-20160913015116\nThread:45.37.192.8/@comment-22439-20150616015222\nThread:45.46.6.81/@comment-22439-20150830025959\nThread:45.48.248.69/@comment-22439-20150720173518\nThread:45.50.114.69/@comment-22439-20150711223146\nThread:45.50.143.193/@comment-22439-20150908163227\nThread:45.56.58.139/@comment-22439-20150810152610\nThread:45.58.252.38/@comment-22439-20150718113905\nThread:45.59.44.238/@comment-22439-20151211054610\nThread:45.63.126.26/@comment-22439-20170417005312\nThread:45.72.245.163/@comment-22439-20160912191010\nThread:46.103.94.82/@comment-22439-20160110231911\nThread:46.107.236.132/@comment-22439-20150717180016\nThread:46.11.15.106/@comment-22439-20160108215206\nThread:46.11.18.188/@comment-22439-20150225150159\nThread:46.114.109.227/@comment-22439-20150823233332\nThread:46.114.35.149/@comment-22439-20150730001645\nThread:46.115.173.95/@comment-22439-20150216061420\nThread:46.116.176.191/@comment-22439-20150530150805\nThread:46.116.58.2/@comment-22439-20160603063616\nThread:46.118.113.59/@comment-22439-20150105161727\nThread:46.12.86.11/@comment-22439-20151108193740\nThread:46.12.95.38/@comment-22439-20150514132552\nThread:46.129.104.48/@comment-22439-20150413133409\nThread:46.13.93.231/@comment-22439-20151102155337\nThread:46.132.185.20/@comment-22439-20140926223505\nThread:46.139.248.246/@comment-22439-20150512061458\nThread:46.14.147.151/@comment-22439-20170210115549\nThread:46.142.84.24/@comment-22439-20150508123237\nThread:46.146.29.91/@comment-22439-20141211153804\nThread:46.146.62.168/@comment-22439-20150106211524\nThread:46.148.64.226/@comment-22439-20150606182555\nThread:46.15.53.230/@comment-22439-20160728214433\nThread:46.158.102.81/@comment-22439-20160104094750\nThread:46.16.3.212/@comment-22439-20151027113005\nThread:46.16.7.210/@comment-22439-20170208123737\nThread:46.162.118.82/@comment-22439-20150116200710\nThread:46.162.195.42/@comment-22439-20150905080524\nThread:46.162.75.170/@comment-22439-20150328212353\nThread:46.163.111.44/@comment-22439-20141219232254\nThread:46.169.58.187/@comment-22439-20161027152513\nThread:46.177.112.61/@comment-22439-20161228220024\nThread:46.177.149.48/@comment-22439-20160608023642\nThread:46.179.125.226/@comment-22439-20150910061523\nThread:46.182.141.197/@comment-22439-20150722023641\nThread:46.188.0.22/@comment-22439-20150506175726\nThread:46.188.121.10/@comment-22439-20170626232056\nThread:46.188.121.124/@comment-22439-20160519075935\nThread:46.188.121.230/@comment-22439-20161210100807\nThread:46.188.121.32/@comment-22439-20150105182242\nThread:46.188.19.222/@comment-22439-20151019155152\nThread:46.188.29.119/@comment-22439-20150819122448\nThread:46.191.255.252/@comment-22439-20150129195134\nThread:46.193.0.57/@comment-22439-20151107161851\nThread:46.193.64.216/@comment-22439-20150116134131\nThread:46.194.143.80/@comment-22439-20150603042007\nThread:46.194.146.224/@comment-22439-20151227011614\nThread:46.194.39.76/@comment-22439-20150507213336\nThread:46.194.48.14/@comment-22439-20150606234152\nThread:46.196.17.167/@comment-22439-20170421090407\nThread:46.197.116.39/@comment-22439-20150821131756\nThread:46.208.213.19/@comment-22439-20151219032002\nThread:46.208.240.200/@comment-22439-20141221014452\nThread:46.208.46.184/@comment-22439-20161129131641\nThread:46.208.78.19/@comment-22439-20170418173203\nThread:46.211.34.236/@comment-22439-20151127173400\nThread:46.216.168.87/@comment-22439-20161001220052\nThread:46.22.105.50/@comment-22439-20151228191539\nThread:46.223.1.59/@comment-22439-20161007211635\nThread:46.223.128.121/@comment-22439-20160220181034\nThread:46.223.212.117/@comment-22439-20150922221355\nThread:46.223.26.78/@comment-22439-20150218000557\nThread:46.227.54.11/@comment-22439-20151103102928\nThread:46.227.67.182/@comment-22439-20161118155056\nThread:46.229.149.138/@comment-22439-20150612130833\nThread:46.23.40.174/@comment-22439-20150311210728\nThread:46.230.212.231/@comment-22439-20160203133855\nThread:46.231.152.228/@comment-22439-20150330080059\nThread:46.236.110.72/@comment-22439-20160131020500\nThread:46.236.110.81/@comment-22439-20151018082852\nThread:46.236.85.161/@comment-22439-20170807142521\nThread:46.239.196.26/@comment-22439-20150705001601\nThread:46.242.1.85/@comment-22439-20150512053338\nThread:46.245.203.235/@comment-22439-20150406144851\nThread:46.249.230.96/@comment-22439-20150515150215\nThread:46.251.125.218/@comment-22439-20141225171635\nThread:46.254.254.27/@comment-22439-20170216125311\nThread:46.255.183.66/@comment-22439-20151027171226\nThread:46.30.167.89/@comment-22439-20170318070927\nThread:46.33.141.184/@comment-22439-20170314010759\nThread:46.33.142.224/@comment-22439-20150313191009\nThread:46.36.156.151/@comment-22439-20150625175213\nThread:46.39.53.83/@comment-22439-20150422091535\nThread:46.5.16.66/@comment-22439-20141014045244\nThread:46.5.16.94/@comment-22439-20150105191048\nThread:46.5.18.126/@comment-22439-20150205191336\nThread:46.5.19.127/@comment-22439-20150727142613\nThread:46.5.194.57/@comment-22439-20151218235703\nThread:46.5.2.190/@comment-22439-20160201231209\nThread:46.5.2.238/@comment-22439-20170306174129\nThread:46.5.253.115/@comment-22439-20170110220929\nThread:46.5.43.190/@comment-22439-20150216222436\nThread:46.59.13.53/@comment-22439-20141223095738\nThread:46.59.143.80/@comment-22439-20161205211038\nThread:46.59.151.206/@comment-22439-20151213075629\nThread:46.59.163.200/@comment-22439-20150323194156\nThread:46.59.165.36/@comment-22439-20170107140824\nThread:46.59.166.69/@comment-22439-20150621223801\nThread:46.59.223.191/@comment-22439-20151227220042\nThread:46.59.232.237/@comment-22439-20150803191457\nThread:46.64.60.128/@comment-22439-20150730203539\nThread:46.65.116.35/@comment-22439-20150313093556\nThread:46.65.143.34/@comment-22439-20150520174033\nThread:46.65.148.148/@comment-22439-20150106114931\nThread:46.7.136.86/@comment-22439-20160222205012\nThread:46.7.153.70/@comment-22439-20150430161213\nThread:46.83.227.124/@comment-22439-20170418211505\nThread:46.9.4.63/@comment-22439-20150501173331\nThread:46.91.7.74/@comment-32769624-20170908175245\nThread:46.92.31.248/@comment-22439-20170118083819\nThread:46.98.199.90/@comment-22439-20170716024148\nThread:47.145.14.169/@comment-22439-20170421161700\nThread:47.148.146.70/@comment-22439-20170524042342\nThread:47.16.151.196/@comment-22439-20151018120944\nThread:47.18.207.88/@comment-22439-20150228211724\nThread:47.18.65.236/@comment-22439-20150821235428\nThread:47.187.241.226/@comment-32769624-20170912040547\nThread:47.199.18.20/@comment-32769624-20170906130942\nThread:47.200.149.149/@comment-22439-20170724015156\nThread:47.200.98.61/@comment-22439-20170228215940\nThread:47.202.6.173/@comment-22439-20170414221224\nThread:47.208.10.105/@comment-22439-20170206091932\nThread:47.223.148.61/@comment-22439-20170331010553\nThread:47.25.45.89/@comment-46511109-20200801200720\nThread:47.32.85.120/@comment-22439-20160808204006\nThread:47.33.180.22/@comment-22439-20170212222828\nThread:47.33.26.136/@comment-22439-20170715011759\nThread:47.34.132.77/@comment-22439-20160703084647\nThread:47.34.33.122/@comment-22439-20170502222731\nThread:47.37.138.49/@comment-32769624-20170911111251\nThread:47.54.37.58/@comment-22439-20150105232358\nThread:47.55.100.116/@comment-22439-20160504044355\nThread:47.55.122.49/@comment-22439-20161012232201\nThread:47.55.47.186/@comment-22439-20150128113229\nThread:47.64.227.197/@comment-22439-20150116221835\nThread:47.72.194.152/@comment-22439-20150904073854\nThread:47.72.209.159/@comment-22439-20150911091752\nThread:47.72.234.151/@comment-22439-20151201101032\nThread:47.89.23.243/@comment-22439-20170427023222\nThread:49.144.33.132/@comment-22439-20151219032947\nThread:49.147.129.226/@comment-22439-20170114161344\nThread:49.149.205.133/@comment-22439-20151216161208\nThread:49.191.146.104/@comment-22439-20170225231650\nThread:49.191.32.136/@comment-22439-20161102000620\nThread:49.194.15.156/@comment-22439-20161017122441\nThread:49.196.3.2/@comment-22439-20141129055943\nThread:49.197.109.164/@comment-22439-20170417155829\nThread:49.197.36.189/@comment-22439-20161013062223\nThread:49.199.12.243/@comment-22439-20161106115025\nThread:49.2.30.245/@comment-22439-20150404122845\nThread:49.224.120.145/@comment-22439-20160417080131\nThread:49.255.202.34/@comment-4403388-20170814045042\nThread:49.3.192.13/@comment-22439-20170710131959\nThread:5.10.176.178/@comment-22439-20141229112153\nThread:5.10.6.41/@comment-22439-20141102171531\nThread:5.101.142.236/@comment-22439-20150616160758\nThread:5.103.207.71/@comment-22439-20160717162947\nThread:5.103.231.129/@comment-22439-20151116180059\nThread:5.103.232.107/@comment-22439-20150822084227\nThread:5.104.125.194/@comment-22439-20160827070215\nThread:5.12.100.161/@comment-22439-20150806124151\nThread:5.14.4.22/@comment-22439-20151004131901\nThread:5.146.179.178/@comment-22439-20150411065807\nThread:5.146.195.68/@comment-32769624-20170903135134\nThread:5.146.49.4/@comment-22439-20150814180947\nThread:5.147.122.133/@comment-22439-20151014074851\nThread:5.147.48.112/@comment-22439-20161112035830\nThread:5.150.100.24/@comment-22439-20141204141714\nThread:5.151.197.96/@comment-22439-20170309215316\nThread:5.152.195.200/@comment-22439-20170302133011\nThread:5.157.103.183/@comment-22439-20151224113626\nThread:5.157.97.178/@comment-22439-20150106230535\nThread:5.164.17.24/@comment-22439-20141203174730\nThread:5.167.143.117/@comment-22439-20150815232153\nThread:5.172.239.182/@comment-22439-20150526220536\nThread:5.172.252.22/@comment-22439-20150107113956\nThread:5.18.154.88/@comment-22439-20150104134708\nThread:5.18.174.40/@comment-22439-20150723015150\nThread:5.18.35.3/@comment-22439-20141101200236\nThread:5.18.84.105/@comment-22439-20141217211000\nThread:5.186.113.251/@comment-22439-20160603191733\nThread:5.186.50.167/@comment-22439-20170130235812\nThread:5.198.11.99/@comment-22439-20170115063932\nThread:5.198.43.13/@comment-22439-20150102230558\nThread:5.224.184.115/@comment-22439-20160818102531\nThread:5.29.157.212/@comment-22439-20150908140600\nThread:5.29.185.245/@comment-32769624-20170825181305\nThread:5.29.54.125/@comment-22439-20150524104351\nThread:5.36.137.151/@comment-22439-20170426064828\nThread:5.42.131.26/@comment-22439-20141221223603\nThread:5.43.161.166/@comment-22439-20160125212923\nThread:5.49.48.74/@comment-22439-20160822161949\nThread:5.50.93.105/@comment-22439-20150112030728\nThread:5.53.243.156/@comment-22439-20140905152714\nThread:5.56.179.87/@comment-22439-20150523185040\nThread:5.64.211.198/@comment-22439-20150928180135\nThread:5.65.64.210/@comment-22439-20170418171408\nThread:5.65.85.131/@comment-22439-20160224234511\nThread:5.66.221.166/@comment-22439-20160224163652\nThread:5.66.95.183/@comment-22439-20160907123014\nThread:5.68.138.109/@comment-22439-20150218114349\nThread:5.68.230.137/@comment-22439-20160406230248\nThread:5.69.10.21/@comment-22439-20150609222223\nThread:5.69.187.253/@comment-22439-20150413204735\nThread:5.69.243.98/@comment-22439-20170506173944\nThread:5.71.0.142/@comment-22439-20160726213456\nThread:5.71.110.13/@comment-22439-20150315234442\nThread:5.71.20.211/@comment-22439-20161001205002\nThread:5.71.230.40/@comment-22439-20150406203222\nThread:5.80.110.4/@comment-22439-20160102070302\nThread:5.80.132.255/@comment-22439-20151224232334\nThread:5.80.207.186/@comment-22439-20150913150755\nThread:5.80.255.178/@comment-22439-20151127043132\nThread:5.80.28.136/@comment-22439-20150713115327\nThread:5.80.46.191/@comment-22439-20170102143532\nThread:5.80.71.83/@comment-22439-20160815141411\nThread:5.80.8.153/@comment-22439-20150929231250\nThread:5.81.125.61/@comment-22439-20140628213917\nThread:5.81.159.161/@comment-22439-20151226161832\nThread:5.81.250.3/@comment-22439-20150405161419\nThread:5.81.33.188/@comment-22439-20150115002153\nThread:5.86.187.118/@comment-22439-20170415175730\nThread:5.92.78.27/@comment-22439-20170728055527\nThread:50.0.102.200/@comment-22439-20150521183405\nThread:50.1.48.213/@comment-22439-20160520154313\nThread:50.1.62.235/@comment-22439-20150118191300\nThread:50.10.178.138/@comment-22439-20150409102741\nThread:50.100.112.6/@comment-22439-20151127130252\nThread:50.100.217.171/@comment-22439-20150607225127\nThread:50.101.183.164/@comment-22439-20161211183001\nThread:50.101.214.170/@comment-22439-20151211005216\nThread:50.101.60.230/@comment-22439-20161026182407\nThread:50.104.101.223/@comment-22439-20150220054210\nThread:50.104.67.17/@comment-22439-20150324005258\nThread:50.106.189.239/@comment-22439-20160123011342\nThread:50.111.20.236/@comment-22439-20151218031421\nThread:50.111.206.178/@comment-22439-20151212050254\nThread:50.111.218.150/@comment-22439-20160123000215\nThread:50.113.40.184/@comment-22439-20141220170308\nThread:50.121.70.2/@comment-22439-20150129121907\nThread:50.126.183.217/@comment-12138097-20150223070530\nThread:50.126.183.217/@comment-12138097-20150223070530/@comment-12138097-20150223194721\nThread:50.126.183.217/@comment-12138097-20150223070530/@comment-12138097-20150224070356\nThread:50.126.183.217/@comment-12138097-20150223070530/@comment-12138097-20150224202858\nThread:50.126.183.217/@comment-12138097-20150223070530/@comment-12138097-20150226002732\nThread:50.126.183.217/@comment-12138097-20150223070530/@comment-26009169-20150223120828\nThread:50.126.183.217/@comment-12138097-20150223070530/@comment-26009169-20150224114205\nThread:50.126.183.217/@comment-22439-20150223010302\nThread:50.129.45.145/@comment-22439-20170531033445\nThread:50.129.64.120/@comment-22439-20150428044126\nThread:50.13.185.43/@comment-22439-20151015013937\nThread:50.133.100.78/@comment-22439-20170321043703\nThread:50.133.190.239/@comment-22439-20170114161920\nThread:50.134.20.202/@comment-22439-20160304093713\nThread:50.135.183.66/@comment-22439-20160801055838\nThread:50.135.5.168/@comment-22439-20151224010706\nThread:50.135.54.250/@comment-22439-20150805035044\nThread:50.137.0.220/@comment-22439-20150702171055\nThread:50.137.102.43/@comment-22439-20151224193811\nThread:50.138.159.119/@comment-22439-20150316201914\nThread:50.139.244.177/@comment-22439-20141127045207\nThread:50.139.97.125/@comment-22439-20150114081620\nThread:50.141.115.73/@comment-22439-20150908102741\nThread:50.142.19.29/@comment-22439-20160310170624\nThread:50.143.170.199/@comment-22439-20151205090137\nThread:50.147.110.159/@comment-22439-20150807045904\nThread:50.147.112.25/@comment-22439-20160902191239\nThread:50.148.161.100/@comment-22439-20150505042741\nThread:50.149.146.79/@comment-22439-20151127033329\nThread:50.150.167.77/@comment-22439-20170220072124\nThread:50.150.51.32/@comment-22439-20141220215653\nThread:50.150.68.49/@comment-22439-20151218032626\nThread:50.151.152.56/@comment-22439-20150606155422\nThread:50.152.135.123/@comment-22439-20170106115036\nThread:50.152.35.117/@comment-22439-20150105220121\nThread:50.154.127.58/@comment-22439-20150701193838\nThread:50.154.136.52/@comment-22439-20160214020947\nThread:50.155.234.240/@comment-22439-20170114231239\nThread:50.156.112.91/@comment-22439-20141217164207\nThread:50.156.160.90/@comment-22439-20150123084033\nThread:50.157.251.244/@comment-22439-20150129021109\nThread:50.158.150.75/@comment-22439-20141116144944\nThread:50.158.251.198/@comment-22439-20151102214424\nThread:50.159.152.180/@comment-22439-20160103110805\nThread:50.159.96.116/@comment-22439-20150119143618\nThread:50.160.153.191/@comment-22439-20150613230628\nThread:50.161.122.216/@comment-22439-20150202070542\nThread:50.161.170.234/@comment-22439-20161128190523\nThread:50.161.240.236/@comment-22439-20161031044114\nThread:50.162.189.113/@comment-22439-20151204071700\nThread:50.162.203.234/@comment-22439-20131222064141\nThread:50.163.90.120/@comment-22439-20161014160130\nThread:50.164.50.93/@comment-22439-20170129190929\nThread:50.164.75.87/@comment-22439-20150530132954\nThread:50.166.254.43/@comment-22439-20150610040841\nThread:50.167.240.190/@comment-22439-20160722215620\nThread:50.168.246.211/@comment-22439-20160121044727\nThread:50.168.46.114/@comment-22439-20150929210408\nThread:50.170.117.254/@comment-22439-20160107073157\nThread:50.170.132.148/@comment-22439-20170416164719\nThread:50.170.69.144/@comment-22439-20150224100952\nThread:50.174.126.78/@comment-22439-20150609070306\nThread:50.175.181.155/@comment-22439-20150528030342\nThread:50.176.247.65/@comment-22439-20141228140624\nThread:50.177.231.130/@comment-22439-20170315030837\nThread:50.178.166.246/@comment-22439-20150912051959\nThread:50.178.246.49/@comment-22439-20150506193139\nThread:50.179.24.231/@comment-22439-20170430171029\nThread:50.180.208.252/@comment-22439-20160921051347\nThread:50.181.47.16/@comment-22439-20150922064858\nThread:50.182.165.117/@comment-22439-20141217004339\nThread:50.183.114.26/@comment-22439-20150328022249\nThread:50.183.196.130/@comment-22439-20170424010318\nThread:50.184.162.107/@comment-22439-20141223074919\nThread:50.184.66.16/@comment-22439-20151026052909\nThread:50.185.89.167/@comment-22439-20151217221849\nThread:50.186.109.73/@comment-22439-20170123063938\nThread:50.188.219.62/@comment-22439-20151109215557\nThread:50.188.60.46/@comment-22439-20160207041718\nThread:50.190.113.228/@comment-22439-20160529153223\nThread:50.191.116.52/@comment-22439-20160125031111\nThread:50.191.187.211/@comment-22439-20141130045715\nThread:50.191.44.16/@comment-22439-20150116142949\nThread:50.191.58.144/@comment-22439-20150604045757\nThread:50.192.48.153/@comment-22439-20150529130954\nThread:50.193.166.214/@comment-22439-20141231142239\nThread:50.193.89.41/@comment-22439-20160707034505\nThread:50.195.79.62/@comment-22439-20150506192020\nThread:50.199.255.189/@comment-22439-20160711200349\nThread:50.200.107.166/@comment-22439-20150921170720\nThread:50.200.245.26/@comment-22439-20160929173112\nThread:50.200.48.87/@comment-22439-20160418145509\nThread:50.202.58.42/@comment-22439-20150227142350\nThread:50.203.104.142/@comment-22439-20160609003726\nThread:50.203.210.2/@comment-22439-20151105185522\nThread:50.203.63.74/@comment-22439-20150412184858\nThread:50.204.82.30/@comment-22439-20150711193554\nThread:50.205.42.50/@comment-22439-20170605184450\nThread:50.206.158.37/@comment-22439-20150627005118\nThread:50.206.66.62/@comment-22439-20170711223703\nThread:50.24.177.60/@comment-22439-20150801045218\nThread:50.24.185.109/@comment-22439-20160512200133\nThread:50.24.5.109/@comment-22439-20151015111046\nThread:50.241.208.109/@comment-22439-20151130132312\nThread:50.245.134.27/@comment-22439-20150309024628\nThread:50.25.174.219/@comment-22439-20160822025216\nThread:50.253.182.53/@comment-22439-20150123083833\nThread:50.253.87.121/@comment-22439-20170430164949\nThread:50.255.40.41/@comment-22439-20151202235143\nThread:50.26.199.24/@comment-22439-20150102144529\nThread:50.27.102.157/@comment-22439-20151229012758\nThread:50.27.205.89/@comment-22439-20150611112616\nThread:50.27.26.79/@comment-22439-20150609010653\nThread:50.29.140.85/@comment-22439-20150701094100\nThread:50.34.140.248/@comment-22439-20170109012211\nThread:50.34.98.251/@comment-22439-20150316185206\nThread:50.35.25.222/@comment-22439-20150406023258\nThread:50.36.214.87/@comment-22439-20170530022205\nThread:50.38.105.52/@comment-22439-20170314021411\nThread:50.38.244.185/@comment-22439-20150108225154\nThread:50.38.245.253/@comment-22439-20150120043426\nThread:50.38.32.124/@comment-22439-20150325234415\nThread:50.38.37.16/@comment-22439-20170330233559\nThread:50.39.178.11/@comment-22439-20151126062955\nThread:50.39.96.128/@comment-32769624-20170902233705\nThread:50.4.144.82/@comment-22439-20170303112154\nThread:50.4.239.175/@comment-22439-20151124203509\nThread:50.43.116.98/@comment-32769624-20170911015502\nThread:50.43.12.91/@comment-22439-20160212150918\nThread:50.43.32.65/@comment-22439-20160320015101\nThread:50.43.44.6/@comment-22439-20151217153759\nThread:50.44.161.142/@comment-22439-20151114172434\nThread:50.44.98.107/@comment-22439-20170525045752\nThread:50.46.224.106/@comment-22439-20150523062745\nThread:50.5.137.178/@comment-22439-20150709003840\nThread:50.53.0.81/@comment-22439-20141229003125\nThread:50.53.108.42/@comment-22439-20161103013644\nThread:50.53.178.6/@comment-22439-20161101193926\nThread:50.53.180.233/@comment-22439-20150612190802\nThread:50.53.21.201/@comment-22439-20150524001118\nThread:50.53.53.103/@comment-22439-20150708000555\nThread:50.53.84.33/@comment-22439-20170211032301\nThread:50.53.93.163/@comment-22439-20160229074437\nThread:50.54.165.148/@comment-22439-20170204001538\nThread:50.54.65.26/@comment-22439-20150407004805\nThread:50.64.56.7/@comment-22439-20150404012045\nThread:50.65.112.89/@comment-22439-20151128003045\nThread:50.65.152.138/@comment-22439-20170716072834\nThread:50.65.152.15/@comment-22439-20150123030121\nThread:50.65.156.175/@comment-22439-20150425091941\nThread:50.65.191.122/@comment-4403388-20170809091731\nThread:50.65.88.14/@comment-22439-20170413231511\nThread:50.65.89.52/@comment-22439-20160823005848\nThread:50.66.157.104/@comment-22439-20170130190012\nThread:50.66.162.37/@comment-22439-20170418070732\nThread:50.66.80.150/@comment-22439-20151026172423\nThread:50.67.252.180/@comment-22439-20141110044313\nThread:50.68.163.227/@comment-22439-20170413161801\nThread:50.69.21.95/@comment-22439-20150506120338\nThread:50.69.40.31/@comment-22439-20160110093422\nThread:50.71.190.250/@comment-4403388-20170816212336\nThread:50.71.35.46/@comment-22439-20150817073315\nThread:50.71.8.91/@comment-22439-20150606164311\nThread:50.72.129.161/@comment-22439-20150420060714\nThread:50.73.242.166/@comment-22439-20150922131938\nThread:50.78.252.161/@comment-22439-20150624205706\nThread:50.80.48.230/@comment-22439-20151127003147\nThread:50.81.162.4/@comment-22439-20150613014840\nThread:50.82.119.223/@comment-22439-20170302082523\nThread:50.82.251.175/@comment-22439-20161202234040\nThread:50.82.64.66/@comment-22439-20160528093214\nThread:50.82.83.18/@comment-22439-20150611023302\nThread:50.83.105.34/@comment-22439-20141007034344\nThread:50.83.182.14/@comment-22439-20150520122838\nThread:50.88.121.45/@comment-22439-20150109193414\nThread:50.88.128.103/@comment-22439-20150416092444\nThread:50.88.170.31/@comment-22439-20150523040209\nThread:50.88.185.86/@comment-22439-20150219004316\nThread:50.89.209.6/@comment-22439-20170525211551\nThread:50.89.241.140/@comment-22439-20141114043847\nThread:50.90.51.23/@comment-32769624-20170822041721\nThread:50.92.27.193/@comment-22439-20161004013319\nThread:50.92.35.140/@comment-22439-20161125055312\nThread:50.92.46.205/@comment-22439-20150321210317\nThread:50.96.208.137/@comment-22439-20141123012750\nThread:50.98.222.161/@comment-22439-20170217003851\nThread:50.99.251.117/@comment-22439-20150218052403\nThread:501.Legion/@comment-32769624-20190822183827\nThread:51.174.209.204/@comment-22439-20160209174926\nThread:51.174.6.57/@comment-22439-20170624104607\nThread:51.175.115.114/@comment-22439-20170316040200\nThread:51.6.137.58/@comment-22439-20170715103153\nThread:51.6.189.188/@comment-22439-20160816173354\nThread:51.6.90.63/@comment-22439-20170413084228\nThread:51.7.5.231/@comment-22439-20170116163217\nThread:51.9.137.95/@comment-22439-20170504145917\nThread:51.9.208.9/@comment-22439-20160517211305\nThread:52.129.120.199/@comment-22439-20161120030817\nThread:52.53.217.227/@comment-22439-20161018093440\nThread:54.172.67.101/@comment-22439-20150314025129\nThread:54.175.255.176/@comment-22439-20170131233053\nThread:54.175.68.151/@comment-22439-20160411000127\nThread:54.240.196.185/@comment-22439-20150427201130\nThread:54.240.197.235/@comment-22439-20160815091435\nThread:57.67.195.198/@comment-22439-20150727084844\nThread:58.10.107.140/@comment-22439-20170322144541\nThread:58.104.21.179/@comment-22439-20150408045233\nThread:58.104.74.158/@comment-22439-20160708083257\nThread:58.104.74.82/@comment-22439-20160707083140\nThread:58.104.78.69/@comment-22439-20160714065342\nThread:58.106.156.207/@comment-22439-20150317142341\nThread:58.108.235.193/@comment-22439-20140602091652\nThread:58.160.157.233/@comment-22439-20160802054555\nThread:58.160.174.240/@comment-22439-20160812052945\nThread:58.162.227.75/@comment-22439-20150611233333\nThread:58.162.228.136/@comment-22439-20150317120720\nThread:58.162.68.98/@comment-22439-20150701064424\nThread:58.165.246.151/@comment-22439-20161205093717\nThread:58.165.35.19/@comment-22439-20151018064424\nThread:58.168.116.207/@comment-22439-20150712064727\nThread:58.170.64.61/@comment-22439-20150927130210\nThread:58.174.200.150/@comment-22439-20150322061504\nThread:58.174.42.14/@comment-22439-20150930163404\nThread:58.179.214.56/@comment-22439-20150902175311\nThread:58.179.244.13/@comment-22439-20150517131730\nThread:58.179.92.7/@comment-22439-20150615082000\nThread:58.28.213.147/@comment-22439-20141219074948\nThread:58.6.69.183/@comment-22439-20160826122511\nThread:58.64.242.3/@comment-22439-20150720101038\nThread:58.7.138.127/@comment-22439-20150707185237\nThread:58.7.138.64/@comment-22439-20150824111846\nThread:58.7.254.202/@comment-22439-20141029142356\nThread:58.7.38.172/@comment-22439-20150626022905\nThread:58.7.44.141/@comment-22439-20150118103037\nThread:58.7.76.48/@comment-22439-20140924142836\nThread:58.9.253.110/@comment-22439-20170107173702\nThread:58.9.253.218/@comment-22439-20161228142903\nThread:59.101.161.212/@comment-22439-20150817053603\nThread:59.102.31.199/@comment-22439-20170704090019\nThread:59.102.61.156/@comment-22439-20161220000637\nThread:59.115.48.121/@comment-22439-20150730104440\nThread:59.13.255.5/@comment-22439-20160126151350\nThread:59.152.244.166/@comment-22439-20161214032736\nThread:59.167.122.129/@comment-22439-20150111035343\nThread:59.167.127.71/@comment-22439-20150919015555\nThread:59.167.133.185/@comment-22439-20150116025342\nThread:59.167.136.21/@comment-22439-20141028005539\nThread:59.167.245.78/@comment-22439-20161218112208\nThread:59.167.60.164/@comment-22439-20151203071147\nThread:59.189.224.181/@comment-22439-20150108112659\nThread:59.189.48.155/@comment-32769624-20170905043317\nThread:59.89.206.151/@comment-22439-20150216153305\nThread:60.224.133.199/@comment-22439-20150904124820\nThread:60.228.130.74/@comment-22439-20150208091711\nThread:60.228.216.7/@comment-22439-20160429154255\nThread:60.229.147.15/@comment-22439-20160117090851\nThread:60.230.219.12/@comment-22439-20150624134707\nThread:60.230.79.84/@comment-22439-20170610072301\nThread:60.231.13.126/@comment-22439-20141212074500\nThread:60.231.183.136/@comment-22439-20160201022328\nThread:60.231.230.155/@comment-22439-20141213160642\nThread:60.234.106.184/@comment-22439-20160826224851\nThread:60.240.105.60/@comment-22439-20170706051721\nThread:60.240.109.68/@comment-22439-20151107053052\nThread:60.240.141.213/@comment-22439-20160328074021\nThread:60.240.147.11/@comment-22439-20150804010905\nThread:60.240.208.159/@comment-22439-20160112092635\nThread:60.240.58.163/@comment-22439-20160531100721\nThread:60.240.59.198/@comment-22439-20160905044008\nThread:60.241.186.181/@comment-22439-20141224143148\nThread:60.241.199.133/@comment-22439-20150717080220\nThread:60.241.212.29/@comment-22439-20141213152150\nThread:60.241.233.218/@comment-22439-20160503012138\nThread:60.242.187.182/@comment-22439-20151016044027\nThread:60.242.49.52/@comment-22439-20141219121921\nThread:60.243.44.15/@comment-22439-20160209150736\nThread:60.34.2.187/@comment-22439-20151114125726\nThread:60.34.2.5/@comment-22439-20160120052707\nThread:60.50.166.118/@comment-22439-20150607113949\nThread:60.53.28.152/@comment-22439-20160208183113\nThread:61.230.192.17/@comment-22439-20151225185935\nThread:61.75.68.11/@comment-22439-20150614210646\nThread:61.92.179.76/@comment-22439-20160424182758\nThread:62.0.34.139/@comment-22439-20150111145118\nThread:62.100.224.15/@comment-22439-20150717092218\nThread:62.101.170.128/@comment-22439-20150105231453\nThread:62.117.136.204/@comment-22439-20160113030635\nThread:62.143.213.31/@comment-22439-20140908204622\nThread:62.143.213.31/@comment-25335609-20140909023040\nThread:62.150.121.250/@comment-22439-20160101232741\nThread:62.153.14.220/@comment-22439-20150201072708\nThread:62.155.134.230/@comment-22439-20170206063805\nThread:62.156.37.226/@comment-22439-20160214102031\nThread:62.156.46.3/@comment-22439-20150917181204\nThread:62.157.62.139/@comment-22439-20141221014400\nThread:62.158.174.46/@comment-22439-20150306212133\nThread:62.158.216.100/@comment-22439-20150421235148\nThread:62.158.223.183/@comment-22439-20150122064241\nThread:62.159.185.194/@comment-22439-20170130095906\nThread:62.163.212.120/@comment-22439-20150427043433\nThread:62.163.31.7/@comment-22439-20151216083615\nThread:62.168.3.158/@comment-22439-20150507062535\nThread:62.168.31.29/@comment-22439-20170513092723\nThread:62.176.13.167/@comment-22439-20150618081925\nThread:62.178.151.83/@comment-22439-20160119105401\nThread:62.178.217.184/@comment-22439-20150222181351\nThread:62.189.40.30/@comment-22439-20170526160950\nThread:62.194.0.129/@comment-22439-20130905114633\nThread:62.194.232.232/@comment-22439-20150410164204\nThread:62.195.237.108/@comment-22439-20160106215156\nThread:62.195.45.205/@comment-22439-20141004003932\nThread:62.197.243.38/@comment-22439-20151112195005\nThread:62.198.124.130/@comment-22439-20160903082627\nThread:62.198.87.150/@comment-22439-20151209172941\nThread:62.199.248.102/@comment-22439-20141105222337\nThread:62.199.249.127/@comment-22439-20150402203407\nThread:62.2.217.58/@comment-22439-20141007113656\nThread:62.20.145.167/@comment-22439-20150123090443\nThread:62.201.23.94/@comment-22439-20151108141500\nThread:62.21.106.252/@comment-22439-20160914080036\nThread:62.211.136.144/@comment-22439-20170327141732\nThread:62.216.209.210/@comment-22439-20150821211955\nThread:62.216.210.226/@comment-22439-20150928214816\nThread:62.216.213.107/@comment-22439-20150705095509\nThread:62.216.214.55/@comment-22439-20151014184746\nThread:62.218.164.126/@comment-22439-20150828123938\nThread:62.224.116.204/@comment-22439-20170608224218\nThread:62.224.121.233/@comment-22439-20141225175035\nThread:62.23.167.180/@comment-22439-20150107093351\nThread:62.232.114.135/@comment-22439-20140204101606\nThread:62.232.9.245/@comment-22439-20150105152235\nThread:62.232.9.62/@comment-22439-20130227162311\nThread:62.235.29.176/@comment-22439-20170712155049\nThread:62.235.85.158/@comment-22439-20160709001641\nThread:62.24.73.137/@comment-22439-20150625164203\nThread:62.245.77.199/@comment-22439-20150220175618\nThread:62.25.109.195/@comment-22439-20150425085700\nThread:62.252.189.65/@comment-22439-20160410110548\nThread:62.253.203.188/@comment-22439-20150911154724\nThread:62.253.232.49/@comment-22439-20141211083139\nThread:62.254.180.212/@comment-22439-20170531092557\nThread:62.255.103.241/@comment-22439-20130105140434\nThread:62.255.140.172/@comment-22439-20141203014022\nThread:62.255.208.109/@comment-22439-20141211200541\nThread:62.255.241.85/@comment-22439-20141227024211\nThread:62.30.150.42/@comment-22439-20150917190735\nThread:62.30.33.193/@comment-22439-20150120153609\nThread:62.30.56.254/@comment-22439-20150123221132\nThread:62.31.145.21/@comment-22439-20170508075100\nThread:62.31.177.227/@comment-22439-20150217213011\nThread:62.31.250.111/@comment-22439-20150214092335\nThread:62.45.115.110/@comment-22439-20150105120854\nThread:62.47.233.109/@comment-22439-20150804144207\nThread:62.56.78.36/@comment-22439-20141223195703\nThread:62.6.254.204/@comment-22439-20130110105107\nThread:62.6.254.204/@comment-5937172-20140609110328\nThread:62.63.36.45/@comment-22439-20150323134017\nThread:62.63.58.186/@comment-22439-20150526093154\nThread:62.64.157.127/@comment-22439-20151106202729\nThread:62.64.206.89/@comment-22439-20160405095153\nThread:62.64.229.165/@comment-32769624-20170828201021\nThread:62.7.228.250/@comment-22439-20150707113108\nThread:62.77.119.80/@comment-22439-20140911090033\nThread:62.78.239.134/@comment-22439-20150202183045\nThread:62.83.10.194/@comment-22439-20150131130053\nThread:62.85.41.222/@comment-22439-20150616170838\nThread:63.115.40.56/@comment-22439-20141001193817\nThread:63.131.215.164/@comment-22439-20141109050957\nThread:63.141.204.61/@comment-22439-20150515191337\nThread:63.143.196.35/@comment-22439-20151125071917\nThread:63.152.119.244/@comment-22439-20170402141837\nThread:63.152.84.197/@comment-22439-20150703232356\nThread:63.153.29.9/@comment-22439-20150329172826\nThread:63.153.80.227/@comment-22439-20150414003642\nThread:63.159.0.197/@comment-22439-20160222061637\nThread:63.225.190.126/@comment-22439-20151030035009\nThread:63.225.6.7/@comment-22439-20150405060941\nThread:63.230.226.165/@comment-22439-20150817004157\nThread:63.233.193.240/@comment-22439-20150430221517\nThread:63.239.65.11/@comment-22439-20151207184240\nThread:63.247.178.98/@comment-22439-20160725213304\nThread:63.247.60.254/@comment-22439-20151113144253\nThread:63.64.75.10/@comment-22439-20151209223058\nThread:64.106.111.10/@comment-22439-20150520232821\nThread:64.106.111.2/@comment-22439-20150326153618\nThread:64.106.111.22/@comment-22439-20150305063159\nThread:64.106.111.26/@comment-22439-20150326192728\nThread:64.113.173.176/@comment-22439-20150121120605\nThread:64.114.239.66/@comment-22439-20160125172205\nThread:64.118.103.47/@comment-22439-20150614165801\nThread:64.127.136.202/@comment-22439-20160112144455\nThread:64.128.133.180/@comment-22439-20141218234337\nThread:64.131.59.218/@comment-22439-20150618130454\nThread:64.134.167.151/@comment-22439-20170612225252\nThread:64.134.167.71/@comment-22439-20170807120240\nThread:64.135.200.128/@comment-22439-20151105015131\nThread:64.136.192.220/@comment-22439-20150116133914\nThread:64.138.234.25/@comment-22439-20151022043301\nThread:64.141.144.2/@comment-22439-20160120153019\nThread:64.146.180.155/@comment-22439-20150117063933\nThread:64.180.22.219/@comment-22439-20170125231137\nThread:64.180.245.54/@comment-22439-20161018000226\nThread:64.187.172.44/@comment-22439-20150508041109\nThread:64.188.171.156/@comment-22439-20150624000050\nThread:64.20.68.125/@comment-22439-20160915145149\nThread:64.206.209.98/@comment-22439-20150327131732\nThread:64.22.251.126/@comment-22439-20160808194843\nThread:64.222.235.143/@comment-22439-20151022090153\nThread:64.228.53.109/@comment-22439-20151124033127\nThread:64.229.194.163/@comment-22439-20160207031249\nThread:64.231.209.216/@comment-22439-20150521010244\nThread:64.231.209.243/@comment-22439-20150530143658\nThread:64.231.211.252/@comment-22439-20150519214649\nThread:64.233.173.171/@comment-22439-20150204052937\nThread:64.233.173.179/@comment-22439-20150416124010\nThread:64.234.38.12/@comment-22439-20150430191725\nThread:64.236.4.17/@comment-22439-20150528123734\nThread:64.237.35.82/@comment-22439-20150418202510\nThread:64.253.177.2/@comment-22439-20141114220100\nThread:64.253.182.195/@comment-22439-20150817160130\nThread:64.254.141.37/@comment-22439-20130814194037\nThread:64.31.157.18/@comment-22439-20150226160040\nThread:64.32.72.112/@comment-22439-20160219171138\nThread:64.33.143.102/@comment-22439-20170518124409\nThread:64.37.17.32/@comment-22439-20151113011844\nThread:64.47.27.194/@comment-22439-20150721150713\nThread:64.49.112.22/@comment-22439-20150612124345\nThread:64.56.20.60/@comment-22439-20170502182024\nThread:64.58.20.99/@comment-22439-20150310224205\nThread:64.60.89.146/@comment-22439-20150428202851\nThread:64.65.245.210/@comment-22439-20141030192333\nThread:64.68.230.243/@comment-22439-20150410075101\nThread:64.7.3.77/@comment-22439-20150703055646\nThread:64.72.215.105/@comment-22439-20160329174843\nThread:64.86.141.133/@comment-22439-20150326201617\nThread:64.91.114.101/@comment-22439-20150619065400\nThread:65.100.55.250/@comment-22439-20160901055202\nThread:65.103.2.228/@comment-22439-20150321002327\nThread:65.110.255.193/@comment-22439-20161106181318\nThread:65.110.255.50/@comment-22439-20160713031000\nThread:65.128.115.15/@comment-22439-20150322010628\nThread:65.128.175.200/@comment-22439-20150626002456\nThread:65.129.171.86/@comment-22439-20160729233647\nThread:65.129.175.102/@comment-22439-20160806064959\nThread:65.129.178.232/@comment-22439-20160727083559\nThread:65.129.22.235/@comment-22439-20151216034107\nThread:65.129.227.204/@comment-22439-20151002043516\nThread:65.129.51.38/@comment-22439-20160109055041\nThread:65.129.89.44/@comment-22439-20150723031923\nThread:65.184.106.104/@comment-22439-20140912224543\nThread:65.184.226.110/@comment-22439-20150702070613\nThread:65.185.51.78/@comment-22439-20150902073119\nThread:65.186.66.167/@comment-22439-20160221192623\nThread:65.189.195.77/@comment-22439-20151013042949\nThread:65.189.55.228/@comment-22439-20170111024234\nThread:65.190.130.110/@comment-22439-20150107042945\nThread:65.190.212.70/@comment-22439-20160314155753\nThread:65.190.62.25/@comment-22439-20161019232823\nThread:65.191.113.6/@comment-22439-20160320120735\nThread:65.191.190.82/@comment-22439-20160110021724\nThread:65.191.24.61/@comment-22439-20150406205658\nThread:65.191.78.225/@comment-22439-20151108183249\nThread:65.199.189.6/@comment-22439-20160831142226\nThread:65.201.202.66/@comment-22439-20150122212141\nThread:65.242.55.2/@comment-22439-20160922213306\nThread:65.25.6.184/@comment-22439-20150716120439\nThread:65.28.84.131/@comment-22439-20150619015337\nThread:65.29.107.43/@comment-22439-20160116164901\nThread:65.32.104.6/@comment-22439-20170312184332\nThread:65.32.191.96/@comment-22439-20150221062903\nThread:65.35.194.48/@comment-22439-20150131062043\nThread:65.35.47.185/@comment-22439-20151013195534\nThread:65.49.14.146/@comment-22439-20141107190244\nThread:65.51.205.72/@comment-22439-20150414043219\nThread:65.60.207.30/@comment-22439-20150403025836\nThread:65.61.89.208/@comment-22439-20150415023915\nThread:65.83.142.236/@comment-22439-20141212044544\nThread:65.88.123.136/@comment-22439-20141209142605\nThread:65.93.139.254/@comment-22439-20150117012159\nThread:65.93.5.133/@comment-22439-20170107020904\nThread:65.93.5.181/@comment-22439-20141028232608\nThread:65.94.21.193/@comment-22439-20150706014633\nThread:65.94.28.169/@comment-22439-20150702191425\nThread:65.99.49.76/@comment-22439-20170426065319\nThread:66.102.9.18/@comment-22439-20151020095553\nThread:66.109.235.218/@comment-22439-20150807163908\nThread:66.128.80.87/@comment-22439-20151204001901\nThread:66.128.85.223/@comment-22439-20170517221115\nThread:66.130.208.43/@comment-22439-20150609194828\nThread:66.131.175.6/@comment-22439-20150818014422\nThread:66.131.205.193/@comment-22439-20151013071252\nThread:66.159.117.193/@comment-22439-20150501213854\nThread:66.159.119.66/@comment-22439-20141108172024\nThread:66.162.11.146/@comment-22439-20160421195247\nThread:66.168.55.37/@comment-22439-20150126034434\nThread:66.168.96.134/@comment-22439-20170310035652\nThread:66.169.121.63/@comment-22439-20151114191856\nThread:66.176.216.182/@comment-22439-20141002080424\nThread:66.176.42.239/@comment-22439-20150605220100\nThread:66.188.175.186/@comment-22439-20161028204759\nThread:66.188.76.97/@comment-22439-20150128044353\nThread:66.189.14.112/@comment-22439-20150329004851\nThread:66.189.216.231/@comment-22439-20150628101102\nThread:66.190.101.194/@comment-22439-20150206013848\nThread:66.190.161.55/@comment-22439-20160303063851\nThread:66.191.249.64/@comment-22439-20170307133345\nThread:66.191.253.76/@comment-22439-20160707215254\nThread:66.206.61.69/@comment-22439-20161115080957\nThread:66.215.76.23/@comment-22439-20160805161953\nThread:66.222.151.72/@comment-22439-20150927064857\nThread:66.222.218.15/@comment-22439-20150127224518\nThread:66.225.115.2/@comment-22439-20150722054343\nThread:66.226.42.175/@comment-22439-20170130003613\nThread:66.229.135.252/@comment-22439-20141213161826\nThread:66.229.94.11/@comment-22439-20150607101029\nThread:66.230.116.61/@comment-22439-20151216191228\nThread:66.232.70.198/@comment-22439-20150501175854\nThread:66.234.221.45/@comment-22439-20150727190825\nThread:66.239.62.72/@comment-22439-20151206070509\nThread:66.24.36.39/@comment-22439-20170116005621\nThread:66.24.92.194/@comment-22439-20161212210207\nThread:66.241.163.128/@comment-22439-20170405091356\nThread:66.241.32.158/@comment-22439-20170125163305\nThread:66.244.83.13/@comment-22439-20150324131909\nThread:66.249.80.64/@comment-22439-20160117045432\nThread:66.249.80.72/@comment-22439-20160117045910\nThread:66.249.81.201/@comment-22439-20150216231432\nThread:66.249.81.43/@comment-22439-20140607172751\nThread:66.249.82.197/@comment-22439-20141229113213\nThread:66.249.82.221/@comment-22439-20150122040850\nThread:66.249.82.231/@comment-22439-20151218020307\nThread:66.249.83.142/@comment-22439-20141213153707\nThread:66.249.83.160/@comment-22439-20141213153557\nThread:66.249.83.162/@comment-22439-20141110013500\nThread:66.249.83.202/@comment-22439-20141225102211\nThread:66.249.83.207/@comment-22439-20141225102210\nThread:66.249.83.213/@comment-22439-20141225102328\nThread:66.249.83.226/@comment-22439-20141226080436\nThread:66.249.83.228/@comment-22439-20141213153600\nThread:66.249.83.232/@comment-22439-20141230060157\nThread:66.249.84.170/@comment-22439-20150124182538\nThread:66.249.88.140/@comment-22439-20160102153741\nThread:66.249.88.185/@comment-22439-20160305042750\nThread:66.249.93.154/@comment-22439-20150124125825\nThread:66.249.93.187/@comment-22439-20150121101917\nThread:66.249.93.205/@comment-22439-20150311135523\nThread:66.249.93.245/@comment-22439-20160116145647\nThread:66.249.93.249/@comment-22439-20150311135401\nThread:66.249.93.30/@comment-22439-20160116145801\nThread:66.254.228.157/@comment-22439-20150325152430\nThread:66.26.141.136/@comment-22439-20160719082638\nThread:66.27.75.2/@comment-22439-20160710005413\nThread:66.27.95.167/@comment-22439-20151114155944\nThread:66.30.147.96/@comment-22439-20170723023017\nThread:66.37.93.36/@comment-22439-20160117041343\nThread:66.41.212.140/@comment-22439-20150406110709\nThread:66.42.249.135/@comment-22439-20150209032427\nThread:66.44.126.199/@comment-22439-20150523025431\nThread:66.44.241.1/@comment-22439-20150322005450\nThread:66.44.57.58/@comment-22439-20160110171759\nThread:66.51.226.212/@comment-22439-20160726101038\nThread:66.55.134.206/@comment-22439-20151110011411\nThread:66.55.144.247/@comment-22439-20151231191334\nThread:66.55.147.60/@comment-22439-20161115023407\nThread:66.55.150.186/@comment-22439-20160106091321\nThread:66.58.168.34/@comment-22439-20150824023925\nThread:66.58.215.98/@comment-22439-20151110030819\nThread:66.60.139.90/@comment-22439-20170224172845\nThread:66.61.13.198/@comment-22439-20160207110400\nThread:66.63.118.65/@comment-22439-20141224010806\nThread:66.66.134.21/@comment-22439-20150805080718\nThread:66.68.137.254/@comment-22439-20160728042513\nThread:66.68.17.185/@comment-22439-20160110210133\nThread:66.68.32.91/@comment-22439-20141217011339\nThread:66.69.126.147/@comment-22439-20150901185339\nThread:66.69.14.10/@comment-22439-20151018050152\nThread:66.74.41.156/@comment-22439-20150710025937\nThread:66.76.53.124/@comment-22439-20150225141948\nThread:66.8.170.192/@comment-22439-20150623103348\nThread:66.87.100.166/@comment-22439-20170418170534\nThread:66.87.115.120/@comment-22439-20141231102058\nThread:66.87.115.38/@comment-22439-20160825205913\nThread:66.87.125.67/@comment-22439-20160719030130\nThread:66.87.153.243/@comment-22439-20170402200546\nThread:66.87.153.65/@comment-22439-20150511165139\nThread:66.87.18.159/@comment-22439-20150319003654\nThread:66.87.69.74/@comment-22439-20161201153917\nThread:66.87.70.202/@comment-22439-20150328221211\nThread:66.91.243.93/@comment-22439-20151105071803\nThread:67.0.108.35/@comment-22439-20150124184343\nThread:67.0.169.78/@comment-22439-20150809195758\nThread:67.1.161.75/@comment-22439-20150517100235\nThread:67.1.181.13/@comment-22439-20151220041935\nThread:67.1.191.215/@comment-22439-20151114011141\nThread:67.10.115.226/@comment-22439-20141231020010\nThread:67.11.0.20/@comment-22439-20160101102746\nThread:67.11.160.177/@comment-22439-20170129154937\nThread:67.11.166.12/@comment-22439-20150321175442\nThread:67.11.244.118/@comment-22439-20160117012141\nThread:67.137.57.251/@comment-22439-20150423163401\nThread:67.139.51.110/@comment-22439-20151023002021\nThread:67.149.124.224/@comment-22439-20151213210244\nThread:67.149.225.251/@comment-22439-20170201041904\nThread:67.149.240.15/@comment-22439-20150207030435\nThread:67.159.138.73/@comment-22439-20170416003513\nThread:67.159.147.31/@comment-22439-20170518050817\nThread:67.160.16.242/@comment-22439-20150412055559\nThread:67.160.185.247/@comment-22439-20150813184943\nThread:67.160.188.96/@comment-22439-20150419092714\nThread:67.160.70.175/@comment-22439-20160719082401\nThread:67.161.119.159/@comment-22439-20141029032715\nThread:67.161.128.133/@comment-22439-20151109165504\nThread:67.161.210.2/@comment-22439-20150919214439\nThread:67.161.218.143/@comment-22439-20150912051006\nThread:67.161.40.245/@comment-22439-20151114000037\nThread:67.163.0.219/@comment-22439-20170621044615\nThread:67.164.154.48/@comment-22439-20170509172719\nThread:67.164.195.44/@comment-22439-20160312111130\nThread:67.164.206.232/@comment-22439-20151025024322\nThread:67.164.5.39/@comment-22439-20150725220037\nThread:67.165.113.178/@comment-22439-20160825170617\nThread:67.165.239.95/@comment-22439-20141008065145\nThread:67.166.26.205/@comment-22439-20150312000653\nThread:67.166.83.81/@comment-22439-20141229034751\nThread:67.166.89.53/@comment-22439-20170726022928\nThread:67.167.44.73/@comment-22439-20150206193051\nThread:67.168.104.32/@comment-22439-20160103002324\nThread:67.168.182.173/@comment-22439-20151002071005\nThread:67.168.197.251/@comment-22439-20150609041439\nThread:67.169.13.177/@comment-22439-20160117185303\nThread:67.169.171.204/@comment-22439-20151205082801\nThread:67.169.48.209/@comment-22439-20160214013239\nThread:67.169.81.195/@comment-22439-20170505015926\nThread:67.170.141.141/@comment-22439-20141223090835\nThread:67.171.222.85/@comment-22439-20141226053751\nThread:67.171.253.40/@comment-22439-20150606211821\nThread:67.171.51.23/@comment-22439-20150120134551\nThread:67.171.97.22/@comment-22439-20150307212155\nThread:67.172.222.141/@comment-22439-20150629211134\nThread:67.172.68.198/@comment-22439-20141226110907\nThread:67.172.85.143/@comment-22439-20150220191213\nThread:67.173.244.175/@comment-22439-20150430044846\nThread:67.174.149.152/@comment-22439-20150809060636\nThread:67.174.164.203/@comment-22439-20151017165354\nThread:67.174.199.180/@comment-22439-20141223224104\nThread:67.174.205.231/@comment-4403388-20170816074349\nThread:67.177.174.23/@comment-22439-20151220120537\nThread:67.177.33.248/@comment-22439-20150710150813\nThread:67.177.35.40/@comment-22439-20150815075857\nThread:67.180.178.100/@comment-22439-20160718193218\nThread:67.180.204.10/@comment-22439-20150726181058\nThread:67.180.248.214/@comment-22439-20150410163256\nThread:67.180.73.121/@comment-22439-20151219062135\nThread:67.181.26.155/@comment-22439-20150527065114\nThread:67.181.50.200/@comment-22439-20160903110855\nThread:67.181.93.38/@comment-22439-20150116230140\nThread:67.182.165.228/@comment-22439-20150407022820\nThread:67.182.254.223/@comment-22439-20170418083644\nThread:67.182.83.43/@comment-22439-20150801054210\nThread:67.183.128.177/@comment-22439-20160802100411\nThread:67.183.189.9/@comment-22439-20150909014145\nThread:67.184.101.48/@comment-22439-20150413233048\nThread:67.184.107.44/@comment-22439-20160323054218\nThread:67.184.126.212/@comment-22439-20150313064145\nThread:67.184.27.21/@comment-22439-20151205205552\nThread:67.185.137.68/@comment-22439-20150117000209\nThread:67.185.188.136/@comment-22439-20150127170811\nThread:67.185.212.65/@comment-22439-20160914040441\nThread:67.185.243.235/@comment-22439-20160110003941\nThread:67.185.33.198/@comment-22439-20150312025211\nThread:67.186.119.69/@comment-22439-20150318005721\nThread:67.186.92.128/@comment-22439-20150417070318\nThread:67.187.119.225/@comment-22439-20150420181635\nThread:67.187.135.103/@comment-22439-20141115094054\nThread:67.187.72.103/@comment-22439-20151230223055\nThread:67.189.1.156/@comment-22439-20150515170445\nThread:67.190.122.25/@comment-22439-20151213195501\nThread:67.190.23.170/@comment-22439-20151224161828\nThread:67.190.51.3/@comment-22439-20151016064928\nThread:67.191.15.203/@comment-22439-20141214085506\nThread:67.191.203.216/@comment-22439-20150629050014\nThread:67.191.65.134/@comment-22439-20160109013556\nThread:67.193.181.150/@comment-22439-20151220092241\nThread:67.193.229.113/@comment-22439-20170209040952\nThread:67.193.23.156/@comment-22439-20150930050148\nThread:67.193.41.29/@comment-22439-20160225025517\nThread:67.2.106.100/@comment-22439-20150618011043\nThread:67.2.213.99/@comment-22439-20160117111152\nThread:67.2.40.124/@comment-22439-20150903031400\nThread:67.204.234.13/@comment-22439-20150708190623\nThread:67.21.153.142/@comment-22439-20170403141904\nThread:67.210.152.252/@comment-22439-20150122234621\nThread:67.210.67.219/@comment-22439-20150922072906\nThread:67.210.67.44/@comment-22439-20150515191612\nThread:67.212.112.43/@comment-32769624-20170819131958\nThread:67.214.248.82/@comment-22439-20150623150036\nThread:67.215.158.96/@comment-22439-20141009061258\nThread:67.216.132.92/@comment-22439-20170205023857\nThread:67.217.13.16/@comment-22439-20150224013009\nThread:67.223.23.220/@comment-22439-20151208190420\nThread:67.224.196.161/@comment-22439-20161211021559\nThread:67.225.125.199/@comment-22439-20160313104558\nThread:67.235.169.89/@comment-22439-20150814214810\nThread:67.237.190.20/@comment-22439-20150530233311\nThread:67.240.237.93/@comment-22439-20150828021159\nThread:67.242.45.244/@comment-22439-20160401091426\nThread:67.244.34.143/@comment-22439-20150327023955\nThread:67.246.150.159/@comment-22439-20160213184621\nThread:67.246.176.164/@comment-22439-20141221165606\nThread:67.246.75.118/@comment-22439-20170501071423\nThread:67.247.139.249/@comment-22439-20141218081202\nThread:67.247.165.196/@comment-22439-20170225032623\nThread:67.247.8.133/@comment-22439-20170609195542\nThread:67.248.233.10/@comment-22439-20150618010718\nThread:67.252.29.149/@comment-22439-20141229210759\nThread:67.252.78.59/@comment-22439-20150323041710\nThread:67.253.29.115/@comment-22439-20150101042004\nThread:67.255.106.207/@comment-22439-20150620023919\nThread:67.255.214.226/@comment-22439-20141127051924\nThread:67.255.252.24/@comment-22439-20150704221027\nThread:67.42.133.173/@comment-22439-20161005234214\nThread:67.43.18.62/@comment-22439-20160309161328\nThread:67.43.240.161/@comment-22439-20170726205453\nThread:67.43.245.186/@comment-22439-20150622124053\nThread:67.5.189.128/@comment-22439-20160120042444\nThread:67.50.129.194/@comment-22439-20150404073450\nThread:67.60.110.51/@comment-22439-20150222030422\nThread:67.60.62.142/@comment-32769624-20170825131355\nThread:67.61.118.123/@comment-22439-20160127074518\nThread:67.61.174.117/@comment-22439-20150601031821\nThread:67.61.20.180/@comment-22439-20170422080515\nThread:67.61.62.98/@comment-22439-20160913213824\nThread:67.7.240.89/@comment-22439-20160905180855\nThread:67.71.180.138/@comment-22439-20150329203644\nThread:67.71.96.188/@comment-22439-20150521151945\nThread:67.79.115.98/@comment-22439-20150512185924\nThread:67.8.106.170/@comment-22439-20160829160600\nThread:67.8.161.24/@comment-22439-20150107175927\nThread:67.8.222.213/@comment-22439-20150202160304\nThread:67.8.85.246/@comment-22439-20150407050617\nThread:67.87.64.184/@comment-22439-20170220171229\nThread:68.0.149.112/@comment-22439-20170525044724\nThread:68.0.91.140/@comment-22439-20170615041212\nThread:68.1.71.50/@comment-22439-20161126200619\nThread:68.10.117.232/@comment-22439-20151020105254\nThread:68.10.142.38/@comment-22439-20151211064138\nThread:68.10.144.222/@comment-22439-20150328051726\nThread:68.102.179.198/@comment-22439-20160418211950\nThread:68.103.167.5/@comment-22439-20150405150402\nThread:68.103.183.35/@comment-22439-20150329201722\nThread:68.103.83.242/@comment-22439-20150118060541\nThread:68.104.25.123/@comment-22439-20150307012004\nThread:68.104.67.140/@comment-22439-20150319072529\nThread:68.106.3.62/@comment-22439-20160102234410\nThread:68.106.42.187/@comment-22439-20150529033247\nThread:68.107.130.39/@comment-22439-20150609103508\nThread:68.107.236.225/@comment-22439-20150506085144\nThread:68.107.53.197/@comment-22439-20150528031542\nThread:68.108.126.81/@comment-22439-20151212004707\nThread:68.108.157.99/@comment-22439-20150124134757\nThread:68.108.171.200/@comment-22439-20160616030102\nThread:68.108.40.15/@comment-22439-20150523201630\nThread:68.108.44.178/@comment-22439-20150628013611\nThread:68.109.144.230/@comment-22439-20161230004853\nThread:68.109.94.234/@comment-22439-20170712120241\nThread:68.110.115.68/@comment-22439-20150322214422\nThread:68.110.3.225/@comment-22439-20151114003919\nThread:68.110.93.194/@comment-22439-20150623181838\nThread:68.111.162.55/@comment-22439-20150110084316\nThread:68.111.71.226/@comment-22439-20150207130646\nThread:68.111.89.35/@comment-22439-20141120013915\nThread:68.112.191.116/@comment-22439-20160203005835\nThread:68.112.230.72/@comment-22439-20150528130440\nThread:68.112.82.234/@comment-22439-20150706090305\nThread:68.113.17.78/@comment-22439-20150905225404\nThread:68.113.198.130/@comment-22439-20160122222226\nThread:68.113.199.191/@comment-22439-20150123084717\nThread:68.113.20.202/@comment-22439-20160510150645\nThread:68.113.207.201/@comment-22439-20161219210416\nThread:68.113.209.188/@comment-22439-20161029004245\nThread:68.113.96.23/@comment-22439-20160204172017\nThread:68.114.132.130/@comment-22439-20151214212213\nThread:68.114.96.82/@comment-22439-20170707164426\nThread:68.116.195.166/@comment-22439-20160113211113\nThread:68.117.180.204/@comment-22439-20150802045341\nThread:68.117.244.13/@comment-22439-20160601172521\nThread:68.118.179.157/@comment-22439-20160728061913\nThread:68.119.220.153/@comment-22439-20150121125940\nThread:68.119.83.96/@comment-22439-20150331163722\nThread:68.12.136.17/@comment-22439-20170527013954\nThread:68.12.170.86/@comment-32769624-20170822074706\nThread:68.13.142.144/@comment-22439-20150505153549\nThread:68.13.172.68/@comment-22439-20160624051650\nThread:68.13.6.26/@comment-22439-20160604025031\nThread:68.13.88.163/@comment-22439-20150130005534\nThread:68.13.96.223/@comment-22439-20150420011237\nThread:68.131.45.110/@comment-22439-20151226035026\nThread:68.134.142.87/@comment-32769624-20170906190741\nThread:68.135.41.54/@comment-22439-20151116232434\nThread:68.14.159.113/@comment-22439-20150528062015\nThread:68.14.83.51/@comment-22439-20151225212417\nThread:68.14.85.35/@comment-22439-20160723171126\nThread:68.144.118.152/@comment-22439-20151106181818\nThread:68.144.122.219/@comment-22439-20160205061624\nThread:68.144.173.78/@comment-22439-20160826105931\nThread:68.144.188.95/@comment-22439-20160713055019\nThread:68.144.19.154/@comment-22439-20140922233602\nThread:68.144.204.5/@comment-22439-20170712062041\nThread:68.144.47.60/@comment-22439-20150412185452\nThread:68.145.169.178/@comment-22439-20151216145826\nThread:68.145.72.142/@comment-22439-20150708032711\nThread:68.146.12.101/@comment-22439-20150429023339\nThread:68.146.121.43/@comment-22439-20160320021319\nThread:68.146.180.176/@comment-32769624-20170910034022\nThread:68.146.219.197/@comment-22439-20150910180048\nThread:68.147.216.129/@comment-22439-20150304012705\nThread:68.147.253.67/@comment-22439-20150404174136\nThread:68.147.27.98/@comment-22439-20160617003316\nThread:68.147.68.31/@comment-22439-20150820212346\nThread:68.148.106.117/@comment-22439-20150609050515\nThread:68.148.13.193/@comment-22439-20170311231535\nThread:68.148.188.199/@comment-22439-20160229120641\nThread:68.148.72.31/@comment-22439-20150721154214\nThread:68.149.154.203/@comment-22439-20150826222820\nThread:68.149.172.166/@comment-22439-20150119053055\nThread:68.149.19.244/@comment-22439-20160112022443\nThread:68.15.80.184/@comment-22439-20151009202822\nThread:68.150.13.82/@comment-22439-20161201005956\nThread:68.150.167.0/@comment-22439-20151122021301\nThread:68.151.40.139/@comment-22439-20160214042407\nThread:68.156.159.10/@comment-22439-20170419065616\nThread:68.172.36.25/@comment-22439-20150802021141\nThread:68.180.54.48/@comment-22439-20151113051617\nThread:68.181.206.198/@comment-22439-20151211091106\nThread:68.184.82.229/@comment-22439-20161231051837\nThread:68.185.195.167/@comment-22439-20150101170115\nThread:68.185.208.156/@comment-22439-20150505192025\nThread:68.186.18.233/@comment-22439-20150509181037\nThread:68.186.193.212/@comment-22439-20150503013808\nThread:68.186.49.179/@comment-22439-20150207033502\nThread:68.186.99.18/@comment-22439-20150531045012\nThread:68.187.181.113/@comment-22439-20150720143543\nThread:68.187.65.63/@comment-22439-20150719172527\nThread:68.187.89.63/@comment-22439-20170719050702\nThread:68.189.254.244/@comment-22439-20151201181044\nThread:68.189.72.32/@comment-22439-20160704025427\nThread:68.190.157.134/@comment-32769624-20170827025603\nThread:68.190.163.153/@comment-22439-20170424224728\nThread:68.190.191.61/@comment-22439-20160312041828\nThread:68.191.44.201/@comment-22439-20160820023048\nThread:68.194.33.253/@comment-22439-20170711213128\nThread:68.197.163.121/@comment-22439-20150429225059\nThread:68.199.182.232/@comment-22439-20150728130018\nThread:68.199.33.191/@comment-22439-20150425024120\nThread:68.2.189.249/@comment-22439-20170427031319\nThread:68.2.20.139/@comment-22439-20170105152959\nThread:68.2.203.84/@comment-22439-20150508171948\nThread:68.2.237.21/@comment-22439-20170412153103\nThread:68.2.60.24/@comment-22439-20150927035519\nThread:68.2.97.86/@comment-22439-20170418064550\nThread:68.202.126.230/@comment-32769624-20170905055547\nThread:68.202.23.19/@comment-22439-20150712190433\nThread:68.203.15.193/@comment-22439-20170627125451\nThread:68.203.194.228/@comment-22439-20170115132213\nThread:68.203.21.99/@comment-22439-20150320141542\nThread:68.203.23.238/@comment-22439-20161110155224\nThread:68.204.186.139/@comment-22439-20141218150544\nThread:68.205.182.114/@comment-22439-20170218051643\nThread:68.205.94.95/@comment-22439-20160730165706\nThread:68.217.207.134/@comment-22439-20151229023519\nThread:68.224.129.28/@comment-22439-20150119232926\nThread:68.224.193.99/@comment-22439-20150721020610\nThread:68.224.239.130/@comment-22439-20150613185606\nThread:68.225.170.238/@comment-22439-20150701092313\nThread:68.225.207.50/@comment-22439-20160210151742\nThread:68.225.238.60/@comment-22439-20160802185021\nThread:68.226.181.152/@comment-22439-20150928105631\nThread:68.226.6.218/@comment-22439-20150517010636\nThread:68.227.123.98/@comment-22439-20150406021504\nThread:68.227.171.172/@comment-32769624-20170829032224\nThread:68.227.184.60/@comment-22439-20150210050516\nThread:68.228.245.57/@comment-22439-20170420223425\nThread:68.228.30.142/@comment-22439-20150402033816\nThread:68.230.93.94/@comment-22439-20150116002207\nThread:68.230.98.108/@comment-22439-20150207152047\nThread:68.231.187.34/@comment-22439-20151202200949\nThread:68.231.58.91/@comment-22439-20150316091548\nThread:68.231.64.187/@comment-22439-20170303230703\nThread:68.232.90.144/@comment-22439-20150629042112\nThread:68.235.174.86/@comment-22439-20150206025324\nThread:68.235.233.164/@comment-22439-20150523204632\nThread:68.238.154.135/@comment-22439-20150518001218\nThread:68.238.154.65/@comment-22439-20150608090341\nThread:68.238.241.131/@comment-22439-20160105011740\nThread:68.3.151.55/@comment-22439-20150916214646\nThread:68.32.191.33/@comment-22439-20170401201735\nThread:68.36.105.230/@comment-22439-20160819082737\nThread:68.36.18.160/@comment-22439-20160913174131\nThread:68.36.47.66/@comment-22439-20160821024856\nThread:68.36.59.16/@comment-22439-20150313200027\nThread:68.37.167.4/@comment-22439-20150213122435\nThread:68.37.222.80/@comment-22439-20150621222523\nThread:68.38.133.152/@comment-22439-20150513003157\nThread:68.38.237.139/@comment-22439-20141205071629\nThread:68.39.110.18/@comment-22439-20150314125820\nThread:68.39.115.18/@comment-22439-20150929050012\nThread:68.39.155.229/@comment-22439-20160412022958\nThread:68.4.190.124/@comment-22439-20170518045843\nThread:68.40.124.52/@comment-22439-20160102044146\nThread:68.40.212.252/@comment-22439-20160612221012\nThread:68.41.87.66/@comment-22439-20160502135834\nThread:68.42.0.41/@comment-22439-20150925060355\nThread:68.44.193.209/@comment-22439-20170427003106\nThread:68.46.7.130/@comment-22439-20160104224148\nThread:68.47.185.182/@comment-22439-20150426011542\nThread:68.48.31.105/@comment-22439-20140928215042\nThread:68.48.96.75/@comment-22439-20150621075533\nThread:68.49.122.15/@comment-22439-20160113003746\nThread:68.49.171.49/@comment-22439-20170117051801\nThread:68.50.154.36/@comment-22439-20160220033244\nThread:68.52.237.102/@comment-22439-20150816051859\nThread:68.53.40.192/@comment-22439-20150119053214\nThread:68.53.41.140/@comment-22439-20160617191237\nThread:68.54.160.158/@comment-22439-20150125134754\nThread:68.57.114.109/@comment-22439-20150114233926\nThread:68.57.186.228/@comment-22439-20160225163551\nThread:68.58.110.250/@comment-22439-20170111020132\nThread:68.59.100.11/@comment-22439-20150508234133\nThread:68.59.200.96/@comment-22439-20170524210523\nThread:68.6.124.74/@comment-22439-20141227002135\nThread:68.6.164.27/@comment-22439-20150606214801\nThread:68.60.42.95/@comment-22439-20160703045858\nThread:68.61.65.248/@comment-22439-20161227095738\nThread:68.62.76.55/@comment-22439-20160211135141\nThread:68.63.143.240/@comment-22439-20150420011045\nThread:68.69.150.22/@comment-22439-20150809180246\nThread:68.7.136.232/@comment-22439-20141111225104\nThread:68.7.174.60/@comment-22439-20150517170957\nThread:68.7.219.179/@comment-22439-20151018211610\nThread:68.7.88.175/@comment-22439-20151015205054\nThread:68.70.4.213/@comment-22439-20170205031750\nThread:68.71.31.46/@comment-22439-20150924165154\nThread:68.80.135.163/@comment-22439-20150328171822\nThread:68.81.3.221/@comment-22439-20141118000439\nThread:68.83.116.126/@comment-22439-20150823034501\nThread:68.84.254.127/@comment-22439-20150407031317\nThread:68.9.137.94/@comment-22439-20170704065433\nThread:68.9.215.6/@comment-22439-20150913201217\nThread:68.96.93.199/@comment-22439-20150508080918\nThread:68.97.224.159/@comment-22439-20160530031950\nThread:68.97.23.141/@comment-22439-20150821235847\nThread:68.97.27.130/@comment-22439-20160829103302\nThread:68.97.32.160/@comment-22439-20150119081023\nThread:68.97.70.132/@comment-22439-20160906212732\nThread:68.97.91.121/@comment-22439-20150826052523\nThread:68.98.207.36/@comment-22439-20150821164721\nThread:68.98.28.9/@comment-22439-20150902043421\nThread:68.98.94.249/@comment-22439-20161019171534\nThread:68.99.148.100/@comment-22439-20160215163947\nThread:69.10.114.39/@comment-22439-20170422235952\nThread:69.10.163.63/@comment-22439-20160314235537\nThread:69.11.148.197/@comment-22439-20150814024334\nThread:69.11.148.224/@comment-22439-20160218044504\nThread:69.11.150.23/@comment-22439-20160721194806\nThread:69.11.36.67/@comment-22439-20151223095539\nThread:69.115.181.180/@comment-22439-20150102072106\nThread:69.117.113.121/@comment-22439-20170107220836\nThread:69.117.139.166/@comment-22439-20150410214629\nThread:69.117.145.212/@comment-22439-20140622231136\nThread:69.119.152.145/@comment-22439-20150414044337\nThread:69.119.65.84/@comment-22439-20141005153124\nThread:69.120.80.62/@comment-22439-20161029210830\nThread:69.121.65.134/@comment-22439-20141229015629\nThread:69.122.71.238/@comment-22439-20150524204528\nThread:69.123.253.204/@comment-22439-20151001044719\nThread:69.125.156.220/@comment-22439-20150210024036\nThread:69.126.215.222/@comment-22439-20150420030519\nThread:69.127.102.167/@comment-22439-20141005041857\nThread:69.129.144.208/@comment-22439-20150110061402\nThread:69.137.151.88/@comment-22439-20151212191012\nThread:69.137.201.96/@comment-22439-20141026213446\nThread:69.137.46.160/@comment-22439-20150714184645\nThread:69.139.95.120/@comment-22439-20170713034743\nThread:69.14.53.150/@comment-22439-20160823032520\nThread:69.140.3.215/@comment-22439-20130317073835\nThread:69.141.172.169/@comment-22439-20150924184710\nThread:69.142.130.220/@comment-22439-20150625170403\nThread:69.143.103.65/@comment-22439-20160203192746\nThread:69.143.202.5/@comment-22439-20150703175146\nThread:69.144.110.181/@comment-22439-20150618034111\nThread:69.144.25.141/@comment-22439-20170120051337\nThread:69.146.78.63/@comment-22439-20150331140049\nThread:69.156.28.65/@comment-22439-20160424151401\nThread:69.157.147.240/@comment-22439-20151026200231\nThread:69.159.13.145/@comment-22439-20170413111216\nThread:69.159.202.165/@comment-22439-20150407182549\nThread:69.159.59.118/@comment-22439-20160615212649\nThread:69.165.140.155/@comment-22439-20150422200321\nThread:69.166.47.134/@comment-22439-20160916141529\nThread:69.172.149.42/@comment-22439-20150316010621\nThread:69.172.164.187/@comment-22439-20150308194352\nThread:69.178.208.220/@comment-22439-20150820121241\nThread:69.178.7.165/@comment-22439-20151202102657\nThread:69.178.9.54/@comment-22439-20160109201836\nThread:69.180.155.90/@comment-22439-20170112004505\nThread:69.180.44.158/@comment-22439-20150906191236\nThread:69.180.80.216/@comment-22439-20141208012512\nThread:69.181.60.198/@comment-22439-20160201204055\nThread:69.193.69.78/@comment-22439-20170110200035\nThread:69.196.162.221/@comment-22439-20150106183032\nThread:69.204.184.4/@comment-22439-20151029023054\nThread:69.204.191.197/@comment-22439-20150204183348\nThread:69.206.144.189/@comment-22439-20150531044051\nThread:69.242.200.158/@comment-22439-20150319234102\nThread:69.242.45.188/@comment-22439-20150607140523\nThread:69.245.154.200/@comment-22439-20150109184233\nThread:69.246.98.189/@comment-22439-20160111052751\nThread:69.248.222.96/@comment-22439-20150308181719\nThread:69.25.45.6/@comment-22439-20150401193143\nThread:69.250.13.61/@comment-22439-20150321232525\nThread:69.253.20.11/@comment-22439-20150228012131\nThread:69.253.84.176/@comment-22439-20170124000722\nThread:69.255.129.8/@comment-22439-20160103013227\nThread:69.255.206.29/@comment-22439-20150309213545\nThread:69.255.71.15/@comment-22439-20151018135810\nThread:69.29.216.198/@comment-22439-20150826024108\nThread:69.29.255.59/@comment-22439-20160307234302\nThread:69.39.14.178/@comment-22439-20160902202829\nThread:69.4.101.112/@comment-22439-20150310000010\nThread:69.40.70.1/@comment-22439-20151225190551\nThread:69.5.224.188/@comment-22439-20150504214240\nThread:69.50.163.228/@comment-22439-20150606060143\nThread:69.56.101.67/@comment-22439-20150416010151\nThread:69.70.13.118/@comment-22439-20150803180919\nThread:69.73.10.17/@comment-22439-20150506203643\nThread:69.73.60.87/@comment-22439-20161230070740\nThread:69.74.29.254/@comment-22439-20150123062507\nThread:69.76.18.215/@comment-22439-20160201052723\nThread:69.84.108.78/@comment-22439-20150408172424\nThread:69.85.207.245/@comment-22439-20160328163514\nThread:69.85.216.162/@comment-22439-20150121103704\nThread:69.91.139.151/@comment-22439-20151203003051\nThread:69.91.64.202/@comment-22439-20161001040157\nThread:69.91.64.202/@comment-5959508-20161001080415\nThread:69.92.166.111/@comment-22439-20150825061339\nThread:69.92.168.21/@comment-22439-20160607024213\nThread:69.92.188.170/@comment-22439-20150728235535\nThread:69.92.69.114/@comment-22439-20160602164359\nThread:69.92.88.178/@comment-22439-20160612214416\nThread:6 Xero 9/@comment-2155082-20150720212111\nThread:6 Xero 9/@comment-2155082-20150720212111/@comment-4555143-20150720212227\nThread:70.105.176.176/@comment-32769624-20170818232726\nThread:70.106.228.82/@comment-22439-20150731000328\nThread:70.109.180.228/@comment-22439-20140924004208\nThread:70.112.233.147/@comment-22439-20150402074840\nThread:70.113.180.72/@comment-22439-20151219222101\nThread:70.113.24.174/@comment-22439-20150313054625\nThread:70.113.33.176/@comment-22439-20161020011924\nThread:70.113.58.190/@comment-22439-20150519041747\nThread:70.114.172.218/@comment-22439-20160103072403\nThread:70.114.176.75/@comment-22439-20150427040510\nThread:70.114.225.55/@comment-22439-20150112181118\nThread:70.115.132.127/@comment-22439-20151023211122\nThread:70.115.15.126/@comment-22439-20150605025956\nThread:70.115.192.49/@comment-22439-20151121183340\nThread:70.117.97.13/@comment-22439-20150316092815\nThread:70.119.139.111/@comment-22439-20150615204947\nThread:70.122.217.227/@comment-22439-20141218091632\nThread:70.122.220.123/@comment-22439-20170704082537\nThread:70.123.111.143/@comment-22439-20141230234323\nThread:70.123.124.151/@comment-22439-20150118230917\nThread:70.123.197.42/@comment-22439-20150107163317\nThread:70.124.63.78/@comment-22439-20170128233625\nThread:70.126.167.133/@comment-22439-20150727013312\nThread:70.127.191.90/@comment-22439-20160121075251\nThread:70.127.196.140/@comment-22439-20140522111723\nThread:70.138.193.222/@comment-22439-20151027193153\nThread:70.138.97.190/@comment-22439-20160222095749\nThread:70.139.211.38/@comment-22439-20170503032610\nThread:70.140.39.131/@comment-22439-20160128113554\nThread:70.15.178.195/@comment-22439-20150928232619\nThread:70.15.250.41/@comment-22439-20151019181311\nThread:70.160.108.1/@comment-22439-20150815022029\nThread:70.160.78.44/@comment-22439-20150902022642\nThread:70.161.131.198/@comment-22439-20150201135127\nThread:70.161.136.112/@comment-22439-20150101141259\nThread:70.162.83.20/@comment-22439-20150909115039\nThread:70.164.99.62/@comment-22439-20150508210000\nThread:70.167.57.234/@comment-22439-20150611195319\nThread:70.171.11.149/@comment-22439-20160901014718\nThread:70.171.48.59/@comment-22439-20160713232030\nThread:70.171.49.137/@comment-22439-20141221090739\nThread:70.173.1.224/@comment-22439-20150404061506\nThread:70.173.129.249/@comment-22439-20151118163629\nThread:70.176.249.91/@comment-22439-20161121235704\nThread:70.176.25.142/@comment-22439-20151103011311\nThread:70.176.56.155/@comment-22439-20170428031722\nThread:70.177.123.20/@comment-22439-20160104013108\nThread:70.177.141.251/@comment-22439-20160910022137\nThread:70.177.228.111/@comment-22439-20150704223719\nThread:70.177.27.217/@comment-22439-20160113152734\nThread:70.177.9.11/@comment-22439-20151008230227\nThread:70.179.129.16/@comment-22439-20141217114628\nThread:70.179.144.147/@comment-22439-20151219014417\nThread:70.179.178.5/@comment-22439-20151013204245\nThread:70.179.48.49/@comment-22439-20150427210804\nThread:70.180.91.46/@comment-22439-20160905165015\nThread:70.181.112.128/@comment-22439-20160301211938\nThread:70.181.160.186/@comment-22439-20170120194102\nThread:70.181.224.118/@comment-22439-20170627145613\nThread:70.181.57.111/@comment-22439-20151216080955\nThread:70.183.187.209/@comment-22439-20150729051640\nThread:70.186.169.231/@comment-22439-20151003192611\nThread:70.187.151.32/@comment-22439-20150906143305\nThread:70.189.158.152/@comment-22439-20170210020207\nThread:70.189.209.176/@comment-22439-20151206140327\nThread:70.189.80.37/@comment-22439-20161030163432\nThread:70.191.166.223/@comment-22439-20141231063052\nThread:70.191.175.243/@comment-22439-20150128042632\nThread:70.191.176.34/@comment-22439-20160920155531\nThread:70.191.181.40/@comment-22439-20160323143828\nThread:70.191.82.171/@comment-22439-20160910064213\nThread:70.192.133.123/@comment-22439-20141222072409\nThread:70.192.140.186/@comment-22439-20151114011910\nThread:70.192.205.38/@comment-22439-20160610045858\nThread:70.193.102.235/@comment-22439-20160509003056\nThread:70.193.16.117/@comment-22439-20150113212137\nThread:70.193.16.28/@comment-22439-20150203190132\nThread:70.193.16.46/@comment-22439-20150114134046\nThread:70.193.165.52/@comment-22439-20150125133223\nThread:70.193.69.194/@comment-22439-20150227145723\nThread:70.194.1.238/@comment-22439-20150131065100\nThread:70.194.128.89/@comment-22439-20150212230804\nThread:70.194.229.46/@comment-22439-20141224195958\nThread:70.194.24.65/@comment-22439-20170125030326\nThread:70.194.3.217/@comment-22439-20150118201411\nThread:70.194.6.20/@comment-22439-20160726075301\nThread:70.194.7.140/@comment-22439-20150114035449\nThread:70.195.192.120/@comment-22439-20150611122244\nThread:70.195.6.123/@comment-22439-20150101164636\nThread:70.196.132.123/@comment-22439-20150613221656\nThread:70.197.197.172/@comment-22439-20150201101218\nThread:70.198.65.215/@comment-22439-20150928145149\nThread:70.198.66.150/@comment-22439-20151215170121\nThread:70.198.68.231/@comment-22439-20151231142033\nThread:70.198.70.123/@comment-22439-20151123151941\nThread:70.198.70.236/@comment-22439-20151016185512\nThread:70.198.71.214/@comment-22439-20151230144144\nThread:70.198.71.44/@comment-22439-20151001125350\nThread:70.198.72.113/@comment-22439-20151020135937\nThread:70.198.72.154/@comment-22439-20151014134147\nThread:70.198.73.202/@comment-22439-20150321021522\nThread:70.198.73.224/@comment-22439-20150731132439\nThread:70.198.76.164/@comment-22439-20151028195432\nThread:70.198.76.181/@comment-22439-20150928195004\nThread:70.198.76.215/@comment-22439-20151002172502\nThread:70.198.76.29/@comment-22439-20151217202743\nThread:70.198.77.37/@comment-22439-20150805141301\nThread:70.199.128.44/@comment-22439-20150116082112\nThread:70.199.148.185/@comment-22439-20160105185536\nThread:70.199.3.137/@comment-22439-20150409132302\nThread:70.199.67.230/@comment-22439-20150108104542\nThread:70.208.230.139/@comment-22439-20150104104738\nThread:70.209.141.58/@comment-22439-20160914215548\nThread:70.210.65.232/@comment-22439-20160702180825\nThread:70.210.67.241/@comment-22439-20160705212559\nThread:70.214.32.228/@comment-22439-20170207195659\nThread:70.24.59.239/@comment-22439-20161006015126\nThread:70.25.67.73/@comment-22439-20160710114828\nThread:70.27.240.162/@comment-22439-20150223170246\nThread:70.27.84.212/@comment-22439-20160809023215\nThread:70.30.80.224/@comment-22439-20151217193122\nThread:70.30.82.255/@comment-22439-20151022001301\nThread:70.30.83.108/@comment-22439-20141223042209\nThread:70.31.81.0/@comment-22439-20150331043038\nThread:70.33.54.210/@comment-22439-20151216060936\nThread:70.39.7.237/@comment-22439-20170404075712\nThread:70.48.61.14/@comment-22439-20151110212847\nThread:70.49.109.89/@comment-22439-20160928040849\nThread:70.49.162.9/@comment-22439-20170704125450\nThread:70.49.167.148/@comment-22439-20160822090844\nThread:70.50.149.162/@comment-22439-20161108220906\nThread:70.50.2.237/@comment-22439-20150924024156\nThread:70.53.197.246/@comment-22439-20151220220902\nThread:70.54.117.31/@comment-22439-20150526144724\nThread:70.54.137.215/@comment-22439-20150531084239\nThread:70.54.139.23/@comment-22439-20150423231815\nThread:70.54.47.154/@comment-22439-20151001224436\nThread:70.55.140.32/@comment-22439-20160511161543\nThread:70.62.235.242/@comment-22439-20160225043817\nThread:70.64.153.71/@comment-22439-20150121114811\nThread:70.64.201.170/@comment-22439-20160606035008\nThread:70.65.218.61/@comment-22439-20150402232001\nThread:70.67.221.124/@comment-22439-20161127001443\nThread:70.67.79.38/@comment-22439-20150726044726\nThread:70.68.14.60/@comment-22439-20170802043938\nThread:70.68.43.197/@comment-22439-20150117051147\nThread:70.68.65.72/@comment-22439-20151023202722\nThread:70.69.0.45/@comment-22439-20160122042545\nThread:70.69.170.20/@comment-22439-20150415011204\nThread:70.69.172.43/@comment-22439-20151218133451\nThread:70.69.24.137/@comment-22439-20170507220416\nThread:70.70.150.160/@comment-22439-20160909233457\nThread:70.71.131.151/@comment-22439-20150214183327\nThread:70.71.243.188/@comment-22439-20170428064312\nThread:70.72.20.206/@comment-22439-20160115100333\nThread:70.72.236.68/@comment-22439-20141205142833\nThread:70.72.46.245/@comment-22439-20141129212710\nThread:70.73.57.13/@comment-22439-20160924063811\nThread:70.73.69.16/@comment-22439-20150307032427\nThread:70.74.166.173/@comment-22439-20141231230154\nThread:70.74.188.18/@comment-22439-20150619182544\nThread:70.74.249.36/@comment-22439-20150303133657\nThread:70.77.49.115/@comment-22439-20170122051922\nThread:70.77.52.227/@comment-22439-20160802052348\nThread:70.77.56.238/@comment-22439-20170202013853\nThread:70.77.56.28/@comment-22439-20170213173001\nThread:70.78.139.111/@comment-22439-20170322032707\nThread:70.78.210.95/@comment-22439-20150419073245\nThread:70.79.185.86/@comment-22439-20160519012125\nThread:70.81.129.24/@comment-22439-20151021131112\nThread:70.81.138.13/@comment-22439-20150718024612\nThread:70.81.172.206/@comment-22439-20141222161037\nThread:70.91.201.82/@comment-32769624-20170906181745\nThread:70.92.188.149/@comment-22439-20160223015850\nThread:70.93.34.35/@comment-22439-20160723032232\nThread:70.94.105.151/@comment-22439-20170111173646\nThread:70.94.8.80/@comment-22439-20150402031342\nThread:70.95.141.87/@comment-22439-20161219212421\nThread:70.98.52.58/@comment-32769624-20170818223811\nThread:71.0.105.77/@comment-22439-20151126120117\nThread:71.0.188.132/@comment-22439-20170320134241\nThread:71.10.143.212/@comment-22439-20160609181844\nThread:71.10.148.215/@comment-22439-20141103020803\nThread:71.10.90.94/@comment-22439-20170109233609\nThread:71.102.210.73/@comment-22439-20151218060937\nThread:71.104.58.19/@comment-22439-20150317235929\nThread:71.108.37.140/@comment-22439-20150701024624\nThread:71.11.106.184/@comment-22439-20170718022122\nThread:71.114.112.105/@comment-22439-20160820160128\nThread:71.114.112.182/@comment-22439-20160824040849\nThread:71.114.112.198/@comment-22439-20150801230332\nThread:71.114.112.234/@comment-22439-20150819002814\nThread:71.114.112.90/@comment-22439-20160823020227\nThread:71.114.98.189/@comment-22439-20150128171311\nThread:71.117.153.27/@comment-22439-20160910235326\nThread:71.119.87.114/@comment-22439-20150515221959\nThread:71.120.217.51/@comment-22439-20150803212513\nThread:71.123.142.45/@comment-22439-20150306191645\nThread:71.123.165.249/@comment-22439-20150808043321\nThread:71.125.245.12/@comment-22439-20150726060535\nThread:71.125.248.215/@comment-22439-20150527233956\nThread:71.125.248.67/@comment-22439-20150308210454\nThread:71.13.214.151/@comment-22439-20160621055726\nThread:71.13.23.42/@comment-22439-20170114233922\nThread:71.14.131.130/@comment-22439-20161221040754\nThread:71.14.212.34/@comment-22439-20160229144010\nThread:71.14.76.214/@comment-22439-20150627083857\nThread:71.145.207.43/@comment-22439-20150609223500\nThread:71.145.208.121/@comment-22439-20150711023749\nThread:71.15.15.55/@comment-22439-20150213225239\nThread:71.15.192.118/@comment-22439-20160114083942\nThread:71.161.65.133/@comment-22439-20151202235959\nThread:71.162.254.15/@comment-22439-20151228092713\nThread:71.163.189.146/@comment-22439-20141112155634\nThread:71.163.21.98/@comment-22439-20151227170536\nThread:71.163.99.220/@comment-22439-20170408170035\nThread:71.164.113.67/@comment-22439-20150724013039\nThread:71.164.172.66/@comment-22439-20150616154806\nThread:71.164.96.187/@comment-22439-20150707183731\nThread:71.164.97.184/@comment-22439-20150707030733\nThread:71.165.145.108/@comment-22439-20151219204223\nThread:71.17.149.133/@comment-22439-20150205195945\nThread:71.17.244.202/@comment-22439-20160409003530\nThread:71.172.156.180/@comment-22439-20150905151140\nThread:71.174.108.102/@comment-22439-20170601082401\nThread:71.174.7.65/@comment-22439-20150724033149\nThread:71.175.97.11/@comment-22439-20151113224518\nThread:71.176.76.218/@comment-22439-20150114122205\nThread:71.177.100.155/@comment-22439-20160531165243\nThread:71.178.30.105/@comment-22439-20140914122951\nThread:71.179.25.28/@comment-22439-20160519164719\nThread:71.179.9.18/@comment-22439-20150111124943\nThread:71.180.180.109/@comment-22439-20150511053357\nThread:71.180.64.90/@comment-22439-20150211193806\nThread:71.184.155.170/@comment-122.57.114.143-20140817105847\nThread:71.184.228.240/@comment-22439-20160208185704\nThread:71.184.251.177/@comment-22439-20150416043818\nThread:71.185.225.61/@comment-22439-20150207093747\nThread:71.185.28.177/@comment-22439-20150706221045\nThread:71.185.36.203/@comment-22439-20150415222545\nThread:71.19.191.130/@comment-22439-20170109150600\nThread:71.190.237.174/@comment-22439-20170430202020\nThread:71.191.88.208/@comment-22439-20141115035946\nThread:71.192.234.73/@comment-22439-20150813221320\nThread:71.194.44.102/@comment-22439-20170208191544\nThread:71.194.66.202/@comment-22439-20160901051518\nThread:71.194.78.95/@comment-22439-20150125121740\nThread:71.194.79.82/@comment-22439-20150701184920\nThread:71.195.42.175/@comment-22439-20141211050438\nThread:71.195.74.180/@comment-22439-20141219031655\nThread:71.195.96.161/@comment-22439-20141231073356\nThread:71.196.132.110/@comment-22439-20151224034614\nThread:71.196.203.39/@comment-22439-20150123020406\nThread:71.197.134.170/@comment-22439-20150209085521\nThread:71.198.118.111/@comment-22439-20150317092459\nThread:71.198.193.87/@comment-22439-20141110093850\nThread:71.199.250.29/@comment-22439-20170501060037\nThread:71.2.247.208/@comment-22439-20160220010100\nThread:71.20.209.25/@comment-22439-20150726014837\nThread:71.20.255.252/@comment-22439-20150114131649\nThread:71.20.9.94/@comment-22439-20150212183447\nThread:71.201.38.235/@comment-22439-20150907160901\nThread:71.202.108.210/@comment-22439-20141219003834\nThread:71.202.183.229/@comment-22439-20150920085136\nThread:71.202.215.29/@comment-22439-20141230001516\nThread:71.202.29.10/@comment-22439-20150916073542\nThread:71.204.148.157/@comment-22439-20150428040228\nThread:71.205.105.177/@comment-22439-20170509023421\nThread:71.205.128.155/@comment-22439-20151129232958\nThread:71.205.136.174/@comment-22439-20150717194205\nThread:71.205.222.174/@comment-22439-20160121011522\nThread:71.206.0.14/@comment-22439-20150119011151\nThread:71.206.159.168/@comment-22439-20160212050005\nThread:71.206.31.237/@comment-22439-20150216022021\nThread:71.21.3.159/@comment-22439-20150121120056\nThread:71.211.177.73/@comment-22439-20151106220217\nThread:71.211.255.92/@comment-22439-20150321052202\nThread:71.211.97.25/@comment-22439-20150408184941\nThread:71.215.49.24/@comment-22439-20141222072751\nThread:71.217.112.241/@comment-22439-20150307020035\nThread:71.219.214.20/@comment-22439-20170109020000\nThread:71.220.182.204/@comment-22439-20150901205050\nThread:71.222.113.251/@comment-22439-20150414095122\nThread:71.224.126.237/@comment-22439-20170421220054\nThread:71.226.45.144/@comment-22439-20150504002033\nThread:71.227.0.131/@comment-22439-20150106030913\nThread:71.227.133.181/@comment-22439-20150802013400\nThread:71.227.156.140/@comment-22439-20150603032017\nThread:71.227.176.100/@comment-22439-20150719095720\nThread:71.228.124.253/@comment-22439-20150213160018\nThread:71.228.151.147/@comment-22439-20141218085659\nThread:71.229.151.228/@comment-22439-20160330064306\nThread:71.229.195.220/@comment-22439-20150702161830\nThread:71.229.247.47/@comment-22439-20140925202535\nThread:71.231.12.141/@comment-22439-20150705084615\nThread:71.231.185.222/@comment-22439-20140907035155\nThread:71.231.50.26/@comment-22439-20151026060836\nThread:71.232.197.115/@comment-22439-20160831214316\nThread:71.232.241.210/@comment-22439-20170516054947\nThread:71.233.88.91/@comment-22439-20160523183021\nThread:71.235.240.105/@comment-22439-20151111210943\nThread:71.236.143.150/@comment-22439-20151220070320\nThread:71.236.215.81/@comment-22439-20170208034125\nThread:71.236.251.12/@comment-22439-20160228042340\nThread:71.237.103.217/@comment-22439-20170110001050\nThread:71.237.122.197/@comment-22439-20160306222802\nThread:71.237.126.192/@comment-22439-20160327230445\nThread:71.237.162.111/@comment-22439-20161118022712\nThread:71.237.56.170/@comment-22439-20150405163453\nThread:71.237.73.209/@comment-22439-20161111082418\nThread:71.238.112.64/@comment-22439-20170103011942\nThread:71.238.35.118/@comment-22439-20151129233314\nThread:71.244.135.104/@comment-22439-20141116061028\nThread:71.244.203.231/@comment-22439-20150609230219\nThread:71.244.249.123/@comment-22439-20160125220607\nThread:71.245.80.141/@comment-22439-20150119070549\nThread:71.251.56.156/@comment-22439-20150328230737\nThread:71.252.162.220/@comment-22439-20150107051752\nThread:71.255.117.191/@comment-22439-20170422184647\nThread:71.28.204.115/@comment-22439-20150723133813\nThread:71.29.203.162/@comment-22439-20150505184454\nThread:71.3.77.160/@comment-22439-20140924030618\nThread:71.31.6.88/@comment-22439-20150103084226\nThread:71.33.184.92/@comment-22439-20150721063629\nThread:71.34.130.9/@comment-22439-20150721053306\nThread:71.35.180.101/@comment-22439-20160913205835\nThread:71.38.73.114/@comment-32769624-20170904082518\nThread:71.40.21.238/@comment-22439-20151127234243\nThread:71.41.231.28/@comment-22439-20160702155226\nThread:71.42.172.70/@comment-22439-20160109235558\nThread:71.45.31.119/@comment-22439-20150526160916\nThread:71.46.56.7/@comment-22439-20150210012914\nThread:71.47.138.52/@comment-22439-20150627005532\nThread:71.47.205.204/@comment-22439-20150120120445\nThread:71.47.27.251/@comment-22439-20150408133017\nThread:71.47.3.48/@comment-22439-20170513180019\nThread:71.49.76.64/@comment-22439-20150321004347\nThread:71.51.221.138/@comment-22439-20141229190805\nThread:71.51.37.51/@comment-22439-20150316042632\nThread:71.53.144.104/@comment-22439-20160216200850\nThread:71.53.148.157/@comment-22439-20151021080625\nThread:71.57.181.142/@comment-22439-20150815200514\nThread:71.59.112.131/@comment-22439-20150901174647\nThread:71.59.203.250/@comment-22439-20161202050921\nThread:71.59.226.75/@comment-22439-20150308224728\nThread:71.60.139.59/@comment-22439-20150804125321\nThread:71.60.139.59/@comment-26748640-20150805073317\nThread:71.60.253.115/@comment-22439-20161029211624\nThread:71.62.122.23/@comment-22439-20160301123820\nThread:71.63.45.228/@comment-22439-20151215222250\nThread:71.63.99.146/@comment-22439-20170208031526\nThread:71.65.58.72/@comment-22439-20151217053432\nThread:71.65.87.64/@comment-22439-20160531014625\nThread:71.67.161.171/@comment-22439-20150611010534\nThread:71.71.201.56/@comment-22439-20160801102120\nThread:71.75.153.69/@comment-22439-20150107192350\nThread:71.76.244.78/@comment-22439-20151014001956\nThread:71.77.2.91/@comment-22439-20150426104157\nThread:71.77.207.83/@comment-22439-20150320222059\nThread:71.79.238.64/@comment-22439-20170324084904\nThread:71.79.94.185/@comment-22439-20150804194713\nThread:71.8.139.216/@comment-22439-20161009175757\nThread:71.8.80.51/@comment-22439-20161024223943\nThread:71.81.200.5/@comment-22439-20160130155148\nThread:71.82.114.224/@comment-22439-20151230172839\nThread:71.82.56.17/@comment-22439-20160920160324\nThread:71.83.162.87/@comment-22439-20150302174622\nThread:71.84.127.154/@comment-22439-20151101062332\nThread:71.84.13.67/@comment-22439-20150112005744\nThread:71.84.60.85/@comment-22439-20160117015408\nThread:71.85.247.75/@comment-22439-20150722020457\nThread:71.85.53.206/@comment-22439-20160806220111\nThread:71.86.236.132/@comment-22439-20170410231423\nThread:71.86.95.130/@comment-22439-20150127123558\nThread:71.86.96.126/@comment-22439-20151229044655\nThread:71.88.114.133/@comment-22439-20150208024330\nThread:71.89.74.119/@comment-22439-20151206040551\nThread:71.89.81.10/@comment-22439-20151202012633\nThread:71.9.149.2/@comment-22439-20170227122615\nThread:71.9.25.119/@comment-22439-20160225133331\nThread:71.90.0.70/@comment-22439-20170520022509\nThread:71.90.103.106/@comment-22439-20151208022110\nThread:71.90.6.118/@comment-22439-20160702153230\nThread:71.90.98.100/@comment-22439-20160511023853\nThread:71.91.113.48/@comment-22439-20160116222737\nThread:71.91.123.27/@comment-4403388-20170812234303\nThread:71.91.156.194/@comment-22439-20160404222554\nThread:71.91.80.103/@comment-22439-20170201201356\nThread:71.92.125.107/@comment-22439-20150108123729\nThread:71.92.98.135/@comment-22439-20150613132321\nThread:71.93.237.247/@comment-22439-20150518024701\nThread:71.93.85.45/@comment-22439-20150826072429\nThread:71.93.99.39/@comment-22439-20150211062225\nThread:71.94.39.143/@comment-22439-20161111223225\nThread:71.95.100.70/@comment-22439-20141123071335\nThread:71.95.2.2/@comment-22439-20170709201512\nThread:71.95.53.222/@comment-22439-20160121045038\nThread:71.96.129.156/@comment-22439-20160605190032\nThread:71.99.142.147/@comment-22439-20160202174641\nThread:71.99.233.93/@comment-22439-20150123084701\nThread:72.10.104.5/@comment-22439-20150312141527\nThread:72.10.219.10/@comment-22439-20150921202659\nThread:72.10.23.143/@comment-22439-20150824213639\nThread:72.130.121.178/@comment-22439-20170106082501\nThread:72.141.246.18/@comment-22439-20170512023108\nThread:72.146.23.169/@comment-22439-20141230185002\nThread:72.146.35.160/@comment-22439-20141226194908\nThread:72.146.40.58/@comment-22439-20150103064745\nThread:72.159.154.164/@comment-22439-20160825175120\nThread:72.160.16.135/@comment-22439-20150202194933\nThread:72.160.227.118/@comment-22439-20160419104646\nThread:72.161.121.196/@comment-22439-20160215184609\nThread:72.161.62.123/@comment-22439-20151104200439\nThread:72.168.144.65/@comment-22439-20170318222945\nThread:72.171.16.60/@comment-22439-20150712065547\nThread:72.172.160.50/@comment-22439-20140903200011\nThread:72.172.170.218/@comment-22439-20170110174914\nThread:72.172.221.234/@comment-22439-20150110033308\nThread:72.173.87.100/@comment-22439-20160307032257\nThread:72.174.136.34/@comment-22439-20150408103150\nThread:72.174.29.33/@comment-22439-20170307043844\nThread:72.174.64.138/@comment-22439-20160201202502\nThread:72.174.78.234/@comment-22439-20161015203941\nThread:72.175.25.157/@comment-22439-20150719203643\nThread:72.177.22.90/@comment-22439-20160920085032\nThread:72.177.253.70/@comment-22439-20141228095840\nThread:72.177.53.221/@comment-22439-20150508001124\nThread:72.178.43.104/@comment-22439-20150412011136\nThread:72.178.66.94/@comment-22439-20150103000942\nThread:72.178.85.113/@comment-22439-20150612043157\nThread:72.179.20.51/@comment-22439-20150829193540\nThread:72.181.180.191/@comment-22439-20150314082029\nThread:72.181.180.23/@comment-22439-20160424164436\nThread:72.181.190.78/@comment-22439-20150304183432\nThread:72.182.123.47/@comment-22439-20150707221236\nThread:72.182.48.193/@comment-22439-20150411014733\nThread:72.182.78.229/@comment-22439-20151003143209\nThread:72.183.238.88/@comment-22439-20160109211457\nThread:72.184.170.224/@comment-22439-20141109031503\nThread:72.184.208.73/@comment-22439-20150414103021\nThread:72.184.96.125/@comment-22439-20160330230104\nThread:72.186.27.21/@comment-22439-20170711203558\nThread:72.188.112.178/@comment-22439-20150326070753\nThread:72.190.126.63/@comment-22439-20150927023954\nThread:72.190.38.202/@comment-22439-20170803172341\nThread:72.190.39.213/@comment-22439-20160116115930\nThread:72.191.1.250/@comment-22439-20151017225413\nThread:72.191.103.175/@comment-22439-20160120031647\nThread:72.191.120.177/@comment-22439-20160830033529\nThread:72.191.48.121/@comment-22439-20151102064117\nThread:72.192.102.108/@comment-22439-20150623212340\nThread:72.192.113.208/@comment-22439-20150322231800\nThread:72.192.216.90/@comment-22439-20160907153248\nThread:72.192.240.102/@comment-22439-20170626211735\nThread:72.193.63.228/@comment-22439-20170316014702\nThread:72.193.8.88/@comment-22439-20150926025957\nThread:72.194.101.88/@comment-22439-20170228081900\nThread:72.194.70.33/@comment-22439-20151026023251\nThread:72.197.1.88/@comment-22439-20170426005602\nThread:72.197.107.6/@comment-22439-20151208013352\nThread:72.197.150.63/@comment-22439-20170717155622\nThread:72.197.152.102/@comment-22439-20150106030846\nThread:72.197.183.91/@comment-22439-20150726012213\nThread:72.197.212.241/@comment-22439-20150130070339\nThread:72.197.241.161/@comment-22439-20150606012145\nThread:72.198.72.86/@comment-22439-20160205071648\nThread:72.199.248.24/@comment-4403388-20170814210654\nThread:72.199.48.244/@comment-22439-20150606080040\nThread:72.20.139.135/@comment-22439-20150124125123\nThread:72.200.109.110/@comment-22439-20150120081739\nThread:72.200.116.46/@comment-22439-20150223024938\nThread:72.200.58.195/@comment-22439-20150806015725\nThread:72.201.121.214/@comment-22439-20150724190418\nThread:72.205.222.189/@comment-22439-20141011210113\nThread:72.207.103.59/@comment-22439-20141221013344\nThread:72.207.27.194/@comment-22439-20150821013112\nThread:72.208.120.170/@comment-22439-20141230052731\nThread:72.208.16.243/@comment-22439-20170503174504\nThread:72.208.168.109/@comment-22439-20161230024248\nThread:72.208.229.127/@comment-22439-20160428024914\nThread:72.209.164.79/@comment-22439-20141014115938\nThread:72.21.196.64/@comment-22439-20160901042342\nThread:72.21.196.70/@comment-22439-20160902060614\nThread:72.211.212.172/@comment-22439-20141017005329\nThread:72.213.48.222/@comment-22439-20170514233446\nThread:72.213.50.31/@comment-22439-20161101054639\nThread:72.215.200.154/@comment-22439-20160107181943\nThread:72.216.57.96/@comment-22439-20150403152810\nThread:72.218.38.242/@comment-22439-20150701184240\nThread:72.219.133.170/@comment-22439-20150601142905\nThread:72.219.146.96/@comment-22439-20170130214135\nThread:72.222.168.18/@comment-22439-20170728000748\nThread:72.222.223.41/@comment-22439-20141222010049\nThread:72.223.12.39/@comment-22439-20150408183137\nThread:72.223.34.176/@comment-22439-20150919174035\nThread:72.223.69.120/@comment-22439-20151202172654\nThread:72.224.237.155/@comment-22439-20150305142842\nThread:72.224.253.20/@comment-22439-20150326172740\nThread:72.228.140.157/@comment-22439-20160622014858\nThread:72.228.153.45/@comment-22439-20170711155927\nThread:72.23.117.144/@comment-22439-20151228222927\nThread:72.23.43.102/@comment-22439-20151214200026\nThread:72.23.72.188/@comment-22439-20161202084945\nThread:72.23.86.21/@comment-22439-20161129115537\nThread:72.230.215.231/@comment-22439-20150321035954\nThread:72.230.215.3/@comment-22439-20150410140939\nThread:72.231.199.13/@comment-22439-20160720143332\nThread:72.231.240.219/@comment-22439-20160802072756\nThread:72.231.30.56/@comment-22439-20170420205248\nThread:72.234.156.55/@comment-22439-20160217043011\nThread:72.234.32.209/@comment-22439-20160213212125\nThread:72.235.147.20/@comment-22439-20150509051755\nThread:72.238.113.80/@comment-22439-20160113205032\nThread:72.239.106.15/@comment-22439-20160615141717\nThread:72.239.94.43/@comment-22439-20150313011935\nThread:72.24.136.163/@comment-22439-20141102201105\nThread:72.24.18.61/@comment-22439-20150520211253\nThread:72.241.143.238/@comment-22439-20150406090006\nThread:72.241.153.66/@comment-22439-20160603064727\nThread:72.241.97.180/@comment-22439-20160911161330\nThread:72.251.238.77/@comment-22439-20150619194808\nThread:72.252.181.237/@comment-32769624-20170906135036\nThread:72.253.187.129/@comment-22439-20151104025537\nThread:72.28.184.211/@comment-22439-20150610090900\nThread:72.28.55.220/@comment-22439-20141221232047\nThread:72.34.128.250/@comment-22439-20170424182450\nThread:72.35.114.86/@comment-22439-20170602054744\nThread:72.35.116.10/@comment-22439-20170607070301\nThread:72.38.111.210/@comment-22439-20150312160928\nThread:72.38.126.5/@comment-22439-20160104175554\nThread:72.38.188.26/@comment-22439-20150213193111\nThread:72.39.14.234/@comment-22439-20150528012104\nThread:72.39.181.114/@comment-22439-20160527160331\nThread:72.46.204.151/@comment-22439-20151208184400\nThread:72.46.217.207/@comment-22439-20141004195431\nThread:72.47.70.20/@comment-22439-20150603104429\nThread:72.48.133.74/@comment-22439-20160719001329\nThread:72.48.80.237/@comment-22439-20160701165632\nThread:72.49.147.236/@comment-22439-20160407025505\nThread:72.50.160.247/@comment-22439-20150418033705\nThread:72.64.224.77/@comment-22439-20160105041701\nThread:72.65.124.226/@comment-22439-20141222023957\nThread:72.66.98.147/@comment-22439-20160607223228\nThread:72.69.82.13/@comment-22439-20160224202339\nThread:72.71.205.88/@comment-22439-20150208081443\nThread:72.76.202.148/@comment-22439-20160925051452\nThread:72.78.102.196/@comment-22439-20150606202626\nThread:72.78.110.173/@comment-22439-20150110031630\nThread:72.83.158.83/@comment-22439-20141231024345\nThread:72.84.125.109/@comment-22439-20150608054911\nThread:72.87.140.105/@comment-22439-20151221055919\nThread:72.88.122.41/@comment-22439-20170110073532\nThread:72.9.12.89/@comment-22439-20151216041244\nThread:72.91.179.207/@comment-22439-20150403190929\nThread:72.91.28.72/@comment-22439-20150106072557\nThread:72.93.56.10/@comment-22439-20160215062709\nThread:72.94.160.35/@comment-22439-20141221133905\nThread:72.94.83.23/@comment-22439-20160805105407\nThread:72.95.230.159/@comment-22439-20160906020512\nThread:73.0.191.252/@comment-22439-20150817131132\nThread:73.0.4.32/@comment-22439-20141229073654\nThread:73.1.55.15/@comment-22439-20150809015019\nThread:73.10.181.94/@comment-22439-20150919145134\nThread:73.10.190.96/@comment-22439-20150601135839\nThread:73.100.102.213/@comment-32769624-20170818204414\nThread:73.11.1.170/@comment-22439-20150911083040\nThread:73.11.11.40/@comment-22439-20170108230539\nThread:73.11.209.111/@comment-22439-20150726220023\nThread:73.11.47.3/@comment-22439-20150201022202\nThread:73.11.75.115/@comment-22439-20141226144659\nThread:73.115.8.242/@comment-22439-20170329210937\nThread:73.12.120.243/@comment-22439-20160624153946\nThread:73.12.160.229/@comment-22439-20161202050400\nThread:73.12.33.30/@comment-22439-20150901235707\nThread:73.12.9.164/@comment-22439-20170123083847\nThread:73.126.56.46/@comment-22439-20170627021929\nThread:73.13.228.251/@comment-22439-20170206152233\nThread:73.131.200.207/@comment-22439-20151021025244\nThread:73.132.106.180/@comment-22439-20170408123110\nThread:73.134.16.57/@comment-22439-20150726041742\nThread:73.136.229.252/@comment-22439-20170227041829\nThread:73.137.118.192/@comment-22439-20170423194806\nThread:73.137.164.105/@comment-22439-20160106144718\nThread:73.137.89.175/@comment-22439-20170108040049\nThread:73.139.98.168/@comment-22439-20160928024113\nThread:73.14.128.5/@comment-22439-20170115235251\nThread:73.14.173.234/@comment-22439-20161105034113\nThread:73.14.19.202/@comment-22439-20161203192730\nThread:73.14.33.140/@comment-22439-20150128200008\nThread:73.140.157.130/@comment-22439-20151002092045\nThread:73.142.176.57/@comment-22439-20150516190428\nThread:73.142.86.172/@comment-22439-20160201103850\nThread:73.143.82.72/@comment-22439-20160304235225\nThread:73.146.32.4/@comment-22439-20151213180913\nThread:73.15.234.193/@comment-22439-20150125130326\nThread:73.15.64.28/@comment-22439-20170520215658\nThread:73.151.104.224/@comment-22439-20150820205724\nThread:73.153.131.212/@comment-22439-20151217031743\nThread:73.153.133.192/@comment-22439-20160207213428\nThread:73.155.182.193/@comment-22439-20170621035401\nThread:73.157.131.220/@comment-22439-20160219144945\nThread:73.157.212.145/@comment-22439-20160915030018\nThread:73.157.86.62/@comment-22439-20150628152110\nThread:73.159.2.106/@comment-22439-20150616134040\nThread:73.16.151.114/@comment-22439-20150131221504\nThread:73.160.132.64/@comment-32769624-20170829020015\nThread:73.161.166.68/@comment-22439-20141222000557\nThread:73.161.212.80/@comment-22439-20141027231154\nThread:73.162.42.101/@comment-22439-20151120064253\nThread:73.163.191.50/@comment-22439-20150118061811\nThread:73.164.102.35/@comment-22439-20150426014604\nThread:73.164.181.147/@comment-22439-20150417072851\nThread:73.164.211.180/@comment-22439-20150106145642\nThread:73.164.27.197/@comment-22439-20150413051409\nThread:73.164.28.80/@comment-22439-20160416011615\nThread:73.164.77.218/@comment-22439-20170307222652\nThread:73.165.195.226/@comment-22439-20151021011455\nThread:73.166.161.251/@comment-22439-20141009175324\nThread:73.166.224.176/@comment-22439-20150211004542\nThread:73.166.39.18/@comment-22439-20170319164546\nThread:73.169.112.164/@comment-22439-20170116235310\nThread:73.169.142.46/@comment-22439-20150608022738\nThread:73.169.2.23/@comment-22439-20141224041039\nThread:73.169.54.44/@comment-22439-20151213080016\nThread:73.169.64.109/@comment-22439-20160110073647\nThread:73.17.154.140/@comment-22439-20160106181805\nThread:73.171.6.26/@comment-22439-20150424015847\nThread:73.172.132.137/@comment-22439-20170301082104\nThread:73.174.241.48/@comment-22439-20150327182526\nThread:73.176.117.94/@comment-22439-20150526173049\nThread:73.178.200.17/@comment-22439-20170510025902\nThread:73.178.98.248/@comment-22439-20150511195727\nThread:73.179.34.142/@comment-22439-20150903193406\nThread:73.18.226.254/@comment-22439-20160112030659\nThread:73.181.169.34/@comment-22439-20160827141015\nThread:73.181.253.52/@comment-22439-20141223145038\nThread:73.181.28.167/@comment-22439-20160522043332\nThread:73.182.27.147/@comment-22439-20150731184204\nThread:73.182.89.219/@comment-22439-20150104052838\nThread:73.183.165.165/@comment-22439-20161014191616\nThread:73.183.198.17/@comment-22439-20150904054648\nThread:73.185.189.80/@comment-22439-20141216101524\nThread:73.185.205.221/@comment-22439-20151216021736\nThread:73.186.180.52/@comment-22439-20160811211402\nThread:73.186.187.144/@comment-22439-20160814205546\nThread:73.186.196.55/@comment-22439-20161031223234\nThread:73.186.52.63/@comment-22439-20160831001235\nThread:73.186.55.87/@comment-22439-20151130230450\nThread:73.189.163.108/@comment-22439-20170503220650\nThread:73.19.100.251/@comment-22439-20150422112041\nThread:73.19.105.243/@comment-22439-20150313003204\nThread:73.19.22.218/@comment-22439-20151221021803\nThread:73.19.71.13/@comment-22439-20170628200651\nThread:73.190.240.3/@comment-22439-20141218210921\nThread:73.190.34.98/@comment-22439-20150406192511\nThread:73.193.15.27/@comment-22439-20151015001423\nThread:73.193.6.19/@comment-22439-20170413162718\nThread:73.194.182.11/@comment-22439-20150408221128\nThread:73.194.191.7/@comment-22439-20170623045734\nThread:73.195.139.224/@comment-22439-20150102223142\nThread:73.195.250.117/@comment-22439-20141211022303\nThread:73.197.149.198/@comment-22439-20141230203441\nThread:73.197.210.152/@comment-22439-20170514161724\nThread:73.199.5.245/@comment-22439-20150213002753\nThread:73.199.72.66/@comment-22439-20161028173620\nThread:73.2.51.40/@comment-22439-20151114114306\nThread:73.2.91.80/@comment-22439-20150130064358\nThread:73.20.48.173/@comment-22439-20170117044926\nThread:73.200.247.238/@comment-22439-20170104045126\nThread:73.200.98.17/@comment-22439-20150808044430\nThread:73.201.141.218/@comment-22439-20170423164531\nThread:73.202.143.12/@comment-22439-20170109054119\nThread:73.202.191.73/@comment-22439-20151206185100\nThread:73.202.206.63/@comment-22439-20150725055445\nThread:73.202.43.184/@comment-22439-20151018101344\nThread:73.203.32.186/@comment-22439-20170203054233\nThread:73.204.162.54/@comment-22439-20150312190835\nThread:73.205.235.25/@comment-22439-20150807110717\nThread:73.205.52.98/@comment-22439-20170120123605\nThread:73.206.125.82/@comment-22439-20150611160556\nThread:73.208.188.229/@comment-22439-20160531065533\nThread:73.209.92.179/@comment-22439-20151128211316\nThread:73.210.62.129/@comment-22439-20161117211345\nThread:73.211.5.139/@comment-22439-20151220231222\nThread:73.212.245.154/@comment-22439-20170616073339\nThread:73.214.133.181/@comment-22439-20170530211800\nThread:73.215.208.96/@comment-22439-20151218013054\nThread:73.216.17.124/@comment-22439-20151015221810\nThread:73.220.101.124/@comment-22439-20150526172558\nThread:73.220.202.212/@comment-22439-20150705224010\nThread:73.222.1.151/@comment-22439-20150912191715\nThread:73.222.16.233/@comment-22439-20160103223037\nThread:73.223.40.230/@comment-22439-20150807041458\nThread:73.224.53.15/@comment-22439-20151009180029\nThread:73.225.21.128/@comment-22439-20161203023015\nThread:73.225.222.15/@comment-22439-20170324072630\nThread:73.226.78.200/@comment-22439-20150827071823\nThread:73.229.135.121/@comment-22439-20170126022018\nThread:73.229.22.115/@comment-22439-20161128085011\nThread:73.231.96.108/@comment-22439-20170227030710\nThread:73.235.208.55/@comment-22439-20151226032527\nThread:73.239.51.94/@comment-22439-20160414151612\nThread:73.241.110.19/@comment-22439-20151028073922\nThread:73.244.35.11/@comment-22439-20151205030433\nThread:73.247.24.90/@comment-22439-20160424073729\nThread:73.247.74.111/@comment-22439-20160928124256\nThread:73.248.25.236/@comment-22439-20160616130430\nThread:73.25.1.8/@comment-22439-20170214070918\nThread:73.25.12.128/@comment-4403388-20170815042244\nThread:73.25.53.87/@comment-22439-20150612021059\nThread:73.252.246.241/@comment-22439-20160208225206\nThread:73.254.200.40/@comment-22439-20170125223710\nThread:73.26.126.198/@comment-22439-20151214133924\nThread:73.26.68.242/@comment-22439-20150515060416\nThread:73.3.176.85/@comment-22439-20151216231210\nThread:73.30.246.161/@comment-22439-20150627143515\nThread:73.31.66.93/@comment-22439-20170511224746\nThread:73.33.249.0/@comment-22439-20150930003419\nThread:73.34.111.247/@comment-22439-20150721035026\nThread:73.34.133.18/@comment-22439-20141230214604\nThread:73.35.182.221/@comment-22439-20160122202900\nThread:73.35.247.120/@comment-22439-20160608053531\nThread:73.36.115.50/@comment-22439-20160117094905\nThread:73.37.230.56/@comment-22439-20150216210407\nThread:73.37.47.101/@comment-22439-20170331103622\nThread:73.37.55.91/@comment-22439-20141229113313\nThread:73.39.39.230/@comment-22439-20151122124017\nThread:73.4.148.119/@comment-22439-20161209131426\nThread:73.4.189.25/@comment-22439-20150315044558\nThread:73.40.161.97/@comment-22439-20150227024354\nThread:73.41.122.161/@comment-22439-20150626082439\nThread:73.41.209.77/@comment-22439-20150212223054\nThread:73.41.243.141/@comment-22439-20150918212453\nThread:73.42.10.104/@comment-22439-20141223175720\nThread:73.42.142.132/@comment-22439-20160123235323\nThread:73.42.214.41/@comment-22439-20151231013800\nThread:73.42.243.156/@comment-22439-20150621173230\nThread:73.43.15.120/@comment-22439-20151221043011\nThread:73.43.238.55/@comment-22439-20160629062708\nThread:73.44.179.181/@comment-22439-20160522045025\nThread:73.44.65.107/@comment-22439-20150721143630\nThread:73.45.31.38/@comment-32769624-20170905161556\nThread:73.45.71.146/@comment-22439-20150426144253\nThread:73.46.8.221/@comment-22439-20170106031711\nThread:73.48.180.114/@comment-22439-20151216052316\nThread:73.48.69.17/@comment-22439-20151003030324\nThread:73.5.147.89/@comment-22439-20150103164437\nThread:73.5.215.82/@comment-22439-20150518135101\nThread:73.50.1.178/@comment-22439-20150603170156\nThread:73.50.17.227/@comment-22439-20150131182001\nThread:73.50.74.161/@comment-22439-20160319131430\nThread:73.51.9.154/@comment-22439-20150128003332\nThread:73.52.162.8/@comment-22439-20170205043315\nThread:73.52.176.148/@comment-22439-20150324173109\nThread:73.52.3.84/@comment-22439-20151216012928\nThread:73.53.101.88/@comment-22439-20150320165429\nThread:73.53.158.115/@comment-22439-20170405192638\nThread:73.53.173.145/@comment-22439-20141226104952\nThread:73.53.211.21/@comment-22439-20141219205816\nThread:73.53.248.49/@comment-22439-20151126202546\nThread:73.53.70.95/@comment-22439-20140907055432\nThread:73.53.96.176/@comment-22439-20150319205535\nThread:73.54.10.209/@comment-22439-20141231012029\nThread:73.55.176.236/@comment-22439-20170107021021\nThread:73.55.183.38/@comment-22439-20160118161306\nThread:73.6.134.164/@comment-22439-20160606173129\nThread:73.6.162.234/@comment-22439-20150223010349\nThread:73.61.19.96/@comment-22439-20170423223315\nThread:73.61.23.72/@comment-22439-20170421163933\nThread:73.64.62.183/@comment-22439-20161126011257\nThread:73.65.140.26/@comment-22439-20151220224218\nThread:73.66.239.35/@comment-22439-20170115173924\nThread:73.67.205.143/@comment-22439-20160818165955\nThread:73.67.246.110/@comment-22439-20170408034015\nThread:73.7.116.78/@comment-22439-20151209072800\nThread:73.7.144.21/@comment-22439-20151230021609\nThread:73.70.58.201/@comment-22439-20151221195859\nThread:73.72.116.45/@comment-22439-20160225222613\nThread:73.72.14.118/@comment-22439-20160118230007\nThread:73.75.236.149/@comment-22439-20160529180832\nThread:73.76.142.173/@comment-22439-20160320004209\nThread:73.76.27.83/@comment-22439-20160308015801\nThread:73.77.83.207/@comment-22439-20170715044221\nThread:73.78.234.90/@comment-32769624-20170818044942\nThread:73.78.77.22/@comment-22439-20160522051023\nThread:73.8.78.102/@comment-22439-20150224053911\nThread:73.85.133.61/@comment-22439-20170420014230\nThread:73.85.244.65/@comment-22439-20170511191308\nThread:73.9.165.35/@comment-22439-20170115205348\nThread:73.9.170.44/@comment-22439-20160727212632\nThread:73.92.128.115/@comment-22439-20160621012227\nThread:73.95.181.120/@comment-22439-20170330044756\nThread:73.95.64.124/@comment-22439-20170417161151\nThread:73.96.112.140/@comment-22439-20170709004450\nThread:73.96.114.197/@comment-22439-20170202005546\nThread:73.96.86.145/@comment-22439-20170221070400\nThread:74.101.152.109/@comment-22439-20160209231818\nThread:74.101.153.175/@comment-22439-20141222042344\nThread:74.102.103.177/@comment-22439-20161203234836\nThread:74.103.242.59/@comment-22439-20150330034359\nThread:74.104.123.47/@comment-22439-20150430145116\nThread:74.104.133.182/@comment-22439-20170629213954\nThread:74.105.174.28/@comment-22439-20160911003422\nThread:74.106.14.110/@comment-22439-20150212032008\nThread:74.107.86.232/@comment-22439-20150731004856\nThread:74.109.112.130/@comment-22439-20150822213132\nThread:74.112.244.13/@comment-22439-20160223053148\nThread:74.112.36.106/@comment-22439-20151020174451\nThread:74.115.245.116/@comment-22439-20150206234335\nThread:74.12.157.107/@comment-22439-20170402142606\nThread:74.126.59.93/@comment-22439-20141103192317\nThread:74.128.134.202/@comment-22439-20141102033645\nThread:74.130.128.223/@comment-22439-20150418004358\nThread:74.132.35.209/@comment-22439-20151216154806\nThread:74.132.51.143/@comment-22439-20150207231011\nThread:74.132.62.124/@comment-22439-20161108055805\nThread:74.133.20.122/@comment-22439-20160404012308\nThread:74.134.121.211/@comment-22439-20150121100906\nThread:74.134.243.160/@comment-22439-20151216214755\nThread:74.136.143.56/@comment-22439-20141231224319\nThread:74.138.147.116/@comment-22439-20170718030850\nThread:74.139.176.182/@comment-22439-20160118132203\nThread:74.14.133.243/@comment-22439-20150909001152\nThread:74.14.52.93/@comment-22439-20150118155742\nThread:74.14.7.146/@comment-22439-20150413005416\nThread:74.140.132.104/@comment-22439-20150120044450\nThread:74.141.246.111/@comment-22439-20160623043441\nThread:74.141.253.45/@comment-22439-20160229005730\nThread:74.142.61.244/@comment-22439-20150608233449\nThread:74.15.221.180/@comment-22439-20170418042942\nThread:74.15.235.67/@comment-22439-20150406195408\nThread:74.193.159.230/@comment-22439-20150530080245\nThread:74.193.221.102/@comment-22439-20151228170519\nThread:74.193.222.7/@comment-22439-20170730235352\nThread:74.193.42.79/@comment-22439-20150601215834\nThread:74.194.137.136/@comment-22439-20160131205120\nThread:74.194.233.1/@comment-22439-20160401041708\nThread:74.195.113.26/@comment-22439-20150101175551\nThread:74.195.151.143/@comment-22439-20160923090812\nThread:74.195.34.118/@comment-22439-20150214043630\nThread:74.195.4.183/@comment-22439-20160823151344\nThread:74.196.130.95/@comment-22439-20160101092418\nThread:74.197.231.158/@comment-22439-20150303023625\nThread:74.202.12.194/@comment-22439-20150416161900\nThread:74.205.130.194/@comment-22439-20150803191004\nThread:74.209.0.72/@comment-22439-20161031181221\nThread:74.209.1.45/@comment-22439-20170307193208\nThread:74.210.184.9/@comment-22439-20150813034123\nThread:74.214.105.215/@comment-22439-20151216191508\nThread:74.245.242.140/@comment-22439-20150131172039\nThread:74.37.202.169/@comment-22439-20160202045047\nThread:74.5.75.159/@comment-22439-20141211174235\nThread:74.50.193.232/@comment-22439-20150613220925\nThread:74.51.220.27/@comment-22439-20160902142621\nThread:74.57.145.227/@comment-22439-20141228040120\nThread:74.57.165.58/@comment-22439-20160105022008\nThread:74.62.123.98/@comment-22439-20160203165010\nThread:74.62.216.222/@comment-22439-20170116182825\nThread:74.65.126.155/@comment-22439-20151116104227\nThread:74.65.13.202/@comment-22439-20150704193439\nThread:74.65.136.87/@comment-22439-20150321045240\nThread:74.67.43.230/@comment-22439-20170714175516\nThread:74.69.51.136/@comment-22439-20150721081718\nThread:74.70.124.235/@comment-22439-20170704065839\nThread:74.73.116.160/@comment-22439-20170712150418\nThread:74.73.141.107/@comment-22439-20160821171459\nThread:74.74.176.116/@comment-22439-20151206054055\nThread:74.75.169.136/@comment-22439-20150311041615\nThread:74.75.27.87/@comment-22439-20150702203517\nThread:74.75.43.12/@comment-22439-20160315160407\nThread:74.75.44.90/@comment-22439-20161210201619\nThread:74.78.26.24/@comment-22439-20150925004051\nThread:74.78.96.69/@comment-22439-20150419232439\nThread:74.82.59.126/@comment-22439-20160613214919\nThread:74.83.50.222/@comment-22439-20150808062724\nThread:74.83.89.216/@comment-22439-20150317202821\nThread:74.83.95.51/@comment-22439-20150321231825\nThread:74.88.196.15/@comment-22439-20150412120722\nThread:74.88.240.69/@comment-22439-20150610131024\nThread:74.89.225.194/@comment-22439-20150213030051\nThread:74.90.148.115/@comment-22439-20161127172223\nThread:74.90.92.146/@comment-22439-20150405234724\nThread:74.91.70.136/@comment-22439-20160730003718\nThread:74.94.78.2/@comment-22439-20150312032501\nThread:74.96.178.202/@comment-22439-20160701015106\nThread:74.96.182.25/@comment-22439-20151015122209\nThread:74.96.218.32/@comment-22439-20150102070745\nThread:74.96.221.60/@comment-22439-20150110063019\nThread:74.96.68.238/@comment-22439-20150405195543\nThread:74.97.38.183/@comment-22439-20150220034858\nThread:74.98.142.30/@comment-22439-20170417170047\nThread:74.98.166.175/@comment-22439-20150421044149\nThread:75.100.175.2/@comment-22439-20141007114008\nThread:75.100.46.55/@comment-22439-20150201162925\nThread:75.100.98.140/@comment-22439-20151013185857\nThread:75.105.62.71/@comment-22439-20150831220040\nThread:75.108.152.128/@comment-22439-20160110220925\nThread:75.108.47.186/@comment-22439-20151017210935\nThread:75.109.173.125/@comment-22439-20150323202302\nThread:75.109.81.198/@comment-22439-20141222204509\nThread:75.110.147.63/@comment-22439-20151025063422\nThread:75.110.224.133/@comment-22439-20160125161744\nThread:75.111.128.42/@comment-22439-20150123060344\nThread:75.111.163.67/@comment-22439-20170501043152\nThread:75.111.188.11/@comment-22439-20150223201454\nThread:75.111.224.144/@comment-22439-20160314053946\nThread:75.111.250.16/@comment-22439-20170715191953\nThread:75.111.28.48/@comment-22439-20170120203200\nThread:75.112.131.156/@comment-22439-20150118003125\nThread:75.114.11.42/@comment-22439-20150321190541\nThread:75.115.196.213/@comment-22439-20150627051531\nThread:75.117.151.226/@comment-22439-20141216212227\nThread:75.117.165.34/@comment-22439-20150220030819\nThread:75.118.11.21/@comment-22439-20150104005630\nThread:75.121.119.125/@comment-22439-20160302193003\nThread:75.121.121.27/@comment-22439-20170626201640\nThread:75.121.234.163/@comment-22439-20150625060701\nThread:75.121.236.32/@comment-22439-20150719025248\nThread:75.121.77.102/@comment-22439-20150509200743\nThread:75.128.101.135/@comment-22439-20151216114515\nThread:75.128.169.75/@comment-22439-20150826153603\nThread:75.128.23.207/@comment-22439-20160107061916\nThread:75.128.239.202/@comment-22439-20151216070131\nThread:75.129.153.72/@comment-22439-20150808030111\nThread:75.129.157.128/@comment-22439-20141226082028\nThread:75.130.23.188/@comment-22439-20150625092831\nThread:75.130.28.30/@comment-22439-20160313213851\nThread:75.133.178.134/@comment-22439-20160206180434\nThread:75.134.159.197/@comment-22439-20141109161729\nThread:75.134.242.113/@comment-22439-20160809152516\nThread:75.135.120.164/@comment-22439-20150521182100\nThread:75.135.177.50/@comment-22439-20150719093742\nThread:75.136.227.24/@comment-22439-20170624053731\nThread:75.137.11.199/@comment-22439-20160104065552\nThread:75.137.176.249/@comment-22439-20170415175644\nThread:75.138.35.156/@comment-22439-20160828061646\nThread:75.139.36.119/@comment-22439-20160601165703\nThread:75.140.158.219/@comment-22439-20151226042705\nThread:75.140.247.146/@comment-22439-20141230013257\nThread:75.140.40.102/@comment-22439-20150422185501\nThread:75.141.149.197/@comment-22439-20170301235845\nThread:75.141.231.12/@comment-22439-20170417175910\nThread:75.142.22.102/@comment-22439-20170211085749\nThread:75.143.103.222/@comment-22439-20140917053116\nThread:75.143.74.69/@comment-22439-20170607163526\nThread:75.143.98.221/@comment-22439-20170715054538\nThread:75.148.124.251/@comment-22439-20161007162616\nThread:75.149.116.5/@comment-22439-20141228161819\nThread:75.149.81.33/@comment-22439-20141230123552\nThread:75.154.238.98/@comment-22439-20150411015324\nThread:75.155.167.194/@comment-22439-20160103030823\nThread:75.155.80.12/@comment-22439-20170405070831\nThread:75.156.153.23/@comment-22439-20151009173000\nThread:75.156.175.143/@comment-22439-20160413154017\nThread:75.157.144.226/@comment-22439-20150214001700\nThread:75.158.72.30/@comment-22439-20161210064135\nThread:75.159.10.110/@comment-22439-20170426014516\nThread:75.159.212.141/@comment-22439-20150529230014\nThread:75.161.154.19/@comment-22439-20160815105934\nThread:75.163.169.206/@comment-22439-20160102232924\nThread:75.164.228.73/@comment-22439-20160128040504\nThread:75.164.241.222/@comment-22439-20160727202711\nThread:75.165.117.112/@comment-22439-20160715222221\nThread:75.165.52.62/@comment-22439-20141128213718\nThread:75.166.133.210/@comment-22439-20160104045937\nThread:75.166.43.208/@comment-22439-20150824012941\nThread:75.166.95.88/@comment-22439-20150613191247\nThread:75.167.141.198/@comment-22439-20170117102157\nThread:75.167.156.206/@comment-22439-20150326043224\nThread:75.167.195.172/@comment-22439-20150908074249\nThread:75.168.126.156/@comment-22439-20141102061946\nThread:75.17.246.224/@comment-22439-20161125143404\nThread:75.17.248.231/@comment-22439-20150411051214\nThread:75.170.155.175/@comment-22439-20141102033912\nThread:75.173.245.27/@comment-22439-20160102041130\nThread:75.174.201.20/@comment-22439-20150523014006\nThread:75.174.28.1/@comment-22439-20151217083705\nThread:75.176.185.135/@comment-22439-20141226045906\nThread:75.177.159.44/@comment-22439-20151013200931\nThread:75.182.4.83/@comment-22439-20150422015850\nThread:75.183.129.246/@comment-22439-20150813172409\nThread:75.183.40.125/@comment-22439-20160526181333\nThread:75.183.83.3/@comment-22439-20151025193646\nThread:75.184.8.132/@comment-22439-20141219052226\nThread:75.185.171.250/@comment-22439-20131009205407\nThread:75.187.152.96/@comment-22439-20151221225227\nThread:75.187.248.230/@comment-22439-20150315195821\nThread:75.189.199.203/@comment-22439-20150421212334\nThread:75.190.136.148/@comment-32769624-20170905235236\nThread:75.190.165.103/@comment-22439-20150415212948\nThread:75.22.101.114/@comment-22439-20150524160857\nThread:75.22.106.106/@comment-22439-20141220005818\nThread:75.22.106.21/@comment-22439-20161029015942\nThread:75.25.137.146/@comment-22439-20170617215903\nThread:75.27.140.236/@comment-22439-20170303231828\nThread:75.5.248.67/@comment-32769624-20170901062841\nThread:75.64.191.53/@comment-22439-20151027033102\nThread:75.64.247.69/@comment-22439-20151027191844\nThread:75.64.25.71/@comment-22439-20150930020104\nThread:75.65.57.178/@comment-22439-20160304015104\nThread:75.66.4.124/@comment-22439-20170604091000\nThread:75.67.57.94/@comment-22439-20141221012815\nThread:75.69.169.219/@comment-22439-20150110034005\nThread:75.69.59.212/@comment-22439-20150609201035\nThread:75.70.18.113/@comment-22439-20150201201853\nThread:75.71.238.163/@comment-22439-20150803130913\nThread:75.71.81.249/@comment-22439-20150513040226\nThread:75.72.228.176/@comment-22439-20141231165052\nThread:75.73.1.43/@comment-22439-20141223062602\nThread:75.73.171.22/@comment-22439-20150227074830\nThread:75.73.69.223/@comment-22439-20150420072553\nThread:75.74.179.54/@comment-22439-20150829032700\nThread:75.75.47.43/@comment-22439-20161026232252\nThread:75.75.67.51/@comment-22439-20150129091334\nThread:75.80.141.189/@comment-22439-20150409215102\nThread:75.80.156.124/@comment-22439-20141221015516\nThread:75.80.4.126/@comment-22439-20151209064843\nThread:75.80.41.165/@comment-22439-20141224051944\nThread:75.81.232.57/@comment-22439-20160130170557\nThread:75.82.182.110/@comment-22439-20141210151852\nThread:75.82.3.198/@comment-22439-20141221064809\nThread:75.82.55.51/@comment-22439-20150526052640\nThread:75.82.99.83/@comment-22439-20161217015316\nThread:75.83.172.98/@comment-22439-20150115051453\nThread:75.85.165.200/@comment-22439-20150219210027\nThread:75.85.82.56/@comment-22439-20170416030331\nThread:75.86.209.207/@comment-22439-20150430065449\nThread:75.88.60.139/@comment-22439-20151222224433\nThread:75.90.196.23/@comment-22439-20160616172119\nThread:75.90.213.116/@comment-22439-20160316224028\nThread:75.91.229.226/@comment-22439-20160717034522\nThread:75.91.33.85/@comment-22439-20160129030141\nThread:76.10.1.177/@comment-22439-20170303071038\nThread:76.10.152.248/@comment-22439-20150514153815\nThread:76.10.184.69/@comment-22439-20141126030533\nThread:76.10.187.163/@comment-22439-20170722214825\nThread:76.101.111.92/@comment-22439-20150112201644\nThread:76.101.70.56/@comment-22439-20160117204308\nThread:76.102.100.128/@comment-22439-20150203004433\nThread:76.102.38.20/@comment-22439-20150810104021\nThread:76.102.51.16/@comment-22439-20170412025338\nThread:76.102.77.124/@comment-22439-20170508052544\nThread:76.103.194.242/@comment-22439-20150802212812\nThread:76.103.34.243/@comment-22439-20150414021816\nThread:76.104.141.107/@comment-22439-20151120053259\nThread:76.105.154.112/@comment-22439-20160109095843\nThread:76.105.18.86/@comment-22439-20150722060834\nThread:76.106.37.30/@comment-22439-20150406042731\nThread:76.108.126.92/@comment-22439-20150211123110\nThread:76.108.238.242/@comment-22439-20150126073333\nThread:76.109.102.180/@comment-22439-20150109071005\nThread:76.109.160.244/@comment-22439-20141224040941\nThread:76.109.211.231/@comment-22439-20150911032731\nThread:76.11.105.70/@comment-22439-20160809025130\nThread:76.11.115.154/@comment-22439-20161127044236\nThread:76.11.17.36/@comment-22439-20170321150126\nThread:76.11.181.225/@comment-22439-20151004071707\nThread:76.11.73.55/@comment-22439-20141228160905\nThread:76.11.96.151/@comment-22439-20161104233034\nThread:76.111.164.208/@comment-22439-20141003122858\nThread:76.113.35.167/@comment-22439-20160804155824\nThread:76.114.183.18/@comment-22439-20141228110002\nThread:76.116.236.147/@comment-22439-20150503003605\nThread:76.116.62.127/@comment-22439-20150316143635\nThread:76.117.5.44/@comment-22439-20150419194727\nThread:76.118.238.197/@comment-22439-20160229232224\nThread:76.118.89.84/@comment-22439-20150525211537\nThread:76.120.194.140/@comment-22439-20151117120715\nThread:76.120.223.100/@comment-22439-20150111123514\nThread:76.121.158.50/@comment-22439-20150107094925\nThread:76.121.168.203/@comment-22439-20151004151103\nThread:76.121.247.205/@comment-22439-20151213231942\nThread:76.121.82.229/@comment-22439-20150408202722\nThread:76.122.215.94/@comment-22439-20170308230022\nThread:76.124.117.172/@comment-22439-20150506013056\nThread:76.124.162.53/@comment-22439-20150109002816\nThread:76.124.51.148/@comment-22439-20151216081008\nThread:76.125.120.105/@comment-22439-20151218050200\nThread:76.125.199.162/@comment-22439-20150418015237\nThread:76.126.157.131/@comment-22439-20150726092529\nThread:76.126.244.102/@comment-22439-20150707080332\nThread:76.126.247.212/@comment-22439-20150425051852\nThread:76.127.64.187/@comment-22439-20150109090115\nThread:76.14.200.114/@comment-22439-20141101103520\nThread:76.14.244.250/@comment-22439-20161002210724\nThread:76.14.86.175/@comment-22439-20160910204524\nThread:76.165.35.173/@comment-22439-20160216154223\nThread:76.169.224.10/@comment-22439-20150612230816\nThread:76.170.166.2/@comment-22439-20150104001455\nThread:76.173.145.177/@comment-22439-20150907015221\nThread:76.173.6.20/@comment-22439-20150617075014\nThread:76.174.114.157/@comment-22439-20150524211933\nThread:76.174.128.26/@comment-22439-20150130072606\nThread:76.176.74.117/@comment-22439-20150814004743\nThread:76.178.184.11/@comment-22439-20150415004034\nThread:76.178.190.103/@comment-22439-20150619214326\nThread:76.178.23.25/@comment-22439-20150308164743\nThread:76.179.227.240/@comment-22439-20151014021845\nThread:76.18.220.223/@comment-22439-20150109042217\nThread:76.180.146.166/@comment-22439-20160105152907\nThread:76.181.9.230/@comment-22439-20150315112204\nThread:76.182.87.235/@comment-22439-20141008053342\nThread:76.183.87.184/@comment-22439-20151017041744\nThread:76.184.2.239/@comment-22439-20150310223700\nThread:76.185.214.113/@comment-22439-20151003215023\nThread:76.185.89.24/@comment-22439-20150708201229\nThread:76.187.232.252/@comment-22439-20150515025448\nThread:76.187.251.37/@comment-22439-20160831052128\nThread:76.187.47.250/@comment-22439-20150308180511\nThread:76.188.89.242/@comment-22439-20150806145739\nThread:76.19.54.17/@comment-22439-20170217070658\nThread:76.190.209.67/@comment-22439-20141225045807\nThread:76.190.254.140/@comment-22439-20150101193835\nThread:76.2.21.128/@comment-22439-20170112080753\nThread:76.20.136.41/@comment-22439-20150109042659\nThread:76.20.26.10/@comment-22439-20150919062941\nThread:76.20.86.254/@comment-22439-20170108204821\nThread:76.209.17.71/@comment-22439-20150427224259\nThread:76.210.231.243/@comment-22439-20150324175425\nThread:76.22.84.106/@comment-22439-20151017204945\nThread:76.23.16.7/@comment-22439-20150602185744\nThread:76.231.86.110/@comment-22439-20170601044835\nThread:76.234.68.126/@comment-22439-20170611004934\nThread:76.235.25.214/@comment-22439-20170324205458\nThread:76.236.84.148/@comment-22439-20141216235433\nThread:76.24.21.3/@comment-22439-20141122032246\nThread:76.24.78.25/@comment-22439-20160612043334\nThread:76.25.140.130/@comment-22439-20150703154156\nThread:76.25.148.211/@comment-22439-20150222053844\nThread:76.25.17.173/@comment-22439-20151026173039\nThread:76.255.149.52/@comment-22439-20150719073814\nThread:76.26.104.91/@comment-22439-20160125021308\nThread:76.26.61.217/@comment-22439-20160607034545\nThread:76.27.255.161/@comment-22439-20150922092413\nThread:76.27.32.135/@comment-22439-20160211091745\nThread:76.27.38.164/@comment-22439-20160311175005\nThread:76.27.76.168/@comment-22439-20141029033638\nThread:76.28.156.157/@comment-22439-20141229052736\nThread:76.28.191.238/@comment-22439-20151220192606\nThread:76.30.151.84/@comment-22439-20170415202009\nThread:76.31.138.244/@comment-22439-20150912191317\nThread:76.65.200.202/@comment-22439-20170504175343\nThread:76.66.174.116/@comment-22439-20150328182440\nThread:76.67.106.108/@comment-22439-20170118041833\nThread:76.67.109.27/@comment-22439-20150401211022\nThread:76.67.111.182/@comment-22439-20151209020732\nThread:76.67.69.181/@comment-22439-20160902163451\nThread:76.69.122.72/@comment-22439-20160821000132\nThread:76.71.1.67/@comment-22439-20151118162732\nThread:76.71.23.105/@comment-22439-20150127102046\nThread:76.71.248.132/@comment-22439-20150720072523\nThread:76.71.51.6/@comment-22439-20161024220529\nThread:76.75.123.213/@comment-22439-20150714191255\nThread:76.78.7.131/@comment-22439-20150101000820\nThread:76.79.198.210/@comment-22439-20150513231003\nThread:76.8.195.220/@comment-22439-20150530213147\nThread:76.84.113.197/@comment-22439-20150317221817\nThread:76.84.132.199/@comment-22439-20150515184117\nThread:76.84.205.99/@comment-22439-20170418051156\nThread:76.84.40.184/@comment-22439-20150111074126\nThread:76.85.197.172/@comment-22439-20141228192930\nThread:76.88.32.119/@comment-22439-20160121052858\nThread:76.88.40.102/@comment-22439-20150616141139\nThread:76.89.173.100/@comment-22439-20150824010102\nThread:76.89.31.217/@comment-22439-20150627154236\nThread:76.91.75.137/@comment-22439-20160520015925\nThread:76.92.151.172/@comment-22439-20150607090341\nThread:76.94.131.15/@comment-22439-20151216001024\nThread:77.10.109.5/@comment-22439-20150529234650\nThread:77.10.227.95/@comment-22439-20150704133743\nThread:77.10.84.138/@comment-22439-20151219203349\nThread:77.100.139.22/@comment-22439-20150809155750\nThread:77.100.60.91/@comment-22439-20160130174756\nThread:77.101.193.215/@comment-22439-20150201221718\nThread:77.101.224.164/@comment-22439-20141212075836\nThread:77.101.227.6/@comment-22439-20140921210325\nThread:77.101.36.188/@comment-22439-20170728082334\nThread:77.102.200.67/@comment-22439-20170525124201\nThread:77.102.209.29/@comment-22439-20150313193917\nThread:77.102.250.232/@comment-22439-20170224112329\nThread:77.102.255.162/@comment-32769624-20170830235215\nThread:77.103.1.252/@comment-22439-20170517205709\nThread:77.103.144.71/@comment-22439-20150128092511\nThread:77.103.85.206/@comment-22439-20151102230525\nThread:77.110.14.220/@comment-22439-20150224085603\nThread:77.110.193.131/@comment-22439-20160302133933\nThread:77.110.220.44/@comment-22439-20151117140631\nThread:77.110.42.57/@comment-22439-20150604021823\nThread:77.111.164.223/@comment-22439-20151108171930\nThread:77.116.150.167/@comment-22439-20160117161109\nThread:77.117.71.41/@comment-22439-20151104001410\nThread:77.119.129.158/@comment-22439-20170104153406\nThread:77.119.131.101/@comment-22439-20170504202449\nThread:77.12.108.182/@comment-22439-20150715191300\nThread:77.12.128.11/@comment-22439-20160626194633\nThread:77.125.253.227/@comment-22439-20150410130637\nThread:77.125.87.105/@comment-22439-20160114192615\nThread:77.129.35.196/@comment-22439-20150303195448\nThread:77.131.39.197/@comment-22439-20170427011605\nThread:77.133.58.10/@comment-22439-20160418192946\nThread:77.138.135.203/@comment-22439-20161118135834\nThread:77.148.154.171/@comment-22439-20141207103538\nThread:77.150.123.34/@comment-22439-20150804211747\nThread:77.152.251.48/@comment-22439-20151101164617\nThread:77.153.203.82/@comment-32769624-20170905161632\nThread:77.153.217.127/@comment-22439-20160109104834\nThread:77.160.0.122/@comment-22439-20161128123131\nThread:77.161.31.147/@comment-22439-20150407154423\nThread:77.163.150.115/@comment-22439-20150704142323\nThread:77.166.33.109/@comment-22439-20150201010547\nThread:77.168.182.117/@comment-22439-20161116223239\nThread:77.168.22.223/@comment-22439-20151224173213\nThread:77.170.134.206/@comment-22439-20151219104953\nThread:77.170.173.242/@comment-22439-20150926180639\nThread:77.172.59.26/@comment-22439-20161229100056\nThread:77.173.119.58/@comment-22439-20151218013049\nThread:77.173.135.226/@comment-22439-20150507111700\nThread:77.173.137.59/@comment-22439-20150202210223\nThread:77.173.160.84/@comment-22439-20170129192339\nThread:77.173.166.187/@comment-22439-20150424223736\nThread:77.175.79.210/@comment-22439-20150113221215\nThread:77.176.187.21/@comment-22439-20150115123547\nThread:77.176.70.111/@comment-22439-20150725022236\nThread:77.177.136.49/@comment-22439-20150821125347\nThread:77.181.159.48/@comment-22439-20150925221927\nThread:77.181.179.150/@comment-22439-20151013155426\nThread:77.181.182.208/@comment-22439-20150913121540\nThread:77.181.184.122/@comment-22439-20150912083007\nThread:77.182.133.22/@comment-22439-20151111211612\nThread:77.182.158.152/@comment-22439-20151216145035\nThread:77.182.61.37/@comment-22439-20150911162735\nThread:77.184.207.185/@comment-22439-20140910145102\nThread:77.20.122.232/@comment-22439-20150406091141\nThread:77.20.150.112/@comment-22439-20150506211441\nThread:77.20.150.112/@comment-22439-20150506211441/@comment-26375871-20150506212716\nThread:77.20.150.112/@comment-22439-20150506211441/@comment-6033893-20150509150248\nThread:77.20.151.150/@comment-22439-20150410054210\nThread:77.20.18.242/@comment-22439-20161216022924\nThread:77.20.80.121/@comment-22439-20160424151917\nThread:77.201.135.114/@comment-22439-20170317185647\nThread:77.205.166.89/@comment-22439-20170302145603\nThread:77.206.244.18/@comment-22439-20151129151407\nThread:77.21.51.68/@comment-22439-20161112133320\nThread:77.21.52.171/@comment-22439-20150502065720\nThread:77.22.103.132/@comment-22439-20170418235356\nThread:77.22.53.69/@comment-22439-20151005184946\nThread:77.22.98.149/@comment-22439-20150516171803\nThread:77.222.184.134/@comment-22439-20150526164251\nThread:77.225.202.32/@comment-22439-20150630220809\nThread:77.23.180.241/@comment-22439-20160131133836\nThread:77.23.190.21/@comment-22439-20160306104705\nThread:77.23.195.160/@comment-22439-20160728175343\nThread:77.23.246.207/@comment-22439-20150310232210\nThread:77.23.57.19/@comment-22439-20141222134704\nThread:77.232.154.230/@comment-22439-20150612192159\nThread:77.234.104.249/@comment-22439-20150804173845\nThread:77.234.106.9/@comment-22439-20150710175904\nThread:77.234.191.155/@comment-22439-20151013165024\nThread:77.234.40.147/@comment-22439-20151029165627\nThread:77.234.44.145/@comment-22439-20170502175114\nThread:77.237.111.72/@comment-22439-20150405164347\nThread:77.243.25.98/@comment-32769624-20170905223821\nThread:77.243.41.13/@comment-22439-20150219104939\nThread:77.247.229.22/@comment-22439-20150329211502\nThread:77.248.49.138/@comment-22439-20160115203856\nThread:77.248.81.98/@comment-22439-20170621081237\nThread:77.249.165.139/@comment-22439-20150624121446\nThread:77.249.6.238/@comment-22439-20150328182911\nThread:77.250.109.152/@comment-22439-20160512032512\nThread:77.250.124.86/@comment-22439-20150525163136\nThread:77.250.232.60/@comment-22439-20170505200207\nThread:77.253.128.202/@comment-22439-20150530175607\nThread:77.253.58.236/@comment-22439-20151019034556\nThread:77.253.95.129/@comment-22439-20150324192757\nThread:77.254.88.104/@comment-22439-20150531083421\nThread:77.255.37.9/@comment-22439-20150208175052\nThread:77.3.7.44/@comment-22439-20150321223531\nThread:77.3.80.114/@comment-22439-20150512074652\nThread:77.35.248.222/@comment-22439-20150227022254\nThread:77.37.166.144/@comment-22439-20160204194150\nThread:77.37.171.53/@comment-22439-20151004195644\nThread:77.38.245.7/@comment-22439-20150313210057\nThread:77.4.127.210/@comment-22439-20170508191541\nThread:77.4.128.18/@comment-22439-20160621012334\nThread:77.41.90.182/@comment-22439-20150126060249\nThread:77.44.14.231/@comment-22439-20150626091307\nThread:77.46.202.45/@comment-22439-20150708180042\nThread:77.47.109.223/@comment-22439-20170210180710\nThread:77.48.149.29/@comment-22439-20141223070300\nThread:77.48.233.146/@comment-22439-20150110093920\nThread:77.49.198.161/@comment-22439-20150624211244\nThread:77.49.78.188/@comment-22439-20151009172900\nThread:77.50.26.143/@comment-22439-20160814201423\nThread:77.51.173.162/@comment-22439-20150514184914\nThread:77.53.109.165/@comment-22439-20151223131439\nThread:77.53.125.239/@comment-22439-20170501175717\nThread:77.53.215.6/@comment-22439-20141223183005\nThread:77.56.218.169/@comment-22439-20141115183701\nThread:77.56.50.183/@comment-22439-20150124141752\nThread:77.57.81.27/@comment-22439-20150915173137\nThread:77.58.96.13/@comment-22439-20150630035417\nThread:77.6.150.91/@comment-22439-20150427002253\nThread:77.6.154.99/@comment-22439-20160119112118\nThread:77.6.178.230/@comment-22439-20151212034816\nThread:77.65.47.36/@comment-22439-20150123003921\nThread:77.65.84.4/@comment-22439-20170727212848\nThread:77.68.144.102/@comment-22439-20150116174210\nThread:77.68.246.40/@comment-22439-20170211051031\nThread:77.7.187.201/@comment-22439-20151121130353\nThread:77.7.221.149/@comment-22439-20160712003910\nThread:77.7.226.207/@comment-22439-20150807203201\nThread:77.70.57.181/@comment-22439-20160201150326\nThread:77.72.209.254/@comment-22439-20151028142507\nThread:77.75.166.83/@comment-22439-20141220201937\nThread:77.8.62.102/@comment-22439-20151217123438\nThread:77.96.109.246/@comment-22439-20150613225531\nThread:77.96.123.183/@comment-22439-20150110210607\nThread:77.96.13.119/@comment-22439-20160123235941\nThread:77.97.195.192/@comment-22439-20170527092513\nThread:77.97.210.77/@comment-22439-20150526211803\nThread:77.97.240.197/@comment-22439-20170427121537\nThread:77.97.42.65/@comment-22439-20141223163136\nThread:77.97.72.168/@comment-22439-20141222195510\nThread:77.98.183.207/@comment-22439-20151225105238\nThread:77.98.203.106/@comment-22439-20160116093634\nThread:77.98.211.163/@comment-32769624-20170818122852\nThread:77.98.28.117/@comment-22439-20151112193952\nThread:78.0.207.84/@comment-22439-20150616202832\nThread:78.0.209.49/@comment-22439-20151226233158\nThread:78.0.24.146/@comment-22439-20150628165207\nThread:78.1.131.175/@comment-22439-20151221122142\nThread:78.1.15.216/@comment-22439-20160527215548\nThread:78.10.197.69/@comment-22439-20150609082907\nThread:78.102.34.16/@comment-22439-20160326145148\nThread:78.102.55.129/@comment-22439-20151114113512\nThread:78.105.112.87/@comment-22439-20140113125843\nThread:78.11.110.60/@comment-22439-20151211070032\nThread:78.11.219.52/@comment-22439-20160116124006\nThread:78.11.232.94/@comment-22439-20170629004043\nThread:78.115.182.45/@comment-22439-20160108200128\nThread:78.115.184.171/@comment-22439-20150621173143\nThread:78.115.185.210/@comment-22439-20150531095833\nThread:78.115.185.247/@comment-22439-20150118161110\nThread:78.122.110.71/@comment-22439-20150203163939\nThread:78.122.111.160/@comment-22439-20151026110537\nThread:78.122.119.208/@comment-22439-20160101171225\nThread:78.122.121.92/@comment-22439-20150819162313\nThread:78.131.93.136/@comment-22439-20151102183151\nThread:78.138.166.94/@comment-22439-20141229214815\nThread:78.141.96.31/@comment-22439-20150109180551\nThread:78.143.117.165/@comment-22439-20150810001637\nThread:78.143.199.122/@comment-22439-20151125214238\nThread:78.144.143.135/@comment-22439-20141222143154\nThread:78.144.143.61/@comment-22439-20150112175558\nThread:78.144.198.30/@comment-22439-20160122144612\nThread:78.144.42.73/@comment-22439-20170803170831\nThread:78.145.143.47/@comment-22439-20141224155202\nThread:78.145.64.145/@comment-22439-20150912115208\nThread:78.146.128.234/@comment-22439-20150101220521\nThread:78.146.130.81/@comment-22439-20170725122934\nThread:78.146.80.75/@comment-22439-20170325155003\nThread:78.146.99.202/@comment-22439-20150307083712\nThread:78.147.206.184/@comment-22439-20150718134208\nThread:78.147.92.130/@comment-22439-20150906070820\nThread:78.148.15.128/@comment-22439-20150628221905\nThread:78.148.163.167/@comment-22439-20150913015329\nThread:78.149.187.168/@comment-22439-20150426145632\nThread:78.149.240.147/@comment-22439-20150407212020\nThread:78.149.41.22/@comment-22439-20150102162212\nThread:78.15.141.104/@comment-22439-20160914113410\nThread:78.150.155.133/@comment-22439-20150219215252\nThread:78.156.119.171/@comment-22439-20170805160546\nThread:78.16.225.77/@comment-22439-20160826201903\nThread:78.16.82.48/@comment-22439-20161124185729\nThread:78.163.155.1/@comment-22439-20151020094859\nThread:78.165.246.30/@comment-22439-20150118005101\nThread:78.17.57.178/@comment-32769624-20170828161510\nThread:78.173.138.80/@comment-22439-20151014175452\nThread:78.178.132.215/@comment-22439-20151123001547\nThread:78.18.217.217/@comment-22439-20150312012647\nThread:78.18.242.217/@comment-22439-20160123225944\nThread:78.19.121.210/@comment-22439-20160120165826\nThread:78.19.15.50/@comment-22439-20150922064022\nThread:78.19.151.226/@comment-22439-20170222175641\nThread:78.19.38.183/@comment-22439-20151219021959\nThread:78.19.71.92/@comment-22439-20151205095327\nThread:78.19.92.150/@comment-22439-20151216165027\nThread:78.193.156.248/@comment-22439-20160222130916\nThread:78.193.198.237/@comment-22439-20170803170536\nThread:78.194.205.118/@comment-32769624-20170911192301\nThread:78.2.205.192/@comment-22439-20160408210127\nThread:78.209.96.105/@comment-22439-20150319194602\nThread:78.21.179.139/@comment-22439-20170629002145\nThread:78.213.50.42/@comment-22439-20150115143218\nThread:78.215.0.152/@comment-22439-20140918103008\nThread:78.215.76.215/@comment-22439-20160214142242\nThread:78.22.108.5/@comment-22439-20150322085900\nThread:78.22.123.29/@comment-22439-20151206132235\nThread:78.22.25.244/@comment-22439-20151203212403\nThread:78.227.99.202/@comment-22439-20151221203741\nThread:78.228.136.4/@comment-22439-20150220024035\nThread:78.229.202.48/@comment-22439-20160703234123\nThread:78.232.201.196/@comment-22439-20160831221858\nThread:78.233.125.224/@comment-22439-20160103145453\nThread:78.234.101.196/@comment-22439-20160116032225\nThread:78.236.120.111/@comment-22439-20150404143130\nThread:78.236.49.159/@comment-22439-20141207082719\nThread:78.238.168.100/@comment-22439-20170129180039\nThread:78.244.152.181/@comment-22439-20150622143841\nThread:78.245.89.186/@comment-22439-20141219220714\nThread:78.246.24.106/@comment-22439-20151101053317\nThread:78.249.34.188/@comment-22439-20160326210611\nThread:78.25.122.233/@comment-22439-20160703214446\nThread:78.31.7.129/@comment-22439-20150613170040\nThread:78.32.137.65/@comment-22439-20150121062104\nThread:78.32.158.221/@comment-22439-20150724010515\nThread:78.34.163.119/@comment-22439-20151231165229\nThread:78.34.175.170/@comment-22439-20150620172915\nThread:78.34.18.200/@comment-22439-20150731134552\nThread:78.34.26.75/@comment-22439-20141212032431\nThread:78.34.67.204/@comment-22439-20141224145018\nThread:78.35.152.243/@comment-22439-20150623221240\nThread:78.41.3.129/@comment-22439-20150704143249\nThread:78.42.135.254/@comment-22439-20150106183044\nThread:78.42.16.72/@comment-22439-20140925191246\nThread:78.43.122.79/@comment-22439-20160108171842\nThread:78.43.125.86/@comment-22439-20160820184448\nThread:78.43.187.69/@comment-22439-20150419143311\nThread:78.43.41.100/@comment-22439-20160706215326\nThread:78.43.75.252/@comment-22439-20150323170430\nThread:78.45.215.74/@comment-22439-20141229223147\nThread:78.45.96.254/@comment-22439-20160201085106\nThread:78.48.118.158/@comment-22439-20150310031209\nThread:78.48.167.192/@comment-22439-20150917224046\nThread:78.48.227.231/@comment-22439-20151116223810\nThread:78.48.240.85/@comment-22439-20150312172915\nThread:78.48.244.35/@comment-22439-20150501081932\nThread:78.48.34.99/@comment-22439-20150921193735\nThread:78.48.51.140/@comment-22439-20150517094724\nThread:78.48.64.128/@comment-22439-20150915025706\nThread:78.48.82.91/@comment-22439-20150527100308\nThread:78.49.174.24/@comment-22439-20150908130029\nThread:78.49.22.16/@comment-22439-20150522191626\nThread:78.49.247.74/@comment-22439-20150425121411\nThread:78.49.3.145/@comment-22439-20150412195111\nThread:78.49.37.227/@comment-22439-20150608203653\nThread:78.49.69.59/@comment-22439-20150504135839\nThread:78.49.75.139/@comment-22439-20151119211530\nThread:78.49.79.127/@comment-22439-20150922174057\nThread:78.49.81.200/@comment-22439-20150808000047\nThread:78.50.160.43/@comment-22439-20150127075538\nThread:78.50.163.130/@comment-22439-20150805172931\nThread:78.50.49.81/@comment-22439-20150223172546\nThread:78.50.50.214/@comment-22439-20150425204637\nThread:78.50.97.52/@comment-22439-20150103221351\nThread:78.51.172.98/@comment-22439-20150512201203\nThread:78.51.36.35/@comment-22439-20150715211957\nThread:78.51.49.87/@comment-22439-20150330130222\nThread:78.52.222.251/@comment-22439-20170108175601\nThread:78.52.48.147/@comment-22439-20150208225343\nThread:78.53.123.247/@comment-22439-20150329142912\nThread:78.53.179.223/@comment-22439-20150831100245\nThread:78.53.22.36/@comment-22439-20160224194507\nThread:78.53.226.204/@comment-22439-20150410092209\nThread:78.53.3.60/@comment-22439-20150610144330\nThread:78.54.111.183/@comment-22439-20150130233101\nThread:78.54.112.44/@comment-22439-20150824112734\nThread:78.54.28.145/@comment-22439-20150224190514\nThread:78.55.194.218/@comment-22439-20150624115831\nThread:78.55.49.130/@comment-22439-20141230112003\nThread:78.63.36.243/@comment-22439-20150930142720\nThread:78.68.120.242/@comment-22439-20150205190245\nThread:78.70.42.26/@comment-22439-20141229110556\nThread:78.71.163.117/@comment-22439-20170217090946\nThread:78.71.28.121/@comment-22439-20170204193632\nThread:78.72.23.6/@comment-22439-20141231151840\nThread:78.72.31.223/@comment-22439-20150408012756\nThread:78.72.77.152/@comment-22439-20150304150822\nThread:78.72.8.20/@comment-22439-20150201001456\nThread:78.84.101.2/@comment-22439-20130102220708\nThread:78.84.194.195/@comment-22439-20150723030106\nThread:78.84.232.97/@comment-22439-20130908111827\nThread:78.84.24.73/@comment-22439-20150215021933\nThread:78.84.28.94/@comment-22439-20151118214216\nThread:78.88.140.214/@comment-22439-20160111232714\nThread:78.88.29.232/@comment-22439-20161129201646\nThread:78.90.147.26/@comment-22439-20151114184810\nThread:78.90.225.217/@comment-22439-20150606081037\nThread:78.92.50.126/@comment-22439-20151018130915\nThread:78.94.149.121/@comment-22439-20150315235103\nThread:78.94.208.99/@comment-22439-20141228102505\nThread:78.94.9.26/@comment-22439-20151215231750\nThread:78.96.200.67/@comment-22439-20150404150005\nThread:78.96.220.116/@comment-22439-20160116062627\nThread:78.96.65.97/@comment-22439-20160804150111\nThread:78.99.60.58/@comment-22439-20150402144056\nThread:79.103.185.66/@comment-22439-20160101181748\nThread:79.103.21.243/@comment-22439-20150104105818\nThread:79.103.246.50/@comment-22439-20160517194643\nThread:79.109.202.239/@comment-22439-20170412060923\nThread:79.112.137.47/@comment-22439-20160819085259\nThread:79.112.141.101/@comment-22439-20151025154300\nThread:79.112.177.99/@comment-22439-20160815104138\nThread:79.114.155.99/@comment-22439-20170505201703\nThread:79.114.165.92/@comment-22439-20160211101625\nThread:79.114.220.55/@comment-22439-20160830233048\nThread:79.115.243.105/@comment-22439-20150721091331\nThread:79.117.38.118/@comment-22439-20150626133452\nThread:79.117.55.0/@comment-22439-20150501151137\nThread:79.118.222.228/@comment-22439-20150622205140\nThread:79.119.110.159/@comment-22439-20151205184835\nThread:79.121.20.224/@comment-22439-20150319234118\nThread:79.127.132.137/@comment-22439-20151014123058\nThread:79.132.122.225/@comment-22439-20150516110719\nThread:79.132.19.230/@comment-22439-20150716112236\nThread:79.132.20.171/@comment-22439-20150820191802\nThread:79.132.22.204/@comment-22439-20150730112345\nThread:79.133.12.254/@comment-22439-20170719191135\nThread:79.135.232.5/@comment-22439-20160108195714\nThread:79.136.165.43/@comment-22439-20160529103920\nThread:79.139.243.2/@comment-22439-20150726031536\nThread:79.141.15.70/@comment-22439-20150213074504\nThread:79.141.58.24/@comment-22439-20170109103318\nThread:79.143.138.42/@comment-22439-20150611213445\nThread:79.154.88.31/@comment-22439-20150606071333\nThread:79.155.170.48/@comment-22439-20170508103217\nThread:79.159.133.221/@comment-22439-20160122172420\nThread:79.160.131.62/@comment-22439-20170107013845\nThread:79.161.128.34/@comment-22439-20140305192310\nThread:79.161.131.62/@comment-22439-20150114223540\nThread:79.164.31.61/@comment-22439-20141229224220\nThread:79.169.89.30/@comment-22439-20150928003524\nThread:79.17.104.93/@comment-22439-20170412150157\nThread:79.172.125.72/@comment-22439-20141227134629\nThread:79.176.73.12/@comment-22439-20150414181851\nThread:79.179.58.49/@comment-22439-20151110222626\nThread:79.181.127.231/@comment-22439-20150529130411\nThread:79.181.196.127/@comment-22439-20161029013331\nThread:79.183.176.214/@comment-22439-20151125230051\nThread:79.191.234.227/@comment-22439-20141221200906\nThread:79.191.38.240/@comment-22439-20160725152252\nThread:79.193.34.166/@comment-22439-20150201220446\nThread:79.194.108.67/@comment-22439-20160825164831\nThread:79.194.120.121/@comment-22439-20160821172619\nThread:79.195.37.221/@comment-22439-20160521155900\nThread:79.195.46.82/@comment-22439-20160131125331\nThread:79.195.49.230/@comment-22439-20160308211328\nThread:79.195.50.74/@comment-22439-20160516034832\nThread:79.195.62.197/@comment-22439-20160303053721\nThread:79.196.32.11/@comment-22439-20160313120943\nThread:79.197.202.17/@comment-22439-20160822141912\nThread:79.198.108.239/@comment-22439-20160406021204\nThread:79.198.253.109/@comment-22439-20160105170613\nThread:79.198.86.143/@comment-22439-20151104041109\nThread:79.199.110.193/@comment-22439-20141218155815\nThread:79.199.64.10/@comment-22439-20170423124240\nThread:79.20.105.231/@comment-22439-20151115212044\nThread:79.200.2.112/@comment-22439-20150906105746\nThread:79.201.227.66/@comment-22439-20150314134325\nThread:79.203.114.156/@comment-22439-20141221013906\nThread:79.204.240.237/@comment-22439-20141102021711\nThread:79.205.104.128/@comment-22439-20150309125044\nThread:79.205.111.88/@comment-22439-20150307180626\nThread:79.205.114.244/@comment-22439-20141230070610\nThread:79.205.116.209/@comment-22439-20150312142326\nThread:79.205.243.89/@comment-22439-20150111230947\nThread:79.205.44.127/@comment-22439-20141116212250\nThread:79.205.56.173/@comment-22439-20141115003451\nThread:79.208.228.27/@comment-22439-20150927194308\nThread:79.21.150.108/@comment-22439-20150304115925\nThread:79.213.216.193/@comment-32769624-20170827163616\nThread:79.215.227.123/@comment-22439-20150720212955\nThread:79.216.244.91/@comment-22439-20150124130405\nThread:79.216.249.239/@comment-22439-20150116190433\nThread:79.218.122.162/@comment-22439-20141019162221\nThread:79.219.99.178/@comment-22439-20161108133729\nThread:79.220.214.2/@comment-22439-20150413141254\nThread:79.220.230.248/@comment-22439-20150110025512\nThread:79.221.197.62/@comment-22439-20150320095503\nThread:79.221.253.173/@comment-22439-20161025180652\nThread:79.222.203.237/@comment-22439-20141223204045\nThread:79.223.132.169/@comment-22439-20150204205104\nThread:79.224.124.93/@comment-22439-20160319001612\nThread:79.224.184.243/@comment-22439-20141018021859\nThread:79.224.191.38/@comment-22439-20141011012003\nThread:79.225.102.183/@comment-22439-20141228011938\nThread:79.225.231.187/@comment-22439-20170119121810\nThread:79.226.26.167/@comment-22439-20150608105531\nThread:79.231.50.100/@comment-22439-20151103184629\nThread:79.232.209.124/@comment-22439-20150126034932\nThread:79.232.216.164/@comment-22439-20141227180941\nThread:79.232.221.239/@comment-22439-20150612193817\nThread:79.233.154.223/@comment-22439-20141226012532\nThread:79.234.94.241/@comment-22439-20160424234939\nThread:79.236.135.253/@comment-22439-20150418095644\nThread:79.238.73.196/@comment-22439-20150523091401\nThread:79.241.90.249/@comment-22439-20140912121835\nThread:79.243.224.3/@comment-22439-20150720184751\nThread:79.243.231.137/@comment-22439-20140905165450\nThread:79.243.235.81/@comment-22439-20150421145749\nThread:79.243.237.146/@comment-22439-20150606103249\nThread:79.243.245.38/@comment-22439-20151028054638\nThread:79.243.249.198/@comment-22439-20150107102051\nThread:79.244.2.47/@comment-22439-20160214204933\nThread:79.244.25.163/@comment-22439-20150401172933\nThread:79.244.27.156/@comment-22439-20150406182600\nThread:79.247.159.118/@comment-22439-20150609183130\nThread:79.247.179.65/@comment-22439-20150717104534\nThread:79.247.189.186/@comment-22439-20141129195741\nThread:79.247.217.220/@comment-22439-20150324230612\nThread:79.247.239.167/@comment-22439-20141114215944\nThread:79.248.199.23/@comment-22439-20141228171038\nThread:79.248.8.37/@comment-22439-20141227103318\nThread:79.25.17.237/@comment-22439-20150629115314\nThread:79.251.182.32/@comment-22439-20160117165343\nThread:79.253.105.2/@comment-22439-20150411003456\nThread:79.253.200.184/@comment-22439-20150208002504\nThread:79.253.55.65/@comment-22439-20150506130519\nThread:79.255.29.31/@comment-22439-20150705020428\nThread:79.255.30.127/@comment-22439-20160930224038\nThread:79.30.109.61/@comment-22439-20151106225835\nThread:79.33.217.65/@comment-22439-20160909225734\nThread:79.33.251.50/@comment-22439-20150521223251\nThread:79.36.58.114/@comment-22439-20150914101558\nThread:79.44.106.115/@comment-22439-20150730204232\nThread:79.45.174.1/@comment-22439-20150802174953\nThread:79.46.4.98/@comment-22439-20170625190849\nThread:79.51.109.51/@comment-22439-20160607165334\nThread:79.55.56.107/@comment-22439-20161201214917\nThread:79.55.59.230/@comment-22439-20170412212944\nThread:79.67.18.241/@comment-22439-20160826002523\nThread:79.67.194.48/@comment-22439-20170305081227\nThread:79.67.253.32/@comment-22439-20150111125606\nThread:79.68.119.156/@comment-22439-20161025070851\nThread:79.69.77.76/@comment-22439-20170602073758\nThread:79.71.106.176/@comment-22439-20160517181246\nThread:79.71.62.142/@comment-22439-20161218131008\nThread:79.73.178.109/@comment-22439-20170218111406\nThread:79.73.49.136/@comment-22439-20161108104809\nThread:79.73.94.181/@comment-22439-20161203023628\nThread:79.74.54.29/@comment-22439-20161225225201\nThread:79.76.203.21/@comment-22439-20160416215750\nThread:79.76.66.215/@comment-22439-20170418223627\nThread:79.77.235.48/@comment-22439-20140917125935\nThread:79.78.6.26/@comment-22439-20150720221436\nThread:79.79.102.11/@comment-22439-20150614175935\nThread:79.82.137.217/@comment-22439-20150118002538\nThread:79.97.180.189/@comment-22439-20150803010445\nThread:79.97.180.45/@comment-22439-20150409181717\nThread:79.97.224.118/@comment-4403388-20170812121634\nThread:79.97.30.226/@comment-22439-20160102030755\nThread:8.33.18.20/@comment-22439-20161029081701\nThread:8.40.194.229/@comment-22439-20170418014717\nThread:80.0.228.36/@comment-22439-20151213200833\nThread:80.0.59.65/@comment-22439-20150118164456\nThread:80.1.101.124/@comment-22439-20150716160455\nThread:80.1.60.38/@comment-22439-20150307163158\nThread:80.1.9.117/@comment-22439-20170110221149\nThread:80.100.95.40/@comment-22439-20141029000045\nThread:80.101.188.180/@comment-22439-20151214204241\nThread:80.108.203.62/@comment-22439-20150911000028\nThread:80.108.221.93/@comment-22439-20150122235433\nThread:80.109.128.234/@comment-22439-20150218094418\nThread:80.109.134.10/@comment-22439-20160108200825\nThread:80.109.146.224/@comment-22439-20141211013531\nThread:80.109.194.253/@comment-22439-20150330191904\nThread:80.109.236.18/@comment-22439-20150721101111\nThread:80.109.47.35/@comment-22439-20160101203755\nThread:80.110.105.156/@comment-22439-20150206102739\nThread:80.110.116.178/@comment-22439-20170205115043\nThread:80.110.39.112/@comment-22439-20150708072936\nThread:80.110.64.112/@comment-22439-20150228181738\nThread:80.110.67.214/@comment-22439-20160809223117\nThread:80.110.77.175/@comment-22439-20160501175326\nThread:80.110.82.196/@comment-22439-20150727000935\nThread:80.110.93.153/@comment-22439-20161024124549\nThread:80.111.140.32/@comment-22439-20150315132528\nThread:80.111.22.57/@comment-22439-20160129085408\nThread:80.111.234.149/@comment-22439-20150205181505\nThread:80.111.247.10/@comment-22439-20160823151135\nThread:80.113.15.250/@comment-22439-20141222065516\nThread:80.115.31.199/@comment-32769624-20170827204134\nThread:80.120.62.34/@comment-22439-20160112160335\nThread:80.120.62.38/@comment-22439-20161116080152\nThread:80.133.109.188/@comment-22439-20141223180702\nThread:80.133.117.85/@comment-22439-20160115134044\nThread:80.134.235.187/@comment-22439-20150323152021\nThread:80.134.40.141/@comment-22439-20150414080948\nThread:80.136.114.6/@comment-22439-20141207192238\nThread:80.136.127.83/@comment-22439-20141106073415\nThread:80.137.251.65/@comment-22439-20150107154829\nThread:80.14.134.74/@comment-22439-20150824210043\nThread:80.142.226.142/@comment-22439-20160904220413\nThread:80.147.137.81/@comment-22439-20160816150408\nThread:80.150.196.194/@comment-22439-20150519065020\nThread:80.150.9.115/@comment-22439-20150129144226\nThread:80.163.11.91/@comment-22439-20160218161800\nThread:80.165.170.140/@comment-22439-20141229055138\nThread:80.168.247.226/@comment-22439-20160129082217\nThread:80.171.0.9/@comment-22439-20170512071712\nThread:80.174.252.136/@comment-22439-20150719002521\nThread:80.174.252.156/@comment-22439-20160105151822\nThread:80.174.252.244/@comment-22439-20151226055732\nThread:80.177.152.137/@comment-22439-20170106043138\nThread:80.180.98.190/@comment-22439-20160206140025\nThread:80.183.28.120/@comment-22439-20150726184704\nThread:80.187.100.227/@comment-22439-20150619045801\nThread:80.187.108.37/@comment-22439-20150123085552\nThread:80.187.110.208/@comment-22439-20150203065857\nThread:80.187.112.178/@comment-22439-20150121034155\nThread:80.188.15.171/@comment-22439-20150717035016\nThread:80.188.214.177/@comment-22439-20170111175721\nThread:80.189.152.40/@comment-22439-20170502185223\nThread:80.189.171.9/@comment-22439-20141228172130\nThread:80.192.102.25/@comment-22439-20160210143607\nThread:80.192.67.172/@comment-22439-20150209210605\nThread:80.192.74.60/@comment-22439-20170124213419\nThread:80.193.22.86/@comment-22439-20150806023122\nThread:80.193.245.84/@comment-22439-20150621182333\nThread:80.193.245.85/@comment-22439-20150526155718\nThread:80.193.3.196/@comment-22439-20150201150838\nThread:80.193.74.199/@comment-22439-20151221151157\nThread:80.194.73.78/@comment-22439-20141225175117\nThread:80.195.188.127/@comment-22439-20150329093909\nThread:80.195.209.27/@comment-22439-20140305192311\nThread:80.195.74.41/@comment-22439-20150128114809\nThread:80.195.8.61/@comment-22439-20150109154036\nThread:80.2.150.3/@comment-22439-20160607155150\nThread:80.2.178.98/@comment-32769624-20170827225005\nThread:80.212.158.137/@comment-22439-20150425014800\nThread:80.212.158.185/@comment-22439-20150413191442\nThread:80.212.161.193/@comment-22439-20150120155419\nThread:80.212.228.80/@comment-22439-20160220171457\nThread:80.212.230.137/@comment-22439-20150322121856\nThread:80.212.236.99/@comment-22439-20150708173605\nThread:80.212.24.57/@comment-22439-20150128031116\nThread:80.213.234.192/@comment-22439-20151202210508\nThread:80.213.76.115/@comment-22439-20141203174655\nThread:80.213.77.155/@comment-22439-20141202155934\nThread:80.215.234.180/@comment-22439-20160419202016\nThread:80.216.135.51/@comment-22439-20150312184852\nThread:80.216.171.85/@comment-22439-20141221211417\nThread:80.216.77.80/@comment-22439-20140924183725\nThread:80.216.86.128/@comment-22439-20161229194510\nThread:80.217.157.78/@comment-22439-20141211005727\nThread:80.218.223.150/@comment-22439-20150310184411\nThread:80.218.3.68/@comment-22439-20170417160849\nThread:80.220.35.25/@comment-22439-20170604090931\nThread:80.220.92.74/@comment-22439-20160819182617\nThread:80.221.138.150/@comment-22439-20150127071602\nThread:80.221.148.154/@comment-22439-20150102142118\nThread:80.221.171.242/@comment-22439-20150610002343\nThread:80.221.50.176/@comment-22439-20151213163205\nThread:80.222.114.254/@comment-22439-20151015100000\nThread:80.222.155.189/@comment-22439-20151231190424\nThread:80.222.217.119/@comment-22439-20150514140515\nThread:80.222.81.4/@comment-22439-20151022171343\nThread:80.223.182.194/@comment-22439-20150627100211\nThread:80.223.26.90/@comment-22439-20141011155304\nThread:80.229.110.64/@comment-22439-20150516150338\nThread:80.229.13.26/@comment-22439-20150921024225\nThread:80.229.143.166/@comment-22439-20150719122559\nThread:80.229.15.21/@comment-22439-20150129222500\nThread:80.229.150.152/@comment-22439-20150217185057\nThread:80.229.154.141/@comment-22439-20140928011227\nThread:80.229.161.75/@comment-22439-20161009190821\nThread:80.229.174.143/@comment-22439-20160603125533\nThread:80.229.22.61/@comment-22439-20150104105831\nThread:80.229.229.152/@comment-22439-20150920202017\nThread:80.229.23.190/@comment-108.71.150.23-20160911231537\nThread:80.229.23.190/@comment-22439-20160819200009\nThread:80.249.216.107/@comment-22439-20150331081457\nThread:80.249.216.130/@comment-22439-20170711105153\nThread:80.252.76.19/@comment-22439-20141125140832\nThread:80.26.205.177/@comment-22439-20170415174537\nThread:80.28.130.111/@comment-22439-20150708160329\nThread:80.3.149.141/@comment-22439-20150505150710\nThread:80.3.213.253/@comment-22439-20150211181535\nThread:80.37.191.82/@comment-22439-20170328111024\nThread:80.4.215.90/@comment-22439-20170226224208\nThread:80.41.146.156/@comment-22439-20150422163702\nThread:80.41.21.62/@comment-22439-20150305074113\nThread:80.42.159.101/@comment-22439-20150128165837\nThread:80.42.19.88/@comment-22439-20151218180707\nThread:80.42.253.35/@comment-22439-20170603102010\nThread:80.43.126.71/@comment-22439-20150531115952\nThread:80.43.151.251/@comment-22439-20161115192135\nThread:80.44.139.102/@comment-22439-20151217144507\nThread:80.44.230.0/@comment-22439-20160116214414\nThread:80.44.238.58/@comment-22439-20131014004422\nThread:80.47.132.224/@comment-22439-20140907161602\nThread:80.47.140.234/@comment-22439-20141224024007\nThread:80.47.173.125/@comment-22439-20141226194325\nThread:80.47.174.194/@comment-22439-20141220144213\nThread:80.47.30.51/@comment-22439-20160221115211\nThread:80.5.101.139/@comment-22439-20150124123007\nThread:80.5.242.25/@comment-22439-20150118130643\nThread:80.5.32.58/@comment-22439-20160831145011\nThread:80.55.253.114/@comment-22439-20160311090823\nThread:80.56.61.209/@comment-22439-20151228005857\nThread:80.56.73.132/@comment-22439-20150406155657\nThread:80.57.106.52/@comment-22439-20150119121700\nThread:80.6.229.219/@comment-22439-20150122005147\nThread:80.6.247.196/@comment-22439-20141224074626\nThread:80.60.1.5/@comment-22439-20150106112500\nThread:80.60.18.111/@comment-22439-20141226214620\nThread:80.60.35.115/@comment-22439-20141224155304\nThread:80.60.64.182/@comment-22439-20150621223253\nThread:80.61.254.161/@comment-22439-20150411120725\nThread:80.7.103.106/@comment-22439-20151112171809\nThread:80.7.16.47/@comment-22439-20150705130715\nThread:80.7.18.249/@comment-22439-20150902152402\nThread:80.7.76.127/@comment-22439-20170414012835\nThread:80.71.134.129/@comment-22439-20151217225135\nThread:80.72.153.238/@comment-22439-20150111003651\nThread:80.82.132.27/@comment-22439-20150623065200\nThread:80.83.225.3/@comment-22439-20160316230843\nThread:80.84.200.215/@comment-22439-20150418170412\nThread:80.84.212.33/@comment-22439-20160116030211\nThread:80.94.160.227/@comment-22439-20161010082550\nThread:80.95.139.66/@comment-22439-20150930054235\nThread:80.98.18.7/@comment-32769624-20170823204117\nThread:80.98.186.135/@comment-22439-20150124111032\nThread:80.98.193.215/@comment-22439-20150330232006\nThread:81.100.120.55/@comment-22439-20150215101758\nThread:81.100.201.225/@comment-22439-20130907213819\nThread:81.100.244.37/@comment-22439-20150920120935\nThread:81.100.56.210/@comment-22439-20150711162254\nThread:81.101.130.146/@comment-22439-20141229215315\nThread:81.101.152.100/@comment-22439-20160107013809\nThread:81.101.206.144/@comment-22439-20160612144914\nThread:81.101.244.165/@comment-22439-20170414185809\nThread:81.101.97.103/@comment-22439-20150109044514\nThread:81.102.62.62/@comment-22439-20140923134128\nThread:81.102.75.101/@comment-22439-20141219115137\nThread:81.103.227.24/@comment-22439-20160911172150\nThread:81.104.19.169/@comment-22439-20150807224626\nThread:81.104.211.104/@comment-22439-20160116175234\nThread:81.104.85.31/@comment-22439-20160514081129\nThread:81.105.110.197/@comment-22439-20141030060954\nThread:81.105.21.73/@comment-22439-20150102235429\nThread:81.106.113.212/@comment-22439-20150721030244\nThread:81.106.156.32/@comment-22439-20160720223818\nThread:81.106.231.88/@comment-22439-20160216165419\nThread:81.106.30.12/@comment-22439-20160814145517\nThread:81.107.129.214/@comment-22439-20130131193215\nThread:81.107.173.246/@comment-22439-20150725202031\nThread:81.108.110.165/@comment-22439-20150629112821\nThread:81.108.218.120/@comment-22439-20150618190153\nThread:81.108.238.246/@comment-22439-20160825215748\nThread:81.108.59.113/@comment-22439-20170330061152\nThread:81.109.67.129/@comment-22439-20150716210849\nThread:81.11.181.167/@comment-22439-20141218030533\nThread:81.11.221.167/@comment-22439-20150511000743\nThread:81.110.26.28/@comment-22439-20141229203909\nThread:81.110.55.228/@comment-22439-20150722232244\nThread:81.110.84.203/@comment-22439-20151221143826\nThread:81.110.85.231/@comment-32769624-20170820101227\nThread:81.111.151.164/@comment-22439-20150110235633\nThread:81.111.64.150/@comment-22439-20141227180955\nThread:81.111.66.65/@comment-22439-20150130115333\nThread:81.111.74.55/@comment-22439-20170205134211\nThread:81.129.206.14/@comment-22439-20150930201451\nThread:81.129.247.82/@comment-22439-20160107021137\nThread:81.129.4.51/@comment-22439-20141224175945\nThread:81.129.71.10/@comment-22439-20150112010917\nThread:81.129.80.199/@comment-22439-20141004193323\nThread:81.130.10.7/@comment-22439-20150406213340\nThread:81.130.208.76/@comment-22439-20130106115037\nThread:81.130.215.225/@comment-22439-20141229223701\nThread:81.130.86.3/@comment-22439-20150324104819\nThread:81.131.142.33/@comment-22439-20141010112448\nThread:81.131.199.67/@comment-22439-20170321204309\nThread:81.131.207.139/@comment-22439-20170730162208\nThread:81.132.13.113/@comment-22439-20150330185914\nThread:81.132.13.30/@comment-22439-20150116234053\nThread:81.132.201.121/@comment-22439-20160108174140\nThread:81.132.207.230/@comment-22439-20160828145912\nThread:81.132.38.91/@comment-22439-20150827231050\nThread:81.133.221.77/@comment-22439-20150113095243\nThread:81.136.133.166/@comment-22439-20140915154716\nThread:81.136.144.118/@comment-22439-20170106210503\nThread:81.136.167.184/@comment-22439-20170413093448\nThread:81.136.36.111/@comment-22439-20151101134437\nThread:81.136.54.170/@comment-22439-20160118232359\nThread:81.136.66.138/@comment-22439-20150927161325\nThread:81.138.5.166/@comment-32769624-20170820095656\nThread:81.139.105.160/@comment-22439-20151019112555\nThread:81.139.192.2/@comment-22439-20150918090235\nThread:81.140.232.49/@comment-22439-20170409002603\nThread:81.140.39.179/@comment-22439-20150926022100\nThread:81.141.103.97/@comment-22439-20150217194926\nThread:81.141.149.218/@comment-22439-20150925140740\nThread:81.141.202.85/@comment-5959508-20130426153350\nThread:81.141.34.77/@comment-22439-20141230002304\nThread:81.141.52.40/@comment-22439-20160106174629\nThread:81.141.53.110/@comment-22439-20151031154833\nThread:81.141.86.148/@comment-22439-20150923214602\nThread:81.144.150.66/@comment-22439-20150212105009\nThread:81.144.225.226/@comment-22439-20150312131259\nThread:81.145.128.34/@comment-22439-20150506093541\nThread:81.146.24.187/@comment-22439-20150815185414\nThread:81.146.58.170/@comment-22439-20150608053900\nThread:81.147.134.149/@comment-22439-20151003143300\nThread:81.147.152.94/@comment-22439-20170128182125\nThread:81.148.186.14/@comment-22439-20150909133016\nThread:81.149.33.239/@comment-22439-20151026154626\nThread:81.15.241.12/@comment-22439-20160222151558\nThread:81.151.182.197/@comment-22439-20150531143117\nThread:81.151.212.226/@comment-22439-20170427174141\nThread:81.151.56.27/@comment-22439-20150304204618\nThread:81.151.57.137/@comment-22439-20150425220832\nThread:81.151.64.119/@comment-22439-20150119131405\nThread:81.151.7.33/@comment-22439-20150204024220\nThread:81.151.71.193/@comment-22439-20160104044045\nThread:81.152.101.235/@comment-22439-20140128021136\nThread:81.152.125.18/@comment-22439-20150502183504\nThread:81.152.138.220/@comment-22439-20130708125700\nThread:81.152.20.197/@comment-22439-20150122211750\nThread:81.152.210.59/@comment-22439-20151115195154\nThread:81.152.49.243/@comment-22439-20160725223528\nThread:81.152.96.100/@comment-22439-20150609203858\nThread:81.152.97.130/@comment-22439-20150309002600\nThread:81.153.241.147/@comment-22439-20150408091602\nThread:81.153.4.84/@comment-22439-20160525200831\nThread:81.153.58.135/@comment-22439-20151103203501\nThread:81.154.183.209/@comment-22439-20170221224645\nThread:81.154.79.71/@comment-22439-20141004104930\nThread:81.156.83.205/@comment-22439-20141230010554\nThread:81.157.154.30/@comment-22439-20150722105507\nThread:81.157.157.132/@comment-22439-20140918233804\nThread:81.157.247.221/@comment-22439-20151020164051\nThread:81.157.83.178/@comment-22439-20150208113246\nThread:81.158.158.199/@comment-22439-20150208000057\nThread:81.158.158.46/@comment-22439-20150524145612\nThread:81.158.2.193/@comment-22439-20151018214512\nThread:81.158.219.0/@comment-22439-20170419015613\nThread:81.158.58.102/@comment-22439-20151231111358\nThread:81.158.84.224/@comment-22439-20161115223758\nThread:81.158.84.248/@comment-22439-20160525171621\nThread:81.159.132.78/@comment-22439-20150425003454\nThread:81.159.210.189/@comment-22439-20170212161142\nThread:81.159.221.174/@comment-22439-20130623183908\nThread:81.159.72.252/@comment-32769624-20170822174515\nThread:81.159.75.181/@comment-22439-20170411062603\nThread:81.159.96.241/@comment-22439-20150919184850\nThread:81.164.183.148/@comment-22439-20141202185020\nThread:81.166.147.118/@comment-22439-20150221154935\nThread:81.166.196.79/@comment-22439-20150105175951\nThread:81.167.168.226/@comment-22439-20150404220649\nThread:81.167.170.217/@comment-22439-20150102203048\nThread:81.169.254.165/@comment-22439-20150628134153\nThread:81.170.8.5/@comment-22439-20140919110413\nThread:81.171.59.12/@comment-22439-20151223031716\nThread:81.172.103.170/@comment-22439-20151216045216\nThread:81.174.146.46/@comment-22439-20130130171625\nThread:81.174.149.221/@comment-22439-20160117180229\nThread:81.174.168.37/@comment-22439-20170123233344\nThread:81.174.170.145/@comment-22439-20130708162826\nThread:81.174.171.1/@comment-22439-20141101173624\nThread:81.174.201.41/@comment-22439-20141218190834\nThread:81.174.204.220/@comment-22439-20150717204459\nThread:81.174.240.66/@comment-22439-20130131223646\nThread:81.174.250.56/@comment-22439-20150819212249\nThread:81.174.56.113/@comment-22439-20141211001136\nThread:81.175.150.135/@comment-22439-20150403110006\nThread:81.175.198.68/@comment-22439-20150103000312\nThread:81.175.226.81/@comment-22439-20151026210047\nThread:81.175.232.78/@comment-22439-20150504161532\nThread:81.178.191.241/@comment-22439-20150105152807\nThread:81.18.252.166/@comment-22439-20150113105955\nThread:81.18.89.62/@comment-22439-20160130165659\nThread:81.184.173.137/@comment-22439-20151202181647\nThread:81.187.73.38/@comment-22439-20160918184845\nThread:81.19.46.120/@comment-22439-20160126123430\nThread:81.191.148.175/@comment-22439-20150513175321\nThread:81.191.154.157/@comment-22439-20170219214728\nThread:81.198.105.59/@comment-22439-20150703141812\nThread:81.198.252.58/@comment-22439-20150215143503\nThread:81.20.177.221/@comment-22439-20130924201946\nThread:81.20.189.90/@comment-22439-20160821131816\nThread:81.205.66.160/@comment-22439-20160220160531\nThread:81.206.232.113/@comment-22439-20150619084546\nThread:81.215.55.22/@comment-22439-20150722154531\nThread:81.216.34.35/@comment-22439-20151217121724\nThread:81.217.157.133/@comment-22439-20150507071441\nThread:81.217.203.94/@comment-22439-20160929181503\nThread:81.22.22.199/@comment-22439-20150116115252\nThread:81.220.61.212/@comment-22439-20150802142232\nThread:81.224.203.221/@comment-22439-20151217172958\nThread:81.225.196.146/@comment-22439-20141226194936\nThread:81.226.219.116/@comment-22439-20150715143908\nThread:81.226.242.104/@comment-22439-20141215101427\nThread:81.227.31.244/@comment-22439-20150509065927\nThread:81.231.146.227/@comment-22439-20141226170435\nThread:81.231.248.122/@comment-22439-20151118104545\nThread:81.231.85.115/@comment-22439-20151117115953\nThread:81.232.14.88/@comment-22439-20150917172950\nThread:81.232.74.139/@comment-22439-20141230232750\nThread:81.233.166.70/@comment-22439-20150208004319\nThread:81.233.169.151/@comment-22439-20150324191317\nThread:81.233.188.161/@comment-22439-20151203024925\nThread:81.234.22.43/@comment-22439-20150911174510\nThread:81.235.174.224/@comment-22439-20150420101548\nThread:81.240.20.85/@comment-22439-20150103144653\nThread:81.241.112.56/@comment-22439-20160123094739\nThread:81.241.68.45/@comment-22439-20150125001555\nThread:81.241.79.159/@comment-22439-20160114172316\nThread:81.242.254.116/@comment-22439-20151020144642\nThread:81.243.24.99/@comment-22439-20150610232201\nThread:81.244.95.49/@comment-22439-20170415163319\nThread:81.245.42.174/@comment-22439-20160117131931\nThread:81.245.73.96/@comment-22439-20160115212144\nThread:81.247.112.153/@comment-22439-20161020121655\nThread:81.25.53.116/@comment-22439-20160610112529\nThread:81.250.115.175/@comment-22439-20160116113439\nThread:81.250.58.244/@comment-22439-20151205114521\nThread:81.252.186.92/@comment-22439-20170710070645\nThread:81.30.141.120/@comment-22439-20150920091306\nThread:81.32.186.145/@comment-22439-20160105065720\nThread:81.33.233.240/@comment-22439-20160524231218\nThread:81.36.50.248/@comment-22439-20150114170530\nThread:81.37.229.120/@comment-22439-20160520131831\nThread:81.39.30.135/@comment-22439-20170302182255\nThread:81.47.172.156/@comment-22439-20150213112147\nThread:81.5.154.231/@comment-22439-20150205134218\nThread:81.56.185.201/@comment-22439-20150315191840\nThread:81.61.32.123/@comment-22439-20150110002943\nThread:81.63.182.173/@comment-22439-20150121180958\nThread:81.66.132.255/@comment-22439-20151218180231\nThread:81.67.118.215/@comment-22439-20140928120258\nThread:81.68.94.147/@comment-22439-20160203154834\nThread:81.82.184.192/@comment-22439-20161016095444\nThread:81.83.13.34/@comment-22439-20150205134322\nThread:81.84.154.81/@comment-22439-20150412132333\nThread:81.88.116.141/@comment-22439-20160808225943\nThread:81.90.253.5/@comment-22439-20150804170318\nThread:81.95.15.26/@comment-22439-20140923140918\nThread:81.96.67.66/@comment-22439-20150108231758\nThread:81.96.85.157/@comment-22439-20140526093159\nThread:81.96.91.239/@comment-22439-20150122202908\nThread:81.97.42.7/@comment-22439-20170611072615\nThread:81.97.78.137/@comment-22439-20170402121404\nThread:81.98.186.16/@comment-22439-20150123061659\nThread:81.98.192.213/@comment-22439-20150130160611\nThread:81.98.227.73/@comment-22439-20150306170422\nThread:81.99.72.216/@comment-22439-20151107183442\nThread:82.0.120.182/@comment-22439-20170711014600\nThread:82.0.145.148/@comment-22439-20160202164237\nThread:82.0.22.181/@comment-22439-20151020221813\nThread:82.0.221.126/@comment-22439-20150111001922\nThread:82.0.39.170/@comment-22439-20150728123736\nThread:82.1.165.161/@comment-22439-20150119151921\nThread:82.1.61.12/@comment-22439-20160114195451\nThread:82.1.69.183/@comment-22439-20170725072907\nThread:82.10.220.160/@comment-22439-20150709174049\nThread:82.11.121.5/@comment-22439-20141222024238\nThread:82.11.164.143/@comment-22439-20150630182546\nThread:82.11.35.107/@comment-22439-20141216212133\nThread:82.11.55.208/@comment-22439-20150926184025\nThread:82.11.99.50/@comment-22439-20150421101118\nThread:82.110.109.210/@comment-22439-20160218093907\nThread:82.114.198.67/@comment-22439-20150107171508\nThread:82.114.238.99/@comment-22439-20151101082132\nThread:82.116.230.171/@comment-22439-20150123061121\nThread:82.118.101.129/@comment-22439-20150214021923\nThread:82.12.77.226/@comment-22439-20150111143724\nThread:82.120.134.247/@comment-22439-20151221214931\nThread:82.122.78.155/@comment-22439-20130915100306\nThread:82.125.95.178/@comment-22439-20160824131017\nThread:82.127.12.228/@comment-22439-20160105123756\nThread:82.128.249.206/@comment-22439-20150125094902\nThread:82.13.81.93/@comment-22439-20141118200023\nThread:82.131.142.171/@comment-22439-20141114220515\nThread:82.131.175.253/@comment-22439-20150613181124\nThread:82.131.223.203/@comment-22439-20161219192533\nThread:82.131.42.61/@comment-22439-20160126121605\nThread:82.131.43.204/@comment-22439-20150208183946\nThread:82.132.212.222/@comment-22439-20150615092114\nThread:82.132.217.164/@comment-22439-20160405160832\nThread:82.132.230.190/@comment-22439-20150806060854\nThread:82.132.237.13/@comment-22439-20160714140450\nThread:82.134.233.131/@comment-22439-20151004173512\nThread:82.135.204.166/@comment-22439-20170222231215\nThread:82.137.13.217/@comment-22439-20150829114144\nThread:82.137.15.81/@comment-22439-20141102154948\nThread:82.14.162.11/@comment-22439-20150724214830\nThread:82.14.27.89/@comment-22439-20160910165257\nThread:82.14.57.165/@comment-22439-20170705231458\nThread:82.14.65.155/@comment-22439-20141119222659\nThread:82.145.220.235/@comment-22439-20160716124830\nThread:82.145.220.53/@comment-22439-20161207154430\nThread:82.147.248.98/@comment-22439-20141008114733\nThread:82.148.166.90/@comment-22439-20151207214523\nThread:82.15.177.28/@comment-22439-20160106002538\nThread:82.151.111.197/@comment-22439-20160903225003\nThread:82.153.100.10/@comment-22439-20151205005247\nThread:82.153.112.55/@comment-22439-20151221192506\nThread:82.156.116.254/@comment-22439-20150401121930\nThread:82.16.119.45/@comment-22439-20160803001010\nThread:82.16.131.141/@comment-22439-20150311082345\nThread:82.16.196.92/@comment-22439-20160819202716\nThread:82.16.43.241/@comment-22439-20170514004529\nThread:82.16.53.59/@comment-22439-20150806063334\nThread:82.161.204.126/@comment-22439-20161102084144\nThread:82.161.55.18/@comment-22439-20160713112134\nThread:82.166.140.125/@comment-22439-20151111130558\nThread:82.168.105.216/@comment-22439-20151217145837\nThread:82.169.234.224/@comment-22439-20141229043906\nThread:82.169.90.156/@comment-22439-20141221041850\nThread:82.17.194.229/@comment-22439-20130112171904\nThread:82.17.223.212/@comment-22439-20150830084856\nThread:82.17.84.126/@comment-22439-20150110210510\nThread:82.18.130.34/@comment-22439-20150118001219\nThread:82.18.133.13/@comment-22439-20160422135152\nThread:82.18.159.110/@comment-22439-20170422124655\nThread:82.18.176.185/@comment-22439-20150714202552\nThread:82.18.232.243/@comment-22439-20141130170539\nThread:82.18.248.165/@comment-22439-20150411184502\nThread:82.181.31.246/@comment-22439-20151024130829\nThread:82.181.36.147/@comment-22439-20141220221043\nThread:82.181.70.174/@comment-22439-20141128213549\nThread:82.19.125.83/@comment-22439-20150215043858\nThread:82.19.14.126/@comment-22439-20150721153209\nThread:82.19.145.5/@comment-22439-20150722143108\nThread:82.190.5.212/@comment-32769624-20170818122848\nThread:82.192.226.115/@comment-22439-20160816152956\nThread:82.192.241.30/@comment-22439-20150102233125\nThread:82.192.46.88/@comment-22439-20151218153039\nThread:82.194.220.22/@comment-22439-20150108133529\nThread:82.196.124.194/@comment-22439-20170512171531\nThread:82.197.195.147/@comment-22439-20150827085041\nThread:82.197.212.7/@comment-22439-20150108005515\nThread:82.2.125.150/@comment-22439-20170414135121\nThread:82.2.143.109/@comment-22439-20151201222226\nThread:82.2.18.76/@comment-22439-20150312223348\nThread:82.2.198.74/@comment-22439-20151109014425\nThread:82.2.44.42/@comment-22439-20160213223657\nThread:82.2.45.99/@comment-22439-20170216162237\nThread:82.2.74.231/@comment-22439-20170425125044\nThread:82.2.79.60/@comment-22439-20150119212948\nThread:82.2.95.19/@comment-22439-20150319142313\nThread:82.20.100.207/@comment-22439-20150503141445\nThread:82.20.218.159/@comment-22439-20151220223430\nThread:82.20.25.193/@comment-22439-20150125064003\nThread:82.20.30.42/@comment-22439-20160723010344\nThread:82.20.43.167/@comment-22439-20151107020820\nThread:82.208.5.86/@comment-22439-20150310204436\nThread:82.209.144.12/@comment-22439-20150112170720\nThread:82.209.179.35/@comment-22439-20170417133512\nThread:82.21.19.62/@comment-22439-20141123230735\nThread:82.21.35.72/@comment-22439-20170717195857\nThread:82.21.94.67/@comment-22439-20151214200133\nThread:82.211.216.102/@comment-22439-20150224181544\nThread:82.211.217.195/@comment-22439-20150111042550\nThread:82.216.129.175/@comment-22439-20160321044328\nThread:82.217.13.233/@comment-22439-20160718083057\nThread:82.217.212.189/@comment-22439-20160427202502\nThread:82.217.54.242/@comment-22439-20160811231117\nThread:82.218.226.157/@comment-22439-20151013093823\nThread:82.22.201.255/@comment-22439-20150625012941\nThread:82.22.60.40/@comment-22439-20150417064455\nThread:82.220.1.196/@comment-22439-20141016074930\nThread:82.222.130.189/@comment-22439-20150124194413\nThread:82.224.162.129/@comment-22439-20150214162346\nThread:82.224.162.129/@comment-82.224.162.129-20150319103158\nThread:82.226.121.139/@comment-22439-20141209034252\nThread:82.227.123.100/@comment-22439-20160618212813\nThread:82.227.178.47/@comment-22439-20150128042114\nThread:82.227.254.38/@comment-22439-20141226234923\nThread:82.227.5.100/@comment-22439-20141216005507\nThread:82.228.151.108/@comment-22439-20160802125102\nThread:82.228.231.76/@comment-22439-20160515231149\nThread:82.23.244.3/@comment-22439-20151017215125\nThread:82.230.123.144/@comment-22439-20150131001155\nThread:82.233.116.4/@comment-22439-20160826004705\nThread:82.235.0.168/@comment-22439-20150111110614\nThread:82.237.248.209/@comment-22439-20170115164411\nThread:82.239.91.95/@comment-22439-20150623170759\nThread:82.24.105.102/@comment-22439-20150414164659\nThread:82.24.227.152/@comment-22439-20150824075712\nThread:82.24.229.51/@comment-22439-20150102193320\nThread:82.24.250.176/@comment-22439-20170228001222\nThread:82.24.57.204/@comment-22439-20150224013329\nThread:82.241.236.151/@comment-22439-20150506200929\nThread:82.244.46.35/@comment-22439-20150827000549\nThread:82.244.88.189/@comment-22439-20151216182837\nThread:82.246.228.179/@comment-22439-20150719121952\nThread:82.247.216.222/@comment-22439-20170628130048\nThread:82.247.70.239/@comment-4403388-20170811140203\nThread:82.25.132.84/@comment-22439-20151205035339\nThread:82.25.175.6/@comment-22439-20160530145516\nThread:82.25.185.43/@comment-22439-20150520051035\nThread:82.25.20.248/@comment-22439-20150822005203\nThread:82.25.91.128/@comment-22439-20151201231045\nThread:82.25.92.103/@comment-22439-20151022181817\nThread:82.250.222.63/@comment-22439-20150322234302\nThread:82.254.37.126/@comment-22439-20151210191340\nThread:82.26.114.24/@comment-22439-20170122020159\nThread:82.26.149.254/@comment-22439-20150128173004\nThread:82.26.164.194/@comment-22439-20151217132634\nThread:82.26.184.167/@comment-22439-20140413085548\nThread:82.27.106.72/@comment-22439-20150317062155\nThread:82.27.25.6/@comment-22439-20150511213759\nThread:82.28.120.225/@comment-22439-20150707035908\nThread:82.28.154.132/@comment-22439-20170312134757\nThread:82.28.166.251/@comment-22439-20170129013124\nThread:82.28.172.248/@comment-5959508-20130527233101\nThread:82.28.175.202/@comment-22439-20170603154909\nThread:82.28.239.89/@comment-22439-20160111210725\nThread:82.29.12.196/@comment-22439-20170629022757\nThread:82.29.169.45/@comment-22439-20150524004431\nThread:82.29.186.189/@comment-22439-20150606221720\nThread:82.3.104.115/@comment-22439-20160318192214\nThread:82.3.188.41/@comment-22439-20160421184833\nThread:82.3.191.15/@comment-22439-20150919225850\nThread:82.3.206.100/@comment-22439-20150430074241\nThread:82.3.208.151/@comment-22439-20151225170348\nThread:82.3.6.64/@comment-22439-20151031183400\nThread:82.3.86.66/@comment-22439-20160227101854\nThread:82.30.236.238/@comment-22439-20150610094413\nThread:82.31.165.217/@comment-22439-20170107142052\nThread:82.31.177.188/@comment-22439-20141216234703\nThread:82.31.188.60/@comment-22439-20150927201059\nThread:82.31.33.36/@comment-22439-20151112103928\nThread:82.31.34.186/@comment-22439-20141223174603\nThread:82.31.97.0/@comment-22439-20160326191723\nThread:82.32.79.85/@comment-22439-20150629175052\nThread:82.33.100.31/@comment-22439-20150407233925\nThread:82.33.117.165/@comment-22439-20160325222722\nThread:82.33.246.130/@comment-22439-20161212104831\nThread:82.33.30.158/@comment-22439-20141124140640\nThread:82.34.20.208/@comment-22439-20170423231424\nThread:82.34.83.113/@comment-22439-20160126221502\nThread:82.35.108.29/@comment-22439-20160124105118\nThread:82.35.136.86/@comment-22439-20150107030908\nThread:82.35.139.120/@comment-22439-20150415094940\nThread:82.35.144.5/@comment-22439-20151001224243\nThread:82.35.148.35/@comment-22439-20161114171535\nThread:82.35.224.103/@comment-22439-20150501175358\nThread:82.35.94.224/@comment-22439-20150315223506\nThread:82.36.103.204/@comment-22439-20141227192038\nThread:82.36.112.212/@comment-22439-20150222215311\nThread:82.36.199.64/@comment-22439-20141206030153\nThread:82.36.221.32/@comment-22439-20151221110312\nThread:82.36.89.8/@comment-22439-20150122202248\nThread:82.37.135.121/@comment-4403388-20170811164835\nThread:82.37.138.189/@comment-22439-20151115195128\nThread:82.37.213.132/@comment-22439-20160304183800\nThread:82.37.7.24/@comment-22439-20151018171152\nThread:82.38.144.39/@comment-22439-20170709211215\nThread:82.38.158.47/@comment-22439-20160602215750\nThread:82.38.185.71/@comment-22439-20160527011300\nThread:82.38.246.95/@comment-22439-20150601124050\nThread:82.38.252.29/@comment-22439-20150314020726\nThread:82.38.51.32/@comment-22439-20160831225527\nThread:82.38.93.66/@comment-22439-20170706192245\nThread:82.39.104.24/@comment-22439-20151031154110\nThread:82.4.187.184/@comment-22439-20150606163149\nThread:82.4.71.151/@comment-22439-20150606164708\nThread:82.40.25.154/@comment-22439-20170209012905\nThread:82.40.40.25/@comment-22439-20170722205445\nThread:82.41.159.118/@comment-22439-20150521193508\nThread:82.41.46.198/@comment-22439-20160525144603\nThread:82.41.65.176/@comment-22439-20160130123055\nThread:82.42.214.76/@comment-22439-20150802212538\nThread:82.43.128.159/@comment-22439-20150411113042\nThread:82.43.173.210/@comment-22439-20170731190812\nThread:82.43.43.240/@comment-22439-20160814225847\nThread:82.43.82.64/@comment-22439-20161218171100\nThread:82.43.87.96/@comment-22439-20160102135422\nThread:82.43.91.57/@comment-22439-20160403195745\nThread:82.43.94.186/@comment-22439-20170503223253\nThread:82.43.96.64/@comment-22439-20160110122608\nThread:82.44.159.112/@comment-22439-20161122190801\nThread:82.44.57.175/@comment-22439-20150113211119\nThread:82.45.170.141/@comment-22439-20150604202321\nThread:82.45.19.147/@comment-22439-20150318153006\nThread:82.45.20.13/@comment-22439-20141003203328\nThread:82.45.236.70/@comment-22439-20141215145129\nThread:82.45.31.202/@comment-22439-20150322224816\nThread:82.45.41.26/@comment-22439-20140922183302\nThread:82.45.48.66/@comment-22439-20151228141526\nThread:82.46.123.131/@comment-22439-20170713110040\nThread:82.46.180.86/@comment-22439-20130728185331\nThread:82.47.167.18/@comment-22439-20141108232403\nThread:82.47.191.91/@comment-22439-20150106133823\nThread:82.47.212.225/@comment-22439-20150831074258\nThread:82.47.233.130/@comment-22439-20160909204041\nThread:82.47.94.124/@comment-22439-20161130200644\nThread:82.48.66.234/@comment-22439-20160121211228\nThread:82.49.158.212/@comment-22439-20170804123328\nThread:82.49.169.40/@comment-22439-20150313124806\nThread:82.5.118.61/@comment-22439-20150415164148\nThread:82.5.247.253/@comment-22439-20141124144029\nThread:82.5.251.131/@comment-22439-20160818201725\nThread:82.53.50.162/@comment-22439-20170130134132\nThread:82.6.176.130/@comment-22439-20160812041232\nThread:82.61.91.249/@comment-22439-20150429003618\nThread:82.66.117.115/@comment-22439-20151204213549\nThread:82.67.222.125/@comment-22439-20160904140135\nThread:82.67.24.137/@comment-22439-20150506153447\nThread:82.68.149.138/@comment-22439-20170512052526\nThread:82.68.149.142/@comment-22439-20151017093407\nThread:82.69.108.71/@comment-22439-20150907172744\nThread:82.69.22.226/@comment-22439-20150219091210\nThread:82.69.31.190/@comment-22439-20150614091935\nThread:82.69.79.251/@comment-22439-20150528154436\nThread:82.69.9.196/@comment-22439-20150829200504\nThread:82.69.95.27/@comment-22439-20150114183010\nThread:82.7.139.174/@comment-22439-20141227201041\nThread:82.7.154.17/@comment-22439-20160820215442\nThread:82.7.216.22/@comment-22439-20160318221153\nThread:82.71.19.127/@comment-22439-20151022105154\nThread:82.71.34.195/@comment-22439-20150428114838\nThread:82.71.63.52/@comment-22439-20150927155953\nThread:82.71.9.96/@comment-22439-20170325223019\nThread:82.72.141.146/@comment-22439-20170627144934\nThread:82.72.90.35/@comment-22439-20170708223449\nThread:82.74.25.252/@comment-22439-20170607145020\nThread:82.75.252.114/@comment-22439-20150725212913\nThread:82.75.82.55/@comment-22439-20141230082957\nThread:82.76.217.215/@comment-22439-20160109115630\nThread:82.78.205.19/@comment-22439-20151216190420\nThread:82.8.139.112/@comment-22439-20150430130810\nThread:82.8.142.45/@comment-22439-20141231160046\nThread:82.8.47.72/@comment-22439-20130102210020\nThread:82.81.17.90/@comment-22439-20161008143220\nThread:82.83.133.123/@comment-22439-20150124110500\nThread:82.83.136.117/@comment-22439-20150110024539\nThread:82.83.137.248/@comment-22439-20150101130023\nThread:82.83.143.39/@comment-22439-20141230082147\nThread:82.83.143.69/@comment-22439-20150116142707\nThread:82.83.144.201/@comment-22439-20150101224706\nThread:82.83.144.80/@comment-22439-20150101124303\nThread:82.83.155.101/@comment-22439-20150101122736\nThread:82.84.195.150/@comment-22439-20150921120815\nThread:82.85.142.168/@comment-22439-20160112192131\nThread:82.9.236.252/@comment-22439-20141119223907\nThread:82.9.59.120/@comment-22439-20150623203803\nThread:82.9.85.160/@comment-22439-20170108013435\nThread:82.99.27.68/@comment-22439-20160108215609\nThread:83.10.155.20/@comment-22439-20160821114015\nThread:83.10.167.252/@comment-22439-20150102110027\nThread:83.113.224.233/@comment-22439-20150810110443\nThread:83.113.229.185/@comment-22439-20150816081303\nThread:83.125.103.157/@comment-22439-20161013204855\nThread:83.134.205.187/@comment-22439-20150912020837\nThread:83.135.242.86/@comment-22439-20150103221731\nThread:83.135.63.220/@comment-22439-20150206181255\nThread:83.136.43.44/@comment-32769624-20170904190151\nThread:83.139.146.158/@comment-22439-20150721115307\nThread:83.139.66.198/@comment-22439-20170413082156\nThread:83.141.215.108/@comment-22439-20150910111721\nThread:83.143.149.132/@comment-22439-20150313135931\nThread:83.144.107.78/@comment-22439-20151209103042\nThread:83.145.205.176/@comment-22439-20140908074941\nThread:83.145.208.113/@comment-22439-20150318115201\nThread:83.145.238.35/@comment-22439-20160126193945\nThread:83.157.227.7/@comment-22439-20150902143147\nThread:83.162.210.172/@comment-22439-20151212204529\nThread:83.162.251.49/@comment-22439-20150619110103\nThread:83.163.141.221/@comment-22439-20150708130700\nThread:83.163.148.100/@comment-22439-20140331210740\nThread:83.163.164.225/@comment-22439-20160112122559\nThread:83.165.1.101/@comment-22439-20151022133419\nThread:83.165.5.231/@comment-22439-20160203140210\nThread:83.179.32.172/@comment-22439-20150314212811\nThread:83.185.243.241/@comment-12138097-20141127155458\nThread:83.185.243.241/@comment-22439-20141127133316\nThread:83.185.85.142/@comment-22439-20151218065752\nThread:83.199.218.250/@comment-22439-20150223221013\nThread:83.199.222.191/@comment-22439-20151216173841\nThread:83.200.14.242/@comment-22439-20141226033729\nThread:83.202.243.188/@comment-22439-20150202150559\nThread:83.208.184.9/@comment-22439-20150608015004\nThread:83.208.206.168/@comment-22439-20131209135135\nThread:83.208.41.31/@comment-22439-20161028173256\nThread:83.223.191.203/@comment-22439-20151228205333\nThread:83.223.21.91/@comment-32769624-20170827121050\nThread:83.226.143.100/@comment-22439-20170129132316\nThread:83.227.100.204/@comment-22439-20150612210006\nThread:83.227.111.30/@comment-22439-20150510153106\nThread:83.227.71.235/@comment-22439-20150605013308\nThread:83.228.134.154/@comment-22439-20150126020928\nThread:83.237.122.118/@comment-22439-20130216122622\nThread:83.238.224.67/@comment-22439-20160111002657\nThread:83.240.126.50/@comment-22439-20150218172648\nThread:83.244.197.2/@comment-22439-20150423122312\nThread:83.248.104.120/@comment-22439-20150602123949\nThread:83.248.59.175/@comment-22439-20150616022123\nThread:83.25.139.174/@comment-22439-20151214064612\nThread:83.250.97.74/@comment-22439-20150106150059\nThread:83.251.113.163/@comment-22439-20160101232334\nThread:83.251.235.63/@comment-22439-20150606175753\nThread:83.251.73.238/@comment-22439-20150207131229\nThread:83.252.118.197/@comment-22439-20151125231516\nThread:83.252.190.254/@comment-22439-20151013154712\nThread:83.253.19.53/@comment-22439-20150531110926\nThread:83.253.212.171/@comment-22439-20170317114409\nThread:83.254.244.172/@comment-22439-20170416161307\nThread:83.254.38.215/@comment-22439-20150820114047\nThread:83.254.45.223/@comment-22439-20150405162423\nThread:83.254.82.138/@comment-22439-20150322215703\nThread:83.26.183.83/@comment-22439-20150103141826\nThread:83.26.250.223/@comment-22439-20151107101413\nThread:83.31.106.190/@comment-22439-20150220144545\nThread:83.31.114.52/@comment-22439-20150610141437\nThread:83.33.189.165/@comment-22439-20160118135010\nThread:83.33.38.223/@comment-22439-20150429133751\nThread:83.36.48.101/@comment-22439-20151023115904\nThread:83.37.157.185/@comment-22439-20140910015050\nThread:83.4.106.187/@comment-22439-20160418174951\nThread:83.41.205.170/@comment-22439-20151215195240\nThread:83.41.223.238/@comment-22439-20150107021626\nThread:83.43.134.8/@comment-22439-20150609145131\nThread:83.44.233.6/@comment-22439-20151222191801\nThread:83.45.156.156/@comment-22439-20160118163558\nThread:83.46.201.236/@comment-22439-20160106165327\nThread:83.49.45.46/@comment-22439-20161004141541\nThread:83.55.154.151/@comment-22439-20151123211759\nThread:83.57.1.248/@comment-22439-20160208110054\nThread:83.59.89.81/@comment-22439-20150530212638\nThread:83.6.223.216/@comment-22439-20151122114622\nThread:83.60.167.215/@comment-22439-20150327215329\nThread:83.61.230.131/@comment-22439-20150317190127\nThread:83.7.3.68/@comment-22439-20150705112422\nThread:83.7.43.24/@comment-22439-20160214144206\nThread:83.71.11.235/@comment-22439-20150223181114\nThread:83.71.7.201/@comment-22439-20150225133409\nThread:83.81.193.219/@comment-22439-20150613182538\nThread:83.81.209.159/@comment-22439-20170322171304\nThread:83.81.236.121/@comment-22439-20160501175327\nThread:83.81.70.93/@comment-22439-20150813185855\nThread:83.82.132.3/@comment-22439-20150607094958\nThread:83.82.242.75/@comment-22439-20161105182336\nThread:83.84.236.246/@comment-22439-20141101113542\nThread:83.84.38.44/@comment-22439-20151110215908\nThread:83.85.57.124/@comment-22439-20150906110757\nThread:83.86.187.95/@comment-22439-20150112005709\nThread:83.86.56.71/@comment-22439-20161126160409\nThread:83.87.189.86/@comment-22439-20150101143722\nThread:83.87.69.23/@comment-32769624-20170902113230\nThread:83.87.73.52/@comment-22439-20170527093903\nThread:83.9.74.202/@comment-22439-20150302212504\nThread:83.93.4.137/@comment-22439-20150702214507\nThread:83.93.62.53/@comment-22439-20150813183900\nThread:83.95.121.223/@comment-22439-20150121102055\nThread:83.95.162.88/@comment-22439-20150322122608\nThread:83.95.165.66/@comment-22439-20150401224422\nThread:83.97.204.249/@comment-22439-20150401191042\nThread:83.99.115.169/@comment-22439-20141228192035\nThread:83.99.147.171/@comment-22439-20150717140821\nThread:83.99.17.160/@comment-22439-20141224122541\nThread:84.0.35.155/@comment-22439-20141227201123\nThread:84.0.43.234/@comment-22439-20150713230055\nThread:84.1.173.167/@comment-22439-20160321150029\nThread:84.1.35.38/@comment-22439-20150113152144\nThread:84.10.214.212/@comment-22439-20151111015017\nThread:84.101.149.246/@comment-22439-20161116173021\nThread:84.104.124.74/@comment-22439-20150222195930\nThread:84.104.180.109/@comment-22439-20170515194916\nThread:84.104.203.193/@comment-22439-20150103153757\nThread:84.104.43.59/@comment-22439-20160731160835\nThread:84.104.54.118/@comment-22439-20160913182838\nThread:84.105.109.157/@comment-22439-20150805124111\nThread:84.105.246.107/@comment-22439-20150326233100\nThread:84.105.71.72/@comment-22439-20150129223344\nThread:84.106.111.176/@comment-22439-20150609160040\nThread:84.106.211.98/@comment-22439-20160128153816\nThread:84.107.201.162/@comment-22439-20160821175802\nThread:84.109.145.114/@comment-22439-20150124134413\nThread:84.113.160.103/@comment-22439-20160212144924\nThread:84.113.194.215/@comment-22439-20150113222445\nThread:84.113.243.159/@comment-22439-20150311001650\nThread:84.113.247.3/@comment-22439-20150108092541\nThread:84.113.8.35/@comment-22439-20140917214959\nThread:84.114.135.109/@comment-22439-20150104104908\nThread:84.114.24.90/@comment-22439-20140201163915\nThread:84.115.34.133/@comment-22439-20160130221032\nThread:84.118.149.52/@comment-22439-20170501010819\nThread:84.118.161.74/@comment-22439-20151201223001\nThread:84.118.193.4/@comment-22439-20151108191714\nThread:84.118.95.75/@comment-22439-20150101194035\nThread:84.119.101.147/@comment-22439-20161012215032\nThread:84.119.93.33/@comment-22439-20161027170106\nThread:84.121.55.244/@comment-22439-20150729171611\nThread:84.122.118.162/@comment-22439-20151224173452\nThread:84.129.64.89/@comment-22439-20150614165748\nThread:84.129.82.134/@comment-22439-20150706070423\nThread:84.129.82.244/@comment-22439-20150730200220\nThread:84.13.102.249/@comment-22439-20150121105043\nThread:84.13.108.51/@comment-22439-20150115122938\nThread:84.13.224.147/@comment-22439-20160317214125\nThread:84.13.232.40/@comment-22439-20150128005456\nThread:84.13.237.84/@comment-22439-20150622210538\nThread:84.13.50.128/@comment-22439-20150425143020\nThread:84.130.89.143/@comment-22439-20141230223947\nThread:84.132.217.71/@comment-22439-20141215110221\nThread:84.132.223.203/@comment-22439-20150617164159\nThread:84.132.36.14/@comment-22439-20151029121734\nThread:84.132.59.199/@comment-22439-20160725120923\nThread:84.133.100.92/@comment-22439-20161114221641\nThread:84.133.101.168/@comment-22439-20160102195825\nThread:84.133.178.73/@comment-22439-20150428165853\nThread:84.135.10.124/@comment-22439-20141129152057\nThread:84.135.20.6/@comment-22439-20150921212131\nThread:84.135.23.53/@comment-22439-20150603170719\nThread:84.135.250.6/@comment-22439-20150321111514\nThread:84.135.27.214/@comment-22439-20150601185810\nThread:84.135.30.179/@comment-22439-20141127215225\nThread:84.135.37.29/@comment-22439-20150527140139\nThread:84.137.178.107/@comment-22439-20160215194557\nThread:84.138.118.123/@comment-22439-20161018211837\nThread:84.138.22.152/@comment-22439-20161223233135\nThread:84.138.86.36/@comment-22439-20151213113530\nThread:84.139.30.50/@comment-22439-20160630104138\nThread:84.139.5.58/@comment-22439-20160109212902\nThread:84.142.11.128/@comment-22439-20150207201855\nThread:84.143.11.152/@comment-22439-20150929130850\nThread:84.143.3.248/@comment-22439-20160130231906\nThread:84.144.211.192/@comment-22439-20150125062943\nThread:84.144.221.102/@comment-22439-20150111110204\nThread:84.144.221.122/@comment-22439-20150119070537\nThread:84.146.213.213/@comment-22439-20170425084637\nThread:84.146.218.55/@comment-22439-20160528082246\nThread:84.151.203.73/@comment-22439-20150526215110\nThread:84.152.166.22/@comment-22439-20160731112511\nThread:84.153.86.155/@comment-22439-20150930173645\nThread:84.154.82.86/@comment-22439-20150611223639\nThread:84.154.84.138/@comment-22439-20151115125244\nThread:84.154.86.74/@comment-22439-20150421162952\nThread:84.154.87.72/@comment-22439-20150606160035\nThread:84.154.92.89/@comment-22439-20150410034843\nThread:84.154.94.100/@comment-22439-20150623135031\nThread:84.155.116.113/@comment-22439-20161003154137\nThread:84.155.26.150/@comment-22439-20141105214529\nThread:84.156.247.251/@comment-22439-20170121173947\nThread:84.157.17.100/@comment-22439-20150111114803\nThread:84.159.107.114/@comment-22439-20150427152354\nThread:84.159.252.67/@comment-22439-20150418203921\nThread:84.162.9.234/@comment-22439-20150507000857\nThread:84.165.23.131/@comment-22439-20151013030411\nThread:84.168.106.87/@comment-22439-20151118204004\nThread:84.168.106.88/@comment-22439-20150719191057\nThread:84.168.114.123/@comment-22439-20150629194442\nThread:84.171.70.245/@comment-22439-20150214151053\nThread:84.171.87.195/@comment-22439-20141222014634\nThread:84.171.95.19/@comment-22439-20150403232629\nThread:84.172.221.41/@comment-22439-20160328123141\nThread:84.173.105.208/@comment-22439-20150630231401\nThread:84.173.112.19/@comment-22439-20150328103422\nThread:84.173.127.25/@comment-22439-20141101111342\nThread:84.174.123.253/@comment-22439-20150412155159\nThread:84.174.129.230/@comment-22439-20150501195018\nThread:84.174.162.212/@comment-22439-20150613113703\nThread:84.174.163.95/@comment-22439-20150210144203\nThread:84.175.69.206/@comment-22439-20150629205515\nThread:84.175.75.209/@comment-22439-20151015090139\nThread:84.175.99.203/@comment-22439-20151225183348\nThread:84.178.203.118/@comment-32769624-20170908151048\nThread:84.178.26.71/@comment-22439-20150702210209\nThread:84.183.105.254/@comment-22439-20150607135325\nThread:84.183.20.7/@comment-22439-20151217135152\nThread:84.186.82.98/@comment-22439-20150106223543\nThread:84.188.117.211/@comment-22439-20160201183702\nThread:84.190.211.124/@comment-22439-20160203192242\nThread:84.192.14.107/@comment-22439-20151120182746\nThread:84.192.97.75/@comment-22439-20161119194732\nThread:84.193.126.61/@comment-22439-20170626225533\nThread:84.193.142.189/@comment-22439-20150524210957\nThread:84.193.153.26/@comment-22439-20160817144107\nThread:84.194.124.8/@comment-22439-20161219211746\nThread:84.195.191.69/@comment-22439-20151108183825\nThread:84.195.222.165/@comment-22439-20150728142317\nThread:84.195.54.27/@comment-22439-20150427175329\nThread:84.195.8.142/@comment-22439-20150528160415\nThread:84.198.255.204/@comment-22439-20150725182603\nThread:84.199.100.122/@comment-22439-20150305155255\nThread:84.2.223.68/@comment-22439-20151221142235\nThread:84.202.144.181/@comment-22439-20141029223530\nThread:84.202.200.137/@comment-22439-20150405112718\nThread:84.203.5.26/@comment-22439-20150304094016\nThread:84.203.7.208/@comment-32769624-20170830042713\nThread:84.208.172.79/@comment-22439-20150603003438\nThread:84.208.244.95/@comment-22439-20151027225653\nThread:84.210.45.78/@comment-22439-20160406172638\nThread:84.211.132.29/@comment-22439-20150820235209\nThread:84.212.124.156/@comment-22439-20170415112428\nThread:84.214.99.111/@comment-22439-20150621201513\nThread:84.226.85.56/@comment-22439-20161019133402\nThread:84.227.113.201/@comment-22439-20170212173900\nThread:84.23.147.109/@comment-22439-20141231165407\nThread:84.234.145.94/@comment-22439-20150502123200\nThread:84.236.87.38/@comment-22439-20160116091940\nThread:84.237.177.149/@comment-22439-20170227203107\nThread:84.242.125.139/@comment-22439-20150228153542\nThread:84.245.13.8/@comment-22439-20151025133450\nThread:84.245.27.111/@comment-22439-20141201203620\nThread:84.246.166.26/@comment-22439-20160122154901\nThread:84.247.138.189/@comment-22439-20151107025159\nThread:84.247.190.133/@comment-22439-20160129215946\nThread:84.248.122.164/@comment-22439-20150124125153\nThread:84.248.64.145/@comment-22439-20150624221020\nThread:84.248.70.53/@comment-22439-20141228070730\nThread:84.249.206.93/@comment-22439-20170101233548\nThread:84.25.166.143/@comment-22439-20170429185118\nThread:84.25.232.122/@comment-22439-20151224103314\nThread:84.250.122.99/@comment-22439-20160822211555\nThread:84.250.166.244/@comment-22439-20160909213938\nThread:84.250.168.119/@comment-22439-20150205222907\nThread:84.250.30.175/@comment-22439-20150701190609\nThread:84.250.32.136/@comment-22439-20160117100226\nThread:84.250.76.92/@comment-22439-20150116161459\nThread:84.251.25.39/@comment-22439-20150517113443\nThread:84.251.68.190/@comment-22439-20150627152735\nThread:84.26.144.208/@comment-22439-20150514094616\nThread:84.26.168.123/@comment-22439-20141221173742\nThread:84.26.251.5/@comment-22439-20150315123228\nThread:84.27.177.13/@comment-22439-20151026135736\nThread:84.27.94.67/@comment-22439-20161218065308\nThread:84.28.173.158/@comment-22439-20150106223313\nThread:84.29.101.245/@comment-22439-20151224091336\nThread:84.3.175.207/@comment-22439-20161126163744\nThread:84.30.161.90/@comment-22439-20151105142745\nThread:84.42.238.19/@comment-22439-20141006020441\nThread:84.46.23.192/@comment-22439-20160925081721\nThread:84.51.142.99/@comment-22439-20150110192956\nThread:84.51.159.32/@comment-22439-20141111172859\nThread:84.52.38.228/@comment-22439-20151228173313\nThread:84.57.80.23/@comment-22439-20151128102846\nThread:84.59.126.149/@comment-22439-20150901180610\nThread:84.59.169.210/@comment-22439-20141231214615\nThread:84.59.182.34/@comment-22439-20150508183731\nThread:84.60.149.251/@comment-22439-20150806025253\nThread:84.62.107.198/@comment-22439-20151023124140\nThread:84.62.40.193/@comment-22439-20150227184746\nThread:84.62.46.180/@comment-22439-20150720055816\nThread:84.62.46.84/@comment-22439-20150607160056\nThread:84.63.84.52/@comment-22439-20150913221145\nThread:84.72.20.96/@comment-22439-20160307005404\nThread:84.74.0.24/@comment-22439-20150718003713\nThread:84.74.192.41/@comment-32769624-20170910131318\nThread:84.75.167.109/@comment-22439-20150106025358\nThread:84.76.229.30/@comment-22439-20170802170057\nThread:84.80.149.177/@comment-22439-20150203112352\nThread:84.80.186.77/@comment-22439-20151022195626\nThread:84.82.15.219/@comment-22439-20150613113539\nThread:84.87.114.253/@comment-22439-20140929180414\nThread:84.9.60.161/@comment-22439-20170127004103\nThread:84.9.81.209/@comment-22439-20170328042819\nThread:84.92.114.178/@comment-22439-20150217120855\nThread:84.92.123.246/@comment-22439-20161015180247\nThread:84.93.101.103/@comment-22439-20170504020016\nThread:84.93.144.196/@comment-22439-20150125064034\nThread:84.93.189.188/@comment-22439-20141214145237\nThread:84.99.4.95/@comment-22439-20150402185429\nThread:85.0.193.79/@comment-22439-20141222191240\nThread:85.1.111.143/@comment-22439-20150626203954\nThread:85.103.75.91/@comment-22439-20160104165338\nThread:85.105.100.25/@comment-22439-20141229094900\nThread:85.108.145.195/@comment-22439-20151029222854\nThread:85.11.232.221/@comment-22439-20150718105945\nThread:85.115.52.180/@comment-22439-20150323112749\nThread:85.115.52.201/@comment-22439-20160126143009\nThread:85.115.54.180/@comment-22439-20150106114322\nThread:85.115.54.201/@comment-22439-20151207142535\nThread:85.115.54.202/@comment-22439-20170209093629\nThread:85.12.76.63/@comment-22439-20150311155108\nThread:85.138.251.218/@comment-22439-20150331231616\nThread:85.14.86.142/@comment-22439-20141229195122\nThread:85.140.203.49/@comment-22439-20150405012233\nThread:85.150.31.102/@comment-22439-20160607202440\nThread:85.157.129.60/@comment-22439-20150829051300\nThread:85.157.197.167/@comment-22439-20150621093302\nThread:85.159.168.177/@comment-22439-20161025125704\nThread:85.165.152.56/@comment-22439-20150708084451\nThread:85.165.212.157/@comment-22439-20150119005238\nThread:85.165.223.45/@comment-22439-20141106134426\nThread:85.165.24.241/@comment-22439-20141206145038\nThread:85.165.26.186/@comment-22439-20150425185523\nThread:85.165.88.205/@comment-22439-20151230035814\nThread:85.166.108.253/@comment-22439-20150417234730\nThread:85.166.176.97/@comment-22439-20150712190423\nThread:85.166.222.26/@comment-22439-20151126170209\nThread:85.166.255.240/@comment-22439-20160215164253\nThread:85.166.45.124/@comment-22439-20160313084326\nThread:85.166.74.253/@comment-22439-20150115120234\nThread:85.166.79.119/@comment-22439-20161201131549\nThread:85.168.197.35/@comment-22439-20151017132556\nThread:85.168.93.235/@comment-22439-20150208004234\nThread:85.169.230.68/@comment-22439-20151205161615\nThread:85.172.163.57/@comment-22439-20151014130642\nThread:85.176.108.135/@comment-22439-20150412150528\nThread:85.176.224.224/@comment-22439-20160119014026\nThread:85.177.137.35/@comment-22439-20150311034307\nThread:85.177.49.86/@comment-22439-20150116184140\nThread:85.177.78.181/@comment-22439-20150621153451\nThread:85.177.92.191/@comment-22439-20150525011452\nThread:85.178.12.184/@comment-22439-20160214204249\nThread:85.178.61.110/@comment-22439-20150819193020\nThread:85.178.8.38/@comment-22439-20141220190915\nThread:85.179.235.118/@comment-22439-20150726124155\nThread:85.179.67.168/@comment-22439-20150224212826\nThread:85.179.70.102/@comment-22439-20150308230724\nThread:85.18.231.4/@comment-22439-20150523224248\nThread:85.180.129.113/@comment-22439-20150407213302\nThread:85.180.213.204/@comment-22439-20150121100417\nThread:85.181.154.184/@comment-22439-20150327093640\nThread:85.182.140.170/@comment-22439-20150821121601\nThread:85.197.35.31/@comment-22439-20160606173529\nThread:85.197.54.90/@comment-22439-20161006154308\nThread:85.199.248.92/@comment-22439-20141007092921\nThread:85.199.49.197/@comment-22439-20151107145836\nThread:85.2.81.96/@comment-22439-20150319202208\nThread:85.201.17.88/@comment-22439-20150417203216\nThread:85.206.22.34/@comment-22439-20150123042940\nThread:85.21.236.31/@comment-22439-20150717205137\nThread:85.21.249.183/@comment-22439-20150110040823\nThread:85.210.94.219/@comment-22439-20150915213625\nThread:85.216.210.38/@comment-22439-20150112091603\nThread:85.218.24.76/@comment-22439-20150308111612\nThread:85.221.31.192/@comment-22439-20160617181618\nThread:85.224.157.125/@comment-22439-20150630145650\nThread:85.224.224.106/@comment-22439-20141002205341\nThread:85.224.255.58/@comment-22439-20150702140612\nThread:85.224.70.136/@comment-22439-20150712145820\nThread:85.225.6.86/@comment-22439-20160629011458\nThread:85.226.211.156/@comment-22439-20150408141151\nThread:85.228.210.179/@comment-22439-20150329185517\nThread:85.228.241.219/@comment-22439-20150405164007\nThread:85.229.110.38/@comment-22439-20150105154504\nThread:85.229.250.15/@comment-4403388-20170815221505\nThread:85.229.59.186/@comment-22439-20150129203002\nThread:85.23.172.59/@comment-22439-20150609110552\nThread:85.23.196.186/@comment-22439-20150920102025\nThread:85.23.20.246/@comment-22439-20150215192403\nThread:85.23.245.78/@comment-22439-20141230234325\nThread:85.23.91.117/@comment-22439-20150128023501\nThread:85.230.100.76/@comment-22439-20150625215454\nThread:85.238.175.224/@comment-22439-20151118215540\nThread:85.240.98.46/@comment-22439-20140908204531\nThread:85.245.45.181/@comment-22439-20150102051730\nThread:85.246.104.196/@comment-22439-20160725103215\nThread:85.246.140.217/@comment-22439-20150424101246\nThread:85.247.81.152/@comment-22439-20160820190159\nThread:85.252.215.127/@comment-22439-20160404093746\nThread:85.253.173.110/@comment-22439-20160225113603\nThread:85.253.217.23/@comment-22439-20170109064626\nThread:85.254.79.173/@comment-22439-20151102075824\nThread:85.255.232.50/@comment-22439-20160807214836\nThread:85.255.233.6/@comment-22439-20141026123450\nThread:85.255.234.219/@comment-22439-20151208133332\nThread:85.255.235.157/@comment-22439-20150128030437\nThread:85.3.160.199/@comment-22439-20150211024142\nThread:85.30.180.131/@comment-22439-20141230230945\nThread:85.30.188.48/@comment-22439-20170214204416\nThread:85.5.2.71/@comment-22439-20170620013748\nThread:85.59.18.238/@comment-22439-20150702093925\nThread:85.64.89.143/@comment-22439-20140919063417\nThread:85.68.245.20/@comment-22439-20150111040219\nThread:85.7.147.142/@comment-22439-20150409144134\nThread:85.7.154.13/@comment-22439-20150516100358\nThread:85.7.20.185/@comment-22439-20170120150632\nThread:85.70.18.52/@comment-22439-20141219113403\nThread:85.70.209.143/@comment-22439-20141210043058\nThread:85.70.228.87/@comment-22439-20150304233225\nThread:85.71.224.148/@comment-22439-20150807083500\nThread:85.72.182.172/@comment-22439-20170518182510\nThread:85.76.110.202/@comment-22439-20150624163656\nThread:85.76.12.250/@comment-22439-20170724224503\nThread:85.76.130.137/@comment-22439-20151226203904\nThread:85.76.144.108/@comment-22439-20170404125450\nThread:85.76.150.251/@comment-22439-20151216065416\nThread:85.76.21.164/@comment-22439-20170121213805\nThread:85.76.22.235/@comment-22439-20150710063318\nThread:85.76.32.99/@comment-22439-20160329181459\nThread:85.76.49.132/@comment-22439-20150702051211\nThread:85.85.225.97/@comment-22439-20160209154346\nThread:85.87.44.86/@comment-22439-20160111235916\nThread:85.9.58.227/@comment-22439-20150519141524\nThread:85.93.199.122/@comment-22439-20141203102757\nThread:85.96.27.240/@comment-22439-20150123064856\nThread:86.0.130.106/@comment-22439-20150219002001\nThread:86.0.225.14/@comment-4403388-20170813064137\nThread:86.0.250.148/@comment-22439-20151108163152\nThread:86.1.123.240/@comment-22439-20150829010703\nThread:86.1.17.5/@comment-22439-20150331172918\nThread:86.1.43.146/@comment-22439-20160604001903\nThread:86.1.61.9/@comment-22439-20151018223259\nThread:86.1.70.139/@comment-22439-20151211174703\nThread:86.1.76.90/@comment-22439-20161010231225\nThread:86.10.64.111/@comment-22439-20151005183613\nThread:86.10.7.58/@comment-22439-20151015171309\nThread:86.10.94.81/@comment-22439-20170511145028\nThread:86.10.95.235/@comment-22439-20150722134844\nThread:86.101.117.105/@comment-22439-20150526173239\nThread:86.103.167.47/@comment-22439-20160202214741\nThread:86.11.128.32/@comment-22439-20150128103119\nThread:86.11.139.27/@comment-22439-20170703152111\nThread:86.11.155.67/@comment-22439-20150119005132\nThread:86.11.52.143/@comment-22439-20151019142250\nThread:86.11.99.35/@comment-22439-20150808160924\nThread:86.12.194.135/@comment-22439-20151217092053\nThread:86.12.229.79/@comment-4403388-20170815142356\nThread:86.12.254.251/@comment-22439-20160407180544\nThread:86.12.45.1/@comment-22439-20150124141219\nThread:86.12.53.149/@comment-22439-20150724223627\nThread:86.12.81.174/@comment-22439-20141228205410\nThread:86.125.182.243/@comment-22439-20150502120515\nThread:86.126.174.136/@comment-22439-20151219220957\nThread:86.126.94.34/@comment-22439-20160908090748\nThread:86.127.131.245/@comment-22439-20151225152141\nThread:86.127.143.245/@comment-22439-20150816143245\nThread:86.127.43.198/@comment-22439-20170502140451\nThread:86.129.13.33/@comment-22439-20151220162553\nThread:86.129.134.51/@comment-22439-20150221133020\nThread:86.129.226.92/@comment-22439-20130116173138\nThread:86.129.91.235/@comment-22439-20151220230145\nThread:86.13.253.177/@comment-22439-20150512061854\nThread:86.13.64.107/@comment-22439-20150131104846\nThread:86.131.75.158/@comment-22439-20141222091108\nThread:86.132.116.75/@comment-22439-20150118005714\nThread:86.132.64.6/@comment-22439-20150616150141\nThread:86.133.138.188/@comment-22439-20161201210228\nThread:86.133.20.97/@comment-22439-20161228151802\nThread:86.134.128.209/@comment-22439-20150529020814\nThread:86.134.190.119/@comment-22439-20151018193300\nThread:86.134.3.148/@comment-22439-20141115003624\nThread:86.134.37.188/@comment-22439-20150301041909\nThread:86.134.9.205/@comment-22439-20150223154711\nThread:86.135.202.70/@comment-22439-20150605222916\nThread:86.135.32.154/@comment-22439-20150620122709\nThread:86.135.73.136/@comment-22439-20150614234146\nThread:86.136.152.44/@comment-22439-20141230172714\nThread:86.136.233.194/@comment-22439-20150130223719\nThread:86.136.26.250/@comment-22439-20141227235830\nThread:86.137.143.23/@comment-22439-20141124143738\nThread:86.137.229.249/@comment-22439-20160118134514\nThread:86.137.26.128/@comment-22439-20150423214207\nThread:86.138.149.129/@comment-22439-20170424205621\nThread:86.138.180.56/@comment-22439-20151128165418\nThread:86.139.100.120/@comment-22439-20150425023753\nThread:86.139.195.109/@comment-22439-20150307164524\nThread:86.139.41.81/@comment-22439-20160614222809\nThread:86.139.42.97/@comment-22439-20150720115343\nThread:86.139.67.175/@comment-22439-20150310015130\nThread:86.139.72.33/@comment-22439-20150927193237\nThread:86.14.127.43/@comment-22439-20150515214505\nThread:86.14.221.83/@comment-22439-20160221001021\nThread:86.14.75.31/@comment-22439-20150116223809\nThread:86.14.78.108/@comment-22439-20170115115039\nThread:86.140.117.80/@comment-22439-20160726123303\nThread:86.140.95.254/@comment-22439-20140916044622\nThread:86.142.146.174/@comment-22439-20170410132633\nThread:86.142.225.249/@comment-22439-20140530113755\nThread:86.144.234.165/@comment-22439-20150405082705\nThread:86.144.240.217/@comment-22439-20141226105530\nThread:86.144.66.150/@comment-22439-20150310224453\nThread:86.145.236.37/@comment-22439-20150215085112\nThread:86.145.238.157/@comment-22439-20141023200150\nThread:86.145.5.132/@comment-22439-20160225130104\nThread:86.145.57.201/@comment-22439-20150212140320\nThread:86.145.62.163/@comment-22439-20150816090144\nThread:86.146.28.97/@comment-22439-20130623205025\nThread:86.147.230.52/@comment-22439-20131018120110\nThread:86.147.34.79/@comment-22439-20141231161404\nThread:86.147.48.146/@comment-22439-20150524023427\nThread:86.147.51.185/@comment-22439-20150314125054\nThread:86.147.73.239/@comment-22439-20170306043500\nThread:86.147.93.1/@comment-22439-20151205140934\nThread:86.148.115.225/@comment-22439-20170117193119\nThread:86.148.126.246/@comment-22439-20160215230748\nThread:86.148.22.245/@comment-22439-20141006200346\nThread:86.148.44.122/@comment-22439-20141209214512\nThread:86.149.119.194/@comment-22439-20160912035746\nThread:86.149.145.169/@comment-22439-20170124014652\nThread:86.149.147.109/@comment-22439-20170325143523\nThread:86.149.18.26/@comment-22439-20150407023421\nThread:86.149.197.112/@comment-22439-20150423132713\nThread:86.149.32.233/@comment-22439-20170419000242\nThread:86.15.218.140/@comment-22439-20170709191558\nThread:86.15.249.79/@comment-22439-20141230204214\nThread:86.15.253.161/@comment-22439-20150807174121\nThread:86.150.100.27/@comment-22439-20141224204245\nThread:86.150.114.98/@comment-22439-20151231142525\nThread:86.150.233.45/@comment-22439-20150508154551\nThread:86.150.248.166/@comment-5959508-20130514192318\nThread:86.150.83.18/@comment-22439-20141105221619\nThread:86.151.180.217/@comment-22439-20150114234207\nThread:86.151.194.46/@comment-22439-20151122165628\nThread:86.151.241.145/@comment-22439-20150927145513\nThread:86.152.69.213/@comment-22439-20150822134931\nThread:86.152.72.58/@comment-22439-20141002223719\nThread:86.152.87.254/@comment-22439-20150402231014\nThread:86.152.88.171/@comment-22439-20150213104009\nThread:86.152.99.162/@comment-22439-20160122220624\nThread:86.153.131.213/@comment-22439-20170419073052\nThread:86.153.163.242/@comment-22439-20170420055316\nThread:86.153.193.107/@comment-22439-20150304223824\nThread:86.153.43.97/@comment-22439-20160124004138\nThread:86.153.60.122/@comment-22439-20170426090906\nThread:86.153.62.21/@comment-22439-20150609191153\nThread:86.153.76.75/@comment-22439-20150111145105\nThread:86.154.20.48/@comment-22439-20150315215922\nThread:86.154.255.164/@comment-22439-20160123101607\nThread:86.154.48.121/@comment-22439-20151117204700\nThread:86.154.51.83/@comment-22439-20151105035351\nThread:86.155.180.230/@comment-22439-20151115095311\nThread:86.155.195.62/@comment-22439-20150606203536\nThread:86.155.245.175/@comment-22439-20150807102101\nThread:86.155.247.69/@comment-22439-20150120153658\nThread:86.155.32.39/@comment-22439-20170311193837\nThread:86.156.100.199/@comment-22439-20150423203410\nThread:86.156.108.141/@comment-22439-20170202120501\nThread:86.156.164.114/@comment-22439-20150414173953\nThread:86.156.178.36/@comment-22439-20150826074524\nThread:86.156.183.25/@comment-22439-20150819132335\nThread:86.156.202.56/@comment-22439-20150806223129\nThread:86.156.66.143/@comment-22439-20150322114801\nThread:86.157.102.208/@comment-22439-20150606143102\nThread:86.157.105.175/@comment-22439-20141218034702\nThread:86.157.128.229/@comment-22439-20150703080051\nThread:86.157.43.37/@comment-22439-20141118192156\nThread:86.157.6.203/@comment-22439-20150922143738\nThread:86.157.6.35/@comment-22439-20151121112158\nThread:86.157.77.155/@comment-22439-20150416205243\nThread:86.157.9.232/@comment-22439-20151022223348\nThread:86.158.233.43/@comment-22439-20130709134927\nThread:86.158.252.212/@comment-22439-20161105014041\nThread:86.158.255.94/@comment-22439-20150123015426\nThread:86.158.84.220/@comment-22439-20160806142736\nThread:86.159.200.181/@comment-22439-20150915095801\nThread:86.159.35.193/@comment-22439-20140922233627\nThread:86.16.221.233/@comment-22439-20141105220033\nThread:86.16.25.74/@comment-22439-20150125094910\nThread:86.16.27.37/@comment-22439-20160322133456\nThread:86.16.31.42/@comment-22439-20150827201328\nThread:86.160.14.90/@comment-22439-20150130143732\nThread:86.160.150.17/@comment-22439-20150707171247\nThread:86.160.222.167/@comment-22439-20151229133018\nThread:86.160.8.191/@comment-22439-20141226230446\nThread:86.160.92.18/@comment-22439-20170426013727\nThread:86.161.108.26/@comment-22439-20130312140412\nThread:86.161.153.188/@comment-22439-20150807221923\nThread:86.161.153.82/@comment-22439-20151121144014\nThread:86.161.155.122/@comment-22439-20150604162652\nThread:86.161.175.219/@comment-22439-20150101160240\nThread:86.161.199.25/@comment-22439-20151202201501\nThread:86.161.252.97/@comment-22439-20160309140138\nThread:86.161.30.82/@comment-22439-20170416134814\nThread:86.162.116.2/@comment-22439-20160919154452\nThread:86.162.122.57/@comment-22439-20150425172428\nThread:86.162.139.148/@comment-22439-20150328100028\nThread:86.162.142.158/@comment-22439-20150426142015\nThread:86.162.183.25/@comment-22439-20150305005308\nThread:86.162.55.104/@comment-22439-20150103003122\nThread:86.163.163.218/@comment-22439-20170428142121\nThread:86.163.190.11/@comment-22439-20160917170517\nThread:86.163.190.248/@comment-22439-20151220085327\nThread:86.163.211.91/@comment-22439-20150413203622\nThread:86.163.248.194/@comment-22439-20150912183352\nThread:86.163.29.132/@comment-22439-20150903213022\nThread:86.163.85.169/@comment-22439-20150717201929\nThread:86.164.124.32/@comment-22439-20160608171911\nThread:86.164.133.149/@comment-22439-20150120092526\nThread:86.164.60.64/@comment-22439-20130209160501\nThread:86.164.87.176/@comment-22439-20150303171813\nThread:86.165.131.167/@comment-22439-20160106182018\nThread:86.165.194.85/@comment-22439-20160704180939\nThread:86.166.163.192/@comment-22439-20150301210400\nThread:86.166.68.28/@comment-22439-20151115212500\nThread:86.166.87.176/@comment-22439-20151205224238\nThread:86.166.90.218/@comment-22439-20151121091430\nThread:86.167.255.237/@comment-22439-20150212063111\nThread:86.168.162.236/@comment-22439-20151030092101\nThread:86.168.165.47/@comment-22439-20151206173555\nThread:86.168.212.172/@comment-22439-20151023183736\nThread:86.168.218.13/@comment-22439-20150226191050\nThread:86.168.252.223/@comment-22439-20150515215328\nThread:86.169.177.227/@comment-22439-20150307015611\nThread:86.169.229.205/@comment-22439-20170729163339\nThread:86.169.44.90/@comment-22439-20150105222930\nThread:86.169.54.249/@comment-22439-20150313232931\nThread:86.17.218.62/@comment-22439-20141213005706\nThread:86.17.228.178/@comment-22439-20150401011919\nThread:86.17.36.171/@comment-22439-20160502092745\nThread:86.170.114.178/@comment-22439-20160217212547\nThread:86.170.131.85/@comment-22439-20150113085635\nThread:86.171.150.243/@comment-22439-20160503221249\nThread:86.171.156.220/@comment-22439-20151223133209\nThread:86.172.221.107/@comment-22439-20160328151941\nThread:86.172.35.13/@comment-22439-20150828121839\nThread:86.172.50.175/@comment-22439-20150128005156\nThread:86.173.139.49/@comment-22439-20141029011132\nThread:86.173.246.20/@comment-22439-20150101165820\nThread:86.173.44.37/@comment-22439-20141231110636\nThread:86.173.64.205/@comment-22439-20150123085157\nThread:86.174.121.244/@comment-22439-20151003174141\nThread:86.174.156.237/@comment-22439-20150922165243\nThread:86.174.159.100/@comment-22439-20151008185659\nThread:86.174.168.35/@comment-22439-20161214004706\nThread:86.174.58.249/@comment-22439-20160505145259\nThread:86.175.0.177/@comment-22439-20160612083438\nThread:86.175.205.157/@comment-22439-20150613232320\nThread:86.175.70.138/@comment-22439-20150801132938\nThread:86.176.127.11/@comment-22439-20141226162936\nThread:86.176.132.205/@comment-22439-20160726174842\nThread:86.176.191.154/@comment-22439-20150410200253\nThread:86.176.2.77/@comment-22439-20150722172041\nThread:86.176.235.194/@comment-22439-20170804180124\nThread:86.176.39.223/@comment-22439-20131212075755\nThread:86.176.80.222/@comment-22439-20131022031025\nThread:86.177.104.242/@comment-22439-20150713205952\nThread:86.177.237.111/@comment-22439-20170403194119\nThread:86.177.57.37/@comment-22439-20160604070754\nThread:86.177.58.123/@comment-22439-20150523112801\nThread:86.177.58.43/@comment-22439-20150311140721\nThread:86.177.62.151/@comment-22439-20151230153724\nThread:86.177.92.14/@comment-22439-20150723094959\nThread:86.178.183.109/@comment-22439-20150108190949\nThread:86.178.50.7/@comment-22439-20130105143105\nThread:86.179.22.156/@comment-22439-20151018111912\nThread:86.179.22.156/@comment-22439-20151018111912/@comment-1028741-20151021043252\nThread:86.179.22.156/@comment-22439-20151018111912/@comment-1028741-20151021152628\nThread:86.179.22.156/@comment-22439-20151018111912/@comment-5959508-20151021081248\nThread:86.179.22.156/@comment-22439-20151018111912/@comment-5959508-20151021081657\nThread:86.179.224.169/@comment-22439-20170418084216\nThread:86.179.44.153/@comment-22439-20150208095540\nThread:86.179.79.163/@comment-22439-20150118033316\nThread:86.179.81.244/@comment-22439-20150310194817\nThread:86.18.163.124/@comment-22439-20141002103555\nThread:86.18.22.61/@comment-22439-20141223223734\nThread:86.18.238.215/@comment-22439-20150412125035\nThread:86.18.29.251/@comment-22439-20150106161051\nThread:86.18.84.96/@comment-22439-20160908145822\nThread:86.180.180.0/@comment-22439-20150711085404\nThread:86.180.180.49/@comment-22439-20170121231802\nThread:86.180.181.193/@comment-22439-20150111111018\nThread:86.180.183.115/@comment-22439-20150127064320\nThread:86.180.220.143/@comment-22439-20140402110952\nThread:86.180.221.203/@comment-22439-20140417122905\nThread:86.180.6.177/@comment-22439-20160103125517\nThread:86.181.195.160/@comment-22439-20150206185246\nThread:86.181.22.127/@comment-22439-20150726080901\nThread:86.181.250.172/@comment-22439-20151025190538\nThread:86.181.30.18/@comment-22439-20160405085953\nThread:86.181.40.147/@comment-22439-20150825235408\nThread:86.181.87.197/@comment-22439-20170520161214\nThread:86.181.99.199/@comment-22439-20170610161041\nThread:86.182.155.177/@comment-22439-20141218015959\nThread:86.182.208.202/@comment-22439-20141123051736\nThread:86.182.212.179/@comment-22439-20151205215459\nThread:86.182.65.139/@comment-22439-20160811014951\nThread:86.182.99.161/@comment-22439-20150411085803\nThread:86.183.104.15/@comment-22439-20150914182442\nThread:86.183.105.175/@comment-22439-20150916202917\nThread:86.183.122.161/@comment-22439-20150226000045\nThread:86.183.142.49/@comment-22439-20141224210909\nThread:86.183.17.198/@comment-22439-20160514123723\nThread:86.183.57.129/@comment-22439-20150310194204\nThread:86.183.75.52/@comment-22439-20160115151707\nThread:86.183.78.247/@comment-22439-20160426234526\nThread:86.183.98.125/@comment-22439-20150721151003\nThread:86.184.172.252/@comment-22439-20151218205719\nThread:86.184.180.55/@comment-22439-20170725031643\nThread:86.184.207.101/@comment-22439-20150111154828\nThread:86.184.233.97/@comment-22439-20150701145617\nThread:86.185.135.6/@comment-22439-20170401224736\nThread:86.185.140.28/@comment-22439-20170626201059\nThread:86.185.177.76/@comment-22439-20150622090026\nThread:86.185.25.128/@comment-22439-20150308111207\nThread:86.185.89.204/@comment-22439-20150911213602\nThread:86.186.129.235/@comment-22439-20150817215850\nThread:86.186.190.3/@comment-22439-20150521103434\nThread:86.186.250.147/@comment-32769624-20170903212452\nThread:86.187.95.130/@comment-22439-20160806113852\nThread:86.188.115.207/@comment-22439-20161023133432\nThread:86.188.194.210/@comment-22439-20130225100310\nThread:86.188.28.51/@comment-22439-20151128185325\nThread:86.188.59.115/@comment-22439-20150306143801\nThread:86.189.214.23/@comment-22439-20150712192251\nThread:86.189.246.17/@comment-22439-20170503172823\nThread:86.19.119.135/@comment-22439-20161022144134\nThread:86.19.135.236/@comment-22439-20160731002501\nThread:86.19.157.214/@comment-22439-20150111040248\nThread:86.19.158.165/@comment-80.110.123.140-20190503192446\nThread:86.19.161.72/@comment-4403388-20170813211334\nThread:86.19.209.224/@comment-22439-20150402011226\nThread:86.190.19.66/@comment-22439-20141215164748\nThread:86.190.201.230/@comment-22439-20160224234844\nThread:86.190.208.194/@comment-22439-20170106174554\nThread:86.190.232.35/@comment-22439-20160110180401\nThread:86.190.83.101/@comment-22439-20151022204556\nThread:86.191.120.173/@comment-22439-20160828093433\nThread:86.191.157.71/@comment-22439-20170521210403\nThread:86.191.188.2/@comment-22439-20150328150051\nThread:86.191.204.163/@comment-22439-20160227105039\nThread:86.191.220.18/@comment-22439-20161031175637\nThread:86.191.238.78/@comment-22439-20150928204053\nThread:86.192.28.11/@comment-22439-20151128183837\nThread:86.192.85.195/@comment-22439-20140922105123\nThread:86.195.31.35/@comment-22439-20160126213035\nThread:86.197.249.33/@comment-22439-20151018130649\nThread:86.197.54.210/@comment-22439-20150629161620\nThread:86.2.210.231/@comment-22439-20151220233107\nThread:86.2.236.64/@comment-22439-20150128035720\nThread:86.2.41.231/@comment-22439-20160106184722\nThread:86.2.70.1/@comment-22439-20150121194929\nThread:86.20.102.232/@comment-22439-20160108170632\nThread:86.20.122.182/@comment-22439-20151110214028\nThread:86.20.14.215/@comment-22439-20150301214731\nThread:86.20.15.6/@comment-22439-20150103151215\nThread:86.20.181.21/@comment-22439-20170409012739\nThread:86.20.205.11/@comment-22439-20160920163848\nThread:86.20.98.201/@comment-22439-20150726070545\nThread:86.201.104.154/@comment-22439-20150108225839\nThread:86.204.129.140/@comment-22439-20170113181545\nThread:86.205.77.113/@comment-22439-20141230174305\nThread:86.206.251.116/@comment-22439-20141227142534\nThread:86.209.67.114/@comment-22439-20151105214104\nThread:86.21.205.114/@comment-22439-20150823230524\nThread:86.21.212.113/@comment-22439-20150126062116\nThread:86.212.194.241/@comment-22439-20141220154613\nThread:86.212.246.169/@comment-22439-20141012090931\nThread:86.215.126.50/@comment-22439-20150715173556\nThread:86.216.132.200/@comment-22439-20160218191738\nThread:86.217.27.155/@comment-22439-20150225125053\nThread:86.218.125.32/@comment-22439-20150114103512\nThread:86.218.94.205/@comment-22439-20160105161858\nThread:86.219.178.75/@comment-22439-20170521161510\nThread:86.219.25.231/@comment-22439-20170521004612\nThread:86.221.26.84/@comment-22439-20150103221457\nThread:86.233.9.104/@comment-22439-20170308140750\nThread:86.24.127.31/@comment-22439-20160625211001\nThread:86.24.199.248/@comment-22439-20160110213527\nThread:86.24.232.63/@comment-22439-20150802172351\nThread:86.242.112.26/@comment-22439-20160416172958\nThread:86.242.183.139/@comment-22439-20170120143040\nThread:86.25.130.224/@comment-22439-20141230022817\nThread:86.25.231.220/@comment-22439-20160106161855\nThread:86.26.1.26/@comment-22439-20151029021032\nThread:86.26.147.35/@comment-32769624-20170910223249\nThread:86.26.172.129/@comment-22439-20160103163014\nThread:86.26.19.129/@comment-22439-20150523144009\nThread:86.26.20.73/@comment-22439-20160126014535\nThread:86.26.207.234/@comment-22439-20150331220352\nThread:86.27.136.29/@comment-22439-20150926225755\nThread:86.27.141.194/@comment-22439-20151225220659\nThread:86.27.82.22/@comment-22439-20150819072841\nThread:86.28.175.123/@comment-22439-20160601163954\nThread:86.28.187.117/@comment-22439-20150102172544\nThread:86.28.203.34/@comment-22439-20150412073330\nThread:86.28.205.138/@comment-22439-20150130042057\nThread:86.28.229.13/@comment-22439-20140603121807\nThread:86.29.214.189/@comment-22439-20150713205602\nThread:86.29.214.196/@comment-22439-20150318011022\nThread:86.3.205.254/@comment-22439-20150610235758\nThread:86.3.43.53/@comment-22439-20141119231216\nThread:86.3.74.137/@comment-22439-20150210210004\nThread:86.30.112.220/@comment-22439-20141128210513\nThread:86.30.13.224/@comment-22439-20150406153910\nThread:86.30.143.7/@comment-22439-20150725125713\nThread:86.30.252.23/@comment-22439-20141216230656\nThread:86.31.100.44/@comment-22439-20170214131007\nThread:86.31.180.218/@comment-22439-20170117144037\nThread:86.31.198.223/@comment-22439-20150203133612\nThread:86.33.112.69/@comment-22439-20141222082012\nThread:86.4.163.185/@comment-22439-20150101220149\nThread:86.4.233.239/@comment-22439-20140909184434\nThread:86.40.233.184/@comment-22439-20141229153540\nThread:86.41.119.43/@comment-22439-20150217132443\nThread:86.41.207.96/@comment-22439-20170531192430\nThread:86.42.60.84/@comment-22439-20150726213805\nThread:86.45.98.174/@comment-22439-20150827212558\nThread:86.46.135.21/@comment-22439-20150803132103\nThread:86.49.145.11/@comment-22439-20140907115053\nThread:86.49.39.227/@comment-22439-20150524005850\nThread:86.5.155.28/@comment-22439-20160317095904\nThread:86.5.28.193/@comment-22439-20170705190036\nThread:86.5.70.43/@comment-22439-20151218194510\nThread:86.50.88.59/@comment-22439-20170121203023\nThread:86.52.131.116/@comment-22439-20170324204612\nThread:86.52.37.178/@comment-22439-20141228111237\nThread:86.52.45.54/@comment-22439-20160121141255\nThread:86.52.83.175/@comment-22439-20160112124408\nThread:86.52.85.36/@comment-22439-20170808063835\nThread:86.56.68.95/@comment-22439-20150302234052\nThread:86.56.81.150/@comment-22439-20150316014622\nThread:86.59.122.178/@comment-22439-20170508174907\nThread:86.59.163.221/@comment-22439-20150108101941\nThread:86.59.167.129/@comment-22439-20150322232347\nThread:86.59.213.66/@comment-22439-20160308215227\nThread:86.6.157.60/@comment-22439-20150217112205\nThread:86.6.216.241/@comment-22439-20160114204057\nThread:86.6.69.62/@comment-22439-20170130184632\nThread:86.61.166.2/@comment-22439-20160110191734\nThread:86.7.3.144/@comment-22439-20170526212243\nThread:86.7.33.136/@comment-22439-20141230135659\nThread:86.71.118.51/@comment-22439-20150418175621\nThread:86.73.140.91/@comment-22439-20150109000247\nThread:86.73.40.69/@comment-22439-20150716120935\nThread:86.76.226.245/@comment-22439-20150623193754\nThread:86.8.153.84/@comment-22439-20130105131340\nThread:86.8.24.248/@comment-22439-20150410205819\nThread:86.8.9.144/@comment-22439-20141231142024\nThread:86.82.236.206/@comment-22439-20150728185332\nThread:86.85.183.80/@comment-22439-20141222232736\nThread:86.85.209.235/@comment-22439-20150211192311\nThread:86.88.200.3/@comment-22439-20151030084253\nThread:86.89.218.95/@comment-22439-20161101221747\nThread:86.9.108.33/@comment-22439-20140912124955\nThread:86.9.237.13/@comment-22439-20160214220045\nThread:86.9.27.238/@comment-22439-20150322171347\nThread:86.9.62.138/@comment-22439-20160116154355\nThread:86.9.76.195/@comment-22439-20170314190856\nThread:86.90.35.69/@comment-22439-20160516091958\nThread:86.94.163.181/@comment-22439-20141227153146\nThread:87.102.15.207/@comment-22439-20160824122105\nThread:87.103.12.117/@comment-22439-20150116112110\nThread:87.104.144.99/@comment-22439-20151018225643\nThread:87.104.178.202/@comment-22439-20150121180022\nThread:87.104.197.109/@comment-22439-20150606092930\nThread:87.11.124.253/@comment-22439-20151031191426\nThread:87.110.122.22/@comment-22439-20150208152936\nThread:87.110.123.199/@comment-22439-20150208003054\nThread:87.110.144.198/@comment-22439-20150711075051\nThread:87.112.20.229/@comment-22439-20130106093204\nThread:87.112.244.226/@comment-22439-20160403145722\nThread:87.112.50.180/@comment-22439-20150130180940\nThread:87.113.181.226/@comment-22439-20141114224427\nThread:87.113.185.60/@comment-22439-20150422184359\nThread:87.113.211.162/@comment-22439-20150318193114\nThread:87.113.240.130/@comment-22439-20151213074323\nThread:87.113.91.172/@comment-22439-20150828145939\nThread:87.114.176.29/@comment-22439-20150303193703\nThread:87.114.179.44/@comment-22439-20150118120155\nThread:87.114.189.20/@comment-22439-20141223085050\nThread:87.114.218.231/@comment-22439-20141220020629\nThread:87.114.31.223/@comment-22439-20160123120325\nThread:87.114.61.114/@comment-22439-20150120145941\nThread:87.114.73.33/@comment-22439-20140101130551\nThread:87.115.185.4/@comment-22439-20150130094429\nThread:87.115.186.136/@comment-22439-20150118163417\nThread:87.115.203.10/@comment-22439-20141223163404\nThread:87.115.218.141/@comment-22439-20150407062812\nThread:87.115.62.14/@comment-22439-20160301114538\nThread:87.115.75.87/@comment-22439-20150621215103\nThread:87.116.25.195/@comment-22439-20170123085345\nThread:87.117.16.40/@comment-22439-20141205200346\nThread:87.117.189.202/@comment-22439-20160830075251\nThread:87.123.114.64/@comment-22439-20150912200024\nThread:87.123.195.137/@comment-22439-20141213000858\nThread:87.123.5.41/@comment-22439-20150801095841\nThread:87.127.164.177/@comment-22439-20150506193815\nThread:87.128.14.118/@comment-4403388-20170815075527\nThread:87.13.14.194/@comment-22439-20161126100134\nThread:87.133.55.215/@comment-22439-20160912082721\nThread:87.137.72.82/@comment-22439-20150710053458\nThread:87.14.210.182/@comment-22439-20150608000530\nThread:87.14.36.175/@comment-22439-20170417203507\nThread:87.142.113.118/@comment-22439-20161207234103\nThread:87.144.140.146/@comment-22439-20150106165034\nThread:87.144.142.141/@comment-22439-20150113014913\nThread:87.145.16.248/@comment-22439-20151019173330\nThread:87.146.222.116/@comment-22439-20141005102844\nThread:87.148.202.51/@comment-22439-20160602124023\nThread:87.15.111.108/@comment-22439-20150930095044\nThread:87.15.4.187/@comment-22439-20150805094748\nThread:87.150.111.52/@comment-22439-20160117145217\nThread:87.150.173.56/@comment-22439-20150320123138\nThread:87.151.29.113/@comment-22439-20170430131356\nThread:87.152.185.245/@comment-22439-20150612213405\nThread:87.154.187.72/@comment-22439-20150116211405\nThread:87.155.103.246/@comment-22439-20141101225554\nThread:87.155.121.190/@comment-22439-20141130135356\nThread:87.157.53.88/@comment-22439-20151024003302\nThread:87.158.131.45/@comment-22439-20141222174210\nThread:87.158.137.104/@comment-22439-20150117234838\nThread:87.158.139.216/@comment-22439-20150420134058\nThread:87.158.141.32/@comment-22439-20141221160128\nThread:87.158.143.128/@comment-22439-20150106042918\nThread:87.158.143.57/@comment-22439-20141223145046\nThread:87.158.144.39/@comment-22439-20150107025155\nThread:87.158.150.252/@comment-22439-20150226102211\nThread:87.158.150.52/@comment-22439-20150101183010\nThread:87.158.156.106/@comment-22439-20141226220828\nThread:87.158.159.92/@comment-22439-20150102153739\nThread:87.158.28.227/@comment-22439-20170430091416\nThread:87.162.240.78/@comment-22439-20150316191220\nThread:87.163.145.24/@comment-22439-20150202195942\nThread:87.163.150.179/@comment-22439-20160827153057\nThread:87.163.152.202/@comment-22439-20141231212458\nThread:87.164.191.100/@comment-22439-20170116221407\nThread:87.165.109.70/@comment-22439-20150118164308\nThread:87.165.112.206/@comment-22439-20150402203435\nThread:87.168.118.136/@comment-22439-20150214171446\nThread:87.173.161.62/@comment-22439-20150315140340\nThread:87.174.31.153/@comment-22439-20160123211319\nThread:87.174.52.172/@comment-22439-20141130150536\nThread:87.174.6.226/@comment-22439-20150203163811\nThread:87.176.243.145/@comment-22439-20150817002318\nThread:87.176.244.27/@comment-22439-20150924204117\nThread:87.177.3.4/@comment-22439-20161126065920\nThread:87.178.125.192/@comment-22439-20170613194656\nThread:87.178.224.136/@comment-22439-20150918145632\nThread:87.179.72.222/@comment-22439-20150118165549\nThread:87.179.78.51/@comment-22439-20150531093636\nThread:87.181.124.181/@comment-22439-20141003204159\nThread:87.181.126.140/@comment-22439-20161026233528\nThread:87.181.75.9/@comment-22439-20150712160801\nThread:87.181.78.57/@comment-22439-20150925180615\nThread:87.184.206.181/@comment-22439-20150714130214\nThread:87.186.34.124/@comment-22439-20170322002049\nThread:87.188.107.253/@comment-22439-20141230163634\nThread:87.188.206.145/@comment-22439-20141224095455\nThread:87.188.226.203/@comment-22439-20150121204933\nThread:87.188.226.83/@comment-22439-20141220182221\nThread:87.188.84.216/@comment-22439-20150624165503\nThread:87.189.100.68/@comment-22439-20170722141025\nThread:87.189.156.139/@comment-22439-20151216170929\nThread:87.197.138.213/@comment-22439-20150904123743\nThread:87.2.104.166/@comment-22439-20160726233806\nThread:87.2.13.223/@comment-22439-20150112132552\nThread:87.205.172.25/@comment-22439-20160715141854\nThread:87.205.235.201/@comment-22439-20170706173954\nThread:87.205.238.138/@comment-22439-20161031220628\nThread:87.205.81.13/@comment-22439-20151125103907\nThread:87.205.94.189/@comment-22439-20170723132223\nThread:87.206.209.14/@comment-22439-20160728144653\nThread:87.206.7.221/@comment-22439-20150713185121\nThread:87.218.56.139/@comment-22439-20160622005141\nThread:87.227.25.41/@comment-22439-20160911150256\nThread:87.231.134.180/@comment-22439-20141113170345\nThread:87.231.26.122/@comment-22439-20150210125735\nThread:87.231.43.96/@comment-22439-20160425192537\nThread:87.241.107.6/@comment-22439-20160527234929\nThread:87.242.159.65/@comment-22439-20150102222153\nThread:87.242.164.175/@comment-22439-20141214210010\nThread:87.242.205.63/@comment-22439-20150613203423\nThread:87.244.115.145/@comment-22439-20150619184350\nThread:87.244.71.119/@comment-22439-20150130124019\nThread:87.249.20.162/@comment-22439-20151015064711\nThread:87.253.63.54/@comment-22439-20141227194030\nThread:87.5.61.236/@comment-22439-20150311204622\nThread:87.55.109.238/@comment-22439-20141229204248\nThread:87.58.109.162/@comment-22439-20160324064443\nThread:87.59.123.108/@comment-22439-20160522181918\nThread:87.6.231.61/@comment-22439-20151129234343\nThread:87.63.105.162/@comment-22439-20170524201152\nThread:87.65.154.203/@comment-22439-20150105080940\nThread:87.65.199.197/@comment-22439-20150228224751\nThread:87.65.208.168/@comment-22439-20150302213633\nThread:87.65.233.175/@comment-22439-20150803045400\nThread:87.65.249.25/@comment-22439-20150802112208\nThread:87.66.175.84/@comment-22439-20160109170049\nThread:87.66.214.14/@comment-22439-20150611210516\nThread:87.67.188.79/@comment-22439-20141228140031\nThread:87.73.90.11/@comment-22439-20150608150744\nThread:87.78.43.115/@comment-22439-20160723200225\nThread:87.79.100.83/@comment-22439-20141220193337\nThread:87.79.131.56/@comment-22439-20150717174851\nThread:87.79.156.234/@comment-22439-20151023120832\nThread:87.79.179.197/@comment-22439-20150122193237\nThread:87.8.54.92/@comment-22439-20150304223255\nThread:87.81.139.4/@comment-22439-20170103201446\nThread:87.81.150.250/@comment-22439-20141226125740\nThread:87.81.175.224/@comment-22439-20150527225102\nThread:87.81.186.115/@comment-22439-20150528082420\nThread:87.81.231.236/@comment-22439-20141226144622\nThread:87.81.239.124/@comment-22439-20150212200450\nThread:87.81.250.189/@comment-22439-20141027170416\nThread:87.89.34.241/@comment-22439-20150501185838\nThread:87.93.178.210/@comment-22439-20160114001857\nThread:87.94.229.254/@comment-22439-20160531201515\nThread:87.98.44.188/@comment-22439-20150211201305\nThread:88.10.69.188/@comment-22439-20150816171840\nThread:88.100.52.140/@comment-22439-20150323021907\nThread:88.101.52.139/@comment-22439-20150321145744\nThread:88.102.152.99/@comment-22439-20141216044556\nThread:88.102.161.39/@comment-22439-20150131114327\nThread:88.104.253.1/@comment-22439-20150119134212\nThread:88.106.11.92/@comment-22439-20150729204225\nThread:88.106.30.154/@comment-22439-20150529194858\nThread:88.106.92.130/@comment-22439-20150913140536\nThread:88.109.53.111/@comment-22439-20161116224926\nThread:88.109.55.111/@comment-22439-20160124211620\nThread:88.109.83.17/@comment-22439-20150103001109\nThread:88.110.93.217/@comment-22439-20150807185037\nThread:88.111.0.197/@comment-22439-20161102222808\nThread:88.111.92.216/@comment-22439-20160408194408\nThread:88.112.115.253/@comment-22439-20170407095509\nThread:88.112.129.112/@comment-22439-20170412185726\nThread:88.112.171.17/@comment-22439-20150106061022\nThread:88.112.91.114/@comment-22439-20141224151744\nThread:88.113.156.218/@comment-22439-20170805181147\nThread:88.113.77.22/@comment-22439-20141228210403\nThread:88.113.93.91/@comment-22439-20150406175632\nThread:88.114.21.167/@comment-22439-20161202011408\nThread:88.115.12.164/@comment-22439-20150608232255\nThread:88.115.162.11/@comment-22439-20160316200119\nThread:88.115.190.42/@comment-22439-20150123044752\nThread:88.115.191.247/@comment-22439-20151216084112\nThread:88.115.71.172/@comment-22439-20150325165351\nThread:88.117.120.1/@comment-22439-20150101223953\nThread:88.117.93.86/@comment-22439-20151224153944\nThread:88.123.4.162/@comment-22439-20160928181614\nThread:88.125.166.63/@comment-22439-20160521053836\nThread:88.129.233.107/@comment-22439-20151108174905\nThread:88.130.212.27/@comment-22439-20150312122819\nThread:88.131.105.133/@comment-22439-20150114152010\nThread:88.134.134.115/@comment-22439-20141126194648\nThread:88.139.99.207/@comment-22439-20141211015323\nThread:88.147.48.12/@comment-22439-20170518233743\nThread:88.147.65.191/@comment-22439-20160425140034\nThread:88.149.170.67/@comment-22439-20150604013457\nThread:88.149.171.209/@comment-22439-20150312220040\nThread:88.150.206.168/@comment-22439-20161202181123\nThread:88.152.131.156/@comment-22439-20150113030100\nThread:88.152.186.216/@comment-22439-20150122235023\nThread:88.152.36.105/@comment-22439-20170314133507\nThread:88.152.46.63/@comment-22439-20151009152749\nThread:88.152.65.199/@comment-22439-20170329152236\nThread:88.152.85.18/@comment-22439-20150430191518\nThread:88.152.98.102/@comment-22439-20160817122544\nThread:88.153.108.130/@comment-22439-20170325075354\nThread:88.153.26.176/@comment-22439-20151020155406\nThread:88.153.6.187/@comment-22439-20150818052901\nThread:88.153.7.180/@comment-22439-20150824112855\nThread:88.153.81.102/@comment-22439-20150117172112\nThread:88.156.226.166/@comment-22439-20150807000003\nThread:88.156.5.208/@comment-22439-20151014221741\nThread:88.159.109.149/@comment-22439-20150423175726\nThread:88.159.77.1/@comment-22439-20141021201201\nThread:88.160.86.181/@comment-22439-20150510171153\nThread:88.161.154.35/@comment-22439-20160112202453\nThread:88.162.87.224/@comment-22439-20170715000704\nThread:88.163.254.90/@comment-22439-20160414222929\nThread:88.164.101.35/@comment-22439-20150205150440\nThread:88.164.157.173/@comment-22439-20150213080745\nThread:88.165.117.229/@comment-22439-20170528223237\nThread:88.165.17.22/@comment-22439-20160815224508\nThread:88.168.110.81/@comment-22439-20150609104158\nThread:88.168.127.93/@comment-22439-20150331143610\nThread:88.17.77.58/@comment-22439-20161108094619\nThread:88.173.202.245/@comment-22439-20150627110432\nThread:88.175.110.191/@comment-22439-20150313132834\nThread:88.176.116.33/@comment-22439-20141227032517\nThread:88.179.236.165/@comment-22439-20150523175820\nThread:88.18.164.212/@comment-22439-20160126154448\nThread:88.184.124.10/@comment-22439-20150408203959\nThread:88.185.61.186/@comment-22439-20150714110417\nThread:88.190.190.208/@comment-22439-20160110143839\nThread:88.191.239.117/@comment-22439-20170617171548\nThread:88.192.22.237/@comment-22439-20160714223233\nThread:88.192.81.190/@comment-22439-20150414135002\nThread:88.195.183.220/@comment-22439-20161125143021\nThread:88.195.207.152/@comment-22439-20160324122305\nThread:88.195.244.170/@comment-22439-20150109091045\nThread:88.195.6.50/@comment-22439-20150607155758\nThread:88.196.200.164/@comment-22439-20151218120310\nThread:88.196.200.74/@comment-22439-20150805131257\nThread:88.20.114.68/@comment-22439-20161031221309\nThread:88.206.182.6/@comment-22439-20170513194739\nThread:88.206.9.47/@comment-22439-20151125142533\nThread:88.207.13.91/@comment-22439-20150124223112\nThread:88.207.220.195/@comment-22439-20150628192202\nThread:88.207.35.224/@comment-22439-20150111145610\nThread:88.212.37.153/@comment-22439-20151230213803\nThread:88.215.93.52/@comment-22439-20150102235417\nThread:88.216.27.79/@comment-22439-20150207125230\nThread:88.217.180.108/@comment-22439-20141007184815\nThread:88.217.181.201/@comment-22439-20150908101639\nThread:88.217.25.187/@comment-22439-20150523200614\nThread:88.217.5.191/@comment-22439-20151126195009\nThread:88.217.64.214/@comment-22439-20140905222900\nThread:88.220.45.222/@comment-22439-20170217192532\nThread:88.223.66.201/@comment-22439-20170702103729\nThread:88.23.79.23/@comment-22439-20160124111524\nThread:88.235.151.1/@comment-22439-20141020223100\nThread:88.235.187.185/@comment-22439-20160630080148\nThread:88.6.91.22/@comment-22439-20150327232434\nThread:88.64.237.72/@comment-22439-20141221232226\nThread:88.65.181.37/@comment-22439-20151105142336\nThread:88.65.82.161/@comment-22439-20141219103954\nThread:88.66.145.183/@comment-22439-20150321235804\nThread:88.68.232.213/@comment-22439-20141030194543\nThread:88.7.79.210/@comment-22439-20170317111733\nThread:88.70.22.246/@comment-22439-20150915210058\nThread:88.72.1.36/@comment-22439-20170222150805\nThread:88.72.8.201/@comment-22439-20170413131559\nThread:88.73.246.252/@comment-22439-20150115225833\nThread:88.73.51.131/@comment-22439-20140602071347\nThread:88.73.65.64/@comment-22439-20170416155839\nThread:88.73.8.204/@comment-22439-20150129205741\nThread:88.75.155.221/@comment-22439-20150815032650\nThread:88.76.232.202/@comment-22439-20141221033424\nThread:88.8.69.87/@comment-22439-20150128151643\nThread:88.80.251.245/@comment-22439-20160206094709\nThread:88.84.15.165/@comment-22439-20151208193818\nThread:88.84.189.177/@comment-22439-20150528193308\nThread:88.85.155.146/@comment-22439-20150223154411\nThread:88.85.44.241/@comment-22439-20150214130209\nThread:88.88.13.150/@comment-22439-20151203182129\nThread:88.89.115.252/@comment-22439-20151108130221\nThread:88.89.154.155/@comment-22439-20150512155801\nThread:88.9.175.167/@comment-22439-20150309235737\nThread:88.90.97.199/@comment-22439-20151208233010\nThread:88.91.195.106/@comment-22439-20141206181158\nThread:88.91.253.148/@comment-22439-20150613090510\nThread:88.91.72.134/@comment-22439-20150801145527\nThread:88.96.97.118/@comment-22439-20141223030341\nThread:88.97.57.221/@comment-22439-20151110222622\nThread:88.98.207.25/@comment-22439-20170312145052\nThread:88.98.51.190/@comment-22439-20150824082437\nThread:89.0.159.228/@comment-22439-20150324105745\nThread:89.0.16.224/@comment-22439-20150324195117\nThread:89.0.222.15/@comment-22439-20150325212645\nThread:89.0.248.64/@comment-22439-20150625222510\nThread:89.100.162.55/@comment-22439-20141222012128\nThread:89.100.254.253/@comment-22439-20150312142611\nThread:89.100.84.116/@comment-22439-20150130173601\nThread:89.101.211.80/@comment-22439-20141223233423\nThread:89.101.53.58/@comment-22439-20150404162039\nThread:89.101.97.130/@comment-22439-20160201151747\nThread:89.102.140.98/@comment-22439-20150201092657\nThread:89.102.141.56/@comment-22439-20150115091559\nThread:89.103.130.206/@comment-22439-20150104005256\nThread:89.103.163.33/@comment-22439-20150503153921\nThread:89.103.44.238/@comment-22439-20150806161549\nThread:89.103.56.151/@comment-22439-20150123134426\nThread:89.106.138.1/@comment-22439-20150714171813\nThread:89.114.86.0/@comment-22439-20160529152657\nThread:89.115.159.235/@comment-22439-20160322114929\nThread:89.12.48.215/@comment-22439-20150503105833\nThread:89.129.30.32/@comment-22439-20160811151443\nThread:89.13.118.16/@comment-22439-20151021172658\nThread:89.13.93.165/@comment-22439-20150906171112\nThread:89.130.224.86/@comment-22439-20161009184055\nThread:89.134.204.83/@comment-22439-20150807104302\nThread:89.135.145.194/@comment-22439-20151023233500\nThread:89.136.179.79/@comment-22439-20170701201729\nThread:89.136.244.65/@comment-22439-20170502133714\nThread:89.137.153.149/@comment-22439-20150717105249\nThread:89.14.113.144/@comment-22439-20150502113735\nThread:89.144.207.73/@comment-22439-20141005200445\nThread:89.146.142.73/@comment-22439-20151129132013\nThread:89.151.148.222/@comment-22439-20161216233712\nThread:89.152.151.58/@comment-22439-20150715162744\nThread:89.154.201.149/@comment-22439-20151215194005\nThread:89.155.22.46/@comment-22439-20151020012610\nThread:89.156.57.45/@comment-22439-20160112111903\nThread:89.158.249.171/@comment-22439-20150201143653\nThread:89.160.214.15/@comment-22439-20150927212009\nThread:89.160.84.242/@comment-22439-20150301094228\nThread:89.164.134.104/@comment-32769624-20170905101147\nThread:89.164.144.20/@comment-22439-20150114155058\nThread:89.166.237.95/@comment-22439-20150316231038\nThread:89.166.28.176/@comment-22439-20150208175903\nThread:89.168.0.206/@comment-22439-20150220161050\nThread:89.168.120.161/@comment-22439-20150420185041\nThread:89.168.133.96/@comment-22439-20160407215317\nThread:89.168.144.45/@comment-22439-20150731110348\nThread:89.168.207.223/@comment-22439-20150512011353\nThread:89.169.6.226/@comment-22439-20150606074225\nThread:89.172.68.75/@comment-22439-20160205234144\nThread:89.173.35.241/@comment-22439-20141118190711\nThread:89.173.76.190/@comment-22439-20150616203233\nThread:89.176.13.114/@comment-22439-20151220065834\nThread:89.176.136.134/@comment-22439-20150709203304\nThread:89.176.178.22/@comment-22439-20160118203130\nThread:89.177.15.113/@comment-22439-20160811164457\nThread:89.177.56.212/@comment-22439-20170205103435\nThread:89.181.91.0/@comment-22439-20170710075712\nThread:89.182.199.237/@comment-22439-20161019053146\nThread:89.182.56.174/@comment-22439-20170211182748\nThread:89.184.130.188/@comment-22439-20151130074706\nThread:89.192.161.218/@comment-22439-20150606143608\nThread:89.2.77.125/@comment-22439-20150919135608\nThread:89.2.9.249/@comment-22439-20161123173327\nThread:89.204.130.181/@comment-22439-20150312180048\nThread:89.204.130.57/@comment-22439-20150415135451\nThread:89.204.135.129/@comment-22439-20160508133912\nThread:89.204.139.136/@comment-22439-20170209141341\nThread:89.212.154.170/@comment-22439-20160313111052\nThread:89.213.14.198/@comment-22439-20151106102210\nThread:89.22.50.59/@comment-22439-20150703110948\nThread:89.228.81.37/@comment-22439-20150129183524\nThread:89.233.232.121/@comment-22439-20150805200036\nThread:89.240.203.112/@comment-22439-20161222225547\nThread:89.240.242.30/@comment-22439-20141229092442\nThread:89.240.60.254/@comment-22439-20150701143436\nThread:89.242.42.212/@comment-22439-20150110160444\nThread:89.243.18.74/@comment-22439-20151227193122\nThread:89.243.93.9/@comment-22439-20140917224113\nThread:89.245.41.160/@comment-22439-20160110120642\nThread:89.246.168.252/@comment-22439-20150607221132\nThread:89.246.188.54/@comment-22439-20150324165557\nThread:89.249.2.53/@comment-22439-20150820092647\nThread:89.253.76.71/@comment-22439-20150518185807\nThread:89.27.35.127/@comment-22439-20151217184128\nThread:89.27.36.133/@comment-22439-20150126083742\nThread:89.27.82.108/@comment-22439-20150405115205\nThread:89.29.254.38/@comment-22439-20150313173723\nThread:89.42.37.132/@comment-22439-20150331135218\nThread:89.64.32.196/@comment-22439-20151204220920\nThread:89.65.236.135/@comment-22439-20150207145916\nThread:89.65.51.237/@comment-22439-20160109072920\nThread:89.66.219.62/@comment-22439-20160331204458\nThread:89.66.38.22/@comment-22439-20160428233107\nThread:89.66.59.144/@comment-22439-20161105192750\nThread:89.72.109.26/@comment-22439-20150118155447\nThread:89.72.119.169/@comment-22439-20150115011314\nThread:89.72.218.9/@comment-22439-20170406143812\nThread:89.73.209.101/@comment-22439-20150405002041\nThread:89.73.219.205/@comment-22439-20141223184253\nThread:89.73.52.82/@comment-22439-20150126080220\nThread:89.73.55.19/@comment-22439-20160531214802\nThread:89.73.90.167/@comment-22439-20151018120403\nThread:89.74.12.11/@comment-22439-20170105232930\nThread:89.74.228.150/@comment-22439-20150701221324\nThread:89.74.232.156/@comment-22439-20151206221354\nThread:89.74.234.103/@comment-22439-20160825215944\nThread:89.77.85.31/@comment-22439-20150313220939\nThread:89.78.233.58/@comment-22439-20141230102426\nThread:89.85.50.189/@comment-22439-20151213201903\nThread:89.88.48.115/@comment-22439-20160512234309\nThread:89.92.119.132/@comment-22439-20150105182310\nThread:89.92.232.118/@comment-22439-20150225180411\nThread:89.93.134.81/@comment-22439-20150109051430\nThread:89.99.171.161/@comment-22439-20141115185929\nThread:90.107.121.63/@comment-22439-20170110000256\nThread:90.12.126.218/@comment-22439-20160612083237\nThread:90.12.220.122/@comment-22439-20160608205558\nThread:90.144.181.197/@comment-22439-20141218035053\nThread:90.144.200.153/@comment-22439-20141225205153\nThread:90.144.212.14/@comment-22439-20150916180514\nThread:90.144.215.198/@comment-12138097-20141119204902\nThread:90.144.215.198/@comment-22439-20141119201330\nThread:90.144.216.23/@comment-22439-20141213170324\nThread:90.144.254.74/@comment-22439-20141105075923\nThread:90.149.11.183/@comment-22439-20150906224427\nThread:90.149.15.199/@comment-22439-20160219231438\nThread:90.149.231.161/@comment-22439-20160123000000\nThread:90.15.110.73/@comment-22439-20150116045938\nThread:90.15.4.231/@comment-32769624-20170830101720\nThread:90.152.7.182/@comment-22439-20150417140644\nThread:90.154.74.185/@comment-22439-20150822104930\nThread:90.154.74.197/@comment-22439-20151017204959\nThread:90.154.74.237/@comment-22439-20151115120305\nThread:90.154.74.53/@comment-22439-20150815114838\nThread:90.155.79.249/@comment-22439-20170302221924\nThread:90.169.232.108/@comment-22439-20150612145317\nThread:90.170.9.145/@comment-22439-20160410191203\nThread:90.177.69.121/@comment-22439-20151217030211\nThread:90.18.13.49/@comment-22439-20150923201238\nThread:90.18.41.23/@comment-22439-20150101185514\nThread:90.181.68.241/@comment-22439-20150114112724\nThread:90.184.62.140/@comment-22439-20130907212936\nThread:90.185.98.78/@comment-22439-20150209113705\nThread:90.19.184.252/@comment-22439-20160917164720\nThread:90.190.185.5/@comment-22439-20170106082137\nThread:90.190.244.77/@comment-22439-20150630233415\nThread:90.191.106.62/@comment-22439-20150101000813\nThread:90.191.217.209/@comment-22439-20150310012718\nThread:90.192.168.68/@comment-22439-20141025014457\nThread:90.193.239.170/@comment-22439-20160316192449\nThread:90.194.43.190/@comment-22439-20150303134105\nThread:90.195.21.142/@comment-22439-20160604062814\nThread:90.196.59.122/@comment-22439-20150705145720\nThread:90.197.118.147/@comment-22439-20141224201727\nThread:90.197.15.46/@comment-22439-20150606145519\nThread:90.197.160.197/@comment-22439-20140923193238\nThread:90.198.109.101/@comment-22439-20170430135612\nThread:90.198.69.26/@comment-22439-20150207135700\nThread:90.199.237.224/@comment-22439-20170212112145\nThread:90.199.8.70/@comment-22439-20150609110101\nThread:90.2.153.121/@comment-22439-20170121214609\nThread:90.200.169.37/@comment-22439-20150603080824\nThread:90.201.34.97/@comment-22439-20150223223726\nThread:90.202.205.125/@comment-22439-20150606000117\nThread:90.202.52.114/@comment-22439-20141124145853\nThread:90.203.125.65/@comment-22439-20141026140126\nThread:90.204.159.25/@comment-22439-20160109040348\nThread:90.205.111.208/@comment-22439-20160716162259\nThread:90.205.35.59/@comment-22439-20160501235740\nThread:90.205.91.129/@comment-22439-20170628194109\nThread:90.206.33.30/@comment-22439-20160316201421\nThread:90.206.55.152/@comment-22439-20150611121627\nThread:90.206.77.248/@comment-22439-20160919114917\nThread:90.208.6.45/@comment-22439-20170115154352\nThread:90.21.52.152/@comment-22439-20151231231230\nThread:90.210.17.201/@comment-22439-20150808093045\nThread:90.210.206.69/@comment-22439-20150820121635\nThread:90.211.75.104/@comment-22439-20150522080642\nThread:90.212.109.31/@comment-22439-20150607145949\nThread:90.212.140.132/@comment-22439-20170216184536\nThread:90.212.156.106/@comment-22439-20151216173002\nThread:90.212.40.223/@comment-22439-20161125191510\nThread:90.213.127.35/@comment-22439-20150704213754\nThread:90.215.99.210/@comment-22439-20150311185952\nThread:90.216.134.197/@comment-22439-20150419162857\nThread:90.216.196.198/@comment-22439-20160806100012\nThread:90.216.228.6/@comment-22439-20170329081758\nThread:90.216.46.192/@comment-22439-20170216070435\nThread:90.216.90.246/@comment-22439-20170417092538\nThread:90.217.129.100/@comment-22439-20150131135924\nThread:90.217.225.12/@comment-22439-20141221020756\nThread:90.217.42.150/@comment-22439-20160224185916\nThread:90.217.95.144/@comment-22439-20160109235412\nThread:90.218.113.180/@comment-22439-20150531073850\nThread:90.218.148.248/@comment-22439-20170517164548\nThread:90.218.225.205/@comment-22439-20150731175230\nThread:90.218.4.200/@comment-22439-20151106112012\nThread:90.218.7.157/@comment-22439-20160429174001\nThread:90.219.125.40/@comment-22439-20150323210800\nThread:90.219.136.177/@comment-22439-20170114005052\nThread:90.219.235.26/@comment-22439-20141121135058\nThread:90.219.50.166/@comment-22439-20160610220048\nThread:90.219.97.65/@comment-22439-20141226014117\nThread:90.220.141.0/@comment-22439-20150601064047\nThread:90.220.204.4/@comment-22439-20151101153651\nThread:90.220.229.220/@comment-22439-20170416145449\nThread:90.221.134.174/@comment-22439-20150607003056\nThread:90.221.7.222/@comment-22439-20150710233216\nThread:90.222.117.61/@comment-22439-20170415151547\nThread:90.222.125.73/@comment-22439-20160320120609\nThread:90.222.158.206/@comment-22439-20160427135102\nThread:90.222.86.59/@comment-22439-20150111034720\nThread:90.222.90.97/@comment-22439-20150423214049\nThread:90.226.110.52/@comment-4403388-20170817105855\nThread:90.226.83.68/@comment-22439-20160520020307\nThread:90.229.193.208/@comment-32769624-20170830085432\nThread:90.230.130.74/@comment-22439-20150906105547\nThread:90.230.209.150/@comment-22439-20160103154419\nThread:90.230.3.38/@comment-22439-20150101145900\nThread:90.231.164.36/@comment-22439-20170122112157\nThread:90.231.177.208/@comment-22439-20150315115113\nThread:90.231.183.223/@comment-22439-20170712153526\nThread:90.231.188.102/@comment-22439-20141223164220\nThread:90.24.8.107/@comment-22439-20170101194908\nThread:90.25.15.29/@comment-22439-20150531194238\nThread:90.25.249.46/@comment-22439-20150619220839\nThread:90.25.36.137/@comment-22439-20150614072237\nThread:90.25.69.6/@comment-22439-20151211160608\nThread:90.254.106.155/@comment-22439-20170422183303\nThread:90.254.27.195/@comment-22439-20170616231248\nThread:90.255.194.128/@comment-22439-20170703171741\nThread:90.255.83.60/@comment-22439-20170220094332\nThread:90.26.73.59/@comment-22439-20150620145458\nThread:90.27.223.213/@comment-22439-20141123134452\nThread:90.28.134.149/@comment-22439-20150718215052\nThread:90.3.121.131/@comment-22439-20151223144416\nThread:90.3.38.51/@comment-22439-20160125024039\nThread:90.35.245.215/@comment-22439-20160528014640\nThread:90.38.83.66/@comment-22439-20141229024341\nThread:90.41.171.173/@comment-22439-20150821105919\nThread:90.43.150.82/@comment-22439-20150927112853\nThread:90.46.41.103/@comment-22439-20160801165728\nThread:90.48.60.238/@comment-22439-20151021013008\nThread:90.5.182.122/@comment-22439-20160903224159\nThread:90.52.182.72/@comment-22439-20150118220229\nThread:90.54.232.29/@comment-22439-20160521173712\nThread:90.61.228.242/@comment-22439-20150923231321\nThread:90.62.173.13/@comment-22439-20140612085933\nThread:90.8.89.74/@comment-22439-20150102031518\nThread:90.92.121.44/@comment-22439-20170615142340\nThread:90Ghost90/@comment-32769624-20190208183916\nThread:91.11.106.189/@comment-22439-20150506090000\nThread:91.11.91.178/@comment-22439-20150803100041\nThread:91.113.219.98/@comment-22439-20150805145518\nThread:91.113.60.62/@comment-22439-20141102171650\nThread:91.116.144.253/@comment-22439-20151025133434\nThread:91.117.5.94/@comment-22439-20151218171612\nThread:91.119.21.122/@comment-22439-20141016164924\nThread:91.119.28.87/@comment-22439-20141102160028\nThread:91.119.29.23/@comment-22439-20141030180601\nThread:91.12.109.116/@comment-22439-20150126022824\nThread:91.12.109.240/@comment-22439-20150128224605\nThread:91.120.67.156/@comment-22439-20150808192821\nThread:91.123.27.10/@comment-22439-20151002033217\nThread:91.125.14.42/@comment-22439-20170704130553\nThread:91.125.153.117/@comment-22439-20150309194956\nThread:91.125.153.169/@comment-22439-20150509133933\nThread:91.125.161.161/@comment-22439-20130703144531\nThread:91.125.221.236/@comment-22439-20160708163555\nThread:91.125.23.232/@comment-22439-20150226215522\nThread:91.125.239.5/@comment-22439-20160402011629\nThread:91.125.254.73/@comment-22439-20141219175658\nThread:91.125.26.177/@comment-22439-20141229155722\nThread:91.125.67.26/@comment-22439-20150117151459\nThread:91.125.91.192/@comment-22439-20160531113220\nThread:91.127.161.87/@comment-22439-20170114195643\nThread:91.128.220.15/@comment-22439-20150304134447\nThread:91.13.192.177/@comment-22439-20151013160825\nThread:91.133.79.193/@comment-22439-20161008153450\nThread:91.135.8.90/@comment-22439-20141019213211\nThread:91.138.15.112/@comment-22439-20150228233808\nThread:91.139.0.193/@comment-22439-20141222125153\nThread:91.140.76.123/@comment-22439-20150516191137\nThread:91.141.3.77/@comment-22439-20170417144133\nThread:91.141.3.94/@comment-22439-20150918075636\nThread:91.143.240.245/@comment-22439-20160712075315\nThread:91.144.143.204/@comment-22439-20141008193518\nThread:91.144.199.135/@comment-22439-20150317102419\nThread:91.145.115.173/@comment-22439-20151218163354\nThread:91.146.214.136/@comment-22439-20150103013125\nThread:91.151.207.102/@comment-22439-20150412173132\nThread:91.152.102.4/@comment-22439-20160124133205\nThread:91.152.193.52/@comment-22439-20141230150634\nThread:91.153.171.188/@comment-22439-20161104143954\nThread:91.153.25.132/@comment-22439-20150317164717\nThread:91.153.81.197/@comment-22439-20151101111504\nThread:91.154.126.118/@comment-22439-20150612153251\nThread:91.154.94.135/@comment-22439-20151024140849\nThread:91.155.150.140/@comment-22439-20150627131855\nThread:91.155.244.212/@comment-22439-20151101182016\nThread:91.156.146.127/@comment-22439-20160507125302\nThread:91.156.148.106/@comment-22439-20160325011012\nThread:91.156.180.54/@comment-22439-20151216045808\nThread:91.156.236.227/@comment-22439-20150111224744\nThread:91.157.132.170/@comment-22439-20150105175404\nThread:91.157.139.69/@comment-22439-20150607183216\nThread:91.157.142.84/@comment-22439-20151226183256\nThread:91.157.82.176/@comment-22439-20141227203855\nThread:91.158.15.3/@comment-22439-20161129005221\nThread:91.158.160.234/@comment-22439-20150725201949\nThread:91.158.168.72/@comment-22439-20150702202115\nThread:91.158.173.97/@comment-22439-20141214021041\nThread:91.158.175.250/@comment-22439-20150210231734\nThread:91.159.105.72/@comment-22439-20150530102351\nThread:91.159.106.176/@comment-22439-20170413123120\nThread:91.159.154.165/@comment-22439-20151108190048\nThread:91.176.222.127/@comment-22439-20150605124656\nThread:91.176.74.129/@comment-22439-20160311195150\nThread:91.178.229.84/@comment-22439-20160313171625\nThread:91.179.26.112/@comment-22439-20150808133622\nThread:91.180.145.64/@comment-22439-20161026233105\nThread:91.180.155.48/@comment-22439-20150113211631\nThread:91.180.98.181/@comment-22439-20170121222645\nThread:91.181.50.244/@comment-22439-20150505080657\nThread:91.186.159.111/@comment-22439-20150411130803\nThread:91.189.0.214/@comment-22439-20170502195849\nThread:91.193.208.114/@comment-22439-20160124193714\nThread:91.196.8.74/@comment-22439-20170422041219\nThread:91.197.174.239/@comment-22439-20150701142453\nThread:91.2.214.200/@comment-22439-20150112154849\nThread:91.2.251.140/@comment-22439-20141130100058\nThread:91.20.124.78/@comment-22439-20150301004751\nThread:91.206.0.43/@comment-22439-20170209160821\nThread:91.21.237.123/@comment-22439-20160627120737\nThread:91.212.44.254/@comment-22439-20150507131341\nThread:91.216.1.103/@comment-22439-20130103102306\nThread:91.221.55.69/@comment-22439-20170611072937\nThread:91.226.196.10/@comment-22439-20160109151547\nThread:91.226.199.157/@comment-22439-20160311203351\nThread:91.227.212.3/@comment-22439-20170329095836\nThread:91.228.164.28/@comment-22439-20170208162105\nThread:91.228.234.104/@comment-22439-20150111113041\nThread:91.228.234.126/@comment-22439-20141223160421\nThread:91.228.45.15/@comment-22439-20161015222311\nThread:91.23.70.81/@comment-22439-20150330085333\nThread:91.230.165.147/@comment-22439-20161005214210\nThread:91.231.141.225/@comment-22439-20160526112433\nThread:91.231.24.73/@comment-22439-20151103024249\nThread:91.231.248.212/@comment-22439-20170725002757\nThread:91.236.210.184/@comment-22439-20151120083957\nThread:91.238.197.7/@comment-22439-20140130100211\nThread:91.238.197.89/@comment-22439-20130914193723\nThread:91.239.175.40/@comment-22439-20150405105738\nThread:91.246.112.139/@comment-22439-20150601160129\nThread:91.248.142.83/@comment-22439-20170630162616\nThread:91.3.111.3/@comment-22439-20141220151519\nThread:91.35.190.134/@comment-22439-20170412225353\nThread:91.35.219.38/@comment-22439-20161013182252\nThread:91.36.54.203/@comment-22439-20150426203946\nThread:91.36.9.81/@comment-22439-20151219214928\nThread:91.41.165.193/@comment-22439-20141230235824\nThread:91.42.214.80/@comment-22439-20161006185453\nThread:91.42.216.240/@comment-22439-20151129122748\nThread:91.44.87.109/@comment-22439-20150103185042\nThread:91.44.97.161/@comment-22439-20150517203040\nThread:91.48.47.63/@comment-22439-20160212190516\nThread:91.49.155.37/@comment-22439-20160829165920\nThread:91.50.235.118/@comment-22439-20141130155132\nThread:91.52.190.237/@comment-22439-20140926083951\nThread:91.53.185.233/@comment-22439-20160724180203\nThread:91.53.194.25/@comment-22439-20160622154312\nThread:91.55.177.33/@comment-22439-20150603195358\nThread:91.55.180.93/@comment-22439-20150604065632\nThread:91.56.221.137/@comment-22439-20150609192501\nThread:91.58.12.76/@comment-22439-20150927091157\nThread:91.6.227.194/@comment-22439-20150621004007\nThread:91.6.74.105/@comment-22439-20150610155221\nThread:91.61.118.25/@comment-22439-20141009131253\nThread:91.63.204.169/@comment-22439-20160810071859\nThread:91.63.98.114/@comment-22439-20151023205656\nThread:91.64.143.213/@comment-22439-20160915144609\nThread:91.64.159.106/@comment-22439-20141226174454\nThread:91.64.199.60/@comment-22439-20150101203607\nThread:91.64.211.22/@comment-22439-20141215145222\nThread:91.64.72.150/@comment-22439-20151218190524\nThread:91.65.154.243/@comment-22439-20150123084750\nThread:91.65.226.215/@comment-22439-20150420025913\nThread:91.65.35.233/@comment-22439-20141229233604\nThread:91.65.95.184/@comment-22439-20151222204313\nThread:91.66.140.21/@comment-22439-20150223024320\nThread:91.67.18.218/@comment-22439-20150228231053\nThread:91.67.206.51/@comment-22439-20150113055620\nThread:91.67.22.246/@comment-22439-20150101215911\nThread:91.67.33.209/@comment-22439-20150331110630\nThread:91.67.81.110/@comment-22439-20141220141122\nThread:91.78.26.254/@comment-22439-20150412054552\nThread:91.79.62.107/@comment-22439-20150126060335\nThread:91.8.148.90/@comment-22439-20150408160549\nThread:91.8.154.54/@comment-22439-20150406185653\nThread:91.82.1.140/@comment-22439-20141230121611\nThread:91.82.177.218/@comment-22439-20160221204539\nThread:91.82.6.151/@comment-22439-20160819124127\nThread:91.83.18.105/@comment-22439-20160222193231\nThread:91.89.132.56/@comment-22439-20150715150021\nThread:91.89.253.9/@comment-22439-20161025134943\nThread:91.89.40.136/@comment-22439-20141227164246\nThread:91.89.70.42/@comment-22439-20151203192408\nThread:91.9.1.204/@comment-22439-20150102133052\nThread:91.9.174.107/@comment-22439-20150114114036\nThread:91.9.198.84/@comment-22439-20150107152300\nThread:91.90.160.132/@comment-22439-20160205205245\nThread:91.93.95.95/@comment-4403388-20170815205552\nThread:91.96.184.177/@comment-22439-20170803110013\nThread:91.96.63.45/@comment-22439-20150819210837\nThread:91.97.80.118/@comment-22439-20151228221943\nThread:91.97.99.58/@comment-22439-20151229225201\nThread:92.0.101.57/@comment-22439-20150203154356\nThread:92.1.13.66/@comment-22439-20150507171715\nThread:92.1.139.196/@comment-22439-20160918143251\nThread:92.1.187.231/@comment-22439-20150603100454\nThread:92.1.38.118/@comment-22439-20170116125644\nThread:92.1.91.134/@comment-22439-20141019135249\nThread:92.10.30.133/@comment-22439-20150805020355\nThread:92.10.69.239/@comment-22439-20150111035109\nThread:92.103.158.186/@comment-22439-20160824104640\nThread:92.104.139.72/@comment-22439-20141223210408\nThread:92.104.152.6/@comment-22439-20160425112712\nThread:92.104.171.77/@comment-22439-20150105211954\nThread:92.106.23.229/@comment-22439-20160109220416\nThread:92.107.88.36/@comment-22439-20150216171743\nThread:92.108.140.162/@comment-22439-20160329123156\nThread:92.108.198.210/@comment-22439-20150404173853\nThread:92.108.45.208/@comment-22439-20150427202629\nThread:92.108.91.178/@comment-22439-20150317021315\nThread:92.109.212.209/@comment-22439-20150509132211\nThread:92.11.187.4/@comment-22439-20150624184917\nThread:92.110.173.129/@comment-22439-20141003120425\nThread:92.12.133.204/@comment-22439-20150110194510\nThread:92.12.134.221/@comment-22439-20150527233523\nThread:92.12.47.26/@comment-22439-20150113005405\nThread:92.12.65.85/@comment-22439-20141221200223\nThread:92.12.7.130/@comment-22439-20150804075557\nThread:92.129.108.11/@comment-22439-20170106122117\nThread:92.129.214.220/@comment-22439-20160821145539\nThread:92.129.244.178/@comment-22439-20150126065218\nThread:92.13.10.47/@comment-22439-20151008205859\nThread:92.131.83.51/@comment-22439-20170430140631\nThread:92.132.34.9/@comment-22439-20160916123407\nThread:92.134.120.108/@comment-22439-20150822125948\nThread:92.137.216.7/@comment-22439-20150828020739\nThread:92.137.22.140/@comment-22439-20150609140454\nThread:92.138.196.196/@comment-22439-20151229020251\nThread:92.14.158.231/@comment-22439-20150213225646\nThread:92.14.159.68/@comment-22439-20170717174026\nThread:92.143.154.216/@comment-22439-20151121122755\nThread:92.148.141.169/@comment-22439-20150104130722\nThread:92.152.148.30/@comment-22439-20161005193022\nThread:92.152.168.126/@comment-22439-20150123084549\nThread:92.153.59.116/@comment-22439-20160123093946\nThread:92.155.134.78/@comment-22439-20151118211703\nThread:92.155.173.64/@comment-22439-20160110114804\nThread:92.155.176.2/@comment-22439-20141223150139\nThread:92.16.244.251/@comment-22439-20150414185137\nThread:92.16.38.248/@comment-22439-20150106220036\nThread:92.161.173.116/@comment-22439-20160309223717\nThread:92.162.82.54/@comment-22439-20170602224239\nThread:92.163.96.206/@comment-22439-20151201171558\nThread:92.17.140.188/@comment-22439-20150905215408\nThread:92.17.185.172/@comment-22439-20151014174656\nThread:92.17.203.153/@comment-22439-20150829193835\nThread:92.17.203.159/@comment-22439-20160201153235\nThread:92.17.248.173/@comment-22439-20150218020528\nThread:92.17.252.66/@comment-22439-20140927153033\nThread:92.171.46.65/@comment-22439-20160720075637\nThread:92.18.9.213/@comment-22439-20160728221033\nThread:92.19.140.78/@comment-22439-20151231022548\nThread:92.19.150.72/@comment-22439-20151030211428\nThread:92.19.249.180/@comment-22439-20151017195801\nThread:92.19.254.45/@comment-22439-20141223162119\nThread:92.195.209.83/@comment-22439-20170802132701\nThread:92.2.156.102/@comment-22439-20150526145733\nThread:92.2.189.235/@comment-22439-20160215224748\nThread:92.2.212.134/@comment-22439-20151130093548\nThread:92.2.215.233/@comment-22439-20150627124711\nThread:92.20.71.147/@comment-22439-20141201233622\nThread:92.20.86.112/@comment-22439-20140317202115\nThread:92.201.107.224/@comment-22439-20150923160626\nThread:92.201.125.128/@comment-22439-20150309153346\nThread:92.201.125.138/@comment-22439-20151109094951\nThread:92.201.14.171/@comment-22439-20151027142901\nThread:92.201.175.22/@comment-22439-20150310213337\nThread:92.201.187.198/@comment-22439-20150118155555\nThread:92.201.227.36/@comment-22439-20150302162254\nThread:92.201.26.118/@comment-22439-20151110211811\nThread:92.201.34.131/@comment-22439-20151028195835\nThread:92.201.69.204/@comment-22439-20150322163724\nThread:92.201.72.6/@comment-22439-20150215105816\nThread:92.201.87.115/@comment-22439-20141230190842\nThread:92.201.9.186/@comment-22439-20150914212641\nThread:92.203.158.140/@comment-22439-20150713142137\nThread:92.206.201.148/@comment-22439-20170414120038\nThread:92.206.202.77/@comment-22439-20170427172016\nThread:92.206.237.33/@comment-22439-20170623174515\nThread:92.206.59.96/@comment-22439-20160106222726\nThread:92.207.224.82/@comment-22439-20161111154851\nThread:92.208.167.229/@comment-22439-20150503234242\nThread:92.208.175.201/@comment-22439-20160123184416\nThread:92.208.204.186/@comment-22439-20161104204255\nThread:92.208.58.208/@comment-22439-20170312165555\nThread:92.208.78.162/@comment-22439-20141006180955\nThread:92.209.110.179/@comment-22439-20150116115359\nThread:92.209.161.201/@comment-22439-20150405060258\nThread:92.209.21.172/@comment-22439-20150627174257\nThread:92.209.76.89/@comment-22439-20160201134845\nThread:92.21.193.149/@comment-22439-20150307012252\nThread:92.21.208.233/@comment-22439-20150528182510\nThread:92.21.78.236/@comment-22439-20150103163748\nThread:92.210.69.5/@comment-22439-20151025105704\nThread:92.211.2.27/@comment-22439-20150206213751\nThread:92.212.26.73/@comment-22439-20141228122253\nThread:92.217.17.215/@comment-22439-20170428150813\nThread:92.217.203.175/@comment-22439-20160928165122\nThread:92.217.226.180/@comment-22439-20150808234827\nThread:92.22.154.195/@comment-22439-20151114163956\nThread:92.22.220.140/@comment-22439-20150926193932\nThread:92.22.226.247/@comment-22439-20151115140323\nThread:92.22.57.38/@comment-22439-20150526211526\nThread:92.221.177.135/@comment-22439-20160214154135\nThread:92.221.25.137/@comment-22439-20151217180421\nThread:92.224.159.219/@comment-22439-20150321220954\nThread:92.224.216.115/@comment-22439-20150408235154\nThread:92.225.152.155/@comment-22439-20141231222217\nThread:92.226.139.222/@comment-22439-20150102131949\nThread:92.227.144.70/@comment-22439-20150117195838\nThread:92.227.54.97/@comment-22439-20150314134543\nThread:92.228.166.148/@comment-22439-20150323214607\nThread:92.228.34.154/@comment-22439-20150219213149\nThread:92.228.98.133/@comment-22439-20150627113606\nThread:92.229.13.27/@comment-22439-20160403230928\nThread:92.229.137.153/@comment-22439-20150409225404\nThread:92.229.56.147/@comment-22439-20150119213642\nThread:92.229.69.57/@comment-22439-20141231140112\nThread:92.23.104.38/@comment-22439-20141101204544\nThread:92.23.106.245/@comment-22439-20150202000635\nThread:92.23.201.249/@comment-22439-20150303210808\nThread:92.230.252.35/@comment-22439-20170116232321\nThread:92.232.109.150/@comment-22439-20150303210006\nThread:92.232.199.243/@comment-22439-20160430204408\nThread:92.232.37.16/@comment-22439-20161129153553\nThread:92.232.55.39/@comment-22439-20150929170004\nThread:92.232.98.15/@comment-22439-20150530072049\nThread:92.233.112.147/@comment-22439-20150625170724\nThread:92.233.155.30/@comment-22439-20150201003830\nThread:92.233.172.238/@comment-22439-20150705154237\nThread:92.233.172.95/@comment-22439-20160101005043\nThread:92.233.235.254/@comment-22439-20150502125823\nThread:92.233.59.130/@comment-22439-20150418022720\nThread:92.233.63.242/@comment-22439-20141221194353\nThread:92.234.236.152/@comment-22439-20130123083903\nThread:92.234.46.128/@comment-22439-20170320162856\nThread:92.234.50.61/@comment-22439-20151110204654\nThread:92.234.70.27/@comment-22439-20151024205828\nThread:92.236.114.198/@comment-22439-20160731114630\nThread:92.236.136.128/@comment-22439-20170702131839\nThread:92.236.195.31/@comment-22439-20150216071628\nThread:92.236.196.168/@comment-22439-20150216172852\nThread:92.236.205.253/@comment-22439-20150205144410\nThread:92.236.213.128/@comment-22439-20141205201205\nThread:92.236.35.168/@comment-22439-20160207033015\nThread:92.236.4.93/@comment-22439-20151016212537\nThread:92.236.71.232/@comment-22439-20150508143806\nThread:92.237.16.146/@comment-22439-20161021234634\nThread:92.237.172.232/@comment-22439-20170211221341\nThread:92.237.210.92/@comment-22439-20150317062429\nThread:92.237.214.77/@comment-22439-20141228223004\nThread:92.238.119.183/@comment-22439-20141217201550\nThread:92.238.165.10/@comment-22439-20150509192633\nThread:92.238.228.83/@comment-22439-20150201225803\nThread:92.238.230.46/@comment-22439-20150418192050\nThread:92.239.144.25/@comment-22439-20141129133820\nThread:92.239.173.247/@comment-22439-20150524164315\nThread:92.239.222.180/@comment-22439-20151226191144\nThread:92.239.254.228/@comment-22439-20151230044820\nThread:92.239.45.34/@comment-22439-20150206191629\nThread:92.239.52.70/@comment-22439-20170201191714\nThread:92.24.200.71/@comment-22439-20150823193315\nThread:92.240.181.208/@comment-22439-20150322102756\nThread:92.240.234.221/@comment-22439-20150408073042\nThread:92.246.1.42/@comment-22439-20170109224630\nThread:92.247.124.114/@comment-22439-20170213122808\nThread:92.249.142.62/@comment-22439-20150412181732\nThread:92.249.243.8/@comment-22439-20150218214249\nThread:92.25.69.192/@comment-22439-20160208114544\nThread:92.255.195.135/@comment-22439-20160124124851\nThread:92.26.38.151/@comment-22439-20150316201857\nThread:92.27.80.36/@comment-22439-20151202164003\nThread:92.28.119.187/@comment-22439-20151127200341\nThread:92.28.224.176/@comment-22439-20141216023731\nThread:92.28.247.50/@comment-22439-20150423125510\nThread:92.28.249.166/@comment-22439-20160105201637\nThread:92.30.133.75/@comment-22439-20151013013354\nThread:92.30.188.129/@comment-22439-20141130222541\nThread:92.31.186.127/@comment-22439-20141016135350\nThread:92.4.168.112/@comment-22439-20150914225307\nThread:92.4.169.155/@comment-22439-20150909203317\nThread:92.4.169.220/@comment-22439-20151001211503\nThread:92.40.248.179/@comment-22439-20150130230958\nThread:92.40.248.33/@comment-22439-20150122185307\nThread:92.40.249.136/@comment-22439-20140525202456\nThread:92.40.249.162/@comment-22439-20140519171337\nThread:92.40.249.183/@comment-22439-20141124090317\nThread:92.43.25.50/@comment-22439-20150314221118\nThread:92.43.71.143/@comment-22439-20151126081717\nThread:92.44.196.43/@comment-22439-20141224012532\nThread:92.5.107.86/@comment-22439-20141112084005\nThread:92.52.35.205/@comment-22439-20160713151712\nThread:92.52.61.249/@comment-22439-20150526170329\nThread:92.6.142.103/@comment-22439-20150817091232\nThread:92.65.137.121/@comment-22439-20170428002128\nThread:92.7.146.228/@comment-22439-20150521151018\nThread:92.7.154.170/@comment-22439-20150320192207\nThread:92.7.168.128/@comment-22439-20150511181634\nThread:92.72.184.220/@comment-22439-20150408123643\nThread:92.74.230.108/@comment-22439-20150607012422\nThread:92.74.93.186/@comment-22439-20160727173538\nThread:92.75.192.252/@comment-22439-20160117225403\nThread:92.75.92.22/@comment-22439-20160102122928\nThread:92.76.171.93/@comment-22439-20150315004340\nThread:92.77.66.46/@comment-22439-20151231152129\nThread:92.78.240.216/@comment-22439-20161213175904\nThread:92.78.245.143/@comment-22439-20151109195328\nThread:92.78.3.156/@comment-22439-20150321174823\nThread:92.8.234.182/@comment-22439-20150802002842\nThread:92.8.238.65/@comment-22439-20141210234622\nThread:92.80.169.88/@comment-22439-20161207160606\nThread:92.80.180.212/@comment-22439-20161205125320\nThread:92.80.190.200/@comment-22439-20161206160937\nThread:92.9.145.2/@comment-22439-20141225134705\nThread:92.9.16.55/@comment-22439-20170408220124\nThread:92.9.53.84/@comment-22439-20150526203931\nThread:92.92.161.94/@comment-22439-20150212173039\nThread:92.93.40.41/@comment-22439-20151002223627\nThread:92.97.210.35/@comment-22439-20150501081602\nThread:93.0.249.1/@comment-22439-20150912172508\nThread:93.103.105.74/@comment-22439-20150528181058\nThread:93.103.14.160/@comment-22439-20150119110645\nThread:93.104.164.6/@comment-22439-20141108163032\nThread:93.104.48.21/@comment-22439-20150125115732\nThread:93.105.179.62/@comment-22439-20151214030144\nThread:93.106.105.88/@comment-22439-20160926131517\nThread:93.106.148.82/@comment-22439-20170627105515\nThread:93.106.178.84/@comment-22439-20161022081430\nThread:93.106.195.224/@comment-22439-20160914213924\nThread:93.106.198.121/@comment-22439-20170117141845\nThread:93.106.201.18/@comment-22439-20161021124358\nThread:93.106.202.73/@comment-22439-20161108192940\nThread:93.106.238.13/@comment-22439-20161208172210\nThread:93.106.238.237/@comment-22439-20151025102327\nThread:93.106.239.50/@comment-22439-20170119212547\nThread:93.106.31.186/@comment-22439-20170126153113\nThread:93.106.44.161/@comment-22439-20161111120817\nThread:93.106.54.51/@comment-22439-20160826103056\nThread:93.106.6.170/@comment-22439-20161122155200\nThread:93.106.61.5/@comment-22439-20170108220514\nThread:93.106.96.86/@comment-22439-20170107232041\nThread:93.11.182.226/@comment-22439-20151227151555\nThread:93.123.172.89/@comment-22439-20150119070513\nThread:93.125.49.21/@comment-22439-20141229205126\nThread:93.128.142.221/@comment-22439-20150604040909\nThread:93.128.165.141/@comment-22439-20150626172552\nThread:93.128.200.153/@comment-22439-20150617193445\nThread:93.130.136.67/@comment-22439-20151221093006\nThread:93.130.140.87/@comment-22439-20150304003113\nThread:93.132.23.32/@comment-22439-20150202135640\nThread:93.132.34.85/@comment-22439-20150114194011\nThread:93.133.137.82/@comment-22439-20150119083753\nThread:93.133.150.90/@comment-22439-20160208014207\nThread:93.134.53.86/@comment-22439-20151108013622\nThread:93.135.128.89/@comment-22439-20150619211345\nThread:93.135.151.221/@comment-22439-20151107214234\nThread:93.136.59.67/@comment-22439-20151228230536\nThread:93.137.22.203/@comment-22439-20160413102542\nThread:93.138.249.137/@comment-22439-20150319002149\nThread:93.142.168.255/@comment-22439-20160207012822\nThread:93.143.0.99/@comment-22439-20160405124149\nThread:93.143.107.104/@comment-22439-20160413224433\nThread:93.143.124.130/@comment-22439-20150602123010\nThread:93.143.29.57/@comment-22439-20160330110836\nThread:93.143.32.90/@comment-22439-20160412114835\nThread:93.143.85.240/@comment-22439-20141224190544\nThread:93.143.89.105/@comment-22439-20160421212503\nThread:93.143.94.2/@comment-22439-20160420174145\nThread:93.143.99.56/@comment-32769624-20170823085734\nThread:93.152.47.124/@comment-22439-20150420113440\nThread:93.153.67.35/@comment-22439-20151008174951\nThread:93.159.21.36/@comment-22439-20151106124841\nThread:93.160.212.246/@comment-22439-20150420201621\nThread:93.162.36.242/@comment-22439-20141101190749\nThread:93.163.189.98/@comment-22439-20151129162904\nThread:93.165.148.186/@comment-22439-20141017060756\nThread:93.173.186.116/@comment-22439-20150831200429\nThread:93.176.121.100/@comment-22439-20151216074433\nThread:93.181.1.205/@comment-22439-20151126145912\nThread:93.185.17.212/@comment-22439-20170610132957\nThread:93.185.18.204/@comment-22439-20170601151057\nThread:93.185.19.138/@comment-22439-20170302190527\nThread:93.185.19.24/@comment-22439-20170602155924\nThread:93.185.26.112/@comment-22439-20170604143418\nThread:93.185.26.136/@comment-22439-20170212120411\nThread:93.185.27.186/@comment-22439-20170501155103\nThread:93.185.27.77/@comment-22439-20170322153851\nThread:93.186.148.4/@comment-22439-20140215095654\nThread:93.186.60.222/@comment-22439-20151117074708\nThread:93.187.177.160/@comment-22439-20150810122133\nThread:93.188.136.2/@comment-22439-20150707101012\nThread:93.191.202.60/@comment-22439-20160117154513\nThread:93.192.102.26/@comment-22439-20150716233652\nThread:93.192.122.154/@comment-22439-20150717165036\nThread:93.192.244.118/@comment-22439-20160219162159\nThread:93.192.248.34/@comment-22439-20160506150729\nThread:93.193.182.199/@comment-22439-20141228144209\nThread:93.193.20.197/@comment-22439-20141126122106\nThread:93.193.217.106/@comment-22439-20151229164336\nThread:93.193.76.231/@comment-22439-20150625185145\nThread:93.194.75.92/@comment-22439-20150305191417\nThread:93.194.83.48/@comment-22439-20150310152026\nThread:93.198.245.76/@comment-22439-20141006103208\nThread:93.199.235.188/@comment-22439-20151110215408\nThread:93.199.251.51/@comment-22439-20150615201231\nThread:93.2.132.140/@comment-22439-20160315164945\nThread:93.200.213.193/@comment-22439-20150103234312\nThread:93.205.246.214/@comment-22439-20150415173157\nThread:93.205.90.125/@comment-22439-20151221221343\nThread:93.205.95.173/@comment-22439-20151217181647\nThread:93.21.134.208/@comment-22439-20150613171610\nThread:93.211.82.204/@comment-22439-20141011195905\nThread:93.211.84.136/@comment-22439-20141018173350\nThread:93.212.218.233/@comment-22439-20150716155010\nThread:93.212.87.2/@comment-22439-20150119073933\nThread:93.213.88.23/@comment-22439-20151219140553\nThread:93.213.94.198/@comment-22439-20150503231641\nThread:93.214.223.192/@comment-22439-20150121120034\nThread:93.214.250.70/@comment-22439-20151209205051\nThread:93.215.224.126/@comment-22439-20141221223017\nThread:93.218.114.165/@comment-22439-20160220174201\nThread:93.218.200.168/@comment-22439-20161104204103\nThread:93.220.119.47/@comment-22439-20160909070840\nThread:93.220.14.11/@comment-22439-20150721183426\nThread:93.220.214.36/@comment-22439-20150718194202\nThread:93.220.223.143/@comment-22439-20150714171838\nThread:93.220.230.91/@comment-22439-20150725154929\nThread:93.220.238.48/@comment-22439-20150717161334\nThread:93.220.251.201/@comment-22439-20150826142922\nThread:93.220.69.15/@comment-22439-20150928114621\nThread:93.220.74.162/@comment-22439-20150818151215\nThread:93.220.82.62/@comment-22439-20160918094956\nThread:93.221.13.67/@comment-22439-20160703174814\nThread:93.221.151.242/@comment-22439-20141222111129\nThread:93.221.218.231/@comment-22439-20150715233639\nThread:93.222.116.50/@comment-22439-20170418172458\nThread:93.222.120.94/@comment-22439-20160212215224\nThread:93.222.237.96/@comment-22439-20150129110458\nThread:93.222.66.228/@comment-22439-20151025201924\nThread:93.222.73.140/@comment-22439-20160330131132\nThread:93.222.75.35/@comment-22439-20160601134835\nThread:93.222.91.137/@comment-22439-20151003095323\nThread:93.223.117.167/@comment-22439-20160114072838\nThread:93.223.118.85/@comment-22439-20151017200149\nThread:93.223.123.140/@comment-22439-20150318171257\nThread:93.223.68.4/@comment-22439-20150503003405\nThread:93.223.86.15/@comment-22439-20150622160739\nThread:93.223.88.74/@comment-22439-20150609211753\nThread:93.227.140.102/@comment-22439-20170302152423\nThread:93.227.91.176/@comment-22439-20170526012621\nThread:93.228.37.207/@comment-22439-20160902185539\nThread:93.229.209.22/@comment-22439-20160214211138\nThread:93.230.61.163/@comment-22439-20150403143544\nThread:93.232.200.71/@comment-22439-20150114135634\nThread:93.233.7.61/@comment-22439-20161202182719\nThread:93.234.143.162/@comment-22439-20160114163615\nThread:93.237.119.187/@comment-22439-20170211234959\nThread:93.237.127.243/@comment-22439-20161214053402\nThread:93.238.255.200/@comment-22439-20170305121809\nThread:93.239.186.228/@comment-22439-20160923182704\nThread:93.244.196.248/@comment-22439-20170607165445\nThread:93.245.59.79/@comment-22439-20170717123006\nThread:93.245.64.23/@comment-22439-20170205114214\nThread:93.31.47.34/@comment-22439-20150329003457\nThread:93.35.1.34/@comment-22439-20150304151544\nThread:93.37.145.246/@comment-22439-20150127203414\nThread:93.38.219.189/@comment-22439-20151227232440\nThread:93.38.84.161/@comment-22439-20150911174925\nThread:93.40.64.32/@comment-22439-20151015211556\nThread:93.47.115.157/@comment-22439-20150806131821\nThread:93.48.111.252/@comment-22439-20150315144122\nThread:93.50.180.177/@comment-22439-20150727215527\nThread:93.55.88.222/@comment-22439-20170210164048\nThread:93.63.151.10/@comment-22439-20141114162102\nThread:93.64.88.166/@comment-22439-20150504082754\nThread:93.74.168.37/@comment-22439-20150730204600\nThread:93.76.182.81/@comment-22439-20150203112339\nThread:93.80.116.108/@comment-22439-20150401202254\nThread:93.80.254.105/@comment-22439-20141207154558\nThread:93.81.237.84/@comment-22439-20151004200450\nThread:93.83.109.90/@comment-22439-20140921220947\nThread:93.86.166.24/@comment-22439-20150927185347\nThread:93.99.226.40/@comment-22439-20150705103002\nThread:94.0.205.23/@comment-22439-20151029103012\nThread:94.1.115.61/@comment-22439-20170807220951\nThread:94.1.156.159/@comment-22439-20151113210824\nThread:94.1.238.28/@comment-22439-20150209224522\nThread:94.1.46.36/@comment-22439-20150724234430\nThread:94.1.65.7/@comment-22439-20160403164808\nThread:94.10.30.248/@comment-22439-20150602165925\nThread:94.100.12.160/@comment-22439-20141226194131\nThread:94.11.124.80/@comment-22439-20170530143916\nThread:94.11.13.9/@comment-22439-20170805092723\nThread:94.11.230.225/@comment-22439-20141102094403\nThread:94.11.32.255/@comment-22439-20151225115755\nThread:94.112.108.171/@comment-22439-20161227150503\nThread:94.112.162.105/@comment-22439-20151220183801\nThread:94.112.71.190/@comment-22439-20160102230729\nThread:94.113.145.17/@comment-22439-20151103161015\nThread:94.113.85.255/@comment-22439-20150914180856\nThread:94.113.94.54/@comment-22439-20150701230053\nThread:94.113.95.155/@comment-22439-20150205205218\nThread:94.114.172.238/@comment-22439-20170805144019\nThread:94.12.31.80/@comment-22439-20170707195804\nThread:94.12.83.1/@comment-22439-20150807163528\nThread:94.127.25.138/@comment-22439-20170730220146\nThread:94.132.168.253/@comment-22439-20161206214815\nThread:94.134.38.132/@comment-22439-20170109003633\nThread:94.134.71.25/@comment-22439-20141222050712\nThread:94.135.236.134/@comment-22439-20150611141019\nThread:94.135.241.190/@comment-22439-20160723060124\nThread:94.135.241.243/@comment-22439-20150611054533\nThread:94.137.220.195/@comment-22439-20150804163805\nThread:94.138.28.157/@comment-22439-20150114140227\nThread:94.139.3.91/@comment-22439-20150607125143\nThread:94.139.85.141/@comment-22439-20151201204037\nThread:94.14.225.105/@comment-22439-20150331092131\nThread:94.14.227.191/@comment-22439-20150530113548\nThread:94.14.79.222/@comment-22439-20150718163640\nThread:94.140.241.15/@comment-22439-20141212103857\nThread:94.143.236.180/@comment-22439-20161021135741\nThread:94.145.94.218/@comment-22439-20151209184914\nThread:94.15.136.251/@comment-22439-20151230131305\nThread:94.15.142.192/@comment-22439-20150919200313\nThread:94.15.73.200/@comment-22439-20150907090743\nThread:94.154.25.226/@comment-22439-20160102133811\nThread:94.16.131.245/@comment-22439-20150201102841\nThread:94.16.146.105/@comment-22439-20150606144845\nThread:94.163.110.64/@comment-22439-20170517205718\nThread:94.170.225.32/@comment-22439-20130709074410\nThread:94.173.10.42/@comment-22439-20160501221831\nThread:94.173.15.242/@comment-22439-20141228010826\nThread:94.173.193.173/@comment-22439-20150924220702\nThread:94.173.232.105/@comment-22439-20160429222252\nThread:94.174.172.9/@comment-22439-20150512180603\nThread:94.174.174.160/@comment-22439-20140628213920\nThread:94.174.47.99/@comment-22439-20170508211818\nThread:94.175.143.234/@comment-22439-20150112124901\nThread:94.175.18.147/@comment-22439-20140607152738\nThread:94.175.209.135/@comment-22439-20160815110156\nThread:94.175.38.129/@comment-22439-20151001094557\nThread:94.175.53.183/@comment-22439-20170106205815\nThread:94.177.32.154/@comment-22439-20151203115829\nThread:94.18.233.78/@comment-22439-20141225040442\nThread:94.181.96.236/@comment-22439-20161009162834\nThread:94.181.99.243/@comment-22439-20170130114130\nThread:94.189.140.210/@comment-22439-20150429094334\nThread:94.189.160.96/@comment-22439-20150102162457\nThread:94.192.107.86/@comment-22439-20170301012054\nThread:94.192.120.228/@comment-22439-20141028085142\nThread:94.192.122.78/@comment-22439-20160427220706\nThread:94.192.4.122/@comment-22439-20160119014848\nThread:94.192.51.213/@comment-22439-20170108225258\nThread:94.192.91.84/@comment-22439-20160307225239\nThread:94.193.133.186/@comment-22439-20141008065534\nThread:94.193.156.240/@comment-22439-20160823145600\nThread:94.193.35.156/@comment-22439-20161125114901\nThread:94.194.142.143/@comment-22439-20170323145120\nThread:94.194.238.143/@comment-22439-20160816195718\nThread:94.194.68.7/@comment-22439-20160907201001\nThread:94.194.71.181/@comment-22439-20160205105119\nThread:94.195.170.97/@comment-22439-20170523161021\nThread:94.195.171.204/@comment-22439-20161008103957\nThread:94.195.202.121/@comment-22439-20161119125609\nThread:94.195.52.27/@comment-22439-20151015053321\nThread:94.195.77.240/@comment-22439-20160105192718\nThread:94.197.120.8/@comment-22439-20150201153332\nThread:94.197.121.138/@comment-22439-20150715233745\nThread:94.197.121.182/@comment-22439-20150714221919\nThread:94.2.87.110/@comment-22439-20150102024124\nThread:94.200.8.198/@comment-22439-20150426210636\nThread:94.201.81.47/@comment-22439-20161111052555\nThread:94.204.37.202/@comment-22439-20150417180112\nThread:94.208.134.52/@comment-22439-20150505222407\nThread:94.209.123.249/@comment-22439-20150713092549\nThread:94.209.127.220/@comment-22439-20161230211139\nThread:94.21.101.9/@comment-22439-20150110031052\nThread:94.21.31.139/@comment-22439-20160131175200\nThread:94.213.251.41/@comment-22439-20150928190112\nThread:94.213.76.55/@comment-22439-20150211114858\nThread:94.214.115.204/@comment-22439-20150717101510\nThread:94.214.160.218/@comment-22439-20151201100836\nThread:94.214.203.161/@comment-22439-20160826123347\nThread:94.215.20.106/@comment-22439-20141224011943\nThread:94.216.181.100/@comment-22439-20170523041529\nThread:94.219.19.220/@comment-22439-20160115185845\nThread:94.219.36.130/@comment-22439-20150521135035\nThread:94.22.80.7/@comment-22439-20160829165059\nThread:94.220.0.223/@comment-22439-20150102211033\nThread:94.221.219.143/@comment-22439-20150608121350\nThread:94.221.230.144/@comment-22439-20170315210715\nThread:94.221.77.25/@comment-4403388-20170815174427\nThread:94.222.63.109/@comment-22439-20150116000035\nThread:94.223.174.230/@comment-22439-20170311193616\nThread:94.223.175.124/@comment-22439-20141225134805\nThread:94.224.166.162/@comment-22439-20160227125638\nThread:94.224.205.48/@comment-22439-20141223183332\nThread:94.224.214.81/@comment-22439-20150510174555\nThread:94.225.100.238/@comment-22439-20170426121723\nThread:94.225.163.99/@comment-22439-20150423173744\nThread:94.231.23.137/@comment-22439-20160301023950\nThread:94.232.225.1/@comment-22439-20161119180736\nThread:94.234.170.119/@comment-22439-20150928232925\nThread:94.234.37.31/@comment-22439-20160615121721\nThread:94.234.38.145/@comment-22439-20160617063119\nThread:94.234.38.220/@comment-22439-20160619150140\nThread:94.234.39.174/@comment-22439-20170106024514\nThread:94.242.69.138/@comment-22439-20160212134317\nThread:94.248.128.172/@comment-22439-20150404212008\nThread:94.248.180.80/@comment-22439-20161207190850\nThread:94.248.197.209/@comment-22439-20170115144547\nThread:94.248.198.197/@comment-22439-20161102134408\nThread:94.248.209.240/@comment-22439-20151229105450\nThread:94.254.0.87/@comment-22439-20150607123020\nThread:94.254.101.76/@comment-22439-20150611122619\nThread:94.254.48.78/@comment-22439-20151218113937\nThread:94.254.51.213/@comment-32769624-20170905014722\nThread:94.254.8.87/@comment-22439-20160822090730\nThread:94.26.69.234/@comment-22439-20150919161124\nThread:94.29.46.190/@comment-22439-20151122210953\nThread:94.29.73.129/@comment-22439-20141225061213\nThread:94.3.42.120/@comment-22439-20141224192532\nThread:94.3.55.237/@comment-22439-20150116184823\nThread:94.31.115.158/@comment-22439-20151202234623\nThread:94.31.117.102/@comment-22439-20150416190516\nThread:94.34.19.216/@comment-22439-20141112113212\nThread:94.39.28.242/@comment-22439-20141217144726\nThread:94.4.2.23/@comment-22439-20150618102641\nThread:94.4.220.115/@comment-22439-20150512105142\nThread:94.4.225.121/@comment-22439-20160417234602\nThread:94.41.93.71/@comment-22439-20170112013003\nThread:94.42.253.237/@comment-22439-20151202195909\nThread:94.5.120.55/@comment-22439-20150416224843\nThread:94.5.138.232/@comment-22439-20150601011624\nThread:94.5.220.159/@comment-22439-20150606161814\nThread:94.5.40.108/@comment-22439-20150101181010\nThread:94.54.17.161/@comment-22439-20150101211110\nThread:94.6.152.78/@comment-4403388-20170808135326\nThread:94.6.19.171/@comment-22439-20170306170931\nThread:94.6.251.44/@comment-22439-20150831132436\nThread:94.64.113.189/@comment-22439-20141124144052\nThread:94.64.248.22/@comment-22439-20141228160116\nThread:94.65.178.75/@comment-22439-20150203084535\nThread:94.67.193.103/@comment-32769624-20170822110048\nThread:94.67.239.32/@comment-22439-20150521174851\nThread:94.69.201.158/@comment-22439-20150427181933\nThread:94.69.206.50/@comment-22439-20150731102633\nThread:94.7.173.143/@comment-22439-20150410102910\nThread:94.7.180.150/@comment-22439-20150417190621\nThread:94.7.185.21/@comment-22439-20160131140503\nThread:94.70.59.72/@comment-22439-20160527145227\nThread:94.71.71.117/@comment-22439-20160115022919\nThread:94.71.97.97/@comment-22439-20151225050658\nThread:94.72.249.65/@comment-22439-20141222145601\nThread:94.74.219.234/@comment-22439-20170319133720\nThread:94.74.219.74/@comment-22439-20170414195642\nThread:94.74.230.138/@comment-22439-20150325212940\nThread:94.79.174.218/@comment-22439-20141230135252\nThread:94.8.175.109/@comment-22439-20160605030858\nThread:94.9.142.131/@comment-22439-20150214002137\nThread:94.9.164.136/@comment-22439-20140903160537\nThread:94.9.91.98/@comment-22439-20150906190952\nThread:95.102.245.16/@comment-22439-20170605195010\nThread:95.103.180.241/@comment-22439-20170801182137\nThread:95.105.134.43/@comment-22439-20141226102314\nThread:95.105.238.148/@comment-22439-20161112104921\nThread:95.105.83.44/@comment-22439-20170113030234\nThread:95.109.10.70/@comment-22439-20141222090703\nThread:95.112.198.157/@comment-22439-20150123004318\nThread:95.112.199.247/@comment-22439-20150111113517\nThread:95.113.92.193/@comment-22439-20150112154038\nThread:95.114.15.30/@comment-22439-20150331125901\nThread:95.114.202.104/@comment-22439-20150101140155\nThread:95.114.229.45/@comment-22439-20150927191102\nThread:95.115.109.2/@comment-22439-20150312181237\nThread:95.115.174.30/@comment-22439-20150203211416\nThread:95.115.180.147/@comment-22439-20160604202827\nThread:95.116.198.21/@comment-22439-20160128064642\nThread:95.118.170.144/@comment-22439-20160310215537\nThread:95.118.189.89/@comment-22439-20150717222328\nThread:95.118.87.153/@comment-22439-20150506133006\nThread:95.118.91.204/@comment-22439-20151114145448\nThread:95.118.97.229/@comment-22439-20151224130612\nThread:95.119.225.204/@comment-22439-20160101223835\nThread:95.123.63.35/@comment-22439-20160626225554\nThread:95.129.56.35/@comment-22439-20151129173536\nThread:95.131.110.124/@comment-22439-20151123140701\nThread:95.140.2.29/@comment-22439-20150520070425\nThread:95.143.139.6/@comment-22439-20150310192200\nThread:95.144.202.58/@comment-22439-20161123143633\nThread:95.144.42.132/@comment-22439-20150524134610\nThread:95.144.56.50/@comment-22439-20160719071307\nThread:95.145.144.176/@comment-22439-20161113014924\nThread:95.145.190.189/@comment-22439-20140621135637\nThread:95.145.248.253/@comment-22439-20150201142047\nThread:95.145.248.89/@comment-22439-20141221131502\nThread:95.145.93.188/@comment-22439-20150901135504\nThread:95.145.93.211/@comment-22439-20151120130100\nThread:95.145.93.231/@comment-22439-20150908124020\nThread:95.145.93.245/@comment-22439-20150919212648\nThread:95.146.130.198/@comment-22439-20151003211212\nThread:95.146.77.249/@comment-22439-20151221075235\nThread:95.147.14.227/@comment-22439-20151025232650\nThread:95.147.143.133/@comment-22439-20150609154720\nThread:95.147.153.138/@comment-32769624-20170830010426\nThread:95.147.56.106/@comment-22439-20151108221905\nThread:95.147.56.95/@comment-22439-20150125190947\nThread:95.148.119.52/@comment-22439-20150131225146\nThread:95.148.160.0/@comment-22439-20150823195547\nThread:95.148.174.33/@comment-22439-20160205161129\nThread:95.148.3.35/@comment-22439-20150310195147\nThread:95.148.76.215/@comment-22439-20150310034959\nThread:95.148.78.93/@comment-22439-20151122231221\nThread:95.150.153.134/@comment-22439-20170728151246\nThread:95.150.153.179/@comment-22439-20170530144116\nThread:95.151.18.23/@comment-22439-20141031212103\nThread:95.154.62.70/@comment-22439-20150422123958\nThread:95.155.208.147/@comment-22439-20160528165818\nThread:95.155.218.135/@comment-22439-20150221194901\nThread:95.16.69.173/@comment-22439-20150424090625\nThread:95.160.152.196/@comment-22439-20170311125244\nThread:95.169.56.219/@comment-22439-20140111000152\nThread:95.175.104.28/@comment-22439-20160117211913\nThread:95.195.141.178/@comment-22439-20150214184652\nThread:95.208.248.120/@comment-22439-20151107191249\nThread:95.208.248.169/@comment-22439-20140924233014\nThread:95.208.248.64/@comment-22439-20150314203732\nThread:95.208.248.80/@comment-22439-20150106131524\nThread:95.208.248.91/@comment-22439-20150104054910\nThread:95.220.110.113/@comment-22439-20150704172143\nThread:95.220.177.10/@comment-22439-20150618115447\nThread:95.222.27.216/@comment-22439-20150927060109\nThread:95.222.29.93/@comment-22439-20160317195618\nThread:95.222.30.200/@comment-22439-20150425223412\nThread:95.223.119.8/@comment-22439-20141201102312\nThread:95.223.214.127/@comment-22439-20151217091559\nThread:95.234.42.22/@comment-22439-20161228141213\nThread:95.237.233.81/@comment-22439-20150411094016\nThread:95.238.224.233/@comment-22439-20151017141832\nThread:95.242.198.224/@comment-22439-20160928153859\nThread:95.242.92.82/@comment-22439-20161101075548\nThread:95.249.248.189/@comment-22439-20170727205040\nThread:95.25.134.67/@comment-22439-20151027212202\nThread:95.25.91.68/@comment-32769624-20170819225819\nThread:95.26.232.30/@comment-22439-20140530110122\nThread:95.28.62.129/@comment-22439-20160811192322\nThread:95.29.191.89/@comment-22439-20160624170035\nThread:95.31.139.237/@comment-22439-20150713191458\nThread:95.33.100.221/@comment-22439-20150725222321\nThread:95.33.113.142/@comment-22439-20150717110136\nThread:95.33.120.203/@comment-22439-20160608214635\nThread:95.33.124.191/@comment-22439-20150915224403\nThread:95.33.147.84/@comment-22439-20150427030302\nThread:95.33.224.218/@comment-22439-20151215213406\nThread:95.33.225.99/@comment-22439-20160204095449\nThread:95.33.66.119/@comment-22439-20150910235440\nThread:95.34.114.92/@comment-22439-20150111131439\nThread:95.34.132.190/@comment-22439-20141102233132\nThread:95.34.202.228/@comment-22439-20150816191807\nThread:95.34.239.81/@comment-22439-20141217210927\nThread:95.38.132.55/@comment-22439-20150421105223\nThread:95.40.8.60/@comment-22439-20150214185247\nThread:95.44.167.157/@comment-22439-20150101215600\nThread:95.45.48.113/@comment-22439-20151027155419\nThread:95.45.85.205/@comment-22439-20151124204419\nThread:95.49.138.80/@comment-22439-20151031111605\nThread:95.49.178.238/@comment-22439-20160313144332\nThread:95.55.242.253/@comment-22439-20150823091755\nThread:95.79.2.249/@comment-22439-20141218181629\nThread:95.84.224.39/@comment-22439-20150323091508\nThread:95.85.212.6/@comment-22439-20151217221136\nThread:95.90.138.209/@comment-22439-20150106143343\nThread:95.90.186.102/@comment-22439-20160204055438\nThread:95.90.186.129/@comment-22439-20160214181102\nThread:95.90.192.30/@comment-22439-20151024214601\nThread:95.90.192.54/@comment-22439-20150607092621\nThread:95.90.195.100/@comment-22439-20160108203117\nThread:95.90.196.141/@comment-22439-20160602075712\nThread:95.90.196.42/@comment-22439-20160531151623\nThread:95.90.199.37/@comment-22439-20150708205622\nThread:95.90.200.1/@comment-22439-20160111224404\nThread:95.90.202.69/@comment-22439-20160118131959\nThread:95.90.206.84/@comment-22439-20150106184547\nThread:95.90.210.152/@comment-22439-20150313090117\nThread:95.90.212.109/@comment-22439-20150702190052\nThread:95.90.214.138/@comment-22439-20150102063630\nThread:95.90.217.27/@comment-22439-20150304195129\nThread:95.90.218.223/@comment-22439-20160102200528\nThread:95.90.222.149/@comment-22439-20151215205538\nThread:95.90.222.220/@comment-22439-20151225134731\nThread:95.90.225.184/@comment-22439-20150809154631\nThread:95.90.225.217/@comment-22439-20150627185918\nThread:95.90.231.188/@comment-22439-20150909084049\nThread:95.90.234.1/@comment-22439-20150813233133\nThread:95.90.238.132/@comment-22439-20161124165526\nThread:95.90.239.21/@comment-32769624-20170905163812\nThread:95.90.240.212/@comment-22439-20160317155727\nThread:95.90.250.113/@comment-22439-20151107161018\nThread:95.90.65.43/@comment-22439-20150719210718\nThread:95.91.113.94/@comment-22439-20150315131803\nThread:95.91.162.210/@comment-22439-20150829011722\nThread:95.91.192.94/@comment-22439-20150606135010\nThread:95.91.201.196/@comment-22439-20170611125938\nThread:95.91.203.141/@comment-22439-20150416214043\nThread:95.91.208.35/@comment-22439-20170705103550\nThread:95.91.216.101/@comment-22439-20170302231759\nThread:95.91.228.100/@comment-22439-20160103205523\nThread:95.91.228.104/@comment-22439-20160308144019\nThread:95.91.228.12/@comment-22439-20160429130632\nThread:95.91.228.126/@comment-22439-20160605141631\nThread:95.91.228.130/@comment-22439-20160222185958\nThread:95.91.228.134/@comment-22439-20151228215538\nThread:95.91.228.136/@comment-22439-20160314131430\nThread:95.91.228.146/@comment-22439-20160316171716\nThread:95.91.228.154/@comment-22439-20160302013003\nThread:95.91.228.159/@comment-22439-20160527182240\nThread:95.91.228.162/@comment-22439-20160305153539\nThread:95.91.228.17/@comment-22439-20160504174638\nThread:95.91.228.170/@comment-22439-20160603214556\nThread:95.91.228.171/@comment-22439-20160531222735\nThread:95.91.228.175/@comment-22439-20160604152304\nThread:95.91.228.177/@comment-22439-20160117062043\nThread:95.91.228.181/@comment-22439-20160229035545\nThread:95.91.228.189/@comment-22439-20160224212911\nThread:95.91.228.196/@comment-22439-20160317155442\nThread:95.91.228.198/@comment-22439-20160107020740\nThread:95.91.228.199/@comment-22439-20160623135454\nThread:95.91.228.25/@comment-22439-20160320113142\nThread:95.91.228.26/@comment-22439-20160320003516\nThread:95.91.228.27/@comment-22439-20160311160244\nThread:95.91.228.28/@comment-22439-20160328144946\nThread:95.91.228.5/@comment-22439-20160329181614\nThread:95.91.228.55/@comment-22439-20160529120906\nThread:95.91.228.58/@comment-22439-20160406021412\nThread:95.91.228.62/@comment-22439-20151231174016\nThread:95.91.228.67/@comment-22439-20160313120648\nThread:95.91.228.78/@comment-22439-20160308065538\nThread:95.91.228.79/@comment-22439-20160705102237\nThread:95.91.228.84/@comment-22439-20160626074207\nThread:95.91.228.91/@comment-22439-20160109131710\nThread:95.91.228.98/@comment-22439-20160410152310\nThread:95.91.229.243/@comment-22439-20150101140058\nThread:95.91.231.29/@comment-22439-20150318200825\nThread:95.91.232.99/@comment-22439-20141221145352\nThread:95.91.234.132/@comment-22439-20151015200507\nThread:95.91.235.164/@comment-22439-20150427162746\nThread:95.91.236.173/@comment-22439-20141223163056\nThread:95.91.251.192/@comment-22439-20150214175557\nThread:95.92.245.81/@comment-22439-20150201174336\nThread:95.93.194.234/@comment-22439-20170421162632\nThread:95.94.211.176/@comment-22439-20150220183637\nThread:95.95.85.237/@comment-22439-20150425164904\nThread:95.96.225.41/@comment-22439-20141014120852\nThread:96.10.15.138/@comment-22439-20150105222143\nThread:96.125.245.170/@comment-22439-20170421035527\nThread:96.127.205.105/@comment-22439-20141209082124\nThread:96.18.166.143/@comment-22439-20151220103557\nThread:96.2.102.106/@comment-22439-20160117103659\nThread:96.2.123.81/@comment-22439-20150111115711\nThread:96.2.14.92/@comment-22439-20150316211528\nThread:96.2.214.121/@comment-22439-20170421151829\nThread:96.2.37.60/@comment-22439-20150917183819\nThread:96.20.109.129/@comment-22439-20160313152102\nThread:96.21.38.225/@comment-22439-20160724182154\nThread:96.22.103.73/@comment-22439-20150413193134\nThread:96.225.135.19/@comment-22439-20150224214639\nThread:96.226.117.67/@comment-22439-20150102163725\nThread:96.226.122.165/@comment-22439-20150609031829\nThread:96.226.149.68/@comment-22439-20150913015025\nThread:96.226.91.232/@comment-22439-20150125022336\nThread:96.227.242.190/@comment-22439-20141224223555\nThread:96.227.81.214/@comment-22439-20170212054856\nThread:96.230.155.67/@comment-22439-20170102063100\nThread:96.231.135.31/@comment-22439-20161015231847\nThread:96.231.157.246/@comment-22439-20141219185543\nThread:96.231.19.138/@comment-22439-20151221165833\nThread:96.231.43.151/@comment-22439-20170107024805\nThread:96.236.133.22/@comment-22439-20150530214315\nThread:96.238.132.92/@comment-22439-20150529091653\nThread:96.238.190.51/@comment-22439-20140923181929\nThread:96.240.142.46/@comment-22439-20150103053350\nThread:96.244.102.204/@comment-22439-20150920171854\nThread:96.244.223.120/@comment-22439-20141123225845\nThread:96.244.54.189/@comment-22439-20160207004147\nThread:96.246.190.70/@comment-22439-20151209022510\nThread:96.250.78.181/@comment-4403388-20170810102332\nThread:96.252.13.2/@comment-22439-20150313022926\nThread:96.253.38.31/@comment-22439-20150728032830\nThread:96.253.89.73/@comment-22439-20160101164102\nThread:96.254.94.56/@comment-22439-20151201024440\nThread:96.255.124.134/@comment-22439-20150611143530\nThread:96.255.138.40/@comment-22439-20150916033038\nThread:96.255.158.253/@comment-22439-20150318054235\nThread:96.255.174.7/@comment-22439-20150117081220\nThread:96.255.18.100/@comment-22439-20160706172604\nThread:96.255.237.211/@comment-22439-20150414201403\nThread:96.29.182.189/@comment-22439-20150916005023\nThread:96.30.139.0/@comment-22439-20151213013817\nThread:96.32.150.249/@comment-22439-20170226185241\nThread:96.32.178.133/@comment-22439-20161222182606\nThread:96.36.46.146/@comment-22439-20170628185547\nThread:96.37.192.150/@comment-22439-20160914213902\nThread:96.37.31.189/@comment-22439-20160616205036\nThread:96.37.43.138/@comment-22439-20161106175351\nThread:96.38.145.98/@comment-22439-20150113081657\nThread:96.38.150.136/@comment-22439-20141225170658\nThread:96.40.240.193/@comment-22439-20150906015415\nThread:96.40.84.252/@comment-22439-20161226151432\nThread:96.41.152.154/@comment-22439-20151004192045\nThread:96.41.189.102/@comment-22439-20160110081515\nThread:96.41.191.172/@comment-22439-20170307142053\nThread:96.42.201.2/@comment-22439-20150215212727\nThread:96.42.209.70/@comment-22439-20150704010018\nThread:96.42.66.124/@comment-22439-20161122183843\nThread:96.44.189.178/@comment-32769624-20170822125139\nThread:96.47.139.228/@comment-22439-20170111214226\nThread:96.48.145.152/@comment-22439-20151221224105\nThread:96.48.16.219/@comment-32769624-20170902180814\nThread:96.48.222.23/@comment-22439-20150524121438\nThread:96.49.36.186/@comment-22439-20150203091711\nThread:96.51.100.67/@comment-22439-20161008060826\nThread:96.51.57.126/@comment-22439-20150502045649\nThread:96.52.151.7/@comment-22439-20150114073018\nThread:96.52.184.32/@comment-22439-20151015163123\nThread:96.52.24.64/@comment-22439-20141222060149\nThread:96.52.26.15/@comment-22439-20150314014736\nThread:96.52.40.149/@comment-22439-20150118230013\nThread:96.53.212.139/@comment-22439-20150710185438\nThread:96.54.13.194/@comment-22439-20151019230604\nThread:96.54.228.144/@comment-22439-20150125110922\nThread:96.54.247.38/@comment-22439-20160301184744\nThread:96.58.254.124/@comment-22439-20150608223719\nThread:96.66.230.137/@comment-22439-20170412213502\nThread:96.66.42.177/@comment-22439-20170428181907\nThread:96.8.156.223/@comment-22439-20150401192620\nThread:96.95.63.49/@comment-22439-20160414200355\nThread:97.100.164.53/@comment-22439-20150408052518\nThread:97.100.173.121/@comment-22439-20141221070933\nThread:97.100.234.198/@comment-22439-20170620061956\nThread:97.101.181.23/@comment-22439-20151230183042\nThread:97.101.245.137/@comment-22439-20150304045727\nThread:97.104.170.117/@comment-22439-20150110035018\nThread:97.104.97.199/@comment-22439-20151224032741\nThread:97.113.5.235/@comment-22439-20150522125750\nThread:97.115.178.154/@comment-22439-20151110235306\nThread:97.117.157.216/@comment-22439-20170523030953\nThread:97.117.244.127/@comment-22439-20151206004109\nThread:97.118.56.116/@comment-22439-20141120061800\nThread:97.121.44.128/@comment-22439-20160615175901\nThread:97.122.123.45/@comment-22439-20170115000216\nThread:97.122.232.217/@comment-22439-20160125001854\nThread:97.123.131.49/@comment-22439-20170120103120\nThread:97.124.100.162/@comment-22439-20150703022921\nThread:97.124.103.112/@comment-22439-20150615003314\nThread:97.124.84.150/@comment-22439-20160127015230\nThread:97.126.139.151/@comment-22439-20150921165000\nThread:97.127.242.69/@comment-22439-20150205054501\nThread:97.127.3.142/@comment-22439-20151029182630\nThread:97.34.130.50/@comment-22439-20151025150537\nThread:97.41.137.114/@comment-22439-20160822233629\nThread:97.64.215.195/@comment-22439-20150317002852\nThread:97.64.220.2/@comment-22439-20170418013717\nThread:97.65.143.146/@comment-22439-20150915014237\nThread:97.80.112.58/@comment-22439-20141222234211\nThread:97.80.123.129/@comment-22439-20150111024050\nThread:97.80.124.149/@comment-22439-20141215132145\nThread:97.80.132.42/@comment-22439-20170404145502\nThread:97.81.64.207/@comment-22439-20151202055217\nThread:97.81.74.197/@comment-22439-20150716190632\nThread:97.83.226.123/@comment-22439-20141231072819\nThread:97.84.102.143/@comment-22439-20150816043834\nThread:97.84.134.173/@comment-22439-20151222014736\nThread:97.84.134.46/@comment-22439-20160706211628\nThread:97.88.124.107/@comment-22439-20150502124346\nThread:97.90.153.87/@comment-22439-20151129194954\nThread:97.90.198.28/@comment-22439-20150924061352\nThread:97.91.145.197/@comment-22439-20161223113817\nThread:97.92.233.179/@comment-22439-20150621231829\nThread:97.92.39.44/@comment-22439-20151225031517\nThread:97.94.8.39/@comment-22439-20170502071646\nThread:97.95.165.168/@comment-22439-20150514023610\nThread:97.95.172.254/@comment-22439-20160129004131\nThread:97.95.235.26/@comment-22439-20141020033609\nThread:97.95.250.169/@comment-22439-20150506035050\nThread:98.10.198.180/@comment-22439-20160827205059\nThread:98.101.226.187/@comment-22439-20161130150811\nThread:98.112.59.159/@comment-22439-20150412210116\nThread:98.113.25.115/@comment-22439-20170116135724\nThread:98.113.34.239/@comment-22439-20150209165152\nThread:98.114.105.110/@comment-22439-20170224191148\nThread:98.114.171.21/@comment-22439-20141229202823\nThread:98.114.191.50/@comment-22439-20150308120925\nThread:98.114.53.59/@comment-22439-20150612040729\nThread:98.116.207.126/@comment-22439-20150119200052\nThread:98.117.91.42/@comment-22439-20170704151151\nThread:98.117.94.58/@comment-22439-20150404173236\nThread:98.118.84.133/@comment-22439-20150320033151\nThread:98.119.183.233/@comment-22439-20160530084925\nThread:98.119.78.103/@comment-22439-20150315012748\nThread:98.122.144.150/@comment-22439-20150707130853\nThread:98.125.169.62/@comment-22439-20150813184745\nThread:98.125.220.72/@comment-22439-20150813065041\nThread:98.125.228.187/@comment-22439-20160707211029\nThread:98.125.232.227/@comment-22439-20160306062750\nThread:98.125.251.83/@comment-22439-20150819191312\nThread:98.127.122.221/@comment-22439-20150218214811\nThread:98.14.0.13/@comment-22439-20150929021128\nThread:98.142.75.64/@comment-22439-20141226031405\nThread:98.144.90.96/@comment-22439-20150817165739\nThread:98.145.209.229/@comment-22439-20150221151721\nThread:98.145.8.106/@comment-22439-20151021080536\nThread:98.148.221.218/@comment-22439-20150805044819\nThread:98.148.83.230/@comment-22439-20150305013501\nThread:98.15.171.123/@comment-22439-20150603101919\nThread:98.155.115.120/@comment-22439-20150810063629\nThread:98.160.203.30/@comment-22439-20160112203156\nThread:98.163.6.191/@comment-22439-20150711054708\nThread:98.165.15.207/@comment-22439-20150805204114\nThread:98.165.188.228/@comment-22439-20150928050710\nThread:98.165.189.29/@comment-22439-20151001193422\nThread:98.165.224.103/@comment-22439-20150113043338\nThread:98.165.232.236/@comment-22439-20150614115753\nThread:98.166.148.157/@comment-22439-20150517232011\nThread:98.166.76.240/@comment-22439-20141221120051\nThread:98.167.121.196/@comment-22439-20150116093109\nThread:98.167.235.4/@comment-22439-20150820000948\nThread:98.167.88.131/@comment-22439-20151223080655\nThread:98.167.88.131/@comment-26113847-20160710214325\nThread:98.168.155.68/@comment-22439-20160311013235\nThread:98.169.29.69/@comment-22439-20150319182645\nThread:98.170.240.244/@comment-22439-20141225083204\nThread:98.171.160.89/@comment-22439-20170122011107\nThread:98.171.162.230/@comment-22439-20150806035837\nThread:98.171.173.99/@comment-22439-20151018054716\nThread:98.176.90.36/@comment-22439-20150118144209\nThread:98.181.56.184/@comment-22439-20150524184850\nThread:98.183.81.72/@comment-22439-20150123050748\nThread:98.186.164.103/@comment-22439-20160909235944\nThread:98.186.84.109/@comment-22439-20160821164248\nThread:98.19.3.28/@comment-22439-20150227031954\nThread:98.190.248.72/@comment-22439-20170116185116\nThread:98.193.171.214/@comment-22439-20141223092529\nThread:98.194.72.123/@comment-32769624-20170901192317\nThread:98.195.170.173/@comment-22439-20160209100104\nThread:98.195.179.219/@comment-22439-20161217175920\nThread:98.196.181.135/@comment-22439-20150104130351\nThread:98.196.242.112/@comment-22439-20151220021959\nThread:98.196.253.135/@comment-22439-20150528141439\nThread:98.197.171.137/@comment-22439-20151219160837\nThread:98.198.144.47/@comment-22439-20160120185134\nThread:98.198.176.244/@comment-22439-20141120061337\nThread:98.198.247.179/@comment-22439-20170225021855\nThread:98.199.90.169/@comment-4403388-20170810073102\nThread:98.20.68.54/@comment-22439-20170311222752\nThread:98.201.212.101/@comment-22439-20151030140042\nThread:98.202.4.170/@comment-22439-20160115204756\nThread:98.202.40.46/@comment-22439-20160123221446\nThread:98.202.75.164/@comment-22439-20160727015421\nThread:98.203.179.111/@comment-22439-20151120220153\nThread:98.206.39.56/@comment-22439-20151203000947\nThread:98.208.216.52/@comment-22439-20150810045702\nThread:98.210.124.81/@comment-22439-20141001064845\nThread:98.210.154.81/@comment-22439-20160627070115\nThread:98.213.250.0/@comment-22439-20160319180002\nThread:98.214.6.212/@comment-22439-20150807022529\nThread:98.215.221.108/@comment-22439-20150507215309\nThread:98.216.193.104/@comment-22439-20141112220149\nThread:98.217.90.30/@comment-22439-20150301184358\nThread:98.220.73.80/@comment-22439-20160121014831\nThread:98.222.235.179/@comment-22439-20160830180101\nThread:98.222.91.241/@comment-22439-20141109060752\nThread:98.223.123.205/@comment-22439-20151228040424\nThread:98.225.69.62/@comment-22439-20150801062322\nThread:98.225.72.245/@comment-22439-20151202231015\nThread:98.225.98.174/@comment-22439-20150625050525\nThread:98.226.192.248/@comment-22439-20160112161115\nThread:98.226.242.124/@comment-22439-20160127222326\nThread:98.226.72.171/@comment-22439-20150422063757\nThread:98.227.152.9/@comment-22439-20150803033608\nThread:98.228.99.5/@comment-22439-20150827063205\nThread:98.23.195.64/@comment-22439-20150527030824\nThread:98.231.112.78/@comment-22439-20160112001532\nThread:98.231.139.220/@comment-22439-20151221062735\nThread:98.231.77.210/@comment-22439-20150930214229\nThread:98.233.40.74/@comment-22439-20151218094608\nThread:98.233.40.74/@comment-5959508-20151224142436\nThread:98.234.88.94/@comment-22439-20151206015331\nThread:98.235.17.163/@comment-22439-20151023201431\nThread:98.235.93.174/@comment-22439-20150106030337\nThread:98.236.173.203/@comment-22439-20170306053403\nThread:98.236.197.236/@comment-22439-20141221022445\nThread:98.237.193.126/@comment-22439-20150322195936\nThread:98.238.133.226/@comment-22439-20151205191745\nThread:98.238.218.2/@comment-22439-20150613062746\nThread:98.239.13.251/@comment-22439-20170120043939\nThread:98.239.139.216/@comment-22439-20150124180121\nThread:98.239.231.211/@comment-22439-20170201043405\nThread:98.239.48.227/@comment-22439-20150121074524\nThread:98.240.59.96/@comment-22439-20160710221602\nThread:98.242.36.239/@comment-22439-20150324094036\nThread:98.243.139.202/@comment-22439-20170407052241\nThread:98.243.222.60/@comment-22439-20150131215220\nThread:98.244.150.69/@comment-22439-20170215192256\nThread:98.244.151.22/@comment-22439-20150629134114\nThread:98.245.104.68/@comment-22439-20150610070136\nThread:98.245.12.110/@comment-22439-20150504040828\nThread:98.245.151.251/@comment-22439-20150614022041\nThread:98.245.210.143/@comment-22439-20170108002732\nThread:98.246.169.211/@comment-22439-20141227095438\nThread:98.246.184.253/@comment-22439-20150424033749\nThread:98.246.37.142/@comment-22439-20170213041848\nThread:98.246.54.51/@comment-22439-20150601040717\nThread:98.247.36.112/@comment-22439-20151220065901\nThread:98.248.175.113/@comment-22439-20150118084330\nThread:98.248.242.18/@comment-22439-20160521063829\nThread:98.248.8.62/@comment-22439-20160207101513\nThread:98.251.129.85/@comment-22439-20150126062843\nThread:98.253.51.176/@comment-22439-20160109204740\nThread:98.253.89.16/@comment-22439-20141202231547\nThread:98.26.87.63/@comment-22439-20150621021253\nThread:98.27.16.252/@comment-22439-20151203050508\nThread:98.28.229.144/@comment-22439-20150220050906\nThread:98.28.68.147/@comment-22439-20150922094406\nThread:98.29.29.110/@comment-22439-20170805183601\nThread:98.3.22.178/@comment-22439-20170704023652\nThread:98.30.105.178/@comment-22439-20141228184612\nThread:98.30.129.38/@comment-22439-20140930023903\nThread:98.30.27.95/@comment-22439-20160515111323\nThread:98.31.11.82/@comment-22439-20150705215628\nThread:98.31.38.3/@comment-22439-20160217201519\nThread:98.67.244.100/@comment-22439-20141228161526\nThread:98.89.131.219/@comment-22439-20150119021906\nThread:99.0.13.106/@comment-22439-20150320021623\nThread:99.100.68.108/@comment-22439-20151025202717\nThread:99.103.7.16/@comment-22439-20141219195215\nThread:99.108.144.199/@comment-22439-20150125131705\nThread:99.112.17.13/@comment-22439-20150727030623\nThread:99.113.119.1/@comment-22439-20150722064854\nThread:99.113.49.199/@comment-22439-20150205194231\nThread:99.113.61.88/@comment-22439-20150327130238\nThread:99.114.125.222/@comment-22439-20150502202142\nThread:99.114.190.59/@comment-22439-20150905122100\nThread:99.114.68.181/@comment-22439-20141018185626\nThread:99.126.164.93/@comment-22439-20150415180236\nThread:99.126.198.247/@comment-22439-20150117130938\nThread:99.126.215.49/@comment-22439-20150315011612\nThread:99.127.158.153/@comment-22439-20141111004040\nThread:99.13.115.50/@comment-22439-20150214025413\nThread:99.135.98.174/@comment-22439-20150326211813\nThread:99.14.137.192/@comment-22439-20150413040956\nThread:99.146.68.140/@comment-22439-20170617201027\nThread:99.163.241.2/@comment-22439-20150211233153\nThread:99.164.180.119/@comment-22439-20150129205808\nThread:99.168.125.98/@comment-22439-20170404054541\nThread:99.169.5.215/@comment-22439-20150111034902\nThread:99.17.198.206/@comment-22439-20150212221027\nThread:99.175.72.128/@comment-22439-20151023003827\nThread:99.179.137.15/@comment-22439-20150705001225\nThread:99.179.26.4/@comment-22439-20160102213442\nThread:99.182.120.66/@comment-22439-20151219163121\nThread:99.191.24.26/@comment-22439-20150417211141\nThread:99.192.113.251/@comment-22439-20150901172754\nThread:99.192.50.108/@comment-22439-20150125130026\nThread:99.194.247.125/@comment-22439-20150114035535\nThread:99.197.202.36/@comment-22439-20150329064259\nThread:99.198.205.144/@comment-22439-20170501045851\nThread:99.20.142.217/@comment-22439-20150126050025\nThread:99.20.89.243/@comment-22439-20150529054708\nThread:99.224.146.121/@comment-22439-20160203191009\nThread:99.225.27.221/@comment-22439-20151020041704\nThread:99.226.158.79/@comment-22439-20151030054343\nThread:99.226.208.146/@comment-22439-20160425205438\nThread:99.226.84.56/@comment-22439-20150618010846\nThread:99.227.202.43/@comment-22439-20150111195644\nThread:99.227.66.111/@comment-22439-20160215032532\nThread:99.229.244.4/@comment-22439-20150221032142\nThread:99.231.66.128/@comment-22439-20161213033535\nThread:99.232.27.104/@comment-22439-20150712202718\nThread:99.232.83.19/@comment-22439-20160901022752\nThread:99.233.203.226/@comment-22439-20151201202708\nThread:99.233.44.152/@comment-22439-20151119022016\nThread:99.235.30.6/@comment-22439-20160416152053\nThread:99.236.0.91/@comment-22439-20160112035041\nThread:99.236.137.187/@comment-22439-20170321112813\nThread:99.236.40.121/@comment-22439-20141228051711\nThread:99.236.44.164/@comment-22439-20160926040334\nThread:99.237.37.136/@comment-22439-20160205032729\nThread:99.238.192.59/@comment-22439-20150614170949\nThread:99.238.230.165/@comment-22439-20150115025423\nThread:99.239.112.93/@comment-22439-20141221181008\nThread:99.239.113.223/@comment-22439-20160110173640\nThread:99.239.182.156/@comment-22439-20151204220915\nThread:99.239.198.38/@comment-22439-20150831111849\nThread:99.239.68.181/@comment-22439-20170307140646\nThread:99.240.216.131/@comment-22439-20160527042921\nThread:99.241.192.89/@comment-22439-20161129002643\nThread:99.242.240.234/@comment-22439-20140320082140\nThread:99.244.166.37/@comment-22439-20141224005931\nThread:99.244.50.94/@comment-22439-20170115161951\nThread:99.245.24.70/@comment-22439-20161112200721\nThread:99.246.160.248/@comment-22439-20150321015927\nThread:99.247.201.55/@comment-22439-20160114225046\nThread:99.248.168.191/@comment-22439-20150719014513\nThread:99.248.50.97/@comment-22439-20170319154117\nThread:99.249.175.100/@comment-22439-20160217234309\nThread:99.249.183.230/@comment-22439-20140926202710\nThread:99.250.116.218/@comment-22439-20170513101518\nThread:99.253.153.153/@comment-22439-20160210054048\nThread:99.253.66.222/@comment-22439-20150910062449\nThread:99.254.2.135/@comment-22439-20160820015931\nThread:99.254.92.60/@comment-22439-20170606155353\nThread:99.255.17.35/@comment-22439-20170617225742\nThread:99.255.32.193/@comment-22439-20170218234643\nThread:99.255.61.118/@comment-22439-20150529195524\nThread:99.255.77.203/@comment-22439-20161027015604\nThread:99.26.68.253/@comment-22439-20170110023315\nThread:99.28.228.22/@comment-22439-20170519150050\nThread:99.29.0.151/@comment-22439-20161029202044\nThread:99.3.27.210/@comment-22439-20150306005445\nThread:99.40.4.128/@comment-22439-20151027002458\nThread:99.42.129.60/@comment-22439-20151223234044\nThread:99.42.81.149/@comment-22439-20170401231840\nThread:99.43.74.103/@comment-22439-20151104011248\nThread:99.44.16.152/@comment-22439-20151226211215\nThread:99.45.180.246/@comment-22439-20150103155309\nThread:99.46.113.251/@comment-22439-20161007050351\nThread:99.46.141.100/@comment-22439-20150524072917\nThread:99.46.204.166/@comment-22439-20141230081907\nThread:99.51.71.135/@comment-22439-20170718093212\nThread:99.54.58.25/@comment-22439-20161005222022\nThread:99.57.137.118/@comment-22439-20161210072952\nThread:99.6.9.167/@comment-22439-20150711055712\nThread:99.61.168.9/@comment-22439-20141231044930\nThread:99.61.20.65/@comment-22439-20160921042946\nThread:99.68.145.146/@comment-22439-20151215190055\nThread:99.7.120.162/@comment-22439-20140622202009\nThread:99.7.30.18/@comment-22439-20151226015205\nThread:99.7.33.246/@comment-22439-20150313183715\nThread:99.75.78.210/@comment-22439-20170204142628\nThread:99.8.143.101/@comment-22439-20150512044025\nThread:99.90.4.83/@comment-22439-20150106055803\nThread:99.91.222.100/@comment-22439-20151127040508\nThread:99.92.61.108/@comment-22439-20170303033623\nThread:99.95.4.38/@comment-22439-20170315170439\nThread:99.99.109.121/@comment-22439-20160827083707\nThread:99.99.173.102/@comment-22439-20150613022317\nThread:A-DEVIOUS-HYENA/@comment-22439-20160414091842\nThread:A-DEVIOUS-HYENA/@comment-22439-20160414091842/@comment-28203741-20160417131144\nThread:A.JK18/@comment-32769624-20180902214749\nThread:A26706940/@comment-22439-20141011170557\nThread:AAABatteryX/@comment-32769624-20191016233947\nThread:ADelicateBalance/@comment-22439-20140815071902\nThread:ADelicateBalance/@comment-25306315-20140818194138\nThread:ADelicateBalance/@comment-25306315-20140818194138/@comment-25295555-20140818195801\nThread:AFTABURNER/@comment-32769624-20180629014410\nThread:AGR-13/@comment-32769624-20171126112858\nThread:AKA MasterG/@comment-22439-20160422095725\nThread:ALittleBird/@comment-32769624-20180508194925\nThread:A Loyalist/@comment-22439-20150712235619\nThread:Aalku/@comment-22439-20151019202648\nThread:Aardcore/@comment-22439-20160315232827\nThread:Aaroniscrazy/@comment-32769624-20180407233121\nThread:Aawood/@comment-22439-20150805173946\nThread:Aazelion/@comment-32769624-20190720212912\nThread:AbioticSquare0/@comment-32769624-20200908134641\nThread:Abodythehero/@comment-22439-20150420070750\nThread:Abyssflight/@comment-22439-20150425173633\nThread:Ace Kestrel/@comment-22439-20150929200339\nThread:Aceman2234/@comment-32769624-20180117040024\nThread:Achuta/@comment-22439-20150804173143\nThread:Adalovegirls/@comment-32769624-20190314204721\nThread:Adamrsb48/@comment-22439-20160529221941\nThread:AdiTheFox/@comment-32769624-20200427071736\nThread:Adinashawanda/@comment-22439-20170601022552\nThread:Adminpwn123/@comment-22439-20170203212622\nThread:Admsoul500/@comment-22439-20151226160212\nThread:Adobetemplar/@comment-22439-20150118072942\nThread:Adrian549kiyoshi/@comment-22439-20161018082128\nThread:Aelkins3/@comment-32769624-20200724211019\nThread:Aeqsce/@comment-32769624-20190602131852\nThread:Aerziel/@comment-22439-20150122065730\nThread:Aesamdal/@comment-22439-20170614204541\nThread:Aethylred-fduser/@comment-22439-20150116023240\nThread:Aethylred/@comment-22439-20150116023240\nThread:Aeyonx/@comment-32769624-20200913060533\nThread:Afreeflyingsoul/@comment-22439-20141028014727\nThread:AgentExeider/@comment-22439-20161104204149\nThread:Agentnewbie/@comment-22439-20150619003525\nThread:Agony Aunt/@comment-22439-20150414130041\nThread:Agorash/@comment-22439-20150703173632\nThread:Agorash/@comment-22439-20150703173632/@comment-26009169-20150703220814\nThread:Agorash/@comment-22439-20150703173632/@comment-8738377-20150703191225\nThread:AidenTEM/@comment-22439-20170502065252\nThread:Aiihuan/@comment-32769624-20180325052108\nThread:Ajh16/@comment-32769624-20200503194554\nThread:Ajh16/@comment-32769624-20200503194554/@comment-1070376-20200505033139\nThread:AkaHeretic/@comment-32769624-20200108232427\nThread:Al1000000/@comment-32769624-20200512115604\nThread:AlatarRhys/@comment-32769624-20200403221149\nThread:Albie02/@comment-22439-20140821120545\nThread:Alejojojo6/@comment-32769624-20180913150209\nThread:AlekMitch/@comment-32769624-20200509214401\nThread:Aleswigger/@comment-32769624-20180412062831\nThread:Alex8obrien/@comment-32769624-20180725064806\nThread:Alex8obrien/@comment-32769624-20190226220019\nThread:Alexander Yunker/@comment-22439-20150614180729\nThread:Alexsto1999/@comment-32769624-20180326014108\nThread:Aliceinspace/@comment-22439-20141219161706\nThread:Alicia Melchiott/@comment-32769624-20190803061831\nThread:Alien199490/@comment-22439-20160602111851\nThread:Alifoo/@comment-32769624-20180507103547\nThread:Alin Alexandru/@comment-32769624-20190104000145\nThread:Allmass/@comment-22439-20151231143027\nThread:Allosauro Polare/@comment-32769624-20200830190322\nThread:Almighty Deity/@comment-32769624-20190220045847\nThread:AlphaSpace/@comment-32769624-20181109222604\nThread:Alphaengineer/@comment-32769624-20171010040129\nThread:Alphetto/@comment-32769624-20190603203540\nThread:Alshain Aquilae/@comment-32769624-20200606024049\nThread:Amastoll/@comment-22439-20151111043749\nThread:AmayaManami/@comment-22439-20160104122725\nThread:Ambient.Impact/@comment-32769624-20190618064135\nThread:Ambiorix33/@comment-32769624-20180503061815\nThread:Amorelia/@comment-22439-20150419043029\nThread:An attempted username/@comment-22439-20150425191659\nThread:AnalyticalGamer/@comment-32769624-20180404194120\nThread:Anarch157a/@comment-22439-20151014160417\nThread:AnarchySys-1/@comment-22439-20151213051411\nThread:AndersonDG/@comment-12138097-20141216192734\nThread:AndersonDG/@comment-12138097-20141216192734/@comment-25136754-20141216202703\nThread:AndersonDG/@comment-12138097-20150220220249\nThread:AndersonDG/@comment-12138097-20150220220249/@comment-25136754-20150220225339\nThread:AndersonDG/@comment-12138097-20150220220249/@comment-26009169-20150220220808\nThread:AndersonDG/@comment-12138097-20150224095854\nThread:AndersonDG/@comment-12138097-20150224095854/@comment-12138097-20150224201938\nThread:AndersonDG/@comment-12138097-20150224095854/@comment-12138097-20150224223330\nThread:AndersonDG/@comment-12138097-20150224095854/@comment-12138097-20150225045757\nThread:AndersonDG/@comment-12138097-20150224095854/@comment-12138097-20150225183822\nThread:AndersonDG/@comment-12138097-20150224095854/@comment-12138097-20150226004747\nThread:AndersonDG/@comment-12138097-20150224095854/@comment-12138097-20150226020950\nThread:AndersonDG/@comment-12138097-20150224095854/@comment-12138097-20150226024243\nThread:AndersonDG/@comment-12138097-20150224095854/@comment-12138097-20150228095652\nThread:AndersonDG/@comment-12138097-20150224095854/@comment-26009169-20150224121740\nThread:AndersonDG/@comment-12138097-20150224095854/@comment-26009169-20150224220340\nThread:AndersonDG/@comment-12138097-20150224095854/@comment-26009169-20150225131611\nThread:AndersonDG/@comment-12138097-20150224095854/@comment-26009169-20150225185413\nThread:AndersonDG/@comment-12138097-20150224095854/@comment-26009169-20150226000619\nThread:AndersonDG/@comment-12138097-20150224095854/@comment-26009169-20150226010048\nThread:AndersonDG/@comment-12138097-20150224095854/@comment-26009169-20150226022157\nThread:AndersonDG/@comment-12138097-20150224095854/@comment-26009169-20150228125344\nThread:AndersonDG/@comment-188.220.234.132-20151207150613\nThread:AndersonDG/@comment-188.220.234.132-20151207150613/@comment-26009169-20151207160458\nThread:AndersonDG/@comment-26009169-20150413183756\nThread:AndersonDG/@comment-26198498-20150313173731\nThread:AndersonDG/@comment-26198498-20150313173731/@comment-12138097-20150313192824\nThread:AndersonDG/@comment-26198498-20150315063340\nThread:AndersonDG/@comment-26198498-20150315063340/@comment-12138097-20150315080129\nThread:AndersonDG/@comment-26198498-20150315063340/@comment-12138097-20150315184624\nThread:AndersonDG/@comment-26198498-20150315063340/@comment-26009169-20150315190645\nThread:AndersonDG/@comment-26198498-20150315063340/@comment-26009169-20150315191637\nThread:AndersonDG/@comment-26198498-20150315063340/@comment-26009169-20150315195305\nThread:AndersonDG/@comment-26198498-20150315063340/@comment-26009169-20150315195653\nThread:AndersonDG/@comment-26198498-20150315063340/@comment-26009169-20150315200348\nThread:AndersonDG/@comment-26198498-20150315063340/@comment-26009169-20150315201011\nThread:AndersonDG/@comment-26198498-20150315063340/@comment-26009169-20150315202225\nThread:AndersonDG/@comment-26198498-20150315063340/@comment-26198498-20150315104933\nThread:AndersonDG/@comment-26198498-20150315063340/@comment-26198498-20150315125759\nThread:AndersonDG/@comment-26198498-20150315063340/@comment-26198498-20150315185415\nThread:AndersonDG/@comment-26198498-20150315063340/@comment-26198498-20150315190404\nThread:AndersonDG/@comment-26198498-20150315063340/@comment-26198498-20150315191420\nThread:AndersonDG/@comment-26198498-20150315063340/@comment-26198498-20150315192033\nThread:AndersonDG/@comment-26198498-20150315063340/@comment-26198498-20150315192254\nThread:AndersonDG/@comment-26198498-20150315063340/@comment-26198498-20150315195452\nThread:AndersonDG/@comment-26198498-20150315063340/@comment-26198498-20150315195751\nThread:AndersonDG/@comment-26198498-20150315063340/@comment-26198498-20150315195914\nThread:AndersonDG/@comment-26198498-20150315063340/@comment-26198498-20150315200438\nThread:AndersonDG/@comment-26198498-20150315063340/@comment-26198498-20150315201557\nThread:AndersonDG/@comment-26198498-20150315063340/@comment-26198498-20150315202022\nThread:AndersonDG/@comment-26198498-20150316110301\nThread:AndersonDG/@comment-26198498-20150316110301/@comment-26198498-20150318212117\nThread:AndiSarrian/@comment-32769624-20200605195104\nThread:Andix1/@comment-22439-20150723001856\nThread:Andix1/@comment-26599825-20150731113450\nThread:Andix1/@comment-26599825-20150731113450/@comment-26009169-20150731122355\nThread:Andix1/@comment-26599825-20150731113450/@comment-26599825-20150731115941\nThread:Andix1/@comment-26599825-20150731113450/@comment-26599825-20150731122358\nThread:Andix1/@comment-26599825-20150731113450/@comment-26599825-20150731122548\nThread:Andix1/@comment-26599825-20150731113450/@comment-26599825-20150731122833\nThread:Andix1/@comment-26599825-20150731113450/@comment-26599825-20150731124524\nThread:Andix1/@comment-26599825-20150731113450/@comment-26599825-20150731141529\nThread:Andix1/@comment-26599825-20150731113450/@comment-26599825-20150731171800\nThread:Andix1/@comment-26599825-20150731113450/@comment-26810812-20150731114546\nThread:Andix1/@comment-26599825-20150731113450/@comment-26810812-20150731120200\nThread:Andix1/@comment-26599825-20150731113450/@comment-26810812-20150731124041\nThread:Andix1/@comment-26599825-20150731113450/@comment-26810812-20150731130919\nThread:Andix1/@comment-26599825-20150731113450/@comment-26810812-20150731141915\nThread:Andraez/@comment-32769624-20200419235219\nThread:Andrealessi/@comment-32769624-20180630205913\nThread:Andreferhelst/@comment-22439-20160616225828\nThread:Andrew279cz/@comment-32769624-20171208132230\nThread:AndrewTJ31/@comment-22439-20160620151730\nThread:Andrew Woden/@comment-32769624-20190309013450\nThread:AndricReal/@comment-32769624-20200121235047\nThread:Andrtan/@comment-22439-20160523114340\nThread:AndySimpson96/@comment-32769624-20180227214515\nThread:Andybish/@comment-22439-20160928181543\nThread:AngelCatGamer/@comment-22439-20150107195044\nThread:AngelicSkyPig/@comment-22439-20150512203742\nThread:AngelusNeron/@comment-22439-20151014183755\nThread:AnimeKid/@comment-22439-20141229035013\nThread:AnimusDeFi/@comment-22439-20160706204214\nThread:Anon1444/@comment-32769624-20180816131423\nThread:Anonymoususer705/@comment-32769624-20200312054635\nThread:Antezscar/@comment-22439-20160416145524\nThread:AntonerUSSR/@comment-22439-20161111223653\nThread:AntonyVern/@comment-32769624-20171129072024\nThread:AntyAztek/@comment-32769624-20181213011412\nThread:AntyAztek/@comment-32769624-20181213011705\nThread:AnxiousAndroid/@comment-32769624-20200915155536\nThread:Anzhi88601/@comment-32769624-20190111172111\nThread:Anzhi88601/@comment-32769624-20190111172224\nThread:AppleAuthority/@comment-32769624-20190206140708\nThread:Applemasterexpert/@comment-32769624-20190723132114\nThread:Aquarius Alodar/@comment-22439-20151215203911\nThread:Aquaticaquarian/@comment-22439-20170301225845\nThread:ArakiSatoshi/@comment-32769624-20200914205729\nThread:Aran.ilyaris/@comment-32769624-20200229084723\nThread:Araxes Falanor/@comment-22439-20160624121245\nThread:Arbie2/@comment-32769624-20180930064848\nThread:Arcalane/@comment-32769624-20180801021419\nThread:Arcanii/@comment-22439-20141008213935\nThread:Archemp/@comment-2155082-20161221054802\nThread:Archemp/@comment-22439-20161101155806\nThread:ArchmageFil/@comment-22439-20141221071120\nThread:Arcslayer0/@comment-22439-20160417134506\nThread:ArcticEngie/@comment-22439-20150226171513\nThread:Arerix/@comment-22439-20151203192805\nThread:Arfur Faulkes Hake/@comment-32769624-20200630032301\nThread:Arguendo/@comment-22439-20160505231132\nThread:Arithon68/@comment-22439-20160830124137\nThread:ArithonUK/@comment-32769624-20200222165817\nThread:ArkadeMachine/@comment-32769624-20180413173337\nThread:Arkronis/@comment-22439-20140621145118\nThread:Arktac13/@comment-22439-20141120001707\nThread:Arminelec/@comment-32769624-20190929212555\nThread:Armorial/@comment-22439-20130715215712\nThread:Armorial/@comment-22439-20130715215712/@comment-12291569-20130715231648\nThread:Armorial/@comment-22439-20130715215712/@comment-12291569-20130717185151\nThread:Armorial/@comment-22439-20130715215712/@comment-5959508-20130716164236\nThread:Arnoldhdz/@comment-22439-20150620023902\nThread:Arnoldhdz/@comment-22439-20150620023902/@comment-26513805-20150620025906\nThread:Arron X/@comment-32769624-20190825230650\nThread:Arron X/@comment-32769624-20190825230650/@comment-43623494-20190825230919\nThread:Arrrrgh/@comment-32769624-20190421174139\nThread:Artemis317/@comment-32769624-20170824231439\nThread:Artemis871/@comment-32769624-20180703100840\nThread:ArthurFistMeme/@comment-32769624-20190730153713\nThread:Asalamanca/@comment-32769624-20190125185630\nThread:Asbestosinhaler/@comment-32769624-20200511150828\nThread:Ascott08/@comment-22439-20150611203915\nThread:Ashcraven/@comment-22439-20141227032432\nThread:Asherett/@comment-22439-20150121113439\nThread:Ashnak/@comment-32769624-20191003080749\nThread:Askanison40/@comment-22439-20131205143548\nThread:Assassin1454/@comment-22439-20151020140013\nThread:Astaldor/@comment-22439-20150814183415\nThread:Atamoor/@comment-22439-20150408130831\nThread:Atarak/@comment-22439-20151014101851\nThread:Atdc98/@comment-22439-20141003035052\nThread:Athenian Goddess/@comment-22439-20150704031433\nThread:Atlas29k/@comment-32769624-20180825030052\nThread:Atribe/@comment-22439-20150506022733\nThread:Auhrii/@comment-32769624-20180301172530\nThread:Auron Volgar/@comment-22439-20150514101458\nThread:AuroraXerox/@comment-22439-20150518142506\nThread:Aussiecookie/@comment-22439-20141222190340\nThread:Autemer/@comment-22439-20150818135202\nThread:AvalonTreman/@comment-22439-20141226055615\nThread:Avaruus/@comment-32769624-20190925144513\nThread:Avonw/@comment-22439-20150421135821\nThread:Aw360/@comment-22439-20141223224152\nThread:AwakenDeath/@comment-22439-20160904212354\nThread:Ax028/@comment-32769624-20190901071433\nThread:Axarus/@comment-22439-20151021182558\nThread:Axelskox/@comment-22439-20150312085210\nThread:Aygor974/@comment-32769624-20200810201235\nThread:Aymerix/@comment-32769624-20180703175812\nThread:Azeoss/@comment-22439-20150605161617\nThread:Azgoodaz/@comment-22439-20150911022948\nThread:Azgru/@comment-32769624-20171025060424\nThread:Azuki, Connoisseur d'Catgirl/@comment-32769624-20190806154911\nThread:Azutone/@comment-32769624-20181215204727\nThread:Azutone/@comment-32769624-20181215204857\nThread:B1uetears/@comment-22439-20150331145630\nThread:BAdbUd65/@comment-32769624-20180315040123\nThread:BBuster20/@comment-32769624-20200414202411\nThread:BLaZeR666uk/@comment-32769624-20180222210910\nThread:BNSF1995/@comment-22439-20151224110224\nThread:BOOTZed/@comment-22439-20160107021827\nThread:BULLIITT/@comment-22439-20150612222028\nThread:Babyss/@comment-22439-20150501190600\nThread:BadBunnie/@comment-22439-20150222234416\nThread:Badboyswat007/@comment-22439-20160823152436\nThread:Baelydon/@comment-22439-20150726043334\nThread:Baledor/@comment-22439-20150127180334\nThread:Banos Ayado/@comment-22439-20150305141311\nThread:Banos Ayado/@comment-22439-20150305141311/@comment-26171966-20150310193410\nThread:Barateza/@comment-32769624-20191014183218\nThread:Barkertron/@comment-22439-20151220220822\nThread:BaronCrusher/@comment-32769624-20171224031819\nThread:Baroness Galaxy/@comment-22439-20161016101933\nThread:Barrechor/@comment-22439-20150405041501\nThread:Bastardblaster/@comment-22439-20150814004721\nThread:Bderochie/@comment-32769624-20200930074855\nThread:Bear Heroditus/@comment-22439-20160407220434\nThread:Beebro22/@comment-32769624-20200628231640\nThread:Beetusdeletus/@comment-32769624-20200701075525\nThread:Bene1993/@comment-22439-20140921115729\nThread:BennyBoyW/@comment-22439-20141005100722\nThread:Bentheshrubber/@comment-22439-20141224042552\nThread:BestalienUK/@comment-12138097-20150217195406\nThread:BestalienUK/@comment-12138097-20150217195406/@comment-26118518-20150218174146\nThread:BestalienUK/@comment-22439-20150217121416\nThread:Bethcharissa9/@comment-22439-20170602060747\nThread:Bgavares/@comment-22439-20150511135456\nThread:Bgavares/@comment-26009169-20150511151610\nThread:Bidabug/@comment-22439-20150715210046\nThread:Bidoof king/@comment-32769624-20190102055943\nThread:BigBadB ED/@comment-22439-20150123001151\nThread:BigBlackWolf/@comment-22439-20160308203052\nThread:Biker4487/@comment-32769624-20190731163900\nThread:Bilberquist/@comment-32769624-20171221200107\nThread:Bilgewat3r/@comment-32769624-20180127085751\nThread:BinaryHatred/@comment-22439-20150318221815\nThread:Bingo Brewster/@comment-22439-20140818094208\nThread:Binlid/@comment-22439-20141228072942\nThread:Bionicbytes/@comment-32769624-20200620233628\nThread:BirDty/@comment-32769624-20181023031300\nThread:Bishop Inskipp/@comment-32769624-20200514173916\nThread:Bit'n'byte/@comment-32769624-20200502093325\nThread:Bitboy0/@comment-32769624-20171218185247\nThread:Bl00dh0und9/@comment-22439-20160807164321\nThread:BlackKnight343/@comment-22439-20150728120143\nThread:BlackWidower/@comment-32769624-20200706231016\nThread:Blackenedbutterfly/@comment-32769624-20200518063634\nThread:Blackmesa141/@comment-22439-20150723085542\nThread:Blackproud/@comment-32769624-20190706184025\nThread:Bladefeather/@comment-22439-20160713043643\nThread:Blades762/@comment-22439-20160305180644\nThread:Blaes3304/@comment-32769624-20181215000522\nThread:BlaesTheLoreguy/@comment-32769624-20200203072235\nThread:BlanquePayge81/@comment-32769624-20190801212227\nThread:Blastburn94/@comment-32769624-20190226144754\nThread:BlastedFire/@comment-22439-20150823170521\nThread:Bliss000/@comment-22439-20150523135459\nThread:Blizzard36/@comment-32769624-20200823180324\nThread:BloatedPelican/@comment-22439-20150713201942\nThread:Blockade3/@comment-32769624-20180815231222\nThread:Blood Drunk Gaming/@comment-22439-20151209174856\nThread:Blowdog/@comment-22439-20150109041522\nThread:Blu Razgriz/@comment-32769624-20181213065237\nThread:Blubbinio/@comment-22439-20160117110233\nThread:Blubbinio/@comment-22439-20160117110233/@comment-26358209-20160117110510\nThread:Blubbinio/@comment-22439-20160117110233/@comment-5959508-20160117114322\nThread:BlueJoeCo/@comment-22439-20150527003152\nThread:BlueMystical/@comment-32769624-20200716031124\nThread:Bluecrash/@comment-30928085-20180915205354\nThread:Bluecrash/@comment-30928085-20180915205354/@comment-30928085-20180915212956\nThread:Bluecrash/@comment-30928085-20180915205354/@comment-30928085-20180916035251\nThread:Bluecrash/@comment-30928085-20180915205354/@comment-30928085-20180916210639\nThread:Bluecrash/@comment-30928085-20180915205354/@comment-30928085-20180917050048\nThread:Bluecrash/@comment-30928085-20180915205354/@comment-903860-20180915211133\nThread:Bluecrash/@comment-30928085-20180915205354/@comment-903860-20180915211249\nThread:Bluecrash/@comment-30928085-20180915205354/@comment-903860-20180915211437\nThread:Bluecrash/@comment-30928085-20180915205354/@comment-903860-20180915211520\nThread:Bluecrash/@comment-30928085-20180915205354/@comment-903860-20180915221328\nThread:Bluecrash/@comment-30928085-20180915205354/@comment-903860-20180915221835\nThread:Bluecrash/@comment-30928085-20180915205354/@comment-903860-20180916060938\nThread:Bluecrash/@comment-30928085-20180915205354/@comment-903860-20180916192754\nThread:Bluecrash/@comment-30928085-20180915205354/@comment-903860-20180916224223\nThread:Bluecrash/@comment-30928085-20180915205354/@comment-903860-20180916224308\nThread:Bluecrash/@comment-30928085-20180915205354/@comment-903860-20180917060518\nThread:Bluecrash/@comment-32769624-20180912001153\nThread:Bluecrash/@comment-32769624-20180912001153/@comment-903860-20180912231916\nThread:Bluekieran/@comment-22439-20141103101546\nThread:Bluewave256/@comment-22439-20161102045108\nThread:Bo55vxr/@comment-22439-20150623065413\nThread:Bo55vxr/@comment-22439-20150623065413/@comment-15422849-20150623072430\nThread:Bo55vxr/@comment-22439-20150623065413/@comment-15422849-20150623123636\nThread:Bo55vxr/@comment-22439-20150623065413/@comment-26009169-20150623123115\nThread:Bob - Chicken Eater/@comment-22439-20160530111129\nThread:BobbyARandomGuy/@comment-22439-20160407084530\nThread:Boczyslav/@comment-32769624-20181231113005\nThread:Boczyslav/@comment-32769624-20181231113048\nThread:Boernsi2000/@comment-32769624-20200607175510\nThread:Bohric/@comment-22439-20150627235908\nThread:Bohtauri/@comment-12138097-20141119220924\nThread:Bohtauri/@comment-22439-20141112000742\nThread:Bolloxim/@comment-22439-20150110090214\nThread:Bompiz/@comment-32769624-20190305182354\nThread:Bongerman85/@comment-32769624-20190126231650\nThread:Bongorider/@comment-32769624-20200918084517\nThread:Boomaya/@comment-32769624-20200911000054\nThread:Bordmon/@comment-32769624-20200616100033\nThread:Bordric/@comment-32769624-20180904040256\nThread:Borgkube/@comment-22439-20140825232538\nThread:BornBadAimer/@comment-32769624-20191117201626\nThread:Boronshark/@comment-22439-20150204123515\nThread:BostonBrawler/@comment-32769624-20190718183547\nThread:Bounceyhedgehog/@comment-22439-20170227012336\nThread:Brackynews/@comment-22439-20151230193856\nThread:Bragolatch/@comment-22439-20150108131402\nThread:BramSter/@comment-22439-20151214184037\nThread:Brandon Potts/@comment-32769624-20171103020442\nThread:Brass79/@comment-32769624-20180829130230\nThread:Bravo17/@comment-32769624-20200223221456\nThread:Brayzure/@comment-22439-20150314230747\nThread:BreaksWindu/@comment-22439-20150519223205\nThread:Breywood/@comment-32769624-20190314133826\nThread:Brimston/@comment-32769624-20200424143328\nThread:BritishAdmiral/@comment-22439-20160402232847\nThread:Britishfish/@comment-22439-20141201005222\nThread:BruceWillyyy/@comment-22439-20141229021231\nThread:Brucejr70/@comment-32769624-20200623184452\nThread:Bruno3700/@comment-22439-20160516123158\nThread:Brusilov/@comment-22439-20160524062453\nThread:BrutalBird/@comment-22439-20160112234322\nThread:Bruzt/@comment-32769624-20200616123242\nThread:Bubbabenali/@comment-32769624-20200506075207\nThread:Buggs1a/@comment-22439-20160125100438\nThread:Bughunter13/@comment-32769624-20200501011741\nThread:Buliell/@comment-22439-20160829003814\nThread:Burninghero/@comment-32769624-20180408184327\nThread:Bus Ticket/@comment-22439-20160626203129\nThread:Buster6676/@comment-22439-20160528105406\nThread:BwShadowFang/@comment-22439-20150926081313\nThread:Bwc153/@comment-32769624-20190117062004\nThread:Bwoodward/@comment-22439-20140828092624\nThread:C0b4ltl1ghtn1ng/@comment-32769624-20200409091210\nThread:CASAGE/@comment-32769624-20181124231507\nThread:CC9020/@comment-22439-20160526011850\nThread:CDR Fokker/@comment-22439-20160306164635\nThread:CLuther/@comment-32769624-20200619034446\nThread:CMDE Megashot7727/@comment-32769624-20200621195029\nThread:CMDR-GreenDemon/@comment-22439-20150717085407\nThread:CMDRAaronParker/@comment-109.155.182.227-20150607134819\nThread:CMDRAaronParker/@comment-22439-20150520224226\nThread:CMDRAaronParker/@comment-30115127-20171010145800\nThread:CMDRAaronParker/@comment-30115127-20171010145800/@comment-26419093-20171010145934\nThread:CMDRAaronParker/@comment-30115127-20171010145800/@comment-30115127-20171010150021\nThread:CMDRAaronParker/@comment-30115127-20171010145800/@comment-33318590-20171010150247\nThread:CMDRAquillus/@comment-22439-20160124180229\nThread:CMDRAquillus/@comment-22439-20160124180229/@comment-27669143-20160124182102\nThread:CMDRExorcist/@comment-32769624-20191021182930\nThread:CMDRExorcist/@comment-32769624-20191021182930/@comment-39535003-20191026050303\nThread:CMDRGURU951/@comment-32769624-20180409041712\nThread:CMDRGrayArea/@comment-22439-20160112101122\nThread:CMDRJimenez/@comment-22439-20150902120345\nThread:CMDRKennyJacket/@comment-22439-20170304130738\nThread:CMDRKennyJacket/@comment-30928085-20170304132434\nThread:CMDRKennyJacket/@comment-30928085-20170304132434/@comment-30928085-20170304155230\nThread:CMDRKennyJacket/@comment-30928085-20170304132434/@comment-31444552-20170304150929\nThread:CMDRMegalos/@comment-22439-20160511124209\nThread:CMDRPaelon/@comment-22439-20160222220514\nThread:CMDRPlater/@comment-22439-20160822174209\nThread:CMDRSalad/@comment-22439-20151018083953\nThread:CMDRTitusValerius/@comment-22439-20150322194648\nThread:CMDRToXik/@comment-32769624-20200507034026\nThread:CMDR AL3X/@comment-32769624-20200616232214\nThread:CMDR Alex Harrow/@comment-22439-20151220093635\nThread:CMDR Alex Harrow/@comment-22439-20151220093635/@comment-27433902-20151228020920\nThread:CMDR Algomatic/@comment-32769624-20190628090446\nThread:CMDR Archlich/@comment-32769624-20190622162412\nThread:CMDR Berton/@comment-22439-20150708153138\nThread:CMDR Berton/@comment-26810812-20150731105620\nThread:CMDR Berton/@comment-26810812-20150731105620/@comment-26599825-20150731110010\nThread:CMDR Berton/@comment-26810812-20150731105620/@comment-26599825-20150731110427\nThread:CMDR DTOM/@comment-22439-20151018011721\nThread:CMDR Danzo Treeface/@comment-32769624-20200630022038\nThread:CMDR Deathbringer/@comment-22439-20150724025315\nThread:CMDR DraphtN/@comment-26974436-20150910055313\nThread:CMDR EAMONN/@comment-22439-20150610131427\nThread:CMDR EAMONN/@comment-22439-20150610131427/@comment-26009169-20150610133644\nThread:CMDR EAMONN/@comment-22439-20150610131427/@comment-26483328-20150610132042\nThread:CMDR Ed Mussie/@comment-22439-20160831212228\nThread:CMDR Eleshenar/@comment-22439-20160825104706\nThread:CMDR Elnar/@comment-22439-20150629124513\nThread:CMDR EpicClown/@comment-22439-20160616222258\nThread:CMDR FISHCANDY/@comment-2155082-20161012204520\nThread:CMDR FISHCANDY/@comment-2155082-20161012204520/@comment-2155082-20161013170544\nThread:CMDR FISHCANDY/@comment-2155082-20161012204520/@comment-2155082-20161013225416\nThread:CMDR FISHCANDY/@comment-2155082-20161012204520/@comment-30197446-20161013133816\nThread:CMDR FISHCANDY/@comment-2155082-20161012204520/@comment-30197446-20161013173516\nThread:CMDR FISHCANDY/@comment-22439-20161011072343\nThread:CMDR FISHCANDY/@comment-26009169-20161013192042\nThread:CMDR FISHCANDY/@comment-26009169-20161013192042/@comment-26009169-20161013192931\nThread:CMDR FISHCANDY/@comment-26009169-20161013192042/@comment-30197446-20161013192905\nThread:CMDR FISHCANDY/@comment-26009169-20161013192042/@comment-30197446-20161013200126\nThread:CMDR Fallen Heart/@comment-22439-20160806032122\nThread:CMDR Ferroll/@comment-22439-20160116094007\nThread:CMDR Frakie/@comment-22439-20160608102926\nThread:CMDR Frakie/@comment-22439-20160608102926/@comment-28689414-20160608113518\nThread:CMDR Furyosa/@comment-22439-20150807014350\nThread:CMDR Good Guy Jones/@comment-22439-20150131231200\nThread:CMDR Grey Wolfe/@comment-30928085-20170719230317\nThread:CMDR Grey Wolfe/@comment-30928085-20170719230317/@comment-1.152.97.33-20170720000240\nThread:CMDR Grey Wolfe/@comment-30928085-20170719230317/@comment-30928085-20170720000944\nThread:CMDR IWl/@comment-22439-20160215011518\nThread:CMDR Kalperine/@comment-22439-20160915103517\nThread:CMDR Kastor/@comment-22439-20140822130810\nThread:CMDR Kastor/@comment-22439-20140822130810/@comment-25335609-20140822131811\nThread:CMDR Kastor/@comment-22439-20140822130810/@comment-6033893-20140822155245\nThread:CMDR Kirv Goldblade/@comment-32769624-20180106164202\nThread:CMDR Knolan/@comment-22439-20150611172241\nThread:CMDR Kune/@comment-22439-20160916142348\nThread:CMDR Manfredvonrichtoffen/@comment-32769624-20200607121111\nThread:CMDR Montague Druitt/@comment-32769624-20190909203835\nThread:CMDR Nashorn/@comment-22439-20150324110015\nThread:CMDR NineSun/@comment-22439-20160112175456\nThread:CMDR Ostey/@comment-32769624-20190917023749\nThread:CMDR Owl/@comment-32769624-20200813113602\nThread:CMDR PAUSANIAS/@comment-32769624-20200717220454\nThread:CMDR Pandishi/@comment-22439-20150719145346\nThread:CMDR Paul Golov/@comment-32769624-20200510185946\nThread:CMDR Paul Golov/@comment-32769624-20200510185946/@comment-45693047-20200908205249\nThread:CMDR Pittam/@comment-32769624-20190816064106\nThread:CMDR Pweeps/@comment-32769624-20181221012924\nThread:CMDR RahnKavall/@comment-22439-20150317152433\nThread:CMDR Ramza Fellos/@comment-22439-20160103130500\nThread:CMDR Reaper/@comment-32769624-20180425144657\nThread:CMDR RebelUK/@comment-32769624-20200918173742\nThread:CMDR Remi Lassalle/@comment-22439-20151204043249\nThread:CMDR Rhye/@comment-32769624-20190221124341\nThread:CMDR Shane Lee/@comment-22439-20150306034653\nThread:CMDR Shane Lee/@comment-22439-20150306034653/@comment-26174322-20150622162916\nThread:CMDR Shwinky/@comment-32769624-20180507230455\nThread:CMDR Slyve/@comment-32769624-20200716201323\nThread:CMDR Sniffy/@comment-32769624-20171025071826\nThread:CMDR Soifua/@comment-32769624-20190506165249\nThread:CMDR Space Dawg/@comment-22439-20150125162431\nThread:CMDR Spencer B/@comment-32769624-20190106211717\nThread:CMDR Spencer B/@comment-32769624-20190106215435\nThread:CMDR Stahlwollvieh/@comment-22439-20160804174041\nThread:CMDR StenJay the 8th wonder/@comment-22439-20150423174925\nThread:CMDR Sudoken/@comment-32769624-20190111120147\nThread:CMDR Sudoken/@comment-32769624-20190111133819\nThread:CMDR Sushin/@comment-32769624-20180304172807\nThread:CMDR Tigivo/@comment-22439-20150103195520\nThread:CMDR Treya/@comment-32769624-20200426150146\nThread:CMDR Triton Zeal/@comment-1028741-20151219020554\nThread:CMDR Triton Zeal/@comment-22439-20151203074306\nThread:CMDR Trium Augus/@comment-32769624-20181126193124\nThread:CMDR Vincentius/@comment-22439-20151015185808\nThread:CMDR WAZENER/@comment-22439-20141228174944\nThread:CMDR Zer0Skill/@comment-22439-20150506212717\nThread:CMDR victordestroyer/@comment-22439-20140924004715\nThread:CMDRbranch/@comment-22439-20150720085756\nThread:CMD Kerpla/@comment-22439-20150817150919\nThread:CMNDRXenon/@comment-22439-20170326160309\nThread:CTFunny/@comment-32769624-20190829204933\nThread:Cab13140/@comment-32769624-20200426122041\nThread:Cabbage928/@comment-32769624-20190425030504\nThread:CakeSlayr/@comment-32769624-20190707180040\nThread:CaldariLegend/@comment-32769624-20180704093508\nThread:Caleb Blackpaw/@comment-22439-20150417083042\nThread:CallMeHyphen/@comment-32769624-20200229210813\nThread:Callummcf0501/@comment-32769624-20181223193743\nThread:Callzter/@comment-32769624-20180116122801\nThread:Callzter/@comment-32769624-20190408112302\nThread:Canadianicehole/@comment-22439-20160112192300\nThread:Capirossi/@comment-22439-20150308220408\nThread:CaptAnopheles/@comment-22439-20160726130150\nThread:CaptHank/@comment-32769624-20190202212324\nThread:CaptSummers/@comment-22439-20150529100520\nThread:CaptainBarracuda/@comment-22439-20141105010124\nThread:CaptainMeap/@comment-32769624-20180104060751\nThread:CaptainTeachBlackBeard/@comment-30928085-20170502143628\nThread:CaptainTeachBlackBeard/@comment-30928085-20170502143628/@comment-26009169-20170502185534\nThread:CaptainTeachBlackBeard/@comment-30928085-20170502143628/@comment-26009169-20170503095719\nThread:CaptainTeachBlackBeard/@comment-30928085-20170502143628/@comment-30928085-20170502210906\nThread:Captain Barracuda/@comment-22439-20160529044316\nThread:Captain Breton/@comment-22439-20150113210755\nThread:Captain Tickle/@comment-22439-20150721165343\nThread:Captain rafix/@comment-2155082-20161027040215\nThread:Captain rafix/@comment-2155082-20161027040215/@comment-2155082-20161106005245\nThread:Captain rafix/@comment-2155082-20161027040215/@comment-29590738-20161105204935\nThread:Captain rafix/@comment-22439-20160811160748\nThread:Captain rafix/@comment-22439-20160811160748/@comment-29590738-20160812090246\nThread:Card1974/@comment-22439-20161002153736\nThread:CarryAubriella/@comment-22439-20170405074736\nThread:CarverSindile/@comment-32769624-20200904000125\nThread:CashewCraft/@comment-22439-20150419112411\nThread:CastielVII/@comment-32769624-20190116071023\nThread:CastielVII/@comment-32769624-20190121121054\nThread:CatalystReality/@comment-32769624-20200126192315\nThread:CavaX/@comment-33318590-20171010150100\nThread:Cdw129/@comment-32769624-20200410183055\nThread:Celarius/@comment-22439-20151108173637\nThread:Celness/@comment-32769624-20200302233035\nThread:Cephalos1981/@comment-32769624-20200510231554\nThread:Cephalos81/@comment-22439-20160525205512\nThread:Cessoe/@comment-22439-20151224043918\nThread:Chandoss/@comment-22439-20160727131656\nThread:Charizard1596/@comment-32769624-20200917111100\nThread:Chiconspiracy/@comment-22439-20151027150042\nThread:Chinagreenelvis/@comment-32769624-20180124234904\nThread:Chrisdubbels/@comment-32769624-20200122202946\nThread:Chrisnb1/@comment-22439-20150720224240\nThread:Chromfell/@comment-22439-20161212021642\nThread:Chrras/@comment-22439-20151216181604\nThread:ChuckyB/@comment-32769624-20181124024146\nThread:Cinoth/@comment-22439-20150907010102\nThread:CirrusFlare/@comment-32769624-20200301195625\nThread:City12/@comment-32769624-20200625212023\nThread:Ck.ender/@comment-22439-20150207022326\nThread:Clavain/@comment-22439-20150706165248\nThread:Clingo316/@comment-32769624-20171013163548\nThread:ClkWrkCuttlfish/@comment-22439-20150415022726\nThread:Clockpuncher/@comment-136.24.191.82-20180524031531\nThread:Clockpuncher/@comment-136.24.191.82-20180524031531/@comment-26810597-20180524035852\nThread:Clockpuncher/@comment-192.136.170.98-20190301190553\nThread:Clockpuncher/@comment-192.136.170.98-20190301190553/@comment-26810597-20190302010247\nThread:Clockpuncher/@comment-2155082-20170730030250\nThread:Clockpuncher/@comment-22439-20160114092156\nThread:Clockpuncher/@comment-24.67.124.227-20190911075702\nThread:Clockpuncher/@comment-24.67.124.227-20190911075702/@comment-24.67.124.227-20190924021202\nThread:Clockpuncher/@comment-24.67.124.227-20190911075702/@comment-24.67.124.227-20190925013010\nThread:Clockpuncher/@comment-24.67.124.227-20190911075702/@comment-26810597-20190911225146\nThread:Clockpuncher/@comment-24.67.124.227-20190911075702/@comment-26810597-20190924063935\nThread:Clockpuncher/@comment-25463305-20200507194226\nThread:Clockpuncher/@comment-25463305-20200507194226/@comment-25463305-20200509193147\nThread:Clockpuncher/@comment-25463305-20200507194226/@comment-25463305-20200702113527\nThread:Clockpuncher/@comment-25463305-20200507194226/@comment-26009169-20200509223714\nThread:Clockpuncher/@comment-25463305-20200507194226/@comment-26810597-20200508042428\nThread:Clockpuncher/@comment-25463305-20200507194226/@comment-26810597-20200703013205\nThread:Clockpuncher/@comment-25463305-20200507194226/@comment-30928085-20200510153956\nThread:Clockpuncher/@comment-25981159-20171217092843\nThread:Clockpuncher/@comment-27876530-20171010202904\nThread:Clockpuncher/@comment-27876530-20171010202904/@comment-26810597-20171010210526\nThread:Clockpuncher/@comment-29567000-20190930110633\nThread:Clockpuncher/@comment-29567000-20190930110633/@comment-26810597-20190930204825\nThread:Clockpuncher/@comment-29567000-20190930110633/@comment-26810597-20191001212704\nThread:Clockpuncher/@comment-29567000-20190930110633/@comment-29567000-20191001023637\nThread:Clockpuncher/@comment-29567000-20190930110633/@comment-29567000-20191001231326\nThread:Clockpuncher/@comment-30245159-20170427133449\nThread:Clockpuncher/@comment-30245159-20170427133449/@comment-26810597-20170427203523\nThread:Clockpuncher/@comment-30245159-20170427133449/@comment-26810597-20170428083535\nThread:Clockpuncher/@comment-30245159-20170427133449/@comment-30245159-20170427205105\nThread:Clockpuncher/@comment-30928085-20170211074433\nThread:Clockpuncher/@comment-30928085-20170211074433/@comment-26810597-20170211081846\nThread:Clockpuncher/@comment-30928085-20170211074433/@comment-30928085-20170211082512\nThread:Clockpuncher/@comment-30928085-20170712043809\nThread:Clockpuncher/@comment-30928085-20170712043809/@comment-2155082-20170712192650\nThread:Clockpuncher/@comment-30928085-20170712043809/@comment-26810597-20170712050411\nThread:Clockpuncher/@comment-30928085-20170712043809/@comment-26810597-20170712192207\nThread:Clockpuncher/@comment-30928085-20170712043809/@comment-30928085-20170712174433\nThread:Clockpuncher/@comment-30928085-20170712043809/@comment-30928085-20170712194123\nThread:Clockpuncher/@comment-30928085-20170723145800\nThread:Clockpuncher/@comment-30928085-20170723145800/@comment-2155082-20170723222106\nThread:Clockpuncher/@comment-30928085-20170723145800/@comment-26810597-20170724011920\nThread:Clockpuncher/@comment-30928085-20171008130704\nThread:Clockpuncher/@comment-30928085-20171008130704/@comment-26810597-20171009081026\nThread:Clockpuncher/@comment-30928085-20171111073120\nThread:Clockpuncher/@comment-30928085-20171111073120/@comment-26810597-20171111195446\nThread:Clockpuncher/@comment-30928085-20171111073120/@comment-30928085-20171112020440\nThread:Clockpuncher/@comment-30928085-20171114030500\nThread:Clockpuncher/@comment-30928085-20171114030500/@comment-26810597-20171114031504\nThread:Clockpuncher/@comment-30928085-20171114030500/@comment-26810597-20171115071238\nThread:Clockpuncher/@comment-30928085-20171114030500/@comment-30928085-20171114091642\nThread:Clockpuncher/@comment-30928085-20171123064234\nThread:Clockpuncher/@comment-30928085-20171123064234/@comment-26810597-20171123072054\nThread:Clockpuncher/@comment-30928085-20171123064234/@comment-26810597-20171124221201\nThread:Clockpuncher/@comment-30928085-20171123064234/@comment-30928085-20171123073257\nThread:Clockpuncher/@comment-30928085-20171218064524\nThread:Clockpuncher/@comment-30928085-20171218064524/@comment-26810597-20171218222917\nThread:Clockpuncher/@comment-30928085-20171218064524/@comment-26810597-20171218225310\nThread:Clockpuncher/@comment-30928085-20171218064524/@comment-30928085-20171218224024\nThread:Clockpuncher/@comment-30928085-20171218064524/@comment-30928085-20171218230034\nThread:Clockpuncher/@comment-30928085-20171228213310\nThread:Clockpuncher/@comment-30928085-20171228213310/@comment-26810597-20171228220945\nThread:Clockpuncher/@comment-30928085-20171228213310/@comment-26810597-20171228223500\nThread:Clockpuncher/@comment-30928085-20171228213310/@comment-30928085-20171228221212\nThread:Clockpuncher/@comment-30928085-20171228213310/@comment-30928085-20171228223631\nThread:Clockpuncher/@comment-30928085-20180101094604\nThread:Clockpuncher/@comment-30928085-20180101094604/@comment-26810597-20180102015253\nThread:Clockpuncher/@comment-30928085-20180101094604/@comment-26810597-20180103024344\nThread:Clockpuncher/@comment-30928085-20180101094604/@comment-30928085-20180102232725\nThread:Clockpuncher/@comment-30928085-20180101094604/@comment-30928085-20180105053755\nThread:Clockpuncher/@comment-30928085-20180103122403\nThread:Clockpuncher/@comment-30928085-20180103122403/@comment-26810597-20180103203059\nThread:Clockpuncher/@comment-30928085-20180103122403/@comment-30928085-20180103204226\nThread:Clockpuncher/@comment-30928085-20180111081008\nThread:Clockpuncher/@comment-30928085-20180111081008/@comment-26810597-20180111225551\nThread:Clockpuncher/@comment-30928085-20180111081008/@comment-26810597-20180112112632\nThread:Clockpuncher/@comment-30928085-20180111081008/@comment-30928085-20180112021947\nThread:Clockpuncher/@comment-30928085-20180111081008/@comment-30928085-20180112164522\nThread:Clockpuncher/@comment-30928085-20180130055127\nThread:Clockpuncher/@comment-30928085-20180130055127/@comment-26810597-20180130234928\nThread:Clockpuncher/@comment-30928085-20180130055127/@comment-26810597-20180131212818\nThread:Clockpuncher/@comment-30928085-20180130055127/@comment-26810597-20180201214654\nThread:Clockpuncher/@comment-30928085-20180130055127/@comment-26810597-20180202013208\nThread:Clockpuncher/@comment-30928085-20180130055127/@comment-30928085-20180131054516\nThread:Clockpuncher/@comment-30928085-20180130055127/@comment-30928085-20180201010618\nThread:Clockpuncher/@comment-30928085-20180130055127/@comment-30928085-20180202185218\nThread:Clockpuncher/@comment-30928085-20180205190244\nThread:Clockpuncher/@comment-30928085-20180205190244/@comment-26810597-20180205222708\nThread:Clockpuncher/@comment-30928085-20180209030408\nThread:Clockpuncher/@comment-30928085-20180209030408/@comment-26810597-20180209214838\nThread:Clockpuncher/@comment-30928085-20180209030408/@comment-30928085-20180210185119\nThread:Clockpuncher/@comment-30928085-20180220224234\nThread:Clockpuncher/@comment-30928085-20180220224234/@comment-26009169-20180221010527\nThread:Clockpuncher/@comment-30928085-20180220224234/@comment-26009169-20180221213914\nThread:Clockpuncher/@comment-30928085-20180220224234/@comment-26810597-20180221004318\nThread:Clockpuncher/@comment-30928085-20180220224234/@comment-26810597-20180221013058\nThread:Clockpuncher/@comment-30928085-20180220224234/@comment-30928085-20180221014534\nThread:Clockpuncher/@comment-30928085-20180220224234/@comment-30928085-20180224185649\nThread:Clockpuncher/@comment-30928085-20180402224302\nThread:Clockpuncher/@comment-30928085-20180402224302/@comment-26810597-20180403212345\nThread:Clockpuncher/@comment-30928085-20180402224302/@comment-30928085-20180404050917\nThread:Clockpuncher/@comment-30928085-20180628014255\nThread:Clockpuncher/@comment-30928085-20180628014255/@comment-26810597-20180628020848\nThread:Clockpuncher/@comment-30928085-20180628014255/@comment-30928085-20180628195346\nThread:Clockpuncher/@comment-30928085-20180721062618\nThread:Clockpuncher/@comment-30928085-20180721062618/@comment-26810597-20180722042029\nThread:Clockpuncher/@comment-30928085-20180721062618/@comment-30928085-20180722074822\nThread:Clockpuncher/@comment-30928085-20180823154120\nThread:Clockpuncher/@comment-30928085-20180823154120/@comment-26810597-20180823210127\nThread:Clockpuncher/@comment-30928085-20180823154120/@comment-26810597-20180824210305\nThread:Clockpuncher/@comment-30928085-20180823154120/@comment-30928085-20180824053141\nThread:Clockpuncher/@comment-30928085-20181102104458\nThread:Clockpuncher/@comment-30928085-20181102104458/@comment-26810597-20181102235728\nThread:Clockpuncher/@comment-30928085-20181102104458/@comment-26810597-20181103053643\nThread:Clockpuncher/@comment-30928085-20181102104458/@comment-30928085-20181103013755\nThread:Clockpuncher/@comment-30928085-20181211235416\nThread:Clockpuncher/@comment-30928085-20181211235416/@comment-26810597-20181212021401\nThread:Clockpuncher/@comment-30928085-20181211235416/@comment-26810597-20181212071855\nThread:Clockpuncher/@comment-30928085-20181211235416/@comment-26810597-20181212231137\nThread:Clockpuncher/@comment-30928085-20181211235416/@comment-30928085-20181212061753\nThread:Clockpuncher/@comment-30928085-20181211235416/@comment-30928085-20181212125449\nThread:Clockpuncher/@comment-30928085-20181224164504\nThread:Clockpuncher/@comment-30928085-20181224164504/@comment-26810597-20181224223937\nThread:Clockpuncher/@comment-30928085-20200101062649\nThread:Clockpuncher/@comment-30928085-20200101062649/@comment-26810597-20200102014704\nThread:Clockpuncher/@comment-30928085-20200320130836\nThread:Clockpuncher/@comment-30928085-20200320130836/@comment-26810597-20200321031232\nThread:Clockpuncher/@comment-30928085-20200320130836/@comment-30928085-20200322181620\nThread:Clockpuncher/@comment-30928085-20200514052820\nThread:Clockpuncher/@comment-30928085-20200514052820/@comment-26810597-20200514114445\nThread:Clockpuncher/@comment-30928085-20200518054048\nThread:Clockpuncher/@comment-30928085-20200518054048/@comment-26810597-20200519021612\nThread:Clockpuncher/@comment-30928085-20200518054048/@comment-26810597-20200519235013\nThread:Clockpuncher/@comment-30928085-20200518054048/@comment-30928085-20200519115644\nThread:Clockpuncher/@comment-30928085-20200803092438\nThread:Clockpuncher/@comment-30928085-20200803092438/@comment-26810597-20200804011139\nThread:Clockpuncher/@comment-30928085-20200803092438/@comment-30928085-20200804093538\nThread:Clockpuncher/@comment-3142497-20180210104659\nThread:Clockpuncher/@comment-3142497-20180210104659/@comment-26810597-20180210220039\nThread:Clockpuncher/@comment-32118528-20191023143725\nThread:Clockpuncher/@comment-32118528-20191023143725/@comment-26810597-20191023203512\nThread:Clockpuncher/@comment-33129463-20180609052446\nThread:Clockpuncher/@comment-33129463-20180609052446/@comment-26810597-20180609232755\nThread:Clockpuncher/@comment-33634742-20180413080936\nThread:Clockpuncher/@comment-33634742-20180413080936/@comment-26810597-20180413194504\nThread:Clockpuncher/@comment-33634742-20180413080936/@comment-26810597-20180413201134\nThread:Clockpuncher/@comment-33634742-20180413080936/@comment-33634742-20180413195047\nThread:Clockpuncher/@comment-36156286-20190730155003\nThread:Clockpuncher/@comment-36156286-20190730155003/@comment-26810597-20190730211312\nThread:Clockpuncher/@comment-36156286-20190730155003/@comment-36156286-20190730162507\nThread:Clockpuncher/@comment-36156286-20190730155003/@comment-36713564-20190730162316\nThread:Clockpuncher/@comment-36156286-20190730155003/@comment-36713564-20190730174136\nThread:Clockpuncher/@comment-37665295-20200126193455\nThread:Clockpuncher/@comment-37665295-20200126193455/@comment-26810597-20200126234358\nThread:Clockpuncher/@comment-37665295-20200126193455/@comment-37665295-20200129235743\nThread:Clockpuncher/@comment-39459617-20200129045418\nThread:Clockpuncher/@comment-39596044-20190528111954\nThread:Clockpuncher/@comment-39596044-20190528111954/@comment-26810597-20190529015129\nThread:Clockpuncher/@comment-39596044-20190528111954/@comment-26810597-20190529095524\nThread:Clockpuncher/@comment-39596044-20190528111954/@comment-26810597-20190529222438\nThread:Clockpuncher/@comment-39596044-20190528111954/@comment-26810597-20190530074448\nThread:Clockpuncher/@comment-39596044-20190528111954/@comment-39596044-20190529072321\nThread:Clockpuncher/@comment-39596044-20190528111954/@comment-39596044-20190529170116\nThread:Clockpuncher/@comment-39596044-20190528111954/@comment-39596044-20190530071606\nThread:Clockpuncher/@comment-39682935-20190605045542\nThread:Clockpuncher/@comment-39682935-20190605045542/@comment-26810597-20190605091650\nThread:Clockpuncher/@comment-39682935-20190605045542/@comment-39682935-20190605124500\nThread:Clockpuncher/@comment-3974211-20191127203115\nThread:Clockpuncher/@comment-3974211-20191127203115/@comment-26810597-20191127224511\nThread:Clockpuncher/@comment-3974211-20191127203115/@comment-26810597-20191128043217\nThread:Clockpuncher/@comment-3974211-20191127203115/@comment-26810597-20191128070957\nThread:Clockpuncher/@comment-3974211-20191127203115/@comment-3974211-20191127203234\nThread:Clockpuncher/@comment-3974211-20191127203115/@comment-3974211-20191128040527\nThread:Clockpuncher/@comment-3974211-20191127203115/@comment-3974211-20191128044847\nThread:Clockpuncher/@comment-43623494-20190923232242\nThread:Clockpuncher/@comment-43623494-20190923232242/@comment-26810597-20190924064711\nThread:Clockpuncher/@comment-43623494-20190923232242/@comment-43623494-20190925034855\nThread:Clockpuncher/@comment-44006841-20191003094420\nThread:Clockpuncher/@comment-44006841-20191003094420/@comment-26810597-20191003121120\nThread:Clockpuncher/@comment-44006841-20191003094420/@comment-26810597-20191003123304\nThread:Clockpuncher/@comment-44006841-20191003094420/@comment-44006841-20191003122550\nThread:Clockpuncher/@comment-44006841-20191003094420/@comment-44006841-20191003123902\nThread:Clockpuncher/@comment-44132623-20191014183217\nThread:Clockpuncher/@comment-44132623-20191014183217/@comment-26810597-20191014224418\nThread:Clockpuncher/@comment-44132623-20191014183217/@comment-26810597-20191017214439\nThread:Clockpuncher/@comment-44132623-20191014183217/@comment-30928085-20191018155754\nThread:Clockpuncher/@comment-44132623-20191014183217/@comment-44132623-20191016172025\nThread:Clockpuncher/@comment-44132623-20191014183217/@comment-44132623-20191017120425\nThread:Clockpuncher/@comment-44132623-20191014183217/@comment-44132623-20191021155610\nThread:Clockpuncher/@comment-44904441-20200815101600\nThread:Clockpuncher/@comment-44904441-20200815101600/@comment-26810597-20200816004105\nThread:Clockpuncher/@comment-44904441-20200815101600/@comment-26810597-20200924002934\nThread:Clockpuncher/@comment-44904441-20200815101600/@comment-44904441-20200923071233\nThread:Clockpuncher/@comment-45147451-20200302075504\nThread:Clockpuncher/@comment-45147451-20200302075504/@comment-26810597-20200302075931\nThread:Clockpuncher/@comment-45147451-20200302075504/@comment-26810597-20200302082552\nThread:Clockpuncher/@comment-45147451-20200302075504/@comment-45147451-20200302082221\nThread:Clockpuncher/@comment-45479234-20200414021911\nThread:Clockpuncher/@comment-45479234-20200414021911/@comment-26810597-20200414025910\nThread:Clockpuncher/@comment-459974-20200501183947\nThread:Clockpuncher/@comment-459974-20200501183947/@comment-26810597-20200502024101\nThread:Clockpuncher/@comment-459974-20200501183947/@comment-26810597-20200503042747\nThread:Clockpuncher/@comment-459974-20200501183947/@comment-26810597-20200504030316\nThread:Clockpuncher/@comment-459974-20200501183947/@comment-26810597-20200719235242\nThread:Clockpuncher/@comment-459974-20200501183947/@comment-26810597-20200725012750\nThread:Clockpuncher/@comment-459974-20200501183947/@comment-459974-20200502140448\nThread:Clockpuncher/@comment-459974-20200501183947/@comment-459974-20200503143820\nThread:Clockpuncher/@comment-459974-20200501183947/@comment-459974-20200505012510\nThread:Clockpuncher/@comment-459974-20200501183947/@comment-459974-20200719125120\nThread:Clockpuncher/@comment-459974-20200501183947/@comment-459974-20200724224640\nThread:Clockpuncher/@comment-73.183.40.143-20180811143142\nThread:Clockpuncher/@comment-73.183.40.143-20180811143142/@comment-26810597-20180812025800\nThread:Clovengoof/@comment-32769624-20200604133543\nThread:Cmd jase/@comment-22439-20141011093638\nThread:Cmdr.musketeer/@comment-22439-20160216080426\nThread:CmdrCleonymus/@comment-22439-20150810143300\nThread:CmdrCrob/@comment-22439-20150527233135\nThread:CmdrFlemming/@comment-22439-20150407133205\nThread:CmdrFlemming/@comment-22439-20150407133205/@comment-26287533-20150407154545\nThread:CmdrFlemming/@comment-22439-20150407133205/@comment-77.161.31.147-20150407154422\nThread:CmdrJonah/@comment-22439-20160808051725\nThread:CmdrKantosKan/@comment-22439-20150515220210\nThread:CmdrLard/@comment-22439-20150315182435\nThread:CmdrMajorWood/@comment-32769624-20191026141648\nThread:CmdrNightstorm/@comment-32769624-20181115140741\nThread:CmdrRedfox/@comment-32769624-20180217194753\nThread:CmdrSigon/@comment-22439-20150727091700\nThread:CmdrTictac/@comment-32769624-20180705102502\nThread:Cmdr Double Eagle/@comment-32769624-20180903142748\nThread:Cmdr Double Eagle/@comment-32769624-20190604134410\nThread:Cmdr Foamborn/@comment-22439-20140925204232\nThread:Cmdr Gecko Fosho/@comment-22439-20151021171543\nThread:Cmdr Glassfish/@comment-32769624-20190910073055\nThread:Cmdr Hans/@comment-22439-20141230165938\nThread:Cmdr Hans/@comment-22439-20141230165938/@comment-25942503-20141230172153\nThread:Cmdr Mad Cow/@comment-22439-20141111155721\nThread:Cmdr Myrkur/@comment-32769624-20180520224216\nThread:Cmdr SLAYER/@comment-32769624-20200512205702\nThread:Cmdr Saii/@comment-22439-20170508083050\nThread:Cmdr Sekiou/@comment-22439-20160117135821\nThread:Cmdr Shocken-Orr/@comment-30928085-20170212161859\nThread:Cmdr Shocken-Orr/@comment-30928085-20170212161859/@comment-176.25.8.201-20170212162455\nThread:Cmdr Tooth/@comment-22439-20150705133220\nThread:Cmdr Velvet Remedy/@comment-22439-20160902150906\nThread:Cmdr Void/@comment-22439-20151119230850\nThread:Cmdr byker/@comment-22439-20150702142157\nThread:Cmdr grazza/@comment-22439-20150107131141\nThread:Cmdr ragveil/@comment-22439-20141228204305\nThread:Cmdr unkownkiller/@comment-32769624-20181115134213\nThread:Cmdrmarx/@comment-22439-20150112155301\nThread:Cmdrp/@comment-22439-20160107220439\nThread:Cmdrthefairy/@comment-32769624-20180521025224\nThread:Cmdrtimsk/@comment-32769624-20171119171715\nThread:Cnschulz/@comment-32769624-20170909225000\nThread:Coaster4321/@comment-32769624-20171122202257\nThread:Cod killer90210/@comment-32769624-20190820043108\nThread:Cofefe/@comment-32769624-20190331211255\nThread:CokaCola1/@comment-32769624-20190903200949\nThread:ColonelJakes ZA/@comment-32769624-20180310154307\nThread:Colonia Jesus/@comment-32769624-20190820181409\nThread:CombatSanta/@comment-22439-20160116231926\nThread:ComediNyan/@comment-22439-20160218134936\nThread:Comicsserg/@comment-22439-20150707135532\nThread:CommanderOfACobra/@comment-32769624-20200619082641\nThread:Commander Eddington/@comment-32769624-20180421062904\nThread:Commander Eddington/@comment-5.151.196.248-20180421210845\nThread:Commander KayDee/@comment-32769624-20200228010352\nThread:Commander Pants Man/@comment-22439-20150223105309\nThread:Commander Shit Face/@comment-22439-20151003085354\nThread:Commander Space Caveman/@comment-32769624-20190224182914\nThread:Commander cornstalk/@comment-22439-20150412210813\nThread:CommandoCatt/@comment-32769624-20200106162852\nThread:Compander/@comment-32769624-20190718015530\nThread:Compro01/@comment-22439-20161021235149\nThread:ComradeWinston/@comment-22439-20160227024026\nThread:Conceited1/@comment-32769624-20190616034449\nThread:Console.cc/@comment-22439-20150314090401\nThread:Coobra-fduser/@comment-32769624-20200617202240\nThread:Coobra/@comment-32769624-20200617202240\nThread:Cookie das Monster/@comment-22439-20140905170708\nThread:Cookie das Monster/@comment-22439-20140905170708/@comment-24179636-20140905182657\nThread:Cookie das Monster/@comment-22439-20140905170708/@comment-24897855-20140905172403\nThread:Cookie das Monster/@comment-22439-20140905170708/@comment-24897855-20140905173803\nThread:Copperpug/@comment-32769624-20190508055516\nThread:Copticc/@comment-32769624-20180719121227\nThread:Corelias01/@comment-32769624-20180402122636\nThread:Corpsealot/@comment-22439-20150813130856\nThread:Corrigendum/@comment-22439-20151014174950\nThread:CorvoKAttano/@comment-22439-20151002130554\nThread:CorvoKAttano/@comment-22439-20151002130554/@comment-27034370-20151002191348\nThread:Corvustech/@comment-22439-20151001151854\nThread:CouncilGuy/@comment-32769624-20190831235345\nThread:Coverwatch/@comment-32769624-20190118093438\nThread:Coverwatch/@comment-32769624-20190118093539\nThread:Cowbert/@comment-32769624-20200726221149\nThread:Cpt4grimm/@comment-32769624-20180901212021\nThread:Cpt4grimm/@comment-32769624-20181211213941\nThread:CptGrumbles/@comment-32769624-20190428205121\nThread:CrafterDave/@comment-32769624-20180803204747\nThread:CreepyD/@comment-22439-20141222115412\nThread:Creepyhobo101/@comment-32769624-20180104040833\nThread:Crimsonphoenixca/@comment-22439-20150609025222\nThread:Cristianoferr/@comment-22439-20150307000802\nThread:Crixomix/@comment-22439-20150420211755\nThread:Crolis1/@comment-22439-20160103175416\nThread:CrossCoffee/@comment-22439-20151015200236\nThread:Cryptark/@comment-32769624-20181024203229\nThread:CrystallizedSoul/@comment-22439-20150831064244\nThread:Csucsok/@comment-32769624-20190516095655\nThread:Ctlarson/@comment-22439-20150707071451\nThread:Cubusaddendum/@comment-22439-20151129135417\nThread:CursedUnderwear/@comment-32769624-20190408003323\nThread:CyberAngel82/@comment-22439-20161031003759\nThread:CyberKP/@comment-22439-20150415170813\nThread:CyberTX/@comment-32769624-20200626150453\nThread:Cybershaman/@comment-22439-20160108013429\nThread:Cybrpnkrpg/@comment-22439-20150725174056\nThread:Cybrpnkrpg/@comment-22439-20150725174056/@comment-5579199-20150726011004\nThread:Cyne01/@comment-22439-20150927025035\nThread:Cynteara/@comment-12138097-20150128013609\nThread:Cynteara/@comment-12138097-20150128013609/@comment-26050391-20150128182832\nThread:Cynteara/@comment-22439-20150128044855\nThread:Cypherpunks/@comment-32769624-20200416180049\nThread:Cyrusdexter/@comment-22439-20150318201208\nThread:Cytheria01/@comment-30928085-20190102153157\nThread:Cytheria01/@comment-32769624-20180713111120\nThread:Cyzair/@comment-32769624-20200711042111\nThread:D33rgod/@comment-22439-20150214061121\nThread:DHaze121/@comment-22439-20160121234120\nThread:DJScias/@comment-22439-20150605183515\nThread:DLambeau/@comment-32769624-20180722141945\nThread:DNYI/@comment-1028741-20151125005341\nThread:DNYI/@comment-1028741-20151125005341/@comment-1028741-20151125074442\nThread:DNYI/@comment-1028741-20151125005341/@comment-2155082-20151125042024\nThread:DNYI/@comment-192.136.161.156-20161008021320\nThread:DNYI/@comment-192.136.161.156-20161008021320/@comment-192.136.161.156-20161009021421\nThread:DNYI/@comment-192.136.161.156-20161008021320/@comment-2155082-20161008051118\nThread:DNYI/@comment-192.136.161.156-20161008021320/@comment-2155082-20161009021546\nThread:DNYI/@comment-192.136.161.52-20170525201233\nThread:DNYI/@comment-192.136.161.52-20170525201233/@comment-192.136.161.52-20170526121224\nThread:DNYI/@comment-192.136.161.52-20170525201233/@comment-192.136.161.52-20170526160704\nThread:DNYI/@comment-192.136.161.52-20170525201233/@comment-2155082-20170525231114\nThread:DNYI/@comment-192.136.161.52-20170525201233/@comment-26009169-20170525201701\nThread:DNYI/@comment-192.136.161.52-20170525201233/@comment-26009169-20170525231157\nThread:DNYI/@comment-192.136.161.52-20170525201233/@comment-26009169-20170526135058\nThread:DNYI/@comment-207.87.250.150-20160927175906\nThread:DNYI/@comment-207.87.250.150-20160927175906/@comment-2155082-20160927220022\nThread:DNYI/@comment-207.87.250.150-20160927175906/@comment-2155082-20161002035609\nThread:DNYI/@comment-207.87.250.150-20160927175906/@comment-26403346-20161002031658\nThread:DNYI/@comment-2155082-20160205034217\nThread:DNYI/@comment-2155082-20160205035114\nThread:DNYI/@comment-22439-20150627073852\nThread:DNYI/@comment-25503930-20170531154926\nThread:DNYI/@comment-26009169-20160610133253\nThread:DNYI/@comment-26009169-20160610133253/@comment-2155082-20160610215214\nThread:DNYI/@comment-26009169-20170608222819\nThread:DNYI/@comment-26009169-20170608222819/@comment-2155082-20170610011355\nThread:DNYI/@comment-26391992-20151210085539\nThread:DNYI/@comment-26391992-20151210085539/@comment-2155082-20151211051326\nThread:DNYI/@comment-26391992-20151210085539/@comment-2155082-20151211052309\nThread:DNYI/@comment-26391992-20151210085539/@comment-26009169-20151210104347\nThread:DNYI/@comment-26391992-20151210085539/@comment-26009169-20151211185856\nThread:DNYI/@comment-26391992-20151210085539/@comment-26391992-20151210115456\nThread:DNYI/@comment-26391992-20151210085539/@comment-26391992-20151211113352\nThread:DNYI/@comment-26391992-20151210085539/@comment-27311754-20151211132430\nThread:DNYI/@comment-26419093-20160706213504\nThread:DNYI/@comment-26419093-20160706213504/@comment-2155082-20160707040637\nThread:DNYI/@comment-26419093-20160706213504/@comment-2155082-20160707063803\nThread:DNYI/@comment-26419093-20160706213504/@comment-26419093-20160707052818\nThread:DNYI/@comment-26567647-20181009085312\nThread:DNYI/@comment-26567647-20181009085312/@comment-26567647-20181009112130\nThread:DNYI/@comment-26567647-20181009085312/@comment-30928085-20181009111441\nThread:DNYI/@comment-26810597-20170810212117\nThread:DNYI/@comment-26810597-20170810212117/@comment-26810597-20170826221942\nThread:DNYI/@comment-29746697-20160825065820\nThread:DNYI/@comment-29746697-20160825065820/@comment-2155082-20160826040054\nThread:DNYI/@comment-29746697-20160825065820/@comment-29746697-20160827085547\nThread:DNYI/@comment-29746697-20160825065820/@comment-5959508-20160909084322\nThread:DNYI/@comment-30245159-20161029182921\nThread:DNYI/@comment-30245159-20161029182921/@comment-2155082-20161030041500\nThread:DNYI/@comment-30245159-20161029182921/@comment-30245159-20161029184430\nThread:DNYI/@comment-30245159-20161029182921/@comment-30245159-20161030062438\nThread:DNYI/@comment-30245159-20170111044748\nThread:DNYI/@comment-30245159-20170111044748/@comment-2155082-20170111050659\nThread:DNYI/@comment-30245159-20170111044748/@comment-2155082-20170111052808\nThread:DNYI/@comment-30245159-20170111044748/@comment-2155082-20170112045238\nThread:DNYI/@comment-30245159-20170111044748/@comment-30245159-20170111051745\nThread:DNYI/@comment-30245159-20170111044748/@comment-30245159-20170112003822\nThread:DNYI/@comment-30245159-20170111044748/@comment-30245159-20170112014908\nThread:DNYI/@comment-30245159-20170116010700\nThread:DNYI/@comment-30245159-20170116010700/@comment-2155082-20170118044801\nThread:DNYI/@comment-30245159-20170116010700/@comment-26009169-20170119195344\nThread:DNYI/@comment-30245159-20170427001814\nThread:DNYI/@comment-30245159-20170427001814/@comment-2155082-20170514222654\nThread:DNYI/@comment-30245159-20170427001814/@comment-2155082-20170514222814\nThread:DNYI/@comment-30245159-20170427001814/@comment-2155082-20170603002017\nThread:DNYI/@comment-30245159-20170427001814/@comment-26009169-20170514222728\nThread:DNYI/@comment-30245159-20170427001814/@comment-26810597-20170602184928\nThread:DNYI/@comment-30928085-20170212123304\nThread:DNYI/@comment-30928085-20170212123304/@comment-2155082-20170212222206\nThread:DNYI/@comment-30928085-20170212123304/@comment-30928085-20170212223337\nThread:DNYI/@comment-30928085-20170305211128\nThread:DNYI/@comment-30928085-20170305211128/@comment-2155082-20170306011021\nThread:DNYI/@comment-30928085-20170305211128/@comment-30928085-20170306181207\nThread:DNYI/@comment-30928085-20170306220505\nThread:DNYI/@comment-30928085-20170306220505/@comment-2155082-20170306220730\nThread:DNYI/@comment-30928085-20170306220505/@comment-2155082-20170306221519\nThread:DNYI/@comment-30928085-20170306220505/@comment-26009169-20170306223048\nThread:DNYI/@comment-30928085-20170306220505/@comment-30928085-20170306220915\nThread:DNYI/@comment-30928085-20170306220505/@comment-30928085-20170306221818\nThread:DNYI/@comment-30928085-20170321180227\nThread:DNYI/@comment-30928085-20170321180227/@comment-2155082-20170321210242\nThread:DNYI/@comment-30928085-20170321180227/@comment-30928085-20170321221241\nThread:DNYI/@comment-30928085-20170625080250\nThread:DNYI/@comment-30928085-20170625080250/@comment-2155082-20170625231105\nThread:DNYI/@comment-30928085-20170625080250/@comment-26009169-20170625195101\nThread:DNYI/@comment-30928085-20170625080250/@comment-30928085-20170626195240\nThread:DNYI/@comment-30928085-20170628071803\nThread:DNYI/@comment-30928085-20170628071803/@comment-2155082-20170628202421\nThread:DNYI/@comment-30928085-20170628071803/@comment-30928085-20170628202746\nThread:DNYI/@comment-31094186-20171031222217\nThread:DNYI/@comment-31094186-20171031222217/@comment-26810597-20171102043127\nThread:DNYI/@comment-31094186-20171031222217/@comment-31094186-20171102213128\nThread:DNYI/@comment-31116285-20170207013358\nThread:DNYI/@comment-31116285-20170207013358/@comment-2155082-20170207014124\nThread:DNYI/@comment-31116285-20170207013358/@comment-2155082-20170207014241\nThread:DNYI/@comment-31116285-20170207013358/@comment-31116285-20170207014120\nThread:DNYI/@comment-31480615-20170309093902\nThread:DNYI/@comment-31480615-20170309093902/@comment-2155082-20170309210032\nThread:DNYI/@comment-31480615-20170309093902/@comment-26009169-20170309234347\nThread:DNYI/@comment-31480615-20170309093902/@comment-31480615-20170310083113\nThread:DNYI/@comment-32577554-20170715161719\nThread:DNYI/@comment-32577554-20170715161719/@comment-2155082-20170715213552\nThread:DNYI/@comment-33634742-20171114142341\nThread:DNYI/@comment-4638275-20170216165220\nThread:DNYI/@comment-4638275-20170216165220/@comment-26009169-20170216191104\nThread:DNYI/@comment-4638275-20170216165220/@comment-4638275-20170216192219\nThread:DNYI/@comment-82.145.220.53-20161207154429\nThread:DNYI/@comment-82.145.220.53-20161207154429/@comment-2155082-20161207210501\nThread:DNYI/@comment-82.145.220.53-20161207154429/@comment-92.80.169.88-20161207160605\nThread:DNYI/@comment-82.145.220.53-20161207154429/@comment-92.80.169.88-20161207160744\nThread:DRxArchangelxDR/@comment-22439-20160717022739\nThread:Daddychew/@comment-22439-20160709093454\nThread:Daemoniak/@comment-32769624-20181212181827\nThread:Daenuisvar/@comment-32769624-20190709172005\nThread:Daftpunk150466/@comment-22439-20160501125333\nThread:Daftpunk150466/@comment-22439-20160501125333/@comment-26231785-20160613015405\nThread:Dagerun/@comment-22439-20151004203235\nThread:Dagnarius/@comment-22439-20150313003645\nThread:Dagoonx/@comment-22439-20140815051245\nThread:Daishi424/@comment-22439-20160301161524\nThread:Dak47922/@comment-22439-20151023040637\nThread:Dan-Erik/@comment-22439-20141002113446\nThread:DanL 216/@comment-22439-20150426134925\nThread:Dangerousbuzz934/@comment-22439-20150605030613\nThread:DanielKuk/@comment-32769624-20200529183823\nThread:DanielZwolf/@comment-32769624-20200625130409\nThread:Dankuk/@comment-32769624-20190604154653\nThread:Dapwnanator/@comment-22439-20160324233220\nThread:Darck vador/@comment-22439-20170303194245\nThread:DarkDanger/@comment-22439-20131219112051\nThread:DarkLive/@comment-22439-20150820195213\nThread:DarkSlayerKnight/@comment-32769624-20180103181413\nThread:DarkWidow/@comment-22439-20150506130117\nThread:Darkkillex/@comment-22439-20150123053914\nThread:Darkrai1276/@comment-32769624-20180316183734\nThread:Darrenjohngrey/@comment-22439-20140605114335\nThread:DarthWall275/@comment-32769624-20200503171514\nThread:DarthWall275/@comment-44180665-20200511153000\nThread:DarthWonko/@comment-32769624-20190428203826\nThread:Darth Raijiin/@comment-22439-20170108182754\nThread:Darth Snowie/@comment-32769624-20180715200732\nThread:Daspisch/@comment-22439-20150108152633\nThread:Datan0de/@comment-32769624-20200528003210\nThread:DaveLister22/@comment-22439-20160630154011\nThread:Daverex1992/@comment-32769624-20181118214141\nThread:David Kieser/@comment-32769624-20190507131035\nThread:Davidl rt06/@comment-22439-20150516013408\nThread:Davinchavin/@comment-22439-20160113221620\nThread:Dazinablender/@comment-32769624-20200328175927\nThread:Dbeachy11/@comment-22439-20160906011910\nThread:Dcseal/@comment-32769624-20180831022241\nThread:DeMangler/@comment-22439-20130105204432\nThread:DeRanGed De/@comment-22439-20160220135745\nThread:DeRanGed De/@comment-22439-20160220135745/@comment-27165814-20160220143047\nThread:Deakie/@comment-32769624-20190103024715\nThread:Deakie/@comment-32769624-20190103030054\nThread:DearKingSombra/@comment-32769624-20190301162351\nThread:Deathparcito/@comment-32769624-20190124222100\nThread:Dedblu/@comment-22439-20151218042204\nThread:Defender6213/@comment-32769624-20171108043034\nThread:DefenderX1/@comment-22439-20150418143207\nThread:Defranks/@comment-32769624-20180114000341\nThread:Deidara1113/@comment-32769624-20181219090050\nThread:Deidara1113/@comment-32769624-20181219090413\nThread:Deimos2k20/@comment-32769624-20200214230409\nThread:DejayRezme/@comment-22439-20141201231748\nThread:DeltaEchoLima/@comment-32769624-20200723211537\nThread:DemiserofD/@comment-32769624-20200505203851\nThread:Denishowe/@comment-22439-20150910075355\nThread:Denisjackman/@comment-22439-20150419075222\nThread:Denisjackman/@comment-22439-20150419075222/@comment-648662-20150420141611\nThread:DerFlob/@comment-32769624-20200913165236\nThread:Derthek/@comment-22439-20160405065555\nThread:Desatio/@comment-32769624-20181229234816\nThread:Desatio/@comment-32769624-20181229235136\nThread:Descrasnezul/@comment-22439-20141221091022\nThread:Destikahr1/@comment-22439-20150325232448\nThread:Detlas Legacy/@comment-32769624-20200415132243\nThread:Deusjensen/@comment-22439-20141126013026\nThread:DevaKitty/@comment-32769624-20190721095253\nThread:Devantejah/@comment-22439-20150924063901\nThread:Deviyue/@comment-22439-20160108200443\nThread:Deviyue/@comment-22439-20160108200443/@comment-26391992-20160111113202\nThread:Deviyue/@comment-22439-20160108200443/@comment-27573035-20160111023426\nThread:Deviyue/@comment-22439-20160108200443/@comment-27573035-20160112003546\nThread:DexLuther/@comment-32769624-20180701071823\nThread:DexSK/@comment-32769624-20200916175442\nThread:Dexcuracy/@comment-32769624-20190107235432\nThread:Dfault988998/@comment-22439-20150506111511\nThread:Dguzmanalk/@comment-32769624-20171110030805\nThread:Dha12oks/@comment-32769624-20181224223458\nThread:Diabetic Doggo/@comment-32769624-20171105223615\nThread:Diamondfast/@comment-32769624-20190114203803\nThread:Diamondfast/@comment-32769624-20190114204357\nThread:Dicando220833BR/@comment-176.241.72.203-20180824014638\nThread:Dicando220833BR/@comment-2A02:908:2F33:5320:B118:244D:B064:7DC0-20171010151009\nThread:Dicando220833BR/@comment-2A02:908:2F33:5320:B118:244D:B064:7DC0-20171010151009/@comment-2A02:908:2F33:5320:B118:244D:B064:7DC0-20171010152353\nThread:Dicando220833BR/@comment-2A02:908:2F33:5320:B118:244D:B064:7DC0-20171010151009/@comment-33319277-20171010151220\nThread:Dicando220833BR/@comment-30643772-20171010151849\nThread:Diegovilar/@comment-22439-20150111073652\nThread:Digistruct0r/@comment-107.153.255.3-20160203190700\nThread:Digistruct0r/@comment-107.153.255.3-20160203190700/@comment-26391992-20160203200249\nThread:Digistruct0r/@comment-107.153.255.3-20160203190700/@comment-26391992-20160215095519\nThread:Digistruct0r/@comment-107.153.255.3-20160203190700/@comment-95.90.186.102-20160204055436\nThread:Digistruct0r/@comment-22439-20150512053627\nThread:Digistruct0r/@comment-26241166-20151123212654\nThread:Digistruct0r/@comment-26241166-20151123212654/@comment-26241166-20151124092133\nThread:Digistruct0r/@comment-26241166-20151123212654/@comment-26391992-20151124063545\nThread:Digistruct0r/@comment-26241166-20151124120128\nThread:Digistruct0r/@comment-26241166-20151124120128/@comment-26241166-20151124190207\nThread:Digistruct0r/@comment-26241166-20151124120128/@comment-26391992-20151124190028\nThread:Digistruct0r/@comment-26241166-20151125185800\nThread:Digistruct0r/@comment-27336833-20151216114453\nThread:Digistruct0r/@comment-27336833-20151216114453/@comment-26391992-20151216171033\nThread:Digistruct0r/@comment-27336833-20151216114453/@comment-27336833-20151217060134\nThread:Digletteer/@comment-2155082-20150719211141\nThread:Digletteer/@comment-22439-20150719030424\nThread:Digletteer/@comment-22439-20150719030424/@comment-26748640-20150719030519\nThread:Digletteer/@comment-4555143-20150719165802\nThread:Dikivan2000/@comment-32769624-20190726221051\nThread:Dimmu1313/@comment-22439-20160723232918\nThread:Dinee/@comment-32769624-20180202223756\nThread:Direwolf2496/@comment-32769624-20181110121224\nThread:Disulfiram/@comment-22439-20160821215628\nThread:Djadjok/@comment-22439-20160307132058\nThread:Djdahav/@comment-22439-20160608002535\nThread:Dmitri Korolev/@comment-32769624-20181223185225\nThread:Dmitri Korolev/@comment-32769624-20181224171407\nThread:Dneif/@comment-22439-20150407060257\nThread:Dniwe koreec/@comment-32769624-20200624111036\nThread:DobrijZmej/@comment-1250011-20150117185449\nThread:DobrijZmej/@comment-22439-20130215145225\nThread:DoctorEvil CZ/@comment-22439-20150417221422\nThread:Doctor Brohoof/@comment-22439-20160311170708\nThread:Doctor Demento/@comment-22439-20141229024305\nThread:Doctor Introvertsius/@comment-32769624-20191013201504\nThread:DofD/@comment-22439-20140905204329\nThread:Doktor Smyth/@comment-22439-20151003172323\nThread:Doktor Smyth/@comment-22439-20151003172323/@comment-27041694-20151003173209\nThread:Dombal/@comment-22439-20150612142041\nThread:DominateEye/@comment-32769624-20200814031817\nThread:Don Alphonso/@comment-22439-20150408235425\nThread:Dorfski/@comment-22439-20141218234435\nThread:Dr. Clayton Forrestor/@comment-1156746-20140417054512\nThread:Dr. Clayton Forrestor/@comment-1156746-20140417054512/@comment-1156746-20140417081523\nThread:Dr. Clayton Forrestor/@comment-22439-20140417054254\nThread:DrBarbar/@comment-22439-20150218143714\nThread:DrKayRoss/@comment-32769624-20181120105420\nThread:DrProtuberanec/@comment-32769624-20180317174438\nThread:Dr Pillman/@comment-32769624-20190801123215\nThread:Dr Pillman/@comment-32769624-20190801123215/@comment-43354983-20190801123612\nThread:Draco25240/@comment-22439-20160129222228\nThread:Draco84oz/@comment-22439-20150312054423\nThread:Draconigena16/@comment-22439-20150726050750\nThread:Dragon Arcadia/@comment-22439-20150317160648\nThread:Dragonswagin/@comment-32769624-20200226051109\nThread:Dragoon346/@comment-32769624-20181213222815\nThread:Drakhor/@comment-22439-20141203104041\nThread:Dratir-fduser/@comment-22439-20160306214046\nThread:Dratir/@comment-22439-20160306214046\nThread:Drax658/@comment-32769624-20200721055212\nThread:Drayath/@comment-22439-20150608092201\nThread:Drayviss/@comment-22439-20150110023700\nThread:Drayviss/@comment-22439-20150110023700/@comment-24179636-20150110194532\nThread:Drayviss/@comment-22439-20150110023700/@comment-25990300-20150110164443\nThread:Drbobo/@comment-32769624-20190802061358\nThread:Dread-Fox/@comment-22439-20151213063826\nThread:Dread2k/@comment-22439-20140826111927\nThread:DreadZed/@comment-22439-20150916215330\nThread:Dreadmetis/@comment-22439-20141003121740\nThread:Dreadmetis/@comment-22439-20141003121740/@comment-24179636-20141004140634\nThread:Dreadmetis/@comment-22439-20141003121740/@comment-9838047-20141003123704\nThread:Dreadric/@comment-22439-20150326054116\nThread:Drenidor/@comment-32769624-20200814005537\nThread:Drewj1300/@comment-32769624-20200721123714\nThread:Drewwagar/@comment-22439-20130113180714\nThread:Drewwagar/@comment-30928085-20170214123900\nThread:Driku/@comment-22439-20160501145025\nThread:Droid8Apple/@comment-22439-20150413074355\nThread:Droxy/@comment-22439-20140816214925\nThread:Drscandalous/@comment-22439-20160115141848\nThread:Dsnt02518/@comment-32769624-20200411092508\nThread:Dukeofbattle/@comment-22439-20160412073430\nThread:Dunrankin/@comment-32769624-20180315034302\nThread:Dusk118/@comment-32769624-20190110050212\nThread:Dusk118/@comment-32769624-20190110050325\nThread:Dust Driver/@comment-22439-20160407210131\nThread:DwnRghtBlak/@comment-22439-20160126000722\nThread:Dylan Coates/@comment-22439-20170126213027\nThread:Dyotan/@comment-22439-20150623045642\nThread:Dyppo/@comment-22439-20160112183800\nThread:Dyse Flux/@comment-32769624-20190227175148\nThread:Dzarafata/@comment-32769624-20180308030343\nThread:Dzarafata/@comment-32769624-20190129012457\nThread:EDPirate/@comment-12138097-20150227201253\nThread:EDPirate/@comment-22439-20150226110040\nThread:EDSM/@comment-32769624-20180327085520\nThread:ELITEUnkownkiller/@comment-32769624-20181115104415\nThread:ENVR/@comment-22439-20150215072030\nThread:EPiK DR0PPER/@comment-32769624-20180408134305\nThread:ETSDRAGON/@comment-22439-20160624155452\nThread:EboClintontabi/@comment-32769624-20190115015628\nThread:EboClintontabi/@comment-32769624-20190115015628/@comment-38174638-20190115020325\nThread:EboClintontabi/@comment-32769624-20190115020326\nThread:EboClintontabi/@comment-32769624-20190115020326/@comment-38174638-20190115020653\nThread:EboClintontabi/@comment-38174638-20190115020448\nThread:Echo890/@comment-22439-20160413215613\nThread:EchoBladeMC/@comment-32769624-20190719041039\nThread:Eckee/@comment-32769624-20180117161317\nThread:Eddie21k/@comment-32769624-20171023155419\nThread:Eddpayne/@comment-32769624-20180310225829\nThread:Eddyfb/@comment-22439-20150213171725\nThread:Edgreaves/@comment-32769624-20200113190946\nThread:EdoLevy/@comment-32769624-20200628054255\nThread:EekaDroid/@comment-32769624-20200520222455\nThread:Eeryyxx23/@comment-32769624-20180216130022\nThread:Effingbrian/@comment-32769624-20190224174216\nThread:Egovich/@comment-32769624-20200408062437\nThread:EgrAndrew/@comment-32769624-20200129190446\nThread:EhTAmiD/@comment-32769624-20180917132054\nThread:Ei8htx/@comment-32769624-20200409181030\nThread:EightHook37/@comment-22439-20170111004151\nThread:Eisfunke/@comment-22439-20150720132518\nThread:Ekholbrook/@comment-22439-20140413005652\nThread:Elbarto331/@comment-22439-20160324185711\nThread:Electricnacho/@comment-32769624-20191211010022\nThread:Elfener99/@comment-32769624-20200408135022\nThread:Elite:reporter/@comment-32769624-20180316221416\nThread:EliteAdvisor/@comment-22439-20140826010420\nThread:EliteTheLand/@comment-12138097-20141222003642\nThread:EliteTheLand/@comment-22439-20130623185323\nThread:EliteWikiMan/@comment-32769624-20181104171622\nThread:Elite Credits/@comment-22439-20160921214130\nThread:Elite fan 73/@comment-32769624-20200408225659\nThread:Elitewikia/@comment-22439-20160420152440\nThread:ElliottB1/@comment-22439-20151215153802\nThread:Elterchet/@comment-22439-20160524003809\nThread:Elvisdumbledore/@comment-32769624-20180829071545\nThread:Emailformygames/@comment-1250011-20150114154400\nThread:Emailformygames/@comment-1250011-20150114154400/@comment-12138097-20150115020558\nThread:Emailformygames/@comment-1250011-20150114154400/@comment-12138097-20150115040607\nThread:Emailformygames/@comment-1250011-20150114154400/@comment-12138097-20150115053408\nThread:Emailformygames/@comment-1250011-20150114154400/@comment-1250011-20150115032724\nThread:Emailformygames/@comment-1250011-20150114154400/@comment-1250011-20150115042754\nThread:Emailformygames/@comment-1250011-20150206152459\nThread:Emailformygames/@comment-1250011-20150206152459/@comment-12138097-20150225230036\nThread:Emailformygames/@comment-186.204.69.227-20150108211324\nThread:Emailformygames/@comment-186.204.69.227-20150108211324/@comment-12138097-20150108220124\nThread:Emailformygames/@comment-186.204.69.227-20150108211324/@comment-201.52.196.217-20150114014147\nThread:Emailformygames/@comment-186.204.69.227-20150108211324/@comment-201.52.196.217-20150117184345\nThread:Emailformygames/@comment-208.107.223.159-20150422072637\nThread:Emailformygames/@comment-210.216.57.205-20141120022407\nThread:Emailformygames/@comment-210.216.57.205-20141120022407/@comment-12138097-20141120022654\nThread:Emailformygames/@comment-22439-20141029204927\nThread:Emailformygames/@comment-25466501-20150113011415\nThread:Emailformygames/@comment-25466501-20150113011415/@comment-12138097-20150113013621\nThread:Emailformygames/@comment-25787591-20141205014236\nThread:Emailformygames/@comment-25787591-20141205014236/@comment-12138097-20141205021502\nThread:Emailformygames/@comment-25787591-20141205014236/@comment-25787591-20141205023237\nThread:Emailformygames/@comment-25787591-20141206032350\nThread:Emailformygames/@comment-25787591-20141206032350/@comment-12138097-20141206060904\nThread:Emailformygames/@comment-25787591-20141206032350/@comment-12138097-20141229063807\nThread:Emailformygames/@comment-25787591-20141206032350/@comment-12138097-20141229071504\nThread:Emailformygames/@comment-25787591-20141206032350/@comment-25787591-20141206151539\nThread:Emailformygames/@comment-25787591-20141206032350/@comment-25936801-20141229035959\nThread:Emailformygames/@comment-25787591-20141206032350/@comment-25936801-20141229070150\nThread:Emailformygames/@comment-25787591-20141207013920\nThread:Emailformygames/@comment-25787591-20141207013920/@comment-12138097-20141207015107\nThread:Emailformygames/@comment-25787591-20141207013920/@comment-12138097-20141207212710\nThread:Emailformygames/@comment-25787591-20141207013920/@comment-12138097-20141207213059\nThread:Emailformygames/@comment-25787591-20141207013920/@comment-25787591-20141207203857\nThread:Emailformygames/@comment-25841601-20141209222054\nThread:Emailformygames/@comment-25841601-20141209222054/@comment-12138097-20141210001307\nThread:Emailformygames/@comment-25859526-20150226171511\nThread:Emailformygames/@comment-26003753-20150114021038\nThread:Emailformygames/@comment-26003753-20150114021038/@comment-12138097-20150114021601\nThread:Emailformygames/@comment-26003753-20150114021038/@comment-12138097-20150114023504\nThread:Emailformygames/@comment-26003753-20150114021038/@comment-26003753-20150114022602\nThread:Emailformygames/@comment-26003753-20150114021038/@comment-26003753-20150114065811\nThread:Emailformygames/@comment-26009169-20150122155319\nThread:Emailformygames/@comment-26009169-20150122155319/@comment-12138097-20150123000441\nThread:Emailformygames/@comment-26009169-20150201143059\nThread:Emailformygames/@comment-26009169-20150201143059/@comment-12138097-20150201203952\nThread:Emailformygames/@comment-26009169-20150201143059/@comment-12138097-20150201221146\nThread:Emailformygames/@comment-26009169-20150201143059/@comment-12138097-20150201223115\nThread:Emailformygames/@comment-26009169-20150201143059/@comment-26009169-20150201214958\nThread:Emailformygames/@comment-26009169-20150201143059/@comment-26009169-20150201222221\nThread:Emailformygames/@comment-26009169-20150201143059/@comment-26009169-20150203152040\nThread:Emailformygames/@comment-26009169-20150304135639\nThread:Emailformygames/@comment-26009169-20150304135639/@comment-12138097-20150304200233\nThread:Emailformygames/@comment-26009169-20150310001053\nThread:Emailformygames/@comment-26009169-20150310001053/@comment-12138097-20150310014208\nThread:Emailformygames/@comment-26009169-20150310001053/@comment-26009169-20150310014529\nThread:Emailformygames/@comment-26009169-20150312225056\nThread:Emailformygames/@comment-26009169-20150312225056/@comment-12138097-20150312225810\nThread:Emailformygames/@comment-26009169-20150312225056/@comment-26009169-20150312231427\nThread:Emailformygames/@comment-26009169-20150406153014\nThread:Emailformygames/@comment-26009169-20150406153014/@comment-12138097-20150407070140\nThread:Emailformygames/@comment-26009169-20150406153014/@comment-26009169-20150407114744\nThread:Emailformygames/@comment-26009169-20150413183641\nThread:Emailformygames/@comment-26009169-20150413183641/@comment-12138097-20150413191340\nThread:Emailformygames/@comment-26009169-20150413183641/@comment-12138097-20150413223816\nThread:Emailformygames/@comment-26009169-20150413183641/@comment-12138097-20150413232859\nThread:Emailformygames/@comment-26009169-20150413183641/@comment-26009169-20150413191928\nThread:Emailformygames/@comment-26009169-20150413183641/@comment-26009169-20150413233038\nThread:Emailformygames/@comment-26009169-20150622164847\nThread:Emailformygames/@comment-26009169-20150622164847/@comment-12138097-20150705214716\nThread:Emailformygames/@comment-26009169-20150622164847/@comment-2155082-20150706034545\nThread:Emailformygames/@comment-26009169-20150626023949\nThread:Emailformygames/@comment-26009169-20150626023949/@comment-12138097-20150705214205\nThread:Emailformygames/@comment-26009169-20150626023949/@comment-26009169-20150705214320\nThread:Emailformygames/@comment-26033489-20150316003320\nThread:Emailformygames/@comment-26033489-20150316003320/@comment-12138097-20150316010306\nThread:Emailformygames/@comment-27336833-20151209115348\nThread:Emailformygames/@comment-377043-20150131145005\nThread:Emailformygames/@comment-377043-20150131145005/@comment-12138097-20150131210524\nThread:Emailformygames/@comment-377043-20150131145005/@comment-12138097-20150131231253\nThread:Emailformygames/@comment-377043-20150131145005/@comment-1250011-20150131162327\nThread:Emailformygames/@comment-377043-20150131145005/@comment-377043-20150131222448\nThread:Emailformygames/@comment-4968814-20150106172111\nThread:Emailformygames/@comment-4968814-20150106172111/@comment-12138097-20150106200452\nThread:Emailformygames/@comment-4968814-20150106172111/@comment-4968814-20150107002403\nThread:Emailformygames/@comment-6301973-20141220101126\nThread:Emailformygames/@comment-6301973-20141220101126/@comment-12138097-20141220111028\nThread:Emailformygames/@comment-8915030-20150112180133\nThread:Emailformygames/@comment-8915030-20150112180133/@comment-12138097-20150112210722\nThread:Emailformygames/@comment-8915030-20150112180133/@comment-1250011-20150112200922\nThread:Emailformygames/@comment-8915030-20150112180133/@comment-1250011-20150113173447\nThread:Emailformygames/@comment-8915030-20150112180133/@comment-24179636-20150113083354\nThread:Emhilradim/@comment-22439-20151215223043\nThread:Emptylord/@comment-26009169-20190830094235\nThread:Emptylord/@comment-26009169-20190830094235/@comment-3974211-20190830094627\nThread:EnigmaNL/@comment-22439-20140801235419\nThread:Entdude/@comment-22439-20150412145401\nThread:Enweelh/@comment-32769624-20190101180033\nThread:Enweelh/@comment-32769624-20190101180338\nThread:Eoraptorur/@comment-32769624-20181030201437\nThread:Ephymis/@comment-32769624-20200201172515\nThread:EpicMhyre/@comment-22439-20160206171438\nThread:EpicnessUnleashed/@comment-22439-20150306202455\nThread:Epoch365/@comment-22439-20141230025541\nThread:Eric L8s/@comment-22439-20151216133452\nThread:Erikrpm/@comment-22439-20140316100601\nThread:Erlaed/@comment-32769624-20200807031803\nThread:Erwgd/@comment-32769624-20190713213643\nThread:Esesci/@comment-32769624-20190203224950\nThread:Esk 7/@comment-32769624-20190128012338\nThread:EssentialNPC/@comment-32769624-20180517064713\nThread:EstrelaDoTipoF48/@comment-32769624-20190802020439\nThread:Ethribin/@comment-32769624-20180719131031\nThread:Ethzero77/@comment-32769624-20180722194516\nThread:Euan The Goid Killer/@comment-32769624-20190306132653\nThread:Evelas/@comment-32769624-20180104200954\nThread:Evittalex/@comment-22439-20150326192227\nThread:Ewalden/@comment-32769624-20200802201420\nThread:Ewex/@comment-32769624-20200502004752\nThread:ExTenor/@comment-22439-20160814002341\nThread:Exaemo/@comment-22439-20150222032211\nThread:Excalibuh/@comment-32769624-20180628144430\nThread:Exigeous/@comment-32769624-20180404043523\nThread:Exitwound 45/@comment-32769624-20200515234732\nThread:Exodus83/@comment-22439-20150511034227\nThread:Exofi/@comment-2155082-20170107222526\nThread:Exofi/@comment-22439-20151122173535\nThread:Exofi/@comment-22439-20151122173535/@comment-26540774-20151122210536\nThread:Exofi/@comment-22439-20151122173535/@comment-26540774-20151124100936\nThread:Exofi/@comment-22439-20151122173535/@comment-5959508-20151124095316\nThread:Exofi/@comment-22439-20151122173535/@comment-5959508-20151124141418\nThread:Externalpower43/@comment-22439-20151204025249\nThread:Extremofire/@comment-32769624-20181026180732\nThread:Ezri778/@comment-22439-20160328154541\nThread:FEUERBACH/@comment-32769624-20180423155055\nThread:FLUX2226/@comment-32769624-20200921190342\nThread:FR0D0sam/@comment-32769624-20180103162014\nThread:Facehurt/@comment-32769624-20200801200323\nThread:Faceman667/@comment-22439-20141221141221\nThread:FailRail hero/@comment-22439-20160121174931\nThread:Falita/@comment-22439-20151114205412\nThread:FallShortOfTheTruth/@comment-32769624-20200429045623\nThread:Famba/@comment-22439-20141229204556\nThread:Fanghur Rahl/@comment-32769624-20170908001832\nThread:Fapiko/@comment-22439-20150119071332\nThread:Farcaller/@comment-32769624-20200813133311\nThread:Farin Cross/@comment-22439-20160718223938\nThread:Faroutmat/@comment-32769624-20200413213304\nThread:Fat chucky/@comment-22439-20160106010832\nThread:Fdevareliars/@comment-32769624-20200823095824\nThread:Fegazeus/@comment-22439-20150120093004\nThread:Feiercrack/@comment-32769624-20181113012951\nThread:FelizR/@comment-32769624-20180728211701\nThread:Fendalton/@comment-22439-20151110230422\nThread:Fernandogod12/@comment-32769624-20191024123334\nThread:Ferret141/@comment-22439-20150110034843\nThread:Ferret Bueller/@comment-22439-20151129203412\nThread:FerricFoxide/@comment-32769624-20200220060138\nThread:Ferritt/@comment-22439-20140813003648\nThread:Ffuschini/@comment-22439-20160301232638\nThread:FireInABottle5/@comment-32769624-20200624000444\nThread:FireZenesis/@comment-22439-20160505172239\nThread:FishTank/@comment-22439-20150522234303\nThread:Fixxel/@comment-22439-20160530163519\nThread:Flaicher/@comment-22439-20150711102125\nThread:Flaicher/@comment-32769624-20181214224447\nThread:FlashDeviant/@comment-32769624-20190512132332\nThread:Fleecer/@comment-22439-20160908224313\nThread:Flerble/@comment-32769624-20200929155507\nThread:Fletcher32/@comment-32769624-20200612165702\nThread:FlightDeck/@comment-2155082-20170109040718\nThread:FlightDeck/@comment-2155082-20170109040718/@comment-30245159-20170110012317\nThread:FlightDeck/@comment-22439-20161016154958\nThread:FlightDeck/@comment-22439-20161016154958/@comment-30245159-20161029183141\nThread:FlightDeck/@comment-22439-20161016154958/@comment-30245159-20161029183613\nThread:FlightDeck/@comment-22439-20161016154958/@comment-30245159-20161029183709\nThread:FlightDeck/@comment-30643772-20170115195022\nThread:FlightDeck/@comment-30643772-20170115195022/@comment-30245159-20170115204115\nThread:FlightDeck/@comment-30643772-20170115195022/@comment-30245159-20170116010559\nThread:FlightDeck/@comment-30928085-20170526164054\nThread:FlightDeck/@comment-30928085-20170526164054/@comment-2155082-20170526224418\nThread:FlightDeck/@comment-30928085-20170526164054/@comment-30245159-20170526220013\nThread:FlightDeck/@comment-30928085-20170526164054/@comment-30245159-20170526221354\nThread:FlightDeck/@comment-30928085-20170526164054/@comment-30245159-20170526222155\nThread:FlightDeck/@comment-30928085-20170526164054/@comment-30245159-20170819020552\nThread:FlightDeck/@comment-30928085-20170526164054/@comment-30928085-20170526231519\nThread:FlightDeck/@comment-30928085-20171112185721\nThread:FlightDeck/@comment-30928085-20171112185721/@comment-30245159-20171113010828\nThread:FlightDeck/@comment-30928085-20171112185721/@comment-30928085-20171113014903\nThread:FlightDeck/@comment-33634742-20171114132743\nThread:FlightDeck/@comment-33634742-20171114132743/@comment-30245159-20171114144029\nThread:FlightDeck/@comment-33634742-20171114132743/@comment-33634742-20171114150629\nThread:Flutterhawk/@comment-22439-20151202162350\nThread:Flyingtiger172/@comment-32769624-20200913164252\nThread:Fokkusu88/@comment-32769624-20181214182228\nThread:Fokkusu88/@comment-32769624-20181214182316\nThread:Foldlet/@comment-32769624-20190521025944\nThread:Forbiddenlake/@comment-32769624-20200724234435\nThread:Forcesinger/@comment-32769624-20200922175740\nThread:Forgottenlord/@comment-22439-20150719001525\nThread:Forkinator/@comment-32769624-20190118124333\nThread:Forkinator/@comment-32769624-20190118124450\nThread:Foundryguy/@comment-22439-20150523040823\nThread:Fozza/@comment-5959508-20130514164340\nThread:Fraggle/@comment-22439-20160118070812\nThread:Freakishwizard/@comment-32769624-20171128034434\nThread:Freedom4556/@comment-22439-20160210164300\nThread:Freelancer105/@comment-22439-20170510105625\nThread:Freetrack/@comment-32769624-20200905145100\nThread:Frexie/@comment-22439-20150301094527\nThread:Frogben/@comment-22439-20150722191850\nThread:Fronink1980/@comment-4403388-20170816104910\nThread:FrrVegeta/@comment-32769624-20191123153856\nThread:Frungi/@comment-22439-20150420160512\nThread:Fuhsaz/@comment-32769624-20190613211106\nThread:Fw190a8/@comment-22439-20140623164548\nThread:Fyah88/@comment-22439-20150420132955\nThread:GALDART/@comment-32769624-20180704022556\nThread:GEONEgaming/@comment-22439-20150128165121\nThread:GMoney132/@comment-22439-20150602172934\nThread:GOL127/@comment-22439-20150628092739\nThread:GZulu/@comment-32769624-20191024053328\nThread:Gabriel Lane/@comment-22439-20141209230440\nThread:Gadaha/@comment-32769624-20190316172239\nThread:GaidinBDJ/@comment-32769624-20171015163114\nThread:Gaius0/@comment-22439-20151026121637\nThread:GaleTheWhale/@comment-22439-20160418183623\nThread:Gametunes/@comment-32769624-20180206073731\nThread:GamezombieCZ/@comment-32769624-20190905190456\nThread:Gammamudo/@comment-32769624-20190107112636\nThread:Gammamudo/@comment-32769624-20190107113014\nThread:Gandalfnog/@comment-22439-20141102120418\nThread:GarGwill/@comment-22439-20160724103850\nThread:Gark2001/@comment-22439-20141220054656\nThread:Garlenife/@comment-2155082-20170612012351\nThread:Garlenife/@comment-2155082-20170612012351/@comment-26009169-20170612170016\nThread:Garlenife/@comment-2155082-20170612012351/@comment-26773573-20170612154640\nThread:Garlenife/@comment-2155082-20170612012351/@comment-26773573-20170614003825\nThread:Garlenife/@comment-2155082-20170612012351/@comment-27.55.11.100-20170614003527\nThread:Garlenife/@comment-22439-20170514143111\nThread:Garlenife/@comment-30928085-20170611173154\nThread:Garlenife/@comment-30928085-20170611173154/@comment-26773573-20170612151828\nThread:GaryxGaming/@comment-32769624-20180706043043\nThread:Gattaca67/@comment-32769624-20180706175535\nThread:Gaurdianaq/@comment-22439-20150128183945\nThread:Ged UK/@comment-32769624-20200609095731\nThread:Geley/@comment-32769624-20181216014125\nThread:Geley/@comment-32769624-20181216014308\nThread:GeneralBrae/@comment-22439-20160115141723\nThread:General 1/@comment-32769624-20171113094852\nThread:Geriadd/@comment-32769624-20180718124908\nThread:Gert Nielsen/@comment-22439-20150201103047\nThread:Ginrikuzuma/@comment-22439-20150815000005\nThread:Gitman/@comment-32769624-20200610120504\nThread:GitouttahereStalker/@comment-32769624-20200225111428\nThread:Gjallarhorn the IceWing/@comment-22439-20170422163656\nThread:Gle353/@comment-32769624-20200823140151\nThread:Glewtek/@comment-32769624-20191105125224\nThread:Gmurante/@comment-22439-20140803000623\nThread:Gobbibomb/@comment-32769624-20180907082302\nThread:Gobshiite/@comment-32769624-20190920073605\nThread:Gods of Odds/@comment-32769624-20181121082707\nThread:Gods of Odds/@comment-32769624-20190203082108\nThread:Gofast1993/@comment-22439-20141221130115\nThread:GoinXwellElite/@comment-22439-20160527141855\nThread:Goldsy/@comment-32769624-20200117141924\nThread:GombariNoah/@comment-32769624-20171020145840\nThread:Goose4291/@comment-2155082-20161208012402\nThread:Goose4291/@comment-2155082-20161208012402/@comment-27620258-20161208091540\nThread:Goose4291/@comment-22439-20160116114454\nThread:Gorfic/@comment-32769624-20190928010328\nThread:GramNam/@comment-32769624-20171110162645\nThread:Grandtheftautoma/@comment-22439-20160521121221\nThread:GreenReaper/@comment-32769624-20171217013715\nThread:Greenrabbidrabbit/@comment-32769624-20190703033656\nThread:Greentigerdragon/@comment-32769624-20200920013209\nThread:Gregorthebigmac/@comment-22439-20150330021801\nThread:GreyJackal/@comment-22439-20141005153401\nThread:Grif2142/@comment-22439-20150509053840\nThread:Grimmtooth/@comment-22439-20150505233514\nThread:Grinbringer/@comment-2155082-20170228193441\nThread:Grinbringer/@comment-2155082-20170228193441/@comment-27044471-20170303183650\nThread:Grisbane/@comment-32769624-20180914163041\nThread:GrnTigr/@comment-32769624-20181207053720\nThread:Groffel/@comment-32769624-20180107201541\nThread:Groyolo/@comment-22439-20151215035217\nThread:Gruff46/@comment-22439-20150125083009\nThread:Gruff46/@comment-26039754-20150124185842\nThread:Gryper/@comment-32769624-20200426213825\nThread:Gryphon/@comment-22439-20151009070934\nThread:Guardian1128/@comment-32769624-20180321182519\nThread:GuardianSong/@comment-32769624-20190104234307\nThread:Guerreiroanfibio/@comment-22439-20160322050417\nThread:Guillaume Drolet/@comment-32769624-20180721043347\nThread:GunmadMadman/@comment-32769624-20200805181140\nThread:Gunny1/@comment-22439-20160130221430\nThread:GusHaines/@comment-32769624-20190104115508\nThread:GusHaines/@comment-32769624-20190104122106\nThread:Guvenor/@comment-22439-20151026020649\nThread:Guyver137/@comment-22439-20141028090226\nThread:Gökay Atakan/@comment-32769624-20200530205114\nThread:H.hasenack/@comment-22439-20150922203305\nThread:H0079jnicle0/@comment-32769624-20200428223212\nThread:H3g3m0n/@comment-32769624-20180125064410\nThread:HCIJess/@comment-22439-20151021011241\nThread:HShot/@comment-32769624-20190109021544\nThread:HShot/@comment-32769624-20190109021753\nThread:HTarchinski/@comment-32769624-20200104080817\nThread:HX Alpha/@comment-22439-20160815061329\nThread:Hadrian Augustus Duval/@comment-32769624-20190408203658\nThread:Hairy Dude/@comment-22439-20150721171626\nThread:Hairyross/@comment-32769624-20200521094906\nThread:Hal foxharken/@comment-32769624-20180212124952\nThread:Halfbax328/@comment-22439-20150716123843\nThread:Halvor-olsen/@comment-22439-20160227134022\nThread:Hammersmith13/@comment-32769624-20190528011716\nThread:HammyTV/@comment-32769624-20200420232627\nThread:HamnavoePer/@comment-32769624-20180106084508\nThread:Hantif/@comment-32769624-20181123200559\nThread:Hantif/@comment-32769624-20181226041508\nThread:Haolih/@comment-32769624-20190318234351\nThread:Harbinger73/@comment-22439-20150712033432\nThread:Harbinger91/@comment-22439-20150830183805\nThread:Hardmoor/@comment-22439-20150129180233\nThread:HarryHenryGebel/@comment-22439-20160716025423\nThread:Hawki/@comment-22439-20150908085457\nThread:Hazmat616/@comment-30245159-20170114161428\nThread:Hazmat616/@comment-5959508-20161203105927\nThread:Hazmat616/@comment-5959508-20161203105927/@comment-2155082-20161203234506\nThread:Hazmat616/@comment-5959508-20161203105927/@comment-5959508-20161203110150\nThread:Hazmat616/@comment-5959508-20161203105927/@comment-5959508-20161203111152\nThread:Hazmat616/@comment-5959508-20161203105927/@comment-5959508-20161204183121\nThread:Hazmat616/@comment-5959508-20161203105927/@comment-5959508-20161204183939\nThread:Hazmat616/@comment-5959508-20170113163751\nThread:Hazmat616/@comment-5959508-20170113163751/@comment-30643772-20170113184952\nThread:Hazmat616/@comment-5959508-20170113163751/@comment-30643772-20170113185247\nThread:Hazmat616/@comment-5959508-20170113163751/@comment-30643772-20170114154341\nThread:Hazmat616/@comment-5959508-20170113163751/@comment-30643772-20170114155135\nThread:Hazmat616/@comment-5959508-20170113163751/@comment-30643772-20170115165730\nThread:Hazmat616/@comment-5959508-20170113163751/@comment-5959508-20170113214412\nThread:Hazmat616/@comment-5959508-20170113163751/@comment-5959508-20170115151454\nThread:HazzmangoVEVO/@comment-32769624-20190827113228\nThread:Heavy Johnson/@comment-32769624-20190104110839\nThread:Heavy runner/@comment-22439-20141230213626\nThread:Heckatoo/@comment-32769624-20200309023434\nThread:HeckobA/@comment-32769624-20190906134926\nThread:Heckuvahydra/@comment-32769624-20180120023247\nThread:Heizena/@comment-32769624-20200419161954\nThread:Hekkaryk/@comment-32769624-20190216153545\nThread:Hellfire85/@comment-32769624-20190110023836\nThread:Hellovart/@comment-32769624-20200825115537\nThread:Hellscout666/@comment-32769624-20200511145250\nThread:Hemophile/@comment-22439-20141004040753\nThread:Henhen2/@comment-22439-20151219125225\nThread:Heranion/@comment-32769624-20180816040138\nThread:Herdox/@comment-22439-20150628101936\nThread:Herman2000/@comment-32769624-20200224124908\nThread:Herzbube/@comment-22439-20160218214053\nThread:Hexcaliber/@comment-22439-20150107072349\nThread:Himpundulu/@comment-22439-20170608161838\nThread:Himurajubei/@comment-22439-20151202031732\nThread:Hoddd9000/@comment-22439-20151017181343\nThread:Hodxer/@comment-22439-20141028042112\nThread:Holl0918/@comment-22439-20160711050748\nThread:Holland Novak/@comment-22439-20141004160401\nThread:HolovaR/@comment-22439-20160121131449\nThread:Hoodwynk/@comment-32769624-20181214071250\nThread:Hoodwynk/@comment-32769624-20181214071626\nThread:HoppingGrass/@comment-32769624-20200926031408\nThread:Hoppizilla/@comment-32769624-20180123214146\nThread:Horakhty07/@comment-32769624-20200501141829\nThread:HoranIsBae/@comment-22439-20160214051554\nThread:Hordwon/@comment-32769624-20200704145252\nThread:Howmanymexicans/@comment-2155082-20170403005613\nThread:Howmanymexicans/@comment-2155082-20170403005613/@comment-2155082-20170403191606\nThread:Howmanymexicans/@comment-2155082-20170403005613/@comment-2155082-20170403191944\nThread:Howmanymexicans/@comment-2155082-20170403005613/@comment-26009169-20170403151230\nThread:Howmanymexicans/@comment-2155082-20170403005613/@comment-26009169-20170403191655\nThread:Hubert Eliphas/@comment-22439-20150205070235\nThread:Hubsyn/@comment-22439-20151020142429\nThread:Huin/@comment-22439-20150103202548\nThread:Humani generis/@comment-32769624-20190718062930\nThread:Hunter24123/@comment-32769624-20181214122242\nThread:Hunter24123/@comment-32769624-20181214122319\nThread:Hunter24123/@comment-32769624-20181214122526\nThread:Hunter24123/@comment-32769624-20181214122834\nThread:Hyena92/@comment-32769624-20200606180415\nThread:Hygh Tek/@comment-4403388-20170816061630\nThread:Hylky/@comment-22439-20160118203536\nThread:Hyperfiree/@comment-32769624-20181126075912\nThread:IAmThePilot/@comment-26810597-20191203223121\nThread:IAmThePilot/@comment-26810597-20191203223121/@comment-26810597-20200202221707\nThread:IAmThePilot/@comment-26810597-20191203223121/@comment-39459617-20200202081214\nThread:IAmThePilot/@comment-32769624-20190513232828\nThread:IGRiM R3AP3R/@comment-32769624-20190316210232\nThread:IMaSsMaYhEmI/@comment-32769624-20200713190244\nThread:IPeer/@comment-22439-20160905015158\nThread:I Sith/@comment-32769624-20180323214311\nThread:Iajret/@comment-22439-20150827073753\nThread:IamSKYWOLF/@comment-22439-20160908072703\nThread:Iamwarhead/@comment-22439-20161013111112\nThread:Ian Gragos/@comment-22439-20150728075334\nThread:IceDroid06/@comment-32769624-20200630164759\nThread:IceboundMetal/@comment-22439-20150314191132\nThread:IckieStickieMick/@comment-22439-20150715052306\nThread:IckieStickieMick/@comment-22439-20150715052306/@comment-2155082-20170715214751\nThread:IckieStickieMick/@comment-22439-20150715052306/@comment-26530484-20170713101017\nThread:IckieStickieMick/@comment-22439-20150715052306/@comment-26530484-20170713101224\nThread:IckieStickieMick/@comment-22439-20150715052306/@comment-5959508-20170715151738\nThread:IckieStickieMick/@comment-22439-20150715052306/@comment-5959508-20170726162632\nThread:Icpmcp/@comment-22439-20151116140918\nThread:Idealcompany/@comment-32769624-20180728100329\nThread:Idonolis/@comment-32769624-20181223223359\nThread:Idonolis/@comment-32769624-20181223223621\nThread:Ilikepizza1275/@comment-32769624-20190414224723\nThread:ImSoBored246/@comment-32769624-20190723063816\nThread:Imm3rsion/@comment-32769624-20180428081506\nThread:ImmortalGhost/@comment-32769624-20200704194010\nThread:Inanis Itineris/@comment-32769624-20200621124029\nThread:Inccoming/@comment-32769624-20200402163005\nThread:Incrognito/@comment-22439-20151025233925\nThread:InfamousMyzt/@comment-22439-20160306040600\nThread:Infinito77/@comment-22439-20160102101214\nThread:Inkmmo/@comment-22439-20151105204232\nThread:Inkmmo/@comment-22439-20151105204232/@comment-27165666-20151105204406\nThread:Inkmmo/@comment-22439-20151105204232/@comment-5959508-20151106103520\nThread:Innokentiytheparrot/@comment-32769624-20180103193654\nThread:Inoi Troriak/@comment-22439-20150117093603\nThread:Inojakal/@comment-22439-20151203042804\nThread:Intelfx/@comment-32769624-20180703141528\nThread:Interstitial/@comment-22439-20150311132151\nThread:Invisible Robot Fish 2.0/@comment-32769624-20200504015641\nThread:Ion070/@comment-22439-20160312050313\nThread:IrCelt/@comment-32769624-20171222202420\nThread:Iridium Nova/@comment-22439-20160109012252\nThread:Irisa Nyira/@comment-22439-20160205130223\nThread:Irisa Nyira/@comment-27077258-20160224132204\nThread:Isaac Heinleinclarke/@comment-22439-20150314093247\nThread:Ishmat/@comment-22439-20140126193823\nThread:Ishmat/@comment-22439-20140126193823/@comment-24370454-20140126214247\nThread:IsilwenStardust/@comment-32769624-20200711190000\nThread:Istrul/@comment-22439-20141030081924\nThread:Itchü/@comment-12138097-20150115105013\nThread:Itchü/@comment-12138097-20150115105013/@comment-12138097-20150115114106\nThread:Itchü/@comment-12138097-20150115105013/@comment-12138097-20150115115113\nThread:Itchü/@comment-12138097-20150115105013/@comment-25971895-20150115112922\nThread:Itchü/@comment-12138097-20150115105013/@comment-25971895-20150115114753\nThread:Itchü/@comment-12138097-20150125004609\nThread:Itchü/@comment-12138097-20150125004609/@comment-12138097-20150126031254\nThread:Itchü/@comment-12138097-20150125004609/@comment-25971895-20150125093342\nThread:Itchü/@comment-22439-20150115094342\nThread:ItzNikkitty/@comment-22439-20160731014708\nThread:IvKon/@comment-22439-20130930043556\nThread:Iznato/@comment-12138097-20150223015526\nThread:Iznato/@comment-12138097-20150223015526/@comment-24963414-20150223093011\nThread:Iznato/@comment-22439-20141116175438\nThread:J0nTK/@comment-22439-20150512130353\nThread:JAFFO70/@comment-32769624-20200709134932\nThread:JGCaymon/@comment-22439-20150427215421\nThread:JGagada/@comment-32769624-20180506154419\nThread:JP69713Bson/@comment-2155082-20150911214944\nThread:JP69713Bson/@comment-22439-20140914114715\nThread:JQuery34/@comment-32769624-20190214210357\nThread:JWSmythe/@comment-32769624-20200208022106\nThread:Jabossu/@comment-30928085-20171126110232\nThread:Jabossu/@comment-30928085-20171126110232/@comment-30928085-20171126200520\nThread:Jabossu/@comment-30928085-20171126110232/@comment-30928085-20171127075033\nThread:Jabossu/@comment-30928085-20171126110232/@comment-33774837-20171126192144\nThread:Jabossu/@comment-30928085-20171126110232/@comment-33774837-20171127071616\nThread:Jabossu/@comment-32769624-20171126102912\nThread:Jace Hawks/@comment-12138097-20141207201054\nThread:Jace Hawks/@comment-12138097-20141213101003\nThread:Jace Hawks/@comment-12138097-20141213101003/@comment-25787591-20141217004253\nThread:Jace Hawks/@comment-22439-20141203044949\nThread:Jack0088/@comment-32769624-20200717001313\nThread:JackSamMarkTim/@comment-32769624-20180128003451\nThread:Jack Shaftoe/@comment-32769624-20180714234227\nThread:JackassJames/@comment-32769624-20200127232656\nThread:Jacklul/@comment-32769624-20181223164511\nThread:Jacklul/@comment-32769624-20181223164522\nThread:Jackofallgods/@comment-32769624-20180628204901\nThread:Jaess/@comment-32769624-20200330235457\nThread:Jaiotu/@comment-22439-20150318215505\nThread:JakeGill/@comment-22439-20150601220916\nThread:Jakubuz/@comment-32769624-20180108123425\nThread:Jamania/@comment-22439-20160324230805\nThread:JamesF0790/@comment-32769624-20200225044246\nThread:James Razor/@comment-1028741-20151105021426\nThread:James Razor/@comment-1028741-20151105021426/@comment-1028741-20151105143850\nThread:James Razor/@comment-1028741-20151105021426/@comment-26937315-20151105101333\nThread:James Razor/@comment-2155082-20160703035654\nThread:James Razor/@comment-2155082-20160703035654/@comment-26937315-20160810211959\nThread:James Razor/@comment-22439-20150828202246\nThread:JamieInRed/@comment-32769624-20200605022734\nThread:Jamminok/@comment-22439-20151203003810\nThread:JansterLE/@comment-32769624-20200608120802\nThread:JaroslavPe/@comment-22439-20160126125349\nThread:JaskorWF/@comment-32769624-20200919223547\nThread:JaxRock/@comment-22439-20151208123913\nThread:Jay-Dee-76/@comment-32769624-20190105153423\nThread:Jay-Dee-76/@comment-32769624-20190105215854\nThread:Jay-Dee-76/@comment-32769624-20190105220010\nThread:JayStopMotionAndMore/@comment-32769624-20200214222030\nThread:JayZedKay/@comment-32769624-20190109191015\nThread:JayZedKay/@comment-32769624-20190109193603\nThread:Jaybird3326/@comment-32769624-20200529225838\nThread:JayceFox/@comment-32769624-20200926113728\nThread:Jayden42/@comment-32769624-20190604210402\nThread:Jayeffaar/@comment-22439-20160216224409\nThread:JazHaz/@comment-192.0.135.169-20161228133113\nThread:JazHaz/@comment-192.0.135.169-20161228133113/@comment-30245159-20161228134132\nThread:JazHaz/@comment-2155082-20160820031914\nThread:JazHaz/@comment-2155082-20160820031914/@comment-2155082-20160821032553\nThread:JazHaz/@comment-2155082-20160820031914/@comment-26009169-20160820094546\nThread:JazHaz/@comment-2155082-20160820031914/@comment-26009169-20160901195122\nThread:JazHaz/@comment-2155082-20160820031914/@comment-26009169-20160902113610\nThread:JazHaz/@comment-2155082-20160820031914/@comment-26009169-20160912174302\nThread:JazHaz/@comment-2155082-20160820031914/@comment-5959508-20160820083946\nThread:JazHaz/@comment-2155082-20160820031914/@comment-5959508-20160820084514\nThread:JazHaz/@comment-2155082-20160820031914/@comment-5959508-20160820104708\nThread:JazHaz/@comment-2155082-20160820031914/@comment-5959508-20160902112504\nThread:JazHaz/@comment-2155082-20160820031914/@comment-5959508-20160912224845\nThread:JazHaz/@comment-2155082-20160823155421\nThread:JazHaz/@comment-2155082-20160823155421/@comment-2155082-20160823230658\nThread:JazHaz/@comment-2155082-20160823155421/@comment-5959508-20160823221712\nThread:JazHaz/@comment-2155082-20160907224154\nThread:JazHaz/@comment-2155082-20160907224154/@comment-26009169-20160908003201\nThread:JazHaz/@comment-2155082-20160907224154/@comment-5959508-20160907234848\nThread:JazHaz/@comment-2155082-20161129180829\nThread:JazHaz/@comment-2155082-20161129180829/@comment-2155082-20161130015512\nThread:JazHaz/@comment-2155082-20161129180829/@comment-5959508-20161129204143\nThread:JazHaz/@comment-2155082-20161129180829/@comment-5959508-20161130101222\nThread:JazHaz/@comment-2155082-20161203235436\nThread:JazHaz/@comment-2155082-20161203235436/@comment-2155082-20170106205118\nThread:JazHaz/@comment-2155082-20161203235436/@comment-30643772-20170106185416\nThread:JazHaz/@comment-2155082-20161203235436/@comment-5959508-20170111152352\nThread:JazHaz/@comment-2155082-20170130014201\nThread:JazHaz/@comment-22439-20130113185707\nThread:JazHaz/@comment-22439-20130113185707/@comment-5937172-20130113190214\nThread:JazHaz/@comment-22439-20130113185707/@comment-5937172-20130113191249\nThread:JazHaz/@comment-22439-20130113185707/@comment-5937172-20130114143412\nThread:JazHaz/@comment-22439-20130113185707/@comment-5959508-20130113190043\nThread:JazHaz/@comment-22439-20130113185707/@comment-5959508-20130113190427\nThread:JazHaz/@comment-22439-20130113185707/@comment-5959508-20130113191108\nThread:JazHaz/@comment-22439-20130113185707/@comment-5959508-20130113191410\nThread:JazHaz/@comment-22439-20130113185707/@comment-5959508-20130113194323\nThread:JazHaz/@comment-26009169-20180107022321\nThread:JazHaz/@comment-26418893-20150520212452\nThread:JazHaz/@comment-26418893-20150520212452/@comment-2155082-20151031044838\nThread:JazHaz/@comment-26418893-20150520212452/@comment-27115814-20151030181510\nThread:JazHaz/@comment-30643772-20170106184621\nThread:JazHaz/@comment-30643772-20170106185212\nThread:JazHaz/@comment-30643772-20170109214643\nThread:JazHaz/@comment-30643772-20170109214643/@comment-2155082-20170109214740\nThread:JazHaz/@comment-30643772-20170109214643/@comment-2155082-20170109215203\nThread:JazHaz/@comment-30643772-20170109214643/@comment-2155082-20170110014328\nThread:JazHaz/@comment-30643772-20170109214643/@comment-30643772-20170109214826\nThread:JazHaz/@comment-30643772-20170109214643/@comment-5959508-20170110001511\nThread:JazHaz/@comment-30643772-20171010155937\nThread:JazHaz/@comment-30643772-20171010160420\nThread:JazHaz/@comment-30643772-20171010160420/@comment-5959508-20171012163630\nThread:JazHaz/@comment-30928085-20170214160539\nThread:JazHaz/@comment-30928085-20170214160539/@comment-2155082-20170215194834\nThread:JazHaz/@comment-30928085-20170214160539/@comment-2155082-20170216224459\nThread:JazHaz/@comment-30928085-20170214160539/@comment-26009169-20170214190423\nThread:JazHaz/@comment-30928085-20170214160539/@comment-26009169-20170214201126\nThread:JazHaz/@comment-30928085-20170214160539/@comment-26009169-20170215091951\nThread:JazHaz/@comment-30928085-20170214160539/@comment-26009169-20170215112028\nThread:JazHaz/@comment-30928085-20170214160539/@comment-26009169-20170215225833\nThread:JazHaz/@comment-30928085-20170214160539/@comment-26009169-20170216111838\nThread:JazHaz/@comment-30928085-20170214160539/@comment-26009169-20170216154136\nThread:JazHaz/@comment-30928085-20170214160539/@comment-26009169-20170218003729\nThread:JazHaz/@comment-30928085-20170214160539/@comment-26536231-20170217083238\nThread:JazHaz/@comment-30928085-20170214160539/@comment-30928085-20170214200519\nThread:JazHaz/@comment-30928085-20170214160539/@comment-30928085-20170214201525\nThread:JazHaz/@comment-30928085-20170214160539/@comment-30928085-20170215102857\nThread:JazHaz/@comment-30928085-20170214160539/@comment-30928085-20170215164538\nThread:JazHaz/@comment-30928085-20170214160539/@comment-30928085-20170215182854\nThread:JazHaz/@comment-30928085-20170214160539/@comment-30928085-20170215201639\nThread:JazHaz/@comment-30928085-20170214160539/@comment-30928085-20170216043040\nThread:JazHaz/@comment-30928085-20170214160539/@comment-30928085-20170216110143\nThread:JazHaz/@comment-30928085-20170214160539/@comment-30928085-20170216124158\nThread:JazHaz/@comment-30928085-20170214160539/@comment-30928085-20170216160359\nThread:JazHaz/@comment-30928085-20170214160539/@comment-30928085-20170217053755\nThread:JazHaz/@comment-30928085-20170214160539/@comment-30928085-20170217205439\nThread:JazHaz/@comment-30928085-20170214160539/@comment-30928085-20170218053211\nThread:JazHaz/@comment-30928085-20170214160539/@comment-30928085-20170218132954\nThread:JazHaz/@comment-30928085-20170214160539/@comment-5959508-20170214194748\nThread:JazHaz/@comment-30928085-20170214160539/@comment-5959508-20170217223346\nThread:JazHaz/@comment-30928085-20170214160539/@comment-5959508-20170217223615\nThread:JazHaz/@comment-30928085-20170214160539/@comment-5959508-20170218120533\nThread:JazHaz/@comment-30928085-20170217210042\nThread:JazHaz/@comment-30928085-20170217210042/@comment-30928085-20170218054810\nThread:JazHaz/@comment-30928085-20170217210042/@comment-5959508-20170217222412\nThread:JazHaz/@comment-30928085-20170503132645\nThread:JazHaz/@comment-30928085-20170503132645/@comment-26009169-20170503140216\nThread:JazHaz/@comment-30928085-20170503132645/@comment-26009169-20170506115545\nThread:JazHaz/@comment-30928085-20170503132645/@comment-30928085-20170503210604\nThread:JazHaz/@comment-30928085-20170503132645/@comment-30928085-20170506114122\nThread:JazHaz/@comment-30928085-20170503132645/@comment-30928085-20170506134117\nThread:JazHaz/@comment-30928085-20170503132645/@comment-5959508-20170504081649\nThread:JazHaz/@comment-30928085-20170527195801\nThread:JazHaz/@comment-30928085-20170527195801/@comment-30928085-20170528140642\nThread:JazHaz/@comment-30928085-20170527195801/@comment-5959508-20170528130023\nThread:JazHaz/@comment-5959508-20160920130759\nThread:JazHaz/@comment-5959508-20160920130759/@comment-192.136.161.156-20161004153153\nThread:JazHaz/@comment-5959508-20160920130759/@comment-2155082-20161004172503\nThread:JazHaz/@comment-5959508-20160920130759/@comment-5959508-20160920132804\nThread:JazHaz/@comment-5959508-20160920130759/@comment-5959508-20160920134232\nThread:JazHaz/@comment-5959508-20160920130759/@comment-5959508-20161004174541\nThread:JazHaz/@comment-64.134.35.69-20171010143349\nThread:JazHaz/@comment-64.134.35.69-20171010143349/@comment-30643772-20171010150539\nThread:JazHaz/@comment-64.134.35.69-20171010143349/@comment-30643772-20171010150744\nThread:JazHaz/@comment-64.134.35.69-20171010143349/@comment-5959508-20171012163545\nThread:JazHaz/@comment-70.198.71.214-20151230183429\nThread:JazHaz/@comment-70.198.71.214-20151230183429/@comment-2155082-20151230221458\nThread:JazHaz/@comment-70.198.71.214-20151230183429/@comment-2155082-20151231041911\nThread:JazHaz/@comment-70.198.71.214-20151230183429/@comment-2155082-20151231042543\nThread:JazHaz/@comment-70.198.71.214-20151230183429/@comment-26009169-20151231154327\nThread:JazHaz/@comment-70.198.71.214-20151230183429/@comment-5959508-20151230213242\nThread:JazHaz/@comment-70.198.71.214-20151230183429/@comment-5959508-20151230213728\nThread:JazHaz/@comment-70.198.71.214-20151230183429/@comment-5959508-20151230223415\nThread:JazHaz/@comment-70.198.71.214-20151230183429/@comment-70.198.68.231-20151231142032\nThread:JazHaz/@comment-91.216.1.103-20130906121418\nThread:JazHaz/@comment-91.216.1.103-20130906121418/@comment-5959508-20130912113044\nThread:JazHaz/@comment-91.216.1.103-20130906121418/@comment-5959508-20130912113558\nThread:JazHaz/@comment-98.222.235.179-20160830180100\nThread:JazHaz/@comment-98.222.235.179-20160830180100/@comment-2155082-20160830180222\nThread:JazHaz/@comment-98.222.235.179-20160830180100/@comment-2155082-20160830220117\nThread:JazHaz/@comment-98.222.235.179-20160830180100/@comment-26009169-20160830194107\nThread:JazHaz/@comment-98.222.235.179-20160830180100/@comment-5959508-20160830224305\nThread:Jedesis/@comment-22439-20150311080122\nThread:Jeffealex/@comment-22439-20150826120802\nThread:Jefzwang-fduser/@comment-22439-20151211091618\nThread:Jefzwang/@comment-22439-20151211091618\nThread:Jeoffman/@comment-22439-20141227182851\nThread:Jetdude/@comment-22439-20150415034513\nThread:Jetfoxx/@comment-22439-20150321213616\nThread:Jibsman/@comment-32769624-20180712235153\nThread:Jijonbreaker1/@comment-32769624-20200529123459\nThread:JimSan/@comment-22439-20140816074009\nThread:Jim Stjerne/@comment-22439-20160127110758\nThread:Jimmy396/@comment-32769624-20200628170803\nThread:Jimmy Leeroy/@comment-22439-20151222010653\nThread:Jitsuke The Cat/@comment-22439-20151111001531\nThread:Jitsuke The Cat/@comment-22439-20151111001531/@comment-27153665-20151111002339\nThread:Jitsuke The Cat/@comment-22439-20151111001531/@comment-5959508-20151111163535\nThread:Jj003333/@comment-22439-20150724151933\nThread:Jlakshan/@comment-32769624-20200530223545\nThread:Jntq98/@comment-22439-20150415082930\nThread:Johaunna/@comment-22439-20150127225350\nThread:JohnNL1982/@comment-32769624-20180506205036\nThread:JohnStabler/@comment-12138097-20141119205558\nThread:JohnStabler/@comment-12138097-20141202224101\nThread:JohnStabler/@comment-12138097-20150112205916\nThread:JohnStabler/@comment-24179636-20141215232942\nThread:JohnStabler/@comment-24179636-20141215232942/@comment-24179636-20141216210201\nThread:JohnStabler/@comment-24179636-20141215232942/@comment-5937172-20141216112517\nThread:JohnStabler/@comment-24270909-20131210132953\nThread:JohnStabler/@comment-26009169-20150329130252\nThread:JohnStabler/@comment-3183460-20130220195506\nThread:JohnStabler/@comment-3183460-20130220195506/@comment-5937172-20130220205912\nThread:JohnStabler/@comment-3183460-20141008165644\nThread:JohnStabler/@comment-5959508-20130113185637\nThread:JohnStabler/@comment-5959508-20130113185637/@comment-5937172-20130113185825\nThread:JohnStabler/@comment-6245619-20130201234834\nThread:JohnStabler/@comment-6507562-20130216101134\nThread:JohnStabler/@comment-6507562-20130216101134/@comment-5937172-20130220205942\nThread:JohnStabler/@comment-6507562-20130216101134/@comment-6507562-20130221085834\nThread:JohnStabler/@comment-8-20130101170739\nThread:John Guevara/@comment-2155082-20160824200601\nThread:John Guevara/@comment-2155082-20160824200601/@comment-2155082-20160824203608\nThread:John Guevara/@comment-2155082-20160824204449\nThread:John Guevara/@comment-2155082-20160824204449/@comment-26009169-20160825152742\nThread:John Guevara/@comment-2155082-20160824204449/@comment-29746697-20160825121357\nThread:John Guevara/@comment-2155082-20160824204449/@comment-29746697-20160825184050\nThread:John Guevara/@comment-2155082-20160824204449/@comment-29746697-20160825202835\nThread:John Guevara/@comment-2155082-20160824204449/@comment-29746697-20160827122615\nThread:John Guevara/@comment-22439-20160824152502\nThread:Johnliem/@comment-22439-20150410123332\nThread:Johnliem/@comment-22439-20150410123332/@comment-26239226-20150410123505\nThread:Johnliem/@comment-22439-20150410123332/@comment-26239226-20150428170611\nThread:Johnliem/@comment-22439-20150410123332/@comment-6033893-20150428165856\nThread:Johns1307/@comment-32769624-20200604055818\nThread:Jokonnoh/@comment-32769624-20190524100858\nThread:JonJennings/@comment-22439-20150119105745\nThread:JoseffZerafa/@comment-32769624-20200520182238\nThread:Joyce143katsuma/@comment-22439-20160223171430\nThread:JoyeuseGlorieuse/@comment-22439-20150628092739\nThread:Jriwanek/@comment-32769624-20190709113001\nThread:Jstnbcn/@comment-22439-20160106215104\nThread:Jtrevillion/@comment-32769624-20180826185543\nThread:Juan.farias.88344/@comment-22439-20161011202809\nThread:Judemagog/@comment-22439-20160515214606\nThread:Judemagog/@comment-30928085-20180406182014\nThread:Judemagog/@comment-30928085-20180406182014/@comment-28469459-20180406210247\nThread:Judemagog/@comment-30928085-20180406182014/@comment-28469459-20180406220835\nThread:Judemagog/@comment-30928085-20180406182014/@comment-28469459-20180407085953\nThread:Judemagog/@comment-30928085-20180406182014/@comment-30928085-20180407073926\nThread:Julian Korolev/@comment-22439-20150102192126\nThread:Junekoj/@comment-32769624-20190719212935\nThread:Juper0/@comment-22439-20141220101127\nThread:Justified90/@comment-32769624-20191115205134\nThread:Justin.mccown.182/@comment-22439-20140813025354\nThread:Jvideo121/@comment-22439-20150105072345\nThread:Jvideo121/@comment-22439-20150105072345/@comment-12138097-20150105213055\nThread:Jvideo121/@comment-22439-20150105072345/@comment-12138097-20150106044155\nThread:Jvideo121/@comment-22439-20150105072345/@comment-25970694-20150105195044\nThread:Jvideo121/@comment-22439-20150105072345/@comment-25970694-20150106042841\nThread:Jvideo121/@comment-22439-20150105072345/@comment-25970694-20150311132037\nThread:Jwparker1/@comment-32769624-20180707200322\nThread:K0skid/@comment-32769624-20181218220551\nThread:KEEREN/@comment-32769624-20180830085855\nThread:KKona Elite/@comment-32769624-20180629160816\nThread:KUBE.exe/@comment-22439-20151114043922\nThread:KYLEHARPER1500/@comment-32769624-20191108182248\nThread:KZ.FREW/@comment-32769624-20200803000512\nThread:Kaa-ching/@comment-22439-20140801211628\nThread:Kaa-ching/@comment-86.190.46.168-20140802100946\nThread:Kablke/@comment-32769624-20180430151041\nThread:Kabraloth/@comment-22439-20160102183209\nThread:Kaeinar/@comment-32769624-20200607210552\nThread:Kai-dan Novarek/@comment-22439-20150108000406\nThread:Kaidan Ysles/@comment-22439-20160516140724\nThread:KaiserJagerI/@comment-32769624-20190421125339\nThread:KaiserKolovos/@comment-32769624-20190610053959\nThread:Kaleb Brooks/@comment-32769624-20200809213401\nThread:Kalenchoe/@comment-32769624-20180517140730\nThread:Kalko SK/@comment-32769624-20181231102149\nThread:Kaloonzu/@comment-22439-20151224060918\nThread:Kanthes/@comment-22439-20151015203710\nThread:Kantraah/@comment-22439-20150224140556\nThread:Kantraah/@comment-25679378-20160117203432\nThread:Kapitein Dree/@comment-22439-20150622100947\nThread:Karrdio/@comment-22439-20160606184500\nThread:Karth32/@comment-32769624-20200102235220\nThread:KassidyRawr/@comment-32769624-20171119165038\nThread:Kaulnagunae/@comment-32769624-20200227204454\nThread:Kayahr/@comment-22439-20150608202950\nThread:KaylieStarspear/@comment-32769624-20181108135401\nThread:Kaythan/@comment-22439-20150527013009\nThread:Kaytrox/@comment-32769624-20190421083211\nThread:Keanukeen/@comment-26810597-20191203223152\nThread:Keanukeen/@comment-26810597-20191203223152/@comment-44580216-20191204152623\nThread:Keanukeen/@comment-32769624-20191203161343\nThread:Keegandalf/@comment-22439-20160105211250\nThread:Keelhauler98/@comment-32769624-20180119040700\nThread:Keeval/@comment-22439-20140520210722\nThread:Keline Fraser/@comment-22439-20160619153147\nThread:Keotik/@comment-22439-20141028235225\nThread:Kepler68/@comment-32769624-20200228212513\nThread:Kerbonaut/@comment-32769624-20200606214450\nThread:Kerenski667/@comment-22439-20151129080838\nThread:Kersthaas/@comment-32769624-20200908192334\nThread:Kettless/@comment-22439-20150324203251\nThread:KevinMcScrooge/@comment-32769624-20190611044010\nThread:Kevinmook/@comment-32769624-20180221131826\nThread:Kezika/@comment-32769624-20190201220415\nThread:Khamar/@comment-22439-20150502221327\nThread:KickRAzz/@comment-32769624-20180410162245\nThread:Kida155/@comment-12138097-20150117211409\nThread:Kida155/@comment-12138097-20150117211409/@comment-12138097-20150119094024\nThread:Kida155/@comment-12138097-20150117211409/@comment-12138097-20150122101339\nThread:Kida155/@comment-12138097-20150117211409/@comment-12138097-20150123001933\nThread:Kida155/@comment-12138097-20150117211409/@comment-12138097-20150123041410\nThread:Kida155/@comment-12138097-20150117211409/@comment-12138097-20150123221601\nThread:Kida155/@comment-12138097-20150117211409/@comment-1250011-20150118220748\nThread:Kida155/@comment-12138097-20150117211409/@comment-1250011-20150122155600\nThread:Kida155/@comment-12138097-20150117211409/@comment-1250011-20150122194400\nThread:Kida155/@comment-12138097-20150117211409/@comment-1250011-20150123002334\nThread:Kida155/@comment-12138097-20150117211409/@comment-1250011-20150123152642\nThread:Kida155/@comment-12138097-20150117211409/@comment-1250011-20150124013158\nThread:Kida155/@comment-12138097-20150117211409/@comment-24.115.98.51-20150118220108\nThread:Kida155/@comment-12138097-20150117211409/@comment-24.115.98.51-20150122155919\nThread:Kida155/@comment-12138097-20150124094224\nThread:Kida155/@comment-12138097-20150124094224/@comment-12138097-20150125081415\nThread:Kida155/@comment-12138097-20150124094224/@comment-1250011-20150124150605\nThread:Kida155/@comment-12138097-20150128090427\nThread:Kida155/@comment-12138097-20150128090427/@comment-1250011-20150128142722\nThread:Kida155/@comment-12138097-20150205110143\nThread:Kida155/@comment-12138097-20150205110143/@comment-12138097-20150205192919\nThread:Kida155/@comment-12138097-20150205110143/@comment-1250011-20150205142042\nThread:Kida155/@comment-24360696-20150112025214\nThread:Kida155/@comment-24360696-20150112025214/@comment-12138097-20150112030715\nThread:Kida155/@comment-24360696-20150112025214/@comment-12138097-20150112205006\nThread:Kida155/@comment-24360696-20150112025214/@comment-1250011-20150112200236\nThread:Kida155/@comment-24360696-20150112025214/@comment-24360696-20150112190626\nThread:Kiestaking/@comment-32769624-20190116174146\nThread:Kiestaking/@comment-32769624-20190116174241\nThread:Kikbow/@comment-32769624-20171016205641\nThread:Killja Witta/@comment-32769624-20180724191526\nThread:KingKeepo/@comment-32769624-20181112180958\nThread:KingRider/@comment-32769624-20180828182420\nThread:Kingdavis45/@comment-22439-20150908133307\nThread:Kingpin12345/@comment-32769624-20200816150628\nThread:Kingsmasher678/@comment-32769624-20191126141710\nThread:Kipkuligan/@comment-22439-20170309093903\nThread:Kira0rg/@comment-32769624-20180505110908\nThread:Kirk68/@comment-32769624-20190422091519\nThread:Kirky007/@comment-32769624-20181219145027\nThread:Kirky007/@comment-32769624-20181219145124\nThread:Kiryu-DSeraph/@comment-22439-20151117015558\nThread:Kittenpox/@comment-32769624-20180223034901\nThread:Kiyos/@comment-32769624-20180827201803\nThread:Kman314II/@comment-32769624-20171222211647\nThread:Knabber/@comment-22439-20150709135110\nThread:Knights4jesus/@comment-22439-20160402172006\nThread:KnotMix/@comment-32769624-20190107121222\nThread:KockaAdmiralac/@comment-22439-20170731213605\nThread:Komotz/@comment-22439-20150901230145\nThread:Kookas/@comment-22439-20150618013153\nThread:KopiG/@comment-22439-20160608101800\nThread:KordianK/@comment-32769624-20180213180623\nThread:KormaKing/@comment-22439-20170408132313\nThread:KormaKing/@comment-22439-20170408132313/@comment-31094186-20170502222015\nThread:Kossilar/@comment-22439-20151219041139\nThread:Kranitoko/@comment-22439-20141227221239\nThread:Krooolll/@comment-32769624-20190819121238\nThread:Krystan/@comment-22439-20141216234812\nThread:KrytoThenseld/@comment-32769624-20190120160520\nThread:KrytoThenseld/@comment-32769624-20190120160558\nThread:KubeKing/@comment-22439-20150620213539\nThread:Kudach/@comment-32769624-20180306215809\nThread:Kuhgene/@comment-22439-20150329110753\nThread:Kumorifox/@comment-32769624-20171211001631\nThread:Kuzumby/@comment-22439-20150429210440\nThread:Kvasirr/@comment-22439-20140109221759\nThread:Kvasirr/@comment-22439-20140109221759/@comment-24403486-20140109224226\nThread:Kwalish/@comment-22439-20140916150713\nThread:KwasAcetylosalicylowy/@comment-32769624-20191006114842\nThread:Kyouko Bot/@comment-22439-20150608222046\nThread:Kyrieviviana58/@comment-22439-20170519053400\nThread:Kyryptos/@comment-22439-20141222185210\nThread:LBoy447/@comment-32769624-20181105173936\nThread:LSXpoweredcouch/@comment-22439-20151025034927\nThread:LT3ShadowBolt/@comment-32769624-20191004072927\nThread:LaShreader/@comment-22439-20170225232927\nThread:Laceynarcissus/@comment-22439-20170523062656\nThread:LadyDarkWolf/@comment-22439-20130115224613\nThread:LambChop82/@comment-32769624-20191018004242\nThread:Landomatic/@comment-32769624-20200612014844\nThread:Laprasfox/@comment-32769624-20191014115208\nThread:Larkfeast/@comment-22439-20150114153055\nThread:Laserwolf7/@comment-2155082-20170207013757\nThread:Laserwolf7/@comment-2155082-20170207013757/@comment-31116285-20170207014003\nThread:Lasky's Diary/@comment-22439-20150829141156\nThread:Lasky's Diary/@comment-22439-20150829141156/@comment-9360751-20150829142427\nThread:Laundry Machine/@comment-32769624-20180113070426\nThread:Lauren Darkmore/@comment-22439-20150315165226\nThread:LaurenceR/@comment-32769624-20200616013220\nThread:LawaBoy/@comment-22439-20150405092201\nThread:Lazahman/@comment-22439-20150406031426\nThread:Lcf80/@comment-22439-20150102120053\nThread:LeKola2/@comment-22439-20160430072354\nThread:LeMort121/@comment-32769624-20181225214342\nThread:LeMort121/@comment-32769624-20190415194453\nThread:Leavism/@comment-22439-20151214193242\nThread:LeerySquid13/@comment-22439-20160315095454\nThread:Leftaf/@comment-22439-20150111193918\nThread:Legit spartan/@comment-22439-20160613191418\nThread:Lelouch Di Britannia/@comment-22439-20160214160121\nThread:Lennysmeme/@comment-32769624-20171026161222\nThread:Leo McCoy/@comment-22439-20150418224538\nThread:Leo McCoy/@comment-869149-20151014182429\nThread:Leonick/@comment-22439-20140802064601\nThread:Letho2469/@comment-32769624-20200602152357\nThread:Levian Grea/@comment-32769624-20180730120829\nThread:Lewisse/@comment-22439-20150120022043\nThread:Lewisse/@comment-26024274-20150119233656\nThread:Light Fingers/@comment-22439-20160301143747\nThread:Lilstinger/@comment-32769624-20200403215437\nThread:Lily Peet/@comment-22439-20160414051811\nThread:Limoncello Lizard/@comment-22439-20151125021756\nThread:Limoncello Lizard/@comment-28469459-20190226195639\nThread:Limoncello Lizard/@comment-31363749-20170815194140\nThread:Linkle10112/@comment-22439-20151222221433\nThread:LionWalker/@comment-22439-20160707134131\nThread:Lionelmessisxmn/@comment-32769624-20190424075852\nThread:Liperium/@comment-32769624-20180707155912\nThread:LiveseyMD/@comment-32769624-20200129094509\nThread:Livesiren/@comment-22439-20160318160912\nThread:Lmxar/@comment-22439-20150720010418\nThread:LogicMage/@comment-22439-20150114081632\nThread:Logyboy77/@comment-22439-20160901172436\nThread:Loke Khan Torgou of Rhun/@comment-32769624-20180717042906\nThread:Lokorazor/@comment-22439-20151014235910\nThread:Loliboli8/@comment-22439-20151212193418\nThread:Lolife1/@comment-32769624-20191028230738\nThread:Lone Hunter/@comment-32769624-20190104160647\nThread:Lone Hunter/@comment-32769624-20190108154918\nThread:Lord Nerdicus/@comment-22439-20150427201017\nThread:Lord Setesh/@comment-32769624-20181222011904\nThread:Lord Setesh/@comment-32769624-20181222012009\nThread:LostGamer76/@comment-32769624-20171127025130\nThread:Lou209/@comment-32769624-20200408040307\nThread:Louie2/@comment-22439-20150717135310\nThread:Loumil4/@comment-22439-20150516072255\nThread:LucasHile/@comment-32769624-20200517124436\nThread:Lucasdigital/@comment-22439-20141211160123\nThread:Lucid Asimov/@comment-22439-20150405125857\nThread:Ludicrusnb/@comment-32769624-20190625170155\nThread:Ludwegg/@comment-32769624-20191117215915\nThread:Ludzikz/@comment-32769624-20200720044209\nThread:Lufia22/@comment-22439-20151014181247\nThread:Lumiria Duval/@comment-32769624-20181226161115\nThread:Lumiria Duval/@comment-32769624-20181226161236\nThread:Lurkertalen/@comment-22439-20160713010423\nThread:Lymark/@comment-22439-20140803121431\nThread:Lynata/@comment-22439-20140809175149\nThread:Lynk,yourlord/@comment-22439-20151212142149\nThread:Lynk1973/@comment-22439-20150725135141\nThread:MADmanOne/@comment-22439-20141003150801\nThread:MBISOK/@comment-22439-20150915125735\nThread:MBISOK/@comment-26983033-20150915145715\nThread:MChrome/@comment-22439-20150215160241\nThread:MERLINDIX/@comment-22439-20161103032930\nThread:MHE111/@comment-22439-20150618181011\nThread:MJR1133/@comment-22439-20140906215739\nThread:MONTItheRed/@comment-22439-20160826175113\nThread:MRNasher/@comment-22439-20150719233917\nThread:MR Allianz Demonceau/@comment-32769624-20200121104339\nThread:MSSQ/@comment-32769624-20181128020003\nThread:Maarduuk/@comment-22439-20160121153536\nThread:Macros Black/@comment-22439-20150813062224\nThread:MadMalkie/@comment-32769624-20181003153435\nThread:Mad Martha/@comment-22439-20140815234544\nThread:Maddavo/@comment-22439-20140821093023\nThread:Maeglin73/@comment-22439-20170216233923\nThread:MafooUK/@comment-22439-20141130035944\nThread:MagicPuncher/@comment-22439-20150206193115\nThread:Magictrip/@comment-32769624-20200704054603\nThread:Magnificent Beard/@comment-22439-20150512181447\nThread:Majinvash/@comment-22439-20160330102807\nThread:Majkl578/@comment-22439-20150123064651\nThread:Makinote/@comment-32769624-20200601215748\nThread:Malakkai69/@comment-22439-20160120070357\nThread:Malakkai69/@comment-22439-20160120070357/@comment-27311171-20160123193205\nThread:Malix82/@comment-22439-20151221083747\nThread:Mandrac/@comment-12138097-20150101080831\nThread:Mandrac/@comment-12138097-20150101080831/@comment-12138097-20150103025336\nThread:Mandrac/@comment-12138097-20150101080831/@comment-12138097-20150105023753\nThread:Mandrac/@comment-12138097-20150101080831/@comment-24360696-20150104142624\nThread:Mandrac/@comment-22439-20141227190640\nThread:Mandrac/@comment-4968814-20141230193244\nThread:Mandrac/@comment-4968814-20141230193244/@comment-24360696-20141230204621\nThread:Mannie Davis/@comment-22439-20151213222355\nThread:Manwolf12/@comment-22439-20150716132925\nThread:Maplesquid/@comment-32769624-20200914143656\nThread:Marblebarbles/@comment-32769624-20181218153940\nThread:MarcusBritish/@comment-32769624-20190102155821\nThread:MarcusBritish/@comment-32769624-20190102160412\nThread:Marcus gord/@comment-32769624-20181110171001\nThread:Marcus gord/@comment-32769624-20181110171001/@comment-26009169-20181111112333\nThread:Marcus gord/@comment-32769624-20181110171001/@comment-55543-20181111112127\nThread:MarikZero/@comment-22439-20141029105633\nThread:Mariusz695/@comment-22439-20151114034536\nThread:Markasoftware/@comment-22439-20150927053220\nThread:MarksMan12345/@comment-22439-20161103101521\nThread:Marquezz/@comment-22439-20150402030525\nThread:Mars Yurip/@comment-22439-20160606204556\nThread:Martinjgde/@comment-32769624-20180925104655\nThread:Match Attax19/@comment-32769624-20200626112000\nThread:Matty Gamer/@comment-22439-20150107071340\nThread:MaxWolff/@comment-22439-20160121181613\nThread:Maxhead79/@comment-32769624-20200221063928\nThread:MaximVonValentine/@comment-22439-20150624041316\nThread:Maxipack13/@comment-22439-20150617174207\nThread:Maxodonis/@comment-32769624-20190625150623\nThread:Maxwell Hauser/@comment-22439-20151217112555\nThread:MayW-DigiMay/@comment-32769624-20171113141431\nThread:McClunkey/@comment-32769624-20200307174524\nThread:Mcdimm/@comment-32769624-20190205102752\nThread:Mebebarney/@comment-22439-20141024215728\nThread:MechanicPluto24/@comment-32769624-20190117153845\nThread:MeddlesomeDic/@comment-22439-20160710001816\nThread:MediocrePigeon/@comment-32769624-20180423065131\nThread:Meg81/@comment-32769624-20200229090010\nThread:MegaBZerK/@comment-32769624-20171220180829\nThread:MellokUA/@comment-22439-20160118133018\nThread:Memory.of.a.dream/@comment-22439-20160711211029\nThread:Mendelt/@comment-22439-20150706084559\nThread:Menroth/@comment-32769624-20190921023255\nThread:MeowMeowNyan/@comment-32769624-20181101022823\nThread:MercurianVI/@comment-32769624-20200619110358\nThread:Messixieuquay/@comment-32769624-20190423074343\nThread:Metabo/@comment-22439-20160117205423\nThread:Metael/@comment-22439-20170305140632\nThread:Mg010a3406/@comment-22439-20141110125553\nThread:Mgiuffrida/@comment-22439-20160828053029\nThread:Mgramm/@comment-32769624-20200519133221\nThread:MiasmaticMouse/@comment-32769624-20191018144951\nThread:Michael-B347/@comment-22439-20150721065048\nThread:Michaelangelo007/@comment-22439-20151008223933\nThread:Michal1717/@comment-32769624-20200419090229\nThread:MickalyaSchmidt/@comment-32769624-20200702042455\nThread:Micromagos/@comment-22439-20170217203502\nThread:Micromagos/@comment-22439-20170217203502/@comment-31329776-20170217204107\nThread:Midnight1138/@comment-32769624-20180219134610\nThread:MidnightWyvern/@comment-22439-20141120013838\nThread:Mihawk Moha/@comment-22439-20141029134925\nThread:Mikarara/@comment-32769624-20200917012745\nThread:Miki99999/@comment-17707061-20131210092134\nThread:Miki99999/@comment-17707061-20131210092134/@comment-17707061-20131210101627\nThread:Miki99999/@comment-17707061-20131210092134/@comment-24270909-20131210095114\nThread:Miki99999/@comment-17707061-20131210092134/@comment-24270909-20131210125622\nThread:Miki99999/@comment-17707061-20131210092134/@comment-24270909-20131210130546\nThread:Miki99999/@comment-22439-20131209121553\nThread:Miki99999/@comment-22439-20131209121553/@comment-24270909-20131209173900\nThread:Miki99999/@comment-22439-20131209121553/@comment-24270909-20131209174023\nThread:Mikuana/@comment-22439-20160327224253\nThread:Miles1317/@comment-32769624-20190530214927\nThread:MinecrackTyler/@comment-32769624-20200802080133\nThread:MiniPax/@comment-22439-20150111224418\nThread:MinnesotaLotion/@comment-32769624-20180630110132\nThread:Mischievousflea/@comment-22439-20151217064229\nThread:MisterFacepalm/@comment-22439-20160108231513\nThread:MisterFy/@comment-32769624-20200219154307\nThread:Mitchell YT/@comment-32769624-20200924053953\nThread:Mitchz95/@comment-32769624-20190628054541\nThread:Mitleidspender/@comment-32769624-20180829115020\nThread:Mknote/@comment-22439-20150417031145\nThread:Mob1leN1nja/@comment-32769624-20190806160358\nThread:Mobibu/@comment-22439-20150124080251\nThread:ModnMaster/@comment-32769624-20200914153514\nThread:MoebiusLive/@comment-22439-20160718144104\nThread:MographMark/@comment-22439-20151102184019\nThread:Moleculor/@comment-32769624-20190112052935\nThread:Moleculor/@comment-32769624-20190612144016\nThread:Mondrak/@comment-22439-20150909175920\nThread:Monkeytommo/@comment-22439-20160114145237\nThread:Monoman567/@comment-32769624-20190118221424\nThread:Montcore/@comment-22439-20160208112315\nThread:MoonmanX22/@comment-22439-20150908133647\nThread:Mordredeon/@comment-22439-20150808202226\nThread:Morgo the monkeygod/@comment-5959508-20130425223232\nThread:Morwo01/@comment-22439-20160712123050\nThread:MountainMan2786/@comment-22439-20151129210138\nThread:MovGP0/@comment-22439-20141227083554\nThread:Mowge/@comment-22439-20150102005906\nThread:MozzyViorla/@comment-32769624-20190204125035\nThread:Mr. Kobayashi/@comment-22439-20150214184849\nThread:MrBl4eP4nda/@comment-22439-20150810120029\nThread:MrClin/@comment-22439-20161022150048\nThread:MrFaert/@comment-22439-20150930095716\nThread:MrFaert/@comment-26210945-20151021043722\nThread:MrFaert/@comment-26210945-20151021043722/@comment-26210945-20151021211042\nThread:MrFaert/@comment-26210945-20151021043722/@comment-26210945-20151024211208\nThread:MrFaert/@comment-26210945-20151021043722/@comment-27032150-20151021071854\nThread:MrFaert/@comment-26210945-20151021043722/@comment-27032150-20151022070137\nThread:MrFoxyCracker/@comment-22439-20150531015329\nThread:MrJiggyDancer/@comment-32769624-20200807163254\nThread:MrOz59/@comment-32769624-20200420032339\nThread:MrWackyGuy/@comment-30928085-20180920195435\nThread:MrWackyGuy/@comment-30928085-20180920195435/@comment-36708155-20180921132931\nThread:MrWackyGuy/@comment-32769624-20180825102357\nThread:Mr Edison Trent/@comment-22439-20150126181613\nThread:Mr Modem/@comment-22439-20150216002715\nThread:Mr Sidebyrnes/@comment-22439-20150802005931\nThread:Mr Taz/@comment-32769624-20180408224736\nThread:Mrfruitcups/@comment-32769624-20200909175000\nThread:Mrs!lk/@comment-22439-20150808183705\nThread:Mrsilk13642/@comment-22439-20150808045031\nThread:Mrtouchngo/@comment-32769624-20180302160611\nThread:Muerthogari/@comment-26810597-20191203223158\nThread:Muerthogari/@comment-26810597-20191203223158/@comment-43649234-20191205183404\nThread:Muerthogari/@comment-32769624-20191203160354\nThread:Mujaki/@comment-32769624-20171111085920\nThread:Mumuv/@comment-32769624-20180127190810\nThread:Murphy2020/@comment-32769624-20190201030920\nThread:Music Luke/@comment-32769624-20190212111201\nThread:Musketeer.elite/@comment-32769624-20171113095657\nThread:Mwerle/@comment-32769624-20190126060814\nThread:Mwerle/@comment-32769624-20190606010053\nThread:MxCherryBlue/@comment-32769624-20200912012809\nThread:Myphammiraso/@comment-32769624-20190612040235\nThread:MysticalArchAngel/@comment-2155082-20161207210657\nThread:MysticalArchAngel/@comment-2155082-20161207210657/@comment-27183948-20161208134841\nThread:Mythic Centaur/@comment-32769624-20190801163247\nThread:NGCT/@comment-32769624-20200520010926\nThread:NORKIE3221/@comment-22439-20150807015615\nThread:NULUSIOS/@comment-32769624-20180116102226\nThread:N skid11/@comment-22439-20141124145523\nThread:Nagydeak/@comment-22439-20150512133750\nThread:Namelessclone01/@comment-22439-20160102232222\nThread:Namiellis68/@comment-22439-20170513102203\nThread:Nanite2000/@comment-22439-20170221225550\nThread:Nanite2000/@comment-26009169-20170816123541\nThread:Nanite2000/@comment-26009169-20170816123541/@comment-31363749-20170816124113\nThread:Nanite2000/@comment-30245159-20170812140035\nThread:Nanite2000/@comment-30245159-20170812140035/@comment-31363749-20170813034133\nThread:Nanite2000/@comment-30928085-20170805055945\nThread:Nanite2000/@comment-30928085-20170805055945/@comment-26009169-20170806123710\nThread:Nanite2000/@comment-30928085-20170805055945/@comment-26009169-20170806143651\nThread:Nanite2000/@comment-30928085-20170805055945/@comment-26009169-20170806145633\nThread:Nanite2000/@comment-30928085-20170805055945/@comment-26009169-20170806223305\nThread:Nanite2000/@comment-30928085-20170805055945/@comment-26009169-20170806224533\nThread:Nanite2000/@comment-30928085-20170805055945/@comment-26009169-20170807195710\nThread:Nanite2000/@comment-30928085-20170805055945/@comment-26009169-20170807200131\nThread:Nanite2000/@comment-30928085-20170805055945/@comment-26009169-20170807200246\nThread:Nanite2000/@comment-30928085-20170805055945/@comment-26009169-20170808122212\nThread:Nanite2000/@comment-30928085-20170805055945/@comment-26009169-20170810221817\nThread:Nanite2000/@comment-30928085-20170805055945/@comment-30928085-20170806083146\nThread:Nanite2000/@comment-30928085-20170805055945/@comment-30928085-20170806143002\nThread:Nanite2000/@comment-30928085-20170805055945/@comment-30928085-20170806145205\nThread:Nanite2000/@comment-30928085-20170805055945/@comment-30928085-20170806181110\nThread:Nanite2000/@comment-30928085-20170805055945/@comment-30928085-20170807153825\nThread:Nanite2000/@comment-30928085-20170805055945/@comment-30928085-20170822125121\nThread:Nanite2000/@comment-30928085-20170805055945/@comment-31363749-20170806015640\nThread:Nanite2000/@comment-30928085-20170805055945/@comment-31363749-20170806205507\nThread:Nanite2000/@comment-30928085-20170805055945/@comment-31363749-20170806235910\nThread:Nanite2000/@comment-30928085-20170805055945/@comment-31363749-20170808095251\nThread:Nanite2000/@comment-30928085-20170805055945/@comment-31363749-20170808210837\nThread:Nanite2000/@comment-30928085-20170805055945/@comment-31363749-20170810002938\nThread:Nanite2000/@comment-30928085-20170805055945/@comment-31363749-20170821122152\nThread:Nanite2000/@comment-30928085-20171128102347\nThread:Nanite2000/@comment-30928085-20171128102347/@comment-30928085-20171129054516\nThread:Nanite2000/@comment-30928085-20171128102347/@comment-30928085-20171129171749\nThread:Nanite2000/@comment-30928085-20171128102347/@comment-30928085-20171130063033\nThread:Nanite2000/@comment-30928085-20171128102347/@comment-31363749-20171129015958\nThread:Nanite2000/@comment-30928085-20171128102347/@comment-31363749-20171130030058\nThread:Napther/@comment-32769624-20180107002334\nThread:Nashaan/@comment-22439-20151216133849\nThread:Nathanmnm/@comment-32769624-20200321113417\nThread:NatsumeAshikaga/@comment-22439-20160617164953\nThread:NatsumeAshikaga/@comment-22439-20160617164953/@comment-28774381-20160621032339\nThread:Navigator80ITA/@comment-32769624-20200331214224\nThread:Nazder/@comment-22439-20151008231330\nThread:Neizir/@comment-22439-20150313143748\nThread:Neker07/@comment-32769624-20190822092729\nThread:Nekonax/@comment-32769624-20180701043502\nThread:Nelkerak/@comment-32769624-20190711001412\nThread:NeoGeoSin/@comment-22439-20160815163520\nThread:Neofactor/@comment-22439-20150326162229\nThread:Neojack/@comment-32769624-20181213105542\nThread:Neowave/@comment-22439-20161027100423\nThread:NeoxRave/@comment-22439-20150612042800\nThread:Netan MalDoran/@comment-32769624-20200802084813\nThread:Nethaufer/@comment-22439-20141221180410\nThread:Netheniel/@comment-22439-20141113062205\nThread:Netston/@comment-32769624-20171222134041\nThread:NevanNedall/@comment-32769624-20181225185153\nThread:NevanNedall/@comment-32769624-20181225191732\nThread:New Model 15/@comment-22439-20161114133742\nThread:Newo15/@comment-32769624-20180219224439\nThread:Nextmhgdanger/@comment-32769624-20180808092534\nThread:Niapet/@comment-22439-20150814204239\nThread:Niatov/@comment-32769624-20200604235641\nThread:Nibiki/@comment-22439-20150428115630\nThread:NickerNanners/@comment-32769624-20190903201039\nThread:Nicomicho/@comment-22439-20160817223951\nThread:Nicou12313/@comment-32769624-20181106004115\nThread:Nicou12313/@comment-32769624-20200216013547\nThread:Night Wing Zero/@comment-32769624-20181208142146\nThread:Night Wing Zero/@comment-32769624-20181208143142\nThread:Nightcat666/@comment-22439-20170107123605\nThread:Nikolai Albinus/@comment-22439-20151128223232\nThread:Nishi1337/@comment-22439-20161113184720\nThread:NiteLynr/@comment-22439-20160423103727\nThread:Nixxter 208/@comment-22439-20150606145546\nThread:NoFoolLikeOne/@comment-32769624-20191130224429\nThread:NoMeansNoED/@comment-32769624-20200706173905\nThread:No Regret/@comment-22439-20160403121129\nThread:Noahtheyeeter/@comment-32769624-20200525225536\nThread:Noekemi/@comment-22439-20151126051731\nThread:Nolfin/@comment-32769624-20200513190652\nThread:Nominix/@comment-22439-20150113210805\nThread:Nominix/@comment-22439-20150113210805/@comment-26003753-20150114023005\nThread:Nonchip/@comment-32769624-20200104130020\nThread:Nondidjos/@comment-22439-20160121170458\nThread:Nondidjos/@comment-22439-20160121170458/@comment-26277251-20160122174203\nThread:Nop277/@comment-32769624-20200709083949\nThread:Nordavind/@comment-22439-20160228122410\nThread:Norlin/@comment-32769624-20200609210108\nThread:Northpin/@comment-32769624-20200304073321\nThread:Noruzenchi86/@comment-32769624-20180418225204\nThread:NotThatMadCat/@comment-32769624-20200904124512\nThread:Novalkar/@comment-22439-20160207144120\nThread:Nox and Sox/@comment-32769624-20191108142137\nThread:Nralbers/@comment-22439-20150606220821\nThread:Nsara/@comment-32769624-20181027172335\nThread:NuclearMissile7/@comment-22439-20151207122958\nThread:Nujalik/@comment-32769624-20180220023017\nThread:Nukeajs/@comment-32769624-20200423205809\nThread:Nukeguard/@comment-22439-20150621225104\nThread:Nuljones/@comment-32769624-20200905180056\nThread:Numerlor/@comment-32769624-20181106111408\nThread:Nutsynator/@comment-22439-20140829174614\nThread:Nuvey/@comment-22439-20160528025551\nThread:Nvmb3rth30ry/@comment-22439-20130114131108\nThread:Nyrany/@comment-32769624-20180206015351\nThread:Nyrexis/@comment-22439-20150712143155\nThread:Nyrexis/@comment-22439-20150712143155/@comment-26662691-20150712143435\nThread:Nytrox1/@comment-32769624-20190329213432\nThread:Nøni/@comment-22439-20170415171825\nThread:OGR Nova/@comment-32769624-20200924084100\nThread:OOZ662/@comment-32769624-20190111075809\nThread:Oathmaster1st/@comment-22439-20141228161532\nThread:Obij3ff/@comment-32769624-20181115055055\nThread:Ocramavaf/@comment-32769624-20200329011743\nThread:Oddaaron00/@comment-22439-20150713150327\nThread:Odysseus3301/@comment-22439-20160727025521\nThread:Off the Rails/@comment-22439-20160303211239\nThread:OldMadDawg/@comment-22439-20141220193846\nThread:Olivia Vespera/@comment-32769624-20171113000938\nThread:Omber/@comment-22439-20160117200545\nThread:Omightyone/@comment-22439-20141230183925\nThread:OneViGOR/@comment-22439-20130922204355\nThread:Onevorah-fduser/@comment-32769624-20200120172502\nThread:Onevorah/@comment-32769624-20200120172502\nThread:OnyxVovin/@comment-22439-20150506181009\nThread:Oogaboogston/@comment-32769624-20181027034438\nThread:Orchestrator/@comment-22439-20150928010233\nThread:OrderOfPhobos/@comment-22439-20160206154732\nThread:Orgoon/@comment-32769624-20190524143056\nThread:Orin Snider/@comment-32769624-20190813102701\nThread:OrionKaelin/@comment-32769624-20200216063943\nThread:OrionandAries06/@comment-32769624-20200711021528\nThread:Orvidius-fduser/@comment-32769624-20180221140211\nThread:Orvidius/@comment-32769624-20180221140211\nThread:Oss133/@comment-22439-20130702091457\nThread:Ostoff/@comment-22439-20160803103023\nThread:Otis B./@comment-22439-20150321140124\nThread:Ottone82/@comment-32769624-20180101180729\nThread:Ouen/@comment-22439-20160722210933\nThread:Outsider7724/@comment-32769624-20200715021145\nThread:Overcon/@comment-32769624-20200513034024\nThread:Ozrix/@comment-22439-20150112200911\nThread:PSR1974/@comment-30928085-20180121202736\nThread:PSR1974/@comment-30928085-20180121202736/@comment-34004391-20180126091756\nThread:PSR1974/@comment-32769624-20171220112021\nThread:Pa3s/@comment-22439-20150311113544\nThread:Panzertard/@comment-22439-20151227110734\nThread:Panzertard/@comment-22439-20151227110734/@comment-27482567-20151227111406\nThread:Panzertard/@comment-22439-20151227110734/@comment-27482567-20151227112238\nThread:Papercrane1001/@comment-22439-20160306200155\nThread:Parpyduck/@comment-22439-20150317014955\nThread:Pascalcph-fduser/@comment-22439-20160406233813\nThread:Pascalcph/@comment-22439-20160406233813\nThread:Pasmans23/@comment-32769624-20200619215223\nThread:PasteteDoeniel/@comment-32769624-20181101155430\nThread:Patrone2012/@comment-32769624-20200102143510\nThread:Paul Morrison/@comment-22439-20150126024653\nThread:Pavel Seagull/@comment-22439-20161019202939\nThread:PavoCristatus701/@comment-32769624-20190403062927\nThread:Pawprintjj/@comment-22439-20151227195502\nThread:Peeper Yeeter/@comment-32769624-20200525120132\nThread:Pegzy/@comment-32769624-20200909190836\nThread:Penthux/@comment-12138097-20141202224052\nThread:Penthux/@comment-12138097-20141214033235\nThread:Penthux/@comment-22439-20140802165503\nThread:Penthux/@comment-22439-20140802165503/@comment-24179636-20140802193401\nThread:Penthux/@comment-22439-20140802165503/@comment-6033893-20140802192837\nThread:Perfect Vyctory/@comment-32769624-20200420232527\nThread:PeterisKrisjanis/@comment-22439-20130904191109\nThread:PeterisKrisjanis/@comment-24270909-20131210133150\nThread:PeterisKrisjanis/@comment-24270909-20131210133150/@comment-17707061-20131210134713\nThread:PeterisKrisjanis/@comment-24270909-20131210133150/@comment-24270909-20131210144546\nThread:Peteyboy1981/@comment-32769624-20190627175541\nThread:Petomatick/@comment-22439-20150929160453\nThread:Petrosa/@comment-22439-20150415052734\nThread:Phantagor/@comment-22439-20150709160204\nThread:Pharku/@comment-32769624-20200501050307\nThread:Pharuan Undearth/@comment-32769624-20181231071549\nThread:PhasmaFelis1/@comment-32769624-20190602201929\nThread:Phatpanz/@comment-22439-20151025153404\nThread:Phazon Xenomorph/@comment-32769624-20181215063144\nThread:Phazon Xenomorph/@comment-32769624-20181215063618\nThread:Phenix19/@comment-32769624-20190717052340\nThread:Phenom D/@comment-32769624-20180723150656\nThread:PhiZeroth/@comment-32769624-20190503200315\nThread:PhilHibbs/@comment-22439-20141101232335\nThread:Phil O Dendron/@comment-32769624-20180209071248\nThread:Philo Wintercoat/@comment-32769624-20171113004149\nThread:Phineas/@comment-22439-20150416221558\nThread:Phmalu/@comment-32769624-20190115163554\nThread:Phmalu/@comment-32769624-20190115163734\nThread:Phoebiousz/@comment-32769624-20180125125406\nThread:Phoenixfire2001/@comment-22439-20151117144117\nThread:Phreedom/@comment-22439-20150601100836\nThread:PianoWizzy/@comment-22439-20151218071446\nThread:Pierschip/@comment-22439-20150524121659\nThread:PijkaCZ/@comment-22439-20151028104850\nThread:Pilot 117/@comment-32769624-20180405215757\nThread:Pindab0ter-fduser/@comment-22439-20150208121858\nThread:Pindab0ter/@comment-22439-20150208121858\nThread:Pinkishu/@comment-22439-20140727224700\nThread:Pinkishu/@comment-24179636-20140728103433\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-17707061-20140728151706\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-24179636-20140728103739\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-24179636-20140728105845\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-24179636-20140728110516\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-24179636-20140728113127\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-24179636-20140728122836\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-24179636-20140728125641\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-24179636-20140728131833\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-24179636-20140728132924\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-24179636-20140728135213\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-24179636-20140728140558\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-24179636-20140728144127\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-24179636-20140728145107\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-24179636-20140728153554\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-24179636-20140728160118\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-24179636-20140728164341\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-24179636-20140728164903\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-24179636-20140728165659\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-24179636-20140728183603\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-4259120-20140728105018\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-4259120-20140728110407\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-4259120-20140728111443\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-4259120-20140728115510\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-4259120-20140728131212\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-4259120-20140728131409\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-4259120-20140728131428\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-4259120-20140728132124\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-4259120-20140728134744\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-4259120-20140728135837\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-4259120-20140728143218\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-4259120-20140728143807\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-4259120-20140728144503\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-4259120-20140728153325\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-4259120-20140728153718\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-4259120-20140728162129\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-4259120-20140728162543\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-4259120-20140728164443\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-4259120-20140728165014\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-4259120-20140728165504\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-4259120-20140728170232\nThread:Pinkishu/@comment-24179636-20140728103433/@comment-91.216.1.103-20140728155804\nThread:Pinkishu/@comment-24179636-20140729122615\nThread:Pinkishu/@comment-24179636-20140730141638\nThread:Pinkishu/@comment-24179636-20140730141638/@comment-24179636-20140730191929\nThread:Pinkishu/@comment-24179636-20140730141638/@comment-24179636-20140731150120\nThread:Pinkishu/@comment-24179636-20140730141638/@comment-24179636-20140731151552\nThread:Pinkishu/@comment-24179636-20140730141638/@comment-24179636-20140731152557\nThread:Pinkishu/@comment-24179636-20140730141638/@comment-24179636-20140731153122\nThread:Pinkishu/@comment-24179636-20140730141638/@comment-24179636-20140731183631\nThread:Pinkishu/@comment-24179636-20140730141638/@comment-24179636-20140801002115\nThread:Pinkishu/@comment-24179636-20140730141638/@comment-24179636-20140801002247\nThread:Pinkishu/@comment-24179636-20140730141638/@comment-4259120-20140730165027\nThread:Pinkishu/@comment-24179636-20140730141638/@comment-4259120-20140731151317\nThread:Pinkishu/@comment-24179636-20140730141638/@comment-4259120-20140731152428\nThread:Pinkishu/@comment-24179636-20140730141638/@comment-4259120-20140731182058\nThread:Pinkishu/@comment-24179636-20140730141638/@comment-4259120-20140731182124\nThread:Pinkishu/@comment-24179636-20140730141638/@comment-4259120-20140731201300\nThread:Pinkishu/@comment-24179636-20140730195242\nThread:Pinkishu/@comment-24179636-20140730195242/@comment-24179636-20140730211313\nThread:Pinkishu/@comment-24179636-20140730195242/@comment-24179636-20140730222126\nThread:Pinkishu/@comment-24179636-20140730195242/@comment-24179636-20140731060019\nThread:Pinkishu/@comment-24179636-20140730195242/@comment-24179636-20140731150211\nThread:Pinkishu/@comment-24179636-20140730195242/@comment-24179636-20140731160403\nThread:Pinkishu/@comment-24179636-20140730195242/@comment-24179636-20140731183346\nThread:Pinkishu/@comment-24179636-20140730195242/@comment-25136754-20140731032550\nThread:Pinkishu/@comment-24179636-20140730195242/@comment-4259120-20140730203845\nThread:Pinkishu/@comment-24179636-20140730195242/@comment-4259120-20140730213404\nThread:Pinkishu/@comment-24179636-20140730195242/@comment-4259120-20140730222335\nThread:Pinkishu/@comment-24179636-20140730195242/@comment-4259120-20140731064902\nThread:Pinkishu/@comment-24179636-20140730195242/@comment-4259120-20140731182003\nThread:Pinkishu/@comment-6033893-20140805185151\nThread:Pinkishu/@comment-6033893-20140805185151/@comment-25227859-20140806105744\nThread:Pinkishu/@comment-6033893-20140805185151/@comment-4259120-20140805202407\nThread:Pinkishu/@comment-6033893-20140805185151/@comment-4259120-20140806150837\nThread:Pinkishu/@comment-6033893-20140805185151/@comment-4259120-20140806184244\nThread:Pinkishu/@comment-6033893-20140805185151/@comment-4259120-20140806185004\nThread:Pinkishu/@comment-6033893-20140805185151/@comment-4259120-20140806190809\nThread:Pinkishu/@comment-6033893-20140805185151/@comment-4259120-20140806191738\nThread:Pinkishu/@comment-6033893-20140805185151/@comment-4259120-20140806192003\nThread:Pinkishu/@comment-6033893-20140805185151/@comment-6033893-20140806173229\nThread:Pinkishu/@comment-6033893-20140805185151/@comment-6033893-20140806190315\nThread:Pinkishu/@comment-6033893-20140805185151/@comment-6033893-20140806191138\nThread:Pinkishu/@comment-6033893-20140805185151/@comment-6033893-20140806192245\nThread:Pio387/@comment-22439-20150115220839\nThread:Pio387/@comment-22439-20150115220839/@comment-86.9.108.33-20150115234914\nThread:PirateKing42/@comment-32769624-20180630074037\nThread:Pirits/@comment-32769624-20180114212544\nThread:Pirow/@comment-22439-20150717182344\nThread:Pitricko/@comment-32769624-20190617190906\nThread:Pitulek/@comment-32769624-20190913221804\nThread:Pixel Bandits/@comment-22439-20150830092657\nThread:Pixel Bandits/@comment-22439-20150830092657/@comment-26942110-20160126163906\nThread:Pixel Bandits/@comment-30928085-20171020114552\nThread:Pixelgamer7/@comment-22439-20160312165210\nThread:Pjaj/@comment-32769624-20180325032703\nThread:PlanetVyctory/@comment-22439-20150109012806\nThread:Planitis/@comment-32769624-20190203165421\nThread:Plasma1119/@comment-22439-20150306063345\nThread:Player1isready/@comment-32769624-20180325220003\nThread:Player863/@comment-22439-20160911034139\nThread:Pobert69/@comment-32769624-20200701162029\nThread:Poetika/@comment-32769624-20181226193034\nThread:Poetika/@comment-32769624-20181226194719\nThread:Porkyworky/@comment-22439-20151030164537\nThread:Portagame/@comment-22439-20170309183829\nThread:Poshblobfish/@comment-12138097-20150114011134\nThread:Poshblobfish/@comment-12138097-20150114011134/@comment-12138097-20150114011535\nThread:Poshblobfish/@comment-12138097-20150114011134/@comment-12138097-20150114012222\nThread:Poshblobfish/@comment-22439-20141025203224\nThread:Poshblobfish/@comment-22439-20141025203224/@comment-25581308-20141029171336\nThread:Positronic Tomato/@comment-22439-20141227215922\nThread:Potkola/@comment-32769624-20180805095529\nThread:Poubelle/@comment-22439-20150329204305\nThread:Poulpe38000/@comment-22439-20141229110757\nThread:Poulpe38000/@comment-22439-20141229110757/@comment-25937738-20141229134708\nThread:Poulpe38000/@comment-22439-20141229110757/@comment-25937738-20141229154704\nThread:Prattusa/@comment-22439-20150618004028\nThread:Prescia/@comment-32769624-20181102045648\nThread:Prime Heretic/@comment-22439-20150717102225\nThread:Pro ahuramazda/@comment-32769624-20171020214300\nThread:ProjectPaatt/@comment-22439-20150925203023\nThread:PrometheusDarko/@comment-22439-20141228143804\nThread:Protozorq/@comment-22439-20150107074222\nThread:Protozorq/@comment-22439-20150107074222/@comment-12138097-20150107082021\nThread:Protozorq/@comment-22439-20150107074222/@comment-25981159-20150107081714\nThread:Protozorq/@comment-22439-20150107074222/@comment-25981159-20150107083307\nThread:Pseudonomyn/@comment-32769624-20200126222955\nThread:Psieonic/@comment-22439-20150513040502\nThread:Psilocyb/@comment-22439-20150515055248\nThread:Psy0n/@comment-22439-20150722070326\nThread:Psy0n/@comment-26725061-20150722201603\nThread:PsychoPhobic/@comment-22439-20150427212304\nThread:Ptmyers01/@comment-32769624-20181228200724\nThread:PublicServiceBroadcasting/@comment-22439-20140726100252\nThread:Pukaloree/@comment-32769624-20190611185401\nThread:Pumzika/@comment-32769624-20180304174423\nThread:Punchymonkey009/@comment-22439-20170228035715\nThread:Purplenum/@comment-32769624-20190505015303\nThread:Pxtseryu/@comment-32769624-20200603133536\nThread:Pyrix/@comment-22439-20150614071750\nThread:Qds1401744017/@comment-32769624-20190823025440\nThread:Qeveren/@comment-32769624-20171014204213\nThread:Qhil/@comment-22439-20151205175156\nThread:Quackarov/@comment-32769624-20180718161931\nThread:Quarhedron/@comment-22439-20150828001004\nThread:Quasikrys/@comment-32769624-20200604093130\nThread:Quasur/@comment-32769624-20200626230616\nThread:Quis345/@comment-32769624-20200712235120\nThread:Qwertyforever/@comment-32769624-20200208124329\nThread:R.sathees/@comment-32769624-20190601132128\nThread:R2d266m/@comment-32769624-20181030205819\nThread:R6Nighthawk/@comment-22439-20141225221110\nThread:RAXXE/@comment-32769624-20171221175957\nThread:REDWIN ONE/@comment-32769624-20200708121858\nThread:RRabbit42/@comment-32769624-20180630230119\nThread:RRetromant/@comment-32769624-20200116071752\nThread:RUSHER0600/@comment-32769624-20180215093729\nThread:RUSHv4/@comment-22439-20150114160125\nThread:Rabbit Fear/@comment-22439-20150825075635\nThread:Rabbit Fear/@comment-32769624-20200703150644\nThread:Raf von Thorn/@comment-22439-20150613202602\nThread:Ragn4rok234/@comment-22439-20150606173705\nThread:RagnarSvartmon/@comment-32769624-20190503085905\nThread:Rahulyadavseo01/@comment-32769624-20200103082543\nThread:RainA/@comment-32769624-20181028115218\nThread:Rainoa/@comment-22439-20170117074051\nThread:Rakeesh/@comment-22439-20150215210747\nThread:Rakmarok/@comment-32769624-20180221164154\nThread:Ramiwhite/@comment-32769624-20190117161624\nThread:Ramiwhite/@comment-32769624-20190118223008\nThread:Rando First Blood Part Two/@comment-32769624-20190526143057\nThread:RandomStilskin/@comment-22439-20140225100329\nThread:RandomStilskin/@comment-22439-20140225100329/@comment-24179636-20140301205110\nThread:RandomStilskin/@comment-22439-20140225100329/@comment-24471699-20140301194547\nThread:Randomenemy321/@comment-22439-20150226174910\nThread:Randomenemy321/@comment-22439-20150226174910/@comment-26149310-20150226191150\nThread:Randomenemy321/@comment-22439-20150226174910/@comment-86.168.218.13-20150226191049\nThread:RandomlyGenerated69/@comment-32769624-20200730190839\nThread:Rapidfire88/@comment-22439-20150722201604\nThread:Rapidfire88/@comment-26807290-20150723035036\nThread:Rappyfx/@comment-22439-20150701034431\nThread:Ratcom/@comment-32769624-20181109014328\nThread:Ratking15/@comment-22439-20150703162552\nThread:RawrZillaFace/@comment-22439-20160821122736\nThread:Raylan13/@comment-24471699-20140307144219\nThread:Raynerl/@comment-22439-20150121142944\nThread:Raynor1111/@comment-22439-20150426090150\nThread:Rayyyy91/@comment-22439-20161108030259\nThread:RazielAlphadios/@comment-32769624-20200328185304\nThread:Razr Wolfgang/@comment-32769624-20200419160424\nThread:Rburns625/@comment-32769624-20190309165155\nThread:ReCaptcherer/@comment-32769624-20200215232530\nThread:ReXxX1984/@comment-22439-20160320233527\nThread:RealFurion/@comment-22439-20160104093350\nThread:Real state/@comment-32769624-20191201190425\nThread:Realsense/@comment-22439-20150520211645\nThread:Realsense/@comment-22439-20150520211645/@comment-26009169-20150520212619\nThread:Realsense/@comment-22439-20150520211645/@comment-26418893-20150520211915\nThread:Realsense/@comment-22439-20150520211645/@comment-26418893-20150520230128\nThread:Reapers Gale/@comment-22439-20150429104813\nThread:Rebel The Husky/@comment-32769624-20180519150130\nThread:Red469/@comment-22439-20150914223915\nThread:Red469/@comment-22439-20150914223915/@comment-26987253-20150925130859\nThread:RedBomb1/@comment-24526567-20171010144831\nThread:RedBomb1/@comment-24526567-20171010144831/@comment-33279756-20171010145123\nThread:RedBomb1/@comment-32769624-20171010144044\nThread:RedRocky54/@comment-32769624-20181218051559\nThread:RedRocky54/@comment-32769624-20181219052802\nThread:RedSpeeds17/@comment-32769624-20190205190816\nThread:RedWho/@comment-22439-20160923094034\nThread:RedWolfProject/@comment-22439-20160605122452\nThread:Redoneter593/@comment-32769624-20180225032458\nThread:Redzer88/@comment-22439-20141217152227\nThread:Redzer88/@comment-22439-20141217152227/@comment-192.198.151.36-20141217155240\nThread:Rejectedpotato/@comment-32769624-20190111181940\nThread:Rellikplug/@comment-32769624-20190426045021\nThread:RelynSerano/@comment-32769624-20171215045438\nThread:Ren Kurogane/@comment-22439-20150320145857\nThread:Renevato/@comment-22439-20151020173656\nThread:ReplicatorED/@comment-22439-20160914154948\nThread:ReplicatorED/@comment-5959508-20160914190259\nThread:Reticulum/@comment-22439-20150515070700\nThread:Retribution1337/@comment-22439-20151110230856\nThread:Retrogav/@comment-32769624-20190919045452\nThread:Revanche/@comment-32769624-20180404140848\nThread:Rexosaur7/@comment-32769624-20181126181057\nThread:Rhadagast/@comment-22439-20151224025739\nThread:Rhaikh/@comment-22439-20140820073139\nThread:Rhaversen/@comment-32769624-20180228081303\nThread:RheaAyase/@comment-22439-20150627012941\nThread:RheaAyase/@comment-26599825-20150807202327\nThread:RichardAHallett/@comment-2155082-20151102045935\nThread:RichardAHallett/@comment-2155082-20151102045935/@comment-1028741-20151102050411\nThread:RichardAHallett/@comment-2155082-20151102045935/@comment-2155082-20151102050658\nThread:RichardAHallett/@comment-2155082-20151102052435\nThread:RichardAHallett/@comment-2155082-20151102052435/@comment-1028741-20151102052529\nThread:RichardAHallett/@comment-22439-20150318163733\nThread:RichardAHallett/@comment-25391023-20151029233532\nThread:RichardAHallett/@comment-25391023-20151029233532/@comment-1028741-20151030055822\nThread:RichardAHallett/@comment-25391023-20151029233532/@comment-25391023-20151030080720\nThread:RichardAHallett/@comment-27283317-20151125021755\nThread:RichardAHallett/@comment-27283317-20151125021755/@comment-1028741-20151125023531\nThread:RichardAHallett/@comment-27336833-20151219085401\nThread:Richardtknightwdf/@comment-22439-20151128154647\nThread:Rik079/@comment-32769624-20180207071404\nThread:Rik079/@comment-32769624-20200610075059\nThread:Rildin/@comment-22439-20160103050930\nThread:RilicTheWolf/@comment-22439-20151223224655\nThread:Ripkord/@comment-22439-20151220203553\nThread:Ripred Ganin/@comment-22439-20160621183833\nThread:Ripto22475/@comment-26009169-20170427143009\nThread:Ripto22475/@comment-26009169-20170427143009/@comment--20170427185619\nThread:Rizal72/@comment-22439-20150722100846\nThread:Rizal72/@comment-22439-20150722100846/@comment-26808390-20150722100938\nThread:Rj16066/@comment-22439-20140804062026\nThread:RjTurtleSquid/@comment-32769624-20171221052646\nThread:Rkcampelo/@comment-32769624-20190330130229\nThread:Rmonsen/@comment-22439-20160917221041\nThread:Roadrunner1971A/@comment-32769624-20190817035613\nThread:Rob492/@comment-32769624-20191116214330\nThread:RobCraft/@comment-32769624-20200531034847\nThread:Robborboy/@comment-32769624-20180103092455\nThread:Robert Marc Knoth/@comment-32769624-20200522171123\nThread:RoboYote/@comment-32769624-20191017214109\nThread:Rochopsian/@comment-32769624-20180828192208\nThread:Rocktester/@comment-32769624-20200905010059\nThread:Rockycodeman/@comment-32769624-20191105212219\nThread:Roddy1990/@comment-32769624-20180629024933\nThread:Roelie73/@comment-32769624-20190505072716\nThread:Rogerawright/@comment-22439-20160827153209\nThread:Rohaq/@comment-22439-20160921162352\nThread:Rohtakdigital/@comment-32769624-20200622095500\nThread:RolfRolf1337/@comment-32769624-20200305122032\nThread:Ronsoak/@comment-32769624-20170917023507\nThread:Ronzik/@comment-32769624-20200411191610\nThread:Roober the Stroober/@comment-32769624-20180513144812\nThread:Rophanger/@comment-22439-20160328170844\nThread:Roschnicron/@comment-22439-20151105122801\nThread:Rossilaz/@comment-32769624-20200702130321\nThread:Roughpup/@comment-22439-20150116160329\nThread:Roughpup/@comment-26012648-20150116151347\nThread:Roybe/@comment-32769624-20180308205938\nThread:Rozmar Hvalross/@comment-32769624-20181128014438\nThread:Rreg29/@comment-22439-20141224014828\nThread:Rrrman/@comment-22439-20141017205202\nThread:Rrrman/@comment-22439-20141017205202/@comment-24179636-20141018114033\nThread:Rrrman/@comment-22439-20141017205202/@comment-4919957-20141017213918\nThread:Rubinelle1/@comment-32769624-20190126002228\nThread:Ruby60475/@comment-32769624-20180107133825\nThread:Ruchalus/@comment-32769624-20171108194032\nThread:Ruibarian/@comment-32769624-20200504084304\nThread:Rukja/@comment-22439-20140910053111\nThread:Rukja/@comment-25335609-20140910102200\nThread:Rukja/@comment-25335609-20140910102200/@comment-1608156-20140910102554\nThread:RulerOfEverything/@comment-22439-20160905141458\nThread:RumekFuria/@comment-32769624-20200419155907\nThread:RustInPieces/@comment-32769624-20190613013332\nThread:Rutzefu/@comment-22439-20141219175813\nThread:Rxsmok-fduser/@comment-32769624-20190413102934\nThread:Rxsmok/@comment-32769624-20190413102934\nThread:Rykaar/@comment-32769624-20181201141952\nThread:S.Kracht/@comment-32769624-20200904051102\nThread:S3lvatico/@comment-22439-20150917095122\nThread:SANCOON/@comment-32769624-20190813144350\nThread:SG935/@comment-30928085-20171127055205\nThread:SPOOKS80/@comment-22439-20151226234230\nThread:SVL KrizZ/@comment-22439-20160807155026\nThread:SWCC/@comment-32769624-20180517011941\nThread:Sabotrax/@comment-32769624-20180312132657\nThread:Sachiel3/@comment-22439-20150505193938\nThread:SadisticSavior/@comment-22439-20150515012818\nThread:Sagdatmar/@comment-32769624-20180923100816\nThread:Sajano90/@comment-32769624-20200129080252\nThread:SaliVader/@comment-22439-20160309225935\nThread:Salmonllama/@comment-32769624-20200410214810\nThread:Sam Vanguard/@comment-12138097-20141212195056\nThread:Sam Vanguard/@comment-12138097-20141212195056/@comment-25470813-20141221183252\nThread:Sam Vanguard/@comment-22439-20141004091258\nThread:Sam Vanguard/@comment-22439-20141004091258/@comment-24179636-20141004140711\nThread:Sam Vanguard/@comment-22439-20141004091258/@comment-25470813-20141004091440\nThread:Sam Vanguard/@comment-22439-20141004091258/@comment-25470813-20141005150140\nThread:SamboNZ/@comment-22439-20141229091213\nThread:Sams52/@comment-32769624-20180725204537\nThread:Sanage14*/@comment-22439-20150218060822\nThread:Sanguinius Angelus/@comment-32769624-20200526101810\nThread:SanguisDiabolus/@comment-22439-20160902051535\nThread:Sangyn/@comment-22439-20160129081948\nThread:Sannemen/@comment-32769624-20200623182818\nThread:Santaranger/@comment-22439-20150606122639\nThread:SanyaJuutilainen/@comment-32769624-20190908001524\nThread:Sasquatch the great/@comment-32769624-20200312181808\nThread:Sasquatch the great/@comment-32769624-20200312181808/@comment-44180665-20200522164420\nThread:Sasquatch the great/@comment-44180665-20200501071014\nThread:Sasquatch the great/@comment-44180665-20200501071014/@comment-44180665-20200501071149\nThread:Sathayorn/@comment-22439-20150423092410\nThread:Saucy Wiggles/@comment-22439-20140911195101\nThread:Saucy Wiggles/@comment-22439-20140911195101/@comment-25409530-20140911195322\nThread:Scatoogle/@comment-32769624-20180510111724\nThread:Scctldq123/@comment-22439-20161010061608\nThread:Scheidt/@comment-32769624-20180822200843\nThread:Schnappischnap/@comment-32769624-20180331172208\nThread:Schrauger-fduser/@comment-22439-20150121100925\nThread:Schrauger/@comment-22439-20150121100925\nThread:Scifiguru/@comment-22439-20150307023146\nThread:ScorpidBlackDragon/@comment-32769624-20200808040440\nThread:Scotthesilent/@comment-32769624-20200913165051\nThread:Scottyart/@comment-32769624-20181220202424\nThread:Scoutpie/@comment-22439-20150713032720\nThread:ScrabbleVoice/@comment-32769624-20200515030927\nThread:Seamus Donohue/@comment-22439-20150326163200\nThread:SebStoodley/@comment-22439-20160714123036\nThread:Seforian/@comment-32769624-20200615223108\nThread:Seizure1990/@comment-32769624-20200831085950\nThread:Sekotser/@comment-22439-20161008130654\nThread:Sekuiya/@comment-32769624-20200806214528\nThread:Selfburner/@comment-22439-20161031160337\nThread:Senturion1186/@comment-22439-20150501171151\nThread:SepAvatar14/@comment-22439-20160809204731\nThread:SepAvatar14/@comment-22439-20160809204731/@comment-29560380-20160809210630\nThread:Seraphimneeded/@comment-22439-20151118195744\nThread:Serbanstein/@comment-32769624-20190317093312\nThread:Serikst/@comment-22439-20150801114231\nThread:Seriousrikk/@comment-22439-20150311082606\nThread:SethInABlender/@comment-32769624-20200517052942\nThread:Sethiroth66/@comment-22439-20150808201259\nThread:Seud/@comment-22439-20150516091516\nThread:Sev Mara/@comment-12138097-20150105224934\nThread:Sev Mara/@comment-12138097-20150105224934/@comment-25974778-20150105225054\nThread:Sev Mara/@comment-22439-20150106014759\nThread:Sevatar40k/@comment-32769624-20200120210205\nThread:SeventhVixen/@comment-32769624-20200916143610\nThread:Several/@comment-22439-20150705120628\nThread:Sfinxul/@comment-22439-20151231125243\nThread:Sgtdeous/@comment-22439-20141230001212\nThread:Shabooka/@comment-32769624-20171113200626\nThread:Shader UA/@comment-22439-20151114184116\nThread:Shadevari/@comment-22439-20150110123354\nThread:Shadow11177/@comment-32769624-20191010052713\nThread:Shadowgar/@comment-32769624-20190114210228\nThread:Shadowgar/@comment-32769624-20190114210502\nThread:Shadowgun1102/@comment-32769624-20190405073930\nThread:Shadowgun1103/@comment-32769624-20190514084207\nThread:Shadowhuntsman7/@comment-22439-20150723095203\nThread:Shadowjonathan/@comment-32769624-20181213094823\nThread:Shads76/@comment-12138097-20150318201140\nThread:Shads76/@comment-12138097-20150318201140/@comment-12138097-20150319034522\nThread:Shads76/@comment-12138097-20150318201140/@comment-25490957-20150319033002\nThread:Shads76/@comment-12138097-20150318201140/@comment-25490957-20150319034901\nThread:Shads76/@comment-12138097-20150318201140/@comment-26009169-20150319113218\nThread:Shads76/@comment-22439-20150306173409\nThread:Shaheena Evelga/@comment-32769624-20190831215729\nThread:Shane0ooo/@comment-32769624-20191122062119\nThread:Shane Graytail/@comment-22439-20150329175306\nThread:Shaphron/@comment-22439-20150101114615\nThread:Sharlikran/@comment-22439-20160704205219\nThread:Sharpshifter/@comment-22439-20130131231605\nThread:Sharpshifter/@comment-22439-20130131231605/@comment-6245619-20130131233020\nThread:ShatteredOrbit/@comment-32769624-20200207093627\nThread:Shellafee/@comment-22439-20150726125622\nThread:Shihao21/@comment-12138097-20150204021646\nThread:Shihao21/@comment-22439-20150203230726\nThread:Shikaka00/@comment-32769624-20200305143039\nThread:Shimacu/@comment-22439-20150109054330\nThread:Shinkaze33/@comment-30928085-20190130061939\nThread:Shinkaze33/@comment-32769624-20190125193131\nThread:Shinkaze33/@comment-32769624-20190128031059\nThread:ShiroHagen/@comment-22439-20150126050627\nThread:Shiroi Hane/@comment-22439-20170701180848\nThread:Shogunnate/@comment-22439-20160407034233\nThread:Shokanshi/@comment-32769624-20190117233913\nThread:Shukari/@comment-22439-20150107234656\nThread:Shwinky49/@comment-32769624-20190825050547\nThread:Sianmink/@comment-32769624-20171202175106\nThread:Siegard/@comment-22439-20151109144408\nThread:Signal5/@comment-22439-20150711210649\nThread:Signal Five/@comment-22439-20150620193142\nThread:SilentGarud/@comment-32769624-20171206124701\nThread:Silenthebi/@comment-22439-20150503094207\nThread:Silenthebi/@comment-22439-20150503094207/@comment-26362216-20150503115323\nThread:Silentpiranha/@comment-22439-20150405144125\nThread:Silverfan0/@comment-32769624-20190510134457\nThread:Silyus/@comment-32769624-20200501183948\nThread:Silyus/@comment-32769624-20200501183948/@comment-459974-20200502015915\nThread:SingularisFox/@comment-32769624-20190501142935\nThread:Singularity iOS/@comment-22439-20150423133536\nThread:Sinixster11b/@comment-22439-20151119210657\nThread:Sinnaj63/@comment-32769624-20191001192132\nThread:Sinnersprayer/@comment-2155082-20160119045028\nThread:Sinnersprayer/@comment-2155082-20160119045028/@comment-2155082-20160119211112\nThread:Sinnersprayer/@comment-2155082-20160119045028/@comment-2155082-20160123065237\nThread:Sinnersprayer/@comment-2155082-20160119045028/@comment-27634322-20160119071312\nThread:Sinnersprayer/@comment-2155082-20160119045028/@comment-27634322-20160122194914\nThread:Sinnersprayer/@comment-2155082-20160123050223\nThread:Sinnersprayer/@comment-2155082-20160123050223/@comment-27634322-20160124235852\nThread:Sinnersprayer/@comment-22439-20160118160802\nThread:Sinnersprayer89/@comment-32769624-20191108201222\nThread:Sintering Steel/@comment-22439-20160728161806\nThread:Sinxar/@comment-22439-20160102044105\nThread:Sir.FireMouse/@comment-32769624-20200904154904\nThread:SirAmiga/@comment-32769624-20190430125828\nThread:SirBumperJumperOfAvalon/@comment-32769624-20180103114325\nThread:SirKaldar/@comment-22439-20150903015422\nThread:SirKaldar/@comment-22439-20150903015422/@comment-26953897-20150903015842\nThread:SirSpooks/@comment-22439-20150815050352\nThread:Sir Porky McBacon/@comment-22439-20150322121146\nThread:Sircompo/@comment-32769624-20181226223910\nThread:Skibacon/@comment-22439-20160131030531\nThread:Skitthecrit/@comment-32769624-20190607031851\nThread:Skogwolfen/@comment-32769624-20200222222744\nThread:Skwurr/@comment-22439-20150310210631\nThread:SkyHunnter/@comment-22439-20160321153414\nThread:SkyLock8973/@comment-32769624-20191220181313\nThread:Slark2/@comment-32769624-20180712022439\nThread:Sleek34/@comment-22439-20151216112854\nThread:Slidey Lad/@comment-32769624-20180328231220\nThread:SlimTheDiabolical/@comment-22439-20150417142156\nThread:Slimydoom/@comment-32769624-20200711164644\nThread:Slimysomething/@comment-32769624-20190418074346\nThread:Slinky317/@comment-32769624-20190224190101\nThread:Slothman320/@comment-22439-20150302225818\nThread:Slowpoke67/@comment-32769624-20191116203855\nThread:Slugsie/@comment-22439-20140731191223\nThread:Smacker65/@comment-22439-20140612131122\nThread:Smaudet/@comment-32769624-20180704034851\nThread:Smdepot/@comment-22439-20160302164929\nThread:Smintili/@comment-22439-20151216140022\nThread:Smooticus/@comment-22439-20150112160956\nThread:Sn0w181/@comment-32769624-20200824104005\nThread:Snackington/@comment-32769624-20190316002341\nThread:SnookyShark/@comment-32769624-20180302013601\nThread:Snuble/@comment-22439-20140801060000\nThread:Soa Crow/@comment-32769624-20190702210531\nThread:Soicaumientrung/@comment-32769624-20190424183335\nThread:Soifua/@comment-32769624-20180514164848\nThread:Solidusjungle/@comment-22439-20160117082334\nThread:Solsticide/@comment-32769624-20180416192657\nThread:Someguy2020503/@comment-32769624-20200616042915\nThread:Someone stole my name: Kaisler/@comment-22439-20150103004517\nThread:Son Of Kyuss/@comment-32769624-20191114215400\nThread:Sonic306/@comment-22439-20160203202904\nThread:SonyaUliana/@comment-32769624-20200805005023\nThread:Soulflare3/@comment-22439-20151202194408\nThread:SoulofValorium/@comment-32769624-20180401131052\nThread:Soulofthereaver/@comment-32769624-20181007123223\nThread:SourcePony/@comment-22439-20150527065107\nThread:SourcePony/@comment-26009169-20150607015326\nThread:Sourison/@comment-22439-20150318161500\nThread:SovietWind/@comment-32769624-20200905155515\nThread:Sp4rkR4t/@comment-12138097-20141226221329\nThread:Sp4rkR4t/@comment-22439-20140808232513\nThread:SpaceBadger117/@comment-32769624-20200512160742\nThread:SpaceMerlin/@comment-32769624-20180805091700\nThread:SpaceWolf04/@comment-32769624-20200930020737\nThread:Space Rhino/@comment-32769624-20171120190933\nThread:Space Rhino/@comment-32769624-20171120190933/@comment-33715037-20171120191157\nThread:SpadedTail/@comment-32769624-20190926005826\nThread:SparroHawc/@comment-32769624-20200806234448\nThread:Spartan0536/@comment-22439-20150902065933\nThread:Spartan5811/@comment-22439-20150202094007\nThread:Spatzz/@comment-32769624-20171230005230\nThread:SpazeMan/@comment-22439-20150606120530\nThread:SpecialOperationsTrooper/@comment-24314079-20190105063713\nThread:SpecialOperationsTrooper/@comment-32769624-20190105055808\nThread:SpecialOperationsTrooper/@comment-32769624-20190105055808/@comment-24314079-20190105063914\nThread:SpecialOperationsTrooper/@comment-32769624-20190105055831\nThread:SpecialOperationsTrooper/@comment-32769624-20190105055831/@comment-24314079-20190105063848\nThread:Spectralsalmon/@comment-22439-20151129002248\nThread:Spidermindgames/@comment-32769624-20180104095921\nThread:SpilcapesQ/@comment-32769624-20200109183129\nThread:Spinningspark/@comment-30928085-20171219203641\nThread:Spinningspark/@comment-32769624-20171029121211\nThread:Spliffster74/@comment-22439-20150301121230\nThread:Spoilers1/@comment-22439-20150528220717\nThread:Spoilers1/@comment-72.241.143.238-20150629042109\nThread:SpyTec/@comment-1028741-20151111040522\nThread:SpyTec/@comment-1028741-20151111040522/@comment-1028741-20151111165403\nThread:SpyTec/@comment-1028741-20151111040522/@comment-26009169-20151111101539\nThread:SpyTec/@comment-1028741-20151113201616\nThread:SpyTec/@comment-1028741-20151113201616/@comment-1028741-20151113202146\nThread:SpyTec/@comment-1028741-20151113201616/@comment-26009169-20151113202016\nThread:SpyTec/@comment-12138097-20150128181757\nThread:SpyTec/@comment-12138097-20150128181757/@comment-26009169-20150128182142\nThread:SpyTec/@comment-12138097-20150129223019\nThread:SpyTec/@comment-12138097-20150129223019/@comment-26009169-20150129223600\nThread:SpyTec/@comment-12138097-20150224095923\nThread:SpyTec/@comment-12138097-20150320065315\nThread:SpyTec/@comment-12138097-20150320065315/@comment-12138097-20150320174858\nThread:SpyTec/@comment-12138097-20150320065315/@comment-26009169-20150320122554\nThread:SpyTec/@comment-12138097-20150606205018\nThread:SpyTec/@comment-12138097-20150606205018/@comment-26009169-20150606210045\nThread:SpyTec/@comment-12138097-20150607230759\nThread:SpyTec/@comment-12138097-20150607230759/@comment-26009169-20150607231100\nThread:SpyTec/@comment-12138097-20150705214915\nThread:SpyTec/@comment-12138097-20150705214915/@comment-26009169-20150705215606\nThread:SpyTec/@comment-12138097-20150726011611\nThread:SpyTec/@comment-12138097-20150726011611/@comment-12138097-20150727052828\nThread:SpyTec/@comment-12138097-20150726011611/@comment-26009169-20150726212915\nThread:SpyTec/@comment-156.3.54.203-20150520195813\nThread:SpyTec/@comment-156.3.54.203-20150529193915\nThread:SpyTec/@comment-156.3.54.203-20150529193915/@comment-156.3.54.203-20150529195321\nThread:SpyTec/@comment-156.3.54.203-20150529193915/@comment-156.3.54.203-20150601150125\nThread:SpyTec/@comment-156.3.54.203-20150529193915/@comment-26009169-20150529194210\nThread:SpyTec/@comment-156.3.54.203-20150529193915/@comment-26009169-20150529195628\nThread:SpyTec/@comment-156.3.54.203-20150529193915/@comment-26009169-20150601150531\nThread:SpyTec/@comment-156.3.54.203-20150604151321\nThread:SpyTec/@comment-156.3.54.203-20150604151321/@comment-156.3.54.203-20150604194915\nThread:SpyTec/@comment-156.3.54.203-20150604151321/@comment-26009169-20150604152630\nThread:SpyTec/@comment-173.55.173.227-20150608032448\nThread:SpyTec/@comment-173.55.173.227-20150608032448/@comment-173.55.173.227-20150608135703\nThread:SpyTec/@comment-173.55.173.227-20150608032448/@comment-26009169-20150608122757\nThread:SpyTec/@comment-173.55.173.227-20150608032448/@comment-26009169-20150608123017\nThread:SpyTec/@comment-174.102.154.114-20150328012557\nThread:SpyTec/@comment-174.102.154.114-20150328012557/@comment-12138097-20150328022240\nThread:SpyTec/@comment-174.102.154.114-20150328012557/@comment-26009169-20150328155604\nThread:SpyTec/@comment-20211881-20150611010956\nThread:SpyTec/@comment-20211881-20150611010956/@comment-26009169-20150611112810\nThread:SpyTec/@comment-2155082-20150627080511\nThread:SpyTec/@comment-2155082-20150627080511/@comment-26009169-20150627120744\nThread:SpyTec/@comment-2155082-20150911203650\nThread:SpyTec/@comment-2155082-20150911203650/@comment-2155082-20150911204857\nThread:SpyTec/@comment-2155082-20150911203650/@comment-2155082-20150911212339\nThread:SpyTec/@comment-2155082-20150911203650/@comment-26009169-20150911204636\nThread:SpyTec/@comment-2155082-20150911203650/@comment-26009169-20150911210733\nThread:SpyTec/@comment-2155082-20151124045320\nThread:SpyTec/@comment-2155082-20151124045320/@comment-2155082-20151124045925\nThread:SpyTec/@comment-2155082-20151124045320/@comment-2155082-20151213050325\nThread:SpyTec/@comment-2155082-20151124045320/@comment-26009169-20151124074129\nThread:SpyTec/@comment-2155082-20151124045320/@comment-26009169-20160126162653\nThread:SpyTec/@comment-2155082-20151124045320/@comment-26009169-20160126162653/@comment-26009169-20160908003749\nThread:SpyTec/@comment-2155082-20151124045320/@comment-26009169-20160126162653/@comment-94.194.68.7-20160907201000\nThread:SpyTec/@comment-2155082-20151124045320/@comment-26942110-20160126162529\nThread:SpyTec/@comment-2155082-20151124045320/@comment-26942110-20160205105240\nThread:SpyTec/@comment-2155082-20151124045320/@comment-5959508-20151124141120\nThread:SpyTec/@comment-2155082-20151124045320/@comment-5959508-20151213091356\nThread:SpyTec/@comment-2155082-20151124045320/@comment-5959508-20151213100457\nThread:SpyTec/@comment-2155082-20151124045320/@comment-77.103.85.206-20151213091252\nThread:SpyTec/@comment-2155082-20160601041301\nThread:SpyTec/@comment-2155082-20160601041301/@comment-2155082-20160602034635\nThread:SpyTec/@comment-2155082-20160601041301/@comment-26009169-20160601124156\nThread:SpyTec/@comment-2155082-20160613034050\nThread:SpyTec/@comment-2155082-20160613034050/@comment-26009169-20160613034241\nThread:SpyTec/@comment-2155082-20160721034811\nThread:SpyTec/@comment-2155082-20160721034811/@comment-192.136.173.221-20160729184919\nThread:SpyTec/@comment-2155082-20160721034811/@comment-2155082-20160727034141\nThread:SpyTec/@comment-2155082-20160721034811/@comment-2155082-20160729033211\nThread:SpyTec/@comment-2155082-20160721034811/@comment-2155082-20160729182953\nThread:SpyTec/@comment-2155082-20160721034811/@comment-26009169-20160721093325\nThread:SpyTec/@comment-2155082-20160810184533\nThread:SpyTec/@comment-2155082-20160810184533/@comment-2155082-20160811031154\nThread:SpyTec/@comment-2155082-20160810184533/@comment-2155082-20160819033613\nThread:SpyTec/@comment-2155082-20160810184533/@comment-2155082-20160821032418\nThread:SpyTec/@comment-2155082-20160810184533/@comment-26009169-20160810192752\nThread:SpyTec/@comment-2155082-20160810184533/@comment-26009169-20160819212428\nThread:SpyTec/@comment-2155082-20160810184533/@comment-5959508-20160820201428\nThread:SpyTec/@comment-2155082-20160810184533/@comment-5959508-20160820203122\nThread:SpyTec/@comment-2155082-20170214181749\nThread:SpyTec/@comment-2155082-20170214181749/@comment-2155082-20170215010953\nThread:SpyTec/@comment-2155082-20170214181749/@comment-2155082-20170215011357\nThread:SpyTec/@comment-2155082-20170214181749/@comment-26009169-20170214185917\nThread:SpyTec/@comment-2155082-20170214181749/@comment-26009169-20170214200247\nThread:SpyTec/@comment-2155082-20170531204738\nThread:SpyTec/@comment-2155082-20170531204738/@comment-2155082-20170604201132\nThread:SpyTec/@comment-2155082-20170531204738/@comment-2155082-20170604210548\nThread:SpyTec/@comment-2155082-20170531204738/@comment-26009169-20170604124602\nThread:SpyTec/@comment-2155082-20170531204738/@comment-26009169-20170604203046\nThread:SpyTec/@comment-2155082-20170531204738/@comment-30928085-20170601060316\nThread:SpyTec/@comment-217.252.95.185-20150627193639\nThread:SpyTec/@comment-217.252.95.185-20150627193639/@comment-26009169-20150627194050\nThread:SpyTec/@comment-217.252.95.185-20150627214703\nThread:SpyTec/@comment-217.252.95.185-20150627214703/@comment-26009169-20150627221003\nThread:SpyTec/@comment-217.252.95.185-20150628165526\nThread:SpyTec/@comment-22439-20150115123538\nThread:SpyTec/@comment-22439-20150115123538/@comment-12138097-20150115205541\nThread:SpyTec/@comment-22439-20150115123538/@comment-26009169-20150115163151\nThread:SpyTec/@comment-22439-20150115123538/@comment-26009169-20150115210744\nThread:SpyTec/@comment-24503385-20150521154450\nThread:SpyTec/@comment-24503385-20150521154450/@comment-24503385-20150522002657\nThread:SpyTec/@comment-24503385-20150521154450/@comment-26009169-20150521155126\nThread:SpyTec/@comment-24503385-20150521154450/@comment-26009169-20150525153828\nThread:SpyTec/@comment-24503385-20150608133637\nThread:SpyTec/@comment-24503385-20150608133637/@comment-24503385-20150608142957\nThread:SpyTec/@comment-24503385-20150608133637/@comment-26009169-20150608135429\nThread:SpyTec/@comment-24503385-20150608133637/@comment-26009169-20150608135518\nThread:SpyTec/@comment-24503385-20150608231652\nThread:SpyTec/@comment-24503385-20150608231652/@comment-24503385-20150609013940\nThread:SpyTec/@comment-24503385-20150608231652/@comment-24503385-20150609151626\nThread:SpyTec/@comment-24503385-20150608231652/@comment-26009169-20150608231938\nThread:SpyTec/@comment-24503385-20150608231652/@comment-26009169-20150609015108\nThread:SpyTec/@comment-24503385-20150608231652/@comment-26009169-20150609025027\nThread:SpyTec/@comment-24503385-20150610231807\nThread:SpyTec/@comment-24503385-20150610231807/@comment-24503385-20150611011430\nThread:SpyTec/@comment-24503385-20150610231807/@comment-26009169-20150610232328\nThread:SpyTec/@comment-24503385-20150611013224\nThread:SpyTec/@comment-24503385-20150611013224/@comment-26009169-20150611112702\nThread:SpyTec/@comment-24851773-20171221012951\nThread:SpyTec/@comment-24851773-20171221012951/@comment-24851773-20180103003950\nThread:SpyTec/@comment-24851773-20171221012951/@comment-26009169-20171226002839\nThread:SpyTec/@comment-25463305-20200509193257\nThread:SpyTec/@comment-26009169-20150406150129\nThread:SpyTec/@comment-26174322-20150622162601\nThread:SpyTec/@comment-26174322-20150622162601/@comment-2155082-20150706035506\nThread:SpyTec/@comment-26174322-20150622162601/@comment-24503385-20150705222426\nThread:SpyTec/@comment-26174322-20150622162601/@comment-26009169-20150622164557\nThread:SpyTec/@comment-26174322-20150622162601/@comment-26174322-20150622165908\nThread:SpyTec/@comment-26174322-20150622162601/@comment-26174322-20150706174138\nThread:SpyTec/@comment-26174322-20150622162601/@comment-26174322-20150706175414\nThread:SpyTec/@comment-26391992-20150521141534\nThread:SpyTec/@comment-26391992-20150521141534/@comment-26009169-20150521142005\nThread:SpyTec/@comment-26391992-20150521141534/@comment-26391992-20150522150735\nThread:SpyTec/@comment-26391992-20150914120744\nThread:SpyTec/@comment-26391992-20150914120744/@comment-26009169-20150914172524\nThread:SpyTec/@comment-26391992-20150914120744/@comment-26391992-20150914172657\nThread:SpyTec/@comment-26391992-20150928164129\nThread:SpyTec/@comment-26391992-20150928164129/@comment-26009169-20150928215703\nThread:SpyTec/@comment-26391992-20151122150043\nThread:SpyTec/@comment-26391992-20151122150043/@comment-26009169-20151122150508\nThread:SpyTec/@comment-26391992-20151122150043/@comment-26009169-20151122151041\nThread:SpyTec/@comment-26391992-20151122150043/@comment-26391992-20151122150833\nThread:SpyTec/@comment-26391992-20151122150043/@comment-26391992-20151122150857\nThread:SpyTec/@comment-26391992-20151122150043/@comment-26391992-20151122230710\nThread:SpyTec/@comment-26391992-20151122150043/@comment-26536231-20151122154609\nThread:SpyTec/@comment-26391992-20151122150043/@comment-26536231-20151222084900\nThread:SpyTec/@comment-26486363-20150715210045\nThread:SpyTec/@comment-26486363-20150715210045/@comment-26009169-20150715210449\nThread:SpyTec/@comment-26486363-20150715210045/@comment-26486363-20150715210756\nThread:SpyTec/@comment-26567647-20181009112237\nThread:SpyTec/@comment-26567647-20181009112237/@comment-26009169-20181009113503\nThread:SpyTec/@comment-26567647-20181009112237/@comment-26009169-20181009120323\nThread:SpyTec/@comment-26567647-20181009112237/@comment-26567647-20181009114526\nThread:SpyTec/@comment-26567647-20181009112237/@comment-26567647-20181009120956\nThread:SpyTec/@comment-26567647-20181009112237/@comment-26567647-20181010234015\nThread:SpyTec/@comment-26567647-20181009112237/@comment-26567647-20181012014329\nThread:SpyTec/@comment-26567647-20181009112237/@comment-30928085-20181011193423\nThread:SpyTec/@comment-26599825-20150716155744\nThread:SpyTec/@comment-26599825-20151017190545\nThread:SpyTec/@comment-26599825-20151017190545/@comment-26009169-20151017191319\nThread:SpyTec/@comment-26599825-20151023152933\nThread:SpyTec/@comment-26599825-20151023152933/@comment-26009169-20151023160604\nThread:SpyTec/@comment-26662691-20150712145132\nThread:SpyTec/@comment-26773573-20170611162945\nThread:SpyTec/@comment-26773573-20170611162945/@comment-26009169-20170611230534\nThread:SpyTec/@comment-26773573-20170611162945/@comment-26773573-20170612155513\nThread:SpyTec/@comment-26810597-20170805002220\nThread:SpyTec/@comment-26810597-20170805002220/@comment-26009169-20170826213726\nThread:SpyTec/@comment-26810597-20170805002220/@comment-26810597-20170825195032\nThread:SpyTec/@comment-26810597-20180427223115\nThread:SpyTec/@comment-26810597-20180427223115/@comment-26009169-20180429131152\nThread:SpyTec/@comment-26810597-20180427223115/@comment-30928085-20180428162151\nThread:SpyTec/@comment-26810597-20180427223115/@comment-30928085-20180429171935\nThread:SpyTec/@comment-26810597-20180427223115/@comment-32843761-20180428174758\nThread:SpyTec/@comment-26810597-20181212072205\nThread:SpyTec/@comment-26810597-20181212072205/@comment-26009169-20181212090653\nThread:SpyTec/@comment-26810597-20181212072205/@comment-26810597-20181212092253\nThread:SpyTec/@comment-26810597-20190506015008\nThread:SpyTec/@comment-26810597-20190506015008/@comment-26009169-20190506084809\nThread:SpyTec/@comment-26810597-20190506015008/@comment-26810597-20190507004244\nThread:SpyTec/@comment-26810597-20190515020346\nThread:SpyTec/@comment-26810597-20190515020346/@comment-26009169-20190515071018\nThread:SpyTec/@comment-26810597-20190515020346/@comment-26009169-20190824180431\nThread:SpyTec/@comment-26810597-20190515020346/@comment-26009169-20190824215434\nThread:SpyTec/@comment-26810597-20190515020346/@comment-26810597-20190515181716\nThread:SpyTec/@comment-26810597-20190515020346/@comment-26810597-20190824211757\nThread:SpyTec/@comment-26810597-20190515020346/@comment-30928085-20190824173514\nThread:SpyTec/@comment-26810597-20190515020346/@comment-30928085-20190826074723\nThread:SpyTec/@comment-26937315-20170327214039\nThread:SpyTec/@comment-26937315-20170327214039/@comment-26009169-20170327214534\nThread:SpyTec/@comment-26937315-20170327214039/@comment-26937315-20170327220003\nThread:SpyTec/@comment-26942110-20160126163030\nThread:SpyTec/@comment-27115814-20151025034926\nThread:SpyTec/@comment-27115814-20151025034926/@comment-26009169-20151026124612\nThread:SpyTec/@comment-27115814-20151025034926/@comment-27115814-20151026132932\nThread:SpyTec/@comment-27115814-20151025034926/@comment-27115814-20151026132948\nThread:SpyTec/@comment-27115814-20151104055842\nThread:SpyTec/@comment-27115814-20151104055842/@comment-26009169-20151107225844\nThread:SpyTec/@comment-27115814-20151104055842/@comment-27115814-20151111064354\nThread:SpyTec/@comment-27115814-20151111064624\nThread:SpyTec/@comment-27115814-20151111064624/@comment-27032150-20151111072103\nThread:SpyTec/@comment-27115814-20151111064624/@comment-27115814-20151111200627\nThread:SpyTec/@comment-27115814-20151218010737\nThread:SpyTec/@comment-27115814-20151218010737/@comment-26009169-20151218163154\nThread:SpyTec/@comment-27115814-20160220071840\nThread:SpyTec/@comment-27336833-20151210033607\nThread:SpyTec/@comment-28083312-20190314192835\nThread:SpyTec/@comment-28469459-20190226200154\nThread:SpyTec/@comment-28469459-20190226200154/@comment-26009169-20190226200332\nThread:SpyTec/@comment-28469459-20190226200154/@comment-26810597-20190226223243\nThread:SpyTec/@comment-28469459-20190226200154/@comment-28469459-20190226200359\nThread:SpyTec/@comment-28469459-20190226200154/@comment-28469459-20190226225805\nThread:SpyTec/@comment-28469459-20190226200154/@comment-30928085-20190226221816\nThread:SpyTec/@comment-28469459-20190226200154/@comment-30928085-20190301205143\nThread:SpyTec/@comment-30245159-20170819002835\nThread:SpyTec/@comment-30643772-20171010181113\nThread:SpyTec/@comment-30643772-20171010181113/@comment-26009169-20171010181422\nThread:SpyTec/@comment-30928085-20170209133518\nThread:SpyTec/@comment-30928085-20170209133518/@comment-26009169-20170209133628\nThread:SpyTec/@comment-30928085-20170209133518/@comment-30928085-20170209133847\nThread:SpyTec/@comment-30928085-20170214201804\nThread:SpyTec/@comment-30928085-20170214201804/@comment-26009169-20170214202436\nThread:SpyTec/@comment-30928085-20170214201804/@comment-26009169-20170214203831\nThread:SpyTec/@comment-30928085-20170214201804/@comment-30928085-20170214202753\nThread:SpyTec/@comment-30928085-20170214201804/@comment-30928085-20170214212337\nThread:SpyTec/@comment-30928085-20170503102308\nThread:SpyTec/@comment-30928085-20170503102308/@comment-26009169-20170503135020\nThread:SpyTec/@comment-30928085-20170613170918\nThread:SpyTec/@comment-30928085-20170613170918/@comment-2155082-20170613173253\nThread:SpyTec/@comment-30928085-20170613170918/@comment-2155082-20170613173512\nThread:SpyTec/@comment-30928085-20170613170918/@comment-26009169-20170613171938\nThread:SpyTec/@comment-30928085-20170613170918/@comment-26009169-20170613172535\nThread:SpyTec/@comment-30928085-20170613170918/@comment-26009169-20170613173631\nThread:SpyTec/@comment-30928085-20170613170918/@comment-30928085-20170613180241\nThread:SpyTec/@comment-30928085-20170801130956\nThread:SpyTec/@comment-30928085-20170801130956/@comment-26009169-20170801220238\nThread:SpyTec/@comment-30928085-20170801130956/@comment-30928085-20170802061837\nThread:SpyTec/@comment-30928085-20171112020154\nThread:SpyTec/@comment-30928085-20171112020154/@comment-26009169-20171112021136\nThread:SpyTec/@comment-30928085-20171112020154/@comment-26009169-20171112113231\nThread:SpyTec/@comment-30928085-20171112020154/@comment-30928085-20171112021337\nThread:SpyTec/@comment-30928085-20171112020154/@comment-30928085-20171112180831\nThread:SpyTec/@comment-30928085-20180416005209\nThread:SpyTec/@comment-30928085-20180416005209/@comment-26009169-20180416124933\nThread:SpyTec/@comment-30928085-20180724162151\nThread:SpyTec/@comment-30928085-20180916101811\nThread:SpyTec/@comment-30928085-20180916101811/@comment-26009169-20180916103009\nThread:SpyTec/@comment-30928085-20181027074134\nThread:SpyTec/@comment-30928085-20181027074134/@comment-26009169-20181027092050\nThread:SpyTec/@comment-30928085-20181106111449\nThread:SpyTec/@comment-30928085-20181106111449/@comment-26009169-20181106111902\nThread:SpyTec/@comment-30928085-20181106111449/@comment-30928085-20181106112211\nThread:SpyTec/@comment-30928085-20190129063148\nThread:SpyTec/@comment-30928085-20190129063148/@comment-30928085-20190406183159\nThread:SpyTec/@comment-30928085-20190826161536\nThread:SpyTec/@comment-30928085-20190826161536/@comment-26009169-20190827072043\nThread:SpyTec/@comment-30928085-20190826161536/@comment-26009169-20190827141752\nThread:SpyTec/@comment-30928085-20190826161536/@comment-26009169-20190827202805\nThread:SpyTec/@comment-30928085-20190826161536/@comment-26009169-20190831080043\nThread:SpyTec/@comment-30928085-20190826161536/@comment-26810597-20190827203216\nThread:SpyTec/@comment-30928085-20190826161536/@comment-26810597-20190828041935\nThread:SpyTec/@comment-30928085-20190826161536/@comment-30928085-20190827122534\nThread:SpyTec/@comment-30928085-20190826161536/@comment-30928085-20190827153605\nThread:SpyTec/@comment-30928085-20190826161536/@comment-30928085-20190827161134\nThread:SpyTec/@comment-30928085-20190826161536/@comment-30928085-20190828012942\nThread:SpyTec/@comment-30928085-20190826161536/@comment-30928085-20190828021533\nThread:SpyTec/@comment-30928085-20190826161536/@comment-30928085-20190831130227\nThread:SpyTec/@comment-31363749-20170821002453\nThread:SpyTec/@comment-31363749-20170821002453/@comment-26009169-20170821115808\nThread:SpyTec/@comment-31363749-20170821002453/@comment-26009169-20170821211751\nThread:SpyTec/@comment-31363749-20170821002453/@comment-31363749-20170821121719\nThread:SpyTec/@comment-31363749-20170821002453/@comment-31363749-20170821220247\nThread:SpyTec/@comment-31363749-20171016060016\nThread:SpyTec/@comment-31363749-20171016060016/@comment-26009169-20171019113740\nThread:SpyTec/@comment-31420862-20180327050058\nThread:SpyTec/@comment-31420862-20180327050058/@comment-26009169-20180327204718\nThread:SpyTec/@comment-31420862-20180327050058/@comment-31420862-20180328131639\nThread:SpyTec/@comment-3183460-20150924223739\nThread:SpyTec/@comment-3183460-20150924223739/@comment-26009169-20150925132400\nThread:SpyTec/@comment-3183460-20150924223739/@comment-3183460-20150925160053\nThread:SpyTec/@comment-32843761-20190424165054\nThread:SpyTec/@comment-32843761-20190424165054/@comment-26009169-20190427161557\nThread:SpyTec/@comment-3398633-20150529031005\nThread:SpyTec/@comment-3398633-20150529031005/@comment-26009169-20150529120324\nThread:SpyTec/@comment-3398633-20150529031005/@comment-26009169-20150609020910\nThread:SpyTec/@comment-3398633-20150529031005/@comment-26009169-20150615002533\nThread:SpyTec/@comment-3398633-20150529031005/@comment-3398633-20150529150127\nThread:SpyTec/@comment-3398633-20150529031005/@comment-3398633-20150614235338\nThread:SpyTec/@comment-3398633-20150529031005/@comment-3398633-20150616003710\nThread:SpyTec/@comment-36249090-20180719193312\nThread:SpyTec/@comment-36249090-20180719193312/@comment-26009169-20180719203533\nThread:SpyTec/@comment-36249090-20180719193312/@comment-36249090-20180719212609\nThread:SpyTec/@comment-36249090-20180719193312/@comment-36249090-20180720101833\nThread:SpyTec/@comment-3974211-20191023095157\nThread:SpyTec/@comment-3974211-20191023095157/@comment-26009169-20191023155848\nThread:SpyTec/@comment-3974211-20191023095157/@comment-26009169-20191127222525\nThread:SpyTec/@comment-3974211-20191023095157/@comment-3974211-20191023170525\nThread:SpyTec/@comment-3974211-20191023095157/@comment-3974211-20191023170946\nThread:SpyTec/@comment-3974211-20191023095157/@comment-3974211-20191127201626\nThread:SpyTec/@comment-3974211-20191023095157/@comment-3974211-20191128040620\nThread:SpyTec/@comment-4555143-20150719153315\nThread:SpyTec/@comment-4555143-20150719153315/@comment-26009169-20150719154419\nThread:SpyTec/@comment-4555143-20150719153315/@comment-26009169-20150719160438\nThread:SpyTec/@comment-4555143-20150719153315/@comment-4555143-20150719160048\nThread:SpyTec/@comment-4555143-20150719153315/@comment-4555143-20150719180324\nThread:SpyTec/@comment-4986699-20151007203839\nThread:SpyTec/@comment-4986699-20151007203839/@comment-26009169-20151008053442\nThread:SpyTec/@comment-4986699-20171108165544\nThread:SpyTec/@comment-4986699-20171108165544/@comment-26009169-20171108211939\nThread:SpyTec/@comment-4986699-20171108165544/@comment-4986699-20171109073827\nThread:SpyTec/@comment-5083036-20150525200423\nThread:SpyTec/@comment-5083036-20150525200423/@comment-26009169-20150525200613\nThread:SpyTec/@comment-5083036-20150525200423/@comment-26009169-20150525201939\nThread:SpyTec/@comment-5083036-20150525200423/@comment-26009169-20150525202833\nThread:SpyTec/@comment-5083036-20150525200423/@comment-5083036-20150525200827\nThread:SpyTec/@comment-5083036-20150525200423/@comment-5083036-20150525201416\nThread:SpyTec/@comment-5083036-20150525200423/@comment-5083036-20150525202247\nThread:SpyTec/@comment-5173028-20150815000000\nThread:SpyTec/@comment-5173028-20150815000000/@comment-26009169-20150815001533\nThread:SpyTec/@comment-5173028-20150815000000/@comment-5173028-20150815002612\nThread:SpyTec/@comment-5959508-20151014171502\nThread:SpyTec/@comment-5959508-20151014171502/@comment-26009169-20151014171708\nThread:SpyTec/@comment-5959508-20151124140828\nThread:SpyTec/@comment-5959508-20151124140828/@comment-26009169-20151125000003\nThread:SpyTec/@comment-80.7.76.127-20170414012832\nThread:SpyTec/@comment-87.144.69.76-20180726110338\nThread:SpyTec/@comment-87.144.69.76-20180726110338/@comment-30928085-20180729044854\nThread:SpyTec/@comment-8738377-20150703173631\nThread:SpyTec/@comment-8738377-20150703173631/@comment-26009169-20150703214203\nThread:SpyTec/@comment-95.91.228.171-20160531222732\nThread:SpyTec/@comment-95.91.228.171-20160531222732/@comment-26009169-20160531222940\nThread:SpyTec/@comment-95.91.228.67-20160313120636\nThread:SpyTec/@comment-95.91.228.67-20160313120636/@comment-26009169-20160313123412\nThread:Spyrojackie/@comment-32769624-20190812084700\nThread:SqueakySquak/@comment-22439-20150420100533\nThread:Srjek/@comment-22439-20151209173931\nThread:Sryn/@comment-32769624-20171202032635\nThread:Ssarusss/@comment-32769624-20200820143156\nThread:Sslay/@comment-22439-20150222192055\nThread:Ssnake42069/@comment-22439-20160628214542\nThread:StClair/@comment-32769624-20200614215457\nThread:StarFClass14/@comment-32769624-20190801233958\nThread:StarFClass32/@comment-32769624-20190226192745\nThread:StarFClass32/@comment-32769624-20190226192745/@comment-28469459-20190226195924\nThread:StarLightPL/@comment-22439-20161020101850\nThread:Starbolt-81/@comment-22439-20150709093743\nThread:StarmanW/@comment-32769624-20171124163216\nThread:StartledOctopus/@comment-32769624-20200613161707\nThread:Statelymc/@comment-32769624-20180305072708\nThread:Steffan456/@comment-32769624-20190914145208\nThread:Steffshow/@comment-32769624-20190127171257\nThread:Stevolab/@comment-32769624-20190710175405\nThread:Stiggy1968/@comment-32769624-20181005102340\nThread:Stiggy1968/@comment-37236426-20181026005016\nThread:StingerGhost1/@comment-22439-20150708042810\nThread:StingerGhost1/@comment-22439-20150708042810/@comment-3428652-20150708060309\nThread:Stonewall89/@comment-32769624-20200711060103\nThread:Stormzez/@comment-32769624-20200615091921\nThread:Strelokov/@comment-22439-20151002232432\nThread:Stren/@comment-22439-20150208103108\nThread:Strider503/@comment-32769624-20200102175626\nThread:Strontium10538/@comment-22439-20160405225505\nThread:StuartGT/@comment-22439-20151101005341\nThread:StuntPanda/@comment-22439-20160120025256\nThread:StupidDuckGames/@comment-22439-20160928105335\nThread:Suisanahta/@comment-22439-20141010184124\nThread:Sulandir/@comment-32769624-20200628080357\nThread:Sumeraxe/@comment-22439-20150207125730\nThread:Sumerlove/@comment-22439-20150207095547\nThread:Sumerlove/@comment-22439-20150207095547/@comment-26084686-20150207100643\nThread:SunwolfNC/@comment-22439-20150212021621\nThread:Super Sugar/@comment-22439-20150125110436\nThread:Super Sugar/@comment-22439-20150125110436/@comment-12138097-20150126030515\nThread:Super Sugar/@comment-22439-20150125110436/@comment-26040397-20150125210028\nThread:Super Sugar/@comment-22439-20150125110436/@comment-26040397-20150126204817\nThread:Superb0y04/@comment-32769624-20180227200802\nThread:Supercruise/@comment-12138097-20141103062644\nThread:Supercruise/@comment-12138097-20141202224043\nThread:Supercruise/@comment-12138097-20141202224043/@comment-24179636-20141203012052\nThread:Supercruise/@comment-12138097-20141202224043/@comment-24179636-20141206213834\nThread:Supercruise/@comment-12138097-20141202224043/@comment-25787591-20141206194400\nThread:Supercruise/@comment-12138097-20141205214145\nThread:Supercruise/@comment-12138097-20141205214145/@comment-24179636-20141205224147\nThread:Supercruise/@comment-12138097-20141207200137\nThread:Supercruise/@comment-12138097-20141207200137/@comment-24179636-20141208045619\nThread:Supercruise/@comment-12138097-20141214032829\nThread:Supercruise/@comment-12138097-20141214032829/@comment-12138097-20141215191730\nThread:Supercruise/@comment-12138097-20141214032829/@comment-12138097-20141215232247\nThread:Supercruise/@comment-12138097-20141214032829/@comment-12138097-20141219074308\nThread:Supercruise/@comment-12138097-20141214032829/@comment-24179636-20141214163031\nThread:Supercruise/@comment-12138097-20141214032829/@comment-24179636-20141215231213\nThread:Supercruise/@comment-12138097-20141214032829/@comment-24179636-20141216004552\nThread:Supercruise/@comment-12138097-20141214032829/@comment-24179636-20141218125300\nThread:Supercruise/@comment-12138097-20150112205900\nThread:Supercruise/@comment-12138097-20150316013653\nThread:Supercruise/@comment-12138097-20150316013653/@comment-26009169-20150318105743\nThread:Supercruise/@comment-20211881-20150129000410\nThread:Supercruise/@comment-20211881-20150129000410/@comment-24179636-20150129171943\nThread:Supercruise/@comment-20211881-20150227221947\nThread:Supercruise/@comment-20211881-20150227221947/@comment-12138097-20150227222840\nThread:Supercruise/@comment-20211881-20150227221947/@comment-20211881-20150227234738\nThread:Supercruise/@comment-2155082-20160811031407\nThread:Supercruise/@comment-22439-20131117140626\nThread:Supercruise/@comment-25136754-20140704001257\nThread:Supercruise/@comment-25136754-20140704001257/@comment-24179636-20140711233321\nThread:Supercruise/@comment-25136754-20140704001257/@comment-24179636-20140712101712\nThread:Supercruise/@comment-25136754-20140704001257/@comment-24179636-20140721204041\nThread:Supercruise/@comment-25136754-20140704001257/@comment-24179636-20140721215650\nThread:Supercruise/@comment-25136754-20140704001257/@comment-25136754-20140712022622\nThread:Supercruise/@comment-25136754-20140704001257/@comment-25136754-20140721191719\nThread:Supercruise/@comment-25136754-20140704001257/@comment-25136754-20140721204521\nThread:Supercruise/@comment-25227859-20140804133754\nThread:Supercruise/@comment-25227859-20140804133754/@comment-24179636-20140804153422\nThread:Supercruise/@comment-25227859-20140804133754/@comment-24179636-20140804163513\nThread:Supercruise/@comment-25227859-20140804133754/@comment-25227859-20140804155405\nThread:Supercruise/@comment-25664968-20141112020056\nThread:Supercruise/@comment-25664968-20141112020056/@comment-12138097-20141119205242\nThread:Supercruise/@comment-26009169-20150320182839\nThread:Supercruise/@comment-26009169-20150320182839/@comment-12138097-20150320220944\nThread:Supercruise/@comment-26009169-20150320182839/@comment-24179636-20150403002520\nThread:Supercruise/@comment-26009169-20150320182839/@comment-26009169-20150403002622\nThread:Supercruise/@comment-26009169-20150413183730\nThread:Supercruise/@comment-26009169-20151129161512\nThread:Supercruise/@comment-3183460-20141008165614\nThread:Supercruise/@comment-3183460-20141008165614/@comment-24179636-20141008202349\nThread:Supercruise/@comment-3183460-20141008165614/@comment-24179636-20141010025322\nThread:Supercruise/@comment-3183460-20141008165614/@comment-24179636-20141011234733\nThread:Supercruise/@comment-3183460-20141008165614/@comment-24179636-20141012045404\nThread:Supercruise/@comment-3183460-20141008165614/@comment-24179636-20141018121928\nThread:Supercruise/@comment-3183460-20141008165614/@comment-24179636-20141205184104\nThread:Supercruise/@comment-3183460-20141008165614/@comment-24179636-20141205193647\nThread:Supercruise/@comment-3183460-20141008165614/@comment-24179636-20141205195509\nThread:Supercruise/@comment-3183460-20141008165614/@comment-24179636-20141205200435\nThread:Supercruise/@comment-3183460-20141008165614/@comment-3183460-20141010013912\nThread:Supercruise/@comment-3183460-20141008165614/@comment-3183460-20141011221419\nThread:Supercruise/@comment-3183460-20141008165614/@comment-3183460-20141012032259\nThread:Supercruise/@comment-3183460-20141008165614/@comment-3183460-20141017160821\nThread:Supercruise/@comment-3183460-20141008165614/@comment-3183460-20141017190442\nThread:Supercruise/@comment-3183460-20141008165614/@comment-3183460-20141205185554\nThread:Supercruise/@comment-3183460-20141008165614/@comment-3183460-20141205200440\nThread:Supercruise/@comment-3183460-20141008165614/@comment-4919957-20141028011223\nThread:Supercruise/@comment-3183460-20141008165614/@comment-4919957-20141029175551\nThread:Supercruise/@comment-4259120-20140728170352\nThread:Supercruise/@comment-4259120-20140728170352/@comment-24179636-20140728171013\nThread:Supercruise/@comment-4259120-20140807091443\nThread:Supercruise/@comment-4259120-20140807091443/@comment-24179636-20140807092637\nThread:Supercruise/@comment-4259120-20140807091443/@comment-24179636-20140807093937\nThread:Supercruise/@comment-4259120-20140807091443/@comment-24179636-20140807101709\nThread:Supercruise/@comment-4259120-20140807091443/@comment-4259120-20140807091556\nThread:Supercruise/@comment-4259120-20140807091443/@comment-4259120-20140807092853\nThread:Supercruise/@comment-4259120-20140807091443/@comment-4259120-20140807092913\nThread:Supercruise/@comment-4259120-20140807091443/@comment-4259120-20140807100749\nThread:Supercruise/@comment-4919957-20141017230242\nThread:Supercruise/@comment-5937172-20150106222139\nThread:Supercruise/@comment-5937172-20150106222139/@comment-12138097-20150106225443\nThread:Supercruise/@comment-5937172-20150106222139/@comment-24179636-20150108053509\nThread:Supercruise/@comment-6033893-20140818084841\nThread:Supercruise/@comment-6033893-20140818084841/@comment-24179636-20140818093943\nThread:Supercruise/@comment-6033893-20140818084841/@comment-6033893-20140818124304\nThread:Supercruise/@comment-82.224.162.129-20150319113008\nThread:Supercruise/@comment-82.224.162.129-20150319113008/@comment-26009169-20150319114315\nThread:Superdave27/@comment-22439-20150112165504\nThread:Superguy163/@comment-22439-20141229055012\nThread:Supermertgul/@comment-32769624-20200411122908\nThread:Supermike2/@comment-32769624-20180315153805\nThread:SuperocoiLoicadoBRBRBR/@comment-176.241.72.203-20190724203510\nThread:Superstorm666/@comment-32769624-20200804122634\nThread:Superstringcheese/@comment-32769624-20190303045007\nThread:Suretterus/@comment-32769624-20200715123938\nThread:Surkrem/@comment-22439-20160628215855\nThread:Svzurich/@comment-32769624-20180322030045\nThread:SweRaider1993/@comment-22439-20150801225306\nThread:Sweeep/@comment-22439-20150118041323\nThread:Swi7ch/@comment-22439-20160725202357\nThread:SwiftoHS/@comment-32769624-20200527163211\nThread:SwissTHX11384EB/@comment-32769624-20180104235017\nThread:SwissTony45/@comment-22439-20160120163644\nThread:Sylwirzhae/@comment-22439-20160222001603\nThread:Symmetry/@comment-22439-20151023103554\nThread:Synthya Wylder/@comment-32769624-20200526174617\nThread:T. Konstantine/@comment-32769624-20180501183510\nThread:T3hbernardo/@comment-22439-20150407232538\nThread:T4UMick/@comment-32769624-20200409052828\nThread:TANG0611/@comment-32769624-20200525184830\nThread:TCEd/@comment-22439-20150307011301\nThread:THE BERK/@comment-22439-20140912040855\nThread:THEgerbilOFdoom/@comment-22439-20150929112306\nThread:TN0717/@comment-32769624-20180825011913\nThread:TVs Revan/@comment-22439-20150117213451\nThread:Talion Camisade/@comment-32769624-20190914194121\nThread:Talmahera/@comment-32769624-20180921162229\nThread:Talonclaw1/@comment-22439-20150209121855\nThread:TanyaT1/@comment-22439-20160102133333\nThread:Tar-Elendil/@comment-22439-20151031154257\nThread:Tartley/@comment-22439-20150314125009\nThread:Tathiel/@comment-22439-20150401004013\nThread:TayDex/@comment-32769624-20200803210313\nThread:Tazuren/@comment-32769624-20190204061355\nThread:Tboy2210/@comment-32769624-20171112160855\nThread:Tdh10/@comment-32769624-20190121151514\nThread:Tearakudo/@comment-22439-20150526201727\nThread:Teatime42/@comment-32769624-20200617035313\nThread:Tech21101/@comment-22439-20160216232844\nThread:TechcraftHD/@comment-22439-20161114230739\nThread:Ted509/@comment-22439-20160924023629\nThread:Teelahendrix/@comment-22439-20170529080307\nThread:Teentitansgofan1111/@comment-32769624-20200803151239\nThread:Teeteon/@comment-32769624-20180628215150\nThread:Teheboom1/@comment-22439-20160202072246\nThread:Tehstachewhacker/@comment-32769624-20180731223226\nThread:Tehstachewhacker/@comment-32769624-20190127231116\nThread:Tek0516/@comment-22439-20151205203532\nThread:Tekwerk/@comment-22439-20160630044616\nThread:Temp20/@comment-32769624-20200912201553\nThread:Temporelus/@comment-32769624-20190113095503\nThread:Temporelus/@comment-32769624-20190113095826\nThread:Ten pla/@comment-30928085-20181012061827\nThread:Ten pla/@comment-30928085-20181012061827/@comment-26567647-20181012064907\nThread:Ten pla/@comment-30928085-20181012061827/@comment-26567647-20181013105747\nThread:Ten pla/@comment-30928085-20181012061827/@comment-30928085-20181013061114\nThread:Ten pla/@comment-30928085-20181118170911\nThread:Ten pla/@comment-30928085-20181118170911/@comment-26567647-20181119030025\nThread:Ten pla/@comment-30928085-20181118170911/@comment-26567647-20181127013626\nThread:Ten pla/@comment-30928085-20181118170911/@comment-26567647-20181127063945\nThread:Ten pla/@comment-30928085-20181118170911/@comment-26567647-20181127072352\nThread:Ten pla/@comment-30928085-20181118170911/@comment-26567647-20181219114748\nThread:Ten pla/@comment-30928085-20181118170911/@comment-30928085-20181119060935\nThread:Ten pla/@comment-30928085-20181118170911/@comment-30928085-20181126165412\nThread:Ten pla/@comment-30928085-20181118170911/@comment-30928085-20181127060311\nThread:Ten pla/@comment-30928085-20181118170911/@comment-30928085-20181127070201\nThread:Ten pla/@comment-30928085-20181118170911/@comment-30928085-20181218202945\nThread:Ten pla/@comment-30928085-20181218203410\nThread:Ten pla/@comment-30928085-20181218203410/@comment-26567647-20181219172937\nThread:Ten pla/@comment-30928085-20181218203410/@comment-26567647-20190101184748\nThread:Ten pla/@comment-30928085-20181218203410/@comment-30928085-20181219174912\nThread:Ten pla/@comment-30928085-20181218203410/@comment-30928085-20190101225852\nThread:Ten pla/@comment-32769624-20181009085312\nThread:TenhGrey/@comment-22439-20151014174649\nThread:TerinaMenken/@comment-22439-20151216120337\nThread:TerminalHunter/@comment-32769624-20200203191117\nThread:TerminalVentures/@comment-22439-20150721202657\nThread:Tevue/@comment-32769624-20200817204022\nThread:ThatFlyingThing/@comment-22439-20160529151751\nThread:Thatguythatfixesthings/@comment-32769624-20171220052615\nThread:Thatpixguy/@comment-22439-20150104021815\nThread:Thcr18/@comment-32769624-20180302134109\nThread:The14th/@comment-32769624-20180208204152\nThread:TheCyanDragon/@comment-22439-20150523210459\nThread:TheDeiWolf/@comment-32769624-20200810142332\nThread:TheEnd59949084859584958958696/@comment-22439-20170427001057\nThread:TheFallen018/@comment-22439-20151204063005\nThread:TheGamer0101/@comment-22439-20150731121438\nThread:TheGoldenPatrik1/@comment-32769624-20190415174947\nThread:TheIke73/@comment-32769624-20181108131047\nThread:TheMindOfMadness/@comment-22439-20150926160745\nThread:TheOperator288/@comment-32769624-20200619223935\nThread:ThePenguinFace/@comment-22439-20150909141726\nThread:ThePhyx/@comment-32769624-20200126085542\nThread:TheVarangian/@comment-22439-20151106005340\nThread:TheWarNeko/@comment-22439-20150529023324\nThread:TheZemalf/@comment-22439-20150212110001\nThread:TheZexdex/@comment-32769624-20181125223454\nThread:The Dyre Wolf/@comment-22439-20150804063554\nThread:The Enclave is Bae/@comment-22439-20150913004807\nThread:The God Himself/@comment-32769624-20180107161507\nThread:The Man in a Red Mask/@comment-22439-20160416101424\nThread:The Mol Man/@comment-22439-20150525200338\nThread:The Officer DWM/@comment-32769624-20200731212634\nThread:The One Toki/@comment-22439-20150201204618\nThread:The RedBurn/@comment-32769624-20200323173021\nThread:The Shadowmaker/@comment-22439-20160101132346\nThread:The Shadowmaker/@comment-22439-20160101132346/@comment-26271083-20160103135618\nThread:The Zephyrion/@comment-22439-20160228192009\nThread:Theduckofdeath/@comment-22439-20150312160937\nThread:Thekilon/@comment-32769624-20171222110352\nThread:Theolaf1/@comment-32769624-20200514140248\nThread:Therasse/@comment-32769624-20200413143720\nThread:Therealstubot/@comment-22439-20150923190955\nThread:Thetruluhe/@comment-32769624-20200816120729\nThread:Theu04/@comment-22439-20160116080013\nThread:Theunmademan/@comment-32769624-20200410045849\nThread:Thiccastley/@comment-32769624-20180127224205\nThread:Thirstybadger/@comment-22439-20130110130616\nThread:ThisWasn'tTaken/@comment-22439-20150706234845\nThread:Thismightbeiam/@comment-32769624-20200309023622\nThread:Thoitrangbaby/@comment-32769624-20190606061521\nThread:Thomas Bewick/@comment-32769624-20180902173712\nThread:Thor131/@comment-22439-20150506190423\nThread:ThranMaru/@comment-22439-20170501095338\nThread:ThranMaru/@comment-39860950-20190709075351\nThread:ThranMaru/@comment-39860950-20190709075351/@comment-195.113.243.73-20190709091955\nThread:ThranMaru/@comment-39860950-20190709075351/@comment-31886567-20190709092056\nThread:ThranMaru/@comment-39860950-20190709075351/@comment-39860950-20190709133727\nThread:ThreeFive35/@comment-32769624-20180826150727\nThread:Threyon/@comment-32769624-20190508012654\nThread:ThrottleFox/@comment-22439-20151222180651\nThread:Thrudd/@comment-32769624-20180203085943\nThread:Thundertwat/@comment-22439-20150628082151\nThread:Thundertwat/@comment-22439-20150628082151/@comment-26540180-20150628112340\nThread:ThunderxBolt101/@comment-32769624-20200127021024\nThread:Thwomp123/@comment-22439-20150204173811\nThread:Timo.viinanen/@comment-22439-20150824115021\nThread:Timothy Flint/@comment-32769624-20181026072005\nThread:Timsk/@comment-22439-20150718183033\nThread:Timstro59/@comment-22439-20160808220246\nThread:TimtheBigDaddy/@comment-22439-20150130165025\nThread:TinyClayMan/@comment-32769624-20200501123313\nThread:Tinycubegamer45/@comment-32769624-20200603231857\nThread:TitanPilotUK/@comment-22439-20160709013520\nThread:Titanic71/@comment-22439-20150221222834\nThread:Titanpaul21/@comment-32769624-20180729190629\nThread:Tjeufd/@comment-22439-20150912195228\nThread:Tnascimento/@comment-22439-20150604032712\nThread:Tobiasvl/@comment-22439-20150707190446\nThread:Tobytoolbag/@comment-32769624-20200103114533\nThread:Togukawa/@comment-22439-20141005061118\nThread:TokihikoH11/@comment-32769624-20191009090348\nThread:Tolimee/@comment-22439-20160527040420\nThread:TomDeJRad/@comment-32769624-20180425004151\nThread:Tomcoates/@comment-22439-20150529194710\nThread:Tomparkes1993/@comment-22439-20151126210015\nThread:Tomw95/@comment-32769624-20181028173139\nThread:Tondaczek/@comment-22439-20150808133545\nThread:Tonileys/@comment-32769624-20200520200712\nThread:Tonyem328/@comment-22439-20150411012956\nThread:Toomas The Lord Bringer/@comment-22439-20150712141809\nThread:Top2323/@comment-22439-20150116033210\nThread:TopoSolitario/@comment-22439-20150327085248\nThread:Torm1358/@comment-22439-20160122131401\nThread:Tosmo/@comment-22439-20141217152928\nThread:Totaldeath5500/@comment-32769624-20180405141731\nThread:Tovbeotvbe/@comment-32769624-20190127114357\nThread:Tovbeotvbe/@comment-32769624-20190127114416\nThread:Toxyca/@comment-22439-20160102115519\nThread:Tpennanen/@comment-32769624-20181103211516\nThread:Trairan/@comment-22439-20160204160204\nThread:Tramker/@comment-22439-20151122221338\nThread:Transmothra/@comment-32769624-20180707072627\nThread:TrenchCoatCorgi/@comment-32769624-20200609023822\nThread:Trent1542/@comment-22439-20150410114406\nThread:Trepcsuit/@comment-32769624-20200711050650\nThread:Trico703/@comment-22439-20150708120829\nThread:Triniwiki/@comment-22439-20160611100328\nThread:TripN KniveZ/@comment-22439-20150522162540\nThread:Triple88a/@comment-22439-20150708183549\nThread:Trr1ppy/@comment-32769624-20190902161739\nThread:TrueLuminus/@comment-32769624-20200110123718\nThread:TrustMe67/@comment-22439-20150930034829\nThread:Tsarkz/@comment-22439-20150115192517\nThread:Tuinkabouter/@comment-22439-20150709213354\nThread:Turkwinif/@comment-22439-20160623012254\nThread:Turtlbrdr/@comment-32769624-20190116010243\nThread:Turtlbrdr/@comment-32769624-20190129084529\nThread:Tutu10/@comment-32769624-20190121144015\nThread:Tutu1112/@comment-32769624-20190313091856\nThread:Tvis/@comment-22439-20150612102726\nThread:TwentySevenFive/@comment-32769624-20190703104343\nThread:Twentypence/@comment-22439-20141217145832\nThread:Twincast/@comment-22439-20140524234024\nThread:Twinmerlin/@comment-32769624-20200111115857\nThread:Tws/@comment-32769624-20200921163154\nThread:Tyree42/@comment-22439-20150124172425\nThread:TyroDreamscape/@comment-22439-20141220001604\nThread:Tyrranis/@comment-32769624-20200105193127\nThread:UDaRealMVP01/@comment-22439-20160202030212\nThread:Ubenn Hadd/@comment-32769624-20180403200601\nThread:UberVoyager-fduser/@comment-22439-20160213132139\nThread:UberVoyager/@comment-22439-20160213132139\nThread:Ujinobu/@comment-32769624-20190701173340\nThread:Ukulele j/@comment-22439-20170723220045\nThread:Umsik/@comment-32769624-20180225065733\nThread:Unau/@comment-32769624-20200915101558\nThread:Unforgivable/@comment-22439-20160113021248\nThread:Univero/@comment-150.107.172.12-20180417061424\nThread:Univero/@comment-150.107.172.12-20180417061424/@comment-150.107.172.12-20180417061547\nThread:Univero/@comment-150.107.172.12-20180417061424/@comment-30928085-20180417144214\nThread:Univero/@comment-2155082-20170203232730\nThread:Univero/@comment-2155082-20170203232730/@comment-2155082-20170204190746\nThread:Univero/@comment-2155082-20170203232730/@comment-26009169-20170204133318\nThread:Univero/@comment-2155082-20170203232730/@comment-30928085-20170204081529\nThread:Univero/@comment-2155082-20170203232730/@comment-30928085-20170205053901\nThread:Univero/@comment-2155082-20170203232730/@comment-30928085-20170205063033\nThread:Univero/@comment-2155082-20170203232730/@comment-98.222.235.179-20170204190715\nThread:Univero/@comment-2155082-20170212222848\nThread:Univero/@comment-2155082-20170212222848/@comment-30928085-20170212223422\nThread:Univero/@comment-2155082-20170302054936\nThread:Univero/@comment-2155082-20170302054936/@comment-30928085-20170302055255\nThread:Univero/@comment-2155082-20170722002636\nThread:Univero/@comment-2155082-20170722002636/@comment-2155082-20170723002214\nThread:Univero/@comment-2155082-20170722002636/@comment-2155082-20170723221342\nThread:Univero/@comment-2155082-20170722002636/@comment-26009169-20170722103136\nThread:Univero/@comment-2155082-20170722002636/@comment-26009169-20170723105904\nThread:Univero/@comment-2155082-20170722002636/@comment-30928085-20170722074247\nThread:Univero/@comment-24.67.124.227-20190525022551\nThread:Univero/@comment-24.67.124.227-20190525022551/@comment-30928085-20200624063133\nThread:Univero/@comment-26009169-20170206202204\nThread:Univero/@comment-26009169-20170206202204/@comment-2155082-20170207014823\nThread:Univero/@comment-26009169-20170206202204/@comment-2155082-20170208004849\nThread:Univero/@comment-26009169-20170206202204/@comment-2155082-20170208045259\nThread:Univero/@comment-26009169-20170206202204/@comment-2155082-20170208045611\nThread:Univero/@comment-26009169-20170206202204/@comment-2155082-20170208052320\nThread:Univero/@comment-26009169-20170206202204/@comment-26009169-20170206205305\nThread:Univero/@comment-26009169-20170206202204/@comment-26009169-20170207192729\nThread:Univero/@comment-26009169-20170206202204/@comment-30928085-20170206202942\nThread:Univero/@comment-26009169-20170206202204/@comment-30928085-20170206203645\nThread:Univero/@comment-26009169-20170206202204/@comment-30928085-20170208043236\nThread:Univero/@comment-26009169-20170206202204/@comment-30928085-20170208043429\nThread:Univero/@comment-26009169-20170206202204/@comment-30928085-20170208044209\nThread:Univero/@comment-26009169-20170206202204/@comment-30928085-20170208051029\nThread:Univero/@comment-26009169-20170206202204/@comment-30928085-20170208053346\nThread:Univero/@comment-26009169-20170214154724\nThread:Univero/@comment-26009169-20170214154724/@comment-26009169-20170214155114\nThread:Univero/@comment-26009169-20170214154724/@comment-26009169-20170214155623\nThread:Univero/@comment-26009169-20170214154724/@comment-26009169-20170214185805\nThread:Univero/@comment-26009169-20170214154724/@comment-30928085-20170214154923\nThread:Univero/@comment-26009169-20170214154724/@comment-30928085-20170214155339\nThread:Univero/@comment-26009169-20170214154724/@comment-30928085-20170214160103\nThread:Univero/@comment-26009169-20170214154724/@comment-30928085-20170214161623\nThread:Univero/@comment-26009169-20170214154724/@comment-30928085-20170214162251\nThread:Univero/@comment-26009169-20170214154724/@comment-30928085-20170214201106\nThread:Univero/@comment-26009169-20170609233447\nThread:Univero/@comment-26009169-20170609233447/@comment-26009169-20170611103110\nThread:Univero/@comment-26009169-20170609233447/@comment-30928085-20170610053525\nThread:Univero/@comment-26009169-20171217222255\nThread:Univero/@comment-26009169-20171217222255/@comment-26009169-20171217230235\nThread:Univero/@comment-26009169-20171217222255/@comment-26009169-20171217230953\nThread:Univero/@comment-26009169-20171217222255/@comment-26009169-20171217234055\nThread:Univero/@comment-26009169-20171217222255/@comment-30928085-20171217225942\nThread:Univero/@comment-26009169-20171217222255/@comment-30928085-20171217230554\nThread:Univero/@comment-26009169-20171217222255/@comment-30928085-20171217234025\nThread:Univero/@comment-26009169-20180108224105\nThread:Univero/@comment-26009169-20180108224105/@comment-26009169-20180111013604\nThread:Univero/@comment-26009169-20180108224105/@comment-30928085-20180109051843\nThread:Univero/@comment-26009169-20180108224105/@comment-30928085-20180111053309\nThread:Univero/@comment-26009169-20180529103911\nThread:Univero/@comment-26009169-20180529103911/@comment-30928085-20180530172808\nThread:Univero/@comment-26810597-20181108083735\nThread:Univero/@comment-26810597-20181108083735/@comment-26009169-20181111111256\nThread:Univero/@comment-26810597-20181108083735/@comment-26810597-20181108232658\nThread:Univero/@comment-26810597-20181108083735/@comment-26810597-20181109214355\nThread:Univero/@comment-26810597-20181108083735/@comment-26810597-20181110113726\nThread:Univero/@comment-26810597-20181108083735/@comment-26810597-20181110214004\nThread:Univero/@comment-26810597-20181108083735/@comment-26810597-20181111014920\nThread:Univero/@comment-26810597-20181108083735/@comment-26810597-20181111121455\nThread:Univero/@comment-26810597-20181108083735/@comment-30928085-20181108160939\nThread:Univero/@comment-26810597-20181108083735/@comment-30928085-20181110090627\nThread:Univero/@comment-26810597-20181108083735/@comment-30928085-20181110114803\nThread:Univero/@comment-26810597-20181108083735/@comment-30928085-20181111013232\nThread:Univero/@comment-26950991-20171130191406\nThread:Univero/@comment-26950991-20171130191406/@comment-26950991-20171130192552\nThread:Univero/@comment-26950991-20171130191406/@comment-26950991-20171130215123\nThread:Univero/@comment-26950991-20171130191406/@comment-30928085-20171130201248\nThread:Univero/@comment-26950991-20171130191406/@comment-30928085-20171201113927\nThread:Univero/@comment-28469459-20190226194605\nThread:Univero/@comment-28469459-20190226194605/@comment-26009169-20190226200829\nThread:Univero/@comment-28469459-20190226194605/@comment-28469459-20190226201400\nThread:Univero/@comment-2A02:810A:14BF:BD65:757C:ABA6:A8A7:B56B-20180331082808\nThread:Univero/@comment-2A02:810A:14BF:BD65:757C:ABA6:A8A7:B56B-20180331082808/@comment-30928085-20180412083146\nThread:Univero/@comment-30245159-20170527141654\nThread:Univero/@comment-30245159-20170527141654/@comment-30928085-20170527154832\nThread:Univero/@comment-30245159-20171113144040\nThread:Univero/@comment-30245159-20171113144040/@comment-30928085-20171114011646\nThread:Univero/@comment-33634742-20171116170835\nThread:Univero/@comment-33634742-20171116170835/@comment-30928085-20171117054934\nThread:Univero/@comment-35700784-20180527170214\nThread:Univero/@comment-35700784-20180527170214/@comment-30928085-20180528193210\nThread:Univero/@comment-36249090-20180719131028\nThread:Univero/@comment-36249090-20180719131028/@comment-30928085-20180719170853\nThread:Univero/@comment-36249090-20180719131028/@comment-36249090-20180719193018\nThread:Univero/@comment-40194358-20200706120921\nThread:Univero/@comment-40194358-20200706120921/@comment-30928085-20200706142229\nThread:Univero/@comment-40194358-20200706120921/@comment-30928085-20200706173851\nThread:Univero/@comment-40194358-20200706120921/@comment-40194358-20200706160144\nThread:Univero/@comment-4903576-20171115155433\nThread:Univero/@comment-4903576-20171115155433/@comment-30928085-20171115182851\nThread:Univero/@comment-4903576-20171115155433/@comment-4903576-20171115185356\nThread:Univero/@comment-499247-20200827105844\nThread:Univero/@comment-499247-20200827105844/@comment-30928085-20200827210839\nThread:Univero/@comment-499247-20200827105844/@comment-499247-20200827213101\nThread:Univero/@comment-499247-20200930235647\nThread:Univero/@comment-499247-20200930235647/@comment-30928085-20201001051819\nThread:Univero/@comment-75.71.191.206-20190412180928\nThread:Univero/@comment-75.71.191.206-20190412180928/@comment-30928085-20190413060944\nThread:Univero/@comment-87.115.129.189-20190329180506\nThread:Univero/@comment-87.115.129.189-20190329180506/@comment-30928085-20190406183126\nThread:Univero/@comment-903860-20200617223841\nThread:Univero/@comment-903860-20200617223841/@comment-30928085-20200624062827\nThread:Univero/@comment-903860-20200617223841/@comment-903860-20200626071358\nThread:Unknowninja/@comment-32769624-20180206025907\nThread:UnstoppableDrew/@comment-32769624-20200712000039\nThread:Urane/@comment-32769624-20190710192219\nThread:Urb0123/@comment-32769624-20180410172108\nThread:Uriei/@comment-32769624-20180103105443\nThread:Ursuul/@comment-32769624-20190314192836\nThread:Usikava/@comment-22439-20150216122117\nThread:VADER KHAN/@comment-32769624-20180417151801\nThread:Vacuum Cleaner/@comment-22439-20160515114713\nThread:Valethar/@comment-22439-20150204000450\nThread:Valiran/@comment-22439-20150110002811\nThread:Valyn Arvis/@comment-32769624-20200515142727\nThread:Van Der Dyke/@comment-32769624-20171214231438\nThread:VandalAxis/@comment-22439-20170129144149\nThread:Varigor/@comment-22439-20160731205958\nThread:Variun/@comment-32769624-20190326000005\nThread:Vato76/@comment-22439-20150109051024\nThread:Vealdin/@comment-22439-20160330211200\nThread:VegBerg/@comment-22439-20150411023129\nThread:Velaxtor/@comment-32769624-20180929000134\nThread:VenZell/@comment-32769624-20180630220821\nThread:Venom49637/@comment-22439-20160605213842\nThread:VenomVdub/@comment-22439-20160121004001\nThread:Veranmis/@comment-22439-20150929133040\nThread:Verbatum14/@comment-32769624-20181216020012\nThread:Verbatum14/@comment-32769624-20181216020213\nThread:Vesto Slipher/@comment-22439-20140617162223\nThread:Vesto Slipher/@comment-22439-20140617162223/@comment-25074307-20140617200033\nThread:Vetryxx/@comment-32769624-20180421210550\nThread:VexaloT/@comment-32769624-20180130001523\nThread:VideoGamePhenom/@comment-22439-20161128193838\nThread:Vikhrs/@comment-32769624-20200719160914\nThread:Vikindor/@comment-22439-20150408191159\nThread:Vikingcat75/@comment-32769624-20180116162028\nThread:Vincent396/@comment-32769624-20190314191646\nThread:Viperial Leader/@comment-22439-20161007163840\nThread:Vitor.leite.1777/@comment-32769624-20180311054330\nThread:VivaDaylight3/@comment-22439-20160519162421\nThread:Vivaporius/@comment-22439-20150529025452\nThread:Vivid Velleity/@comment-32769624-20200615202411\nThread:Vladeros/@comment-22439-20160122151752\nThread:Vojjta96/@comment-32769624-20180717092310\nThread:Vombatiform/@comment-32769624-20180130143707\nThread:Vondrekkenov/@comment-22439-20150409120946\nThread:Voriann/@comment-32769624-20200507200722\nThread:Vurrath/@comment-22439-20160115183446\nThread:Vylanis/@comment-32769624-20200911053827\nThread:WAZALIZALALI/@comment-22439-20151110212437\nThread:WC Yaffle/@comment-185.22.156.97-20141127084137\nThread:WC Yaffle/@comment-22439-20140301081628\nThread:WC Yaffle/@comment-32769624-20190201202217\nThread:Wafflexboy/@comment-22439-20160402085705\nThread:Wakadoo/@comment-32769624-20190825002709\nThread:WalkerFan12/@comment-22439-20150411093617\nThread:Wanwan159/@comment-32769624-20180629093955\nThread:Warchylde73/@comment-32769624-20180309233955\nThread:Warforged44/@comment-32769624-20200213031604\nThread:Warhawker/@comment-22439-20150412203455\nThread:Warhawker/@comment-26418893-20150520211644\nThread:Warhawker/@comment-26418893-20150520211644/@comment-26306474-20150521040955\nThread:Wazabbi/@comment-32769624-20180207005652\nThread:WeatherTopToo/@comment-32769624-20190613075520\nThread:WesULVD/@comment-32769624-20181108135912\nThread:Weylon/@comment-22439-20150606233302\nThread:Wheatley450/@comment-32769624-20200626180957\nThread:WhiteRunner11/@comment-32769624-20180211074905\nThread:WhitesnakeSS/@comment-32769624-20200406110503\nThread:Wickednoreaster/@comment-22439-20160311195552\nThread:Wiergan/@comment-32769624-20200617121345\nThread:Wikia/@comment-22439-20150522162546\nThread:WikiaBot/@comment-22439-20140817110025\nThread:WikiaBot/@comment-22439-20150116160857\nThread:WikiaBot/@comment-22439-20150910055314\nThread:WikiaBot/@comment-22439-20160821120234\nThread:Wikimonkey/@comment-22439-20141006094425\nThread:Wilbowaggins/@comment-22439-20160904053234\nThread:Willard1975/@comment-32769624-20180413132200\nThread:Williezk/@comment-32769624-20191230165438\nThread:WingCommanderBob/@comment-32769624-20200528222042\nThread:Winning444/@comment-22439-20150904024229\nThread:WinterFur/@comment-22439-20151001205652\nThread:Wiseguy7/@comment-22439-20151216053831\nThread:Wishblend/@comment-32769624-20180103144206\nThread:Withnail7/@comment-22439-20150215200745\nThread:WolfGeek101/@comment-32769624-20180420153313\nThread:Wonkyria/@comment-32769624-20200928153435\nThread:Woodventure/@comment-32769624-20190603050606\nThread:WookieeRoar/@comment-22439-20150218014441\nThread:Woorloog/@comment-32769624-20200202201843\nThread:WraithFSC/@comment-22439-20150714011737\nThread:WraithFSC/@comment-22439-20150714011737/@comment-26676664-20150714015127\nThread:Wraith Warrior/@comment-32769624-20200710131118\nThread:Wrenth/@comment-32769624-20171206155950\nThread:Wulfangel/@comment-22439-20150418125505\nThread:Wuzziwu/@comment-32769624-20190608150134\nThread:XB1-VexaloT/@comment-32769624-20190712220736\nThread:XCaliber-Forever/@comment-22439-20150425141943\nThread:XEoDx/@comment-2155082-20170730003902\nThread:XEoDx/@comment-2155082-20170730003902/@comment-24623830-20170819225152\nThread:XMedicatorx/@comment-22439-20150921210032\nThread:XMizinx/@comment-32769624-20190530092636\nThread:XMoneyShadow/@comment-22439-20150914145905\nThread:XND4SPDx/@comment-22439-20160806143039\nThread:XOpticalGHOSTX/@comment-22439-20170714212431\nThread:XXRanceXx/@comment-29095074-20160821120234\nThread:XX PR3$T0N GR4VEE Xx/@comment-22439-20160317211627\nThread:XXxDCMTxXx/@comment-22439-20150823154332\nThread:XXxTULIPxXx/@comment-32769624-20200706082324\nThread:Xaal/@comment-22439-20141215111109\nThread:Xanapoo/@comment-22439-20160606211555\nThread:Xandalis/@comment-22439-20150219000915\nThread:Xandrathii/@comment-32769624-20200603200633\nThread:Xavion85/@comment-32769624-20200529104916\nThread:Xbivoj/@comment-32769624-20190709075352\nThread:Xellos013/@comment-22439-20160105210651\nThread:Xenthor/@comment-22439-20141223191036\nThread:Xerodark/@comment-22439-20150409031034\nThread:Xeticus/@comment-32769624-20191031130515\nThread:Xijadeku/@comment-22439-20160530143857\nThread:XimpleXociety/@comment-32769624-20200118204512\nThread:Xinbi/@comment-32769624-20200913053624\nThread:Xiongu/@comment-32769624-20181219203126\nThread:Xiongu/@comment-32769624-20181219204745\nThread:Xjph/@comment-32769624-20180514134529\nThread:Xmodule/@comment-22439-20150108125423\nThread:Xmodule/@comment-22439-20150108125423/@comment-24179636-20150108191200\nThread:Xmodule/@comment-22439-20150108125423/@comment-25985581-20150108125912\nThread:Xryak/@comment-32769624-20200510180311\nThread:Xuxuanqi13/@comment-22439-20151217072439\nThread:XxRagin Rickxx/@comment-22439-20150712215113\nThread:Xzbyt/@comment-22439-20150920152514\nThread:Xzbyt/@comment-22439-20150920152514/@comment-27003617-20150920153130\nThread:Xzenocrimzie/@comment-32769624-20190718215121\nThread:Y1n4space/@comment-32769624-20190922020705\nThread:YALE70/@comment-32769624-20171015203832\nThread:YaBoiJack/@comment-32769624-20180305200940\nThread:Yamiks/@comment-2155082-20170203183951\nThread:Yamiks/@comment-2155082-20170203183951/@comment-5977407-20170205103605\nThread:Yamiks/@comment-22439-20170109201742\nThread:Yamiks/@comment-22439-20170109201742/@comment-5977407-20170109203745\nThread:Yan March/@comment-22439-20160703221519\nThread:Yce52/@comment-32769624-20190710220750\nThread:Yeetboi03/@comment-32769624-20200223052956\nThread:Yeetus6810/@comment-32769624-20200713074159\nThread:Yesimjeremy/@comment-22439-20150816022316\nThread:Yeungcc1/@comment-22439-20150809082018\nThread:Yianniv/@comment-32769624-20191003094422\nThread:Ykrop00/@comment-32769624-20181015191557\nThread:Ymdred16/@comment-32769624-20200302075505\nThread:Yobrotomo/@comment-32769624-20180831131035\nThread:Yodebe/@comment-32769624-20180329093010\nThread:Yodebe/@comment-32769624-20200306234107\nThread:YourGentderk/@comment-32769624-20180108032210\nThread:YueShuYaC/@comment-32769624-20200507105324\nThread:Yuubari/@comment-32769624-20181228170229\nThread:Ywokls/@comment-32769624-20180923081612\nThread:ZXDetonator/@comment-32769624-20180826062752\nThread:ZaYFix/@comment-32769624-20181215222940\nThread:Zach9054/@comment-32769624-20180109041205\nThread:ZackPanda/@comment-32769624-20180505201822\nThread:Zahadrin/@comment-32769624-20170915064658\nThread:Zalifer/@comment-22439-20141108114639\nThread:Zankor/@comment-32769624-20171121155521\nThread:Zapness/@comment-22439-20160226204415\nThread:Zapstone/@comment-22439-20160713230928\nThread:ZeZombieChicken/@comment-32769624-20200514162806\nThread:Zeidokku/@comment-22439-20140919193053\nThread:Zerakue/@comment-22439-20151229033932\nThread:ZeroOne/@comment-22439-20160601130852\nThread:Zerog6/@comment-22439-20151215162329\nThread:Zeronekox/@comment-22439-20170427023557\nThread:Zgrillo2004/@comment-22439-20160217063223\nThread:Zhadnost/@comment-32769624-20171023090353\nThread:Ziraal/@comment-32769624-20200501191013\nThread:Zloyfedya/@comment-22439-20141222093129\nThread:Zlybratblizniak/@comment-22439-20150128102744\nThread:Zoogoo40/@comment-22439-20160727123519\nThread:Zotic1989/@comment-32769624-20180202015541\nThread:Zranta/@comment-22439-20150722212711\nThread:Zranta/@comment-22439-20150722212711/@comment-26810344-20150722213150\nThread:Zweanslord/@comment-22439-20150622172245\nThread:Zyrr/@comment-22439-20160614055715\nThread:Задолбался Подбирать Имя/@comment-32769624-20200610050212\nMessage Wall Greeting:Applemasterexpert\nMessage Wall Greeting:Gjallarhorn the IceWing\nMessage Wall Greeting:KockaAdmiralac\nMessage Wall Greeting:TheGoldenPatrik1\nMessage Wall Greeting:Ursuul\nModule:Arguments\nModule:CharacterInfobox\nModule:CommodityInfobox\nModule:FormatNum\nModule:HF\nModule:InfoboxBuilder\nModule:InfoboxBuilderView\nModule:Infobox Material\nModule:MaterialInfobox\nModule:Navbox\nModule:NumberSpell\nModule:PlayerGroup\nModule:Policy\nModule:RoleInfobox\nModule:SRVInfobox\nModule:ShipInfobox\nModule:StationInfobox\nModule:SystemInfobox\nModule:TimeAgo\nModule:Tnavbar\nModule:Yesno\nBoard:Council of Admirals\nBoard:Fun and Games\nBoard:General Discussion\nBoard:New on the Elite: Dangerous Wiki\nBoard:News and Announcements\nBoard:Questions and Answers\nBoard Thread:Council of Admirals/@comment-189.72.211.44-20180105230038\nBoard Thread:Council of Admirals/@comment-189.72.211.44-20180105230038/@comment-26009169-20180106112747\nBoard Thread:Council of Admirals/@comment-2003:7A:A81B:A000:9166:1656:81B4:AEE-20171010161116\nBoard Thread:Council of Admirals/@comment-2155082-20170217182908\nBoard Thread:Council of Admirals/@comment-2155082-20170217182908/@comment-26009169-20170217192351\nBoard Thread:Council of Admirals/@comment-2155082-20170217182908/@comment-26009169-20170217193110\nBoard Thread:Council of Admirals/@comment-26009169-20170219120244\nBoard Thread:Council of Admirals/@comment-26009169-20170219120244/@comment-2155082-20170219191520\nBoard Thread:Council of Admirals/@comment-26009169-20170219120244/@comment-2155082-20170221030729\nBoard Thread:Council of Admirals/@comment-26009169-20170219120244/@comment-2155082-20170221184018\nBoard Thread:Council of Admirals/@comment-26009169-20170219120244/@comment-2155082-20170221184832\nBoard Thread:Council of Admirals/@comment-26009169-20170219120244/@comment-2155082-20170222022545\nBoard Thread:Council of Admirals/@comment-26009169-20170219120244/@comment-26009169-20170221183222\nBoard Thread:Council of Admirals/@comment-26009169-20170219120244/@comment-26009169-20170221190723\nBoard Thread:Council of Admirals/@comment-26009169-20170219120244/@comment-26009169-20170222112141\nBoard Thread:Council of Admirals/@comment-26009169-20170219120244/@comment-31363749-20170730042858\nBoard Thread:Council of Admirals/@comment-26810597-20170805001529\nBoard Thread:Council of Admirals/@comment-26810597-20170805001529/@comment-26009169-20170826213539\nBoard Thread:Council of Admirals/@comment-26810597-20170805001529/@comment-26009169-20171108212134\nBoard Thread:Council of Admirals/@comment-26810597-20170805001529/@comment-26009169-20171112235955\nBoard Thread:Council of Admirals/@comment-26810597-20170805001529/@comment-26009169-20171113014211\nBoard Thread:Council of Admirals/@comment-26810597-20170805001529/@comment-30245159-20170819012203\nBoard Thread:Council of Admirals/@comment-26810597-20170805001529/@comment-30245159-20171108033850\nBoard Thread:Council of Admirals/@comment-26810597-20170805001529/@comment-30245159-20171109000358\nBoard Thread:Council of Admirals/@comment-26810597-20170805001529/@comment-30245159-20171112153819\nBoard Thread:Council of Admirals/@comment-26810597-20170805001529/@comment-30245159-20171112162034\nBoard Thread:Council of Admirals/@comment-26810597-20170805001529/@comment-30245159-20171113005038\nBoard Thread:Council of Admirals/@comment-26810597-20170805001529/@comment-30245159-20171118015811\nBoard Thread:Council of Admirals/@comment-26810597-20170805001529/@comment-30928085-20171113015111\nBoard Thread:Council of Admirals/@comment-26810597-20170805001529/@comment-33142358-20170920013149\nBoard Thread:Council of Admirals/@comment-26950991-20171130191851\nBoard Thread:Council of Admirals/@comment-26950991-20171130191851/@comment-26950991-20171130193242\nBoard Thread:Council of Admirals/@comment-26950991-20171130191851/@comment-26950991-20171130214838\nBoard Thread:Council of Admirals/@comment-26950991-20171130191851/@comment-30928085-20171201114329\nBoard Thread:Council of Admirals/@comment-30245159-20170427130856\nBoard Thread:Council of Admirals/@comment-30245159-20170427130856/@comment-26009169-20170427143502\nBoard Thread:Council of Admirals/@comment-30245159-20170427130856/@comment-26009169-20170427161852\nBoard Thread:Council of Admirals/@comment-30245159-20170427130856/@comment-30245159-20170427131348\nBoard Thread:Council of Admirals/@comment-30245159-20170427130856/@comment-30245159-20170427161554\nBoard Thread:Council of Admirals/@comment-30245159-20170427130856/@comment-30245159-20170427163233\nBoard Thread:Council of Admirals/@comment-31363749-20170921044306\nBoard Thread:Council of Admirals/@comment-31363749-20170921044306/@comment-26009169-20170921224236\nBoard Thread:Council of Admirals/@comment-31363749-20170921044306/@comment-31363749-20170921230004\nBoard Thread:Council of Admirals/@comment-31363749-20170921044306/@comment-31363749-20170923071810\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-133748-20150720125748\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-133748-20150721022451\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-133748-20150721142300\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-133748-20150721153539\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-133748-20150722141949\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-133748-20150722211755\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-2155082-20150719212949\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-26009169-20150719212658\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-26009169-20150721134446\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-26009169-20150722235452\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-26009169-20150723001451\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-26009169-20150727122347\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-26009169-20150729234222\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-26536231-20150720204927\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-26536231-20150720222556\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-26536231-20150721145902\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-26536231-20150721160846\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-26536231-20150722085232\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-26536231-20150722111927\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-26536231-20150722114310\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-26536231-20150722145453\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-26536231-20150722190811\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-26536231-20150722204129\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-26536231-20150722234626\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-26536231-20150723132953\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-26757228-20150720071331\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-26757228-20150721065947\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-26757228-20150722044141\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-4555143-20150720210617\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-4555143-20150721003635\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-4555143-20150721192522\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-4555143-20150722094808\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-4555143-20150722185515\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-4555143-20150722202118\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-4555143-20150722235319\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-4555143-20150723000044\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-4555143-20150727172948\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-79.78.6.26-20150720221434\nBoard Thread:Council of Admirals/@comment-4555143-20150719161215/@comment-80.188.15.171-20150721081432\nBoard Thread:Council of Admirals/@comment-5275700-20180103002321\nBoard Thread:Council of Admirals/@comment-5959508-20160909081141\nBoard Thread:Council of Admirals/@comment-5959508-20160909081141/@comment-192.136.161.156-20160910131950\nBoard Thread:Council of Admirals/@comment-5959508-20160909081141/@comment-192.136.161.156-20160919140517\nBoard Thread:Council of Admirals/@comment-5959508-20160909081141/@comment-192.136.161.156-20160920111207\nBoard Thread:Council of Admirals/@comment-5959508-20160909081141/@comment-2155082-20160909175425\nBoard Thread:Council of Admirals/@comment-5959508-20160909081141/@comment-26009169-20160909172339\nBoard Thread:Council of Admirals/@comment-5959508-20160909081141/@comment-26009169-20160912175032\nBoard Thread:Council of Admirals/@comment-5959508-20160909081141/@comment-26009169-20160920112610\nBoard Thread:Council of Admirals/@comment-5959508-20160909081141/@comment-26444643-20160914044958\nBoard Thread:Council of Admirals/@comment-5959508-20160909081141/@comment-29517041-20160914033706\nBoard Thread:Council of Admirals/@comment-5959508-20160909081141/@comment-29517041-20160922001707\nBoard Thread:Council of Admirals/@comment-5959508-20160909081141/@comment-5959508-20160910065912\nBoard Thread:Council of Admirals/@comment-5959508-20160909081141/@comment-5959508-20160910122039\nBoard Thread:Council of Admirals/@comment-5959508-20160909081141/@comment-5959508-20160915183646\nBoard Thread:Council of Admirals/@comment-5959508-20160909081141/@comment-5959508-20160920100402\nBoard Thread:Council of Admirals/@comment-5959508-20160909081141/@comment-5959508-20160920100502\nBoard Thread:Council of Admirals/@comment-5959508-20160909081141/@comment-5959508-20160920112131\nBoard Thread:Council of Admirals/@comment-5959508-20160909081141/@comment-5959508-20160920112526\nBoard Thread:Council of Admirals/@comment-5959508-20160909081141/@comment-5959508-20160920113513\nBoard Thread:Fun and Games/@comment-26442347-20150601220915\nBoard Thread:Fun and Games/@comment-26442347-20150601220915/@comment-26009169-20150601224127\nBoard Thread:Fun and Games/@comment-26513805-20150620030905\nBoard Thread:Fun and Games/@comment-26513805-20150620030905/@comment-34040879-20171221175956\nBoard Thread:General Discussion/@comment-129646-20180124152857\nBoard Thread:General Discussion/@comment-133748-20150722143940\nBoard Thread:General Discussion/@comment-133748-20150722143940/@comment-133748-20150722203035\nBoard Thread:General Discussion/@comment-133748-20150722143940/@comment-133748-20150723030417\nBoard Thread:General Discussion/@comment-133748-20150722143940/@comment-26009169-20150722190313\nBoard Thread:General Discussion/@comment-133748-20150722143940/@comment-26009169-20150722235219\nBoard Thread:General Discussion/@comment-133748-20150722143940/@comment-26009169-20151202015320\nBoard Thread:General Discussion/@comment-133748-20150722143940/@comment-68.189.254.244-20151201181043\nBoard Thread:General Discussion/@comment-176.248.115.26-20160714121444\nBoard Thread:General Discussion/@comment-186.22.105.173-20160529005228\nBoard Thread:General Discussion/@comment-186.22.105.173-20160529005228/@comment-192.136.173.19-20160529144050\nBoard Thread:General Discussion/@comment-195.188.150.130-20160331215850\nBoard Thread:General Discussion/@comment-195.188.150.130-20160331215850/@comment-2605:6000:170E:C041:A53A:529A:B159:7B61-20170817045324\nBoard Thread:General Discussion/@comment-195.188.150.130-20160331215850/@comment-71.233.88.91-20160528195048\nBoard Thread:General Discussion/@comment-2.99.218.211-20150124200553\nBoard Thread:General Discussion/@comment-23371555-20150926160741\nBoard Thread:General Discussion/@comment-24851773-20180103003731\nBoard Thread:General Discussion/@comment-24851773-20180103003731/@comment-24851773-20180117231819\nBoard Thread:General Discussion/@comment-24851773-20180103003731/@comment-26009169-20180104160408\nBoard Thread:General Discussion/@comment-24851773-20180103003731/@comment-26810597-20180103014238\nBoard Thread:General Discussion/@comment-24851773-20180103003731/@comment-26810597-20180104213359\nBoard Thread:General Discussion/@comment-24851773-20180103003731/@comment-30928085-20180105025015\nBoard Thread:General Discussion/@comment-26009169-20150606155206\nBoard Thread:General Discussion/@comment-26009169-20151215162948\nBoard Thread:General Discussion/@comment-26009169-20151215162948/@comment-1.136.96.164-20160722085744\nBoard Thread:General Discussion/@comment-26009169-20151215162948/@comment-1.136.96.164-20160722085857\nBoard Thread:General Discussion/@comment-26009169-20151215162948/@comment-26391992-20160319002609\nBoard Thread:General Discussion/@comment-26009169-20151215162948/@comment-82.3.104.115-20160318192212\nBoard Thread:General Discussion/@comment-26009169-20151231154249\nBoard Thread:General Discussion/@comment-26009169-20151231154249/@comment-2155082-20160102202956\nBoard Thread:General Discussion/@comment-26009169-20151231154249/@comment-2155082-20160109204443\nBoard Thread:General Discussion/@comment-26009169-20151231154249/@comment-2155082-20160216045856\nBoard Thread:General Discussion/@comment-26009169-20151231154249/@comment-26009169-20160102204326\nBoard Thread:General Discussion/@comment-26009169-20151231154249/@comment-26009169-20160109140231\nBoard Thread:General Discussion/@comment-26009169-20151231154249/@comment-26009169-20160216105555\nBoard Thread:General Discussion/@comment-26009169-20151231154249/@comment-26391992-20160117154009\nBoard Thread:General Discussion/@comment-26009169-20151231154249/@comment-26391992-20160117171255\nBoard Thread:General Discussion/@comment-26009169-20151231154249/@comment-26536231-20151231155754\nBoard Thread:General Discussion/@comment-26009169-20151231154249/@comment-26536231-20160109200505\nBoard Thread:General Discussion/@comment-26009169-20151231154249/@comment-5959508-20160109152857\nBoard Thread:General Discussion/@comment-26009169-20151231154249/@comment-5959508-20160117121356\nBoard Thread:General Discussion/@comment-26009169-20151231154249/@comment-5959508-20160117170940\nBoard Thread:General Discussion/@comment-26009169-20151231154249/@comment-5959508-20160216094143\nBoard Thread:General Discussion/@comment-26009169-20151231154249/@comment-99.237.37.136-20160205032728\nBoard Thread:General Discussion/@comment-26009169-20151231154249/@comment-99.237.37.136-20160214164659\nBoard Thread:General Discussion/@comment-26009169-20170315001502\nBoard Thread:General Discussion/@comment-26009169-20170315001502/@comment-130.65.254.13-20170316004102\nBoard Thread:General Discussion/@comment-26009169-20170315001502/@comment-2155082-20170315012132\nBoard Thread:General Discussion/@comment-26009169-20170315001502/@comment-2155082-20170315191731\nBoard Thread:General Discussion/@comment-26009169-20170315001502/@comment-2155082-20170316000935\nBoard Thread:General Discussion/@comment-26009169-20170315001502/@comment-30928085-20170315112319\nBoard Thread:General Discussion/@comment-26009169-20170315001502/@comment-30928085-20170315200307\nBoard Thread:General Discussion/@comment-26009169-20170315001502/@comment-30928085-20170316025856\nBoard Thread:General Discussion/@comment-26116850-20150604032711\nBoard Thread:General Discussion/@comment-26116850-20150604032711/@comment-26009169-20150604152545\nBoard Thread:General Discussion/@comment-26122136-20150218143713\nBoard Thread:General Discussion/@comment-26122136-20150218143713/@comment-115.187.167.185-20150227234029\nBoard Thread:General Discussion/@comment-26122136-20150218143713/@comment-27651484-20160121174930\nBoard Thread:General Discussion/@comment-26122136-20150218143713/@comment-86.170.114.178-20160217212546\nBoard Thread:General Discussion/@comment-26122136-20150218143713/@comment-99.113.119.1-20150722064853\nBoard Thread:General Discussion/@comment-26375871-20170316125414\nBoard Thread:General Discussion/@comment-26375871-20170316125414/@comment-26009169-20170316132856\nBoard Thread:General Discussion/@comment-26375871-20170316125414/@comment-30928085-20170316191817\nBoard Thread:General Discussion/@comment-26391992-20160310170103\nBoard Thread:General Discussion/@comment-26391992-20160310170103/@comment-192.136.173.202-20160415142808\nBoard Thread:General Discussion/@comment-26391992-20160310170103/@comment-192.136.174.152-20160314160937\nBoard Thread:General Discussion/@comment-26391992-20160310170103/@comment-2155082-20160311060932\nBoard Thread:General Discussion/@comment-26391992-20160310170103/@comment-26009169-20160313124149\nBoard Thread:General Discussion/@comment-26391992-20160310170103/@comment-26009169-20160314162818\nBoard Thread:General Discussion/@comment-26520854-20150709145515\nBoard Thread:General Discussion/@comment-26520854-20150709145515/@comment-26520854-20150721075227\nBoard Thread:General Discussion/@comment-26520854-20150709145515/@comment-26757228-20150721070154\nBoard Thread:General Discussion/@comment-26520854-20150709145515/@comment-72.191.1.250-20151017225412\nBoard Thread:General Discussion/@comment-26530484-20170713100855\nBoard Thread:General Discussion/@comment-26530484-20170713100855/@comment-2155082-20170715215035\nBoard Thread:General Discussion/@comment-26540774-20151122201128\nBoard Thread:General Discussion/@comment-26899827-20150817150918\nBoard Thread:General Discussion/@comment-27165666-20151105204231\nBoard Thread:General Discussion/@comment-27165666-20151105204231/@comment-26009169-20151111103918\nBoard Thread:General Discussion/@comment-27165666-20151105204231/@comment-27165666-20151111101633\nBoard Thread:General Discussion/@comment-27165666-20151105204231/@comment-5959508-20151106103642\nBoard Thread:General Discussion/@comment-27165666-20151105204231/@comment-5959508-20151106104346\nBoard Thread:General Discussion/@comment-32085540-20170523062653\nBoard Thread:General Discussion/@comment-32470875-20170723220043\nBoard Thread:General Discussion/@comment-32470875-20170723220043/@comment-2155082-20170723222545\nBoard Thread:General Discussion/@comment-32470875-20170724001617\nBoard Thread:General Discussion/@comment-59.102.61.156-20161220000636\nBoard Thread:General Discussion/@comment-59.102.61.156-20161220000636/@comment-68.61.65.248-20161227095737\nBoard Thread:General Discussion/@comment-59.102.61.156-20161220000636/@comment-68.61.65.248-20161227095805\nBoard Thread:General Discussion/@comment-82.43.43.240-20160814225846\nBoard Thread:New on Elite Dangerous Wiki/@comment-26084686-20150207095704\nBoard Thread:New on Elite Dangerous Wiki/@comment-26084686-20150207095704/@comment-12138097-20150207103619\nBoard Thread:New on the Elite: Dangerous Wiki/@comment-192.183.13.221-20151222010705\nBoard Thread:New on the Elite: Dangerous Wiki/@comment-192.183.13.221-20151222010705/@comment-1028741-20151222013258\nBoard Thread:New on the Elite: Dangerous Wiki/@comment-27651919-20160121181612\nBoard Thread:New on the Elite: Dangerous Wiki/@comment-27651919-20160121181612/@comment-212.198.113.188-20171203162824\nBoard Thread:New on the Elite: Dangerous Wiki/@comment-27651919-20160121181612/@comment-27311754-20160122180458\nBoard Thread:New on the Elite: Dangerous Wiki/@comment-27651919-20160121181612/@comment-27651919-20160125120241\nBoard Thread:News and Announcements/@comment-25335609-20150525054541\nBoard Thread:News and Announcements/@comment-25335609-20150525054541/@comment-26009169-20150525154151\nBoard Thread:News and Announcements/@comment-25335609-20150525054541/@comment-26009169-20150525154525\nBoard Thread:News and Announcements/@comment-25988407-20150207125725\nBoard Thread:News and Announcements/@comment-26009169-20150519175440\nBoard Thread:News and Announcements/@comment-26009169-20150519175440/@comment-26362216-20150523062052\nBoard Thread:News and Announcements/@comment-26009169-20150606015249\nBoard Thread:News and Announcements/@comment-26009169-20150606015249/@comment-24117002-20150607183505\nBoard Thread:News and Announcements/@comment-26009169-20150606015249/@comment-26009169-20150608221043\nBoard Thread:News and Announcements/@comment-26009169-20150606015249/@comment-26362216-20150608102115\nBoard Thread:News and Announcements/@comment-26009169-20150606015249/@comment-26362216-20150614032228\nBoard Thread:News and Announcements/@comment-26009169-20150606015249/@comment-26372902-20150608051940\nBoard Thread:News and Announcements/@comment-26009169-20150606015249/@comment-26420537-20150607083508\nBoard Thread:News and Announcements/@comment-26009169-20150606015249/@comment-26442659-20150606135107\nBoard Thread:News and Announcements/@comment-26009169-20150705001130\nBoard Thread:News and Announcements/@comment-26009169-20150705001130/@comment-26116574-20150709013240\nBoard Thread:News and Announcements/@comment-26009169-20150705001130/@comment-26513805-20150709023920\nBoard Thread:Questions and Answers/@comment-108.131.3.207-20170616234156\nBoard Thread:Questions and Answers/@comment-108.131.3.207-20170616234156/@comment-68.187.89.63-20170719051723\nBoard Thread:Questions and Answers/@comment-108.131.3.207-20170616234156/@comment-92.236.136.128-20170702133003\nBoard Thread:Questions and Answers/@comment-116.251.22.2-20161021062946\nBoard Thread:Questions and Answers/@comment-116.251.22.2-20161021062946/@comment-122.58.239.177-20161122234313\nBoard Thread:Questions and Answers/@comment-116.251.22.2-20161021062946/@comment-27032150-20161123101114\nBoard Thread:Questions and Answers/@comment-122.149.25.122-20160701013320\nBoard Thread:Questions and Answers/@comment-122.149.25.122-20160701013320/@comment-2155082-20160701035735\nBoard Thread:Questions and Answers/@comment-122.58.239.177-20161121043707\nBoard Thread:Questions and Answers/@comment-122.58.239.177-20161121043707/@comment-122.58.239.177-20161121160858\nBoard Thread:Questions and Answers/@comment-122.58.239.177-20161121043707/@comment-122.58.239.177-20161121185259\nBoard Thread:Questions and Answers/@comment-122.58.239.177-20161121043707/@comment-122.58.239.177-20161121185740\nBoard Thread:Questions and Answers/@comment-122.58.239.177-20161121043707/@comment-122.58.239.177-20161121213820\nBoard Thread:Questions and Answers/@comment-122.58.239.177-20161121043707/@comment-122.58.239.177-20161122001454\nBoard Thread:Questions and Answers/@comment-122.58.239.177-20161121043707/@comment-122.58.239.177-20161122040431\nBoard Thread:Questions and Answers/@comment-122.58.239.177-20161121043707/@comment-122.58.239.177-20161122042301\nBoard Thread:Questions and Answers/@comment-122.58.239.177-20161121043707/@comment-122.58.239.177-20161122153514\nBoard Thread:Questions and Answers/@comment-122.58.239.177-20161121043707/@comment-192.136.161.52-20161121121242\nBoard Thread:Questions and Answers/@comment-122.58.239.177-20161121043707/@comment-192.136.161.52-20161121173907\nBoard Thread:Questions and Answers/@comment-122.58.239.177-20161121043707/@comment-192.136.161.52-20161121175323\nBoard Thread:Questions and Answers/@comment-122.58.239.177-20161121043707/@comment-192.136.161.52-20161121181617\nBoard Thread:Questions and Answers/@comment-122.58.239.177-20161121043707/@comment-192.136.161.52-20161121212732\nBoard Thread:Questions and Answers/@comment-122.58.239.177-20161121043707/@comment-192.136.161.52-20161122041229\nBoard Thread:Questions and Answers/@comment-122.58.239.177-20161121043707/@comment-192.136.161.52-20161122120732\nBoard Thread:Questions and Answers/@comment-122.58.239.177-20161121043707/@comment-192.136.161.52-20161122164954\nBoard Thread:Questions and Answers/@comment-122.58.239.177-20161121050525\nBoard Thread:Questions and Answers/@comment-122.58.239.177-20161121050525/@comment-192.136.161.52-20161121213106\nBoard Thread:Questions and Answers/@comment-122.58.239.177-20161121050525/@comment-206.255.91.226-20170101170933\nBoard Thread:Questions and Answers/@comment-122.58.239.177-20161121050525/@comment-68.187.89.63-20170719052046\nBoard Thread:Questions and Answers/@comment-122.58.239.177-20161121233855\nBoard Thread:Questions and Answers/@comment-122.58.239.177-20161121233855/@comment-2155082-20161124045640\nBoard Thread:Questions and Answers/@comment-122.58.239.177-20161122233005\nBoard Thread:Questions and Answers/@comment-122.58.239.177-20161122233005/@comment-122.58.239.177-20161122233252\nBoard Thread:Questions and Answers/@comment-124.170.146.115-20150323022847\nBoard Thread:Questions and Answers/@comment-124.170.146.115-20150323022847/@comment-26009169-20150323115346\nBoard Thread:Questions and Answers/@comment-125.237.6.217-20170514192912\nBoard Thread:Questions and Answers/@comment-125.237.6.217-20170514192912/@comment-125.237.6.217-20170515043920\nBoard Thread:Questions and Answers/@comment-125.237.6.217-20170514192912/@comment-69.159.13.145-20170515002809\nBoard Thread:Questions and Answers/@comment-125.237.6.217-20170515044549\nBoard Thread:Questions and Answers/@comment-125.237.7.120-20170124184924\nBoard Thread:Questions and Answers/@comment-125.237.7.120-20170124184924/@comment-31179914-20170129145821\nBoard Thread:Questions and Answers/@comment-125.237.7.64-20161130021709\nBoard Thread:Questions and Answers/@comment-125.237.7.64-20161130021709/@comment-192.136.161.52-20161130040242\nBoard Thread:Questions and Answers/@comment-1305208-20171125125515\nBoard Thread:Questions and Answers/@comment-15422849-20150623072753\nBoard Thread:Questions and Answers/@comment-15422849-20150623072753/@comment-26540390-20150628101908\nBoard Thread:Questions and Answers/@comment-15422849-20150623072753/@comment-68.187.89.63-20170719053935\nBoard Thread:Questions and Answers/@comment-162.239.69.156-20160111003821\nBoard Thread:Questions and Answers/@comment-162.239.69.156-20160111003821/@comment-2155082-20160111043113\nBoard Thread:Questions and Answers/@comment-172.8.173.4-20151101003607\nBoard Thread:Questions and Answers/@comment-173.30.120.225-20150215003704\nBoard Thread:Questions and Answers/@comment-173.30.120.225-20150215003704/@comment-173.30.120.225-20150215190840\nBoard Thread:Questions and Answers/@comment-173.30.120.225-20150215003704/@comment-173.30.120.225-20150215205630\nBoard Thread:Questions and Answers/@comment-173.30.120.225-20150215003704/@comment-173.30.120.225-20150216154102\nBoard Thread:Questions and Answers/@comment-173.30.120.225-20150215003704/@comment-26009169-20150215012542\nBoard Thread:Questions and Answers/@comment-173.30.120.225-20150215003704/@comment-26009169-20150215191248\nBoard Thread:Questions and Answers/@comment-173.30.120.225-20150215003704/@comment-26009169-20150215210008\nBoard Thread:Questions and Answers/@comment-173.30.120.225-20150216154352\nBoard Thread:Questions and Answers/@comment-173.30.120.225-20150216154352/@comment-173.30.120.225-20150216192038\nBoard Thread:Questions and Answers/@comment-173.30.120.225-20150216154352/@comment-173.30.120.225-20150218014124\nBoard Thread:Questions and Answers/@comment-173.30.120.225-20150216154352/@comment-25729770-20150218060738\nBoard Thread:Questions and Answers/@comment-173.30.120.225-20150216154352/@comment-26009169-20150216163726\nBoard Thread:Questions and Answers/@comment-174.44.1.142-20150911220859\nBoard Thread:Questions and Answers/@comment-174.74.81.170-20150412041304\nBoard Thread:Questions and Answers/@comment-174.74.81.170-20150412041304/@comment-121.52.94.70-20150427083947\nBoard Thread:Questions and Answers/@comment-174.74.81.170-20150412041304/@comment-85.9.58.227-20150519141523\nBoard Thread:Questions and Answers/@comment-184.7.65.175-20171109020903\nBoard Thread:Questions and Answers/@comment-184.7.65.175-20171109020903/@comment-193.191.216.75-20171110093635\nBoard Thread:Questions and Answers/@comment-194.74.159.228-20170703133010\nBoard Thread:Questions and Answers/@comment-194.74.159.228-20170703133010/@comment-26810597-20170703182239\nBoard Thread:Questions and Answers/@comment-194.74.159.228-20170703133010/@comment-68.187.89.63-20170719052333\nBoard Thread:Questions and Answers/@comment-202.176.218.100-20170821081156\nBoard Thread:Questions and Answers/@comment-206.45.38.43-20150219184737\nBoard Thread:Questions and Answers/@comment-206.45.38.43-20150219184737/@comment-15422849-20150623065410\nBoard Thread:Questions and Answers/@comment-206.45.38.43-20150219184737/@comment-15422849-20150624071327\nBoard Thread:Questions and Answers/@comment-206.45.38.43-20150219184737/@comment-26009169-20150219223020\nBoard Thread:Questions and Answers/@comment-206.45.38.43-20150219184737/@comment-72.178.43.104-20150412011134\nBoard Thread:Questions and Answers/@comment-206.45.38.43-20150219184737/@comment-72.216.57.96-20150403152808\nBoard Thread:Questions and Answers/@comment-206.45.38.43-20150219184737/@comment-80.82.132.27-20150623065156\nBoard Thread:Questions and Answers/@comment-206.45.38.43-20150219184737/@comment-82.9.59.120-20150623203802\nBoard Thread:Questions and Answers/@comment-206.45.38.43-20150219184737/@comment-82.9.59.120-20150623204058\nBoard Thread:Questions and Answers/@comment-217.20.16.190-20170817085118\nBoard Thread:Questions and Answers/@comment-217.20.16.190-20170817085118/@comment-208.184.157.62-20171221175524\nBoard Thread:Questions and Answers/@comment-217.20.16.190-20170817085118/@comment-217.20.16.190-20170817113959\nBoard Thread:Questions and Answers/@comment-2602:306:CF84:27D0:5DD4:5A5D:F605:FACE-20171106022557\nBoard Thread:Questions and Answers/@comment-2606:A000:BEC2:6700:8150:C8F1:1CD0:B4AD-20170906155230\nBoard Thread:Questions and Answers/@comment-26239226-20150410123331\nBoard Thread:Questions and Answers/@comment-26239226-20150410123331/@comment-26009169-20150410130024\nBoard Thread:Questions and Answers/@comment-26239226-20150410123331/@comment-26239226-20150410130509\nBoard Thread:Questions and Answers/@comment-26314127-20150415054710\nBoard Thread:Questions and Answers/@comment-26314127-20150415054710/@comment-26009169-20150415120229\nBoard Thread:Questions and Answers/@comment-26314127-20150415054710/@comment-26009169-20150417132128\nBoard Thread:Questions and Answers/@comment-26314127-20150415054710/@comment-26314127-20150417131735\nBoard Thread:Questions and Answers/@comment-26314127-20150415054710/@comment-26314127-20150421055346\nBoard Thread:Questions and Answers/@comment-26506222-20150720132609\nBoard Thread:Questions and Answers/@comment-26506222-20150720132609/@comment-26506222-20150720142934\nBoard Thread:Questions and Answers/@comment-26506222-20150720132609/@comment-26599825-20150720142653\nBoard Thread:Questions and Answers/@comment-26506222-20150720132609/@comment-26599825-20150720143520\nBoard Thread:Questions and Answers/@comment-26507290-20150618004023\nBoard Thread:Questions and Answers/@comment-26507290-20150618004023/@comment-15422849-20150623065747\nBoard Thread:Questions and Answers/@comment-26507290-20150618004023/@comment-24503385-20150618105259\nBoard Thread:Questions and Answers/@comment-26507290-20150618004023/@comment-26009169-20150618012515\nBoard Thread:Questions and Answers/@comment-26507290-20150618004023/@comment-2600:6C44:37F:F8D3:2D4E:282D:5270:4227-20170726054554\nBoard Thread:Questions and Answers/@comment-26507290-20150618004023/@comment-5.69.243.98-20170506173938\nBoard Thread:Questions and Answers/@comment-26507290-20150618004023/@comment-5.69.243.98-20170506174037\nBoard Thread:Questions and Answers/@comment-26507290-20150618004023/@comment-64.131.59.218-20150618130449\nBoard Thread:Questions and Answers/@comment-26520854-20150622195106\nBoard Thread:Questions and Answers/@comment-26663911-20150712215112\nBoard Thread:Questions and Answers/@comment-26663911-20150712215112/@comment-98.125.232.227-20160306062749\nBoard Thread:Questions and Answers/@comment-26724535-20150728221515\nBoard Thread:Questions and Answers/@comment-26757228-20150721135645\nBoard Thread:Questions and Answers/@comment-26757228-20150721135645/@comment-26599825-20150726151912\nBoard Thread:Questions and Answers/@comment-27032150-20150930095715\nBoard Thread:Questions and Answers/@comment-27032150-20150930095715/@comment-26009169-20150930151052\nBoard Thread:Questions and Answers/@comment-27032150-20151001090305\nBoard Thread:Questions and Answers/@comment-27032150-20151001090305/@comment-26599825-20151001092156\nBoard Thread:Questions and Answers/@comment-27032150-20151001090305/@comment-26599825-20151001120254\nBoard Thread:Questions and Answers/@comment-27032150-20151001090305/@comment-26599825-20151001170659\nBoard Thread:Questions and Answers/@comment-27032150-20151001090305/@comment-27032150-20151001101151\nBoard Thread:Questions and Answers/@comment-27032150-20151001090305/@comment-27032150-20151001134527\nBoard Thread:Questions and Answers/@comment-27032150-20151019081808\nBoard Thread:Questions and Answers/@comment-27069666-20151012104155\nBoard Thread:Questions and Answers/@comment-27069666-20151012104155/@comment-26009169-20151012183536\nBoard Thread:Questions and Answers/@comment-27212697-20151114034533\nBoard Thread:Questions and Answers/@comment-27212697-20151114034533/@comment-153.24.73.60-20160111220806\nBoard Thread:Questions and Answers/@comment-27212697-20151114034533/@comment-194.187.75.138-20160516194212\nBoard Thread:Questions and Answers/@comment-27212697-20151114034533/@comment-78.88.140.214-20160111232713\nBoard Thread:Questions and Answers/@comment-27616182-20160115190817\nBoard Thread:Questions and Answers/@comment-27742249-20160727025520\nBoard Thread:Questions and Answers/@comment-27742249-20160727025520/@comment-2155082-20160727043007\nBoard Thread:Questions and Answers/@comment-27742249-20160727025520/@comment-2155082-20160728024907\nBoard Thread:Questions and Answers/@comment-27742249-20160727025520/@comment-27742249-20160727162631\nBoard Thread:Questions and Answers/@comment-27742249-20160727025520/@comment-27742249-20160727170630\nBoard Thread:Questions and Answers/@comment-27742249-20160727025520/@comment-5959508-20160910123203\nBoard Thread:Questions and Answers/@comment-28077509-20160328170842\nBoard Thread:Questions and Answers/@comment-28077509-20160328170842/@comment-71.233.88.91-20160528195452\nBoard Thread:Questions and Answers/@comment-28934960-20160827155523\nBoard Thread:Questions and Answers/@comment-28934960-20160827155523/@comment-5959508-20160910122445\nBoard Thread:Questions and Answers/@comment-28934960-20160827155523/@comment-5959508-20160910122823\nBoard Thread:Questions and Answers/@comment-31.187.5.151-20160929144546\nBoard Thread:Questions and Answers/@comment-31222861-20170203212621\nBoard Thread:Questions and Answers/@comment-31222861-20170203212621/@comment-31222861-20170204034524\nBoard Thread:Questions and Answers/@comment-31927812-20170501095337\nBoard Thread:Questions and Answers/@comment-31927812-20170501095337/@comment-26009169-20170501132402\nBoard Thread:Questions and Answers/@comment-31927812-20170501095337/@comment-26009169-20170501155814\nBoard Thread:Questions and Answers/@comment-31927812-20170501095337/@comment-31927812-20170501151816\nBoard Thread:Questions and Answers/@comment-31927812-20170501095337/@comment-31927812-20170501160153\nBoard Thread:Questions and Answers/@comment-32528799-20170712153452\nBoard Thread:Questions and Answers/@comment-32528799-20170712153452/@comment-2155082-20170712200406\nBoard Thread:Questions and Answers/@comment-32528799-20170712153452/@comment-32528799-20170712211553\nBoard Thread:Questions and Answers/@comment-33634742-20171113103536\nBoard Thread:Questions and Answers/@comment-50.34.140.248-20170109012206\nBoard Thread:Questions and Answers/@comment-50.34.140.248-20170109012206/@comment-192.136.161.52-20170109121654\nBoard Thread:Questions and Answers/@comment-50.34.140.248-20170109012206/@comment-25450485-20170917093131\nBoard Thread:Questions and Answers/@comment-50.89.209.6-20170525211549\nBoard Thread:Questions and Answers/@comment-50.89.209.6-20170525211549/@comment-2155082-20170525231528\nBoard Thread:Questions and Answers/@comment-50.89.209.6-20170525211549/@comment-50.89.209.6-20170526001420\nBoard Thread:Questions and Answers/@comment-65.190.212.70-20160314163501\nBoard Thread:Questions and Answers/@comment-65.190.212.70-20160314163501/@comment-2155082-20160315051258\nBoard Thread:Questions and Answers/@comment-65.190.212.70-20160314163501/@comment-65.190.212.70-20160315161741\nBoard Thread:Questions and Answers/@comment-6607991-20160628214538\nBoard Thread:Questions and Answers/@comment-6607991-20160628214538/@comment-122.149.25.122-20160630140015\nBoard Thread:Questions and Answers/@comment-6607991-20160628214538/@comment-192.136.174.182-20160630232932\nBoard Thread:Questions and Answers/@comment-6607991-20160628214538/@comment-6607991-20160701015628\nBoard Thread:Questions and Answers/@comment-68.187.89.63-20170719050701\nBoard Thread:Questions and Answers/@comment-68.187.89.63-20170719050701/@comment-2155082-20170719194604\nBoard Thread:Questions and Answers/@comment-68.187.89.63-20170719050701/@comment-2600:6C44:37F:F8D3:2D4E:282D:5270:4227-20170726054041\nBoard Thread:Questions and Answers/@comment-69.178.208.220-20150820121237\nBoard Thread:Questions and Answers/@comment-69.178.208.220-20150820121237/@comment-68.187.89.63-20170719053508\nBoard Thread:Questions and Answers/@comment-69.178.208.220-20150820121237/@comment-68.187.89.63-20170719053535\nBoard Thread:Questions and Answers/@comment-69.178.208.220-20150820121237/@comment-69.178.208.220-20150820121421\nBoard Thread:Questions and Answers/@comment-69.92.188.170-20150728235534\nBoard Thread:Questions and Answers/@comment-69.92.188.170-20150728235534/@comment-204.209.216.245-20171128155643\nBoard Thread:Questions and Answers/@comment-69.92.188.170-20150728235534/@comment-213.120.234.146-20151111144013\nBoard Thread:Questions and Answers/@comment-69.92.188.170-20150728235534/@comment-216.221.119.224-20150912041120\nBoard Thread:Questions and Answers/@comment-69.92.188.170-20150728235534/@comment-2602:304:249C:88A0:4146:A243:3CCE:80CD-20171026123936\nBoard Thread:Questions and Answers/@comment-69.92.188.170-20150728235534/@comment-26973481-20150929200338\nBoard Thread:Questions and Answers/@comment-69.92.188.170-20150728235534/@comment-27679848-20160126130058\nBoard Thread:Questions and Answers/@comment-69.92.188.170-20150728235534/@comment-47.145.14.169-20170421161659\nBoard Thread:Questions and Answers/@comment-69.92.188.170-20150728235534/@comment-78.18.242.217-20160123225941\nBoard Thread:Questions and Answers/@comment-69.92.188.170-20150728235534/@comment-82.109.66.147-20171027100156\nBoard Thread:Questions and Answers/@comment-69.92.188.170-20150728235534/@comment-86.152.99.162-20160122220623\nBoard Thread:Questions and Answers/@comment-69.92.188.170-20150728235534/@comment-92.22.220.140-20150926193927\nBoard Thread:Questions and Answers/@comment-69.92.188.170-20150728235534/@comment-96.50.17.132-20171230183910\nBoard Thread:Questions and Answers/@comment-70.115.15.126-20150605025955\nBoard Thread:Questions and Answers/@comment-70.115.15.126-20150605025955/@comment-26009169-20150605115616\nBoard Thread:Questions and Answers/@comment-71.91.113.48-20160116222736\nBoard Thread:Questions and Answers/@comment-71.91.113.48-20160116222736/@comment-1028741-20160116233232\nBoard Thread:Questions and Answers/@comment-71.91.113.48-20160116222736/@comment-71.91.113.48-20160117201103\nBoard Thread:Questions and Answers/@comment-71.91.113.48-20160116222736/@comment-71.91.113.48-20160117202447\nBoard Thread:Questions and Answers/@comment-72.219.146.96-20170130214132\nBoard Thread:Questions and Answers/@comment-72.219.146.96-20170130214132/@comment-107.77.85.119-20170806212837\nBoard Thread:Questions and Answers/@comment-72.219.146.96-20170130214132/@comment-2155082-20170130222442\nBoard Thread:Questions and Answers/@comment-72.219.146.96-20170130214132/@comment-26009169-20170130220803\nBoard Thread:Questions and Answers/@comment-72.219.146.96-20170130214132/@comment-72.219.146.96-20170130233008\nBoard Thread:Questions and Answers/@comment-73.36.115.50-20160117094904\nBoard Thread:Questions and Answers/@comment-74.89.225.194-20150213030039\nBoard Thread:Questions and Answers/@comment-74.89.225.194-20150213030039/@comment-1156746-20150213082553\nBoard Thread:Questions and Answers/@comment-74.89.225.194-20150213030039/@comment-12138097-20150213040012\nBoard Thread:Questions and Answers/@comment-74.89.225.194-20150213030039/@comment-25729770-20150218060845\nBoard Thread:Questions and Answers/@comment-74.89.225.194-20150213030039/@comment-27443734-20151222022730\nBoard Thread:Questions and Answers/@comment-74.89.225.194-20150213030039/@comment-74.89.225.194-20150213164518\nBoard Thread:Questions and Answers/@comment-75.100.98.140-20151013185856\nBoard Thread:Questions and Answers/@comment-75.100.98.140-20151013185856/@comment-153.24.73.60-20160111220315\nBoard Thread:Questions and Answers/@comment-75.100.98.140-20151013185856/@comment-27032150-20151014073442\nBoard Thread:Questions and Answers/@comment-75.159.10.110-20170426014515\nBoard Thread:Questions and Answers/@comment-75.159.10.110-20170426014515/@comment-192.136.161.52-20170426113050\nBoard Thread:Questions and Answers/@comment-76.174.114.157-20150524211933\nBoard Thread:Questions and Answers/@comment-76.174.114.157-20150524211933/@comment-25335609-20150525054722\nBoard Thread:Questions and Answers/@comment-76.174.114.157-20150524211933/@comment-26009169-20150524224637\nBoard Thread:Questions and Answers/@comment-76.174.114.157-20150524211933/@comment-26009169-20150525113014\nBoard Thread:Questions and Answers/@comment-76.174.114.157-20150524211933/@comment-27616182-20160115183445\nBoard Thread:Questions and Answers/@comment-76.174.114.157-20150524211933/@comment-76.174.114.157-20150525213050\nBoard Thread:Questions and Answers/@comment-82.22.60.40-20150613154636\nBoard Thread:Questions and Answers/@comment-82.22.60.40-20150613154636/@comment-76.5.131.219-20180117222436\nBoard Thread:Questions and Answers/@comment-82.22.60.40-20150613154636/@comment-82.22.60.40-20150613182101\nBoard Thread:Questions and Answers/@comment-82.38.158.47-20160602215748\nBoard Thread:Questions and Answers/@comment-82.38.158.47-20160602215748/@comment-2155082-20160603035150\nBoard Thread:Questions and Answers/@comment-82.38.158.47-20160602215748/@comment-2155082-20160604040613\nBoard Thread:Questions and Answers/@comment-82.38.158.47-20160602215748/@comment-68.187.89.63-20170719053043\nBoard Thread:Questions and Answers/@comment-82.38.158.47-20160602215748/@comment-82.38.158.47-20160603085120\nBoard Thread:Questions and Answers/@comment-82.43.43.240-20160908114251\nBoard Thread:Questions and Answers/@comment-82.43.43.240-20160908114251/@comment-27032150-20160908121317\nBoard Thread:Questions and Answers/@comment-82.43.43.240-20160908114251/@comment-5959508-20160910122308\nBoard Thread:Questions and Answers/@comment-85.246.104.196-20160725103214\nBoard Thread:Questions and Answers/@comment-85.246.104.196-20160725103214/@comment-85.246.104.196-20160725103433\nBoard Thread:Questions and Answers/@comment-92.232.55.39-20150929165959\nBoard Thread:Questions and Answers/@comment-92.232.55.39-20150929165959/@comment-92.232.55.39-20150929192533\nBoard Thread:Questions and Answers/@comment-92.236.136.128-20170702131837\nBoard Thread:Questions and Answers/@comment-94.221.77.25-20170815174425\nBoard Thread:Questions and Answers/@comment-94.64.197.55-20171016065513\nBoard Thread:Questions and Answers/@comment-94.64.197.55-20171016065513/@comment-32871253-20171024071711\nBoard Thread:Questions and Answers/@comment-96.37.31.189-20160616205034\nBoard Thread:Questions and Answers/@comment-96.37.31.189-20160616205034/@comment-125.237.7.120-20170124185846\nBoard Thread:Questions and Answers/@comment-97.123.131.49-20170120103119\nBoard Thread:Questions and Answers/@comment-97.123.131.49-20170120103119/@comment-125.237.6.217-20170514192420\nBoard Thread:Questions and Answers/@comment-97.123.131.49-20170120103119/@comment-26009169-20170509162014\nBoard Thread:Questions and Answers/@comment-97.123.131.49-20170120103119/@comment-26599825-20170120163211\nBoard Thread:Questions and Answers/@comment-97.123.131.49-20170120103119/@comment-71.205.105.177-20170509023420\nBoard Thread:Questions and Answers/@comment-97.123.131.49-20170203122034\nBoard Thread:Questions and Answers/@comment-97.123.131.49-20170203122034/@comment-2155082-20170203182611\nBoard Thread:Questions and Answers/@comment-99.57.137.118-20161210072951\nBoard Thread:Questions and Answers/@comment-99.57.137.118-20161210072951/@comment-2155082-20170111053457\nForum:Ace-Edge X360 controller\nForum:Help desk\nForum:How to add a new row into chart?\nForum:How to add a new row into chart ?\nForum:Index\nForum:Watercooler\nForum:Welcome to the help desk\nForum:Welcome to the watercooler\nUser blog:Arnoldhdz\nUser blog:Arnoldhdz/Day 1\nUser blog:Arnoldhdz/Day 2\nUser blog:Arnoldhdz/Day 3\nUser blog:Arnoldhdz/Day 4\nUser blog:Arnoldhdz/Day 5\nUser blog:Arnoldhdz/Day 6\nUser blog:Arron X\nUser blog:Arron X/Atmospheric worlds\nUser blog:Athina128/https://twitter.com/aisling duval\nUser blog:Barateza\nUser blog:Barateza/Brazilian translation to Elite Dangerous\nUser blog:Bbretterson\nUser blog:Bluecrash\nUser blog:Bluecrash/Hit Triple Elite - Time for the Raxxla quest.\nUser blog:CMDR FaeKing/Adjusting to the Odd in Odyssey\nUser blog:CMDR TRUE LUMINUS\nUser blog:CMDR TRUE LUMINUS/Amazing Sight\nUser blog:CMDR TRUE LUMINUS/Myriesly Nebula. Go there!\nUser blog:CMDR TRUE LUMINUS/Neutron Star igh above the galactic plane\nUser blog:CMDR TRUE LUMINUS/Neutron Star orbiting nearly within F Star\nUser blog:CMDR TRUE LUMINUS/Red Giant at the Top of the Galaxy\nUser blog:CMDR TRUE LUMINUS/Satellite Discovered in the Middle of Nowhere\nUser blog:CMDR TRUE LUMINUS/Stellar Forge\nUser blog:CMDR Triton Zeal\nUser blog:CMDR Triton Zeal/Am i the only one?\nUser blog:CMDR Triton Zeal/Created a guide to farming merits\nUser blog:CMDR Triton Zeal/Cutter\nUser blog:CMDR Triton Zeal/Dear Frontear\nUser blog:CMDR Triton Zeal/Federal Corvette\nUser blog:CMDR Triton Zeal/Fer-de-Lance at a discount in horizons\nUser blog:CMDR Triton Zeal/NOOOOOO\nUser blog:CMDR Triton Zeal/Rating 5 influence bonuses\nUser blog:CMDR Triton Zeal/Who else cant wait for Horizons?\nUser blog:Clockpuncher\nUser blog:Cmdr Sekiou\nUser blog:Cmdr Sekiou/Finding Materials\nUser blog:DNYI\nUser blog:DNYI/Hello, I need advice on how to add images to this wiki\nUser blog:DNYI/How do you create a category?\nUser blog:DNYI/Massive set of undo revisions on commodity pages\nUser blog:Digistruct0r\nUser blog:Digistruct0r/DBS & I don't even know anymore...\nUser blog:Digistruct0r/DBS x Icy Canyon OTP\nUser blog:Digistruct0r/HIP 38064. Go there.\nUser blog:Digistruct0r/Have been making quite a lot of trips to Robigo and back...\nUser blog:Digistruct0r/Little change to the ship infobox\nUser blog:Digistruct0r/Ship Categorization\nUser blog:Digistruct0r/Traffic Control - Newsletter 121\nUser blog:Digistruct0r/Weapons of Elite\nUser blog:Disrobed34/I have just found 23 black holes and I need assistance as soon as possible\nUser blog:Emailformygames\nUser blog:Emailformygames/Infoboxes\nUser blog:Emailformygames/Third Party Tools\nUser blog:Gokuofuin\nUser blog:Gokuofuin/Elite Dangerous (The Needs & The Wants)\nUser blog:Himpundulu\nUser blog:Himpundulu/http://elite-dangerous.wikia.com/wiki/Ships\nUser blog:JazHaz\nUser blog:JazHaz/Do we really need Purchase Locations in the ED Wiki?\nUser blog:JazHaz/Finally playing ED regularly\nUser blog:JazHaz/Wiki Navigation\nUser blog:Knakveey\nUser blog:Knakveey/Elite: Dangerous Update\nUser blog:Lokorazor\nUser blog:Lokorazor/Conflict Zones\nUser blog:Lokorazor/new\nUser blog:Morwo01\nUser blog:Morwo01/Colonia Expansion Initiative\nUser blog:Morwo01/collecting Tip Offs\nUser blog:Nikolai Albinus\nUser blog:Nikolai Albinus/A Serf At Last\nUser blog:Nikolai Albinus/And then it was Wednesday\nUser blog:Nikolai Albinus/Commander's Log, Star-Date... today...\nUser blog:Nikolai Albinus/Daddy... Don't you play that game?\nUser blog:Nikolai Albinus/Dedicated?\nUser blog:Nikolai Albinus/Fear this mighty pirate\nUser blog:Nikolai Albinus/Friendship Drive Charging\nUser blog:Nikolai Albinus/Going to need a bigger ship...\nUser blog:Nikolai Albinus/Imperial Agents\nUser blog:Nikolai Albinus/Lessons learned trading rare commodities\nUser blog:Nikolai Albinus/Moving on up\nUser blog:Nikolai Albinus/Nikolai Albinus, Bounty Hunter\nUser blog:Nikolai Albinus/Now I'm Back...\nUser blog:Nikolai Albinus/One Month On\nUser blog:Nikolai Albinus/Pirates in Federal Gunships?\nUser blog:Nikolai Albinus/Playing in Low-Spec\nUser blog:Nikolai Albinus/Power Play?\nUser blog:Nikolai Albinus/Servers Down\nUser blog:Nikolai Albinus/Serving the Space-Princess\nUser blog:Nikolai Albinus/Something is Missing\nUser blog:Nikolai Albinus/Sovica is so clean and shiny\nUser blog:Nikolai Albinus/The Eagle\nUser blog:Nikolai Albinus/The Emptiness of Space\nUser blog:Nikolai Albinus/The Introvert Returns\nUser blog:Nikolai Albinus/Time Limits\nUser blog:Nikolai Albinus/Two days, still not getting to play...\nUser blog:Nikolai Albinus/Where Did My Story End?\nUser blog:Nikolai Albinus/Why Not Asleep?\nUser blog:Nolfin/Exploring Thargoid's space\nUser blog:PSR1974\nUser blog:PSR1974/Two Months (around the frontier) A space geek review\nUser blog:Pinkachu\nUser blog:Pinkachu/E3 2015 Community Q&A - What does the future hold for Elite Dangerous\nUser blog:Poshblobfish\nUser blog:Poshblobfish/A Plea for Help\nUser blog:RichardAHallett\nUser blog:RichardAHallett/Never played CQC Championship, or still low rank? You're just who I'm looking for.\nUser blog:RichardAHallett/Starport or Station\nUser blog:RichardAHallett/What order should the Timeline section on character pages be?\nUser blog:Sasquatch the great\nUser blog:Sasquatch the great/-\nUser blog:Sasquatch the great/Shmlog\nUser blog:SpecialOperationsTrooper\nUser blog:SpecialOperationsTrooper/16th\nUser blog:SpyTec\nUser blog:SpyTec/Discussion of ideas and structure for all editors\nUser blog:SpyTec/GalNet news website currently broken\nUser blog:SpyTec/Purschase locations\nUser blog:SpyTec/Quick info on Infoboxes\nUser blog:SpyTec/Russian interwiki now linked!\nUser blog:TANG0611\nUser blog:Tdh10\nUser blog:TrueLuminus\nUser blog:Univero/Elite Dangerous Depth Meme\nUser blog comment:Arnoldhdz/Day 1/@comment-26210945-20151014235908\nUser blog comment:Arnoldhdz/Day 1/@comment-27336833-20151219090209\nUser blog comment:Arnoldhdz/Day 1/@comment-27336833-20151219090209/@comment-70.113.180.72-20151219222044\nUser blog comment:Arnoldhdz/Day 1/@comment-66.8.170.192-20150623103344\nUser blog comment:Arnoldhdz/Day 1/@comment-66.8.170.192-20150623103344/@comment-26033489-20150623111552\nUser blog comment:Arnoldhdz/Day 1/@comment-66.8.170.192-20150623103344/@comment-26513805-20150623183345\nUser blog comment:CMDR TRUE LUMINUS/Amazing Sight/@comment-1903369-20170907083020\nUser blog comment:CMDR TRUE LUMINUS/Amazing Sight/@comment-1903369-20170907083020/@comment-31178037-20170909064935\nUser blog comment:CMDR TRUE LUMINUS/Amazing Sight/@comment-1903369-20170907083020/@comment-34004391-20180117095233\nUser blog comment:CMDR TRUE LUMINUS/Red Giant at the Top of the Galaxy/@comment-162.78.70.154-20180119183756\nUser blog comment:CMDR TRUE LUMINUS/Satellite Discovered in the Middle of Nowhere/@comment-96.47.152.57-20200112180915\nUser blog comment:CMDR TRUE LUMINUS/Satellite Discovered in the Middle of Nowhere/@comment-96.47.152.57-20200112180915/@comment-31178037-20200112181127\nUser blog comment:CMDR Triton Zeal/Am i the only one?/@comment-27311754-20151209204004\nUser blog comment:CMDR Triton Zeal/Am i the only one?/@comment-27311754-20151209204004/@comment-27336833-20151209204838\nUser blog comment:CMDR Triton Zeal/Created a guide to farming merits/@comment-26391992-20151209172722\nUser blog comment:CMDR Triton Zeal/Created a guide to farming merits/@comment-26599825-20151210061739\nUser blog comment:CMDR Triton Zeal/Created a guide to farming merits/@comment-26599825-20151210061739/@comment-27336833-20151210071016\nUser blog comment:CMDR Triton Zeal/Created a guide to farming merits/@comment-27311754-20151209205332\nUser blog comment:CMDR Triton Zeal/Created a guide to farming merits/@comment-27311754-20151209205332/@comment-27336833-20151210035645\nUser blog comment:CMDR Triton Zeal/Created a guide to farming merits/@comment-27336833-20151209185510\nUser blog comment:CMDR Triton Zeal/Cutter/@comment-93.176.121.100-20151216074432\nUser blog comment:CMDR Triton Zeal/Dear Frontear/@comment-27311754-20151216143647\nUser blog comment:CMDR Triton Zeal/Fer-de-Lance at a discount in horizons/@comment-1028741-20151221001724\nUser blog comment:CMDR Triton Zeal/Fer-de-Lance at a discount in horizons/@comment-1028741-20151221001724/@comment-27336833-20151221005033\nUser blog comment:CMDR Triton Zeal/Who else cant wait for Horizons?/@comment-26391992-20151215114636\nUser blog comment:CMDR Triton Zeal/Who else cant wait for Horizons?/@comment-27311754-20151215120507\nUser blog comment:Cmdr Sekiou/Finding Materials/@comment-26391992-20160117153314\nUser blog comment:DNYI/Hello, I need advice on how to add images to this wiki/@comment-12138097-20150711054821\nUser blog comment:DNYI/Hello, I need advice on how to add images to this wiki/@comment-12138097-20150711054821/@comment-2155082-20150715003904\nUser blog comment:DNYI/How do you create a category?/@comment-26599825-20151019074408\nUser blog comment:DNYI/How do you create a category?/@comment-26599825-20151019074408/@comment-2155082-20151021032211\nUser blog comment:Digistruct0r/DBS & I don't even know anymore.../@comment-27336833-20151222235106\nUser blog comment:Digistruct0r/DBS & I don't even know anymore.../@comment-27336833-20151222235106/@comment-26391992-20151222235703\nUser blog comment:Digistruct0r/DBS x Icy Canyon OTP/@comment-1028741-20151220042156\nUser blog comment:Digistruct0r/DBS x Icy Canyon OTP/@comment-1028741-20151220042156/@comment-26391992-20151220111330\nUser blog comment:Digistruct0r/HIP 38064. Go there./@comment-2155082-20160428041244\nUser blog comment:Digistruct0r/HIP 38064. Go there./@comment-31178037-20170205162446\nUser blog comment:Digistruct0r/HIP 38064. Go there./@comment-31178037-20170205162446/@comment-31178037-20170205163309\nUser blog comment:Digistruct0r/HIP 38064. Go there./@comment-50.4.239.175-20160308010832\nUser blog comment:Digistruct0r/HIP 38064. Go there./@comment-50.4.239.175-20160308010832/@comment-26391992-20160310103502\nUser blog comment:Digistruct0r/HIP 38064. Go there./@comment-84.72.20.96-20160307005403\nUser blog comment:Digistruct0r/HIP 38064. Go there./@comment-84.72.20.96-20160307005403/@comment-26391992-20160307101723\nUser blog comment:Digistruct0r/Have been making quite a lot of trips to Robigo and back.../@comment-212.59.37.193-20160128090239\nUser blog comment:Digistruct0r/Have been making quite a lot of trips to Robigo and back.../@comment-212.59.37.193-20160128090239/@comment-26391992-20160128120020\nUser blog comment:Digistruct0r/Have been making quite a lot of trips to Robigo and back.../@comment-2155082-20160428042219\nUser blog comment:Digistruct0r/Have been making quite a lot of trips to Robigo and back.../@comment-50.4.239.175-20160301021909\nUser blog comment:Digistruct0r/Have been making quite a lot of trips to Robigo and back.../@comment-90.149.231.161-20160122235955\nUser blog comment:Digistruct0r/Little change to the ship infobox/@comment-26009169-20151209202259\nUser blog comment:Digistruct0r/Little change to the ship infobox/@comment-26009169-20151209202259/@comment-26391992-20151209214955\nUser blog comment:Digistruct0r/Little change to the ship infobox/@comment-26009169-20151209202259/@comment-27311754-20151209204159\nUser blog comment:Digistruct0r/Little change to the ship infobox/@comment-26009169-20151209202259/@comment-27336833-20151209223951\nUser blog comment:Digistruct0r/Little change to the ship infobox/@comment-27336833-20151209192038\nUser blog comment:Digistruct0r/Ship Categorization/@comment-1028741-20151126102642\nUser blog comment:Digistruct0r/Ship Categorization/@comment-1028741-20151126102642/@comment-1028741-20151126132604\nUser blog comment:Digistruct0r/Ship Categorization/@comment-1028741-20151126102642/@comment-26391992-20151126122608\nUser blog comment:Digistruct0r/Traffic Control - Newsletter 121/@comment-2155082-20160428042443\nUser blog comment:Digistruct0r/Weapons of Elite/@comment-26391992-20160116152936\nUser blog comment:Emailformygames/Infoboxes/@comment-50.233.12.115-20180308012534\nUser blog comment:Emailformygames/Infoboxes/@comment-50.233.12.115-20180308012534/@comment-50.233.12.115-20180308012553\nUser blog comment:Emailformygames/Infoboxes/@comment-50.233.12.115-20180308012534/@comment-50.233.12.115-20180308012601\nUser blog comment:Emailformygames/Infoboxes/@comment-50.233.12.115-20180308012612\nUser blog comment:Emailformygames/Infoboxes/@comment-50.233.12.115-20180308012612/@comment-50.233.12.115-20180308012629\nUser blog comment:Emailformygames/Infoboxes/@comment-50.233.12.115-20180308012657\nUser blog comment:Emailformygames/Infoboxes/@comment-50.233.12.115-20180308012709\nUser blog comment:Emailformygames/Infoboxes/@comment-67.186.92.128-20150601053607\nUser blog comment:Emailformygames/Third Party Tools/@comment-155.194.200.20-20141229170106\nUser blog comment:Emailformygames/Third Party Tools/@comment-26006358-20150115171735\nUser blog comment:Emailformygames/Third Party Tools/@comment-50.233.12.115-20180310204539\nUser blog comment:Emailformygames/Third Party Tools/@comment-70.195.6.123-20150101163932\nUser blog comment:Emailformygames/Third Party Tools/@comment-81.101.97.103-20150109030108\nUser blog comment:Emailformygames/Third Party Tools/@comment-81.101.97.103-20150109030108/@comment-12138097-20150109042628\nUser blog comment:Emailformygames/Third Party Tools/@comment-89.168.207.223-20150512011351\nUser blog comment:Emailformygames/Third Party Tools/@comment-89.168.207.223-20150512011351/@comment-26009169-20150512012913\nUser blog comment:Emailformygames/Third Party Tools/@comment-96.38.145.98-20150113081656\nUser blog comment:Gokuofuin/Elite Dangerous (The Needs & The Wants)/@comment-204.147.223.1-20171013135838\nUser blog comment:Gokuofuin/Elite Dangerous (The Needs & The Wants)/@comment-34004391-20180117093613\nUser blog comment:Gokuofuin/Elite Dangerous (The Needs & The Wants)/@comment-34043634-20171222113456\nUser blog comment:Gokuofuin/Elite Dangerous (The Needs & The Wants)/@comment-43592112-20190823025439\nUser blog comment:JazHaz/Do we really need Purchase Locations in the ED Wiki?/@comment-26009169-20151110184711\nUser blog comment:JazHaz/Do we really need Purchase Locations in the ED Wiki?/@comment-26391992-20151123175742\nUser blog comment:JazHaz/Do we really need Purchase Locations in the ED Wiki?/@comment-26599825-20151110152926\nUser blog comment:JazHaz/Do we really need Purchase Locations in the ED Wiki?/@comment-27032150-20151110133410\nUser blog comment:JazHaz/Do we really need Purchase Locations in the ED Wiki?/@comment-50.4.239.175-20151124203505\nUser blog comment:JazHaz/Do we really need Purchase Locations in the ED Wiki?/@comment-73.162.42.101-20151120064251\nUser blog comment:JazHaz/Do we really need Purchase Locations in the ED Wiki?/@comment-84.57.80.23-20151128102844\nUser blog comment:JazHaz/Do we really need Purchase Locations in the ED Wiki?/@comment-84.57.80.23-20151128102844/@comment-27336833-20151209120351\nUser blog comment:JazHaz/Finally playing ED regularly/@comment-192.136.161.33-20180105205735\nUser blog comment:JazHaz/Finally playing ED regularly/@comment-217.33.165.87-20190202104938\nUser blog comment:JazHaz/Finally playing ED regularly/@comment-26009169-20180106112810\nUser blog comment:JazHaz/Finally playing ED regularly/@comment-30928085-20180105225217\nUser blog comment:JazHaz/Wiki Navigation/@comment-27336833-20151209120658\nUser blog comment:JazHaz/Wiki Navigation/@comment-27336833-20151209120658/@comment-5959508-20151209153115\nUser blog comment:Knakveey/Elite: Dangerous Update/@comment-26513805-20150620030707\nUser blog comment:Lokorazor/Conflict Zones/@comment-1028741-20151028013312\nUser blog comment:Lokorazor/Conflict Zones/@comment-1028741-20151028013312/@comment-26210945-20151028223309\nUser blog comment:Lokorazor/Conflict Zones/@comment-1028741-20151028013312/@comment-26951902-20151123093610\nUser blog comment:Lokorazor/new/@comment-1028741-20151021044133\nUser blog comment:Lokorazor/new/@comment-2155082-20151015033534\nUser blog comment:Lokorazor/new/@comment-2155082-20151015033534/@comment-26210945-20151020224359\nUser blog comment:Lokorazor/new/@comment-26210945-20151026013448\nUser blog comment:Lokorazor/new/@comment-27032150-20151015114238\nUser blog comment:Lokorazor/new/@comment-27032150-20151015114238/@comment-26210945-20151020224338\nUser blog comment:Lokorazor/new/@comment-27032150-20151015114238/@comment-26210945-20151020224530\nUser blog comment:Lokorazor/new/@comment-76.104.141.107-20151120053257\nUser blog comment:Morwo01/collecting Tip Offs/@comment-29011619-20160714211138\nUser blog comment:Morwo01/collecting Tip Offs/@comment-903860-20190804102834\nUser blog comment:Nikolai Albinus/And then it was Wednesday/@comment-194.98.70.135-20160520082913\nUser blog comment:Nikolai Albinus/And then it was Wednesday/@comment-194.98.70.135-20160520082913/@comment-194.98.70.135-20160520083303\nUser blog comment:Nikolai Albinus/And then it was Wednesday/@comment-38.176.90.254-20160601210717\nUser blog comment:Nikolai Albinus/And then it was Wednesday/@comment-73.164.28.80-20160416011614\nUser blog comment:Nikolai Albinus/Dedicated?/@comment-2155082-20160428041441\nUser blog comment:Nikolai Albinus/Fear this mighty pirate/@comment-27336833-20151209120142\nUser blog comment:Nikolai Albinus/Fear this mighty pirate/@comment-27336833-20151219085532\nUser blog comment:Nikolai Albinus/Friendship Drive Charging/@comment-178.240.8.18-20151201030152\nUser blog comment:Nikolai Albinus/Friendship Drive Charging/@comment-27336833-20151219090331\nUser blog comment:Nikolai Albinus/Friendship Drive Charging/@comment-2A00:23C0:B4F1:C901:F952:624:60DC:146A-20170714110136\nUser blog comment:Nikolai Albinus/Friendship Drive Charging/@comment-94.214.160.218-20151201100834\nUser blog comment:Nikolai Albinus/Friendship Drive Charging/@comment-94.214.160.218-20151201100834/@comment-27311754-20151201101050\nUser blog comment:Nikolai Albinus/Going to need a bigger ship.../@comment-50.188.60.46-20160207041715\nUser blog comment:Nikolai Albinus/Going to need a bigger ship.../@comment-50.188.60.46-20160207041715/@comment-2155082-20160428041825\nUser blog comment:Nikolai Albinus/Going to need a bigger ship.../@comment-50.188.60.46-20160207041715/@comment-27311754-20160207113553\nUser blog comment:Nikolai Albinus/Nikolai Albinus, Bounty Hunter/@comment-195.199.238.222-20151208100425\nUser blog comment:Nikolai Albinus/Pirates in Federal Gunships?/@comment-32.213.115.179-20151204193345\nUser blog comment:Nikolai Albinus/Pirates in Federal Gunships?/@comment-98.238.133.226-20151205191744\nUser blog comment:Nikolai Albinus/Power Play?/@comment-27336833-20151215030003\nUser blog comment:Nikolai Albinus/Power Play?/@comment-27336833-20151215030003/@comment-26372902-20151216174016\nUser blog comment:Nikolai Albinus/Power Play?/@comment-27336833-20151215030003/@comment-27336833-20151217060026\nUser blog comment:Nikolai Albinus/Something is Missing/@comment-27336833-20151220225049\nUser blog comment:Nikolai Albinus/Sovica is so clean and shiny/@comment-1028741-20151204184451\nUser blog comment:Nikolai Albinus/Sovica is so clean and shiny/@comment-1028741-20151204184451/@comment-26391992-20151205131644\nUser blog comment:Nikolai Albinus/Sovica is so clean and shiny/@comment-1028741-20151204184451/@comment-27311754-20151205150215\nUser blog comment:Nikolai Albinus/Time Limits/@comment-27336833-20151213235113\nUser blog comment:Nikolai Albinus/Time Limits/@comment-27336833-20151213235113/@comment-27311754-20151214000145\nUser blog comment:Nikolai Albinus/Two days, still not getting to play.../@comment-27336833-20151218150226\nUser blog comment:Nikolai Albinus/Two days, still not getting to play.../@comment-27336833-20151218150226/@comment-27311754-20151218151501\nUser blog comment:Nikolai Albinus/Why Not Asleep?/@comment-1028741-20151129093932\nUser blog comment:Nikolai Albinus/Why Not Asleep?/@comment-1028741-20151129093932/@comment-26599825-20151129095414\nUser blog comment:Nikolai Albinus/Why Not Asleep?/@comment-178.240.8.18-20151201031530\nUser blog comment:Nikolai Albinus/Why Not Asleep?/@comment-178.240.8.18-20151201031530/@comment-27311754-20151201100218\nUser blog comment:PSR1974/Two Months (around the frontier) A space geek review/@comment-61.164.41.54-20190823023858\nUser blog comment:Pinkachu/E3 2015 Community Q&A - What does the future hold for Elite Dangerous/@comment-151.225.7.51-20150611140254\nUser blog comment:Pinkachu/E3 2015 Community Q&A - What does the future hold for Elite Dangerous/@comment-166.137.244.78-20150611160349\nUser blog comment:Pinkachu/E3 2015 Community Q&A - What does the future hold for Elite Dangerous/@comment-186.32.180.101-20150612135701\nUser blog comment:Pinkachu/E3 2015 Community Q&A - What does the future hold for Elite Dangerous/@comment-188.108.129.11-20150613201436\nUser blog comment:Pinkachu/E3 2015 Community Q&A - What does the future hold for Elite Dangerous/@comment-195.135.221.2-20150611080742\nUser blog comment:Pinkachu/E3 2015 Community Q&A - What does the future hold for Elite Dangerous/@comment-24394980-20150612001123\nUser blog comment:Pinkachu/E3 2015 Community Q&A - What does the future hold for Elite Dangerous/@comment-24394980-20150630234342\nUser blog comment:Pinkachu/E3 2015 Community Q&A - What does the future hold for Elite Dangerous/@comment-24503385-20150611013532\nUser blog comment:Pinkachu/E3 2015 Community Q&A - What does the future hold for Elite Dangerous/@comment-26009169-20150611163309\nUser blog comment:Pinkachu/E3 2015 Community Q&A - What does the future hold for Elite Dangerous/@comment-26116574-20150613215147\nUser blog comment:Pinkachu/E3 2015 Community Q&A - What does the future hold for Elite Dangerous/@comment-26210945-20151015025155\nUser blog comment:Pinkachu/E3 2015 Community Q&A - What does the future hold for Elite Dangerous/@comment-26426574-20150613212507\nUser blog comment:Pinkachu/E3 2015 Community Q&A - What does the future hold for Elite Dangerous/@comment-26486402-20150613202601\nUser blog comment:Pinkachu/E3 2015 Community Q&A - What does the future hold for Elite Dangerous/@comment-26489826-20150612142037\nUser blog comment:Pinkachu/E3 2015 Community Q&A - What does the future hold for Elite Dangerous/@comment-26513805-20150620030517\nUser blog comment:Pinkachu/E3 2015 Community Q&A - What does the future hold for Elite Dangerous/@comment-46.229.149.138-20150612130830\nUser blog comment:Pinkachu/E3 2015 Community Q&A - What does the future hold for Elite Dangerous/@comment-4900524-20150613202614\nUser blog comment:Pinkachu/E3 2015 Community Q&A - What does the future hold for Elite Dangerous/@comment-50.160.153.191-20150613230627\nUser blog comment:Pinkachu/E3 2015 Community Q&A - What does the future hold for Elite Dangerous/@comment-64.118.103.47-20150614165800\nUser blog comment:Pinkachu/E3 2015 Community Q&A - What does the future hold for Elite Dangerous/@comment-70.195.192.120-20150611122243\nUser blog comment:Pinkachu/E3 2015 Community Q&A - What does the future hold for Elite Dangerous/@comment-70.196.132.123-20150613221654\nUser blog comment:Pinkachu/E3 2015 Community Q&A - What does the future hold for Elite Dangerous/@comment-74.205.130.194-20150803191002\nUser blog comment:Pinkachu/E3 2015 Community Q&A - What does the future hold for Elite Dangerous/@comment-77.96.109.246-20150613225530\nUser blog comment:Pinkachu/E3 2015 Community Q&A - What does the future hold for Elite Dangerous/@comment-82.69.31.190-20150614091934\nUser blog comment:Pinkachu/E3 2015 Community Q&A - What does the future hold for Elite Dangerous/@comment-86.175.205.157-20150613232311\nUser blog comment:Pinkachu/E3 2015 Community Q&A - What does the future hold for Elite Dangerous/@comment-87.242.205.63-20150613203422\nUser blog comment:Pinkachu/E3 2015 Community Q&A - What does the future hold for Elite Dangerous/@comment-91.154.126.118-20150612153250\nUser blog comment:Pinkachu/E3 2015 Community Q&A - What does the future hold for Elite Dangerous/@comment-94.254.101.76-20150611122618\nUser blog comment:RichardAHallett/Never played CQC Championship, or still low rank? You're just who I'm looking for./@comment-26391992-20160112173925\nUser blog comment:RichardAHallett/Never played CQC Championship, or still low rank? You're just who I'm looking for./@comment-26391992-20160112173925/@comment-1028741-20160112174113\nUser blog comment:RichardAHallett/Never played CQC Championship, or still low rank? You're just who I'm looking for./@comment-26391992-20160112173925/@comment-1028741-20160113193351\nUser blog comment:RichardAHallett/Never played CQC Championship, or still low rank? You're just who I'm looking for./@comment-26391992-20160112173925/@comment-1028741-20160116231808\nUser blog comment:RichardAHallett/Never played CQC Championship, or still low rank? You're just who I'm looking for./@comment-26391992-20160112173925/@comment-26391992-20160113104224\nUser blog comment:RichardAHallett/Never played CQC Championship, or still low rank? You're just who I'm looking for./@comment-26391992-20160112173925/@comment-26391992-20160116155939\nUser blog comment:RichardAHallett/Never played CQC Championship, or still low rank? You're just who I'm looking for./@comment-98.238.133.226-20160113073558\nUser blog comment:RichardAHallett/Never played CQC Championship, or still low rank? You're just who I'm looking for./@comment-98.238.133.226-20160113073558/@comment-1028741-20160113192139\nUser blog comment:RichardAHallett/Never played CQC Championship, or still low rank? You're just who I'm looking for./@comment-98.238.133.226-20160113073558/@comment-98.238.133.226-20160113083401\nUser blog comment:RichardAHallett/Never played CQC Championship, or still low rank? You're just who I'm looking for./@comment-98.238.133.226-20160113073558/@comment-98.238.133.226-20160113083813\nUser blog comment:RichardAHallett/Starport or Station/@comment-2155082-20151109040513\nUser blog comment:RichardAHallett/Starport or Station/@comment-2155082-20151109040513/@comment-1028741-20151109213000\nUser blog comment:RichardAHallett/What order should the Timeline section on character pages be?/@comment-1028741-20151101110914\nUser blog comment:RichardAHallett/What order should the Timeline section on character pages be?/@comment-1028741-20151101110914/@comment-26009169-20151101130800\nUser blog comment:RichardAHallett/What order should the Timeline section on character pages be?/@comment-2155082-20151102052236\nUser blog comment:RichardAHallett/What order should the Timeline section on character pages be?/@comment-2155082-20151102052236/@comment-1028741-20151103062725\nUser blog comment:RichardAHallett/What order should the Timeline section on character pages be?/@comment-2155082-20151102052236/@comment-1028741-20151116074112\nUser blog comment:Sasquatch the great/-/@comment-44180665-20200522161801\nUser blog comment:Sasquatch the great/-/@comment-44180665-20200522161811\nUser blog comment:SpyTec/Discussion of ideas and structure for all editors/@comment-1028741-20151129092051\nUser blog comment:SpyTec/Discussion of ideas and structure for all editors/@comment-1028741-20151129092051/@comment-1028741-20151129215558\nUser blog comment:SpyTec/Discussion of ideas and structure for all editors/@comment-1028741-20151129092051/@comment-26009169-20151129155804\nUser blog comment:SpyTec/Discussion of ideas and structure for all editors/@comment-12138097-20151129080837\nUser blog comment:SpyTec/Discussion of ideas and structure for all editors/@comment-12138097-20151129080837/@comment-26009169-20151129150552\nUser blog comment:SpyTec/Discussion of ideas and structure for all editors/@comment-2155082-20151129050432\nUser blog comment:SpyTec/Discussion of ideas and structure for all editors/@comment-2155082-20151129050432/@comment-26009169-20151129151950\nUser blog comment:SpyTec/Discussion of ideas and structure for all editors/@comment-26009169-20151129022308\nUser blog comment:SpyTec/Discussion of ideas and structure for all editors/@comment-26009169-20151129022308/@comment-1028741-20151129083720\nUser blog comment:SpyTec/Discussion of ideas and structure for all editors/@comment-26009169-20151129022308/@comment-26599825-20151129090149\nUser blog comment:SpyTec/Discussion of ideas and structure for all editors/@comment-26009169-20151129160352\nUser blog comment:SpyTec/Discussion of ideas and structure for all editors/@comment-26009169-20151129160352/@comment-27157230-20151213061842\nUser blog comment:SpyTec/Discussion of ideas and structure for all editors/@comment-26391992-20151128221621\nUser blog comment:SpyTec/Discussion of ideas and structure for all editors/@comment-26391992-20151128221621/@comment-26009169-20151129021654\nUser blog comment:SpyTec/Discussion of ideas and structure for all editors/@comment-26599825-20151129094712\nUser blog comment:SpyTec/Discussion of ideas and structure for all editors/@comment-26599825-20151129094712/@comment-26009169-20151129153009\nUser blog comment:SpyTec/Discussion of ideas and structure for all editors/@comment-26599825-20151129094712/@comment-26599825-20151129170453\nUser blog comment:SpyTec/Discussion of ideas and structure for all editors/@comment-77.7.130.35-20160104180244\nUser blog comment:SpyTec/Discussion of ideas and structure for all editors/@comment-77.7.130.35-20160104180244/@comment-95.91.228.196-20160317155438\nUser blog comment:SpyTec/GalNet news website currently broken/@comment-26009169-20150417133858\nUser blog comment:SpyTec/Purschase locations/@comment-12138097-20150419182151\nUser blog comment:SpyTec/Purschase locations/@comment-12138097-20150419182151/@comment-26009169-20150419212105\nUser blog comment:SpyTec/Purschase locations/@comment-2155082-20151031045821\nUser blog comment:SpyTec/Purschase locations/@comment-24503385-20150422132727\nUser blog comment:SpyTec/Purschase locations/@comment-24503385-20150422181853\nUser blog comment:SpyTec/Russian interwiki now linked!/@comment-26513805-20150620030616\nBlog:Recent posts\n--END--\n"
  },
  {
    "path": "resources/data/rare-commodities-with-count.json",
    "content": "[\n  {\n    \"id\": \"128666746\",\n    \"symbol\": \"EraninPearlWhisky\",\n    \"market_id\": \"128001536\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Eranin Pearl Whisky\",\n    \"limit\": 16\n  },\n  {\n    \"id\": \"128666747\",\n    \"symbol\": \"LavianBrandy\",\n    \"market_id\": \"128106744\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Lavian Brandy\",\n    \"limit\": 24\n  },\n  {\n    \"id\": \"128667019\",\n    \"symbol\": \"HIP10175BushMeat\",\n    \"market_id\": \"3223234816\",\n    \"category\": \"Foods\",\n    \"name\": \"HIP 10175 Bush Meat\",\n    \"limit\": 13\n  },\n  {\n    \"id\": \"128667020\",\n    \"symbol\": \"AlbinoQuechuaMammoth\",\n    \"market_id\": \"3222822912\",\n    \"category\": \"Foods\",\n    \"name\": \"Albino Quechua Mammoth Meat\",\n    \"limit\": 10\n  },\n  {\n    \"id\": \"128667021\",\n    \"symbol\": \"UtgaroarMillenialEggs\",\n    \"market_id\": \"128037120\",\n    \"category\": \"Foods\",\n    \"name\": \"Utgaroar Millennial Eggs\",\n    \"limit\": 15\n  },\n  {\n    \"id\": \"128667022\",\n    \"symbol\": \"WitchhaulKobeBeef\",\n    \"market_id\": \"3223358720\",\n    \"category\": \"Foods\",\n    \"name\": \"Witchhaul Kobe Beef\",\n    \"limit\": 18\n  },\n  {\n    \"id\": \"128667023\",\n    \"symbol\": \"KarsukiLocusts\",\n    \"market_id\": \"3225028096\",\n    \"category\": \"Foods\",\n    \"name\": \"Karsuki Locusts\",\n    \"limit\": 18\n  },\n  {\n    \"id\": \"128667024\",\n    \"symbol\": \"GiantIrukamaSnails\",\n    \"market_id\": \"3225345792\",\n    \"category\": \"Foods\",\n    \"name\": \"Giant Irukama Snails\",\n    \"limit\": 16\n  },\n  {\n    \"id\": \"128667025\",\n    \"symbol\": \"BaltahSineVacuumKrill\",\n    \"market_id\": \"128088056\",\n    \"category\": \"Foods\",\n    \"name\": \"Baltah'sine Vacuum Krill\",\n    \"limit\": 18\n  },\n  {\n    \"id\": \"128667026\",\n    \"symbol\": \"CetiRabbits\",\n    \"market_id\": \"3222560000\",\n    \"category\": \"Foods\",\n    \"name\": \"Ceti Rabbits\",\n    \"limit\": 12\n  },\n  {\n    \"id\": \"128667027\",\n    \"symbol\": \"KachiriginLeaches\",\n    \"market_id\": \"3221595648\",\n    \"category\": \"Medicines\",\n    \"name\": \"Kachirigin Filter Leeches\",\n    \"limit\": 10\n  },\n  {\n    \"id\": \"128667028\",\n    \"symbol\": \"LyraeWeed\",\n    \"market_id\": \"3226417152\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Lyrae Weed\",\n    \"limit\": 10\n  },\n  {\n    \"id\": \"128667029\",\n    \"symbol\": \"OnionHead\",\n    \"market_id\": \"128129272\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Onionhead\",\n    \"limit\": 12\n  },\n  {\n    \"id\": \"128667030\",\n    \"symbol\": \"TarachTorSpice\",\n    \"market_id\": \"128041984\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Tarach Spice\",\n    \"limit\": 12\n  },\n  {\n    \"id\": \"128667031\",\n    \"symbol\": \"Wolf1301Fesh\",\n    \"market_id\": \"128084984\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Wolf Fesh\",\n    \"limit\": 13\n  },\n  {\n    \"id\": \"128667032\",\n    \"symbol\": \"BorasetaniPathogenetics\",\n    \"market_id\": \"3229638400\",\n    \"category\": \"Weapons\",\n    \"name\": \"Borasetani Pathogenetics\",\n    \"limit\": 6\n  },\n  {\n    \"id\": \"128667033\",\n    \"symbol\": \"HIP118311Swarm\",\n    \"market_id\": \"3223177472\",\n    \"category\": \"Weapons\",\n    \"name\": \"HIP 118311 Swarm\",\n    \"limit\": 1\n  },\n  {\n    \"id\": \"128667034\",\n    \"symbol\": \"KonggaAle\",\n    \"market_id\": \"3226978048\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Kongga Ale\",\n    \"limit\": 16\n  },\n  {\n    \"id\": \"128667035\",\n    \"symbol\": \"WuthieloKuFroth\",\n    \"market_id\": \"3222155776\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Wuthielo Ku Froth\",\n    \"limit\": 17\n  },\n  {\n    \"id\": \"128667036\",\n    \"symbol\": \"AlacarakmoSkinArt\",\n    \"market_id\": \"3231373824\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Alacarakmo Skin Art\",\n    \"limit\": 24\n  },\n  {\n    \"id\": \"128667037\",\n    \"symbol\": \"EleuThermals\",\n    \"market_id\": \"3230624768\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Eleu Thermals\",\n    \"limit\": 13\n  },\n  {\n    \"id\": \"128667038\",\n    \"symbol\": \"EshuUmbrellas\",\n    \"market_id\": \"3222295552\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Eshu Umbrellas\",\n    \"limit\": 9\n  },\n  {\n    \"id\": \"128667039\",\n    \"symbol\": \"KaretiiCouture\",\n    \"market_id\": \"3227333120\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Karetii Couture\",\n    \"limit\": 5\n  },\n  {\n    \"id\": \"128667040\",\n    \"symbol\": \"NjangariSaddles\",\n    \"market_id\": \"3222416896\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Njangari Saddles\",\n    \"limit\": 13\n  },\n  {\n    \"id\": \"128667041\",\n    \"symbol\": \"AnyNaCoffee\",\n    \"market_id\": \"3229880064\",\n    \"category\": \"Foods\",\n    \"name\": \"Any Na Coffee\",\n    \"limit\": 11\n  },\n  {\n    \"id\": \"128667042\",\n    \"symbol\": \"CD75CatCoffee\",\n    \"market_id\": \"3228566016\",\n    \"category\": \"Foods\",\n    \"name\": \"CD-75 Kitten Brand Coffee\",\n    \"limit\": 12\n  },\n  {\n    \"id\": \"128667043\",\n    \"symbol\": \"GomanYauponCoffee\",\n    \"market_id\": \"3224449792\",\n    \"category\": \"Foods\",\n    \"name\": \"Goman Yaupon Coffee\",\n    \"limit\": 9\n  },\n  {\n    \"id\": \"128667044\",\n    \"symbol\": \"VolkhabBeeDrones\",\n    \"market_id\": \"3227831808\",\n    \"category\": \"Machinery\",\n    \"name\": \"Volkhab Bee Drones\",\n    \"limit\": 6\n  },\n  {\n    \"id\": \"128667045\",\n    \"symbol\": \"KinagoInstruments\",\n    \"market_id\": \"3227394304\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Kinago Violins\",\n    \"limit\": 3\n  },\n  {\n    \"id\": \"128667046\",\n    \"symbol\": \"NgunaModernAntiques\",\n    \"market_id\": \"3221538304\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Nguna Modern Antiques\",\n    \"limit\": 4\n  },\n  {\n    \"id\": \"128667047\",\n    \"symbol\": \"RajukruStoves\",\n    \"market_id\": \"3227512320\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Rajukru Multi-Stoves\",\n    \"limit\": 17\n  },\n  {\n    \"id\": \"128667048\",\n    \"symbol\": \"TiolceWaste2PasteUnits\",\n    \"market_id\": \"3224141312\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Tiolce Waste2Paste Units\",\n    \"limit\": 13\n  },\n  {\n    \"id\": \"128667049\",\n    \"symbol\": \"ChiEridaniMarinePaste\",\n    \"market_id\": \"128128760\",\n    \"category\": \"Foods\",\n    \"name\": \"Chi Eridani Marine Paste\",\n    \"limit\": 18\n  },\n  {\n    \"id\": \"128667050\",\n    \"symbol\": \"EsusekuCaviar\",\n    \"market_id\": \"3226919680\",\n    \"category\": \"Foods\",\n    \"name\": \"Esuseku Caviar\",\n    \"limit\": 10\n  },\n  {\n    \"id\": \"128667051\",\n    \"symbol\": \"LiveHecateSeaWorms\",\n    \"market_id\": \"128042496\",\n    \"category\": \"Foods\",\n    \"name\": \"Live Hecate Sea Worms\",\n    \"limit\": 13\n  },\n  {\n    \"id\": \"128667052\",\n    \"symbol\": \"HelvetitjPearls\",\n    \"market_id\": \"3231094528\",\n    \"category\": \"Metals\",\n    \"name\": \"Helvetitj Pearls\",\n    \"limit\": 6\n  },\n  {\n    \"id\": \"128667053\",\n    \"symbol\": \"HIP41181Squid\",\n    \"market_id\": \"3227995392\",\n    \"category\": \"Foods\",\n    \"name\": \"HIP Proto-Squid\",\n    \"limit\": 14\n  },\n  {\n    \"id\": \"128667054\",\n    \"symbol\": \"CoquimSpongiformVictuals\",\n    \"market_id\": \"3223832576\",\n    \"category\": \"Foods\",\n    \"name\": \"Coquim Spongiform Victuals\",\n    \"limit\": 20\n  },\n  {\n    \"id\": \"128667055\",\n    \"symbol\": \"AerialEdenApple\",\n    \"market_id\": \"128083448\",\n    \"category\": \"Foods\",\n    \"name\": \"Eden Apples of Aerial\",\n    \"limit\": 15\n  },\n  {\n    \"id\": \"128667056\",\n    \"symbol\": \"NeritusBerries\",\n    \"market_id\": \"3228206080\",\n    \"category\": \"Foods\",\n    \"name\": \"Neritus Berries\",\n    \"limit\": 13\n  },\n  {\n    \"id\": \"128667057\",\n    \"symbol\": \"OchoengChillies\",\n    \"market_id\": \"3226719232\",\n    \"category\": \"Foods\",\n    \"name\": \"Ochoeng Chillies\",\n    \"limit\": 14\n  },\n  {\n    \"id\": \"128667058\",\n    \"symbol\": \"DeuringasTruffles\",\n    \"market_id\": \"3229713408\",\n    \"category\": \"Foods\",\n    \"name\": \"Deuringas Truffles\",\n    \"limit\": \t7\n  },\n  {\n    \"id\": \"128667059\",\n    \"symbol\": \"HR7221Wheat\",\n    \"market_id\": \"3226170880\",\n    \"category\": \"Foods\",\n    \"name\": \"HR 7221 Wheat\",\n    \"limit\": 16\n  },\n  {\n    \"id\": \"128667060\",\n    \"symbol\": \"JarouaRice\",\n    \"market_id\": \"3224698112\",\n    \"category\": \"Foods\",\n    \"name\": \"Jaroua Rice\",\n    \"limit\": 18\n  },\n  {\n    \"id\": \"128667061\",\n    \"symbol\": \"BelalansRayLeather\",\n    \"market_id\": \"3223537152\",\n    \"category\": \"Textiles\",\n    \"name\": \"Belalans Ray Leather\",\n    \"limit\": 11\n  },\n  {\n    \"id\": \"128667062\",\n    \"symbol\": \"DamnaCarapaces\",\n    \"market_id\": \"3227751936\",\n    \"category\": \"Textiles\",\n    \"name\": \"Damna Carapaces\",\n    \"limit\": 23\n  },\n  {\n    \"id\": \"128667063\",\n    \"symbol\": \"RapaBaoSnakeSkins\",\n    \"market_id\": \"3222875648\",\n    \"category\": \"Textiles\",\n    \"name\": \"Rapa Bao Snake Skins\",\n    \"limit\": 11\n  },\n  {\n    \"id\": \"128667064\",\n    \"symbol\": \"VanayequiRhinoFur\",\n    \"market_id\": \"3227289856\",\n    \"category\": \"Textiles\",\n    \"name\": \"Vanayequi Ceratomorpha Fur\",\n    \"limit\": 10\n  },\n  {\n    \"id\": \"128667065\",\n    \"symbol\": \"BastSnakeGin\",\n    \"market_id\": \"128086776\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Bast Snake Gin\",\n    \"limit\": 15\n  },\n  {\n    \"id\": \"128667066\",\n    \"symbol\": \"ThrutisCream\",\n    \"market_id\": \"3226522368\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Thrutis Cream\",\n    \"limit\": 11\n  },\n  {\n    \"id\": \"128667067\",\n    \"symbol\": \"WulpaHyperboreSystems\",\n    \"market_id\": \"3221388032\",\n    \"category\": \"Machinery\",\n    \"name\": \"Wulpa Hyperbore Systems\",\n    \"limit\": 10\n  },\n  {\n    \"id\": \"128667068\",\n    \"symbol\": \"AganippeRush\",\n    \"market_id\": \"128012800\",\n    \"category\": \"Medicines\",\n    \"name\": \"Aganippe Rush\",\n    \"limit\": 10\n  },\n  {\n    \"id\": \"128667069\",\n    \"symbol\": \"TerraMaterBloodBores\",\n    \"market_id\": \"128051466\",\n    \"category\": \"Medicines\",\n    \"name\": \"Terra Mater Blood Bores\",\n    \"limit\": 5\n  },\n  {\n    \"id\": \"128667070\",\n    \"symbol\": \"HolvaDuellingBlades\",\n    \"market_id\": \"3222713088\",\n    \"category\": \"Weapons\",\n    \"name\": \"Holva Duelling Blades\",\n    \"limit\": 7\n  },\n  {\n    \"id\": \"128667071\",\n    \"symbol\": \"KamorinHistoricWeapons\",\n    \"market_id\": \"3221669632\",\n    \"category\": \"Weapons\",\n    \"name\": \"Kamorin Historic Weapons\",\n    \"limit\": 10\n  },\n  {\n    \"id\": \"128667072\",\n    \"symbol\": \"GilyaSignatureWeapons\",\n    \"market_id\": \"3226857216\",\n    \"category\": \"Weapons\",\n    \"name\": \"Gilya Signature Weapons\",\n    \"limit\": 9\n  },\n  {\n    \"id\": \"128667073\",\n    \"symbol\": \"DeltaPhoenicisPalms\",\n    \"market_id\": \"128045312\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Delta Phoenicis Palms\",\n    \"limit\": 17\n  },\n  {\n    \"id\": \"128667074\",\n    \"symbol\": \"ToxandjiVirocide\",\n    \"market_id\": \"3230258688\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Toxandji Virocide\",\n    \"limit\": 14\n  },\n  {\n    \"id\": \"128667075\",\n    \"symbol\": \"XiheCompanions\",\n    \"market_id\": \"3224133120\",\n    \"category\": \"Technology\",\n    \"name\": \"Xihe Biomorphic Companions\",\n    \"limit\": 10\n  },\n  {\n    \"id\": \"128667076\",\n    \"symbol\": \"SanumaMEAT\",\n    \"market_id\": \"3230331136\",\n    \"category\": \"Foods\",\n    \"name\": \"Sanuma Decorative Meat\",\n    \"limit\": 7\n  },\n  {\n    \"id\": \"128667077\",\n    \"symbol\": \"EthgrezeTeaBuds\",\n    \"market_id\": \"3229524992\",\n    \"category\": \"Foods\",\n    \"name\": \"Ethgreze Tea Buds\",\n    \"limit\": 7\n  },\n  {\n    \"id\": \"128667078\",\n    \"symbol\": \"CeremonialHeikeTea\",\n    \"market_id\": \"3227417856\",\n    \"category\": \"Foods\",\n    \"name\": \"Ceremonial Heike Tea\",\n    \"limit\": 8\n  },\n  {\n    \"id\": \"128667079\",\n    \"symbol\": \"TanmarkTranquilTea\",\n    \"market_id\": \"128057866\",\n    \"category\": \"Foods\",\n    \"name\": \"Tanmark Tranquil Tea\",\n    \"limit\": 12\n  },\n  {\n    \"id\": \"128667080\",\n    \"symbol\": \"AZCancriFormula42\",\n    \"market_id\": \"3228400128\",\n    \"category\": \"Technology\",\n    \"name\": \"Az Cancri Formula 42\",\n    \"limit\": 9\n  },\n  {\n    \"id\": \"128667081\",\n    \"symbol\": \"KamitraCigars\",\n    \"market_id\": \"3225450752\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Kamitra Cigars\",\n    \"limit\": 23\n  },\n  {\n    \"id\": \"128667082\",\n    \"symbol\": \"RusaniOldSmokey\",\n    \"market_id\": \"3229255680\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Rusani Old Smokey\",\n    \"limit\": 10\n  },\n  {\n    \"id\": \"128667083\",\n    \"symbol\": \"YasoKondiLeaf\",\n    \"market_id\": \"3223088640\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Yaso Kondi Leaf\",\n    \"limit\": 5\n  },\n  {\n    \"id\": \"128667084\",\n    \"symbol\": \"ChateauDeAegaeon\",\n    \"market_id\": \"3228416768\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Chateau De Aegaeon\",\n    \"limit\": 14\n  },\n  {\n    \"id\": \"128667085\",\n    \"symbol\": \"WatersOfShintara\",\n    \"market_id\": \"128666762\",\n    \"category\": \"Medicines\",\n    \"name\": \"Waters of Shintara\",\n    \"limit\": 12\n  },\n  {\n    \"id\": \"128667668\",\n    \"symbol\": \"OphiuchiExinoArtefacts\",\n    \"market_id\": \"3228939264\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Ophiuch Exino Artefacts\",\n    \"limit\": 7\n  },\n  {\n    \"id\": \"128667669\",\n    \"symbol\": \"BakedGreebles\",\n    \"market_id\": \"3229378560\",\n    \"category\": \"Foods\",\n    \"name\": \"Baked Greebles\",\n    \"limit\": 17\n  },\n  {\n    \"id\": \"128667670\",\n    \"symbol\": \"CetiAepyornisEgg\",\n    \"market_id\": \"3222560256\",\n    \"category\": \"Foods\",\n    \"name\": \"Aepyornis Egg\",\n    \"limit\": 5\n  },\n  {\n    \"id\": \"128667671\",\n    \"symbol\": \"SaxonWine\",\n    \"market_id\": \"3227986432\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Saxon Wine\",\n    \"limit\": 13\n  },\n  {\n    \"id\": \"128667672\",\n    \"symbol\": \"CentauriMegaGin\",\n    \"market_id\": \"3228728832\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Centauri Mega Gin\",\n    \"limit\": 7\n  },\n  {\n    \"id\": \"128667673\",\n    \"symbol\": \"AnduligaFireWorks\",\n    \"market_id\": \"3230243584\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Anduliga Fire Works\",\n    \"limit\": 16\n  },\n  {\n    \"id\": \"128667674\",\n    \"symbol\": \"BankiAmphibiousLeather\",\n    \"market_id\": \"3228346112\",\n    \"category\": \"Textiles\",\n    \"name\": \"Banki Amphibious Leather\",\n    \"limit\": 18\n  },\n  {\n    \"id\": \"128667675\",\n    \"symbol\": \"CherbonesBloodCrystals\",\n    \"market_id\": \"3229594624\",\n    \"category\": \"Metals\",\n    \"name\": \"Cherbones Blood Crystals\",\n    \"limit\": 48\n  },\n  {\n    \"id\": \"128667676\",\n    \"symbol\": \"MotronaExperienceJelly\",\n    \"market_id\": \"3229750528\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Motrona Experience Jelly\",\n    \"limit\": 11\n  },\n  {\n    \"id\": \"128667677\",\n    \"symbol\": \"GeawenDanceDust\",\n    \"market_id\": \"3230954752\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Geawen Dance Dust\",\n    \"limit\": 23\n  },\n  {\n    \"id\": \"128667678\",\n    \"symbol\": \"GerasianGueuzeBeer\",\n    \"market_id\": \"3228047360\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Gerasian Gueuze Beer\",\n    \"limit\": 40\n  },\n  {\n    \"id\": \"128667679\",\n    \"symbol\": \"HaidneBlackBrew\",\n    \"market_id\": \"3226557696\",\n    \"category\": \"Foods\",\n    \"name\": \"Haiden Black Brew\",\n    \"limit\": \t21\n  },\n  {\n    \"id\": \"128667680\",\n    \"symbol\": \"HavasupaiDreamCatcher\",\n    \"market_id\": \"3221438976\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Havasupai Dream Catcher\",\n    \"limit\": 4\n  },\n  {\n    \"id\": \"128667681\",\n    \"symbol\": \"BurnhamBileDistillate\",\n    \"market_id\": \"3230224384\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Burnham Bile Distillate\",\n    \"limit\": 16\n  },\n  {\n    \"id\": \"128667682\",\n    \"symbol\": \"HIPOrganophosphates\",\n    \"market_id\": \"3227036160\",\n    \"category\": \"Chemicals\",\n    \"name\": \"HIP Organophosphates\",\n    \"limit\": 17\n  },\n  {\n    \"id\": \"128667683\",\n    \"symbol\": \"JaradharrePuzzlebox\",\n    \"market_id\": \"3230754816\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Jaradharre Puzzle Box\",\n    \"limit\": 4\n  },\n  {\n    \"id\": \"128667684\",\n    \"symbol\": \"KorroKungPellets\",\n    \"market_id\": \"3228726272\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Korro Kung Pellets\",\n    \"limit\": \t20\n  },\n  {\n    \"id\": \"128667685\",\n    \"symbol\": \"LFTVoidExtractCoffee\",\n    \"market_id\": \"3229028864\",\n    \"category\": \"Foods\",\n    \"name\": \"Void Extract Coffee\",\n    \"limit\": 18\n  },\n  {\n    \"id\": \"128667686\",\n    \"symbol\": \"HonestyPills\",\n    \"market_id\": \"3229561344\",\n    \"category\": \"Medicines\",\n    \"name\": \"Honesty Pills\",\n    \"limit\": 13\n  },\n  {\n    \"id\": \"128667687\",\n    \"symbol\": \"NonEuclidianExotanks\",\n    \"market_id\": \"3224135424\",\n    \"category\": \"Machinery\",\n    \"name\": \"Non Euclidian Exotanks\",\n    \"limit\": 16\n  },\n  {\n    \"id\": \"128667688\",\n    \"symbol\": \"LTTHyperSweet\",\n    \"market_id\": \"3224166400\",\n    \"category\": \"Foods\",\n    \"name\": \"LTT Hyper Sweet\",\n    \"limit\": 19\n  },\n  {\n    \"id\": \"128667689\",\n    \"symbol\": \"MechucosHighTea\",\n    \"market_id\": \"3228398848\",\n    \"category\": \"Foods\",\n    \"name\": \"Mechucos High Tea\",\n    \"limit\": 12\n  },\n  {\n    \"id\": \"128667690\",\n    \"symbol\": \"MedbStarlube\",\n    \"market_id\": \"3228762368\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Medb Starlube\",\n    \"limit\": 18\n  },\n  {\n    \"id\": \"128667691\",\n    \"symbol\": \"MokojingBeastFeast\",\n    \"market_id\": \"3229612800\",\n    \"category\": \"Foods\",\n    \"name\": \"Mokojing Beast Feast\",\n    \"limit\": 7\n  },\n  {\n    \"id\": \"128667692\",\n    \"symbol\": \"MukusubiiChitinOs\",\n    \"market_id\": \"3221719296\",\n    \"category\": \"Foods\",\n    \"name\": \"Mukusubii Chitin-os\",\n    \"limit\": 15\n  },\n  {\n    \"id\": \"128667693\",\n    \"symbol\": \"MulachiGiantFungus\",\n    \"market_id\": \"3228892672\",\n    \"category\": \"Foods\",\n    \"name\": \"Mulachi Giant Fungus\",\n    \"limit\": 22\n  },\n  {\n    \"id\": \"128667694\",\n    \"symbol\": \"NgadandariFireOpals\",\n    \"market_id\": \"3226127872\",\n    \"category\": \"Metals\",\n    \"name\": \"Ngadandari Fire Opals\",\n    \"limit\": \t6\n  },\n  {\n    \"id\": \"128667695\",\n    \"symbol\": \"TiegfriesSynthSilk\",\n    \"market_id\": \"3227726848\",\n    \"category\": \"Textiles\",\n    \"name\": \"Tiegfries Synth Silk\",\n    \"limit\": 30\n  },\n  {\n    \"id\": \"128667696\",\n    \"symbol\": \"UzumokuLowGWings\",\n    \"market_id\": \"3226474496\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Uzumoku Low-G Wings\",\n    \"limit\": 8\n  },\n  {\n    \"id\": \"128667697\",\n    \"symbol\": \"VHerculisBodyRub\",\n    \"market_id\": \"3228959232\",\n    \"category\": \"Medicines\",\n    \"name\": \"V Herculis Body Rub\",\n    \"limit\": 10\n  },\n  {\n    \"id\": \"128667698\",\n    \"symbol\": \"WheemeteWheatCakes\",\n    \"market_id\": \"3225032704\",\n    \"category\": \"Foods\",\n    \"name\": \"Wheemete Wheat Cakes\",\n    \"limit\": 19\n  },\n  {\n    \"id\": \"128667699\",\n    \"symbol\": \"VegaSlimWeed\",\n    \"market_id\": \"128149240\",\n    \"category\": \"Medicines\",\n    \"name\": \"Vega Slimweed\",\n    \"limit\": 28\n  },\n  {\n    \"id\": \"128667700\",\n    \"symbol\": \"AltairianSkin\",\n    \"market_id\": \"128151032\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Altairian Skin\",\n    \"limit\": 42\n  },\n  {\n    \"id\": \"128667701\",\n    \"symbol\": \"PavonisEarGrubs\",\n    \"market_id\": \"128117240\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Pavonis Ear Grubs\",\n    \"limit\": 30\n  },\n  {\n    \"id\": \"128667702\",\n    \"symbol\": \"JotunMookah\",\n    \"market_id\": \"128078840\",\n    \"category\": \"Textiles\",\n    \"name\": \"Jotun Mookah\",\n    \"limit\": 10\n  },\n  {\n    \"id\": \"128667703\",\n    \"symbol\": \"GiantVerrix\",\n    \"market_id\": \"128121336\",\n    \"category\": \"Machinery\",\n    \"name\": \"Giant Verrix\",\n    \"limit\": 6\n  },\n  {\n    \"id\": \"128667704\",\n    \"symbol\": \"IndiBourbon\",\n    \"market_id\": \"128118520\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Indi Bourbon\",\n    \"limit\": 8\n  },\n  {\n    \"id\": \"128667705\",\n    \"symbol\": \"AroucaConventualSweets\",\n    \"market_id\": \"128098040\",\n    \"category\": \"Foods\",\n    \"name\": \"Arouca Conventual Sweets\",\n    \"limit\": 18\n  },\n  {\n    \"id\": \"128667706\",\n    \"symbol\": \"TauriChimes\",\n    \"market_id\": \"128134648\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Tauri Chimes\",\n    \"limit\": 26\n  },\n  {\n    \"id\": \"128667707\",\n    \"symbol\": \"ZeesszeAntGlue\",\n    \"market_id\": \"128125432\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Zeessze Ant Grub Glue\",\n    \"limit\": 27\n  },\n  {\n    \"id\": \"128667708\",\n    \"symbol\": \"PantaaPrayerSticks\",\n    \"market_id\": \"3228824064\",\n    \"category\": \"Medicines\",\n    \"name\": \"Pantaa Prayer Sticks\",\n    \"limit\": 36\n  },\n  {\n    \"id\": \"128667709\",\n    \"symbol\": \"FujinTea\",\n    \"market_id\": \"128134392\",\n    \"category\": \"Foods\",\n    \"name\": \"Fujin Tea\",\n    \"limit\": 23\n  },\n  {\n    \"id\": \"128667710\",\n    \"symbol\": \"ChameleonCloth\",\n    \"market_id\": \"3223418880\",\n    \"category\": \"Textiles\",\n    \"name\": \"Chameleon Cloth\",\n    \"limit\": 7\n  },\n  {\n    \"id\": \"128667711\",\n    \"symbol\": \"OrrerianViciousBrew\",\n    \"market_id\": \"128166392\",\n    \"category\": \"Foods\",\n    \"name\": \"Orrerian Vicious Brew\",\n    \"limit\": 32\n  },\n  {\n    \"id\": \"128667712\",\n    \"symbol\": \"UszaianTreeGrub\",\n    \"market_id\": \"128164856\",\n    \"category\": \"Foods\",\n    \"name\": \"Uszaian Tree Grub\",\n    \"limit\": 14\n  },\n  {\n    \"id\": \"128667713\",\n    \"symbol\": \"MomusBogSpaniel\",\n    \"market_id\": \"128075256\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Momus Bog Spaniel\",\n    \"limit\": 7\n  },\n  {\n    \"id\": \"128667714\",\n    \"symbol\": \"DisoMaCorn\",\n    \"market_id\": \"128161016\",\n    \"category\": \"Foods\",\n    \"name\": \"Diso Ma Corn\",\n    \"limit\": 15\n  },\n  {\n    \"id\": \"128667715\",\n    \"symbol\": \"LeestianEvilJuice\",\n    \"market_id\": \"128639992\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Leestian Evil Juice\",\n    \"limit\": 14\n  },\n  {\n    \"id\": \"128667716\",\n    \"symbol\": \"BlueMilk\",\n    \"market_id\": \"128639992\",\n    \"category\": \"Foods\",\n    \"name\": \"Azure Milk\",\n    \"limit\": 7\n  },\n  {\n    \"id\": \"128667717\",\n    \"symbol\": \"AlienEggs\",\n    \"market_id\": \"128164088\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Leathery Eggs\",\n    \"limit\": 1\n  },\n  {\n    \"id\": \"128667718\",\n    \"symbol\": \"AlyaBodilySoap\",\n    \"market_id\": \"3221638400\",\n    \"category\": \"Medicines\",\n    \"name\": \"Alya Body Soap\",\n    \"limit\": 16\n  },\n  {\n    \"id\": \"128667719\",\n    \"symbol\": \"VidavantianLace\",\n    \"market_id\": \"3231082240\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Vidavantian Lace\",\n    \"limit\": 5\n  },\n  {\n    \"id\": \"128667760\",\n    \"symbol\": \"TransgenicOnionHead\",\n    \"market_id\": \"128057866\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Lucan Onionhead\",\n    \"limit\": 12\n  },\n  {\n    \"id\": \"128668017\",\n    \"symbol\": \"JaquesQuinentianStill\",\n    \"market_id\": \"128667761\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Jaques Quinentian Still\",\n    \"limit\": 26\n  },\n  {\n    \"id\": \"128668018\",\n    \"symbol\": \"SoontillRelics\",\n    \"market_id\": \"3225348096\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Soontill Relics\",\n    \"limit\": 5\n  },\n  {\n    \"id\": \"128671119\",\n    \"symbol\": \"Advert1\",\n    \"market_id\": \"3227172352\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Ultra-Compact Processor Prototypes\",\n    \"limit\": 1\n  },\n  {\n    \"id\": \"128672121\",\n    \"symbol\": \"TheHuttonMug\",\n    \"market_id\": \"3228728832\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"The Hutton Mug\",\n    \"limit\": 30\n  },\n  {\n    \"id\": \"128672122\",\n    \"symbol\": \"SothisCrystallineGold\",\n    \"market_id\": \"128668557\",\n    \"category\": \"Metals\",\n    \"name\": \"Sothis Crystalline Gold\",\n    \"limit\": 20\n  },\n  {\n    \"id\": \"128672316\",\n    \"symbol\": \"MasterChefs\",\n    \"market_id\": \"128123640\",\n    \"category\": \"Slavery\",\n    \"name\": \"Master Chefs\",\n    \"limit\": 26\n  },\n  {\n    \"id\": \"128672431\",\n    \"symbol\": \"PersonalGifts\",\n    \"market_id\": \"3223105792\",\n    \"category\": \"Salvage\",\n    \"name\": \"Personal Gifts\",\n    \"limit\": 20\n  },\n  {\n    \"id\": \"128672432\",\n    \"symbol\": \"CrystallineSpheres\",\n    \"market_id\": \"128059402\",\n    \"category\": \"Salvage\",\n    \"name\": \"Crystalline Spheres\",\n    \"limit\": 12\n  },\n  {\n    \"id\": \"128672812\",\n    \"symbol\": \"OnionHeadA\",\n    \"market_id\": \"3226977024\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Onionhead Alpha Strain\",\n    \"limit\": \t10\n  },\n  {\n    \"id\": \"128673069\",\n    \"symbol\": \"OnionHeadB\",\n    \"market_id\": \"3223027200\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Onionhead Beta Strain\",\n    \"limit\": 10\n  },\n  {\n    \"id\": \"128682050\",\n    \"symbol\": \"GalacticTravelGuide\",\n    \"market_id\": \"128673074\",\n    \"category\": \"Salvage\",\n    \"name\": \"Galactic Travel Guide\"\n  },\n  {\n    \"id\": \"128727921\",\n    \"symbol\": \"AnimalEffigies\",\n    \"market_id\": \"3228463360\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Crom Silver Fesh\",\n    \"limit\": 17\n  },\n  {\n    \"id\": \"128732551\",\n    \"symbol\": \"ShansCharisOrchid\",\n    \"market_id\": \"128107768\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Shan's Charis Orchid\",\n    \"limit\": \t7\n  },\n  {\n    \"id\": \"128748428\",\n    \"symbol\": \"BuckyballBeerMats\",\n    \"market_id\": \"128745551\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Buckyball Beer Mats\",\n    \"limit\": 25\n  },\n  {\n    \"id\": \"128793113\",\n    \"symbol\": \"HarmaSilverSeaRum\",\n    \"market_id\": \"3221575424\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Harma Silver Sea Rum\",\n    \"limit\": 60\n  },\n  {\n    \"id\": \"128793114\",\n    \"symbol\": \"PlatinumAloy\",\n    \"market_id\": \"3223779840\",\n    \"category\": \"Metals\",\n    \"name\": \"Platinum Alloy\",\n    \"limit\": 13\n  },\n  {\n    \"id\": \"128913661\",\n    \"symbol\": \"Nanomedicines\",\n    \"market_id\": \"3226651904\",\n    \"category\": \"Medicines\",\n    \"name\": \"Nanomedicines\",\n    \"limit\": 40\n  },\n  {\n    \"id\": \"128922524\",\n    \"symbol\": \"Duradrives\",\n    \"market_id\": \"3223453184\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Duradrives\",\n    \"limit\": 22\n  },\n  {\n    \"id\": \"128958679\",\n    \"symbol\": \"ApaVietii\",\n    \"market_id\": \"128958681\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Apa Vietii\",\n    \"limit\": 11\n  },\n  {\n    \"id\": \"129002574\",\n    \"symbol\": \"ClassifiedExperimentalEquipment\",\n    \"market_id\": \"128986325\",\n    \"category\": \"Technology\",\n    \"name\": \"Classified Experimental Equipment\"\n  }\n]"
  },
  {
    "path": "resources/installer/installer.nsi",
    "content": "!define APP_NAME \"ICARUS Terminal\"\n!define COMP_NAME \"ICARUS\"\n!define VERSION \"${PRODUCT_VERSION}\"\n!define COPYRIGHT \"ICARUS\"\n!define DESCRIPTION \"Application\"\n!define INSTALLER_NAME \"../../dist/ICARUS Setup.exe\"\n!define MAIN_APP_EXE \"ICARUS Terminal.exe\"\n!define INSTALL_TYPE \"SetShellVarContext current\"\n!define REG_ROOT \"HKCU\"\n!define REG_APP_PATH \"Software\\Microsoft\\Windows\\CurrentVersion\\App Paths\\${MAIN_APP_EXE}\"\n!define UNINSTALL_PATH \"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\${APP_NAME}\"\n\n######################################################################\n\nVIProductVersion  \"${VERSION}\"\nVIAddVersionKey \"ProductName\"  \"${APP_NAME}\"\nVIAddVersionKey \"CompanyName\"  \"${COMP_NAME}\"\nVIAddVersionKey \"LegalCopyright\"  \"${COPYRIGHT}\"\nVIAddVersionKey \"FileDescription\"  \"${DESCRIPTION}\"\nVIAddVersionKey \"FileVersion\"  \"${VERSION}\"\n\n######################################################################\n\nSetCompressor ZLIB\nName \"${APP_NAME}\"\nCaption \"${APP_NAME}\"\nOutFile \"${INSTALLER_NAME}\"\nBrandingText \"${APP_NAME}\"\nXPStyle on\nInstallDirRegKey \"${REG_ROOT}\" \"${REG_APP_PATH}\" \"\"\nInstallDir \"$PROGRAMFILES\\ICARUS Terminal\"\n\n######################################################################\n\n!include \"MUI.nsh\"\n!include \"webview2.nsh\"\n\n!addplugindir \"./\"\n\n!define MUI_ABORTWARNING\n!define MUI_UNABORTWARNING\n\n!define MUI_WELCOMEFINISHPAGE_BITMAP \"panel.bmp\"  # 164x314px\n!define MUI_HEADERIMAGE \n!define MUI_HEADERIMAGE_RIGHT\n!define MUI_HEADERIMAGE_BITMAP \"header.bmp\" # 150x57px \n\n!insertmacro MUI_PAGE_WELCOME\n\n!ifdef LICENSE_TXT\n!insertmacro MUI_PAGE_LICENSE \"${LICENSE_TXT}\"\n!endif\n\n!ifdef REG_START_MENU\n!define MUI_STARTMENUPAGE_NODISABLE\n!define MUI_STARTMENUPAGE_DEFAULTFOLDER \"ICARUS Terminal\"\n!define MUI_STARTMENUPAGE_REGISTRY_ROOT \"${REG_ROOT}\"\n!define MUI_STARTMENUPAGE_REGISTRY_KEY \"${UNINSTALL_PATH}\"\n!define MUI_STARTMENUPAGE_REGISTRY_VALUENAME \"${REG_START_MENU}\"\n!insertmacro MUI_PAGE_STARTMENU Application $SM_Folder\n!endif\n\n!insertmacro MUI_PAGE_INSTFILES\n\n# Pass the flag \"--install\" to let the app know it is being run by the installer\n# after install/update as an easy way to trigger any 'first run' actions.\n# There are better ways to do this, but it's much easier to do it this way.\n!define MUI_FINISHPAGE_RUN \"$INSTDIR\\${MAIN_APP_EXE}\"\n!define MUI_FINISHPAGE_RUN_PARAMETERS \"--install\"\n!insertmacro MUI_PAGE_FINISH\n\n!insertmacro MUI_UNPAGE_CONFIRM\n\n!insertmacro MUI_UNPAGE_INSTFILES\n\n!insertmacro MUI_UNPAGE_FINISH\n\n!insertmacro MUI_LANGUAGE \"English\"\n\n######################################################################\n\nSection -MainProgram\n${INSTALL_TYPE}\nSetOverwrite ifnewer\nSetOutPath \"$INSTDIR\"\nFile \"..\\..\\build\\bin\\ICARUS Service.exe\"\nFile \"..\\..\\build\\bin\\ICARUS Terminal.exe\"\nFile \"..\\..\\build\\bin\\webview.dll\"\nFile \"..\\..\\build\\bin\\WebView2Loader.dll\"\nFile \"..\\assets\\icon.ico\"\nCall installWebView2\nSectionEnd\n\n######################################################################\n\nSection -Icons_Reg\nSetOutPath \"$INSTDIR\"\nWriteUninstaller \"$INSTDIR\\uninstall.exe\"\n\n!ifdef REG_START_MENU\n!insertmacro MUI_STARTMENU_WRITE_BEGIN Application\nCreateDirectory \"$SMPROGRAMS\\$SM_Folder\"\nCreateShortCut \"$SMPROGRAMS\\$SM_Folder\\${APP_NAME}.lnk\" \"$INSTDIR\\${MAIN_APP_EXE}\"\nCreateShortCut \"$DESKTOP\\${APP_NAME}.lnk\" \"$INSTDIR\\${MAIN_APP_EXE}\"\n!ifdef WEB_SITE\nWriteIniStr \"$INSTDIR\\${APP_NAME} website.url\" \"InternetShortcut\" \"URL\" \"${WEB_SITE}\"\nCreateShortCut \"$SMPROGRAMS\\$SM_Folder\\${APP_NAME} Website.lnk\" \"$INSTDIR\\${APP_NAME} website.url\"\n!endif\n!insertmacro MUI_STARTMENU_WRITE_END\n!endif\n\n!ifndef REG_START_MENU\nCreateDirectory \"$SMPROGRAMS\\ICARUS Terminal\"\nCreateShortCut \"$SMPROGRAMS\\ICARUS Terminal\\${APP_NAME}.lnk\" \"$INSTDIR\\${MAIN_APP_EXE}\"\nCreateShortCut \"$DESKTOP\\${APP_NAME}.lnk\" \"$INSTDIR\\${MAIN_APP_EXE}\"\n!ifdef WEB_SITE\nWriteIniStr \"$INSTDIR\\${APP_NAME} website.url\" \"InternetShortcut\" \"URL\" \"${WEB_SITE}\"\nCreateShortCut \"$SMPROGRAMS\\ICARUS Terminal\\${APP_NAME} Website.lnk\" \"$INSTDIR\\${APP_NAME} website.url\"\n!endif\n!endif\n\nWriteRegStr ${REG_ROOT} \"${REG_APP_PATH}\" \"\" \"$INSTDIR\\${MAIN_APP_EXE}\"\nWriteRegStr ${REG_ROOT} \"${UNINSTALL_PATH}\"  \"DisplayName\" \"${APP_NAME}\"\nWriteRegStr ${REG_ROOT} \"${UNINSTALL_PATH}\"  \"UninstallString\" \"$INSTDIR\\uninstall.exe\"\nWriteRegStr ${REG_ROOT} \"${UNINSTALL_PATH}\"  \"DisplayIcon\" \"$INSTDIR\\${MAIN_APP_EXE}\"\nWriteRegStr ${REG_ROOT} \"${UNINSTALL_PATH}\"  \"DisplayVersion\" \"${VERSION}\"\nWriteRegStr ${REG_ROOT} \"${UNINSTALL_PATH}\"  \"Publisher\" \"${COMP_NAME}\"\n\n!ifdef WEB_SITE\nWriteRegStr ${REG_ROOT} \"${UNINSTALL_PATH}\"  \"URLInfoAbout\" \"${WEB_SITE}\"\n!endif\nSectionEnd\n\n######################################################################\n\nSection Uninstall\n${INSTALL_TYPE}\nDelete \"$INSTDIR\\ICARUS Service.exe\"\nDelete \"$INSTDIR\\ICARUS Terminal.exe\"\nDelete \"$INSTDIR\\webview.dll\"\nDelete \"$INSTDIR\\WebView2Loader.dll\"\nDelete \"$INSTDIR\\icon.ico\"\nDelete \"$INSTDIR\\uninstall.exe\"\n!ifdef WEB_SITE\nDelete \"$INSTDIR\\${APP_NAME} website.url\"\n!endif\n\nRmDir \"$INSTDIR\"\n\n!ifdef REG_START_MENU\n!insertmacro MUI_STARTMENU_GETFOLDER \"Application\" $SM_Folder\nDelete \"$SMPROGRAMS\\$SM_Folder\\${APP_NAME}.lnk\"\n!ifdef WEB_SITE\nDelete \"$SMPROGRAMS\\$SM_Folder\\${APP_NAME} Website.lnk\"\n!endif\nDelete \"$DESKTOP\\${APP_NAME}.lnk\"\n\nRmDir \"$SMPROGRAMS\\$SM_Folder\"\n!endif\n\n!ifndef REG_START_MENU\nDelete \"$SMPROGRAMS\\ICARUS Terminal\\${APP_NAME}.lnk\"\n!ifdef WEB_SITE\nDelete \"$SMPROGRAMS\\ICARUS Terminal\\${APP_NAME} Website.lnk\"\n!endif\nDelete \"$DESKTOP\\${APP_NAME}.lnk\"\n\nRmDir \"$SMPROGRAMS\\ICARUS Terminal\"\n!endif\n\nDeleteRegKey ${REG_ROOT} \"${REG_APP_PATH}\"\nDeleteRegKey ${REG_ROOT} \"${UNINSTALL_PATH}\"\nSectionEnd\n\n######################################################################\n\n"
  },
  {
    "path": "resources/installer/webview2.nsh",
    "content": "# From https://gist.github.com/jhandley/1ec569242170454c593a3b1642cc995e\n\n# Install webview2 by launching the bootstrapper\n# See https://docs.microsoft.com/en-us/microsoft-edge/webview2/concepts/distribution#online-only-deployment\nFunction installWebView2\n\n\t# If this key exists and is not empty then webview2 is already installed\n\tReadRegStr $0 HKLM \\\n        \t\"SOFTWARE\\WOW6432Node\\Microsoft\\EdgeUpdate\\Clients\\{F3017226-FE2A-4295-8BDF-00C3A9A7E4C5}\" \"pv\"\n\n\t${If} ${Errors} \n\t${OrIf} $0 == \"\"\n\n\t\tSetDetailsPrint both\n\t\tDetailPrint \"Installing: WebView2 Runtime\"\n\t\tSetDetailsPrint listonly\n\t\t\n\t\tInitPluginsDir\n\t\tCreateDirectory \"$pluginsdir\"\n\t\tSetOutPath \"$pluginsdir\"\n\t\tFile \"MicrosoftEdgeWebview2Setup.exe\"\n\t\tExecWait '\"$pluginsdir\\MicrosoftEdgeWebview2Setup.exe\" /silent /install'\n\t\t\n\t\tSetDetailsPrint both\n\n\t${EndIf}\n\nFunctionEnd"
  },
  {
    "path": "resources/notes/location.md",
    "content": "# Location Event\n\nNote: Similar to FSDJump.\n\nWhen written: at startup, or when being resurrected at a station\n\nParameters:\n\n * StarSystem: name of destination starsystem\n * SystemAddress\n * StarPos: star position, as a Json array [x, y, z], in light years\n * Body: star or planet’s body name\n * BodyID\n * BodyType \n * DistFromStarLS: (unless close to main star)\n * Docked: (bool)\n * Latitude (If landed)\n * Longitude (if landed)\n * StationName: station name, (if docked)\n * StationType: (if docked)\n * MarketID: (if docked)\n * SystemFaction: star system controlling faction\n   * Name\n   * FactionState\n * SystemAllegiance\n * SystemEconomy\n * SystemSecondEconomy\n * SystemGovernment\n * SystemSecurity\n * Wanted\n * Factions: an array with info on local minor factions (similar to FSDJump)\n * Conflicts: an array with info on local conflicts (similar to FSDJump)\n\nIf the player is pledged to a Power in Powerplay, and the star system is involved in powerplay:\n\n * Powers: a json array with the names of any powers contesting the system, or the name of the controlling power\n * PowerplayState: the system state – one of (\"InPrepareRadius\", \"Prepared\", \"Exploited\", \"Contested\", \"Controlled\", \"Turmoil\", \"HomeSystem\")\n\nThe faction data includes happiness info, and can include multiple active states\n\nIf starting docked in a station, also include:\n\n * StationFaction\n   * Name\n   * FactionState\n * StationGovernment\n * StationAllegiance\n * StationServices\n * StationEconomies (Array of (Name,Proportion) pairs )\n\nNew in Odyssey:\n\n * Taxi: bool\n * Multicrew: bool\n * InSRV: bool\n * OnFoot: bool "
  },
  {
    "path": "resources/notes/status-json.md",
    "content": "# Status File\n\nIn addition to the journal file, which is written incrementally, there is now (in v3.0) a new file\nStatus.json which is updated every few seconds, with some information about the current state of\nthe game.\n\nThis has a similar format to a line in the journal, but the whole file is replaced every time. It has a\ntimestamp like the journal, and \"event\":\"Status\"\n\nParameters:\n\n* Flags: multiple flags encoded as bits in an integer (see below)\n* Flags2: more flags, mainly for when on foot\n* Pips: an array of 3 integers representing energy distribution (in half-pips)\n* Firegroup: the currently selected firegroup number\n* GuiFocus: the selected GUI screen\n* Fuel: { FuelMain, FuelReservoir} – both mass in tons\n* Cargo: mass in tons\n* LegalState\n* Latitude (if on or near a planet)\n* Altitude\n* Longitude\n* Heading\n* BodyName\n* PlanetRadius\n\nLegalState is one of:\n\n* \"Clean\",\n* \"IllegalCargo\",\n* \"Speeding\",\n* \"Wanted\",\n* \"Hostile\",\n* \"PassengerWanted\",\n*  \"Warrant\"\n\nAdditional values when on foot:\n\n* Oxygen: (0.0 .. 1.0)\n* Health: (0.0 .. 1.0)\n* Temperature (kelvin)\n* SelectedWeapon: name\n* Gravity: (relative to 1G) \n\nBit Value Hex Meaning:\n\n0 1 0000 0001 Docked, (on a landing pad)\n1 2 0000 0002 Landed, (on planet surface)\n2 4 0000 0004 Landing Gear Down\n3 8 0000 0008 Shields Up\n4 16 0000 0010 Supercruise\n5 32 0000 0020 FlightAssist Off\n6 64 0000 0040 Hardpoints Deployed\n7 128 0000 0080 In Wing \n8 256 0000 0100 LightsOn\n9 512 0000 0200 Cargo Scoop Deployed\n10 1024 0000 0400 Silent Running,\n11 2048 0000 0800 Scooping Fuel\n12 4096 0000 1000 Srv Handbrake\n13 8192 0000 2000 Srv using Turret view\n14 16384 0000 4000 Srv Turret retracted (close to ship)\n15 32768 0000 8000 Srv DriveAssist\n16 65536 0001 0000 Fsd MassLocked\n17 131072 0002 0000 Fsd Charging\n18 262144 0004 0000 Fsd Cooldown\n19 524288 0008 0000 Low Fuel ( < 25% )\n20 1048576 0010 0000 Over Heating ( > 100% )\n21 2097152 0020 0000 Has Lat Long\n22 4194304 0040 0000 IsInDanger\n23 8388608 0080 0000 Being Interdicted\n24 16777216 0100 0000 In MainShip\n25 33554432 0200 0000 In Fighter\n26 67108864 0400 0000 In SRV\n27 134217728 0800 0000 Hud in Analysis mode\n28 268435456 1000 0000 Night Vision\n29 536870912 2000 0000 Altitude from Average radius\n30 1073741824 4000 0000 fsdJump\n31 2147483648 8000 0000 srvHighBeam\n\nFlags2 bits:\n\nBit value hex meaning\n0 1 0001 OnFoot\n1 2 0002 InTaxi (or dropship/shuttle)\n2 4 0004 InMulticrew (ie in someone else’s ship)\n3 8 0008 OnFootInStation\n4 16 0010 OnFootOnPlanet\n5 32 0020 AimDownSight\n6 64 0040 LowOxygen\n7 128 0080 LowHealth\n8 256 0100 Cold\n9 512 0200 Hot\n10 1024 0400 VeryCold\n11 2048 0800 VeryHot\n12 4096 1000 Glide Mode\n13 8192 2000 OnFootInHangar\n14 16384 4000 OnFootSocialSpace\n15 32768 8000 OnFootExterior\n16 65536 0001 0001 BreathableAtmosphere\n\nExamples:\n\n{ \"timestamp\":\"2017-12-07T10:31:37Z\", \"event\":\"Status\", \"Flags\":16842765, \"Pips\":[2,8,2], \"FireGroup\":0,\n\"Fuel\":{ \"FuelMain\":15.146626, \"FuelReservoir\":0.382796 }, \"GuiFocus\":5 }\n{ \"timestamp\":\"2017-12-07T12:03:14Z\", \"event\":\"Status\", \"Flags\":18874376, \"Pips\":[4,8,0], \"FireGroup\":0,\n\"Fuel\":{ \"FuelMain\":15.146626, \"FuelReservoir\":0.382796 }, \"GuiFocus\":0, \"Latitude\":-28.584963,\n\"Longitude\":6.826313, \"Heading\":109, \"Altitude\": 404 }\nIn the first example above 16842765 (0x0101000d) has flags 24, 16, 3, 2, 0: In main ship, Mass\nlocked, Shields up, Landing gear down, Docked \n\nGuiFocus values:\n\n* 0 NoFocus\n* 1 InternalPanel (right hand side)\n* 2 ExternalPanel (left hand side)\n* 3 CommsPanel (top)\n* 4 RolePanel (bottom)\n* 5 StationServices\n* 6 GalaxyMap\n* 7 SystemMap\n* 8 Orrery\n* 9 FSS mode\n* 10 SAA mode\n* 11 Codex\n\nNotes:\n\n* The latitude or longitude need to change by 0.02 degrees to trigger an update when flying, or by 0.0005 degrees when in the SRV\n* If the bit29 is set, the altitude value is based on the planet’s average radius (used at higher altitudes)\n* If the bit29 is not set, the Altitude value is based on a raycast to the actual surface below the ship/srv \n\n"
  },
  {
    "path": "scripts/build-app.js",
    "content": "const fs = require('fs')\nconst path = require('path')\nconst { execSync } = require('child_process')\nconst changeExe = require('changeexe')\nconst UPX = require('upx')({ brute: true })\nconst yargs = require('yargs')\nconst commandLineArgs = yargs.argv\n\nconst {\n  DEVELOPMENT_BUILD: DEVELOPMENT_BUILD_DEFAULT,\n  DEBUG_CONSOLE: DEBUG_CONSOLE_DEFAULT,\n  BUILD_DIR,\n  BIN_DIR,\n  RESOURCES_DIR,\n  APP_UNOPTIMIZED_BUILD,\n  APP_OPTIMIZED_BUILD,\n  APP_FINAL_BUILD,\n  APP_ICON,\n  APP_VERSION_INFO\n} = require('./lib/build-options')\n\nconst DEVELOPMENT_BUILD = commandLineArgs.debug || DEVELOPMENT_BUILD_DEFAULT\nconst DEBUG_CONSOLE = commandLineArgs.debug || DEBUG_CONSOLE_DEFAULT\nconst COMPRESS_FINAL_BUILD = false\n\n;(async () => {\n  clean()\n  await build()\n  copy()\n})()\n\nfunction clean () {\n  if (!fs.existsSync(BUILD_DIR)) fs.mkdirSync(BUILD_DIR, { recursive: true })\n  if (!fs.existsSync(BIN_DIR)) fs.mkdirSync(BIN_DIR, { recursive: true })\n  if (fs.existsSync(APP_UNOPTIMIZED_BUILD)) fs.unlinkSync(APP_UNOPTIMIZED_BUILD)\n  if (fs.existsSync(APP_OPTIMIZED_BUILD)) fs.unlinkSync(APP_OPTIMIZED_BUILD)\n  if (fs.existsSync(APP_FINAL_BUILD)) fs.unlinkSync(APP_FINAL_BUILD)\n}\n\nasync function build () {\n  if (DEBUG_CONSOLE) {\n    // Build that opens console output to a terminal\n    execSync(`cd src/app && go build -o \"${APP_UNOPTIMIZED_BUILD}\"`)\n  } else {\n    execSync(`cd src/app && go build -ldflags=\"-H windowsgui -s -w\" -o \"${APP_UNOPTIMIZED_BUILD}\"`)\n  }\n\n  if (DEVELOPMENT_BUILD) {\n    console.log('Development build (skipping compression)')\n    fs.copyFileSync(APP_UNOPTIMIZED_BUILD, APP_OPTIMIZED_BUILD)\n  } else {\n    if (COMPRESS_FINAL_BUILD) {\n      console.log('Optimizing app build...')\n      const optimisationStats = await UPX(APP_UNOPTIMIZED_BUILD)\n        .output(APP_OPTIMIZED_BUILD)\n        .start()\n        .catch(err => {\n          console.log('Error compressing build', err)\n          process.exit(1)\n        })\n      console.log('Optimized app build', optimisationStats)\n    } else {\n      console.log('Compression disabled (skipping service build optimization)')\n      fs.copyFileSync(APP_UNOPTIMIZED_BUILD, APP_OPTIMIZED_BUILD)\n    }\n  }\n\n  // Apply icon and resource changes after optimization\n  await changeExe.icon(APP_OPTIMIZED_BUILD, APP_ICON)\n  await changeExe.versionInfo(APP_OPTIMIZED_BUILD, APP_VERSION_INFO)\n}\n\nfunction copy () {\n  fs.copyFileSync(APP_OPTIMIZED_BUILD, APP_FINAL_BUILD)\n  // Resources required by the app\n  fs.copyFileSync(path.join(RESOURCES_DIR, 'dll', 'webview.dll'), path.join(BIN_DIR, 'webview.dll'))\n  fs.copyFileSync(path.join(RESOURCES_DIR, 'dll', 'WebView2Loader.dll'), path.join(BIN_DIR, 'WebView2Loader.dll'))\n  // Icon copied to bin dir as used by the terminal at runtime when spawning\n  // new windows so must be shipped alongside the binary.\n  // It's also an embeded resource in each executable but it's easier to access\n  // as a distinct asset (which is why a lot of Win32 programs do this).\n  fs.copyFileSync(APP_ICON, path.join(BIN_DIR, 'icon.ico'))\n}\n"
  },
  {
    "path": "scripts/build-assets.js",
    "content": "// This step is not required currently as assets are now bundled into the\n// service executable, but it may be used again in future.\nconst fs = require('fs')\nconst path = require('path')\nconst { execSync } = require('child_process')\nconst fse = require('fs-extra')\nconst toIco = require('to-ico')\nconst svgtofont = require('svgtofont')\nconst packageJson = require('../package.json')\n\nconst {\n  ASSETS_DIR,\n  RESOURCES_DIR,\n  ICON\n} = require('./lib/build-options')\n\nconst ICON_FONT_DIR = path.join(ASSETS_DIR, 'icon-font')\nconst ICONS_DIR = path.join(ASSETS_DIR, 'icons')\n\n;(async () => {\n  clean()\n  await build()\n  copy()\n})()\n\nfunction clean () {\n  if (!fs.existsSync(ASSETS_DIR)) fs.mkdirSync(ASSETS_DIR, { recursive: true })\n  if (!fs.existsSync(ICONS_DIR)) fs.mkdirSync(ICONS_DIR, { recursive: true })\n  if (fs.existsSync(ICON_FONT_DIR)) fs.rmdirSync(ICON_FONT_DIR, { recursive: true })\n}\n\nasync function build () {\n  // Note: Overrides maskable icon, so put back the right icon afterwords\n  execSync(`npx generate-icons --manifest ${path.join(ASSETS_DIR, 'icon-manifest.json')} ${path.join(RESOURCES_DIR, 'images/icon.svg')}`)\n  fse.copySync(\n    path.join(RESOURCES_DIR, 'images/icon-maskable.png'),\n    path.join(ICONS_DIR, 'icon-maskable.png')\n  )\n\n  // Convert icon.png to icon.ico (used for windows app icon)\n  const iconFiles = [\n    fs.readFileSync(path.join(ICONS_DIR, 'icon-256x256.png'))\n  ]\n  const buf = await toIco(iconFiles, {\n    resize: true,\n    sizes: [16, 24, 32, 48, 64, 128, 256]\n  })\n  fs.writeFileSync(ICON, buf)\n  fse.copySync(ICON, 'src/client/public/favicon.ico')\n\n  // Build icon font\n  await svgtofont({\n    src: path.join(RESOURCES_DIR, 'icons'),\n    dist: ICON_FONT_DIR,\n    fontName: 'icarus-terminal',\n    css: true,\n    outSVGReact: false,\n    outSVGPath: true,\n    svgicons2svgfont: {\n      fixedWidth: true,\n      centerHorizontally: true,\n      normalize: true\n    },\n    website: {\n      title: 'ICARUS Terminal Font',\n      logo: false,\n      version: packageJson.version\n    }\n  })\n}\n\nfunction copy () {\n  [\n    'icarus-terminal.css',\n    'icarus-terminal.eot',\n    'icarus-terminal.woff',\n    'icarus-terminal.woff2',\n    'icarus-terminal.ttf',\n    'icarus-terminal.svg',\n    'icarus-terminal.json'\n  ].forEach(fontAsset => fse.copySync(path.join(ASSETS_DIR, 'icon-font', fontAsset), `src/client/public/fonts/icarus-terminal/${fontAsset}`))\n\n  fse.copySync(path.join(ASSETS_DIR, 'icons'), 'src/client/public/icons')\n}\n"
  },
  {
    "path": "scripts/build-clean.js",
    "content": "const fs = require('fs')\n\nconst {\n  BUILD_DIR,\n  DIST_DIR\n} = require('./lib/build-options')\n\nif (fs.existsSync(BUILD_DIR)) fs.rmdirSync(BUILD_DIR, { recursive: true })\nif (fs.existsSync(DIST_DIR)) fs.rmdirSync(DIST_DIR, { recursive: true })\n"
  },
  {
    "path": "scripts/build-data.js",
    "content": "// Convert files from raw data to useable / enriched JSON\nconst glob = require('glob')\nconst csv = require('csvtojson')\nconst fs = require('fs')\nconst path = require('path')\nconst xml2js = require('xml2js')\nconst WT2PT = require('wikitext2plaintext')\n\nconst xmlParser = new xml2js.Parser()\nconst wikiTextParser = new WT2PT()\n\nconst { RESOURCES_DIR } = require('./lib/build-options')\n\nconst ROOT_INPUT_DATA_DIR = path.join(RESOURCES_DIR, 'data')\nconst ROOT_OUTPUT_DATA_DIR = path.join('src', 'service', 'data')\n\n;(async () => {\n  await fdevids()\n  coriolisDataBlueprints()\n  coriolisDataModules()\n  materialUses()\n  await codexArticles()\n})()\n\nfunction fdevids () {\n  return new Promise((resolve, reject) => {\n      // This a sync task, as codexArticles depends on it's output\n      // Data from https://github.com/EDCD/FDevIDs\n      const dataDir = 'edcd/fdevids'\n      fs.mkdirSync(`${ROOT_OUTPUT_DATA_DIR}/${dataDir}`, { recursive: true })\n      glob(`${ROOT_INPUT_DATA_DIR}/${dataDir}/*.csv`, {}, async (error, files) => {\n        if (error) return console.error(error)\n        for (const pathToFile of files) {\n          const jsonOutput = await csv().fromFile(pathToFile)\n          const basename = path.basename(pathToFile, '.csv')\n          fs.writeFileSync(`${ROOT_OUTPUT_DATA_DIR}/${dataDir}/${basename}.json`, JSON.stringify(jsonOutput, null, 2))\n        }\n        resolve()\n      })\n  })\n}\n\nfunction coriolisDataBlueprints () {\n  // https://github.com/EDCD/coriolis-data\n  const dataDir = 'edcd/coriolis/modifications'\n  const outputDir = `${ROOT_OUTPUT_DATA_DIR}/edcd/coriolis`\n  fs.mkdirSync(outputDir, { recursive: true })\n  const blueprints = JSON.parse(fs.readFileSync(`${ROOT_INPUT_DATA_DIR}/${dataDir}/blueprints.json`))\n  const modifications = JSON.parse(fs.readFileSync(`${ROOT_INPUT_DATA_DIR}/${dataDir}/modifications.json`))\n  const modules = JSON.parse(fs.readFileSync(`${ROOT_INPUT_DATA_DIR}/${dataDir}/modules.json`))\n\n  const moduleBlueprints = {}\n  Object.keys(modules).forEach(module => {\n    Object.keys(modules[module].blueprints).forEach(blueprintName => {\n      moduleBlueprints[blueprintName] = modules[module].blueprints[blueprintName]\n    })\n  })\n\n  const output = []\n  Object.keys(blueprints).forEach(blueprintSymbol => {\n    const blueprint = blueprints[blueprintSymbol]\n    blueprint.symbol = blueprintSymbol\n    blueprint.engineers = {}\n\n    Object.keys(blueprint.grades).forEach(grade => {\n      const features = {}\n\n      // Get all engineers who can make this grade\n      moduleBlueprints?.[blueprintSymbol]?.grades[grade]?.engineers.forEach(engineer => {\n        if (!blueprint.engineers[engineer]) {\n          blueprint.engineers[engineer] = { grades: [] }\n        }\n        blueprint.engineers[engineer].grades.push(grade)\n      })\n\n      Object.entries(blueprint.grades[grade].features).forEach(([k, v]) => {\n        features[getEngineeringPropertyName(k)] = {\n          value: v,\n          type: modifications[k].type,\n          method: modifications[k].method,\n          improvement: ((Math.max(...v) > 0 && modifications[k].higherbetter === true) || (Math.min(...v) < 0 && modifications[k].higherbetter === false))\n        }\n      })\n\n      blueprint.grades[grade].features = features\n    })\n\n    output.push(blueprint)\n  })\n\n  fs.writeFileSync(`${outputDir}/blueprints.json`, JSON.stringify(output, null, 2))\n}\n\nfunction coriolisDataModules () {\n  // https://github.com/EDCD/coriolis-data\n  const dataDir = 'edcd/coriolis/modules'\n  const outputDir = `${ROOT_OUTPUT_DATA_DIR}/edcd/coriolis`\n  fs.mkdirSync(outputDir, { recursive: true })\n\n  glob(`${ROOT_INPUT_DATA_DIR}/${dataDir}/**/*.json`, {}, async (error, files) => {\n    if (error) return console.error(error)\n\n    let modules = []\n    files.forEach(async (name) => {\n      const fileContents = JSON.parse(fs.readFileSync(name))\n      Object.keys(fileContents).forEach(key => {\n        modules = modules.concat(fileContents[key])\n      })\n    })\n\n    modules.forEach(module => {\n      if (module.ukDiscript) {\n        module.description = module.ukDiscript\n        delete module.ukDiscript\n      }\n\n      module.properties = {}\n      Object.keys(module).forEach(moduleProperty => {\n        if (getEngineeringPropertyName(moduleProperty) !== moduleProperty) {\n          module.properties[getEngineeringPropertyName(moduleProperty)] = module[moduleProperty]\n          delete module[moduleProperty]\n        }\n      })\n    })\n\n    fs.writeFileSync(`${outputDir}/modules.json`, JSON.stringify(modules, null, 2))\n  })\n}\n\nfunction materialUses () {\n  const materials = JSON.parse(fs.readFileSync(`${ROOT_OUTPUT_DATA_DIR}/edcd/fdevids/material.json`))\n  const blueprints = JSON.parse(fs.readFileSync(`${ROOT_OUTPUT_DATA_DIR}/edcd/coriolis/blueprints.json`))\n\n  const materialUses = materials.map(material => {\n    const blueprintsMaterialIsUsedIn = []\n\n    blueprints.forEach(blueprint => {\n      const newBlueprint = {\n        symbol: blueprint.symbol,\n        name: blueprint.name,\n        grades: []\n      }\n\n      Object.keys(blueprint.grades).forEach(grade => {\n        if (blueprint.grades[grade].components[material.name]) {\n          newBlueprint.grades.push(grade)\n        }\n      })\n\n      if (newBlueprint.grades.length > 0) blueprintsMaterialIsUsedIn.push(newBlueprint)\n    })\n\n    return ({\n      symbol: material.symbol,\n      name: material.name,\n      blueprints: blueprintsMaterialIsUsedIn\n    })\n  })\n\n  fs.writeFileSync(`${ROOT_OUTPUT_DATA_DIR}/material-uses.json`, JSON.stringify(materialUses, null, 2))\n}\n\n\nasync function codexArticles () {\n  const pathToFile = path.join(RESOURCES_DIR, 'data', 'fandom', 'elite_dangerousfandomcom-20220527-wikidump', 'elite_dangerousfandomcom-20220527-current.xml')\n  const xml = fs.readFileSync(pathToFile).toString()\n  const wikiData = (await xmlParser.parseStringPromise(xml)).mediawiki\n  const codexIndex = {}\n  const codexRedirects = {}\n  const codexPages = wikiData.page.reduce((response, item) => {\n    const page = item\n    const title = page.title[0].trim()\n    const id = `${page.id}-${title.toLowerCase().replace(/[^A-z0-9\\(\\)\\'-]/g, '_').replace(/(__+)/g, '_')}`\n\n    // Ignore Talk and User pages\n    if (title.startsWith('Talk:') || title.startsWith('User:')) return response\n\n    const rawText = page.revision[0].text[0]._\n    const parsedText = wikiTextParser.parse(rawText || '').replace(/\\r/g, '')\n\n    // Ignore blank pages\n    if (!rawText || !parsedText) return response\n\n    if (rawText.toLowerCase().startsWith('- redirect ') || parsedText.toLowerCase().includes('__staticredirect__')) {\n      const redirectTo = parsedText\n        .replace(/- REDIRECT /i, '')\n        .replace(/__STATICREDIRECT__/i, '')\n        .replace(/\\n(.*)?/, '')\n        .replace(/\\r(.*)?/, '')\n        .trim()\n\n      // Ignore broken redirects\n      if (!redirectTo) return response\n\n      // Add to list of redirects\n      codexRedirects[title] = redirectTo\n\n      return response\n    }\n\n    // These regular expressions don't need to be clever or over engineered,\n    // it's not runtime code and it's just an ETL job for a hobby project\n    const rawQuotes = rawText\n      .replace(/\\r\\n/img, '')\n      .match(/{{quote(.*?)}}/img)\n\n    const quote = rawQuotes?.[0]\n      .replace(/^{{(.*?)\\|/, '')\n      .replace(/\\|(.*?)}}$/, '')\n      .replace(/<!--(.*?)-->/, '')\n      .replace(/\\[\\[/, '')\n      .replace(/\\]\\]/, '')\n      .replace(/(<br>+)/img, ' ')\n      .replace(/(<br\\/>+)/img, ' ')\n      .replace(/[ ]{2,}/img, ' ') // Turn two or more spaces into a single space\n      .replace(/Painite,CaZrAl<sub>9<\\/sub>O<sub>15<\\/sub>\\(BO<sub>3<\\/sub>\\)\\./, '') // This is just garbage data in the entry for Panite\n      .trim()\n      ?? null\n\n    // Clean up text / omit certain sections\n    const text = parsedText\n      .replace(/\\n\\n- /img, '\\n- ')\n      .replace(/\\n\\nGallery\\n(.*?)\\n/im, '\\n')\n      .replace(/\\n\\nVideos\\n(.*?)\\n/im, '\\n')\n      .replace(/\\n\\nReferences\\n(.*?)\\n/im, '\\n')\n      .replace(/\\nCategory:(.*?)\\n/img, '\\n')\n      .replace(/\\nCategory:(.*?)$/img, '\\n')\n      .replace(/\\n([a-z]{2}):(.*?)\\n/img, '\\n')\n      .replace(/\\n([a-z]{2}):(.*?)$/img, '\\n')\n      .trim()\n\n    // Experiment at extracting information about promiment systems\n    //if (rawText.includes('| power      = ')) console.log(title.trim(), '-', text.split(\"\\n\")?.[0]?.replace(/[ ]{2,}/img, ' ')?.trim())\n\n    response.push({\n      id,\n      title,\n      timestamp: page.revision[0].timestamp[0],\n      contributor: {\n        id: page.revision[0].contributor[0]?.id?.[0] ?? null,\n        name: page.revision[0].contributor[0]?.username?.[0] ?? null\n      },\n      rawText,\n      text,\n      quote\n    })\n\n    codexIndex[title] = id\n\n    return response\n  }, [])\n\n  // Write files to disk\n  // const codexDir = path.join(ROOT_OUTPUT_DATA_DIR, 'codex')\n  // fs.mkdirSync(codexDir, { recursive: true })\n\n  // codexPages.forEach(codexPage => {\n  //   const filename = path.join(codexDir, `${codexPage.id}.json`)\n  //   fs.writeFileSync(filename, JSON.stringify(codexPage, null, 2))\n  // })\n\n  // fs.writeFileSync(path.join(codexDir, '_index.json'), JSON.stringify({\n  //   index: codexIndex,\n  //   redirects: codexRedirects\n  // }, null, 2))\n\n  // This requires the the fdevids() step to have been run at least once,\n  // which is why this step is configured run after it in this script\n  const pathToCommodities = `${ROOT_OUTPUT_DATA_DIR}/edcd/fdevids/commodity.json`\n  const commodities = JSON.parse(fs.readFileSync(pathToCommodities))\n\n  const pathToRareCommodities = `${ROOT_INPUT_DATA_DIR}/rare-commodities-with-count.json`\n  const rareCommodities = JSON.parse(fs.readFileSync(pathToRareCommodities))\n\n  const commodityDescriptions = {}\n  const allCommodities = {}\n  codexPages.forEach(codexPage => {\n    if (!codexPage?.quote) return\n\n    // These are names that are different in the wiki to how they are listed in the fdevids file\n    // (even after attempting to clean up errors in the file, not 100% sure which name is\n    // canonical for these cases)\n    if (codexPage.title == 'Galactic Travel Guides') codexPage.title = 'Galactic Travel Guide'\n    if (codexPage.title == 'Political Prisoner') codexPage.title = 'Political Prisoners'\n    if (codexPage.title == 'Hostage') codexPage.title = 'Hostages'\n   \n    commodities.map(commodity => {\n      const commoditySymbol = commodity.symbol.toLowerCase()\n      let commodityDescription\n\n      if (commodity.name.replace(/ /img, '').toLowerCase() === codexPage.title.replace(/ /img, '').toLowerCase()) {\n        commodityDescription = codexPage.quote\n      }\n\n      // Add or override description data from the wiki\n      // Use to fix typos or to extend to include missing data\n      if (commoditySymbol == 'cryolite') commodityDescription = 'Used in a range of applications, including insecticides, pesticides, fireworks and as a solvent for aluminium oxide.'\n      if (commoditySymbol == 'crystallinespheres') commodityDescription = 'Transparent spheres crafted from the finest crystal and containing a clear liquid full of snow that swirls when shaken.'\n      if (commoditySymbol == 'gallium') commodityDescription = 'Gallium, Ga, atomic number 31. Melting point 303K. It is a soft silvery metal at human room temperature, but melts in the human hand. It is used as a key component in semiconductors and in lasers.'\n      if (commoditySymbol == 'autofabricators') commodityDescription = 'High speed, low cost fabricators that can build almost any design out of basic resources.'\n\n      if (commodityDescription) {\n        commodity.description = commodityDescription\n        commodityDescriptions[commoditySymbol] = commodityDescription\n      }\n\n      allCommodities[commoditySymbol] = commodity\n    })\n\n    rareCommodities.map(rareCommodity => {\n      if (rareCommodity.name.replace(/ /img, '').toLowerCase() === codexPage.title.replace(/ /img, '').toLowerCase()) {\n        rareCommodity.description = codexPage.quote\n        commodityDescriptions[rareCommodity.symbol.toLowerCase()] = codexPage.quote\n      }\n      rareCommodity.rare = true\n      allCommodities[rareCommodity.symbol.toLowerCase()] = rareCommodity\n    })\n  })\n\n  Object.keys(allCommodities).forEach(name => {\n    const commodity = allCommodities[name]\n    if (!commodity.description || commodity.description == '') console.warn(`Warning: Commodity \"${commodity.symbol}\" has no description`)\n  })\n\n  const allCommoditiesSortedList = {} \n  Object.keys(allCommodities).sort().forEach(k => allCommoditiesSortedList[k] = allCommodities[k])\n\n  fs.writeFileSync(`${ROOT_OUTPUT_DATA_DIR}/commodity-descriptions.json`, JSON.stringify(commodityDescriptions, null, 2))\n  fs.writeFileSync(`${ROOT_OUTPUT_DATA_DIR}/all-commodites.json`, JSON.stringify(allCommoditiesSortedList, null, 2))\n}\n\nfunction getEngineeringPropertyName (engineeringPropertyName) {\n  const engineeringPropertyNames = {\n    fallofffromrange: 'Damage Falloff Start',\n    power: 'Power Draw',\n    range: 'Maximum Range',\n    optmass: 'Optimal Mass',\n    optmul: 'Optimal Multiplier',\n    thermload: 'Thermal Load',\n    thermres: 'Thermal Resistance',\n    explres: 'Explosive Resistance',\n    kinres: 'Kinetic Resistance',\n    hullboost: 'Hull Boost',\n    hullreinforcement: 'Hull Reinforcement',\n    shotspeed: 'Shot Speed',\n    pgen: 'Power Generation',\n    eff: 'Heat Efficiency',\n    reload: 'Reload Time',\n    ammo: 'Ammo Maximum',\n    mass: 'Mass',\n    bust: 'Burst',\n    burstrof: 'Burst Rate Of Fire',\n    boot: 'Boot time',\n    clip: 'Ammo Clip Size',\n    distdraw: 'Distributer Draw',\n    damage: 'Damage',\n    facinglimit: 'Facing Limit',\n    ranget: 'Range',\n    proberadius: 'Probe Radius',\n    scantime: 'Scan Time',\n    angle: 'Scan Angle',\n    falloff: 'Damage Falloff',\n    piercing: 'Armour Piercing',\n    shieldboost: 'Shield Boost',\n    rof: 'Rate of Fire',\n    shieldreinforcement: 'Shield Reinforcement',\n    engcap: 'Engines Capacity',\n    engrate: 'Engines Recharge',\n    syscap: 'Systems Capacity',\n    sysrate: 'Systems Recharge',\n    wepcap: 'Weapons Capacity',\n    weprate: 'Weapons Recharge',\n    spinup: 'Spin Up Time',\n    integrity: 'Integrity',\n    jitter: 'Jitter',\n    burst: 'Burst',\n    duration: 'Duration',\n    brokenregen: 'Broken Regeneration Rate',\n    maxmass: 'Maximum Mass',\n    maxmul: 'Maximum Multipler',\n    maxmulacceleration: 'Maximum Acceleration Multiplier',\n    maxmulrotation: 'Maximum Rotation Multiplier',\n    maxmulspeed: 'Maximum Speed Multiplier',\n    minmass: 'Minimum Mass',\n    minmul: 'Minimum Multiplier',\n    minmulacceleration: 'Minimum Accelleration Multiplier',\n    minmulrotation: 'Minimum Rotation Multiplier',\n    minmulspeed: 'Minimum Speed Multiplier',\n    optmulacceleration: 'Optimal Accelleration Multiplier',\n    optmulrotation: 'Optimal Rotation Multiplier'\n  }\n\n  return engineeringPropertyNames[engineeringPropertyName] || engineeringPropertyName\n}\n"
  },
  {
    "path": "scripts/build-package.js",
    "content": "const fs = require('fs')\nconst { execSync } = require('child_process')\nconst NSIS = require('makensis')\n\nconst {\n  BUILD_DIR,\n  DIST_DIR,\n  INSTALLER_NSI,\n  INSTALLER_EXE,\n  APP_FINAL_BUILD,\n  SERVICE_FINAL_BUILD,\n  PRODUCT_VERSION,\n  PATH_TO_MAKENSIS,\n  PATH_TO_SIGNTOOL,\n  SIGN_BUILD,\n  SIGN_CERT_NAME,\n  SIGN_TIME_SERVER\n} = require('./lib/build-options')\n\n;(async () => {\n  clean()\n  await build()\n})()\n\nfunction clean () {\n  if (!fs.existsSync(BUILD_DIR)) fs.mkdirSync(BUILD_DIR, { recursive: true })\n  if (!fs.existsSync(DIST_DIR)) fs.mkdirSync(DIST_DIR, { recursive: true })\n  if (fs.existsSync(INSTALLER_EXE)) fs.unlinkSync(INSTALLER_EXE)\n}\n\nasync function build () {\n  // Sign binaries before packaging\n  if (SIGN_BUILD) {\n    execSync(`\"${PATH_TO_SIGNTOOL}\" sign /a /n \"${SIGN_CERT_NAME}\" /t ${SIGN_TIME_SERVER} /fd SHA256 /v \"${APP_FINAL_BUILD}\"`)\n    execSync(`\"${PATH_TO_SIGNTOOL}\" sign /a /n \"${SIGN_CERT_NAME}\" /t ${SIGN_TIME_SERVER} /fd SHA256 /v \"${SERVICE_FINAL_BUILD}\"`)\n  }\n\n  const installerOutput = NSIS.compile.sync(INSTALLER_NSI, {\n    pathToMakensis: PATH_TO_MAKENSIS,\n    verbose: 4,\n    define: {\n      SPECIAL_BUILD: false,\n      PRODUCT_VERSION,\n      INSTALLER_EXE\n    }\n  })\n  console.log(installerOutput)\n\n  if (SIGN_BUILD) {\n    execSync(`\"${PATH_TO_SIGNTOOL}\" sign /a /n \"${SIGN_CERT_NAME}\" /t ${SIGN_TIME_SERVER} /fd SHA256 /v \"${INSTALLER_EXE}\"`)\n  }\n\n  // Open directory with installer\n  //execSync('explorer.exe dist')\n}\n"
  },
  {
    "path": "scripts/build-service.js",
    "content": "const fs = require('fs')\nconst path = require('path')\nconst { compile } = require('nexe')\nconst changeExe = require('changeexe')\nconst UPX = require('upx')({ brute: false }) // Brute on service seems to hang\nconst yargs = require('yargs')\nconst commandLineArgs = yargs.argv\n\nconst {\n  DEVELOPMENT_BUILD: DEVELOPMENT_BUILD_DEFAULT,\n  DEBUG_CONSOLE: DEBUG_CONSOLE_DEFAULT,\n  BUILD_DIR,\n  BIN_DIR,\n  SERVICE_UNOPTIMIZED_BUILD,\n  SERVICE_OPTIMIZED_BUILD,\n  SERVICE_FINAL_BUILD,\n  SERVICE_ICON,\n  SERVICE_VERSION_INFO\n} = require('./lib/build-options')\n\nconst DEVELOPMENT_BUILD = commandLineArgs.debug || DEVELOPMENT_BUILD_DEFAULT\nconst DEBUG_CONSOLE = commandLineArgs.debug || DEBUG_CONSOLE_DEFAULT\nconst ENTRY_POINT = path.join(__dirname, '..', 'src', 'service', 'main.js')\nconst COMPRESS_FINAL_BUILD = false\n\n;(async () => {\n  clean()\n  await build()\n})()\n\nfunction clean () {\n  if (!fs.existsSync(BUILD_DIR)) fs.mkdirSync(BUILD_DIR, { recursive: true })\n  if (!fs.existsSync(BIN_DIR)) fs.mkdirSync(BIN_DIR, { recursive: true })\n  if (fs.existsSync(SERVICE_UNOPTIMIZED_BUILD)) fs.unlinkSync(SERVICE_UNOPTIMIZED_BUILD)\n  if (fs.existsSync(SERVICE_OPTIMIZED_BUILD)) fs.unlinkSync(SERVICE_OPTIMIZED_BUILD)\n  if (fs.existsSync(SERVICE_FINAL_BUILD)) fs.unlinkSync(SERVICE_FINAL_BUILD)\n}\n\nasync function build () {\n  await compile({\n    name: 'ICARUS Service',\n    ico: SERVICE_ICON,\n    input: ENTRY_POINT,\n    output: SERVICE_UNOPTIMIZED_BUILD,\n    target: 'windows-x86-14.15.3', // from https://github.com/nexe/nexe/releases/tag/v3.3.3\n    resources: [\n      path.join(BUILD_DIR, 'client'), // Include web client\n      'src/service/data' // Include dynamically loaded JSON files\n    ],\n    debug: DEBUG_CONSOLE,\n    build: false,\n    bundle: true,\n    runtime: {\n      nodeConfigureOpts: ['--fully-static']\n    },\n    // https://github.com/nodejs/node/blob/master/src/res/node.rc\n    rc: SERVICE_VERSION_INFO\n  })\n\n  await changeExe.icon(SERVICE_UNOPTIMIZED_BUILD, SERVICE_ICON)\n  await changeExe.versionInfo(SERVICE_UNOPTIMIZED_BUILD, SERVICE_VERSION_INFO)\n\n  if (DEVELOPMENT_BUILD) {\n    console.log('Development build (skipping compression)')\n    fs.copyFileSync(SERVICE_UNOPTIMIZED_BUILD, SERVICE_FINAL_BUILD)\n  } else {\n    if (COMPRESS_FINAL_BUILD) {\n      console.log('Optimizing service build...')\n      const optimisationStats = await UPX(SERVICE_UNOPTIMIZED_BUILD)\n        .output(SERVICE_OPTIMIZED_BUILD)\n        .start()\n      fs.copyFileSync(SERVICE_OPTIMIZED_BUILD, SERVICE_FINAL_BUILD)\n      console.log('Optimized service build', optimisationStats)\n    } else {\n      console.log('Compression disabled (skipping service build optimization)')\n      fs.copyFileSync(SERVICE_UNOPTIMIZED_BUILD, SERVICE_FINAL_BUILD)\n    }\n  }\n}\n"
  },
  {
    "path": "scripts/build-standalone.js",
    "content": "// The standalone build creates cross platform (Win/Mac/Linux) build of the\n// service with nexe. Unlike the full release, this build does not feature\n// an installer, auto-updating or a native UI and must be configured using\n// command line options.\nconst fs = require('fs')\nconst path = require('path')\nconst { compile } = require('nexe')\n// const UPX = require('upx')({ brute: false }) // Brute on service seems to hang\nconst yargs = require('yargs')\nconst commandLineArgs = yargs.argv\n\nconst {\n  DEBUG_CONSOLE: DEBUG_CONSOLE_DEFAULT,\n  BUILD_DIR,\n  BIN_DIR,\n  DIST_DIR,\n  SERVICE_STANDALONE_BUILD,\n  SERVICE_ICON\n} = require('./lib/build-options')\n\nconst DEBUG_CONSOLE = commandLineArgs.debug || DEBUG_CONSOLE_DEFAULT\nconst ENTRY_POINT = path.join(__dirname, '..', 'src', 'service', 'main.js')\n\n;(async () => {\n  clean()\n  await build()\n})()\n\nfunction clean () {\n  if (!fs.existsSync(BUILD_DIR)) fs.mkdirSync(BUILD_DIR, { recursive: true })\n  if (!fs.existsSync(BIN_DIR)) fs.mkdirSync(BIN_DIR, { recursive: true })\n  if (fs.existsSync(DIST_DIR)) fs.rmdirSync(DIST_DIR, { recursive: true })\n}\n\nasync function build () {\n  await compile({\n    name: 'ICARUS Service',\n    ico: SERVICE_ICON,\n    input: ENTRY_POINT,\n    output: SERVICE_STANDALONE_BUILD + '-linux',\n    resources: [\n      path.join(BUILD_DIR, 'web'), // Include web UI\n      'src/service/data' // Include dynamically loaded JSON files\n    ],\n    debug: DEBUG_CONSOLE,\n    target: 'linux-x64-14.15.3',\n    build: false,\n    bundle: true,\n    runtime: {\n      nodeConfigureOpts: ['--fully-static']\n    }\n  })\n  await compile({\n    name: 'ICARUS Service',\n    ico: SERVICE_ICON,\n    input: ENTRY_POINT,\n    output: SERVICE_STANDALONE_BUILD + '-mac',\n    resources: [\n      path.join(BUILD_DIR, 'web'), // Include web UI\n      'src/service/data' // Include dynamically loaded JSON files\n    ],\n    debug: DEBUG_CONSOLE,\n    target: 'mac-x64-14.15.3',\n    build: false,\n    bundle: true,\n    runtime: {\n      nodeConfigureOpts: ['--fully-static']\n    }\n  })\n  await compile({\n    name: 'ICARUS Service',\n    ico: SERVICE_ICON,\n    input: ENTRY_POINT,\n    output: SERVICE_STANDALONE_BUILD + '-windows',\n    resources: [\n      path.join(BUILD_DIR, 'web'), // Include web UI\n      'src/service/data' // Include dynamically loaded JSON files\n    ],\n    debug: DEBUG_CONSOLE,\n    target: 'windows-x86-14.15.3',\n    build: false,\n    bundle: true,\n    runtime: {\n      nodeConfigureOpts: ['--fully-static']\n    }\n  })\n}\n"
  },
  {
    "path": "scripts/lib/build-options.js",
    "content": "require('dotenv').config()\n\nconst path = require('path')\nconst packageJson = require('../../package.json')\n\nconst PRODUCT_VERSION = `${packageJson.version}.0`\nconst APP_FILE_VERSION = PRODUCT_VERSION\nconst SERVICE_FILE_VERSION = PRODUCT_VERSION\n\nconst PATH_TO_SIGNTOOL = '../code-signing/signtool.exe'\nconst SIGN_BUILD = false // process.env?.SIGN_BUILD === 'true'\nconst SIGN_CERT_NAME = process.env?.SIGN_CERT_NAME ?? 'Open Source Developer, Iain Collins'\nconst SIGN_TIME_SERVER = process.env?.SIGN_TIME_SERVER ?? 'http://time.certum.pl'\n\n// Development builds are faster, larger and can contain debug routines\nconst DEVELOPMENT_BUILD = process.env.DEVELOPMENT || false\nconst DEBUG_CONSOLE = DEVELOPMENT_BUILD\n\nconst ROOT_DIR = path.join(__dirname, '..', '..')\nconst BUILD_DIR = path.join(ROOT_DIR, 'build') // For intermediate build steps\nconst BIN_DIR = path.join(BUILD_DIR, 'bin') // For final binary build\nconst DIST_DIR = path.join(ROOT_DIR, 'dist') // For distributable build\nconst RESOURCES_DIR = path.join(ROOT_DIR, 'resources')\nconst ASSETS_DIR = path.join(RESOURCES_DIR, 'assets')\nconst ICON = path.join(ASSETS_DIR, 'icon.ico')\n\nconst PATH_TO_MAKENSIS = 'C:\\\\Program Files (x86)\\\\NSIS\\\\makensis.exe'\nconst INSTALLER_NSI = path.join(RESOURCES_DIR, 'installer', 'installer.nsi') // Installer config\nconst INSTALLER_EXE = path.join(DIST_DIR, 'ICARUS Setup.exe') // Should match INSTALLER_NAME in .nsi\n\nconst APP_BINARY_NAME = 'ICARUS Terminal.exe'\nconst APP_UNOPTIMIZED_BUILD = path.join(BUILD_DIR, `~UNOPT_${safeBinaryName(APP_BINARY_NAME)}`)\nconst APP_OPTIMIZED_BUILD = path.join(BUILD_DIR, `~OPT_${safeBinaryName(APP_BINARY_NAME)}`)\nconst APP_FINAL_BUILD = path.join(BIN_DIR, APP_BINARY_NAME)\nconst APP_ICON = ICON\n\nconst APP_VERSION_INFO = {\n  CompanyName: 'ICARUS',\n  ProductName: 'ICARUS Terminal',\n  FileDescription: 'ICARUS Terminal',\n  FileVersion: APP_FILE_VERSION,\n  ProductVersion: PRODUCT_VERSION,\n  OriginalFilename: 'ICARUS Terminal.exe',\n  InternalName: 'ICARUS Terminal',\n  LegalCopyright: 'ICARUS'\n}\n\nconst SERVICE_BINARY_NAME = 'ICARUS Service.exe'\nconst SERVICE_UNOPTIMIZED_BUILD = path.join(BUILD_DIR, `~UNOPT_${safeBinaryName(SERVICE_BINARY_NAME)}`)\nconst SERVICE_OPTIMIZED_BUILD = path.join(BUILD_DIR, `~OPT_${safeBinaryName(SERVICE_BINARY_NAME)}`)\nconst SERVICE_FINAL_BUILD = path.join(BIN_DIR, SERVICE_BINARY_NAME)\nconst SERVICE_STANDALONE_BUILD = path.join(DIST_DIR, 'icarus-terminal-service')\nconst SERVICE_ICON = ICON\n\nconst SERVICE_VERSION_INFO = {\n  CompanyName: 'ICARUS',\n  ProductName: 'ICARUS Terminal Service',\n  FileDescription: 'ICARUS Terminal Service',\n  FileVersion: SERVICE_FILE_VERSION,\n  ProductVersion: PRODUCT_VERSION,\n  OriginalFilename: 'ICARUS Service.exe',\n  InternalName: 'ICARUS Service',\n  LegalCopyright: 'ICARUS'\n}\n\n// Some of the third party libraries used in buildings choke on characters\n// like spaces in filenames; to work around this they are replaced during build\nfunction safeBinaryName (binaryName) {\n  return binaryName.replace(/ /g, '_')\n}\n\nmodule.exports = {\n  DEVELOPMENT_BUILD,\n  DEBUG_CONSOLE,\n  BIN_DIR,\n  BUILD_DIR,\n  DIST_DIR,\n  RESOURCES_DIR,\n  ASSETS_DIR,\n  ICON,\n  APP_UNOPTIMIZED_BUILD,\n  APP_OPTIMIZED_BUILD,\n  APP_FINAL_BUILD,\n  APP_ICON,\n  SERVICE_UNOPTIMIZED_BUILD,\n  SERVICE_OPTIMIZED_BUILD,\n  SERVICE_FINAL_BUILD,\n  SERVICE_STANDALONE_BUILD,\n  SERVICE_ICON,\n  APP_VERSION_INFO,\n  SERVICE_VERSION_INFO,\n  INSTALLER_NSI,\n  INSTALLER_EXE,\n  PRODUCT_VERSION,\n  PATH_TO_MAKENSIS,\n  PATH_TO_SIGNTOOL,\n  SIGN_BUILD,\n  SIGN_CERT_NAME,\n  SIGN_TIME_SERVER\n}\n"
  },
  {
    "path": "src/app/consts.go",
    "content": "package main\n\nconst ICON = \"icon.ico\"\nconst LAUNCHER_WINDOW_TITLE = \"ICARUS Terminal Launcher\"\nconst TERMINAL_WINDOW_TITLE = \"ICARUS Terminal\"\nconst LPSZ_CLASS_NAME = \"IcarusTerminalWindowClass\"\nconst SERVICE_EXECUTABLE = \"ICARUS Service.exe\"\nconst TERMINAL_EXECUTABLE = \"ICARUS Terminal.exe\"\nconst RELEASE_NOTES_URL = \"https://github.com/iaincollins/icarus/releases\"\nconst DEBUGGER = true\n\nconst defaultLauncherWindowWidth = int32(900)\nconst defaultLauncherWindowHeight = int32(500)\nconst defaultWindowWidth = int32(1280)\nconst defaultWindowHeight = int32(860)"
  },
  {
    "path": "src/app/execute.go",
    "content": "package main\n\nimport (\n\t\"path/filepath\"\n\t\"syscall\"\n\t\"golang.org/x/sys/windows\"\n\t\"os\"\n\t\"os/exec\"\n)\n\nfunc runUnelevated(pathToExecutable string) {\n\t// Use Explorer to launch the process as the current user\n\twindowsDirectory, err := windows.GetSystemWindowsDirectory()\n\tif err != nil {\n\t\treturn\n\t}\n\tpathToExplorer := filepath.Join(windowsDirectory, \"explorer.exe\")\n\tcmdInstance := exec.Command(pathToExplorer, pathToExecutable)\n\tcmdInstance.SysProcAttr = &syscall.SysProcAttr{CreationFlags: 0x08000000, HideWindow: true}\n\tcmdInstance.Start()\n}\n\nfunc runElevated(pathToExecutable string) {\n\tcwd, _ := os.Getwd()\n\tverbPtr, _ := syscall.UTF16PtrFromString(\"runas\")\n\texePtr, _ := syscall.UTF16PtrFromString(pathToExecutable)\n\tcwdPtr, _ := syscall.UTF16PtrFromString(cwd)\n\targPtr, _ := syscall.UTF16PtrFromString(\"\")\n\twindows.ShellExecute(0, verbPtr, exePtr, argPtr, cwdPtr, int32(1))\n}\n\n// TODO Refactor to run commands this way (with optional, unlimited args)\n// function runCommand(pathToExecutable string, args ...string) {\n// \tdirname = filepath.Dir(pathToExecutable)\n// \tcmdInstance := exec.Command(pathToExecutable, args)\n// \tcmdInstance.Dir = dirname\n// \tcmdInstance.SysProcAttr = &syscall.SysProcAttr{CreationFlags: 0x08000000, HideWindow: true}\n// \tcmdInstanceErr := cmdInstance.Start()\n// }\n"
  },
  {
    "path": "src/app/go.mod",
    "content": "module icarus-terminal\n\ngo 1.17\n\nrequire github.com/webview/webview v0.0.0-20210330151455-f540d88dde4e\n\nrequire (\n\tgithub.com/TheTitanrain/w32 v0.0.0-20180517000239-4f5cfb03fabf // indirect\n\tgithub.com/gonutz/w32/v2 v2.2.2 // indirect\n\tgithub.com/jchv/go-webview2 v0.0.0-20211023023319-977d8719321f // indirect\n\tgithub.com/jchv/go-winloader v0.0.0-20200815041850-dec1ee9a7fd5 // indirect\n\tgithub.com/jmoiron/jsonq v0.0.0-20150511023944-e874b168d07e // indirect\n\tgithub.com/nvsoft/win v0.0.0-20160111051136-23d143e32c41 // indirect\n\tgithub.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2 // indirect\n\tgithub.com/rodolfoag/gow32 v0.0.0-20160917004320-d95ff468acf8 // indirect\n\tgithub.com/sqweek/dialog v0.0.0-20211002065838-9a201b55ab91 // indirect\n\tgolang.org/x/sys v0.0.0-20200814200057-3d37ad5750ed // indirect\n)\n"
  },
  {
    "path": "src/app/go.sum",
    "content": "github.com/TheTitanrain/w32 v0.0.0-20180517000239-4f5cfb03fabf h1:FPsprx82rdrX2jiKyS17BH6IrTmUBYqZa/CXT4uvb+I=\ngithub.com/TheTitanrain/w32 v0.0.0-20180517000239-4f5cfb03fabf/go.mod h1:peYoMncQljjNS6tZwI9WVyQB3qZS6u79/N3mBOcnd3I=\ngithub.com/gonutz/w32/v2 v2.2.2 h1:y6Y337TpuCXjYdFTq5p5NmcujEdAQiTB43kisovMk+0=\ngithub.com/gonutz/w32/v2 v2.2.2/go.mod h1:MgtHx0AScDVNKyB+kjyPder4xIi3XAcHS6LDDU2DmdE=\ngithub.com/jchv/go-webview2 v0.0.0-20211023023319-977d8719321f h1:wF7bbDOcRcRlamAwWMNagyFVQubISAlisj6Ix8O8Hn0=\ngithub.com/jchv/go-webview2 v0.0.0-20211023023319-977d8719321f/go.mod h1:7Q5nFip7HvzGJDYVfa22s/pb9T2X+XhEjLhylNf5dV8=\ngithub.com/jchv/go-winloader v0.0.0-20200815041850-dec1ee9a7fd5 h1:pdFFlHXY9tZXmJz+tRSm1DzYEH4ebha7cffmm607bMU=\ngithub.com/jchv/go-winloader v0.0.0-20200815041850-dec1ee9a7fd5/go.mod h1:alcuEEnZsY1WQsagKhZDsoPCRoOijYqhZvPwLG0kzVs=\ngithub.com/jmoiron/jsonq v0.0.0-20150511023944-e874b168d07e h1:ZZCvgaRDZg1gC9/1xrsgaJzQUCQgniKtw0xjWywWAOE=\ngithub.com/jmoiron/jsonq v0.0.0-20150511023944-e874b168d07e/go.mod h1:+rHyWac2R9oAZwFe1wGY2HBzFJJy++RHBg1cU23NkD8=\ngithub.com/nvsoft/win v0.0.0-20160111051136-23d143e32c41 h1:s0qXnW0MxcRPYZpqbrITRo3tAbAdlQBPUCKf/akNMKg=\ngithub.com/nvsoft/win v0.0.0-20160111051136-23d143e32c41/go.mod h1:bI2vvx1dagFt7tydvy947C0q6ET6k5MfIvWmmpLelpw=\ngithub.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2 h1:JhzVVoYvbOACxoUmOs6V/G4D5nPVUW73rKvXxP4XUJc=\ngithub.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2/go.mod h1:iIss55rKnNBTvrwdmkUpLnDpZoAHvWaiq5+iMmen4AE=\ngithub.com/rodolfoag/gow32 v0.0.0-20160917004320-d95ff468acf8 h1:p7tJTb+Rqvp8dS82oMnL1M1Yt9ersQyJU7E1C8Bl+7Q=\ngithub.com/rodolfoag/gow32 v0.0.0-20160917004320-d95ff468acf8/go.mod h1:w/ebPUfAcyZMYjstwPIWTEGSahChHx5R3Y+xElrvxDc=\ngithub.com/sqweek/dialog v0.0.0-20211002065838-9a201b55ab91 h1:Ap4SC7+bIAFzh81vREQSElqYUtuxPgknVl1ol5rOf9w=\ngithub.com/sqweek/dialog v0.0.0-20211002065838-9a201b55ab91/go.mod h1:/qNPSY91qTz/8TgHEMioAUc6q7+3SOybeKczHMXFcXw=\ngithub.com/webview/webview v0.0.0-20210330151455-f540d88dde4e h1:z780M7mCrdt6KiICeW9SGirvQjxDlrVU+n99FO93nbI=\ngithub.com/webview/webview v0.0.0-20210330151455-f540d88dde4e/go.mod h1:rpXAuuHgyEJb6kXcXldlkOjU6y4x+YcASKKXJNUhh0Y=\ngolang.org/x/sys v0.0.0-20200810151505-1b9f1253b3ed/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200814200057-3d37ad5750ed h1:J22ig1FUekjjkmZUM7pTKixYm8DvrYsvrBZdunYeIuQ=\ngolang.org/x/sys v0.0.0-20200814200057-3d37ad5750ed/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\n"
  },
  {
    "path": "src/app/loader.go",
    "content": "package main\n\nimport (\n\t\"encoding/base64\"\n)\n\n// We use a baked in loading animation to reduce visual flash and improve\n// perceived performance while the service loads and assets are loaded.\n// Inlined data URIs like this load instantly as there are no external assets\n// to load and it's very lightweight. This looks best when there is a smooth\n// transition between this animation and loading animation in the web app.\nfunc LoadUrl(url string) string {\n\thtml := `\n<html>\n  <head>\n    <meta name=\"viewport\" content=\"width=device-width, user-scalable=no\">\n    <style>\n      :root {\n        --color-default-primary-r: 250;\n        --color-default-primary-g: 135;\n        --color-default-primary-b: 0;\n        --color-default-primary-dark-modifier: 200;\n\n        --color-primary-r: var(--color-default-primary-r);\n        --color-primary-g: var(--color-default-primary-g);\n        --color-primary-b: var(--color-default-primary-b);\n        --color-primary-dark-modifier: var(--color-default-primary-dark-modifier);\n\n        --color-primary-dark-r: calc(var(--color-primary-r) - var(--color-primary-dark-modifier));\n        --color-primary-dark-g: calc(var(--color-primary-g) - var(--color-primary-dark-modifier));\n        --color-primary-dark-b: calc(var(--color-primary-b) - var(--color-primary-dark-modifier));\n\n        --color-primary: rgb(var(--color-primary-r), var(--color-primary-g), var(--color-primary-b));\n        --color-primary-dark: rgb(var(--color-primary-dark-r), var(--color-primary-dark-g), var(--color-primary-dark-b));\n      }\n\n      html {\n        zoom: 100%;\n      }\n\n      html::after {\n        content: \" \";\n        display: block;\n        position: fixed;\n        top: 0;\n        left: 0;\n        bottom: 0;\n        right: 0;\n        background: linear-gradient(rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.1) 50%), linear-gradient(90deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.05));\n        z-index: -1;\n        background-size: 100% 10px;\n        pointer-events: none;\n      }\n\n      body {\n        background: black;\n        color: white;\n        font-size: 1.5rem;\n        padding: .5rem;\n        margin: 0;\n        text-align: center;\n        zoom: 0.8;\n      }\n\n      @media only screen and (max-width: 799px) {\n        body {\n          zoom: 0.7;\n        }\n      }\n\n      @media only screen and (max-width: 599px) {\n        body {\n          zoom: 0.6;\n        }\n      }\n\n      body::after {\n        content: \" \";\n        display: block;\n        position: fixed;\n        top: 0;\n        left: 0;\n        bottom: 0;\n        right: 0;\n        z-index: 10000;\n        background: rgba(0,0,255,.06);\n        pointer-events: none;\n      }\n\n      html,\n      body {\n        -ms-content-zooming: none;\n      }\n\n      .not-selectable {\n        -webkit-touch-callout: none;\n        -webkit-user-select: none;\n        -khtml-user-select: none;\n        -moz-user-select: none;\n        -ms-user-select: none;\n        user-select: none;\n      }\n\n      #background {\n        position: absolute !important;\n        top: 0;\n        left: 0;\n        width: 100%;\n        height: 100%;\n        content: \" \";\n        background: radial-gradient(circle, var(--color-primary-dark) 0%, rgba(0, 0, 0, 1) 100%);\n        z-index: -1;\n        opacity: 0.8;\n      }\n\n      #loader {\n        position: absolute;\n        top: 50%;\n        left: 0;\n        width: 100%;\n        display: flex;\n        flex-direction: column;\n        align-items: center;\n        opacity: .75;\n        zoom: 1.5;\n        transition: .25s ease-in-out;\n        z-index: 100;\n        pointer-events: none;\n        margin-top: -2.5rem;\n        text-align: center;\n      }\n\n      .loader__row {\n        display: flex;\n      }\n\n      .loader__arrow {\n        width: 0;\n        height: 0;\n        margin: 0 -6px;\n        border-left: 12px solid transparent;\n        border-right: 12px solid transparent;\n        border-bottom: 21.6px solid var(--color-primary);\n        animation: loader__arrow-blink 1s infinite;\n        filter: drop-shadow(0 0 18px var(--color-primary));\n      }\n\n      .loader__arrow--down {\n        transform: rotate(180deg);\n      }\n\n      .loader__arrow--outer-1 {\n        animation-delay: -0.0555555556s;\n      }\n\n      .loader__arrow--outer-2 {\n        animation-delay: -0.1111111111s;\n      }\n\n      .loader__arrow--outer-3 {\n        animation-delay: -0.1666666667s;\n      }\n\n      .loader__arrow--outer-4 {\n        animation-delay: -0.2222222222s;\n      }\n\n      .loader__arrow--outer-5 {\n        animation-delay: -0.2777777778s;\n      }\n\n      .loader__arrow--outer-6 {\n        animation-delay: -0.3333333333s;\n      }\n\n      .loader__arrow--outer-7 {\n        animation-delay: -0.3888888889s;\n      }\n\n      .loader__arrow--outer-8 {\n        animation-delay: -0.4444444444s;\n      }\n\n      .loader__arrow--outer-9 {\n        animation-delay: -0.5s;\n      }\n\n      .loader__arrow--outer-10 {\n        animation-delay: -0.5555555556s;\n      }\n\n      .loader__arrow--outer-11 {\n        animation-delay: -0.6111111111s;\n      }\n\n      .loader__arrow--outer-12 {\n        animation-delay: -0.6666666667s;\n      }\n\n      .loader__arrow--outer-13 {\n        animation-delay: -0.7222222222s;\n      }\n\n      .loader__arrow--outer-14 {\n        animation-delay: -0.7777777778s;\n      }\n\n      .loader__arrow--outer-15 {\n        animation-delay: -0.8333333333s;\n      }\n\n      .loader__arrow--outer-16 {\n        animation-delay: -0.8888888889s;\n      }\n\n      .loader__arrow--outer-17 {\n        animation-delay: -0.9444444444s;\n      }\n\n      .loader__arrow--outer-18 {\n        animation-delay: -1s;\n      }\n\n      .loader__arrow--inner-1 {\n        animation-delay: -0.1666666667s;\n      }\n\n      .loader__arrow--inner-2 {\n        animation-delay: -0.3333333333s;\n      }\n\n      .loader__arrow--inner-3 {\n        animation-delay: -0.5s;\n      }\n\n      .loader__arrow--inner-4 {\n        animation-delay: -0.6666666667s;\n      }\n\n      .loader__arrow--inner-5 {\n        animation-delay: -0.8333333333s;\n      }\n\n      .loader__arrow--inner-6 {\n        animation-delay: -1s;\n      }\n\n      @keyframes loader__arrow-blink {\n        0% {\n          opacity: 0.1;\n        }\n\n        30% {\n          opacity: 1;\n        }\n\n        100% {\n          opacity: 0.1;\n        }\n      }\n    </style>\n  </head>\n  <body oncontextmenu=\"return false;\" class=\"not-selectable\">\n\t\t<div id=\"background\"></div>\n    <div id=\"loader\">\n      <div class=\"loader__row\">\n        <div class=\"loader__arrow loader__arrow--outer-18\"></div>\n        <div class=\"loader__arrow loader__arrow--down lloader__arrow--outer-17\"></div>\n        <div class=\"loader__arrow loader__arrow--outer-16\"></div>\n        <div class=\"loader__arrow loader__arrow--down loader__arrow--outer-15\"></div>\n        <div class=\"loader__arrow loader__arrow--outer-14\"></div>\n      </div>\n      <div class=\"loader__row\">\n        <div class=\"loader__arrow loader__arrow--outer-1\"></div>\n        <div class=\"loader__arrow loader__arrow--down loader__arrow--outer-2\"></div>\n        <div class=\"loader__arrow loader__arrow--inner-6\"></div>\n        <div class=\"loader__arrow loader__arrow--down loader__arrow--inner-5\"></div>\n        <div class=\"loader__arrow loader__arrow--inner-4\"></div>\n        <div class=\"loader__arrow loader__arrow--down loader__arrow--outer-13\"></div>\n        <div class=\"loader__arrow loader__arrow--outer-12\"></div>\n      </div>\n      <div class=\"loader__row\">\n        <div class=\"loader__arrow loader__arrow--down loader__arrow--outer-3\"></div>\n        <div class=\"loader__arrow loader__arrow--outer-4\"></div>\n        <div class=\"loader__arrow loader__arrow--down loader__arrow--inner-1\"></div>\n        <div class=\"loader__arrow loader__arrow--inner-2\"></div>\n        <div class=\"loader__arrow loader__arrow--down loader__arrow--inner-3\"></div>\n        <div class=\"loader__arrow loader__arrow--outer-11\"></div>\n        <div class=\"loader__arrow loader__arrow--down loader__arrow--outer-10\"></div>\n      </div>\n      <div class=\"loader__row\">\n        <div class=\"loader__arrow loader__arrow--down loader__arrow--outer-5\"></div>\n        <div class=\"loader__arrow loader__arrow--outer-6\"></div>\n        <div class=\"loader__arrow loader__arrow--down loader__arrow--outer-7\"></div>\n        <div class=\"loader__arrow loader__arrow--outer-8\"></div>\n        <div class=\"loader__arrow loader__arrow--down loader__arrow--outer-9\"></div>\n      </div>\n    </div>\n  </body>\n\t<script>setTimeout(() => window.location.href = \"` + url + `\", 0)</script>\n</html>\n`\n\treturn `data:text/html;base64,` + base64.StdEncoding.EncodeToString([]byte(html))\n}\n"
  },
  {
    "path": "src/app/main.go",
    "content": "package main\n\nimport (\n\t\"encoding/json\"\n\t\"flag\"\n\t\"fmt\"\n\t\"github.com/nvsoft/win\"\n\t\"github.com/phayes/freeport\"\n\t\"github.com/rodolfoag/gow32\"\n\t\"github.com/sqweek/dialog\"\n\t\"github.com/webview/webview\"\n\t\"golang.org/x/sys/windows\"\n\t\"os\"\n\t\"os/exec\"\n\t\"path/filepath\"\n\t\"syscall\"\n\t\"time\"\n\t\"unsafe\"\n)\n\nvar dirname = \"\"\nvar defaultPort = 3300 // Set to 0 to be assigned a free high numbered port\nvar port int           // Actual port we are running on\nvar webViewInstance webview.WebView\n\n// Track main window size when switching to/from fullscreen\nvar windowWidth = defaultWindowWidth\nvar windowHeight = defaultWindowHeight\nvar url = fmt.Sprintf(\"http://localhost:%d\", defaultPort)\n\ntype process struct {\n\tPid    int\n\tHandle uintptr\n}\n\nvar processGroup ProcessGroup\n\nfunc main() {\n\tstartTime := time.Now()\n\n\t_processGroup, err := NewProcessGroup()\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\tdefer _processGroup.Dispose()\n\tprocessGroup = _processGroup\n\n\t// Set default port to be random high port\n\tif defaultPort == 0 {\n\t\trandomPort, portErr := freeport.GetFreePort()\n\t\tif portErr != nil {\n\t\t\tfmt.Println(\"Error getting port\", portErr.Error())\n\t\t} else {\n\t\t\tdefaultPort = randomPort\n\t\t}\n\t}\n\n\t// Parse arguments\n\twidthPtr := flag.Int(\"width\", int(windowWidth), \"Window width\")\n\theightPtr := flag.Int(\"height\", int(windowHeight), \"Window height\")\n\tportPtr := flag.Int(\"port\", defaultPort, \"Port service should run on\")\n\tterminalMode := flag.Bool(\"terminal\", false, \"Run in terminal only mode\")\n\tinstallMode := flag.Bool(\"install\", false, \"First run after install\")\n\tflag.Parse()\n\n\twindowWidth = int32(*widthPtr)\n\twindowHeight = int32(*heightPtr)\n\tport = int(*portPtr)\n\turl = fmt.Sprintf(\"http://localhost:%d\", *portPtr)\n\tlauncherUrl := fmt.Sprintf(\"http://localhost:%d/launcher\", *portPtr)\n\n\tpathToExecutable, err := os.Executable()\n\tif err != nil {\n\t\tdialog.Message(\"%s\", \"Failed to start ICARUS Terminal Service\\n\\nUnable to determine current directory.\").Title(\"Error\").Error()\n\t\texitApplication(1)\n\t}\n\tdirname = filepath.Dir(pathToExecutable)\n\n\t// Check if is first run after installing, in which case we restart without\n\t// elevated privilages to ensure we are not running as the installer, as that\n\t// causes problems for things like interacting with windows via SteamVR.\n\tif *installMode {\n\t\trunUnelevated(pathToExecutable)\n\t\treturn\n\t}\n\n\t// Check if we are starting in Terminal mode\n\tif *terminalMode {\n\t\tcreateWindow(TERMINAL_WINDOW_TITLE, url, defaultWindowWidth, defaultWindowHeight, webview.HintNone)\n\t\treturn\n\t}\n\n\t// If we get this far, we start in Launcher mode\n\n\t// Check not already running\n\tif checkProcessAlreadyExists(LAUNCHER_WINDOW_TITLE) {\n\t\tdialog.Message(\"%s\", \"ICARUS Terminal is already running.\\n\\nYou can only run one instance at a time.\").Title(\"Information\").Info()\n\t\texitApplication(1)\n\t}\n\n\t// Check for an update before running main launcher code\n\t// updateAvailable, _ := CheckForUpdate()\n\t// if updateAvailable {\n\t// \tok := dialog.Message(\"%s\", \"A new version of ICARUS Terminal is available.\\n\\nDo you want to install the update?\").Title(\"New version available\").YesNo()\n\t// \tif ok {\n\t// \t\tInstallUpdate()\n\t// \t\treturn\n\t// \t}\n\t// }\n\n\t// Use Windows API to get Save Game dir\n\tsaveGameDirPath, err := windows.KnownFolderPath(windows.FOLDERID_SavedGames, 0)\n\n\t// Run service\n\tcmdArg0 := fmt.Sprintf(\"%s%d\", \"--port=\", *portPtr)\n\tcmdArg1 := fmt.Sprintf(\"%s%s\", \"--save-game-dir=\", saveGameDirPath)\n\tserviceCmdInstance := exec.Command(filepath.Join(dirname, SERVICE_EXECUTABLE), cmdArg0, cmdArg1)\n\tserviceCmdInstance.Dir = dirname\n\tserviceCmdInstance.SysProcAttr = &syscall.SysProcAttr{CreationFlags: 0x08000000, HideWindow: true}\n\tserviceCmdErr := serviceCmdInstance.Start()\n\n\t// Exit if service fails to start\n\tif serviceCmdErr != nil {\n\t\tfmt.Println(\"Error starting service\", serviceCmdErr.Error())\n\t\tdialog.Message(\"%s%s\", \"Failed to start ICARUS Terminal Service.\\n\\n\", serviceCmdErr.Error()).Title(\"Error\").Error()\n\t\texitApplication(1)\n\t}\n\n\t// Add service to process group so gets shutdown when main process ends\n\tprocessGroup.AddProcess(serviceCmdInstance.Process)\n\n\t// Exit if service stops running\n\tgo func() {\n\t\tserviceCmdInstance.Wait()\n\t\tcurrentTime := time.Now()\n\t\tdiff := currentTime.Sub(startTime)\n\n\t\t// If Window is visible, hide it to avoid showing a Window in a broken state\n\t\tif webViewInstance != nil {\n\t\t\thwndPtr := webViewInstance.Window()\n\t\t\thwnd := win.HWND(hwndPtr)\n\t\t\twin.ShowWindow(hwnd, win.SW_HIDE)\n\t\t}\n\n\t\tif diff.Seconds() < 10 {\n\t\t\t// Show alternate dialog message if fails within X seconds of startup\n\t\t\tdialog.Message(\"%s\", \"ICARUS Terminal Service failed to start.\\n\\nAntiVirus or Firewall software may have prevented it from starting or it may be conflicting with another application.\").Title(\"Error\").Error()\n\t\t} else {\n\t\t\tfmt.Println(\"Service stopped unexpectedly.\")\n\t\t\tdialog.Message(\"%s\", \"ICARUS Terminal Service stopped unexpectedly.\").Title(\"Error\").Error()\n\t\t}\n\t\texitApplication(1)\n\t}()\n\n\t// TODO Only open a window once service is ready\n\ttime.Sleep(0 * time.Second)\n\n\t// Open main window (block rest of main until closed)\n\tcreateNativeWindow(LAUNCHER_WINDOW_TITLE, launcherUrl, defaultLauncherWindowWidth, defaultLauncherWindowHeight)\n\n\t// Ensure we terminate all processes cleanly when window closes\n\texitApplication(0)\n}\n\n// createWindow() lets the webview library create a managed window for us\nfunc createWindow(LAUNCHER_WINDOW_TITLE string, url string, width int32, height int32, hint webview.Hint) {\n\t// Passes the pointer to the window as an unsafe reference\n\tw := webview.New(DEBUGGER)\n\tdefer w.Destroy()\n\n\thwndPtr := w.Window()\n\thwnd := win.HWND(hwndPtr)\n\n\t// Center window and force it to redraw\n\tscreenWidth := int32(win.GetSystemMetrics(win.SM_CXSCREEN))\n\tscreenHeight := int32(win.GetSystemMetrics(win.SM_CYSCREEN))\n\twindowX := int32((screenWidth / 2) - (width / 2))\n\twindowY := int32((screenHeight / 2) - (height / 2))\n\twin.MoveWindow(hwnd, windowX, windowY, width, height, false)\n\n\t// Set window icon\n\thIconSm := win.HICON(win.LoadImage(0, syscall.StringToUTF16Ptr(ICON), win.IMAGE_ICON, 32, 32, win.LR_LOADFROMFILE|win.LR_SHARED|win.LR_LOADTRANSPARENT))\n\thIcon := win.HICON(win.LoadImage(0, syscall.StringToUTF16Ptr(ICON), win.IMAGE_ICON, 64, 64, win.LR_LOADFROMFILE|win.LR_SHARED|win.LR_LOADTRANSPARENT))\n\twin.SendMessage(hwnd, win.WM_SETICON, 0, uintptr(hIconSm))\n\twin.SendMessage(hwnd, win.WM_SETICON, 1, uintptr(hIcon))\n\n\tbindFunctionsToWebView(w)\n\n\tw.SetTitle(LAUNCHER_WINDOW_TITLE)\n\tw.SetSize(int(width), int(height), hint)\n\tw.Navigate(LoadUrl(url))\n\tw.Run()\n}\n\n// createNativeWindow() explicitly creates a native window and passes the handle\n// for it to the webview, this allows for greater customisation\nfunc createNativeWindow(LAUNCHER_WINDOW_TITLE string, url string, width int32, height int32) {\n\t// Instance of this executable\n\thInstance := win.GetModuleHandle(nil)\n\tif hInstance == 0 {\n\t\tfmt.Println(\"GetModuleHandle failed:\", win.GetLastError())\n\t}\n\n\t// Register window class\n\tatom := RegisterClass(hInstance)\n\tif atom == 0 {\n\t\tfmt.Println(\"RegisterClass failed:\", win.GetLastError())\n\t}\n\n\t// Create our own window\n\t// We do this manually and pass it to webview so that we can set the window\n\t// location (i.e. centered), style, etc before it is displayed.\n\thwndPtr := CreateWin32Window(hInstance, LAUNCHER_WINDOW_TITLE, width, height)\n\tif hwndPtr == 0 {\n\t\tfmt.Println(\"CreateWin32Window failed:\", win.GetLastError())\n\t}\n\n\t// Center window\n\thwnd := win.HWND(hwndPtr)\n\tscreenWidth := int32(win.GetSystemMetrics(win.SM_CXSCREEN))\n\tscreenHeight := int32(win.GetSystemMetrics(win.SM_CYSCREEN))\n\twindowX := int32((screenWidth / 2) - (width / 2))\n\twindowY := int32((screenHeight / 2) - (height / 2))\n\twin.MoveWindow(hwnd, windowX, windowY, width, height, false)\n\n\t// Pass the pointer to the window as an unsafe reference\n\twebViewInstance = webview.NewWindow(DEBUGGER, unsafe.Pointer(&hwndPtr))\n\tdefer webViewInstance.Destroy()\n\tbindFunctionsToWebView(webViewInstance)\n\twebViewInstance.Navigate(LoadUrl(url))\n\twebViewInstance.Run()\n}\n\nfunc bindFunctionsToWebView(w webview.WebView) {\n\thwndPtr := w.Window()\n\thwnd := win.HWND(hwndPtr)\n\n\tvar isFullScreen = false\n\tvar isPinned = false\n\tdefaultWindowStyle := win.GetWindowLong(hwnd, win.GWL_STYLE)\n\n\tw.Bind(\"icarusTerminal_version\", func() string {\n\t\treturn GetCurrentAppVersion()\n\t})\n\n\tw.Bind(\"icarusTerminal_checkForUpdate\", func() string {\n\t\tlatestRelease, latestReleaseErr := GetLatestRelease()\n\t\tif latestReleaseErr != nil {\n\t\t\treturn \"\"\n\t\t}\n\n\t\tresponse, jsonErr := json.Marshal(latestRelease)\n\t\tif jsonErr != nil {\n\t\t\treturn \"\"\n\t\t}\n\n\t\treturn string(response)\n\t})\n\n\tw.Bind(\"icarusTerminal_installUpdate\", func() {\n\t\tInstallUpdate()\n\t})\n\n\tw.Bind(\"icarusTerminal_isFullScreen\", func() bool {\n\t\treturn isFullScreen\n\t})\n\n\tw.Bind(\"icarusTerminal_isPinned\", func() bool {\n\t\treturn isPinned\n\t})\n\n\tw.Bind(\"icarusTerminal_togglePinWindow\", func() bool {\n\t\tif isFullScreen {\n\t\t\t// Do nothing if in fullscreen mode (option in UI should be disabled)\n\t\t\treturn false\n\t\t}\n\n\t\tvar rc win.RECT\n\t\twin.GetWindowRect(hwnd, &rc)\n\n\t\tif isPinned {\n\t\t\twin.SetWindowLong(hwnd, win.GWL_STYLE, defaultWindowStyle)\n\t\t\twin.GetWindowRect(hwnd, &rc)\n\t\t\tcurrentWindowWidth := rc.Right - rc.Left\n\t\t\tcurrentWindowHeight := rc.Bottom - rc.Top\n\t\t\twin.SetWindowPos(hwnd, win.HWND_NOTOPMOST, rc.Left, rc.Top, currentWindowWidth, currentWindowHeight, win.SWP_FRAMECHANGED)\n\t\t\tisPinned = false\n\t\t} else {\n\t\t\tnewWindowStyle := defaultWindowStyle &^ (win.WS_BORDER | win.WS_CAPTION | win.WS_THICKFRAME | win.WS_MINIMIZEBOX | win.WS_MAXIMIZEBOX | win.WS_SYSMENU)\n\t\t\twin.SetWindowLong(hwnd, win.GWL_STYLE, newWindowStyle)\n\t\t\twin.GetWindowRect(hwnd, &rc)\n\t\t\tcurrentWindowWidth := rc.Right - rc.Left\n\t\t\tcurrentWindowHeight := rc.Bottom - rc.Top\n\t\t\twin.SetWindowPos(hwnd, win.HWND_TOPMOST, rc.Left, rc.Top, currentWindowWidth, currentWindowHeight, win.SWP_FRAMECHANGED)\n\t\t\tisPinned = true\n\t\t}\n\n\t\treturn isPinned\n\t})\n\n\tw.Bind(\"icarusTerminal_toggleFullScreen\", func() bool {\n\t\t// FIXME Always go fullscreen on main monitor.\n\t\t// If the window is on a second monitor, it should go fullscreen on that\n\t\t// display instead. See the following URL for example of how to handle\n\t\t// https://docs.microsoft.com/en-us/windows/win32/gdi/positioning-objects-on-a-multiple-display-setup\n\t\tscreenWidth := int32(win.GetSystemMetrics(win.SM_CXSCREEN))\n\t\tscreenHeight := int32(win.GetSystemMetrics(win.SM_CYSCREEN))\n\t\twindowX := int32((screenWidth / 2) - (windowWidth / 2))\n\t\twindowY := int32((screenHeight / 2) - (windowHeight / 2))\n\n\t\tif isFullScreen {\n\t\t\t// Restore default window style and position\n\t\t\t// TODO Should restore to window size and location before window was set\n\t\t\t// to full screen (currently just resets to what it thinks is best)\n\t\t\twin.SetWindowLong(hwnd, win.GWL_STYLE, defaultWindowStyle)\n\t\t\twin.MoveWindow(hwnd, windowX, windowY, windowWidth, windowHeight, true)\n\t\t\tisFullScreen = false\n\t\t} else {\n\t\t\t// Set to fullscreen and remove window border\n\t\t\tnewWindowStyle := defaultWindowStyle &^ (win.WS_CAPTION | win.WS_THICKFRAME | win.WS_MINIMIZEBOX | win.WS_MAXIMIZEBOX | win.WS_SYSMENU)\n\t\t\twin.SetWindowLong(hwnd, win.GWL_STYLE, newWindowStyle)\n\n\t\t\twin.SetWindowPos(hwnd, 0, 0, 0, screenWidth, screenHeight, win.SWP_FRAMECHANGED)\n\n\t\t\t// TODO Implement full screen mode that respects multi monitor setups\n\t\t\t// const MONITOR_CENTER = 0x0001 // center rect to monitor\n\t\t\t// const MONITOR_CLIP = 0x0000 // clip rect to monitor\n\t\t\t// const MONITOR_WORKAREA = 0x0002 // use monitor work area\n\t\t\t// const MONITOR_AREA = 0x0000 // use monitor entire area\n\t\t\t// var rc win.RECT;\n\t\t\t// win.GetWindowRect(hwnd, &rc);\n\t\t\t// ClipOrCenterRectToMonitor(&rc, MONITOR_AREA);\n\t\t\t// win.SetWindowPos(hwnd, 0, rc.Left, rc.Top, 0, 0, win.SWP_NOSIZE | win.SWP_NOZORDER | win.SWP_NOACTIVATE | win.SWP_FRAMECHANGED);\n\n\t\t\tisPinned = false\n\t\t\tisFullScreen = true\n\t\t}\n\t\treturn isFullScreen\n\t})\n\n\tw.Bind(\"icarusTerminal_newWindow\", func() int {\n\t\tterminalCmdInstance := exec.Command(filepath.Join(dirname, TERMINAL_EXECUTABLE), \"--terminal=true\", fmt.Sprintf(\"--port=%d\", port))\n\t\tterminalCmdInstance.Dir = dirname\n\t\tterminalCmdErr := terminalCmdInstance.Start()\n\n\t\t// Exit if service fails to start\n\t\tif terminalCmdErr != nil {\n\t\t\tfmt.Println(\"Opening new terminal failed\", terminalCmdErr.Error())\n\t\t}\n\n\t\t// Add process to process group so all windows close when main process ends\n\t\tprocessGroup.AddProcess(terminalCmdInstance.Process)\n\n\t\tgo func() {\n\t\t\tterminalCmdInstance.Wait()\n\t\t\t// Code here will execute when window closes\n\t\t}()\n\n\t\treturn 0\n\t})\n\n\tw.Bind(\"icarusTerminal_openReleaseNotes\", func() {\n\t\trunUnelevated(RELEASE_NOTES_URL)\n\t})\n\n\tw.Bind(\"icarusTerminal_openTerminalInBrowser\", func() {\n\t\trunUnelevated(url)\n\t})\n\n\t// FIXME Broken and sometimes causes crashes on child Windows. Don't know why.\n\t// To replicate, open a new window (A), then a second window (B), then close\n\t// A using this method then try and close B using this method. B will stop\n\t// responding and if repeatedly triggered will crash the entire app.\n\t// I have tried multiple approaches to resolve this but I think it's a bug\n\t// in the webview library this app imports.\n\t/*\n\t\tw.Bind(\"icarusTerminal_closeWindow\", func() int {\n\t\t\tw.Terminate()\n\t\t\treturn 0\n\t\t})\n\t*/\n\n\tw.Bind(\"icarusTerminal_quit\", func() int {\n\t\texitApplication(0)\n\t\treturn 0\n\t})\n}\n\nfunc exitApplication(exitCode int) {\n\t// Placeholder for future logic\n\tos.Exit(exitCode)\n}\n\nfunc checkProcessAlreadyExists(windowTitle string) bool {\n\t_, err := gow32.CreateMutex(windowTitle)\n\tif err != nil {\n\t\treturn true\n\t}\n\n\treturn false\n}\n"
  },
  {
    "path": "src/app/process-group.go",
    "content": "package main\n\nimport (\n\t\"golang.org/x/sys/windows\"\n\t\"os\"\n\t\"unsafe\"\n)\n\ntype ProcessGroup windows.Handle\n\nfunc NewProcessGroup() (ProcessGroup, error) {\n\thandle, err := windows.CreateJobObject(nil, nil)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\n\tinfo := windows.JOBOBJECT_EXTENDED_LIMIT_INFORMATION{\n\t\tBasicLimitInformation: windows.JOBOBJECT_BASIC_LIMIT_INFORMATION{\n\t\t\tLimitFlags: windows.JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE,\n\t\t},\n\t}\n\tif _, err := windows.SetInformationJobObject(\n\t\thandle,\n\t\twindows.JobObjectExtendedLimitInformation,\n\t\tuintptr(unsafe.Pointer(&info)),\n\t\tuint32(unsafe.Sizeof(info))); err != nil {\n\t\treturn 0, err\n\t}\n\n\treturn ProcessGroup(handle), nil\n}\n\nfunc (g ProcessGroup) Dispose() error {\n\treturn windows.CloseHandle(windows.Handle(g))\n}\n\nfunc (g ProcessGroup) AddProcess(p *os.Process) error {\n\treturn windows.AssignProcessToJobObject(\n\t\twindows.Handle(g),\n\t\twindows.Handle((*process)(unsafe.Pointer(p)).Handle))\n}\n"
  },
  {
    "path": "src/app/updater.go",
    "content": "package main\n\nimport (\n\t\"encoding/json\"\n\t\"errors\"\n\t\"github.com/gonutz/w32/v2\"\n\t\"github.com/jmoiron/jsonq\"\n\t\"io\"\n\t\"io/ioutil\"\n\t\"net/http\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"regexp\"\n\t\"strings\"\n\t\"time\"\n)\n\nconst LATEST_RELEASE_URL = \"https://api.github.com/repos/iaincollins/icarus/releases/latest\"\n\ntype Release struct {\n\tInstalledVersion string `json:\"installedVersion\"`\n\tProductVersion   string `json:\"productVersion\"`\n\tDownloadUrl      string `json:\"downloadUrl\"`\n\tReleaseNotes     string `json:\"releaseNotes\"`\n\tIsUpgrade        bool   `json:\"isUpgrade\"`\n}\n\nfunc CheckForUpdate() (bool, error) {\n\tlatestUpdate, err := GetLatestRelease()\n\tif err != nil {\n\t\treturn false, err\n\t}\n\n\treturn latestUpdate.IsUpgrade, nil\n}\n\nfunc InstallUpdate() {\n\trelease, err := GetLatestRelease()\n\tif err == nil {\n\t\tpathToFile, _ := DownloadUpdate(release.DownloadUrl)\n\t\trunElevated(pathToFile)\n\t\tos.Exit(0)\n\t}\n}\n\nfunc GetCurrentAppVersion() string {\n\tpathToExecutable, err := os.Executable()\n\tif err != nil {\n\t\tpanic(\"os.Executable() failed\")\n\t}\n\n\tsize := w32.GetFileVersionInfoSize(pathToExecutable)\n\tif size <= 0 {\n\t\tpanic(\"GetFileVersionInfoSize failed\")\n\t}\n\n\tinfo := make([]byte, size)\n\tok := w32.GetFileVersionInfo(pathToExecutable, info)\n\tif !ok {\n\t\tpanic(\"GetFileVersionInfo failed\")\n\t}\n\n\t/*\n\t\tfixed, ok := w32.VerQueryValueRoot(info)\n\t\tif !ok {\n\t\t\t\tpanic(\"VerQueryValueRoot failed\")\n\t\t}\n\t\tversion := fixed.FileVersion()\n\t\tfileVersion := fmt.Sprintf(\n\t\t\t\t\"%d.%d.%d.%d\",\n\t\t\t\tversion&0xFFFF000000000000>>48,\n\t\t\t\tversion&0x0000FFFF00000000>>32,\n\t\t\t\tversion&0x00000000FFFF0000>>16,\n\t\t\t\tversion&0x000000000000FFFF>>0,\n\t\t)\n\t*/\n\n\ttranslations, ok := w32.VerQueryValueTranslations(info)\n\tif !ok {\n\t\tpanic(\"VerQueryValueTranslations failed\")\n\t}\n\tif len(translations) == 0 {\n\t\tpanic(\"no translation found\")\n\t}\n\tt := translations[0]\n\n\tproductVersion, ok := w32.VerQueryValueString(info, t, w32.ProductVersion)\n\tif !ok {\n\t\tpanic(\"cannot get product version\")\n\t}\n\n\t// Convert from version with build number (0.0.0.0) to semver version (0.0.0)\n\tproductVersion = regexp.MustCompile(`(\\.[^\\.]+)$`).ReplaceAllString(productVersion, ``)\n\n\treturn productVersion\n}\n\nfunc GetLatestRelease() (Release, error) {\n\treleasesUrl := LATEST_RELEASE_URL\n\trelease := Release{}\n\n\thttpClient := http.Client{Timeout: time.Second * 5}\n\n\treq, reqErr := http.NewRequest(http.MethodGet, releasesUrl, nil)\n\tif reqErr != nil {\n\t\treturn release, reqErr\n\t}\n\n\tres, getErr := httpClient.Do(req)\n\tif getErr != nil {\n\t\treturn release, getErr\n\t}\n\n\tif res.Body != nil {\n\t\tdefer res.Body.Close()\n\t}\n\n\tbody, readErr := ioutil.ReadAll(res.Body)\n\tif readErr != nil {\n\t\treturn release, readErr\n\t}\n\n\tjsonObjectAsString := string(body)\n\n\t// Use jsonq to access JSON\n\tdata := map[string]interface{}{}\n\tdec := json.NewDecoder(strings.NewReader(jsonObjectAsString))\n\tdec.Decode(&data)\n\tjq := jsonq.NewQuery(data)\n\n\t// Get properties from from JSON\n\ttag, _ := jq.String(\"tag_name\")\n\tproductVersion := regexp.MustCompile(`^v`).ReplaceAllString(tag, ``) // Converts tag (v0.0.0) to semver version (0.0.0) for easier comparion\n\tdownloadUrl, _ := jq.String(\"assets\", \"0\", \"browser_download_url\")\n\treleaseNotes, _ := jq.String(\"body\")\n\n\tif downloadUrl == \"\" {\n\t\treturn release, errors.New(\"Could not get download URL\")\n\t}\n\n\tinstalledVersion := GetCurrentAppVersion()\n\n\trelease.InstalledVersion = installedVersion\n\trelease.ProductVersion = productVersion\n\trelease.DownloadUrl = downloadUrl\n\trelease.ReleaseNotes = releaseNotes\n\trelease.IsUpgrade = !(installedVersion == productVersion)\n\n\treturn release, nil\n}\n\nfunc DownloadUpdate(downloadUrl string) (string, error) {\n\ttmpDir, _ := ioutil.TempDir(\"\", \"*\")\n\ttmpfile := filepath.Join(tmpDir, \"ICARUS Update.exe\")\n\n\t// Get file to download\n\tresp, err := http.Get(downloadUrl)\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\tdefer resp.Body.Close()\n\n\t// Create file\n\tout, err := os.Create(tmpfile)\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\tdefer out.Close()\n\n\t// Write to file\n\t_, err = io.Copy(out, resp.Body)\n\n\treturn tmpfile, nil\n}"
  },
  {
    "path": "src/app/windows.go",
    "content": "package main\n\nimport (\n\t\"github.com/nvsoft/win\"\n\t\"syscall\"\n\t\"unsafe\"\n)\n\nfunc WndProc(hwnd win.HWND, msg uint32, wParam, lParam uintptr) uintptr {\n\t// windowPtr := unsafe.Pointer(win.GetWindowLongPtr(hwnd, win.GWLP_USERDATA))\n\t// w, _ := GetWindowContext(hwnd).(webViewInstance);\n\tswitch msg {\n\tcase win.WM_SIZE:\n\t\t// TODO Handle weview resizing on custom windows\n\t\t// Would be great if could access w.m_browser.resize(hwnd) here\n\t\t// w.m_browser.resize(hwnd);\n\t\tbreak\n\tcase win.WM_DESTROY:\n\t\twin.PostQuitMessage(0)\n\t\texitApplication(0)\n\tdefault:\n\t\treturn win.DefWindowProc(hwnd, msg, wParam, lParam)\n\t}\n\treturn 0\n}\n\n// func GetWindowContext(wnd win.HWND) interface{} {\n// \twindowContextSync.RLock()\n// \tdefer windowContextSync.RUnlock()\n// \treturn windowContext[wnd]\n// }\n\n// var (\n// \twindowContext     = map[uintptr]interface{}{}\n// \twindowContextSync sync.RWMutex\n// )\n\nfunc RegisterClass(hInstance win.HINSTANCE) (atom win.ATOM) {\n\tvar wc win.WNDCLASSEX\n\twc.CbSize = uint32(unsafe.Sizeof(wc))\n\twc.Style = win.CS_HREDRAW | win.CS_VREDRAW | win.CS_OWNDC\n\twc.LpfnWndProc = syscall.NewCallback(WndProc)\n\twc.CbClsExtra = 0\n\twc.CbWndExtra = 0\n\twc.HInstance = hInstance\n\twc.HbrBackground = win.GetSysColorBrush(win.COLOR_WINDOWFRAME)\n\twc.LpszMenuName = syscall.StringToUTF16Ptr(\"\")\n\twc.LpszClassName = syscall.StringToUTF16Ptr(LPSZ_CLASS_NAME)\n\twc.HIconSm = win.HICON(win.LoadImage(hInstance, syscall.StringToUTF16Ptr(ICON), win.IMAGE_ICON, 32, 32, win.LR_LOADFROMFILE|win.LR_SHARED|win.LR_LOADTRANSPARENT))\n\twc.HIcon = win.HICON(win.LoadImage(hInstance, syscall.StringToUTF16Ptr(ICON), win.IMAGE_ICON, 64, 64, win.LR_LOADFROMFILE|win.LR_SHARED|win.LR_LOADTRANSPARENT))\n\twc.HCursor = win.LoadCursor(0, win.MAKEINTRESOURCE(win.IDC_ARROW))\n\treturn win.RegisterClassEx(&wc)\n}\n\nfunc CreateWin32Window(hInstance win.HINSTANCE, LAUNCHER_WINDOW_TITLE string, width int32, height int32) (hwnd win.HWND) {\n\t// Center window\n\t// https://docs.microsoft.com/en-us/windows/win32/api/winuser/\n\tscreenWidth := int32(win.GetSystemMetrics(win.SM_CXSCREEN))\n\tscreenHeight := int32(win.GetSystemMetrics(win.SM_CYSCREEN))\n\twindowX := int32((screenWidth / 2) - (width / 2))\n\twindowY := int32((screenHeight / 2) - (height / 2))\n\n\treturn win.CreateWindowEx(\n\t\twin.WS_EX_APPWINDOW,\n\t\tsyscall.StringToUTF16Ptr(LPSZ_CLASS_NAME),\n\t\tsyscall.StringToUTF16Ptr(LAUNCHER_WINDOW_TITLE),\n\t\twin.WS_OVERLAPPED|win.WS_SYSMENU|win.WS_MINIMIZEBOX,\n\t\t//win.WS_OVERLAPPEDWINDOW, // A normal window\n\t\twindowX,\n\t\twindowY,\n\t\twidth,\n\t\theight,\n\t\t0,\n\t\t0,\n\t\thInstance,\n\t\tnil)\n}\n\n// https://docs.microsoft.com/en-us/windows/win32/gdi/positioning-objects-on-a-multiple-display-setup\n// const MONITOR_CENTER = 0x0001 // center rect to monitor\n// const MONITOR_CLIP = 0x0000 // clip rect to monitor\n// const MONITOR_WORKAREA = 0x0002 // use monitor work area\n// const MONITOR_AREA = 0x0000 // use monitor entire area\n// func ClipOrCenterRectToMonitor(prc *win.RECT, flags uint) {\n// \tvar hMonitor win.HMONITOR;\n// \tvar mi win.MONITORINFO;\n// \tvar rc win.RECT;\n//   var w = prc.Right - prc.Left;\n//   var h = prc.Bottom - prc.Top;\n\n//     //\n//     // get the nearest monitor to the passed rect.\n//     //\n//     hMonitor = win.MonitorFromRect(prc, win.MONITOR_DEFAULTTONEAREST);\n\n//     //\n//     // get the work area or entire monitor rect.\n//     //\n//     mi.CbSize = unsafe.Sizeof(mi);\n//     win.GetMonitorInfo(hMonitor, &mi);\n\n//     if (flags & MONITOR_WORKAREA) {\n//         rc = mi.RcWork;\n//     } else {\n//         rc = mi.RcMonitor;\n// \t\t}\n\n//     //\n//     // center or clip the passed rect to the monitor rect\n//     //\n//     if (flags & MONITOR_CENTER) {\n//         prc.left   = rc.Left + (rc.Right  - rc.Left - w) / 2;\n//         prc.top    = rc.Top  + (rc.Bottom - rc.Top  - h) / 2;\n//         prc.right  = prc.Left + w;\n//         prc.bottom = prc.Top  + h;\n//     }  else {\n//         prc.left   = unsafe.Max(rc.Left, unsafe.Min(rc.Right-w,  prc.Left));\n//         prc.top    = unsafe.Max(rc.Top,  unsafe.Min(rc.Bottom-h, prc.Top));\n//         prc.right  = prc.Left + w;\n//         prc.bottom = prc.Top  + h;\n//     }\n// }\n"
  },
  {
    "path": "src/client/components/copy-on-click.js",
    "content": "import { useRef } from 'react'\nimport notification from 'lib/notification'\n\nexport default function CopyOnClick ({ children, prepend, append }) {\n  const selectableText = useRef()\n  function copyText (e) {\n    try {\n      const text = selectableText.current.innerHTML\n      document.execCommand('copy')\n      navigator.clipboard.writeText(text)\n      notification(() => <p><span className='text-primary'>text copied</span><br/><span>{`\"${text}\"`}</span></p>)\n    } catch { /* don't care */ }\n  }\n  return (\n    <span className='selectable selectable-wrapper' onClick={copyText}>\n      {prepend}\n      <span ref={selectableText} className='selectable'>{children}</span>\n      {append}\n    </span>\n  )\n}\n"
  },
  {
    "path": "src/client/components/header.js",
    "content": "import { useState, useEffect } from 'react'\nimport { useRouter } from 'next/router'\nimport { socketOptions } from 'lib/socket'\nimport { isWindowFullScreen, isWindowPinned, toggleFullScreen, togglePinWindow } from 'lib/window'\nimport { eliteDateTime } from 'lib/format'\nimport { Settings } from 'components/settings'\nimport notification from 'lib/notification'\n\nconst NAV_BUTTONS = [\n  {\n    name: 'Navigation',\n    abbr: 'Nav',\n    path: '/nav'\n  },\n  {\n    name: 'Ship',\n    abbr: 'Ship',\n    path: '/ship'\n  },\n  {\n    name: 'Engineering',\n    abbr: 'Eng',\n    path: '/eng'\n  },\n  {\n    name: 'Log',\n    abbr: 'Log',\n    path: '/log'\n  }\n]\n\nlet IS_WINDOWS_APP = false\n\nexport default function Header ({ connected, active }) {\n  const router = useRouter()\n  const [dateTime, setDateTime] = useState(eliteDateTime())\n  const [isFullScreen, setIsFullScreen] = useState(false)\n  const [isPinned, setIsPinned] = useState(false)\n  const [notificationsVisible, setNotificationsVisible] = useState(socketOptions.notifications)\n  const [settingsVisible, setSettingsVisible] = useState(false)\n\n  async function fullScreen () {\n    const newFullScreenState = await toggleFullScreen()\n    setIsFullScreen(newFullScreenState)\n    if (newFullScreenState === true) setIsPinned(false)\n    document.activeElement.blur()\n  }\n\n  async function pinWindow () {\n    const newPinState = await togglePinWindow()\n    setIsPinned(newPinState)\n    document.activeElement.blur()\n  }\n\n  function toggleNotifications () {\n    socketOptions.notifications = !notificationsVisible\n    setNotificationsVisible(socketOptions.notifications)\n    // FIXME Uses document.getElementById('notifications') hack to force\n    // hiding of all notifications when muted as the toast library can be\n    // buggy. It needs swapping out for a different approach but this is a\n    // workaround for now.\n    if (socketOptions.notifications) {\n      notification('Notifications enabled', { id: 'notification-status' })\n      document.getElementById('notifications').style.opacity = '1'\n    } else {\n      notification('Notifications disabled', { id: 'notification-status' })\n      // Use a setTimeout so that the user has time to read the notificaiton\n      // before they are all hidden. Uses a conditional so that if the user\n      // rapidly clicks the toggle it doesn't end up in a weird state.\n      setTimeout(() => {\n        if (socketOptions.notifications === false) {\n          document.getElementById('notifications').style.opacity = '0'\n        }\n      }, 2000)\n    }\n    document.activeElement.blur()\n  }\n\n  useEffect(async () => {\n    // icarusTerminal_* methods are not always accessible while the app is loading.\n    // This handles that by calling them when the component is mounted.\n    // It uses a global for isWindowsApp to reduce UI flicker.\n    if (typeof window !== 'undefined' && typeof window.icarusTerminal_version === 'function') {\n      IS_WINDOWS_APP = true\n    }\n    setIsFullScreen(await isWindowFullScreen())\n    setIsPinned(await isWindowPinned())\n  }, [])\n\n  useEffect(() => {\n    const dateTimeInterval = setInterval(async () => {\n      setDateTime(eliteDateTime())\n    }, 1000)\n    return () => clearInterval(dateTimeInterval)\n  }, [])\n\n  let signalClassName = 'icon icarus-terminal-signal '\n  if (!connected) {\n    signalClassName += 'text-primary'\n  } else if (active) {\n    signalClassName += 'text-secondary'\n  } else {\n    signalClassName += 'text-primary'\n  }\n\n  const currentPath = `/${router.pathname.split('/')[1].toLowerCase()}`\n\n  return (\n    <header>\n      <hr className='small' />\n      <h1 className='text-info' style={{ padding: '.6rem 0 .25rem 3.75rem' }}>\n        <i className='icon icarus-terminal-logo' style={{ position: 'absolute', fontSize: '3rem', left: 0 }} />ICARUS <span className='hidden-small'>Terminal</span>\n      </h1>\n      <div style={{ position: 'absolute', top: '1rem', right: '.5rem' }}>\n        <p\n          className='text-primary text-center text-uppercase'\n          style={{ display: 'inline-block', padding: 0, margin: 0, lineHeight: '1rem', minWidth: '7.5rem' }}\n        >\n           <span style={{position: 'relative', top: '.3rem', fontSize: '2.4rem', paddingTop: '.25rem'}}>\n           {dateTime.time}\n          </span>\n          <br/>\n          <span style={{fontSize: '1.1rem', position: 'relative', top: '.4rem'}}>\n            {dateTime.day} {dateTime.month} {dateTime.year}\n          </span>\n        </p>\n\n        <button disabled className='button--icon button--transparent' style={{ marginRight: '.5rem', opacity: active ? 1 : .25, transition: 'all .25s ease-out' }}>\n          <i className={signalClassName} style={{ position: 'relative', transition: 'all .25s ease', fontSize: '3rem', lineHeight: '1.8rem', top: '.5rem', right: '.25rem' }} />\n        </button>\n\n        {IS_WINDOWS_APP &&\n          <button tabIndex='1' onClick={pinWindow} className={`button--icon ${isPinned ? 'button--transparent' : ''}`} style={{ marginRight: '.5rem' }} disabled={isFullScreen}>\n            <i className='icon icarus-terminal-pin-window' style={{ fontSize: '2rem' }} />\n          </button>}\n\n        <button tabIndex='1' onClick={toggleNotifications} className='button--icon' style={{ marginRight: '.5rem' }}>\n          <i className={`icon ${notificationsVisible ? 'icarus-terminal-notifications' : 'icarus-terminal-notifications-disabled text-muted'}`} style={{ fontSize: '2rem' }} />\n        </button>\n\n        <button\n          tabIndex='1' className='button--icon' style={{ marginRight: '.5rem' }}\n          onClick={() => { setSettingsVisible(!settingsVisible); document.activeElement.blur() }}\n        >\n          <i className='icon icarus-terminal-settings' style={{ fontSize: '2rem' }} />\n        </button>\n        <button tabIndex='1' onClick={fullScreen} className='button--icon'>\n          <i className='icon icarus-terminal-fullscreen' style={{ fontSize: '2rem' }} />\n        </button>\n      </div>\n      <hr />\n      <div id='primaryNavigation' className='button-group'>\n        {NAV_BUTTONS.filter(button => button).map((button, i) =>\n          <button\n            key={button.name}\n            data-primary-navigation={i+1}\n            tabIndex='1'\n            disabled={button.path === currentPath}\n            className={button.path === currentPath ? 'button--active' : ''}\n            onClick={() => router.push(button.path)}\n            style={{ fontSize: '1.5rem' }}\n          >\n            <span className='visible-small'>{button.abbr}</span>\n            <span className='hidden-small'>{button.name}</span>\n          </button>\n        )}\n      </div>\n      <hr className='bold' />\n      <Settings visible={settingsVisible} toggleVisible={() => setSettingsVisible(!settingsVisible)} />\n    </header>\n  )\n}\n"
  },
  {
    "path": "src/client/components/layout/main-layout.js",
    "content": "\nexport default function MainLayout ({ children, visible }) {\n  return (\n    <div className='layout__main' style={{ opacity: visible ? 1 : 0 }}>\n      {children}\n    </div>\n  )\n}\n\nMainLayout.defaultProps = {\n  visible: true\n}\n"
  },
  {
    "path": "src/client/components/layout.js",
    "content": "import Header from 'components/header'\nimport Loader from 'components/loader'\n\nexport default function Layout ({ children, connected, active, ready = true, loader = false, className = '' }) {\n  return (\n    <>\n      <div className='layout'>\n        <Loader visible={!connected || !ready || loader} />\n        <Header connected={connected} active={active || !ready} />\n        <div className={`layout__main ${className}`} style={{ opacity: connected && ready ? 1 : 0 }}>\n          {children}\n        </div>\n      </div>\n    </>\n  )\n}\n\nLayout.defaultProps = {\n  connected: false,\n  active: false\n}\n"
  },
  {
    "path": "src/client/components/loader.js",
    "content": "\nexport default function Loader ({ visible }) {\n  return (\n    <div id='loader' style={{ opacity: visible ? 0.75 : 0 }}>\n      <div className='loader__row'>\n        <div className='loader__arrow loader__arrow--outer-18' />\n        <div className='loader__arrow loader__arrow--down lloader__arrow--outer-17' />\n        <div className='loader__arrow loader__arrow--outer-16' />\n        <div className='loader__arrow loader__arrow--down loader__arrow--outer-15' />\n        <div className='loader__arrow loader__arrow--outer-14' />\n      </div>\n      <div className='loader__row'>\n        <div className='loader__arrow loader__arrow--outer-1' />\n        <div className='loader__arrow loader__arrow--down loader__arrow--outer-2' />\n        <div className='loader__arrow loader__arrow--inner-6' />\n        <div className='loader__arrow loader__arrow--down loader__arrow--inner-5' />\n        <div className='loader__arrow loader__arrow--inner-4' />\n        <div className='loader__arrow loader__arrow--down loader__arrow--outer-13' />\n        <div className='loader__arrow loader__arrow--outer-12' />\n      </div>\n      <div className='loader__row'>\n        <div className='loader__arrow loader__arrow--down loader__arrow--outer-3' />\n        <div className='loader__arrow loader__arrow--outer-4' />\n        <div className='loader__arrow loader__arrow--down loader__arrow--inner-1' />\n        <div className='loader__arrow loader__arrow--inner-2' />\n        <div className='loader__arrow loader__arrow--down loader__arrow--inner-3' />\n        <div className='loader__arrow loader__arrow--outer-11' />\n        <div className='loader__arrow loader__arrow--down loader__arrow--outer-10' />\n      </div>\n      <div className='loader__row'>\n        <div className='loader__arrow loader__arrow--down loader__arrow--outer-5' />\n        <div className='loader__arrow loader__arrow--outer-6' />\n        <div className='loader__arrow loader__arrow--down loader__arrow--outer-7' />\n        <div className='loader__arrow loader__arrow--outer-8' />\n        <div className='loader__arrow loader__arrow--down loader__arrow--outer-9' />\n      </div>\n    </div>\n  )\n}\n\nLoader.defaultProps = {\n  visible: true\n}\n"
  },
  {
    "path": "src/client/components/panel-navigation.js",
    "content": "\nimport { useState, useEffect, Fragment } from 'react'\n\nimport { useRouter } from 'next/router'\n\nexport default function PanelNavigation ({ items = [], search = () => {}, exit }) {\n  const router = useRouter()\n  const [searchValue, setSearchValue] = useState('')\n  const [searchInputVisible, setSearchInputVisible] = useState(false)\n\n  useEffect(() => {\n    document.addEventListener('click', onClickHandler)\n    return () => document.removeEventListener('click', onClickHandler)\n    function onClickHandler (event) {\n      if (!event?.target?.id.startsWith('secondary-navigation__search-')) {\n        setSearchInputVisible(false)\n      }\n    }\n  }, [])\n\n  return (\n    <div id='secondaryNavigation' className='secondary-navigation'>\n      {items.map((item, i) =>\n        <Fragment key={item.icon}>\n          {(item.type && item?.type === 'SEARCH') &&\n            <>\n              <button\n                id='secondary-navigation__search-toggle'\n                data-secondary-navigation={i+1}\n                tabIndex='2'\n                disabled={search === false}\n                className={`button--icon ${searchInputVisible ? 'button--selected button--secondary' : ''}`}\n                onClick={() => {\n                  setSearchInputVisible(!searchInputVisible)\n                }}\n              >{searchInputVisible}\n                <i className={`icon icarus-terminal-${item.icon}`} />\n              </button>\n              {searchInputVisible &&\n                <form\n                  id='secondary-navigation__search-form'\n                  autoComplete='off'\n                  onSubmit={(event) => {\n                    event.preventDefault()\n                    const searchText = document.getElementById('secondary-navigation__search-input').value.trim()\n                    if (searchText.length > 0) search(searchText)\n                    setSearchInputVisible(false)\n                    setSearchValue() // Reset input contents after submission\n                  }}\n                >\n                  <input\n                    id='secondary-navigation__search-input'\n                    autoFocus\n                    value={searchValue}\n                    onChange={(event) => setSearchValue(event.target.value)}\n                    tabIndex='2'\n                    type='text'\n                    className='input--secondary'\n                    placeholder='System name…'\n                  />\n                  <button\n                    id='secondary-navigation__search-button'\n                    type='submit' className='button--active button--secondary'\n                    style={{ float: 'left', display: 'inline-block', xfontSize: '1.5rem', height: '4rem', width: '8rem' }}\n                    tabIndex='2'\n                  >Search\n                  </button>\n                </form>}\n            </>}\n\n          {!item.type &&\n            <button\n              tabIndex='2'\n              data-secondary-navigation={i+1}\n              className={`button--icon ${item.active ? 'button--active' : ''}`}\n              onClick={\n                item.onClick\n                  ? item.onClick\n                  : () => item.url ? router.push(item.url) : () => null\n              }\n            >\n              <i className={`icon icarus-terminal-${item.icon}`} />\n            </button>}\n        </Fragment>\n      )}\n      {exit &&\n        <button\n          className='button--icon secondary-navigation__exit-button fx-fade-in'\n          onClick={exit}\n          data-secondary-navigation={items.length}\n        >\n          <i className='icon icarus-terminal-exit' />\n        </button>}\n    </div>\n  )\n}\n"
  },
  {
    "path": "src/client/components/panel.js",
    "content": "import PanelNavigation from 'components/panel-navigation'\n\nexport default function Panel ({ children, layout = 'full-width', scrollable = false, navigation, search, exit, style = {}, className = '' }) {\n  return (\n    <div\n      className={`layout__${layout} ${scrollable ? 'scrollable' : ''} ${(navigation && navigation.length > 0) ? 'layout__panel--secondary-navigation' : ''} ${className}`}\n      style={{ ...style }}\n    >\n      {navigation && navigation.length > 0 &&\n        <PanelNavigation items={navigation} search={search} exit={exit} />}\n      {children}\n    </div>\n  )\n}\n"
  },
  {
    "path": "src/client/components/panels/eng/materials.js",
    "content": "import { Fragment } from 'react'\nimport CopyOnClick from 'components/copy-on-click'\n\nexport default function Materials ({ materialType, materials }) {\n  if (materials.length === 0) return (<p className='text-info text-uppercase'>No materials found.</p>)\n\n  const materialsByType = materials.filter(item => item.type === materialType)\n\n  const materialCategories = []\n  materialsByType.forEach(material => {\n    if (!materialCategories.includes(material.category)) { materialCategories.push(material.category) }\n  })\n\n  return materialCategories.sort().map(materialCategory =>\n    <MaterialsTable\n      key={`materials-table_${materialType}_${materialCategory}`}\n      materialType={materialType}\n      materialCategory={materialCategory}\n      materials={materialsByType.filter(item => item.category === materialCategory).sort((a, b) => a.grade > b.grade ? 1 : -1)}\n    />\n  )\n}\n\nfunction MaterialsTable ({ materialType, materialCategory, materials }) {\n  if (materials.length === 0) return (<p className='text-info text-uppercase'>No materials.</p>)\n\n  return (\n    <>\n      {materialCategory &&\n        <div className='section-heading'>\n          <h4 className='section-heading__text' style={{ marginTop: '1rem' }}>{materialCategory}</h4>\n        </div>}\n      <table className='table--animated fx-fade-in'>\n        <thead style={{ display: 'none' }}>\n          <tr>\n            <th style={{ width: '30rem' }}>{materialType} Material</th>\n            <th className='hidden-large'>Applications</th>\n            <th className='text-right' style={{ width: '3rem' }}>Grade</th>\n          </tr>\n        </thead>\n        <tbody>\n          {materials.map(item =>\n            <tr\n              key={`material_${materialType}_${materialCategory}_${item.symbol}`}\n              className={`${item.count === item?.maxCount ? 'text-secondary' : ''} ${item.count === 0 ? 'text-muted text-danger' : ''}`}\n            >\n              <td style={{ width: '30rem' }}>\n                <h4><CopyOnClick>{item.name}</CopyOnClick></h4>\n                <div style={{ marginTop: '.5rem' }}>\n                  <div style={{ width: '30%', display: 'inline-block' }}>\n                    <span>{item.count}</span>\n                    <span className='text-muted'>/{item.maxCount}</span>\n                  </div>\n                  <div style={{ width: '70%', display: 'inline-block' }}>\n                    <progress style={{ height: '1.25rem' }} value={item.count} max={item?.maxCount ?? item.count} className={item.count === item?.maxCount ? 'progress--secondary' : ''} />\n                  </div>\n                </div>\n              </td>\n              <td className='hidden-large text-no-transform'>\n                <span>\n                  {item.blueprints\n                    .map(blueprint => {\n                    // TODO Highlight engineering uses relevant to equipped engineered modules\n                    // TODO Highlight engineering uses relevant to pinned engineering blueprints\n                      let name = blueprint.symbol.replace(/_(.*?)$/, '').replace(/([a-z])([A-Z])/g, '$1 $2').trim()\n                      if (['Weapon', 'Engine', 'Sensor'].includes(name)) name = `${name}s`\n                      if (name === 'AFM') name = 'AFMU'\n                      if (name === 'MC') name = 'Weapons'\n                      if (name.includes('Limpet')) name = 'Limpets'\n                      if (name === 'FSDinterdictor') name = 'Interdictor'\n                      if (name.startsWith('Hull ')) name = 'Hull'\n                      if (name === 'Misc') name = blueprint.symbol.replaceAll('_', '').replace(/([a-z])([A-Z])/g, '$1 $2').trim()\n                      name = name.replace(/misc /ig, '').replace(/ capacity/gi, '')\n                      return name\n                    })\n                    .filter((value, index, self) => self.indexOf(value) === index)\n                    .sort()\n                    .map((use, i) => <Fragment key={`material_${item.name}_${use}`}>{i === 0 ? '' : <span className='text-muted'>, </span>}<span>{use}</span></Fragment>)}\n                  {materialType === 'Xeno' && <span className='text-muted'>Classified</span>}\n                </span>\n              </td>\n              <td className='text-right text-no-wrap' style={{ width: '3rem' }}>\n                <i style={{ fontSize: '3rem' }} className={`icon icarus-terminal-materials-grade-${item.grade}`} />\n              </td>\n            </tr>\n          )}\n        </tbody>\n      </table>\n    </>\n  )\n}\n"
  },
  {
    "path": "src/client/components/panels/event-types-panel.js",
    "content": "import { useState, useEffect } from 'react'\nimport { useSocket, eventListener, sendEvent } from 'lib/socket'\n\nfunction gameEventsToArray (gameEvents) {\n  return Object.keys(gameEvents).map(event => {\n    return {\n      name: event,\n      count: gameEvents[event]\n    }\n  }).sort((a, b) => a.count > b.count ? -1 : 0)\n}\n\nexport default function EventTypesPanel () {\n  const { connected } = useSocket()\n  const [gameEvents, setGameEvents] = useState()\n\n  useEffect(async () => {\n    const message = await sendEvent('getLoadingStatus')\n    setGameEvents(gameEventsToArray(message.eventTypesLoaded))\n  }, [connected])\n\n  useEffect(() => eventListener('loadingProgress', (message) => {\n    setGameEvents(gameEventsToArray(message.eventTypesLoaded))\n  }), [])\n\n  return (\n    <table>\n      <thead>\n        <tr>\n          <th>Event name</th>\n          <th className='text-right'>Number of events</th>\n        </tr>\n      </thead>\n      <tbody>\n        {gameEvents && gameEvents.map(event =>\n          <tr key={event.name}>\n            <td>{event.name}</td>\n            <td className='text-right'>{event.count}</td>\n          </tr>\n        )}\n      </tbody>\n    </table>\n  )\n}\n"
  },
  {
    "path": "src/client/components/panels/log/log-inspector-panel.js",
    "content": "import { objectToHtml } from 'lib/format'\n\nexport default function LogInspectorPanel ({ logEntry }) {\n  if (!logEntry) return null\n\n  return (\n    <div style={{ padding: '.5rem 1rem' }}>\n      <h2 className='text-primary'>Log Entry</h2>\n      <hr style={{ margin: '1rem 0' }} />\n      <div\n        className='fx-fade-in selectable--text text-no-shadow'\n        data-fx-order='1' dangerouslySetInnerHTML={{\n          __html: `${objectToHtml(logEntry)}`\n        }}\n      />\n    </div>\n  )\n}\n"
  },
  {
    "path": "src/client/components/panels/log/log-list-panel.js",
    "content": "import { eliteDateTime } from 'lib/format'\n\nexport default function LogPanel ({ logEntries, setSelectedLogEntry }) {\n  if (!logEntries) return null\n\n  return (\n    <div style={{ paddingRight: '0.5rem' }}>\n      <table className='table--animated table--interactive'>\n        <thead>\n          <tr>\n            <th>Event</th>\n            <th className='text-right'>Time</th>\n          </tr>\n        </thead>\n        <tbody className='fx-fade-in'>\n          {logEntries && logEntries.map(logEntry =>\n            <tr key={`${logEntry._checksum}`} tabIndex='2' onFocus={() => setSelectedLogEntry(logEntry)}>\n              <td>\n                {logEntry.event.replace(/([a-z])([A-Z])/g, '$1 $2')}\n              </td>\n              <td className='text-no-wrap text-right'>\n                {eliteDateTime(logEntry.timestamp).dateTime}\n              </td>\n            </tr>\n          )}\n        </tbody>\n      </table>\n    </div>\n  )\n}\n"
  },
  {
    "path": "src/client/components/panels/nav/navigation-inspector-panel.js",
    "content": "import { SPACE_STATIONS, SURFACE_PORTS, PLANETARY_BASES, MEGASHIPS, SOL_RADIUS_IN_KM } from '../../../../shared/consts'\nimport { kelvinToCelius, kelvinToFahrenheit } from 'lib/convert'\nimport CopyOnClick from 'components/copy-on-click'\n\nexport default function NavigationInspectorPanel ({ systemObject, setSystemObjectByName }) {\n  if (!systemObject) return <div className='navigation-panel__inspector navigation-panel__inspector--hidden' />\n\n  const isLandable = systemObject.isLandable || SPACE_STATIONS.concat(MEGASHIPS).includes(systemObject.type) || PLANETARY_BASES.includes(systemObject.type)\n\n  let systemObjectSubType = systemObject.subType || systemObject.type\n  if (SURFACE_PORTS.includes(systemObject.type)) systemObjectSubType = 'Planetary Port'\n  if (PLANETARY_BASES.includes(systemObject.type) && !SURFACE_PORTS.includes(systemObject.type)) systemObjectSubType = 'Settlement'\n  if (systemObject.type === 'Star') systemObjectSubType = systemObject.subType\n  if (systemObject.type === 'Planet') systemObjectSubType = systemObject.subType\n\n  // TODO Move to icon class\n  let iconClass = 'text-info icon icarus-terminal-'\n  switch (systemObject.type.toLowerCase()) {\n    case 'star':\n      iconClass += 'star'\n      break\n    case 'outpost':\n      iconClass += 'outpost'\n      break\n    case 'asteroid base':\n      iconClass += 'asteroid-base'\n      break\n    case 'coriolis starport':\n      iconClass += 'coriolis-starport'\n      break\n    case 'ocellus starport':\n      iconClass += 'ocellus-starport'\n      break\n    case 'orbis starport':\n      iconClass += 'orbis-starport'\n      break\n    case 'planet':\n      iconClass += 'planet'\n      break\n    case 'mega ship':\n      iconClass += 'megaship'\n      break\n    case 'planetary port':\n      iconClass += 'planetary-port'\n      break\n    case 'settlement':\n      iconClass += 'settlement'\n      break\n    default:\n      if (systemObjectSubType === 'Planetary Port') iconClass += 'planetary-port'\n      if (systemObjectSubType === 'Settlement') iconClass += 'settlement'\n  }\n\n  let inspectorTitle = systemObjectSubType\n  if (['Planet', 'Star'].includes(systemObject.type)) inspectorTitle = systemObject.type\n  if (SPACE_STATIONS.includes(systemObject.type)) inspectorTitle = 'Starport'\n  if (SPACE_STATIONS.includes(systemObject.type) && systemObjectSubType === 'Outpost') inspectorTitle = 'Orbital Outpost'\n\n  const surfacePorts = []\n  const settlements = []\n  systemObject?._planetaryBases?.forEach(base =>\n    SURFACE_PORTS.includes(base.type) ? surfacePorts.push(base) : settlements.push(base)\n  )\n\n  // Show exploration only if there is intersting data to show\n  let showExploration = false\n  if (systemObject.hasOwnProperty('mapped')) showExploration = true\n  if (isLandable) showExploration = true\n  if (systemObject.volcanismType !== 'No volcanism') showExploration = true\n  if (systemObject?.signals?.biological > 0) showExploration = true\n  if (systemObject.terraformingState && systemObject.terraformingState !== 'Not terraformable' && systemObject.terraformingState !== 'Terraformed') showExploration = true\n\n  return (\n    <div className='inspector navigation-panel__inspector fx-fade-in'>\n      <div className='inspector__title' onClick={() => { setSystemObjectByName(null) }}>\n        <button className='inspector__close-button'>\n          <i className='icon icarus-terminal-chevron-right' />\n        </button>\n        <h3>{inspectorTitle}</h3>\n      </div>\n      <div className='inspector__contents scrollable'>\n        <div className='navigation-panel__inspector-heading'>\n          <i className={iconClass} />\n          <h2 className='text-info'><CopyOnClick>{systemObject.name}</CopyOnClick></h2>\n          <h3 className='text-primary'>{systemObjectSubType}</h3>\n        </div>\n        <hr />\n        {(systemObject.distanceToArrival && systemObject.distanceToArrival > 0) === true &&\n          <div className='navigation-panel__inspector-section'>\n            <h4 className='text-primary'>Distance from arrival</h4>\n            <p className='text-info'>{systemObject.distanceToArrival.toLocaleString(undefined, { maximumFractionDigits: 0 })} Ls</p>\n          </div>}\n\n          {systemObject.type == 'Planet' && showExploration == true &&\n            <div className='navigation-panel__inspector-section'>\n              <h4 className='text-primary'>Exploration</h4>\n\n              {systemObject.hasOwnProperty('mapped') && <>\n                {systemObject.mapped === true\n                  ? <p className='text-info text-muted'><i className='icarus-terminal-scan' style={{position: 'relative', top: '.3rem', fontSize: '1.5rem'}}/> Surface scanned</p>\n                  : <p className='text-info'><i className='icarus-terminal-scan' style={{position: 'relative', top: '.3rem', fontSize: '1.5rem'}}/> Surface scan required</p>}\n              </>}\n              {isLandable ? <p className='text-info'><i className='icarus-terminal-planet-lander' style={{position: 'relative', top: '.3rem', fontSize: '1.5rem'}}/> Landable surface</p> : null}\n\n              {systemObject.terraformingState && systemObject.terraformingState !== 'Not terraformable' && systemObject.terraformingState !== 'Terraformed' && \n                <p className='text-info'><i className='icarus-terminal-planet-terraformable' style={{position: 'relative', top: '.2rem', fontSize: '1.5rem'}}/> Terraformable</p>}\n\n              {systemObject.volcanismType !== 'No volcanism' ? <p className='text-info text-no-wrap'><i className='icarus-terminal-planet-volcanic' style={{position: 'relative', top: '.2rem', fontSize: '1.5rem'}}/> {systemObject.volcanismType}</p> : null}\n\n              {systemObject?.signals?.biological > 0 && !systemObject?.biologicalGenuses && <>\n                {systemObject?.signals?.biological === 1 &&\n                  <p className='text-info'><i className='icarus-terminal-plant' style={{position: 'relative', top: '.2rem', fontSize: '1.5rem'}}/> {systemObject?.signals?.biological} Biological Signal</p>\n                }\n                {systemObject?.signals?.biological > 1 &&\n                  <p className='text-info'><i className='icarus-terminal-plant' style={{position: 'relative', top: '.2rem', fontSize: '1.5rem'}}/> {systemObject?.signals?.biological} Biological Signals</p>\n                }\n              </>}\n\n              {systemObject.biologicalGenuses && <>\n                {systemObject.biologicalGenuses.map(genus => \n                  <p key={`navigation-inspector_${systemObject.id}_bio-signal_${genus}`} className='text-info'><i className='icarus-terminal-plant' style={{position: 'relative', top: '.2rem', fontSize: '1.5rem'}}/> {genus}</p>\n                )}\n              </>}\n\n              {/* {systemObject?.discovery?.commander && <p className='text-info'><span className='text-primary'>EDSM Credit</span><br/>Cmdr {systemObject.discovery.commander}</p>} */}\n          </div>\n        }\n\n        {systemObject.type === 'Star' &&\n          <div className='navigation-panel__inspector-section'>\n            <h4 className='text-primary'>Stellar Properties</h4>\n            {systemObject.isScoopable ? <p className='text-info'>Main Sequence (Fuel Star)</p> : <p className='text-info text-muted'>Not Scoopable</p>}\n            {systemObject.spectralClass && <p className='text-info'>Class {systemObject.spectralClass} Star </p>}\n            <p className='text-info'>Luminosity {systemObject.luminosity}</p>\n            {systemObject.solarRadius && <p className='text-info'>Radius {(systemObject.solarRadius * SOL_RADIUS_IN_KM).toLocaleString(undefined, { maximumFractionDigits: 0 })} Km</p>}\n            <p className='text-info'>Solar Masses {systemObject.solarMasses.toFixed(2)}</p>\n            <p className='text-info'>Temperature {systemObject.surfaceTemperature} K</p>\n          </div>}\n\n        {systemObject.type === 'Planet' &&\n          <>\n            <div className='navigation-panel__inspector-section'>\n              <h4 className='text-primary'>Environment</h4>\n              {systemObject.gravity ?\n              <p className='text-info'>Gravity {Math.max(0.01, Number(systemObject.gravity.toFixed(2)))}g\n               {systemObject.gravity < .5 && ' (Low)'}\n               {systemObject.gravity > 1.5 && ' (High)'}\n              </p> : null}\n              {systemObject.radius && <p className='text-info'>Radius {systemObject.radius.toLocaleString(undefined, { maximumFractionDigits: 0 })} Km</p>}\n              {systemObject.surfaceTemperature &&\n                <p className='text-info'>\n                  Temperature {systemObject.surfaceTemperature}K\n                  ({kelvinToCelius(systemObject.surfaceTemperature)}C/{kelvinToFahrenheit(systemObject.surfaceTemperature)}F)\n                </p>}\n            </div>\n\n            {surfacePorts.length > 0 &&\n              <div className='navigation-panel__inspector-section'>\n                <h4 className='text-primary'>Ports</h4>\n                <div className='text-info'>\n                  {surfacePorts.map(base => (\n                    <p key={`navigation-inspector_${systemObject.id}_${base.id}`} className='text-link text-no-wrap' onClick={() => setSystemObjectByName(base.name)}>\n                      <i className='icon icarus-terminal-planetary-port' />\n                      <span className='text-link-text text-no-wrap'>{base.name}</span>\n                    </p>\n                  ))}\n                </div>\n              </div>}\n\n            {settlements.length > 0 &&\n              <div className='navigation-panel__inspector-section'>\n                <h4 className='text-primary'>Settlements</h4>\n                <div className='text-info'>\n                  {settlements.map(base => (\n                    <p key={`navigation-inspector_${systemObject.id}_${base.id}`} className='text-link text-no-wrap' onClick={() => setSystemObjectByName(base.name)}>\n                      <i className='icon icarus-terminal-settlement' />\n                      <span className='text-link-text text-no-wrap'>{base.name}</span>\n                    </p>\n                  ))}\n                </div>\n              </div>}\n\n            {systemObject.atmosphereComposition &&\n              <div className='navigation-panel__inspector-section'>\n                <h4 className='text-primary'>Atmosphere</h4>\n                {systemObject.atmosphereType && systemObject.atmosphereType !== 'No atmosphere' ? <p className='text-info'>{systemObject.atmosphereType}</p> : null}\n                {systemObject.surfacePressure ? <p className='text-info'>Pressure {parseFloat(systemObject.surfacePressure.toFixed(3))} atm</p> : null}\n                <ul className='text-info'>\n                  {Object.entries(systemObject.atmosphereComposition).map(e => <li key={`navigation-inspector_${systemObject.id}_atmosphere_${e[0]}`}>{e[0]} ({e[1]}%)</li>)}\n                </ul>\n              </div>}\n\n            {!systemObject.atmosphereComposition &&\n              <div className='navigation-panel__inspector-section'>\n                <h4 className='text-primary'>Atmosphere</h4>\n\n                <p className='text-muted'>No Atmosphere</p>\n              </div>}\n              {systemObject.solidComposition &&\n              <div className='navigation-panel__inspector-section'>\n                <h4 className='text-primary'>Material Composition</h4>\n                <ul className='text-info'>\n                  {Object.entries(systemObject.solidComposition).map(e => e[1] > 0 ? <li key={`navigation-inspector_${systemObject.id}_surface_${e[0]}`}>{e[0]} ({e[1]}%)</li> : '')}\n                </ul>\n              </div>}\n\n          </>}\n\n        {systemObject.materials &&\n          <div className='navigation-panel__inspector-section'>\n            <h4 className='text-primary'>Chemicals &amp; Minerals</h4>\n            <ul className='text-info'>\n              {Object.entries(systemObject.materials).map(e => <li key={`navigation-inspector_${systemObject.id}_material_${e[0]}}`}>{e[0]} ({e[1]}%)</li>)}\n            </ul>\n          </div>}\n\n        {systemObject.rings &&\n          <div className='navigation-panel__inspector-section'>\n            <h4 className='text-primary'>Rings</h4>\n            {systemObject.reserveLevel && <p className='text-info'>{systemObject.reserveLevel} Reserves</p>}\n            <ul className='text-info'>\n              {systemObject.rings.map((ring, i) => <li key={`navigation-inspector_${systemObject.id}_rings_${i}}`}>{ring.name} ({ring.type})</li>)}\n            </ul>\n          </div>}\n\n        {(systemObjectSubType === 'Settlement' || systemObjectSubType === 'Planetary Port') && systemObject.body &&\n          <div className='navigation-panel__inspector-section navigation-panel__inspector-section--location'>\n            <h4 className='text-primary'>Location</h4>\n            <p className='text-info text-link text-no-wrap' onClick={() => setSystemObjectByName(systemObject.body.name)}>\n              <i className='icon icarus-terminal-planet' /> <span className='text-link-text text-no-wrap'>{systemObject.body.name}</span>\n            </p>\n          </div>}\n\n        {systemObject.government &&\n          <div className='navigation-panel__inspector-section'>\n            <h4 className='text-primary'>Faction</h4>\n\n            {systemObject?.controllingFaction?.name &&\n              <p className='text-info text-uppercase'>\n                <CopyOnClick>{systemObject.controllingFaction.name}</CopyOnClick>\n              </p>}\n            <p className='text-info'>\n              {systemObject?.allegiance ?? ''} {systemObject.government}\n            </p>\n          </div>}\n\n        {systemObject.economy &&\n          <div className='navigation-panel__inspector-section'>\n            <h4 className='text-primary'>Economy</h4>\n            <p className='text-info'>\n              {systemObject.economy}\n            </p>\n            {systemObject.secondEconomy && systemObject.secondEconomy !== systemObject.economy &&\n              <p className='text-info'>\n                {systemObject.secondEconomy}\n              </p>}\n          </div>}\n\n        {systemObject._shipServices && systemObject._shipServices.length > 0 &&\n          <div className='navigation-panel__inspector-section'>\n            <h4 className='text-primary'>Ship Services</h4>\n            <ul className='text-info'>\n              {systemObject._shipServices.map((service, i) => <li key={`navigation-inspector_${systemObject.id}_service_${service}_${i}`}>{service}</li>)}\n            </ul>\n          </div>}\n\n        {systemObject._otherServices && systemObject._otherServices.length > 0 &&\n          <div className='navigation-panel__inspector-section'>\n            <h4 className='text-primary'>Other Services</h4>\n            <ul className='text-info'>\n              {systemObject._otherServices.map((service, i) => <li key={`navigation-inspector_${systemObject.id}_other-service_${service}_${i}`}>{service}</li>)}\n            </ul>\n          </div>}\n\n        {Object.prototype.hasOwnProperty.call(systemObject, 'rotationalPeriod') &&\n          <div className='navigation-panel__inspector-section'>\n            <h4 className='text-primary'>Orbital properties</h4>\n            {systemObject?.rotationalPeriod !== null && <p className='text-info'>\n              <span className='text-primary'>Rotational Period</span>\n              <br />{systemObject.rotationalPeriod}\n              {systemObject?.rotationalPeriodTidallyLocked && <><br />Tidally Locked</>}\n            </p>}\n            {systemObject?.orbitalEccentricity !== null && <p className='text-info'><span className='text-primary'>Orbital Eccentricity</span><br />{systemObject.orbitalEccentricity}</p>}\n            {systemObject?.orbitalInclination !== null && <p className='text-info'><span className='text-primary'>Orbital Inclination</span><br />{systemObject.orbitalInclination}</p>}\n            {systemObject?.orbitalPeriod !== null && <p className='text-info'><span className='text-primary'>Orbital Period</span><br />{systemObject.orbitalPeriod}</p>}\n            {systemObject?.axialTilt !== null && <p className='text-info'><span className='text-primary'>Axial Tilt</span><br />{systemObject.axialTilt}</p>}\n            {systemObject?.semiMajorAxis !== null && <p className='text-info'><span className='text-primary'>Semi-Major Axis</span><br />{systemObject.semiMajorAxis}</p>}\n            {systemObject?.argOfPeriapsis !== null && <p className='text-info'><span className='text-primary'>Argument of Periapsis</span><br />{systemObject.argOfPeriapsis}</p>}\n          </div>}\n      </div>\n    </div>\n  )\n}\n"
  },
  {
    "path": "src/client/components/panels/nav/navigation-list-panel.js",
    "content": "import CopyOnClick from 'components/copy-on-click'\nimport { SPACE_STATIONS, SURFACE_PORTS, PLANETARY_BASES, MEGASHIPS } from '../../../../shared/consts'\n\nexport default function NavigationListPanel ({ system, systemObject, setSystemObject, showHelp }) {\n  if (!system) return null\n\n  // Check if any bodies are visible on map (i.e. any stars *or* any \"additional objects\")\n  const visibleBodiesOnMap = (!system.stars || (system.stars.length === 1 && (system.stars?.[0]?._children?.length) === 0))\n\n  return (\n    <div className={`navigation-panel__list ${systemObject ? 'navigation-panel__list--inspector' : ''}`}>\n      {visibleBodiesOnMap &&\n        <div className='text-center-both' style={{ zIndex: '30', pointerEvents: 'none' }}>\n          <h2>\n            <span className='text-primary text-blink-slow'>No system information</span><br />\n            <span className='text-info text-muted' style={{ fontSize: '1.5rem' }}>Telemetry Unavailable</span>\n          </h2>\n        </div>}\n      <div className='scrollable'>\n        <button\n          className='button button--transparent button--icon circle' onClick={showHelp}\n          tabIndex={3}\n          style={{ position: 'absolute', top: '.25rem', right: '1.5rem', height: '2.25rem', width: '2.25rem', zIndex: 20 }}\n        >\n          <i style={{ fontSize: '1.8rem', lineHeight: '2.3rem' }} className='icon icarus-terminal-help' />\n        </button>\n        <table className='table--animated table--interactive'>\n          <thead>\n            <tr>\n              <th style={{ paddingTop: '.4rem' }} className='text-info'>\n                <i style={{ fontSize: '1.5rem', marginRight: '.25rem', position: 'relative', left: '.1rem', xtop: '-.1rem' }} className='float-left icarus-terminal-system-orbits' />\n                <CopyOnClick append=' system'>{system.name}</CopyOnClick>\n              </th>\n              <th style={{ width: '1rem' }} className='hidden-small'>&nbsp;</th>\n            </tr>\n          </thead>\n          <tbody className='fx-fade-in'>\n            <NavigationTableBody system={system} setSystemObject={setSystemObject} />\n            {/* {system.stars.map(star => <NavigationTableRow key={`${star.name}_${star.bodyId}`} systemObject={star}/>\n            // <>\n            // {NavigationTableRow(star)}\n            // {star._children.map((systemObject, i) =>\n            //   <>\n            //     {NavigationTableRow(systemObject, star.type === 'Null' ? 0 : 1)}\n            //     {(systemObject._children.map((childSystemObject, i) =>\n            //       NavigationTableRow(childSystemObject, star.type === 'Null' ? 1 : 2))\n            //     )}\n            //   </>\n            // )}\n            // </>\n          )} */}\n            {(!system.detail || !system.detail.bodies || system.detail.bodies.length === 0) &&\n              <tr>\n                <td colSpan='2' className='text-muted text-center'>&nbsp;</td>\n              </tr>}\n          </tbody>\n        </table>\n        <hr className='small' style={{ marginTop: 0 }} />\n      </div>\n    </div>\n  )\n}\n\nfunction NavigationTableBody ({ system, setSystemObject }) {\n  let tableRows = []\n\n  if (!system?.stars) return tableRows // Handle unknown systems\n\n  for (const star of system.stars) {\n    tableRows.push(<NavigationTableRow key={`${star.name}_${star.id}`} stars={system.stars} systemObject={star} setSystemObject={setSystemObject} />)\n\n    for (const systemObject of star._children) {\n      tableRows = tableRows.concat(<NavigationTableRowChildren key={`${systemObject.name}_${systemObject.id}`} stars={system.stars} systemObject={systemObject} setSystemObject={setSystemObject} />)\n    }\n  }\n\n  return tableRows\n}\n\nfunction NavigationTableRowChildren ({ stars, systemObject, setSystemObject, depth = 1 }) {\n  let tableRows = []\n\n  tableRows.push(<NavigationTableRow key={`${systemObject.name}_${systemObject.id}`} stars={stars} systemObject={systemObject} depth={depth} setSystemObject={setSystemObject} />)\n\n  // Includes Planets, Starports and Megaships in orbit\n  if (systemObject._children) {\n    for (const childSystemObject of systemObject._children) {\n      tableRows = tableRows.concat(<NavigationTableRowChildren key={`${childSystemObject.name}_${childSystemObject.id}`} stars={stars} systemObject={childSystemObject} setSystemObject={setSystemObject} depth={depth + 1} />)\n    }\n  }\n\n  if (systemObject._planetaryBases) {\n    for (const planetaryBase of systemObject._planetaryBases) {\n      tableRows = tableRows.concat(<NavigationTableRowChildren key={`${planetaryBase.name}_${planetaryBase.id}`} stars={stars} systemObject={planetaryBase} setSystemObject={setSystemObject} depth={depth + 1} />)\n    }\n  }\n  return tableRows\n}\n\nfunction NavigationTableRow ({ stars, systemObject, depth = 0, setSystemObject }) {\n  if (!systemObject.type) {\n    console.warn('Unknown type of system object', systemObject)\n    return null\n  }\n\n  if (systemObject.type === 'Null') {\n    if (systemObject._children.length > 0 && stars.length > 1) {\n      return (<tr className='table-row--disabled'><td colSpan='2'><hr /></td></tr>)\n    } else {\n      return null\n    }\n  }\n\n  const isLandable = systemObject.isLandable || SPACE_STATIONS.concat(MEGASHIPS).includes(systemObject.type) || PLANETARY_BASES.includes(systemObject.type)\n  const isAtmospheric = systemObject.atmosphereComposition && !systemObject?.subType?.toLowerCase()?.includes('gas giant')\n\n  // TODO Move to icon class\n  let iconClass = 'icon system-object-icon icarus-terminal-'\n  switch (systemObject.type.toLowerCase()) {\n    case 'star':\n      iconClass += 'star'\n      break\n    case 'outpost':\n      iconClass += 'outpost'\n      break\n    case 'asteroid base':\n      iconClass += 'asteroid-base'\n      break\n    case 'coriolis starport':\n      iconClass += 'coriolis-starport'\n      break\n    case 'ocellus starport':\n      iconClass += 'ocellus-starport'\n      break\n    case 'orbis starport':\n      iconClass += 'orbis-starport'\n      break\n    case 'planet':\n      if (isLandable) {\n        if (isAtmospheric) {\n          iconClass += 'planet-atmosphere-landable'\n        } else {\n          iconClass += 'planet-landable'\n        }\n      } else {\n        if (isAtmospheric) {\n          iconClass += 'planet-atmosphere'\n        } else {\n          iconClass += 'planet'\n        }\n      }\n      break\n    case 'mega ship':\n      iconClass += 'megaship'\n      break\n    default:\n      if (PLANETARY_BASES.includes(systemObject.type)) {\n        if (SURFACE_PORTS.includes(systemObject.type)) {\n          iconClass += 'planetary-port'\n        } else {\n          iconClass += 'settlement'\n        }\n      }\n  }\n\n  if (isLandable) { iconClass += ' text-secondary' }\n\n  return (\n    <tr data-system-object-name={systemObject.name} tabIndex='2' onFocus={() => setSystemObject(systemObject)}>\n      <td>\n        <div style={{ paddingLeft: `${(depth * 0.8) + 2}rem`, paddingRight: '.75rem' }} className='text-no-wrap'>\n          <i className={iconClass} />\n          {systemObject.label\n            ? <>\n                <span className='visible-medium'>{systemObject.label}</span>\n                <span className='hidden-medium'>{systemObject.name}</span>\n              </>\n            : systemObject.name}\n          <span className={systemObject.isLandable ? 'text-secondary' : ''}>\n            {(systemObject.atmosphereComposition && !systemObject?.subType?.toLowerCase()?.includes('gas giant')) && <i className='float-right icon icarus-terminal-planet-atmosphere' />}\n            {systemObject.volcanismType && systemObject.volcanismType !== 'No volcanism' && <i className='float-right icon icarus-terminal-planet-volcanic' />}\n            {systemObject.terraformingState && systemObject.terraformingState !== 'Not terraformable' && systemObject.terraformingState !== 'Terraformed' && <i className='float-right icon icarus-terminal-planet-terraformable' />}\n            {systemObject?.subType?.toLowerCase() === 'earth-like world' && <i className='float-right icon icarus-terminal-planet-earthlike' />}\n            {systemObject?.subType?.toLowerCase() === 'ammonia world' && <i className='float-right icon icarus-terminal-planet-ammonia-world' />}\n            {(systemObject?.subType?.toLowerCase()?.includes('water world') || systemObject?.subType?.toLowerCase()?.includes('water giant')) && <i className='float-right icon icarus-terminal-planet-water-world' />}\n            {(systemObject?.subType?.toLowerCase() === 'high metal content world' || systemObject?.subType?.toLowerCase() === 'metal rich') && <i className='float-right icon icarus-terminal-planet-high-metal-content' />}\n            {systemObject?.subType?.toLowerCase()?.includes('gas giant') && <i className='float-right icon icarus-terminal-planet-gas-giant' />}\n            {systemObject?.subType?.toLowerCase()?.includes('water-based life') && <i className='float-right icon icarus-terminal-planet-water-based-life' />}\n            {systemObject?.subType?.toLowerCase()?.includes('ammonia-based life') && <i className='float-right icon icarus-terminal-planet-ammonia-based-life' />}\n            {systemObject?.subType?.toLowerCase()?.includes('with life') && <i className='float-right icon icarus-terminal-planet-life' />}\n            {systemObject?.signals?.biological > 0 && <i className='float-right icon icarus-terminal-plant' />}\n            {systemObject.rings && <i className='float-right icon icarus-terminal-planet-ringed' />}\n            {(systemObject?.subType?.toLowerCase() === 'earth-like world'\n              || systemObject?.subType?.toLowerCase() === 'water world'\n              || systemObject?.subType?.toLowerCase() === 'ammonia world'\n              || (systemObject.terraformingState && systemObject.terraformingState !== 'Not terraformable' && systemObject.terraformingState !== 'Terraformed')\n              || systemObject?.subType?.toLowerCase()?.includes('class ii gas giant')\n              || systemObject?.subType?.toLowerCase() === 'metal rich'\n            )\n              && <i className='float-right text-success icon icarus-terminal-credits' />}\n          </span>\n        </div>\n      </td>\n      <td\n        className='hidden-small text-right text-no-transform text-no-wrap'\n      >{systemObject.distanceToArrival ? `${systemObject.distanceToArrival.toLocaleString(undefined, { maximumFractionDigits: 0 })} Ls` : ''}\n      </td>\n    </tr>\n  )\n}\n"
  },
  {
    "path": "src/client/components/panels/nav/navigation-system-map-panel.js",
    "content": "// import { useEffect } from 'react'\nimport { useState } from 'react'\nimport SystemMap from 'components/panels/nav/system-map/system-map'\nimport CopyOnClick from 'components/copy-on-click'\nimport factionStates from '../../../../shared/faction-states'\n\nexport default function NavigationSystemMapPanel ({ system, systemObject, setSystemObject, getSystem, cmdrStatus, rescanSystem = () => {}, rescanInProgress = false }) {\n  const [showSystemDetails, setShowSystemDetails] = useState(true)\n\n  if (!system) return null\n\n  let factionStateDescription = system?.state?.replace(/([a-z])([A-Z])/g, '$1 $2')\n\n  if (system.state) {\n    Object.keys(factionStates).some(factionState => {\n      if (system.state.replace(/ /g, '').toLowerCase() === factionState.toLowerCase()) {\n        factionStateDescription = factionStates[factionState].description\n        return true\n      }\n      return false\n    })\n  }\n\n  // /*\n  // const onScroll = (event) => {\n  //   document.getElementById('navigation-panel__map-background').style.setProperty('--background-position-y-offset-stars', '-'+(event.target.scrollTop / 20)+'px')\n  //   document.getElementById('navigation-panel__map-background').style.setProperty('--background-position-y-offset-grid', '-'+(event.target.scrollTop / 10)+'px')\n  // }\n\n  // useEffect(() => {\n  //   document.getElementById('navigation-panel__map-foreground').addEventListener('scroll', onScroll);\n  // },[])\n  // */\n\n  // Check if any bodies are visible on map (i.e. any stars *or* any \"additional objects\")\n  const visibleBodiesOnMap = (!system.stars || (system.stars.length === 1 && (system.stars?.[0]?._children?.length) === 0))\n\n  if (visibleBodiesOnMap) {\n    return (\n      <div className={`navigation-panel__map ${systemObject ? 'navigation-panel__map--inspector' : ''}`}>\n        <div className='text-center-both' style={{ zIndex: '30', pointerEvents: 'none' }}>\n          <h2>\n            <span className='text-primary text-blink-slow'>No system information</span><br />\n            <span className='text-info text-muted' style={{ fontSize: '1.5rem' }}>Telemetry Unavailable</span>\n          </h2>\n        </div>\n        <div id='navigation-panel__map-background' className='navigation-panel__map-background'>\n          <div className='navigation-panel__map-frame'>\n            <div className='navigation-panel__map-frame-border navigation-panel__map-frame-border-top-left' />\n            <div className='navigation-panel__map-frame-border navigation-panel__map-frame-border-top-right' />\n            <div className='navigation-panel__map-frame-border navigation-panel__map-frame-border-bottom-left' />\n            <div className='navigation-panel__map-frame-border navigation-panel__map-frame-border-bottom-right' />\n          </div>\n          <div id='navigation-panel__map-foreground' className='navigation-panel__map-foreground scrollable'>\n            <SystemMap system={system} setSystemObject={setSystemObject} />\n          </div>\n          <div className='system-map__toolbar-background' />\n          <div className='system-map__toolbar'>\n            <LocationInformation system={system} cmdrStatus={cmdrStatus} rescanSystem={rescanSystem} rescanInProgress={rescanInProgress} />\n            <div className='system-map__info fx-fade-in text-uppercase'>\n              <span className='text-info'>\n                <i className='icarus-terminal-system-orbits' style={{ fontSize: '1.5rem', float: 'left', position: 'relative', left: '-.15rem' }} />\n                <CopyOnClick append=' system'>{system?.name}</CopyOnClick>\n              </span>\n              <div className='system-map__info--system-facilities'>\n                <span className='text-primary text-muted'>Unknown System</span>\n              </div>\n            </div>\n          </div>\n          <div className='text-muted'>\n            {system.position &&\n              <div className='system-map__system-position text-info text-muted text-no-wrap fx-fade-in'>\n                {system.position?.[0]}<br />{system.position?.[1]}<br />{system.position?.[2]}\n              </div>}\n          </div>\n\n          <div className='fx-fade-in'>\n            {!system?.scanPercentComplete && \n              <div className='system-map__system-telemetry--text text-info text-uppercase text-no-wrap' onClick={(e) => rescanSystem()}>\n                <p style={{margin: '0 4rem .15rem 0'}} className={rescanInProgress ? 'text-blink-slow' : 'text-muted'}>\n                  <i className='icarus-terminal-scan float-left' style={{fontSize: '2.5rem', marginRight: '.15rem'}}/>\n                  NO SCAN<br/>DATA\n              </p>\n            </div>}\n         </div>\n        </div>\n      </div>\n    )\n  }\n\n  return (\n    <div className={`navigation-panel__map ${systemObject ? 'navigation-panel__map--inspector' : ''}`}>\n      <div id='navigation-panel__map-background' className='navigation-panel__map-background'>\n        <div className='navigation-panel__map-frame'>\n          <div className='navigation-panel__map-frame-border navigation-panel__map-frame-border-top-left' />\n          <div className='navigation-panel__map-frame-border navigation-panel__map-frame-border-top-right' />\n          <div className='navigation-panel__map-frame-border navigation-panel__map-frame-border-bottom-left' />\n          <div className='navigation-panel__map-frame-border navigation-panel__map-frame-border-bottom-right' />\n        </div>\n        <div id='navigation-panel__map-foreground' className='navigation-panel__map-foreground scrollable'>\n          <SystemMap system={system} setSystemObject={setSystemObject} />\n        </div>\n        <div\n          onClick={() => setShowSystemDetails(!showSystemDetails)}\n          className={`system-map__system-information ${showSystemDetails ? 'system-map__system-information--open' : 'button'}`}>\n          {showSystemDetails === true\n            ? <div className='fx-fade-in'>\n              <h3 className='text-primary text-muted' style={{ position: 'relative', top: '-.1rem', marginLeft: '1.5rem'}}>System Information</h3>\n              <i className='icarus-terminal-chevron-down text-primary text-muted' style={{ position: 'absolute', top: '.5rem', right: '.65rem' }} />\n              <hr className='small muted' style={{marginTop: '.3rem', marginRight: '-1.75rem', marginBottom: '.3rem'}}/>\n              <PointsOfInterest system={system} />\n              {system.economy && system.economy?.primary !== 'Unknown' && system?.economy?.primary !== 'None' &&\n                <h3 className='text-primary'>\n\n                  <i className='icon icarus-terminal-economy' style={{ fontSize: '1rem', position: 'relative', top: '0.05rem', marginRight: '.15rem' }} />{system.economy.primary}\n                  {system.economy.secondary && system.economy.secondary !== 'Unknown' && system.economy.secondary !== 'None' && ` & ${system.economy.secondary}`}\n                  {' '}Economy\n\n                </h3>}\n              {system?.population > 0 &&\n                <h3 className='text-primary'>\n                  <i className='icon icarus-terminal-engineer' style={{ fontSize: '1rem', position: 'relative', top: '0.05rem', marginRight: '.15rem' }} />Population {system.population.toLocaleString()}\n                </h3>}\n              {system.faction && system?.faction !== 'Unknown' &&\n                <h3 className='text-primary'>\n                  <i className='icon icarus-terminal-power' style={{ fontSize: '1rem', position: 'relative', top: '0.05rem', marginRight: '.15rem' }} />{system.faction}\n                </h3>}\n              {system.allegiance && system.allegiance !== 'Unknown' &&\n                <h3 className='text-primary'>\n                  <i className='icon icarus-terminal-shield' style={{ fontSize: '1rem', position: 'relative', top: '0.05rem', marginRight: '.15rem' }} />\n                  {system.allegiance && system.allegiance !== 'Unknown' && system.allegiance.replace(/([a-z])([A-Z])/g, '$1 $2')}\n                  {system.government && system.government !== 'None' && system.government !== 'Unknown' && <><span className='seperator' />{system.government}</>}\n                  {(system.government && system.government !== 'None' && system.government !== 'Unknown' && system.government !== 'Anarchy' && system.security !== system.government) ? <><span className='seperator' />{system.security}</> : ''}\n\n                </h3>}\n              {system.state && system.state !== 'Unknown' && system.state !== 'None' && factionStateDescription &&\n                <h3 className='text-info'>\n                  <i className='icon icarus-terminal-warning' style={{ fontSize: '1rem', position: 'relative', top: '0.05rem', marginRight: '.15rem' }} />\n                  {factionStateDescription}\n                </h3>}\n            </div>\n            : <>\n              <span style={{display: 'block', minHeight: '2.9rem'}}>\n                {/* {system.detail && system.detail.bodies && system.detail.bodies.length > 0 && */}\n                <i className='icon icarus-terminal-info' style={{ fontSize: '2rem', position: 'relative', top: '.4rem', textShadow: 'none' }} />\n                <i className='icarus-terminal-chevron-up' style={{ position: 'relative', top: '.5rem', left: '-.25rem' }} />\n              </span>\n            </>}\n        </div>\n\n        <div className='fx-fade-in'>\n          {system?.scanPercentComplete && system?.scanPercentComplete !== 100 &&\n            <div className={`system-map__system-telemetry--progress text-uppercase text-secondary ${rescanInProgress ? 'text-blink-slow' : ''}`} onClick={(e) => rescanSystem()}>\n              <i className='icarus-terminal-scan float-left' style={{fontSize: '2.5rem', marginLeft: '.25rem'}}/>\n              <div style={{position: 'absolute', right: 0}}>\n                EDSM {system?.scanPercentComplete}% <br />\n                <progress value={system?.scanPercentComplete} max='100' className='progress--secondary progress--border' style={{margin: '.15rem 0 -.1rem 0', height: '1.25rem', width: '5.5rem'}}/>\n              </div>\n          </div>}\n          {system?.scanPercentComplete === 100 &&\n            <div className='system-map__system-telemetry--text text-primary text-uppercase text-no-wrap'  onClick={(e) => rescanSystem()}>\n            <p style={{margin: '0 4rem .15rem 0'}} className={rescanInProgress ? 'text-blink-slow' : 'text-muted'}>\n              <i className='icarus-terminal-scan float-left' style={{fontSize: '2.5rem', marginRight: '.15rem'}}/>\n              SYSTEM<br/>SCANNED\n          </p>\n          </div>}\n          {!system?.scanPercentComplete && \n            <div className='system-map__system-telemetry--text text-info text-uppercase text-no-wrap' onClick={(e) => rescanSystem()}>\n              <p style={{margin: '0 4rem .15rem 0'}} className={rescanInProgress ? 'text-blink-slow' : 'text-muted'}>\n                <i className='icarus-terminal-scan float-left' style={{fontSize: '2.5rem', marginRight: '.15rem'}}/>\n                NO SCAN<br/>DATA\n            </p>\n          </div>}\n          {system.position &&\n            <div className='system-map__system-position text-info text-muted text-no-wrap'>\n              {system.position?.[0]}, {system.position?.[1]}, {system.position?.[2]}\n            </div>}\n        </div>\n\n        <div className='system-map__toolbar-background' />\n        <div className='system-map__toolbar'>\n          <LocationInformation system={system} cmdrStatus={cmdrStatus}/>\n          <div className='system-map__info fx-fade-in text-uppercase'>\n            <span className='text-info'>\n              <i className='icarus-terminal-system-orbits' style={{ fontSize: '1.5rem', float: 'left', position: 'relative', left: '-.15rem' }} />\n              <CopyOnClick append=' system'>{system.name}</CopyOnClick>\n            </span>\n            <span className='text-center-vertical' style={{pointerEvents: 'none'}}>\n             {system.detail && system.detail.bodies && system.detail.bodies.length > 0 &&\n                <h4 className='text-primary' style={{ marginLeft: '2.6rem', marginTop: '1.2rem'}}>\n                  {system.detail.bodies.length} {system.detail.bodies.length === 1 ? 'body found in system' : 'bodies found in system'}\n                </h4>}\n            </span>\n          </div>\n        </div>\n      </div>\n    </div>\n  )\n}\n\nfunction PointsOfInterest({ system }) {\n  const coriolisStarports = system?.spaceStations?.filter(station => station?.type === 'Coriolis Starport')?.length ?? 0\n  const ocellusStarports = system?.spaceStations?.filter(station => station?.type === 'Ocellus Starport')?.length ?? 0\n  const orbisStarports = system?.spaceStations?.filter(station => station?.type === 'Orbis Starport')?.length ?? 0\n  const asteroidBases = system?.spaceStations?.filter(station => station?.type === 'Asteroid base')?.length ?? 0\n  const outposts = system?.spaceStations?.filter(station => station?.type === 'Outpost')?.length ?? 0\n\n  const inhabitedSystem = (system.spaceStations.length > 0 || system.planetaryPorts.length > 0 || system.megaships.length > 0 || system.settlements.length > 0)\n\n  if (inhabitedSystem) {\n    return (\n      <div className='system-map__info--icons'>\n        <div style={{ width: '100%' }}>\n          {coriolisStarports > 0 && <span className='system-map__info-icon'><i className='icon icarus-terminal-coriolis-starport' /><span className='count'>{coriolisStarports}</span></span>}\n          {ocellusStarports > 0 && <span className='system-map__info-icon'><i className='icon icarus-terminal-ocellus-starport' /><span className='count'>{ocellusStarports}</span></span>}\n          {orbisStarports > 0 && <span className='system-map__info-icon'><i className='icon icarus-terminal-orbis-starport' /><span className='count'>{orbisStarports}</span></span>}\n          {asteroidBases > 0 && <span className='system-map__info-icon'><i className='icon icarus-terminal-asteroid-base' /><span className='count'>{asteroidBases}</span></span>}\n          {outposts > 0 && <span className='system-map__info-icon'><i className='icon icarus-terminal-outpost' /><span className='count'>{outposts}</span></span>}\n          {system.megaships.length > 0 && <span className='system-map__info-icon'><i className='icon icarus-terminal-megaship' /><span className='count'>{system.megaships.length}</span></span>}\n          {system.planetaryPorts.length > 0 && <span className='system-map__info-icon'><i className='icon icarus-terminal-planetary-port' /><span className='count'>{system.planetaryPorts.length}</span></span>}\n          {system.settlements.length > 0 && <span className='system-map__info-icon'><i className='icon icarus-terminal-settlement' /><span className='count'>{system.settlements.length}</span></span>}\n        </div>\n      </div>\n    )\n  }\n  \n  const biologicalSignals = system.bodies.reduce((total, body) => total + (body?.signals?.biological ?? 0), 0)\n\n  const geologicalSignals = system.bodies.reduce((total, body) => {\n    let geologicalSignals = body?.signals?.geological ?? 0\n\n    // If no geological signals BUT the planet is landable *and* a body is known\n    // to have volcanic activity then it must be the source of *at least* one\n    // geological signal\n    if (geologicalSignals === 0 && body.isLandable && body.volcanismType && body.volcanismType !== 'No volcanism') {\n      geologicalSignals++\n    }\n\n    return total + geologicalSignals\n  }, 0)\n\n  const humanSignals = system.bodies.reduce((total, body) => total + (body?.signals?.human ?? 0), 0)\n  const earthlikeWorlds = system.bodies.reduce((total, body) => body?.subType?.toLowerCase() === 'earth-like world' ? total + 1 : total, 0)\n  const waterWorlds = system.bodies.reduce((total, body) => body?.subType?.toLowerCase() === 'water world' ? total + 1 : total, 0)\n  const ammoniaWorlds = system.bodies.reduce((total, body) => body?.subType?.toLowerCase() === 'ammonia world' ? total + 1 : total, 0)\n  const terraformableWorlds = system.bodies.reduce((total, body) => (body.terraformingState && body.terraformingState !== 'Not terraformable' && body.terraformingState !== 'Terraformed') ? total + 1 : total, 0)\n  const highValueGasGiants = system.bodies.reduce((total, body) => body?.subType?.toLowerCase()?.includes('class ii gas giant') ? total + 1 : total, 0)\n  const metalRichPlanets = system.bodies.reduce((total, body) => body?.subType?.toLowerCase() === 'metal rich' ? total + 1 : total, 0)\n\n  const interestingFeatures = (biologicalSignals > 0 || geologicalSignals > 0 || humanSignals > 0 || earthlikeWorlds > 0 || waterWorlds > 0 || ammoniaWorlds > 0 || terraformableWorlds > 0 || highValueGasGiants > 0 || metalRichPlanets > 0)\n\n  if (interestingFeatures) {\n    return (\n      <div className='system-map__info--icons'>\n        <div style={{ width: '100%' }}>\n          {humanSignals > 0 && <h3 className='text-primary'><span className='system-map__info-icon'><i className='icon icarus-terminal-poi' /><span className='count'>{humanSignals} {humanSignals === 1 ? 'Human Origin Signal' : 'Human Origin Signals'}</span></span></h3>}\n          {biologicalSignals > 0 && <h3 className='text-primary'><span className='system-map__info-icon'><i className='icon icarus-terminal-plant' /><span className='count'>{biologicalSignals} {biologicalSignals === 1 ? 'Biological Signal' : 'Biological Signals'}</span></span></h3>}\n          {geologicalSignals > 0 && <h3 className='text-primary'><span className='system-map__info-icon'><i className='icon icarus-terminal-planet-volcanic' /><span className='count'>{geologicalSignals} {geologicalSignals === 1 ? 'Geological Signal' : 'Geological Signals'}</span></span></h3>}\n          {earthlikeWorlds > 0 && <h3 className='text-primary'><span className='system-map__info-icon'><i className='icon icarus-terminal-planet-earthlike' /><span className='count'>{earthlikeWorlds} {earthlikeWorlds === 1 ? 'Earth-like World' : 'Earth-like Worlds'}</span></span></h3>}\n          {waterWorlds > 0 && <h3 className='text-primary'><span className='system-map__info-icon'><i className='icon icarus-terminal-planet-water-world' /><span className='count'>{waterWorlds} {waterWorlds === 1 ? 'Water World' : 'Water Worlds'}</span></span></h3>}\n          {ammoniaWorlds > 0 && <h3 className='text-primary'><span className='system-map__info-icon'><i className='icon icarus-terminal-planet-ammonia-world' /><span className='count'>{ammoniaWorlds} {ammoniaWorlds === 1 ? 'Ammonia World' : 'Ammonia Worlds'}</span></span></h3>}\n          {terraformableWorlds > 0 && <h3 className='text-primary'><span className='system-map__info-icon'><i className='icon icarus-terminal-planet-terraformable' /><span className='count'>{terraformableWorlds} {terraformableWorlds === 1 ? 'Terraformable Planet' : 'Terraformable Planets'}</span></span></h3>}\n          {highValueGasGiants > 0 && <h3 className='text-primary'><span className='system-map__info-icon'><i className='icon icarus-terminal-planet-gas-giant' /><span className='count'>{highValueGasGiants} {highValueGasGiants === 1 ? 'Class II Gas Giant' : 'Class II Gas Giants'}</span></span></h3>}\n          {metalRichPlanets > 0 && <h3 className='text-primary'><span className='system-map__info-icon'><i className='icon icarus-terminal-planet-high-metal-value' /><span className='count'>{metalRichPlanets} {metalRichPlanets === 1 ? 'Metal Rich Planet' : 'Metal Rich Planets'}</span></span></h3>}\n       </div>\n      </div>\n    )\n  }\n\n  return (\n    <h3 className='system-map__info--icons text-uppercase text-info text-muted'><span className='system-map__info-icon'><span className='count'>No notable signals</span></span></h3>\n   )\n}\n\nfunction LocationInformation ({ system, cmdrStatus, rescanSystem, rescanInProgress }) {\n  return (\n    <div className='system-map__location fx-fade-in hidden-small'>\n      {system?.distance > 0 &&\n        <div className='text-center-vertical text-right'>\n          <h3 className='text-primary text-no-wrap'>\n            <div>\n              {system.distance.toLocaleString(undefined, { maximumFractionDigits: 2 })} LY <span className='text-muted'>from</span>\n            </div>\n            <div className='text-muted'>current system</div>\n          </h3>\n        </div>}\n      {system?.distance === 0 && system.isCurrentLocation === false &&\n        <div className='text-primary text-muted text-center-vertical'>\n          <h3>\n            Unknown system\n          </h3>\n        </div>}\n      {system.isCurrentLocation === true && cmdrStatus?.flags?.fsdJump === false &&\n        <div className='text-info text-center-vertical'>\n          <h3 style={{ width: '100%' }}>\n            <i className='icon icarus-terminal-location-filled text-secondary' style={{ position: 'relative', top: '.2rem', left: '-.2rem', lineHeight: '1rem' }} />\n            {(cmdrStatus?._location)\n              ? cmdrStatus._location.map((loc, i) =>\n                <span key={`location_${loc}_${i}`}>\n                  {i > 0 && <>\n                    <br/>\n                    <i className='icon icarus-terminal-chevron-right text-muted' style={{ fontSize: '.8rem', margin: '0 .25rem' }} />\n                  </>}\n                  {loc}\n                </span>\n                )\n              : 'Current location'}\n          </h3>\n        </div>}\n    </div>\n  )\n}\n"
  },
  {
    "path": "src/client/components/panels/nav/system-map/system-map-object.js",
    "content": "import Icons from 'lib/icons'\nimport { SURFACE_PORTS, PLANETARY_OUTPOSTS, SETTLEMENTS } from '../../../../../shared/consts'\n\nconst USE_ICONS_FOR_PLANETS = false\nconst SHOW_LABELS = true\nconst DEFAULT_RADIUS = 2000\n\n// TODO This has been ported to JSX but would be easier to maintain if each\n// type of object was refactored out into it's own component\nexport default function SystemMapObject ({ systemObject, setSystemObject, parentSystemObject, labels = true }) {\n  const CLICKABLE_AREA_PADDING = 250\n  const MAX_LABEL_WIDTH = 3000\n\n  // Draw for Planets and Stars\n  if (['Planet', 'Star'].includes(systemObject?.type)) {\n    // If USE_ICONS_FOR_PLANETS is set, use alternate icon shape\n    if (USE_ICONS_FOR_PLANETS) {\n      const CORRECT_FOR_IMAGE_OFFSET = 140\n      const x = (systemObject._x - 500)\n      const y = (systemObject._y - 500)\n      const h = systemObject._r * 2\n      const w = systemObject._r * 2\n\n      const h2 = systemObject._r + (CLICKABLE_AREA_PADDING * 2)\n      const w2 = systemObject._r + (CLICKABLE_AREA_PADDING * 2)\n\n      return (\n        <>\n          <svg\n            preserveAspectRatio='xMinYMid meet'\n            x={x}\n            y={y}\n            height={h}\n            width={w}\n            className='system-map__planet-icon'\n          >\n            {Icons.Planet}\n          </svg>\n          {/* Transparent interactive overlay for icon (as transparent SVG parts not clickable) */}\n          <rect\n            x={x - CORRECT_FOR_IMAGE_OFFSET}\n            y={y - CORRECT_FOR_IMAGE_OFFSET}\n            height={h2}\n            width={w2}\n            onFocus={() => setSystemObject(systemObject)}\n            tabIndex='0'\n            className='system-map__station'\n            data-system-object-type={systemObject.type}\n            data-system-object-name={systemObject.name}\n            opacity='0.85'\n          />\n        </>\n      )\n    } else {\n      const x = systemObject._x || 0\n      const y = systemObject._y || 0\n      const r = systemObject._r || DEFAULT_RADIUS\n\n      // An image is used underneath the main SVG to easily add a texture to\n      // the planet (could be done without foreignObject, but this is simpler)\n      // const imgH = (systemObject._r) * 2\n      // const imgW = (systemObject._r) * 2\n      // const imgX = (systemObject._x - (imgW / 2))\n      // const imgY = (systemObject._y - (imgH / 2))\n\n      const textNameContents = truncateString(systemObject.label, (systemObject.orbitsStar ? 10 : 20))\n      const textNameXOffset = textNameContents.length * 120 // Roughly center text\n\n      // Check wider is no wider than planet (so they don't overlap)\n      const textNameXLength = systemObject.orbitsStar || textNameContents.length <= 10\n        ? textNameXOffset * 2 > MAX_LABEL_WIDTH ? MAX_LABEL_WIDTH : false\n        : textNameXOffset * 2 > MAX_LABEL_WIDTH ? MAX_LABEL_WIDTH : textNameXOffset * 2\n\n      const textNameX = systemObject.orbitsStar ? x - textNameXOffset : x + (r * 1) + 200\n      const textNameY = systemObject.orbitsStar ? y - (r * 1) - 700 : y - 100\n\n      const textDistanceContents = `${systemObject.distanceToArrival.toFixed(0)} Ls`\n      const textDistanceX = systemObject.orbitsStar ? textNameX : x + (r * 1) + 200\n      const textDistanceY = systemObject.orbitsStar ? y - (r * 1) - 300 : y + 300\n\n      // const CORRECT_FOR_IMAGE_OFFSET_X = ['Star', 'Null'].includes(parentSystemObject?.type) ? 550 : 2000\n      // const CORRECT_FOR_IMAGE_OFFSET_Y = ['Star', 'Null'].includes(parentSystemObject?.type) ? 150 : 100\n\n      const CORRECT_FOR_IMAGE_OFFSET_X = 250\n      const CORRECT_FOR_IMAGE_OFFSET_Y = 200\n\n      const imageX = x - CORRECT_FOR_IMAGE_OFFSET_X\n      const imageY = y - CORRECT_FOR_IMAGE_OFFSET_Y\n\n      let hasPlanetaryPort = false\n      let hasPlanetaryFacilities = false\n\n      // TODO Make these explict properties (bools) that are pre-calculated\n      systemObject?._planetaryBases?.forEach(base => {\n        if (PLANETARY_OUTPOSTS.concat(SETTLEMENTS).includes(base.type)) {\n          hasPlanetaryFacilities = true\n        }\n        if (SURFACE_PORTS.includes(base.type)) {\n          hasPlanetaryPort = true\n        }\n      })\n\n      return (\n        <g\n          className='system-map__system-object'\n          data-system-object-landable={systemObject.isLandable}\n          data-system-object-type={systemObject.type}\n          data-system-object-sub-type={systemObject.subType}\n          data-system-object-small={!!systemObject._small}\n          data-system-object-atmosphere={systemObject.atmosphereType}\n          data-system-object-name={systemObject.name}\n          tabIndex='0'\n          onFocus={() => setSystemObject(systemObject)}\n        >\n          {(systemObject.atmosphereType && systemObject.atmosphereType !== 'No atmosphere') &&\n            <g className='system-map__body'>\n              <g className='system-map__planet'>\n                <circle\n                  className='system-map__planet-atmosphere'\n                  cx={x - 0}\n                  cy={y - 0}\n                  r={r + 70}\n                />\n              </g>\n            </g>}\n          {SHOW_LABELS === true && labels === true &&\n            <>\n              <text\n                className='system-map__planet-name-text'\n                x={textNameX}\n                y={textNameY}\n                textLength={textNameXLength !== false ? `${textNameXLength}px` : null}\n                lengthAdjust='spacingAndGlyphs'\n              >\n                {textNameContents}\n              </text>\n              <text\n                className='system-map__planet-distance-text'\n                x={textDistanceX}\n                y={textDistanceY}\n              >\n                {textDistanceContents}\n              </text>\n            </>}\n          <g className='system-map__body'>\n            <g className='system-map__planet'>\n              <circle\n                id={`navigation-panel__${systemObject.id}`}\n                cx={x}\n                cy={y}\n                r={r}\n              />\n              <circle\n                className='system-map__planet-surface'\n                cx={x}\n                cy={y}\n                r={r}\n              />\n              {systemObject.rings &&\n                <>\n                  <defs>\n                    <mask\n                      id={`planet-ring-mask-${systemObject.id}`}\n                      className='system-map__planet-ring-mask'\n                    >\n                      <ellipse\n                        cx={x}\n                        cy={y}\n                        rx={r * 2}\n                        ry={r / 3}\n                        fill='white'\n                      />\n                      <ellipse\n                        cx={x}\n                        cy={y - (r / 5)}\n                        rx={r}\n                        ry={r / 3}\n                        fill='black'\n                      />\n                      <ellipse\n                        cx={x}\n                        cy={y - (r / 15)}\n                        rx={r * 1.2}\n                        ry={r / 5}\n                        fill='black'\n                      />\n                    </mask>\n                  </defs>\n                  <ellipse\n                    className='system-map__planet-ring'\n                    cx={x}\n                    cy={y}\n                    rx={r * 2}\n                    ry={r / 3}\n                    mask={`url(#planet-ring-mask-${systemObject.id})`}\n                    opacity='1'\n                  />\n                  <ellipse\n                    className='system-map__planet-ring'\n                    cx={x}\n                    cy={y - (r / 80)}\n                    rx={r * 1.85}\n                    ry={r / 4.2}\n                    mask={`url(#planet-ring-mask-${systemObject.id})`}\n                    opacity='.25'\n                  />\n                </>}\n            </g>\n            {hasPlanetaryFacilities && !hasPlanetaryPort &&\n              <svg\n                className='system-map__planetary-facility-icon'\n                x={imageX}\n                y={imageY}\n              >\n                {Icons.Settlement}\n              </svg>}\n            {hasPlanetaryPort &&\n              <svg\n                className='system-map__planetary-port-icon'\n                x={imageX}\n                y={imageY - 100}\n              >\n                {Icons['Planetary Port']}\n              </svg>}\n            {!hasPlanetaryFacilities && !hasPlanetaryPort && systemObject.isLandable &&\n              <svg\n                className='system-map__planetary-lander-icon'\n                x={imageX}\n                y={imageY - 100}\n              >\n                {Icons['Planet Lander']}\n              </svg>}\n          </g>\n        </g>\n      )\n    }\n  } else {\n    // Draw systemObjects that are not planets or stars using icons\n    const r = systemObject._r || DEFAULT_RADIUS\n    const CORRECT_FOR_IMAGE_OFFSET = 90\n\n    let imageY = (systemObject._y - (r / 2)) - CORRECT_FOR_IMAGE_OFFSET\n    let imageX = (systemObject._x - (r / 2)) - CORRECT_FOR_IMAGE_OFFSET\n    let viewBox = '0 0 1000 1000'\n\n    // Icon specific hacks\n    if (systemObject.type === 'Mega ship') {\n      imageX -= 30\n      imageY += 60\n    }\n\n    if (systemObject.type === 'Outpost') {\n      imageX -= 90\n    }\n\n    if (systemObject.type === 'Asteroid base') {\n      viewBox = '0 0 2000 2000'\n    }\n\n    const textNameContents = truncateString(systemObject.label, (systemObject.orbitsStar ? 10 : 20))\n    const textNameXOffset = textNameContents.length * 120 // Roughly center text\n\n    const textNameXLength = systemObject.orbitsStar || textNameContents.length <= 10\n      ? textNameXOffset * 2 > MAX_LABEL_WIDTH ? MAX_LABEL_WIDTH : false\n      : textNameXOffset * 2 > MAX_LABEL_WIDTH ? MAX_LABEL_WIDTH : textNameXOffset * 2\n\n    const textNameX = systemObject.orbitsStar ? systemObject._x - textNameXOffset : systemObject._x + (r * 1) + 200\n    const textNameY = systemObject.orbitsStar ? systemObject._y - (r * 1) - 700 : systemObject._y - 100\n\n    const textDistanceContents = `${systemObject.distanceToArrival.toFixed(0)} Ls`\n    const textDistanceXOffset = textDistanceContents.length * 95 // Roughly center text\n    const textDistanceX = systemObject.orbitsStar ? systemObject._x - textDistanceXOffset : systemObject._x + (r * 1) + 200\n    const textDistanceY = systemObject.orbitsStar ? systemObject._y - (r * 1) - 300 : systemObject._y + 300\n\n    return (\n      <g\n        className='system-map__system-object'\n        onFocus={() => setSystemObject(systemObject)}\n        tabIndex='0'\n        data-system-object-type={systemObject.type}\n        data-system-object-name={systemObject.name}\n      >\n        {/* Transparent interactive overlay for icon (as transparent SVG parts not clickable) */}\n        <circle\n          className='system-map__station'\n          cx={systemObject._x}\n          cy={systemObject._y}\n          r={systemObject._r - 50}\n        />\n        {/*  Inline SVG icon (loaded from string so can be easily styled) */}\n        <svg\n          className='system-map__station-icon'\n          x={imageX}\n          y={imageY}\n          height='1000'\n          width='1000'\n          preserveAspectRatio='xMinYMid meet'\n          viewBox={viewBox}\n        >\n          {Icons[systemObject.type]}\n        </svg>\n        {SHOW_LABELS === true && labels === true &&\n          <>\n            <text\n              className='system-map__planet-name-text'\n              x={textNameX}\n              y={textNameY}\n              textLength={textNameXLength !== false ? `${textNameXLength}px` : null}\n              lengthAdjust='spacingAndGlyphs'\n            >{textNameContents}\n            </text>\n            <text\n              className='system-map__planet-distance-text'\n              x={textDistanceX}\n              y={textDistanceY}\n            >{textDistanceContents}\n            </text>\n          </>}\n      </g>\n    )\n  }\n}\n\nfunction truncateString (string, maxLength) {\n  if (string.length > maxLength) {\n    return `${string.substring(0, maxLength - 1)}…`\n  }\n  return string\n}\n"
  },
  {
    "path": "src/client/components/panels/nav/system-map/system-map-star.js",
    "content": "import SystemMapObject from 'components/panels/nav/system-map/system-map-object'\n\nexport default function SystemMapStar ({ star, setSystemObject }) {\n  if (star.type === 'Null' && (!star._children || star._children.length === 0)) return null\n\n  let useLargerViewBox = false\n  if (star.rings) useLargerViewBox = true\n  if (star.subType === 'Neutron Star') useLargerViewBox = true\n  if (star?.subType?.startsWith('White Dwarf')) useLargerViewBox = true\n  if (star.subType === 'Black Hole') useLargerViewBox = true\n\n  // Modify subType to include full spectral class where known and matches\n  // e.g. display 'B7 (Blue-White) Star' instead of just 'B (Blue-White) Star'\n  let starDescription = star?.description ?? star?.subType\n  if (star?.subType && star?.spectralClass && String(star?.subType?.charAt(0) + star?.subType?.charAt(1)).trim() === star?.spectralClass?.charAt(0)) {\n    starDescription = <>{star.subType.replace(star.subType.charAt(0), star.spectralClass)}</>\n  }\n\n  return (\n    <div\n      className='system-map__planetary-system'\n      data-stellar-objects-horizontal={star._children.length}\n      data-stellar-objects-vertical={star._maxObjectsInOrbit}\n    >\n      <div\n        onClick={() => { if (star.type !== 'Null') setSystemObject(star) }}\n        className={`system-map__planetary-system-star ${star.id ? 'system-map__planetary-system-star--icon' : '0'}`}\n      >\n        {star.id &&\n          <div className='system-map__planetary-system-star-icon'>\n            <svg viewBox={useLargerViewBox ? '-4500 -4500 8500 8000' : '-2500 -2500 5000 5000'} preserveAspectRatio='xMinYMid meet'>\n              <SystemMapObject systemObject={star} setSystemObject={setSystemObject} labels={false} />\n            </svg>\n          </div>}\n        <h2>\n          <span className='fx-animated-text' data-fx-order='5'>\n            {star.type !== 'Null'\n              ? '' // <i className='icon icarus-terminal-star' />\n              : <i className='icon icarus-terminal-system-bodies' />} {star.name}&nbsp;&nbsp;\n          </span>\n        </h2>\n        <h3>\n          <span className='fx-animated-text text-primary' data-fx-order='6'>\n            {starDescription}\n          </span>\n        </h3>\n        {star.numberOfPlanets > 0 &&\n          <h4>\n            <span className='fx-animated-text text-primary' data-fx-order='7'>\n              {star.numberOfPlanets === 1 ? '1 orbiting body found' : `${star.numberOfPlanets} orbiting bodies found`}\n            </span>\n          </h4>}\n        {star.numberOfPlanets === 0 &&\n          <h4>\n            <span className='fx-animated-text text-primary text-muted' data-fx-order='7'>\n              No orbiting bodies found\n            </span>\n          </h4>}\n      </div>\n      {star._children && star._children.length > 0 &&\n        <div className='system-map__planetary-system-map' style={{ opacity: 1 }}>\n          <svg\n            viewBox={star._viewBox.join(' ')}\n            preserveAspectRatio='xMinYMid meet'\n          >\n            {star._children && star._children.length > 0 &&\n              <line\n                x1={star._children[0]._x}\n                y1={star._children[0]._y}\n                x2={star._children[star._children.length - 1]._x}\n                y2={star._children[star._children.length - 1]._y}\n                stroke='var(--color-system-map-line)'\n                strokeWidth='125'\n                opacity='0.25'\n              />}\n            {star._children.map((systemObject, i) =>\n              <g key={`system-map-object_${star.name}_${star.id}_${systemObject.id}`}>\n                {systemObject._children && systemObject._children.length > 0 &&\n                  <line\n                    x1={systemObject._x}\n                    y1={systemObject._y}\n                    x2={systemObject._children[systemObject._children.length - 1]._x}\n                    y2={systemObject._children[systemObject._children.length - 1]._y}\n                    stroke='var(--color-system-map-line)'\n                    strokeWidth='75'\n                    opacity='0.25'\n                  />}\n                <SystemMapObject systemObject={systemObject} setSystemObject={setSystemObject} parentSystemObject={star} />\n                {(systemObject?._children ?? []).map((itemInOrbit, i) =>\n                  <SystemMapObject key={`system-map-object_${itemInOrbit.id}`} systemObject={itemInOrbit} setSystemObject={setSystemObject} />\n                )}\n              </g>\n            )}\n          </svg>\n        </div>}\n    </div>\n  )\n}\n"
  },
  {
    "path": "src/client/components/panels/nav/system-map/system-map.js",
    "content": "import SystemMapStar from 'components/panels/nav/system-map/system-map-star'\nimport CopyOnClick from 'components/copy-on-click'\n\nexport default function SystemMap ({ system, setSystemObject }) {\n  if (!system) return null\n\n  return (\n    <>\n      <div className='system-map'>\n        <div className='system-map__overlay'/>\n        {system?.stars?.map(star =>\n          <SystemMapStar\n            key={`system-map_${system.name}_${star.name}_${star.id}`}\n            star={star}\n            setSystemObject={setSystemObject}\n          />\n        )}\n      </div>\n    </>\n  )\n}\n"
  },
  {
    "path": "src/client/components/panels/ship/ship-module-inspector-panel.js",
    "content": "import { useRouter } from 'next/router'\nimport EngineeringModifier from 'components/panels/ship/ship-status/engineering-modifer'\n\nexport default function ShipModuleInspectorPanel ({ module, setSelectedModule }) {\n  const router = useRouter()\n\n  if (!module) return (<div className='ship-panel__module-inspector ship-panel__module-inspector--hidden' />)\n\n  let inspectorTitle = 'Optional Module'\n  if (module.hardpoint) inspectorTitle = 'Hardpoint'\n  if (module.utility) inspectorTitle = 'Utility'\n  if (module.core) inspectorTitle = 'Core Module'\n\n  return (\n    <div className='inspector inspector--horizontal ship-panel__module-inspector'>\n      <div className='inspector__title' onClick={() => { setSelectedModule(null) }}>\n        <button className='inspector__close-button'>\n          <i className='icon icarus-terminal-chevron-right' />\n        </button>\n        <h3>{inspectorTitle}</h3>\n      </div>\n      <div className='inspector__contents scrollable'>\n        <div className='ship-panel__module-section text-uppercase'>\n          <h2 className='text-info' data-module-name={module.name} data-fx-order='3'>\n            {module.mount} {module.name}\n          </h2>\n          <h3 className='text-no-wrap'>\n            {module.class}{module.rating} <span className='text-muted'>{module.slotName}</span>\n          </h3>\n          <div className='text-primary'>\n            {module?.power > 0 && <p><span className='text-muted'>Power</span> {module.power} MW</p>}\n            {module?.mass > 0 && <p><span className='text-muted'>Mass</span> {module.mass} T</p>}\n            {module.description &&\n              <p className='text-primary text-muted'>\n                {module.description}\n              </p>}\n          </div>\n        </div>\n        {module.engineering &&\n          <>\n            <div className='ship-panel__module-section ship-panel__module-section--engineering text-uppercase'>\n              <h3 className='text-muted'>Engineering</h3>\n              <div className='ship-panel__module-section--engineering-tab'>\n                <p className='text-primary'>\n                  <span className='text-muted'>Blueprint </span>\n                  <span className='text-link' onClick={() => router.push({ pathname: '/eng/blueprints', query: { symbol: module.engineering.symbol } })}>\n                    <span className='text-link-text'>{module.engineering.originalName}</span>\n                  </span>\n                </p>\n                {module.engineering.experimentalEffect &&\n                  <p className='text-primary'>\n                    <span className='text-muted'>experimental</span>\n                    <span> {module.engineering.experimentalEffect}</span>\n                  </p>}\n                <p className='text-primary'>\n                  <span className='text-muted'>by</span> {module.engineering.engineer}\n                </p>\n                <p className='text-secondary' style={{ margin: 0, fontSize: '2rem', top: '.25rem', position: 'relative' }}>\n                  {[...Array(module.engineering.level)].map((j, i) =>\n                    <i\n                      key={`${module.name}_${module.slot}_engineering_${i}`}\n                      className='icon icarus-terminal-engineering'\n                    />\n                  )}\n                </p>\n              </div>\n            </div>\n            <div className='ship-panel__module-section ship-panel__module-section--engineering text-uppercase'>\n              <div className='ship-panel__module-section--engineering-tab'>\n                {module.engineering.modifiers.map(modifier =>\n                  modifier.improvement ? <EngineeringModifier module={module} modifier={modifier} /> : null\n                )}\n                {module.engineering.modifiers.map(modifier =>\n                  !modifier.improvement ? <EngineeringModifier module={module} modifier={modifier} /> : null\n                )}\n              </div>\n            </div>\n          </>}\n      </div>\n    </div>\n  )\n}\n"
  },
  {
    "path": "src/client/components/panels/ship/ship-modules-panel.js",
    "content": "import { UNKNOWN_VALUE } from '../../../../shared/consts'\nimport ShipModules from 'components/panels/ship/ship-status/ship-modules'\n\nexport default function ShipStatusPanel ({ ship, selectedModule, setSelectedModule, cmdrStatus, toggleSwitches, toggleSwitch }) {\n  if (!ship) return null\n\n  if (ship.type === UNKNOWN_VALUE && ship.name === UNKNOWN_VALUE && ship.ident === UNKNOWN_VALUE) {\n    return (\n      <div\n        className='text-primary text-blink-slow text-center-both'\n        style={{ zIndex: '30', pointerEvents: 'none' }}\n      >\n        <h2>No ship found</h2>\n      </div>\n    )\n  }\n\n  return (\n    <>\n      <div className={`ship-panel__modules scrollable ${selectedModule ? 'ship-panel__modules--module-inspector' : ''}`}>\n        <h2>Ship Internals</h2>\n        <h3 className='text-primary'>\n          Modules &amp; Engineering Upgrades\n        </h3>\n        <ShipModules\n          name='Hardpoints'\n          modules={\n              Object.values(ship.modules)\n                .filter(module => ['huge', 'large', 'medium', 'small']\n                  .includes(module?.size))\n            }\n          selectedModule={selectedModule}\n          setSelectedModule={setSelectedModule}\n        />\n        <ShipModules\n          name='Optional Internals'\n          modules={\n            Object.values(ship.modules)\n              .filter(module => {\n                if (!module.internal) return false\n                if (module.core) return false\n                if (module.slot === 'CodexScanner') return false // special case\n                return true\n              })\n            }\n          selectedModule={selectedModule}\n          setSelectedModule={setSelectedModule}\n        />\n        <ShipModules\n          name='Core Internals'\n          modules={\n              Object.values(ship.modules)\n                .filter(module => {\n                  if (!module.core && !ship.armour.includes(module.name)) return false\n                  return true\n                })\n            }\n          selectedModule={selectedModule}\n          setSelectedModule={setSelectedModule}\n        />\n        <ShipModules\n          name='Utility Mounts'\n          modules={\n            Object.values(ship.modules)\n              .filter(module => ['tiny']\n                .includes(module?.size))\n          }\n          selectedModule={selectedModule}\n          setSelectedModule={setSelectedModule}\n        />\n      </div>\n    </>\n  )\n}\n"
  },
  {
    "path": "src/client/components/panels/ship/ship-status/engineering-modifer.js",
    "content": "export default function EngineeringModifier ({ module, modifier }) {\n  return (\n    <p\n      key={`${module.name}_${module.slot}_engineering_modifier_${modifier.name}`}\n      className={modifier.improvement ? 'text-success' : 'text-danger'}\n      style={{ margin: 0, padding: 0 }}\n    >\n      <i\n        className={`icon icarus-terminal-chevron-${modifier.improvement ? 'up' : 'down'}`}\n        style={{ marginRight: '.25rem', fontSize: '1rem', position: 'relative', top: '.1rem' }}\n      />\n      {modifier.name}\n      <span style={{ marginLeft: '.5rem' }}>\n        <span className={modifier.improvement ? 'text-success' : 'text-danger'}>{modifier.difference}</span>\n      </span>\n    </p>\n  )\n}\n"
  },
  {
    "path": "src/client/components/panels/ship/ship-status/ship-instrumentation.js",
    "content": "import { useEffect, useRef } from 'react'\n\nconst applyScaling = (scaledWrapper, scaledContent) => {\n  try {\n    scaledContent.style.transform = 'scale(1, 1)'\n    const { width: cw, height: ch } = scaledContent.getBoundingClientRect()\n    const { width: ww, height: wh } = scaledWrapper.getBoundingClientRect()\n    const scaleAmtX = Math.min(ww / cw, wh / ch)\n    const scaleAmtY = scaleAmtX\n    scaledContent.style.transform = `translate(0, 0) scale(${scaleAmtX}, ${scaleAmtY})`\n    scaledContent.style.opacity = 1\n  } catch (e) {\n    console.log(e)\n  }\n}\n\nexport default function ShipInstrumentation ({ ship, cmdrStatus, toggleSwitches, toggleSwitch }) {\n  const scaledWrapper = useRef()\n  const scaledContent = useRef()\n\n  const panelActive = (ship.onBoard || cmdrStatus?.flags?.inSrv)\n  \n  useEffect(async () => {\n    const resizeEventHandler = () => {\n      if (scaledWrapper.current && scaledContent.current) {\n        applyScaling(scaledWrapper.current, scaledContent.current)\n      }\n    }\n    window.addEventListener('resize', resizeEventHandler)\n    resizeEventHandler()\n    return () => window.removeEventListener('resize', resizeEventHandler)\n  }, [])\n\n  useEffect(()=> {\n    if (scaledWrapper.current && scaledContent.current) {\n      applyScaling(scaledWrapper.current, scaledContent.current)\n    }\n  },[scaledWrapper.current,scaledContent.current])\n\n  return (\n    <div ref={scaledWrapper} style={{position: 'fixed', pointerEvents: 'none', top: '14.25rem', bottom: '2rem', right: '1rem', left: '5rem', xoverflow: 'hidden'}}>\n      <div\n        ref={scaledContent}\n        className='ship-panel__instrumentation fx-fade-in'\n        style={{ \n          position: 'absolute',\n          margin: 'auto', \n          top: 0,\n          left: 0,\n          right: 0,\n          bottom: 0,\n          maxWidth: '80rem',\n          opacity: 0\n        }}\n      >\n          <table className={`ship-panel__switches table--layout ${!ship.onBoard ? 'text-muted' : ''}`}>\n          <tbody>\n            <tr>\n              <td>\n                <label className='checkbox'>\n                  <span className={`checkbox__text ${(!ship.onBoard || !toggleSwitches.lights) && 'text-muted'}`}>\n                    Ship lights\n                  </span>\n                  <input\n                    type='checkbox'\n                    checked={ship.onBoard && toggleSwitches?.lights}\n                    onChange={() => toggleSwitch('lights')}\n                    disabled\n                  />\n                  <span className='checkbox__control' />\n                </label>\n              </td>\n              <td>\n                <label className='checkbox'>\n                  <span className={`checkbox__text ${(!ship.onBoard || !toggleSwitches.nightVision) && 'text-muted'}`}>\n                    Night vision\n                  </span>\n                  <input\n                    type='checkbox'\n                    checked={ship.onBoard && toggleSwitches?.nightVision}\n                    onChange={() => toggleSwitch('nightVision')}\n                    disabled\n                  />\n                  <span className='checkbox__control' />\n                </label>\n              </td>\n              <td>\n                <label className='checkbox'>\n                  <span className={`checkbox__text ${(!ship.onBoard || !toggleSwitches.cargoHatch) && 'text-muted'}`}>\n                    Cargo hatch\n                  </span>\n                  <input\n                    type='checkbox'\n                    checked={ship.onBoard && toggleSwitches?.cargoHatch}\n                    onChange={() => toggleSwitch('cargoHatch')}\n                    disabled\n                  />\n                  <span className='checkbox__control' />\n                </label>\n              </td>\n              <td>\n                <label className='checkbox'>\n                  <span className={`checkbox__text ${(!ship.onBoard || !toggleSwitches.landingGear) && 'text-muted'}`}>\n                    Landing gear\n                  </span>\n                  <input\n                    type='checkbox'\n                    checked={ship.onBoard && toggleSwitches?.landingGear}\n                    onChange={() => toggleSwitch('landingGear')}\n                    disabled\n                  />\n                  <span className='checkbox__control' />\n                </label>\n              </td>\n              <td>\n                <label className='checkbox'>\n                  <span className={`checkbox__text ${(!ship.onBoard || !toggleSwitches.hardpoints || cmdrStatus?.flags?.supercruise) ? 'text-muted' : ''}`}>\n                    Hard points\n                  </span>\n                  <input\n                    type='checkbox'\n                    checked={ship.onBoard && cmdrStatus?.flags?.supercruise === false && toggleSwitches?.hardpoints}\n                    onChange={() => toggleSwitch('hardpoints')}\n                    disabled\n                  />\n                  <span className='checkbox__control' />\n                </label>\n              </td>\n            </tr>\n          </tbody>\n        </table>\n\n        <table className={`ship-panel__ship-stats visible-medium table--layout`}\n          style={{\n            marginBottom: '4rem',\n          }}\n          >\n          <tbody className='text-info'>\n            <tr>\n              <td style={{ padding: 0, overflow: 'visible' }}>\n                <NavigationInstrumentation ship={ship} cmdrStatus={cmdrStatus} />\n              </td>\n              <td style={{ padding: 0, overflow: 'visible' }} className={`${!ship.onBoard ? 'text-muted' : ''}`}>\n                <PowerDistribution ship={ship} />\n              </td>\n            </tr>\n          </tbody>\n        </table>\n\n        <table className={`ship-panel__ship-stats table--layout`} style={{marginTop: '2rem', marginBottom: '4rem'}}>\n          <tbody className='text-info'>\n            <tr className='hidden-medium' >\n              <td rowSpan={4} style={{ padding: 0, overflow: 'visible' }}>\n                <NavigationInstrumentation ship={ship} cmdrStatus={cmdrStatus} />\n              </td>\n            </tr>\n            <tr className={`${!ship.onBoard ? 'text-muted' : ''}`}>\n              <td>\n                <span className='text-muted'>Max jump dist</span>\n                <span className={`value ${!ship.onBoard ? 'text-muted' : ''}`}>{ship.maxJumpRange || '-'} Ly</span>\n              </td>\n              <td>\n                <span className='text-muted'>Fuel reservoir</span>\n                <span className={`value ${!ship.onBoard ? 'text-muted' : ''}`}>{typeof ship?.fuelReservoir === 'number' ? <>{ship.fuelReservoir} T</>: '-'}</span>\n              </td>\n              <td className='hidden-medium' rowSpan={4} style={{ padding: 0, overflow: 'visible' }}>\n                <PowerDistribution ship={ship} />\n              </td>\n            </tr>\n            <tr className={`${!ship.onBoard ? 'text-muted' : ''}`}>\n              <td>\n                <span className='text-muted'>Total mass</span>\n                <span className={`value ${!ship.onBoard ? 'text-muted' : ''}`}>{ship.mass} T</span>\n              </td>\n              <td>\n                <span className='text-muted'>\n                  Fuel {ship?.onBoard == true && <>{ship?.fuelLevel ?? 0}/{ship?.fuelCapacity ?? 0} T</>}\n                </span>\n                <span className='value'>\n                  <progress\n                    style={{ margin: '.25rem 0 0 0', height: '1.5rem', display: 'inline-block', width: '10rem', opacity: ship.onBoard ? 1 : 0.5 }}\n                    value={ship?.fuelLevel ?? 0}\n                    max={ship?.fuelCapacity ?? 0}\n                    className={`progress--border ${ship.onBoard && cmdrStatus?.flags?.lowFuel ? 'progress--danger' : 'progress--info'}`}\n                  />\n                </span>\n              </td>\n            </tr>\n            <tr className={`${!ship.onBoard ? 'text-muted' : ''}`}>\n              <td>\n                <span className='text-muted'>Targeting mode</span>\n                <h3 className={`value ${!ship.onBoard ? 'text-muted' : ''}`} style={{ padding: '.25rem 0', height: '1.5rem' }}>\n                  {ship.onBoard && (cmdrStatus?.flags?.hudInAnalysisMode === true) && <span className='text-secondary'>Analysis</span>}\n                  {ship.onBoard && (cmdrStatus?.flags?.hudInAnalysisMode === false) && <span className='text-danger'>Combat</span>}\n                  {(!ship.onBoard || !cmdrStatus) && '-'}\n                </h3>\n              </td>\n              <td>\n                <span className='text-muted'>\n                  Cargo {ship?.onBoard == true && <>{ship?.cargo?.count ?? 0}/{ship?.cargo?.capacity ?? 0} T</>}\n                </span>\n                <span className='value'>\n                  {typeof ship?.cargo?.count === 'number'\n                    ? <progress\n                        style={{ margin: '.25rem 0 0 0', height: '1.5rem', display: 'inline-block', width: '10rem', opacity: ship.onBoard ? 1 : 0.5 }}\n                        value={ship?.cargo?.count ?? 0}\n                        max={ship?.cargo?.capacity ?? 0}\n                        className='progress--border progress--info'\n                      />\n                    : <>-</>}\n                </span>\n              </td>\n            </tr>\n          </tbody>\n        </table>\n\n        <table className={`table--layout ship-panel__lights ${ship.onBoard ? '' : 'text-muted'}`}>\n          <tbody>\n            <tr>\n              <td>\n                <span className={ship.onBoard && cmdrStatus?.flags?.overHeating ? 'ship-panel__light--danger' : 'ship-panel__light--off'}>\n                  <span className='ship-panel__light-text'>Over&shy;heating</span>\n                </span>\n              </td>\n              <td>\n                <span className={ship.onBoard && cmdrStatus?.flags?.beingInterdicted ? 'ship-panel__light--danger' : 'ship-panel__light--off'}>\n                  <span className='ship-panel__light-text'>Inter&shy;diction</span>\n                </span>\n              </td>\n              <td>\n                <span className={ship.onBoard && cmdrStatus?.flags?.inDanger ? 'ship-panel__light--danger' : 'ship-panel__light--off'}>\n                  <span className='ship-panel__light-text'>Hazard</span>\n                </span>\n              </td>\n              <td>\n                <span className={ship.onBoard && (!cmdrStatus?.flags?.landingGearDown && cmdrStatus?.altitude < 100) ? 'ship-panel__light--danger' : 'ship-panel__light--off'}>\n                  <span className='ship-panel__light-text'>Low alti&shy;tude</span>\n                </span>\n              </td>\n              <td>\n                <span className={ship.onBoard && cmdrStatus?.flags?.lowFuel ? 'ship-panel__light--danger' : 'ship-panel__light--off'}>\n                  <span className='ship-panel__light-text'>Low fuel</span>\n                </span>\n              </td>\n            </tr>\n            <tr>\n              <td>\n                <span className={ship.onBoard && cmdrStatus?.flags?.fsdMassLocked ? 'ship-panel__light--on' : 'ship-panel__light--off'}>\n                  <span className='ship-panel__light-text'>Mass locked</span>\n                </span>\n              </td>\n              <td>\n                <span className={ship.onBoard && cmdrStatus?.flags?.fsdCooldown ? 'ship-panel__light--on' : 'ship-panel__light--off'}>\n                  <span className='ship-panel__light-text'>FSD cool&shy;down</span>\n                </span>\n              </td>\n              <td>\n                <span className={ship.onBoard && (cmdrStatus?.flags?.supercruise && !cmdrStatus?.flags?.fsdJump) ? 'ship-panel__light--on' : 'ship-panel__light--off'}>\n                  <span className='ship-panel__light-text'>Super&shy;cruise</span>\n                </span>\n              </td>\n              <td>\n                <span className={ship.onBoard && (cmdrStatus?.flags?.fsdCharging && !cmdrStatus?.flags?.fsdJump) ? 'ship-panel__light--on' : 'ship-panel__light--off'}>\n                  <span className='ship-panel__light-text'>FSD charging</span>\n                </span>\n              </td>\n              <td>\n                <span className={ship.onBoard && cmdrStatus?.flags?.fsdJump ? 'ship-panel__light--on' : 'ship-panel__light--off'}>\n                  <span className='ship-panel__light-text'>FSD jumping</span>\n                </span>\n              </td>\n            </tr>\n            <tr>\n              <td>\n                <span className={ship.onBoard && (cmdrStatus?.flags?.docked || cmdrStatus?.flags?.landed) ? 'ship-panel__light--on' : 'ship-panel__light--off'}>\n                  <span className='ship-panel__light-text'>\n                    {cmdrStatus?.flags?.docked && 'Docked'}\n                    {cmdrStatus?.flags?.landed && 'Landed'}\n                    {(!cmdrStatus?.flags?.docked && !cmdrStatus?.flags?.landed) && 'Docked / Landed'}\n                  </span>\n                </span>\n              </td>\n              <td>\n                <span className={ship.onBoard && cmdrStatus?.flags?.flightAssistOff ? 'ship-panel__light--on' : 'ship-panel__light--off'}>\n                  <span className='ship-panel__light-text'>Flight assist off</span>\n                </span>\n              </td>\n              <td>\n                <span className={ship.onBoard && cmdrStatus?.flags?.glideMode ? 'ship-panel__light--on' : 'ship-panel__light--off'}>\n                  <span className='ship-panel__light-text'>Glide mode</span>\n                </span>\n              </td>\n              <td>\n                <span className={ship.onBoard && cmdrStatus?.flags?.silentRunning ? 'ship-panel__light--on' : 'ship-panel__light--off'}>\n                  <span className='ship-panel__light-text'>Silent running</span>\n                </span>\n              </td>\n              <td>\n                <span className={ship.onBoard && cmdrStatus?.flags?.scoopingFuel ? 'ship-panel__light--on' : 'ship-panel__light--off'}>\n                  <span className='ship-panel__light-text'>Fuel scooping</span>\n                </span>\n              </td>\n            </tr>\n          </tbody>\n        </table>\n      </div>\n    </div>\n  )\n}\n\nfunction NavigationInstrumentation ({ ship, cmdrStatus }) {\n  const panelActive = (ship.onBoard || cmdrStatus?.flags?.inSrv)\n\n  // Note: Heading behaviour is different when cmdrStatus?.flags?.onFootInPlanet\n  // so that mode is not supported right now.\n\n  return (\n    <div className={`ship-panel__navigation-instrumentation ${panelActive ? '--on-board' : ' text-muted'} ${panelActive && typeof cmdrStatus?.heading === 'number' ? '--active' : ''} text-uppercase`}\n    style={{\n      minHeight: '13rem',\n      minWidth: '13rem',\n    }}\n    >\n      <div style={{\n        position: 'absolute',\n        left: 0,\n        right: 0,\n        display: 'block',\n        height: '100%',\n        maxHeight: '12rem',\n        maxWidth: '12rem',\n        margin: 'auto',\n        aspectRatio: '1',\n      }}\n      >\n      <div className='rings'>\n        <div\n          className='ring'\n          style={{\n            bottom: '-6rem',\n            left: '-5%',\n            width: '100%',\n          }}\n        />\n          <div className='ring'\n          style={{\n            bottom: '-8rem',\n            left: '-15%',\n            width: '120%',\n            opacity: '.5',\n            animationDelay: '1s'\n          }}\n          />\n        </div>\n      </div>\n      <div className='dial-border'\n        style={{\n          position: 'absolute',\n          left: 0,\n          right: 0,\n          display: 'block',\n          maxHeight: '12rem',\n          maxWidth: '12rem',\n          minHeight: '12rem',\n          minWidth: '12rem',\n          margin: 'auto',\n          border: '.5rem double var(--color-info)',\n          transform: `rotate(${panelActive ? (360 - cmdrStatus?.heading ?? 0) : 0}deg)`,\n          opacity: (panelActive && typeof cmdrStatus?.heading === 'number') ? 1 : '.25',\n          borderRadius: '100rem',\n          transition: 'opacity .25s ease-in-out',\n          zIndex: 100,\n        }}\n      >\n        <div style={{\n          position: 'absolute',\n          top: '-.8rem',\n          left: 0,\n          right: 0,\n          margin: 'auto',\n          xbackground: 'var(--color-success)',\n          height: '1.25rem',\n          width: '1.25rem',\n          borderRadius: '100rem',\n          xboxShadow: '0 0 .5rem var(--color-info), 0 0 .25rem var(--color-secondary)',\n          display: panelActive && typeof cmdrStatus?.heading === 'number' ? ' block' : 'none'\n        }}\n        >\n          <i className='icarus-terminal-direction-heading' style={{position: 'absolute', top: '-1rem', left: '-.6rem', fontSize: '2rem'}}/>\n        </div>\n      </div>\n      <div\n      style={{\n        display: 'block',\n        maxHeight: '12rem',\n        maxWidth: '12rem',\n        margin: 'auto',\n        border: '.5rem double transparent',\n        borderRadius: '100rem'\n      }}\n      >\n        <div \n          className='dial-background'\n          style={{\n           boxShadow: (panelActive && typeof cmdrStatus?.heading === 'number') ? 'inset 0 0 .5rem var(--color-info), 0 0 1.75rem var(--color-secondary), inset 0 0 1.5rem var(--color-secondary)' : '',\n          }}\n        >\n          <div style={{\n            position: 'absolute',\n            top: '-.25rem',\n            left: '0',\n            display: 'flex',\n            flexDirection: 'column',\n            justifyContent: 'center',\n            textAlign: 'center',\n            height: '100%',\n            maxHeight: '12rem',\n            maxWidth: '12rem',\n            opacity: panelActive ? 1 : 0.5\n          }}\n          />\n          <h5 className='text-muted' style={{ margin: '0 0 .25rem 0' }}>\n            PLANETARY<br/>NAVIGATION\n          </h5>\n          <h2 style={{ padding: 0, margin: '0 0 .1rem 0' }}>\n            {panelActive && <>\n              {(cmdrStatus?.heading >= 343 || cmdrStatus?.heading < 16) && 'N'}\n              {cmdrStatus?.heading >= 16 && cmdrStatus?.heading < 74 && 'NE'}\n              {cmdrStatus?.heading >= 74 && cmdrStatus?.heading < 106 && 'E'}\n              {cmdrStatus?.heading >= 106 && cmdrStatus?.heading < 164 && 'SE'}\n              {cmdrStatus?.heading >= 164 && cmdrStatus?.heading < 196 && 'S'}\n              {cmdrStatus?.heading >= 196 && cmdrStatus?.heading < 254 && 'SW'}\n              {cmdrStatus?.heading >= 254 && cmdrStatus?.heading < 286 && 'W'}\n              {cmdrStatus?.heading >= 286 && cmdrStatus?.heading < 343 && 'NW'}\n              &nbsp;\n            </>}\n            <span className='value'>{panelActive ? cmdrStatus?.heading ?? '-' : '-'}°</span>\n          </h2>\n          <p style={{ padding: 0, margin: '.1rem 0' }}>\n            <span className='text-muted'>LAT</span>\n            {' '}\n            <span className='value'>{panelActive ? cmdrStatus?.latitude ?? '-' : '-'}°</span>\n          </p>\n          <p style={{ padding: 0, margin: '.1rem 0' }}>\n            <span className='text-muted'>LONG</span>\n            {' '}\n            <span className='value'>{panelActive ? cmdrStatus?.longitude ?? '-' : '-'}°</span>\n          </p>\n          <p style={{ padding: 0, margin: '.1rem 0 0 0' }}>\n            <span className='text-muted'>ALT</span>\n            {' '}\n            <span className='value'>{(panelActive && cmdrStatus?.altitude)\n              ? <>\n                {cmdrStatus?.altitude > 10000\n                  ? <>{(cmdrStatus.altitude / 1000).toLocaleString(undefined, { maximumFractionDigits: 0 }) ?? '-'} KM</>\n                  : <>{cmdrStatus?.altitude?.toLocaleString() ?? '-'} M</>}\n              </>\n              : '-'}\n            </span>\n          </p>\n        </div>\n      </div>\n    </div>\n  )\n}\n\nfunction PowerDistribution ({ ship }) {\n  return (\n    <div className='ship-panel__ship-pips'>\n      <div\n        className='hidden-medium'\n        style={{\n          border: '.2rem solid var(--color-info)',\n          borderBottom: 'none',\n          position: 'absolute',\n          top: '-.5rem',\n          left: '1.75rem',\n          right: '.25rem',\n          height: '2rem',\n          opacity: '.25'\n        }}\n      />\n      <h4 className='text-center text-muted' style={{ marginBottom: '1.5rem', marginLeft: '1.5rem' }}>PWR Distribution</h4>\n      <div className='text-uppercase'>\n        <div className='ship-panel__ship-pip'>\n          <progress className={ship.onBoard ? 'progress--gradient' : ''} value={ship.onBoard ? ship?.pips?.systems : 0} max={8} />\n          <label className={(ship.onBoard && ship?.pips?.systems) > 0 ? 'text-primary' : 'text-primary text-muted'}>SYS</label>\n        </div>\n        <div className='ship-panel__ship-pip'>\n          <progress className={ship.onBoard ? 'progress--gradient' : ''} value={ship.onBoard ? ship?.pips?.engines : 0} max={8} />\n          <label className={(ship.onBoard && ship?.pips?.engines > 0) ? 'text-primary' : 'text-primary text-muted'}>ENG</label>\n        </div>\n        <div className='ship-panel__ship-pip'>\n          <progress className={ship.onBoard ? 'progress--gradient' : ''} value={ship.onBoard ? ship?.pips?.weapons : 0} max={8} />\n          <label className={(ship.onBoard && ship?.pips?.weapons > 0) ? 'text-primary' : 'text-primary text-muted'}>WEP</label>\n        </div>\n      </div>\n    </div>\n  )\n}\n"
  },
  {
    "path": "src/client/components/panels/ship/ship-status/ship-modules.js",
    "content": "export default function ShipModules ({ name, modules, selectedModule, setSelectedModule = () => {} }) {\n  return (\n    <>\n      <div className='section-heading' style={{ margin: '1rem 0 .25rem 0' }}>\n        <h4 className='section-heading__text'>{name}</h4>\n      </div>\n      {modules.length === 0 &&\n        <p className='text-muted text-uppercase' style={{ margin: '1rem 0' }}>\n          No {name.toLowerCase()} installed\n        </p>}\n      <table className='ship-panel_modules-table table--flex-inline table--interactive table--animated'>\n        <tbody>\n          {modules.sort((a, b) => (b?.class ?? 0) - (a?.class ?? 0)).map(module => {\n            return (\n              <tr\n                key={`${name}_${module.name}_${module.slot}`}\n                tabIndex='3'\n                onFocus={() => setSelectedModule(module)}\n                data-module-slot={module.slot}\n                className={selectedModule && selectedModule.slot === module.slot ? 'table__row--active' : null}\n              >\n                <td className='ship-panel__module'>\n                  <div\n                    style={{\n                      height: '100%',\n                      width: '5.5rem',\n                      margin: '0 .5rem 0 -.5rem',\n                      float: 'left'\n                    }} className='text-center'\n                  >\n                    {module.size && module.size !== 'tiny' &&\n                      <div\n                        style={{\n                          width: '5.5rem',\n                          paddingBottom: '.5rem'\n                        }} className='ship-panel__module-icon'\n                      >\n                        <div style={{\n                          fontSize: '3.5rem'\n                        }}\n                        >\n                          {module.class && <>{module.class}{module.rating}</>}\n                          {!module.class && <>?</>}\n                        </div>\n                        {module.size}\n                      </div>}\n                    {(!module.size || module.size === 'tiny') &&\n                      <div\n                        style={{\n                          width: '5.5rem',\n                          paddingTop: '.75rem',\n                          paddingBottom: '1.25rem'\n                        }} className='ship-panel__module-icon'\n                      >\n                        <div style={{\n                          fontSize: '3.5rem'\n                        }}\n                        >\n                          {module.class && <>{module.class}{module.rating}</>}\n                          {!module.class && <>?</>}\n                        </div>\n                      </div>}\n                  </div>\n                  <h3>{module.mount} {module.name}</h3>\n                  <p className='text-muted'>{module.slotName}</p>\n                  {/*\n                  {module?.power > 0 && <p><span className='text-muted'>Power</span> {module.power} MW</p>}\n                  {module?.mass > 0 && <p><span className='text-muted'>Mass</span> {module.mass} T</p>}\n                  */}\n                  {module.engineering &&\n                    <div className='ship-panel__engineering text-secondary'>\n                      {[...Array(module.engineering.level)].map((j, i) =>\n                        <i\n                          key={`${name}_${module.name}_${module.slot}_engineering_${i}`}\n                          className='icon icarus-terminal-engineering'\n                        />\n                      )}\n                    </div>}\n                </td>\n              </tr>\n            )\n          })}\n        </tbody>\n      </table>\n    </>\n  )\n}\n"
  },
  {
    "path": "src/client/components/panels/ship/ship-status-panel.js",
    "content": "import { UNKNOWN_VALUE } from '../../../../shared/consts'\nimport ShipInstrumentation from 'components/panels/ship/ship-status/ship-instrumentation'\n\nexport default function ShipStatusPanel ({ ship, selectedModule, setSelectedModule, cmdrStatus, toggleSwitches, toggleSwitch }) {\n  if (!ship) return null\n\n  if (ship.type === UNKNOWN_VALUE && ship.name === UNKNOWN_VALUE && ship.ident === UNKNOWN_VALUE) {\n    return (\n      <div\n        className='text-primary text-blink-slow text-center-both'\n        style={{ zIndex: '30', pointerEvents: 'none' }}\n      >\n        <h2>No ship found</h2>\n      </div>\n    )\n  }\n\n  return (\n    <>\n      <div className='ship-panel__status scrollable'>\n        <div className='ship-panel__title'>\n          <div>\n            <h2>{ship.name}</h2>\n            <h3 className='text-primary'>\n              {ship.ident}\n              <span className='text-primary text-muted'> {ship.type}</span>\n            </h3>\n          </div>\n          <div style={{ position: 'relative', minWidth: '7em' }}>\n            <h5 className='text-right text-info text-uppercase' style={{ position: 'absolute', right: '.5rem', opacity: ship.onBoard ? 1 : 0.5 }}>\n              {ship.onBoard ? 'Online' : 'Offline'}\n            </h5>\n            <div className={`ship-panel__horizontal-activity ${ship.onBoard ? 'ship-panel__horizontal-activity--online' : ''}`}/>\n            <div className='ship-panel__horizontal-activity-marker'/>\n          </div>\n        </div>\n        <hr style={{ margin: '0 0 1rem 0' }} />\n        <ShipInstrumentation\n          ship={ship}\n          cmdrStatus={cmdrStatus}\n          toggleSwitches={toggleSwitches}\n          toggleSwitch={toggleSwitch}\n        />\n      </div>\n    </>\n  )\n}\n"
  },
  {
    "path": "src/client/components/settings.js",
    "content": "import { useState, useEffect, Fragment } from 'react'\nimport { sendEvent, eventListener } from 'lib/socket'\nimport { SettingsNavItems } from 'lib/navigation-items'\nimport packageJson from '../../../package.json'\n\nfunction Settings ({ visible, toggleVisible = () => {}, defaultActiveSettingsPanel = 'Theme' }) {\n  const [activeSettingsPanel, setActiveSettingsPanel] = useState(defaultActiveSettingsPanel)\n\n  return (\n    <>\n      <div className='modal-dialog__background' style={{ opacity: visible ? 1 : 0, visibility: visible ? 'visible' : 'hidden' }} onClick={toggleVisible} />\n      <div className='modal-dialog' style={{ opacity: visible ? 1 : 0, visibility: visible ? 'visible' : 'hidden' }}>\n        <h2 className='modal-dialog__title'>Settings</h2>\n        <hr />\n        <div className='secondary-navigation modal-dialog__navigation'>\n          {SettingsNavItems(activeSettingsPanel).map(item =>\n            <Fragment key={item.name}>\n              <button\n                tabIndex='2'\n                className={`button--icon ${item.active ? 'button--active' : ''}`}\n                onClick={() => setActiveSettingsPanel(item.name)}\n              >\n                <i className={`icon icarus-terminal-${item.icon}`} />\n              </button>\n            </Fragment>\n          )}\n        </div>\n        {activeSettingsPanel === 'Theme' && <ThemeSettings visible={visible} />}\n        {activeSettingsPanel === 'Sounds' && <SoundSettings visible={visible} />}\n        <div className='modal-dialog__footer'>\n          <hr style={{ margin: '1rem 0 .5rem 0' }} />\n          <button className='float-right' onClick={toggleVisible}>\n            Close\n          </button>\n        </div>\n      </div>\n    </>\n  )\n}\n\nfunction SoundSettings ({ visible }) {\n  const [preferences, setPreferences] = useState()\n  const [voices, setVoices] = useState()\n\n  useEffect(async () => {\n    setPreferences(await sendEvent('getPreferences'))\n    setVoices(await sendEvent('getVoices'))\n  }, [visible])\n\n  // Listen for changes to preferences triggered by other terminals\n  useEffect(() => eventListener('syncMessage', async (event) => {\n    if (event.name === 'preferences') {\n      setPreferences(await sendEvent('getPreferences'))\n    }\n  }), [])\n\n  return (\n    <div className='modal-dialog__panel modal-dialog__panel--with-navigation scrollable'>\n      <h3 className='text-primary'>Sounds</h3>\n      <p>\n        ICARUS Terminal includes a voice assistant that can give confirmation of\n        commands and relay information about your ship and your surroundings.\n      </p>\n      <p className='text-danger'>\n        This feature is highly experimental and not compatible with all voices.\n      </p>\n      <h4 className='text-primary'>Voice assistant</h4>\n      <select\n        value={preferences?.voice ?? 'None'}\n        disabled={!voices || !preferences}\n        name='voices'\n        style={{ width: '20rem' }}\n        onChange={async (e) => {\n          const voice = e.target.value\n          const newPreferences = JSON.parse(JSON.stringify(preferences))\n          newPreferences.voice = voice === 'None' ? null : voice\n          setPreferences(await sendEvent('setPreferences', newPreferences))\n          if (voice !== 'None') {\n            sendEvent('testVoice', { voice })\n          }\n        }}\n      >\n        {voices && preferences && <>\n          <option value='None'>None</option>\n          <option disabled>─</option>\n          {voices && voices.map(voice => <option key={`voice_${voice}`}>{voice}</option>)}\n        </>}\n      </select>\n      <br /><br />\n      <h4 className='text-primary'>About voice assistant</h4>\n      <p>\n        The current implementation is only intended for debugging / testing.\n      </p>\n      <p>\n        Audio will be played through the computer ICARUS Terminal is running on.\n      </p>\n      <p>\n        This setting uses your computers native Text To Speech capabilities.\n      </p>\n      <p>\n        Third party / commercial voices can provide improved voice audio quality.\n      </p>\n    </div>\n  )\n}\n\nfunction ThemeSettings () {\n  const [primaryColor, setPrimaryColor] = useState(getPrimaryColorAsHex())\n  const [primaryColorModifier, setPrimaryColorModifier] = useState(getPrimaryColorModifier())\n  const [secondaryColor, setSecondaryColor] = useState(getSecondaryColorAsHex())\n  const [secondaryColorModifier, setSecondaryColorModifier] = useState(getSecondaryColorModifier())\n\n  // Update this component if another window updates the theme settings\n  const storageEventHandler = (event) => {\n    if (event.key === 'color-settings') {\n      setPrimaryColor(getPrimaryColorAsHex())\n      setPrimaryColorModifier(getPrimaryColorModifier())\n      setSecondaryColor(getSecondaryColorAsHex())\n      setSecondaryColorModifier(getSecondaryColorModifier())\n    }\n  }\n\n  useEffect(async () => {\n    window.addEventListener('storage', storageEventHandler)\n    return () => window.removeEventListener('storage', storageEventHandler)\n  }, [])\n\n  useEffect(() => eventListener('syncMessage', async (event) => {\n    if (event.name === 'colorSettings') {\n      setPrimaryColor(getPrimaryColorAsHex())\n      setPrimaryColorModifier(getPrimaryColorModifier())\n      setSecondaryColor(getSecondaryColorAsHex())\n      setSecondaryColorModifier(getSecondaryColorModifier())\n    }\n  }), [])\n\n  return (\n    <div className='modal-dialog__panel modal-dialog__panel--with-navigation scrollable'>\n      <h3 className='text-primary'>Theme</h3>\n      <p>\n        You can select a primary and secondary theme color and adjust the contrast for each color using the sliders.\n      </p>\n      <table className='table--layout'>\n        <tbody>\n          <tr>\n            <td style={{ paddingLeft: '.5rem' }}>\n              <button className='button--active text-no-wrap' style={{ pointerEvents: 'none' }}>\n                <i className='icon icarus-terminal-color-picker' /> Text <span className='text-muted'>Muted</span>\n              </button>\n              <br />\n              <button className='text-no-wrap' style={{ pointerEvents: 'none' }}>\n                <i className='icon icarus-terminal-color-picker' /> Text <span className='text-muted'>Muted</span>\n              </button>\n            </td>\n            <td className='text-center'>\n              <input\n                id='primaryColorPicker' name='primaryColorPicker' value={primaryColor} type='color'\n                style={{ marginTop: '.5rem', padding: 0, background: 'transparent', border: 'none', height: '4rem', width: '4rem' }}\n                onChange={(event) => {\n                  setPrimaryColor(event.target.value)\n                  const color = hex2rgb(event.target.value)\n                  document.documentElement.style.setProperty('--color-primary-r', color.r)\n                  document.documentElement.style.setProperty('--color-primary-g', color.g)\n                  document.documentElement.style.setProperty('--color-primary-b', color.b)\n                  saveColorSettings()\n                }}\n              />\n              <br />\n              <input\n                type='range' min='1' max='255' value={primaryColorModifier} style={{ width: '10rem' }}\n                onChange={(event) => {\n                  setPrimaryColorModifier(event.target.value)\n                  document.documentElement.style.setProperty('--color-primary-dark-modifier', event.target.value)\n                  saveColorSettings()\n                }}\n              />\n            </td>\n          </tr>\n        </tbody>\n      </table>\n      <table className='table--layout'>\n        <tbody>\n          <tr>\n            <td style={{ paddingLeft: '.5rem' }}>\n              <button className='button--secondary button--active text-no-wrap' style={{ pointerEvents: 'none' }}>\n                <i className='icon icarus-terminal-color-picker' /> Text <span className='text-muted'>Muted</span>\n              </button>\n              <br />\n              <button className='button--secondary text-no-wrap' style={{ pointerEvents: 'none' }}>\n                <i className='icon icarus-terminal-color-picker' /> Text <span className='text-muted'>Muted</span>\n              </button>\n            </td>\n            <td className='text-center'>\n              <input\n                id='secondaryColorPicker' name='secondaryColorPicker' value={secondaryColor} type='color'\n                style={{ marginTop: '.5rem', padding: 0, background: 'transparent', border: 'none', height: '4rem', width: '4rem' }}\n                onChange={(event) => {\n                  setSecondaryColor(event.target.value)\n                  const color = hex2rgb(event.target.value)\n                  document.documentElement.style.setProperty('--color-secondary-r', color.r)\n                  document.documentElement.style.setProperty('--color-secondary-g', color.g)\n                  document.documentElement.style.setProperty('--color-secondary-b', color.b)\n                  saveColorSettings()\n                }}\n              />\n              <br />\n              <input\n                type='range' min='1' max='255' value={secondaryColorModifier} style={{ width: '10rem' }}\n                onChange={(event) => {\n                  setSecondaryColorModifier(event.target.value)\n                  document.documentElement.style.setProperty('--color-secondary-dark-modifier', event.target.value)\n                  saveColorSettings()\n                }}\n              />\n            </td>\n          </tr>\n        </tbody>\n      </table>\n      <h4 className='text-primary'>Sync theme across devices</h4>\n      <p>\n        Theme settings apply to all terminals on this computer / device.\n        Different devices can be configured to use different colors.\n      </p>\n      <p>\n        You can sync theme settings to have all currently connected devices\n        (computers, tablets, phones, etc) use the same theme settings.\n      </p>\n      <div className='text-center' style={{ padding: '0.25rem 0' }}>\n        <button\n          onClick={() => {\n            const colorSettings = {\n              primaryColor: {\n                r: parseInt(window.getComputedStyle(document.documentElement).getPropertyValue('--color-primary-r')),\n                g: parseInt(window.getComputedStyle(document.documentElement).getPropertyValue('--color-primary-g')),\n                b: parseInt(window.getComputedStyle(document.documentElement).getPropertyValue('--color-primary-b')),\n                modifier: parseInt(window.getComputedStyle(document.documentElement).getPropertyValue('--color-primary-dark-modifier'))\n              },\n              secondaryColor: {\n                r: parseInt(window.getComputedStyle(document.documentElement).getPropertyValue('--color-secondary-r')),\n                g: parseInt(window.getComputedStyle(document.documentElement).getPropertyValue('--color-secondary-g')),\n                b: parseInt(window.getComputedStyle(document.documentElement).getPropertyValue('--color-secondary-b')),\n                modifier: parseInt(window.getComputedStyle(document.documentElement).getPropertyValue('--color-secondary-dark-modifier'))\n              }\n            }\n            sendEvent('syncMessage', { name: 'colorSettings', message: colorSettings })\n            document.activeElement.blur()\n          }}\n        >\n          <i className='icon icarus-terminal-sync' /> Sync theme settings\n        </button>\n      </div>\n      <h4 className='text-primary'>Reset theme</h4>\n      <p>\n        Resetting theme settings will only impact this computer / device.\n      </p>\n      <div className='text-center' style={{ padding: '0.25rem 0' }}>\n        <button\n          className='text-info'\n          onClick={() => {\n            try {\n              loadDefaultColorSettings()\n              setPrimaryColor(getPrimaryColorAsHex())\n              setPrimaryColorModifier(getPrimaryColorModifier())\n              setSecondaryColor(getSecondaryColorAsHex())\n              setSecondaryColorModifier(getSecondaryColorModifier())\n              window.localStorage.removeItem('color-settings')\n              document.activeElement.blur()\n            } catch (err) {\n              console.error('Unable to reset color settings', err)\n            }\n          }}\n        >\n          Reset theme settings\n        </button>\n      </div>\n    </div>\n  )\n}\n\nconst hex2rgb = (hex) => {\n  const r = parseInt(hex.slice(1, 3), 16)\n  const g = parseInt(hex.slice(3, 5), 16)\n  const b = parseInt(hex.slice(5, 7), 16)\n  return { r, g, b }\n}\n\nconst rgb2hex = (r, g, b) => {\n  const rgb = (r << 16) | (g << 8) | b\n  return '#' + rgb.toString(16).padStart(6, 0)\n}\n\nconst getPrimaryColorAsHex = () => {\n  if (typeof document === 'undefined') return null\n  const r = window.getComputedStyle(document.documentElement).getPropertyValue('--color-primary-r')\n  const g = window.getComputedStyle(document.documentElement).getPropertyValue('--color-primary-g')\n  const b = window.getComputedStyle(document.documentElement).getPropertyValue('--color-primary-b')\n  return rgb2hex(r, g, b)\n}\n\nconst getSecondaryColorAsHex = () => {\n  if (typeof document === 'undefined') return null\n  const r = window.getComputedStyle(document.documentElement).getPropertyValue('--color-secondary-r')\n  const g = window.getComputedStyle(document.documentElement).getPropertyValue('--color-secondary-g')\n  const b = window.getComputedStyle(document.documentElement).getPropertyValue('--color-secondary-b')\n  return rgb2hex(r, g, b)\n}\n\nconst getPrimaryColorModifier = () => {\n  if (typeof document === 'undefined') return null\n  return parseInt(window.getComputedStyle(document.documentElement).getPropertyValue('--color-primary-dark-modifier'))\n}\n\nconst getSecondaryColorModifier = () => {\n  if (typeof document === 'undefined') return null\n  return parseInt(window.getComputedStyle(document.documentElement).getPropertyValue('--color-secondary-dark-modifier'))\n}\n\nconst saveColorSettings = () => {\n  const colorSettings = {\n    version: packageJson.version,\n    primaryColor: {\n      r: parseInt(window.getComputedStyle(document.documentElement).getPropertyValue('--color-primary-r')),\n      g: parseInt(window.getComputedStyle(document.documentElement).getPropertyValue('--color-primary-g')),\n      b: parseInt(window.getComputedStyle(document.documentElement).getPropertyValue('--color-primary-b')),\n      modifier: parseInt(window.getComputedStyle(document.documentElement).getPropertyValue('--color-primary-dark-modifier'))\n    },\n    secondaryColor: {\n      r: parseInt(window.getComputedStyle(document.documentElement).getPropertyValue('--color-secondary-r')),\n      g: parseInt(window.getComputedStyle(document.documentElement).getPropertyValue('--color-secondary-g')),\n      b: parseInt(window.getComputedStyle(document.documentElement).getPropertyValue('--color-secondary-b')),\n      modifier: parseInt(window.getComputedStyle(document.documentElement).getPropertyValue('--color-secondary-dark-modifier'))\n    }\n  }\n  try {\n    window.localStorage.setItem('color-settings', JSON.stringify({ ...colorSettings, timestamp: Date.now() }))\n  } catch (err) {\n    console.error('Unable to save color settings to localStorage', err)\n  }\n}\n\nconst loadColorSettings = () => {\n  try {\n    const colorSettings = JSON.parse(window.localStorage.getItem('color-settings'))\n    if (!colorSettings) return loadDefaultColorSettings() // If no save settings, load defaults\n    // If older than v0.3.6 then erase color settings and load defaults as\n    // breaking theme changes in v0.3.6\n    if (!colorSettings.version || compareVersions('0.3.6', colorSettings.version) === 1) {\n      window.localStorage.removeItem('color-settings')\n      return loadDefaultColorSettings()\n    }\n\n    document.documentElement.style.setProperty('--color-primary-r', colorSettings.primaryColor.r)\n    document.documentElement.style.setProperty('--color-primary-g', colorSettings.primaryColor.g)\n    document.documentElement.style.setProperty('--color-primary-b', colorSettings.primaryColor.b)\n    document.documentElement.style.setProperty('--color-primary-dark-modifier', colorSettings.primaryColor.modifier)\n    document.documentElement.style.setProperty('--color-secondary-r', colorSettings.secondaryColor.r)\n    document.documentElement.style.setProperty('--color-secondary-g', colorSettings.secondaryColor.g)\n    document.documentElement.style.setProperty('--color-secondary-b', colorSettings.secondaryColor.b)\n    document.documentElement.style.setProperty('--color-secondary-dark-modifier', colorSettings.secondaryColor.modifier)\n  } catch (err) {\n    console.error('Unable to read color settings from localStorage', err)\n    return loadDefaultColorSettings()\n  }\n}\n\nconst loadDefaultColorSettings = () => {\n  const defaultPrimaryColor = {\n    r: window.getComputedStyle(document.documentElement).getPropertyValue('--color-default-primary-r'),\n    g: window.getComputedStyle(document.documentElement).getPropertyValue('--color-default-primary-g'),\n    b: window.getComputedStyle(document.documentElement).getPropertyValue('--color-default-primary-b')\n  }\n\n  document.documentElement.style.setProperty('--color-primary-r', defaultPrimaryColor.r)\n  document.documentElement.style.setProperty('--color-primary-g', defaultPrimaryColor.g)\n  document.documentElement.style.setProperty('--color-primary-b', defaultPrimaryColor.b)\n\n  const defaultPrimaryColorModifier = window.getComputedStyle(document.documentElement).getPropertyValue('--color-default-primary-dark-modifier')\n  document.documentElement.style.setProperty('--color-primary-dark-modifier', defaultPrimaryColorModifier)\n\n  const defaultSecondaryColor = {\n    r: window.getComputedStyle(document.documentElement).getPropertyValue('--color-default-secondary-r'),\n    g: window.getComputedStyle(document.documentElement).getPropertyValue('--color-default-secondary-g'),\n    b: window.getComputedStyle(document.documentElement).getPropertyValue('--color-default-secondary-b')\n  }\n\n  document.documentElement.style.setProperty('--color-secondary-r', defaultSecondaryColor.r)\n  document.documentElement.style.setProperty('--color-secondary-g', defaultSecondaryColor.g)\n  document.documentElement.style.setProperty('--color-secondary-b', defaultSecondaryColor.b)\n\n  const defaultSecondaryColorModifier = window.getComputedStyle(document.documentElement).getPropertyValue('--color-default-secondary-dark-modifier')\n  document.documentElement.style.setProperty('--color-secondary-dark-modifier', defaultSecondaryColorModifier)\n}\n\n// Returns: 1 = v1 is bigger, 0 = same version, -1 = v1 is smaller\nfunction compareVersions (v1, v2) {\n  const v1Parts = v1.split('.')\n  const v2Parts = v2.split('.')\n  const length = Math.max(v1Parts.length, v2Parts.length)\n  for (let i = 0; i < length; i++) {\n    const value = (parseInt(v1Parts[i]) || 0) - (parseInt(v2Parts[i]) || 0)\n    if (value < 0) return -1\n    if (value > 0) return 1\n  }\n  return 0\n}\n\nmodule.exports = {\n  Settings,\n  loadColorSettings,\n  loadDefaultColorSettings,\n  saveColorSettings\n}\n"
  },
  {
    "path": "src/client/css/form/button-group.css",
    "content": ".button-group {\n  display: flex;\n  gap: .25rem;\n}\n\n.button-group button,\n.button-group .button {\n  padding-left: 0;\n  padding-right: 0;\n  width: 100%;\n  min-width: initial;\n}"
  },
  {
    "path": "src/client/css/form/button.css",
    "content": "button,\n.button {\n  background: var(--color-primary-dark);\n  color: var(--color-primary);\n  border: 0;\n  padding: .5rem 1rem;\n  line-height: 2rem;\n  font-family: \"Jura\", sans-serif;\n  font-weight: 900;\n  text-transform: uppercase;\n  text-align: center;\n  text-shadow: var(--text-shadow);\n  font-size: inherit;\n  outline: none;\n  box-shadow: 0 0 1.5rem .5rem rgba(0,0,0,.3) inset;\n  border-radius: .1rem;\n}\n\nbutton:disabled:not(.button--active),\n.button.button--disabled:not(.button--active) {\n  opacity: 0.25;\n}\n\nbutton.button--active,\nbutton:active:not([disabled]),\n.button.button--active,\n.button:active:not(.button--disabled) {\n  background: var(--color-primary);\n  color: var(--color-primary-dark);\n  text-shadow: 0 0 1rem var(--color-primary-dark), 0 0 2rem var(--color-primary-dark);\n  box-shadow: 0 0 1.5rem .5rem rgba(var(--color-primary-dark-r),var(--color-primary-dark-g),var(--color-primary-dark-b),.3) inset, 0 0 .25rem var(--color-primary);\n  filter: var(--filter-active-element);\n}\n\nbutton:hover:not([disabled]):not(.button--active),\nbutton:focus:not([disabled]):not(.button--active),\n.button:hover:not(.button--disabled):not(.button--active),\n.button:focus:not(.button--disabled):not(.button--active) {\n  background: var(--color-primary);\n  color: var(--color-primary-dark);\n  text-shadow: 0 0 1rem var(--color-primary-dark), 0 0 2rem var(--color-primary-dark);\n  box-shadow: 0 0 1.5rem .5rem rgba(var(--color-primary-dark-r),var(--color-primary-dark-g),var(--color-primary-dark-b),.3) inset, 0 0 .25rem var(--color-primary);\n  filter: var(--filter-hover-element);\n}\n\nbutton.button--icon,\n.button.button--icon {\n  position: relative;\n  height: 3rem;\n  width: 3rem;\n  display: inline-block;\n  min-width: initial;\n  padding: 0;\n  box-shadow: 0 0 1.5rem .5rem rgba(var(--color-primary-dark-r),var(--color-primary-dark-g),var(--color-primary-dark-b),.3) inset,\n}\n\nbutton.button--icon .icon,\n.button.button--icon .icon {\n  font-size: 1.5rem;\n  line-height: 3rem;\n  text-shadow: 0 0 1rem rgba(var(--color-primary-r),var(--color-primary-g),var(--color-primary-b),.5);\n}\n\nbutton:not(.button--icon) .icon,\n.button:not(.button--icon) .icon {\n  float: left;\n  margin-right: .5rem;\n}\n\nbutton.button--transparent ,\n.button.button--transparent {\n  background: none;\n  box-shadow: none;\n}\n\nbutton.button--secondary,\n.button.button--secondary {\n  background: var(--color-secondary-dark);\n  color: var(--color-secondary);\n}\n\nbutton.button--active.button--secondary,\nbutton.button--secondary:active:not([disabled]),\n.button.button--active.button--secondary,\n.button.button--secondary:active:not(.button--disabled) {\n  background: var(--color-secondary);\n  color: var(--color-secondary-dark);\n  text-shadow: 0 0 1rem var(--color-secondary-dark);\n  box-shadow: none;\n}\n\nbutton.button--secondary:hover:not([disabled]):not(.button--active),\nbutton.button--secondary:focus:not([disabled]):not(.button--active),\n.button.button--secondary:hover:not(.button--disabled):not(.button--active),\n.button.button--secondary:focus:not(.button--disabled):not(.button--active) {\n  background: var(--color-secondary);\n  color: var(--color-secondary-dark);\n}\n\nbutton.button--dark,\n.button.button--dark {\n  background: rgb(5,5,5);\n  color: var(--color-info);\n  outline: .2rem solid rgba(255,255,255,.5);\n  outline-offset: -0.2em;\n  box-shadow: none;\n}\n\nbutton.button--dark:hover:not([disabled]):not(.button--active),\nbutton.button--dark:focus:not([disabled]):not(.button--active),\n.button.button--dark:hover:not(.button--disabled):not(.button--active),\n.button.button--dark:focus:not(.button--disabled):not(.button--active) {\n  background: rgb(5,5,5);\n  color: var(--color-info);\n  outline: .2rem solid var(--color-info);\n  box-shadow: none;\n}\n\n.button__close-button,\nbutton.button__close-button {\n  position: absolute;\n  display: block;\n  right: .5rem;\n  top: .5rem;\n  text-align: center;\n}"
  },
  {
    "path": "src/client/css/form/checkbox.css",
    "content": ".checkbox {\n  position: relative;\n  height: 5rem;\n  display: block;\n}\n\n.checkbox input {\n  position: absolute;\n  opacity: 0;\n  cursor: pointer;\n  height: 0;\n  width: 0;\n}\n\n.checkbox .checkbox__text {\n  display: flex;\n  flex-direction: column;\n  justify-content: center;\n  text-align: center;\n  position: absolute;\n  top: -3rem;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  font-size: 1.25rem;\n  color: var(--color-info);\n}\n\n@media only screen and (max-width: 799px) {\n  .checkbox {\n    height: 6rem;\n  }\n  .checkbox .checkbox__text {\n    font-size: 1rem;\n    line-height: 1.25rem;\n  }\n}\n\n.checkbox .checkbox__control {\n  position: absolute;\n  bottom: 0rem;\n  left: 0;\n  right: 0;\n  clear: both;\n  margin: auto;\n  height: 2rem;\n  max-width: 5rem;\n  border: .2rem solid var(--color-info);\n  opacity: .5;\n  border-radius: 5rem;\n  transition: all .25s ease-in-out;\n}\n\n.checkbox .checkbox__control:after {\n  content: \"\";\n  position: absolute;\n  top: .2rem;\n  left: calc(0% + .2rem);\n  height: 1.2rem;\n  width: 1.2rem;\n  max-width: 3rem;\n  background-color: var(--color-info);\n  border: .2rem solid var(--color-info);\n  border-radius: 5rem;\n  transition: all .2s ease-in-out;\n}\n\n.checkbox input:checked ~ .checkbox__control {\n  opacity: 1;\n}\n\n.checkbox input:checked ~ .checkbox__control:after {\n  box-shadow: 0 0 .5rem var(--color-info);\n}\n\n.checkbox input:checked ~ .checkbox__control:after {\n  left: calc(100% - 1.8rem);\n}"
  },
  {
    "path": "src/client/css/form/input.css",
    "content": "input {\n  border: .25rem solid var(--color-primary-dark);\n  background: var(--color-primary-dark);\n  color: var(--color-icon);\n  font-size: 1.25rem;\n  line-height: 2rem;\n  outline: 0;\n  padding: .25rem .5rem;\n  text-transform: uppercase;\n  font-family: \"Jura\", sans-serif;\n  font-weight: 900;\n}\n\ninput::placeholder {\n  color: var(--color-primary);\n  opacity: 0.5;\n}\n\ninput:focus,\ninput:hover {\n  border-color: var(--color-primary);\n}\n\n.input--secondary {\n  border-color: var(--color-secondary);\n  background: var(--color-secondary-dark);\n}\n\ninput.input--secondary::placeholder,\n.input--secondary::placeholder {\n  color: var(--color-secondary);\n  opacity: 0.5;\n}\n\ninput.input--secondary:focus,\ninput.input--secondary:hover,\n.input--secondary:focus,\n.input--secondary:hover {\n  border-color: var(--color-secondary);\n}"
  },
  {
    "path": "src/client/css/form/select.css",
    "content": "select {\n  appearance: none;\n  margin: .5rem 0;\n  background: var(--color-primary-dark);\n  border: .2rem solid var(--color-primary);\n  color: var(--color-primary);\n  padding: .25rem .5rem;\n  font-family: \"Jura\", sans-serif;\n  font-size: var(--base-font-size);\n  font-weight: bold;\n  border-color: var(--color-primary);\n}"
  },
  {
    "path": "src/client/css/fx/crt.css",
    "content": "/* http://aleclownes.com/2017/02/01/crt-display.html */\n@keyframes flicker {\n  0% {\n    opacity: 0.27861;\n  }\n  5% {\n    opacity: 0.34769;\n  }\n  10% {\n    opacity: 0.23604;\n  }\n  15% {\n    opacity: 0.90626;\n  }\n  20% {\n    opacity: 0.18128;\n  }\n  25% {\n    opacity: 0.83891;\n  }\n  30% {\n    opacity: 0.65583;\n  }\n  35% {\n    opacity: 0.67807;\n  }\n  40% {\n    opacity: 0.26559;\n  }\n  45% {\n    opacity: 0.84693;\n  }\n  50% {\n    opacity: 0.96019;\n  }\n  55% {\n    opacity: 0.08594;\n  }\n  60% {\n    opacity: 0.20313;\n  }\n  65% {\n    opacity: 0.71988;\n  }\n  70% {\n    opacity: 0.53455;\n  }\n  75% {\n    opacity: 0.37288;\n  }\n  80% {\n    opacity: 0.71428;\n  }\n  85% {\n    opacity: 0.70419;\n  }\n  90% {\n    opacity: 0.7003;\n  }\n  95% {\n    opacity: 0.36108;\n  }\n  100% {\n    opacity: 0.24387;\n  }\n}\n@keyframes textShadow {\n  0% {\n    text-shadow: 0.4389924193300864px 0 1px rgba(0,30,255,0.5), -0.4389924193300864px 0 1px rgba(255,0,80,0.3), 0 0 3px;\n  }\n  5% {\n    text-shadow: 2.7928974010788217px 0 1px rgba(0,30,255,0.5), -2.7928974010788217px 0 1px rgba(255,0,80,0.3), 0 0 3px;\n  }\n  10% {\n    text-shadow: 0.02956275843481219px 0 1px rgba(0,30,255,0.5), -0.02956275843481219px 0 1px rgba(255,0,80,0.3), 0 0 3px;\n  }\n  15% {\n    text-shadow: 0.40218538552878136px 0 1px rgba(0,30,255,0.5), -0.40218538552878136px 0 1px rgba(255,0,80,0.3), 0 0 3px;\n  }\n  20% {\n    text-shadow: 3.4794037899852017px 0 1px rgba(0,30,255,0.5), -3.4794037899852017px 0 1px rgba(255,0,80,0.3), 0 0 3px;\n  }\n  25% {\n    text-shadow: 1.6125630401149584px 0 1px rgba(0,30,255,0.5), -1.6125630401149584px 0 1px rgba(255,0,80,0.3), 0 0 3px;\n  }\n  30% {\n    text-shadow: 0.7015590085143956px 0 1px rgba(0,30,255,0.5), -0.7015590085143956px 0 1px rgba(255,0,80,0.3), 0 0 3px;\n  }\n  35% {\n    text-shadow: 3.896914047650351px 0 1px rgba(0,30,255,0.5), -3.896914047650351px 0 1px rgba(255,0,80,0.3), 0 0 3px;\n  }\n  40% {\n    text-shadow: 3.870905614848819px 0 1px rgba(0,30,255,0.5), -3.870905614848819px 0 1px rgba(255,0,80,0.3), 0 0 3px;\n  }\n  45% {\n    text-shadow: 2.231056963361899px 0 1px rgba(0,30,255,0.5), -2.231056963361899px 0 1px rgba(255,0,80,0.3), 0 0 3px;\n  }\n  50% {\n    text-shadow: 0.08084290417898504px 0 1px rgba(0,30,255,0.5), -0.08084290417898504px 0 1px rgba(255,0,80,0.3), 0 0 3px;\n  }\n  55% {\n    text-shadow: 2.3758461067427543px 0 1px rgba(0,30,255,0.5), -2.3758461067427543px 0 1px rgba(255,0,80,0.3), 0 0 3px;\n  }\n  60% {\n    text-shadow: 2.202193051050636px 0 1px rgba(0,30,255,0.5), -2.202193051050636px 0 1px rgba(255,0,80,0.3), 0 0 3px;\n  }\n  65% {\n    text-shadow: 2.8638780614874975px 0 1px rgba(0,30,255,0.5), -2.8638780614874975px 0 1px rgba(255,0,80,0.3), 0 0 3px;\n  }\n  70% {\n    text-shadow: 0.48874025155497314px 0 1px rgba(0,30,255,0.5), -0.48874025155497314px 0 1px rgba(255,0,80,0.3), 0 0 3px;\n  }\n  75% {\n    text-shadow: 1.8948491305757957px 0 1px rgba(0,30,255,0.5), -1.8948491305757957px 0 1px rgba(255,0,80,0.3), 0 0 3px;\n  }\n  80% {\n    text-shadow: 0.0833037308038857px 0 1px rgba(0,30,255,0.5), -0.0833037308038857px 0 1px rgba(255,0,80,0.3), 0 0 3px;\n  }\n  85% {\n    text-shadow: 0.09769827255241735px 0 1px rgba(0,30,255,0.5), -0.09769827255241735px 0 1px rgba(255,0,80,0.3), 0 0 3px;\n  }\n  90% {\n    text-shadow: 3.443339761481782px 0 1px rgba(0,30,255,0.5), -3.443339761481782px 0 1px rgba(255,0,80,0.3), 0 0 3px;\n  }\n  95% {\n    text-shadow: 2.1841838852799786px 0 1px rgba(0,30,255,0.5), -2.1841838852799786px 0 1px rgba(255,0,80,0.3), 0 0 3px;\n  }\n  100% {\n    text-shadow: 2.6208764473832513px 0 1px rgba(0,30,255,0.5), -2.6208764473832513px 0 1px rgba(255,0,80,0.3), 0 0 3px;\n  }\n}\n.crt::after {\n  content: \" \";\n  display: block;\n  position: absolute;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  right: 0;\n  background: rgba(18, 16, 16, 0.1);\n  opacity: 0;\n  z-index: 2;\n  pointer-events: none;\n  animation: flicker 0.15s infinite;\n}\n.crt::before {\n  content: \" \";\n  display: block;\n  position: absolute;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  right: 0;\n  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));\n  z-index: 2;\n  background-size: 100% 2px, 3px 100%;\n  pointer-events: none;\n}\n.crt {\n  animation: textShadow 1.6s infinite;\n}"
  },
  {
    "path": "src/client/css/fx/fx.css",
    "content": "/* Visual effects that apply to the entire window (e.g. flicker, CRT effect, vignette) */\nhtml[data-fx-crt-text=\"true\"] h1,\nhtml[data-fx-crt-text=\"true\"] h2,\nhtml[data-fx-crt-text=\"true\"] h3,\nhtml[data-fx-crt-text=\"true\"] h4,\nhtml[data-fx-crt-text=\"true\"] h5,\nhtml[data-fx-crt-text=\"true\"] p,\nhtml[data-fx-crt-text=\"true\"] li,\nhtml[data-fx-crt-text=\"true\"] span,\nhtml[data-fx-crt-text=\"true\"] button,\nhtml[data-fx-crt-text=\"true\"] th,\nhtml[data-fx-crt-text=\"true\"] td,\nhtml[data-fx-crt-text=\"true\"] label,\nhtml[data-fx-crt-text=\"true\"] svg text,\nhtml[data-fx-crt-text=\"true\"] .icon {\n  text-shadow: 1.3px 0 1px var(--text-shift-right-color), -1.3px 0 1px var(--text-shift-left-color), 0 0 2px;\n  text-shadow: 1.1px 0 1px var(--text-shift-right-color), -1.1px 0 1px var(--text-shift-left-color), 0 0 3px;\n}\n\n*[data-fx-crt-text-animated=\"true\"],\n*[data-fx-crt-text-animated=\"true\"] h1,\n*[data-fx-crt-text-animated=\"true\"] h2,\n*[data-fx-crt-text-animated=\"true\"] h3,\n*[data-fx-crt-text-animated=\"true\"] h4,\n*[data-fx-crt-text-animated=\"true\"] h5,\n*[data-fx-crt-text-animated=\"true\"] p,\n*[data-fx-crt-text-animated=\"true\"] li,\n*[data-fx-crt-text-animated=\"true\"] span,\n*[data-fx-crt-text-animated=\"true\"] button,\n*[data-fx-crt-text-animated=\"true\"] th,\n*[data-fx-crt-text-animated=\"true\"] td,\n*[data-fx-crt-text-animated=\"true\"] label,\n*[data-fx-crt-text-animated=\"true\"] svg text,\n*[data-fx-crt-text-animated=\"true\"] .icon {\n  /* Text animation is a big performance hit */\n  animation: text-refraction-animation 5s infinite;\n}\n\n/*\n.launcher-title *,\n.inspector__title:hover,\nbutton:hover,\ntd:hover,\ntr:hover,\ntr:hover td,\ntr:hover td * {\n  animation: text-refraction-animation 5s infinite;\n}\n*/\n\n.crt-fx::after,\nhtml[data-fx-crt=\"true\"] body::after {\n  /*\n  content: \" \";\n  display: block;\n  position: fixed;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  right: 0;\n  background: rgba(18, 16, 16, 0.1);\n  opacity: 0;\n  z-index: 1002;\n  pointer-events: none;\n  animation: text-flicker-animation 5s infinite;\n  */\n}\n\n.crt-fx::before,\nhtml[data-fx-crt=\"true\"] body::before {\n  content: \" \";\n  display: block;\n  position: fixed;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  right: 0;\n  background: linear-gradient(rgba(0,0,0,0) 50%, rgba(0, 0, 0, .03) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.04), rgba(0, 255, 0, 0.04), rgba(0, 0, 255, 0.04));\n  z-index: 10010; /* 10000 and above so is on top of notifications */\n  background-size: 100% 3px, 3px 100%;\n  pointer-events: none;\n}\n\n.crt-fx::after,\n.crt-fx::before {\n  position: absolute;\n}\n\nhtml[data-fx-crt=\"true\"] .layout__overlay {\n  box-shadow: 0 0 1rem 1rem rgba(0,0,0,.5) inset;\n  /*,  0 2rem 2rem -2rem var(--color-primary) inset;*/\n  display: block;\n  position: fixed;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  right: 0;\n  z-index: 10005; \n}\n\n@keyframes text-refraction-animation {\n  0% {\n    text-shadow: 0 0 15px var(--color-primary), 0.4389924193300864px 0 1px var(--text-shift-right-color), -0.4389924193300864px 0 1px var(--text-shift-left-color), 0 0 3px;\n  }\n  5% {\n    text-shadow: 0 0 15px var(--color-primary),2.7928974010788217px 0 1px var(--text-shift-right-color), -2.7928974010788217px 0 1px var(--text-shift-left-color), 0 0 3px;\n  }\n  10% {\n    text-shadow: 0 0 15px var(--color-primary),0.02956275843481219px 0 1px var(--text-shift-right-color), -0.02956275843481219px 0 1px var(--text-shift-left-color), 0 0 3px;\n  }\n  15% {\n    text-shadow: 0 0 15px var(--color-primary),0.40218538552878136px 0 1px var(--text-shift-right-color), -0.40218538552878136px 0 1px var(--text-shift-left-color), 0 0 3px;\n  }\n  20% {\n    text-shadow: 0 0 15px var(--color-primary),3.4794037899852017px 0 1px var(--text-shift-right-color), -2.4794037899852017px 0 1px var(--text-shift-left-color), 0 0 3px;\n  }\n  25% {\n    text-shadow: 0 0 15px var(--color-primary),1.6125630401149584px 0 1px var(--text-shift-right-color), -1.6125630401149584px 0 1px var(--text-shift-left-color), 0 0 3px;\n  }\n  30% {\n    text-shadow: 0 0 15px var(--color-primary),0.7015590085143956px 0 1px var(--text-shift-right-color), -0.7015590085143956px 0 1px var(--text-shift-left-color), 0 0 3px;\n  }\n  35% {\n    text-shadow: 0 0 15px var(--color-primary),2.896914047650351px 0 1px var(--text-shift-right-color), -2.896914047650351px 0 1px var(--text-shift-left-color), 0 0 3px;\n  }\n  40% {\n    text-shadow: 0 0 15px var(--color-primary),2.870905614848819px 0 1px var(--text-shift-right-color), -2.870905614848819px 0 1px var(--text-shift-left-color), 0 0 3px;\n  }\n  45% {\n    text-shadow: 0 0 15px var(--color-primary),2.231056963361899px 0 1px var(--text-shift-right-color), -2.231056963361899px 0 1px var(--text-shift-left-color), 0 0 3px;\n  }\n  50% {\n    text-shadow: 0 0 15px var(--color-primary),0.08084290417898504px 0 1px var(--text-shift-right-color), -0.08084290417898504px 0 1px var(--text-shift-left-color), 0 0 3px;\n  }\n  55% {\n    text-shadow: 0 0 15px var(--color-primary),2.3758461067427543px 0 1px var(--text-shift-right-color), -2.3758461067427543px 0 1px var(--text-shift-left-color), 0 0 3px;\n  }\n  60% {\n    text-shadow: 0 0 15px var(--color-primary),2.202193051050636px 0 1px var(--text-shift-right-color), -2.202193051050636px 0 1px var(--text-shift-left-color), 0 0 3px;\n  }\n  65% {\n    text-shadow: 0 0 15px var(--color-primary),2.8638780614874975px 0 1px var(--text-shift-right-color), -2.8638780614874975px 0 1px var(--text-shift-left-color), 0 0 3px;\n  }\n  70% {\n    text-shadow: 0 0 15px var(--color-primary),0.48874025155497314px 0 1px var(--text-shift-right-color), -0.48874025155497314px 0 1px var(--text-shift-left-color), 0 0 3px;\n  }\n  75% {\n    text-shadow: 0 0 15px var(--color-primary),1.8948491305757957px 0 1px var(--text-shift-right-color), -1.8948491305757957px 0 1px var(--text-shift-left-color), 0 0 3px;\n  }\n  80% {\n    text-shadow: 0 0 15px var(--color-primary),0.0833037308038857px 0 1px var(--text-shift-right-color), -0.0833037308038857px 0 1px var(--text-shift-left-color), 0 0 3px;\n  }\n  85% {\n    text-shadow: 0 0 15px var(--color-primary),0.09769827255241735px 0 1px var(--text-shift-right-color), -0.09769827255241735px 0 1px var(--text-shift-left-color), 0 0 3px;\n  }\n  90% {\n    text-shadow: 0 0 15px var(--color-primary),2.443339761481782px 0 1px var(--text-shift-right-color), -2.443339761481782px 0 1px var(--text-shift-left-color), 0 0 3px;\n  }\n  95% {\n    text-shadow: 0 0 15px var(--color-primary),2.1841838852799786px 0 1px var(--text-shift-right-color), -2.1841838852799786px 0 1px var(--text-shift-left-color), 0 0 3px;\n  }\n  100% {\n    text-shadow: 0 0 15px var(--color-primary),2.6208764473832513px 0 1px var(--text-shift-right-color), -2.6208764473832513px 0 1px var(--text-shift-left-color), 0 0 3px;\n  }\n}\n\nhtml[data-fx-crt-text-animated]:not([data-fx-crt-text-animated=\"true\"]) .fx-animated-text,\nhtml:not([data-fx-crt-text-animated]) .fx-animated-text {\n  overflow-x: clip !important; /* avoids clipping text shadow on y axis */\n  padding-left: 2rem;\n  margin-left: -2rem;\n  white-space: nowrap !important;\n  display: inline-block;\n  width: 0;\n  text-shadow: none; /* Added to text when animation starts (avoids clipping) */\n  animation: fx-text-typing-animation .5s steps(15, end);\n  animation-fill-mode: forwards;\n}\n\n.fx-animated-text[data-fx-order=\"1\"] { animation-delay: .1s !important; }\n.fx-animated-text[data-fx-order=\"2\"] { animation-delay: .2s !important; }\n.fx-animated-text[data-fx-order=\"3\"] { animation-delay: .3s !important; }\n.fx-animated-text[data-fx-order=\"4\"] { animation-delay: .4s !important; }\n.fx-animated-text[data-fx-order=\"5\"] { animation-delay: .5s !important; }\n.fx-animated-text[data-fx-order=\"6\"] { animation-delay: .6s !important; }\n.fx-animated-text[data-fx-order=\"7\"] { animation-delay: .7s !important; }\n.fx-animated-text[data-fx-order=\"8\"] { animation-delay: .8s !important; }\n.fx-animated-text[data-fx-order=\"9\"] { animation-delay: .9s !important; }\n\n.fx-fade-in {\n  animation: fx-fade-in-animation .5s ease-in-out;\n}\n\n@keyframes fx-text-typing-animation {\n  from { width: 0; text-shadow: var(--text-shadow); }\n  to { width: 100%; text-shadow: var(--text-shadow); }\n}\n\n@keyframes fx-fade-in-animation {\n  from { visibility: visible; opacity : 0; }\n  to { visibility: visible; opacity: 1; }\n}\n\n@keyframes fx-flash-in-animation {\n  0% {\n    opacity: 1;\n    color: var(--color-primary-dark);\n  }\n  15% {\n    color: var(--color-secondary);\n  }\n  20% {\n    filter: brightness(1.5);\n  }\n  25% {\n    color: var(--color-primary);\n    filter: none;\n  }\n  100% { opacity: 1; }\n}\n"
  },
  {
    "path": "src/client/css/main.css",
    "content": "@import \"variables.css\";\n\n@import \"utils.css\";\n@import \"fx/fx.css\";\n@import \"fx/crt.css\";\n@import \"ui/layout.css\";\n@import \"ui/loader.css\";\n@import \"ui/inspector.css\";\n@import \"ui/modal-dialog.css\";\n@import \"ui/secondary-navigation.css\";\n@import \"ui/sections.css\";\n@import \"form/button.css\";\n@import \"form/button-group.css\";\n@import \"form/input.css\";\n@import \"form/checkbox.css\";\n@import \"form/select.css\";\n@import \"text.css\";\n@import \"table.css\";\n\n@import \"system-map.css\";\n/* @import \"system-map-realistic-planets.css\"; */\n\n@import \"panels/navigation-panel.css\";\n@import \"panels/ship-panel.css\";\n@import \"panels/engineering-panel.css\";\n\n@import \"overrides/safari.css\";\n@import \"overrides/firefox.css\";\n\n@font-face {\n  font-family: 'Jura';\n  src: url('../public/fonts/Jura-VariableFont_wght.ttf') format('truetype');\n}\n\n/* Override generated defaults for terminal font */\n[class^=\"icarus-terminal-\"], [class*=\" icarus-terminal-\"] {\n  font-size: inherit;\n  font-weight: 500;\n  pointer-events: none;\n}\n\na,\n* {\n  /* Don't change the fallback cursor to something like pointer or it causes a screen flash on touch devices like Amazon Fire tablets (bug?!) */\n  cursor: url('../public/images/cursor.png'), crosshair;\n}\n\n::selection { \n  background: var(--color-secondary-dark);\n  color: var(--color-secondary);\n  text-shadow: 0 0 5px var(--color-secondary);\n}\n\nhtml {\n  zoom: 100%;\n  background: black;\n  filter: saturate(1.1);\n  text-rendering: optimizeLegibility;\n  -webkit-font-smoothing: subpixel-antialiased;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n.scrollable {\n  overflow-x: hidden !important;\n}\n\n.scrollable::-webkit-scrollbar {\n  width: 16px;\n}\n\n.scrollable::-webkit-scrollbar-thumb {\n  background: var(--color-primary);\n  min-height: 4rem;\n  box-shadow: 0 0 10px var(--color-primary-dark);\n}\n\n.scrollable::-webkit-scrollbar-track {\n  background-image: linear-gradient(90deg, transparent 41.67%, var(--color-primary) 41.67%, var(--color-primary) 50%, transparent 50%, transparent 91.67%, var(--color-primary) 91.67%, var(--color-primary) 100%);\n  background-size: 48.00px 48.00px;\n  background-position-x: 10px;\n}\n\n.scrollable--fade {\n  --scrollbar-width: 48px;\n  --mask-height: 1rem;\n  padding-bottom: var(--mask-height);\n  padding-right: 20px;\n  --mask-image-content: linear-gradient(\n      to bottom,\n      transparent,\n      black var(--mask-height),\n      black calc(100% - var(--mask-height)),\n      transparent\n  );\n  --mask-size-content: calc(100% - var(--scrollbar-width)) 100%;\n  --mask-image-scrollbar: linear-gradient(black, black);\n  --mask-size-scrollbar: var(--scrollbar-width) 100%;\n  mask-image: var(--mask-image-content), var(--mask-image-scrollbar);\n  mask-size: var(--mask-size-content), var(--mask-size-scrollbar);\n  mask-position: 0 0, 100% 0;\n  mask-repeat: no-repeat, no-repeat;\n}\n\n.not-selectable {\n  -webkit-touch-callout: none;\n  -webkit-user-select: none;\n  -khtml-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n\n.selectable-wrapper,\n.selectable {\n  position: relative;\n  -webkit-touch-callout: all !important;\n  -webkit-user-select: all !important;\n  -khtml-user-select: all !important;\n  -moz-user-select: all !important;\n  -ms-user-select: all !important;\n  user-select: all !important;\n  /* cursor: text; */\n  pointer-events: all;\n}\n\n.selectable-wrapper::after {\n  display: block;\n  position: absolute;\n  opacity: 0;\n  transition: all .1s ease-in;\n  content: \"\\ea01\";\n  color: var(--color-secondary);\n  text-shadow: .1rem .1rem 0 var(--color-secondary-dark);\n  bottom: .2rem;\n  right: -1.75rem;\n  font-size: 1.25rem;\n  line-height: 1.25rem;\n  font-family: 'icarus-terminal' !important;\n  font-style: normal;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  pointer-events: none;\n}\n\n.text-right > .selectable-wrapper::after {\n  right: initial;\n  left: -1.75rem;\n}\n\n.selectable:hover::after {\n  opacity: 1;\n}\n\n.selectable--text {\n  -webkit-touch-callout: text !important;\n  -webkit-user-select: text !important;\n  -khtml-user-select: text !important;\n  -moz-user-select: text !important;\n  -ms-user-select: text !important;\n  user-select: text !important;\n}\n\n::selection {\n  background: none;\n  color: inherit;\n  text-shadow: initial;\n}\n\nhtml::after {\n  content: \" \";\n  display: block;\n  position: fixed;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  right: 0;\n  background: linear-gradient(rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.1) 50%), linear-gradient(90deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.05));\n  z-index: -1;\n  background-size: 100% 10px;\n  pointer-events: none;\n}\n\nhtml, body {\n  -ms-content-zooming: none;\n}\n\nbody {\n  color: var(--color-info);\n  font-family: \"Jura\", sans-serif;\n  font-size: var(--base-font-size);\n  font-weight: bold;\n  padding: 0;\n  margin: 0;\n  zoom: 0.8;\n}\n\n@media only screen and (max-width: 799px) {\n  body {\n    zoom: 0.7;\n  }\n}\n\n@media only screen and (max-width: 599px) {\n  body {\n    zoom: 0.6;\n  }\n}\n\nbody::after {\n  content: \" \";\n  display: block;\n  position: fixed;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  right: 0;\n  z-index: 10000;\n  background: rgba(0,0,255,.05);\n  pointer-events: none;\n  z-index: 30000;\n}\n\nheader {\n  padding: 0 .5rem .5rem .5rem;\n}\n\nh1, h2, h3, h4, h5, h6 {\n  margin: 0;\n  padding: 0;\n  text-transform: uppercase;\n}\n\nh1 {\n  font-size: 4rem;\n  line-height: 4rem;\n}\n\nh2 {\n  font-size: 2rem;\n  line-height: 2rem;\n}\n\np {\n  margin: .5rem 0;\n}\n\na {\n  color: white;\n  text-decoration: none;\n}\n\na:not(.button) {\n  cursor: pointer;\n}\n\na:hover:not(.active):not([disabled]),\na:active:not(.active):not([disabled]),\na:focus:not(.active):not([disabled]) {\n  outline: none;\n  outline-color: var(--color-secondary);\n  --color-icon: var(--color-secondary);\n}\n\nul {\n  list-style-type: square;\n  padding-left: 1.25rem;\n  margin: 0;\n}\n\nol {\n  padding-left: 2rem;\n  margin: 0;\n}\n\nprogress {\n  -webkit-appearance: none;\n  appearance: none;\n  width: 100%;\n  border-radius: 0;\n  height: 2rem;\n  transition: opacity .25s ease-out;\n  border: 0;\n}\n\nprogress[value] {\n  -webkit-appearance: none;\n  appearance: none;\n}\n\nprogress[value]::-webkit-progress-bar {\n  background: var(--color-primary-dark);\n}\n\nprogress[value]::-moz-progress-bar {\n  background: var(--color-primary);\n}\n\nprogress[value]::-webkit-progress-value {\n  background: var(--color-primary);\n  transition: width .25s ease;\n  box-shadow: inset 0 0 .1rem var(--color-primary-dark), 0 0 .1rem var(--color-primary);\n  border-radius: .1rem;\n}\n\nprogress.progress--gradient[value]::-webkit-progress-bar {\n  background: transparent;\n}\n\nprogress[value].progress--gradient::-moz-progress-bar {\n  background: linear-gradient(to right, var(--color-primary-dark), var(--color-primary));\n}\n\nprogress[value].progress--gradient::-webkit-progress-value {\n  background: linear-gradient(to right, var(--color-primary-dark), var(--color-primary));\n  box-shadow: none;\n}\n\nprogress.progress--border {\n  border-width: .2rem;\n  border-style: solid;\n  border-color: var(--color-primary);\n}\n\nprogress.progress--secondary {\n  background: var(--color-secondary-dark); /* For Firefox */\n}\n\nprogress.progress--secondary[value]::-webkit-progress-bar {\n  background: var(--color-secondary-dark);\n  padding: .1rem;\n}\n\nprogress.progress--secondary[value]::-moz-progress-bar {\n  background: var(--color-secondary);\n  padding: .1rem;\n}\n\nprogress.progress--secondary[value]::-webkit-progress-value {\n  background: var(--color-secondary);\n  box-shadow: inset 0 0 .1rem var(--color-secondary-dark), 0 0 .1rem var(--color-secondary);\n}\n\nprogress.progress--secondary.progress--border {\n  border-color: var(--color-secondary);\n}\n\n\nprogress.progress--info {\n  background: var(--color-primary-dark); /* For Firefox */\n}\n\nprogress.progress--info[value]::-webkit-progress-bar {\n  background: var(--color-primary-dark);\n  padding: .1rem;\n}\n\nprogress.progress--info[value]::-moz-progress-bar {\n  background: var(--color-info);\n  padding: .1rem;\n}\n\nprogress.progress--info[value]::-webkit-progress-value {\n  background: var(--color-info);\n  box-shadow: 0 0 .1rem var(--color-info);\n}\n\nprogress.progress--info.progress--border {\n  border-color: var(--color-info);\n}\n\nprogress.progress--success {\n  background: var(--color-primary-dark); /* For Firefox */\n}\n\nprogress.progress--success[value]::-webkit-progress-bar {\n  background: var(--color-primary-dark);\n  padding: .1rem;\n}\n\nprogress.progress--success[value]::-moz-progress-bar {\n  background: var(--color-success);\n  padding: .1rem;\n}\n\nprogress.progress--success[value]::-webkit-progress-value {\n  background: var(--color-success);\n}\n\nprogress.progress--success.progress--border {\n  border-color: var(--color-success);\n}\n\nprogress.progress--danger {\n  background: var(--color-primary-dark); /* For Firefox */\n}\n\nprogress.progress--danger[value]::-webkit-progress-bar {\n  background: var(--color-primary-dark);\n  padding: .1rem;\n}\n\nprogress.progress--danger[value]::-moz-progress-bar {\n  background: var(--color-danger);\n  padding: .1rem;\n}\n\nprogress.progress--danger[value]::-webkit-progress-value {\n  background: var(--color-danger);\n}\n\nprogress.progress--danger.progress--border {\n  border-color: var(--color-danger);\n}\n\nform {\n  padding: 0;\n  margin: 0;\n}\n\nlabel {\n  font-size: 1.5rem;\n  line-height: 1.5rem;\n  font-weight: 900;\n  margin-right: 1rem;\n}\n\nhr {\n  border: none;\n  height: .13rem;\n  background: var(--color-primary);\n  margin: .5rem 0;\n  box-shadow: 0 .03rem .5rem var(--color-primary), 0 0 .7rem -.03rem var(--color-primary) !important;\n  opacity: 0.7;\n}\n\nhr.muted {\n  opacity: 0.3;\n}\n\nhr.small {\n  height: .05rem;\n}\n\nhr.large {\n  height: 2.5rem;\n  opacity: 1;\n}\n\nhr.bold {\n  height: .15rem;\n  box-shadow: 0 .03rem .5rem var(--color-primary), 0 0rem .7rem -.03rem var(--color-primary), 0 0rem 1rem -.01rem var(--color-primary-dark) !important;\n  opacity: 1;\n}\n"
  },
  {
    "path": "src/client/css/overrides/firefox.css",
    "content": "@-moz-document url-prefix() {\n  html {\n    height: 100vh; /* Firefox needs this or the use of filter() breaks rendering! */\n    /* Firefox renders with a smaller base font size */\n    font-size: .9rem !important;\n  }\n\n  .scrollable {\n    scrollbar-width: auto !important;\n    scrollbar-color: auto !important;\n  }\n  \n  progress {\n    background: var(--color-primary-dark);\n  }\n\n  progress.progress--gradient {\n    background: transparent;\n  }\n\n  .system-map__planetary-system-star-icon,\n  .system-map__planetary-system-map {\n    filter: contrast(1.25) !important;\n  }\n\n  table tbody tr.table__row--highlighted {\n    background: var(--color-background-panel-translucent) !important;\n  }\n\n  table tbody tr.table__row--highlighted td {\n    background: none !important;\n  }\n\n  table:not(.table--layout) tbody tr {\n    border-top-color: rgba(0,0,0,.6) !important;\n  }\n}"
  },
  {
    "path": "src/client/css/overrides/safari.css",
    "content": "/* Safari 10.1+ */\n@media not all and (min-resolution:.001dpcm) {\n  @media {\n    body {\n      font-synthesis: none;\n      /* Safari renders with a smaller base font size */\n      font-size: 1.3rem !important;\n    }\n  \n    /* Safari doesn't apply filters to SVG correctly so we use simple colors */\n    .system-map__system-object[data-system-object-type=\"Star\"] .system-map__planet-surface {\n      fill: orange;\n    }\n\n    .system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"O \"] .system-map__planet-surface,\n    .system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"B \"] .system-map__planet-surface,\n    .system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"A \"] .system-map__planet-surface,\n    .system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"TT \"] .system-map__planet-surface,\n    .system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"TTS \"] .system-map__planet-surface,\n    .system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"W \"] .system-map__planet-surface,\n    .system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"WC \"] .system-map__planet-surface,\n    .system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"WN \"] .system-map__planet-surface,\n    .system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"WO \"] .system-map__planet-surface,\n    .system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type*=\"White Dwarf\" i] .system-map__planet-surface,\n    .system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type=\"Neutron Star\" i] .system-map__planet-surface {\n      fill: white;\n    }\n\n    .system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"L \"] .system-map__planet-surface,\n    .system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"Y \"] .system-map__planet-surface,\n    .system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"T \"] .system-map__planet-surface,\n    .system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type*=\"Brown dwarf\" i] .system-map__planet-surface {\n      fill: maroon;\n    }\n\n    /* Safari doesn't apply filters to SVG correctly, sp we apply a simple\n       fitler to these container classes. */\n    .system-map__planetary-system-star-icon,\n    .system-map__planetary-system-map {\n      filter: contrast(1.5) !important;\n    }\n  \n    /* Safari positions wrings wrongly, so just hide them */\n    .system-map__planet-ring {\n      display: none;\n    }\n\n    /* Safari staight up mangles the rendering of this table */\n    table.ship-panel_modules-table.table--interactive tbody tr,\n    table.ship-panel_modules-table.table--flex-inline.table--interactive tbody tr td {\n      animation: none !important;\n      opacity: 1 !important;\n      animation-fill-mode: none !important;\n      animation-delay: 0 !important;\n    }\n\n    table tbody tr.table__row--highlighted {\n      background: var(--color-background-panel-translucent) !important;\n    }\n\n    table tbody tr.table__row--highlighted td {\n      background: none !important;\n    }\n\n    table:not(.table--layout) tbody tr {\n      border-top-color: rgba(0,0,0,.6) !important;\n    }\n\n    @supports (-webkit-touch-callout: none) {\n      /*This is that ONLY targets iOS browsers */\n\n      /* Some versions of Safari (e.g. iOS) incorrectly apply a fade to the \n       system map view so the easiest thing is to just disable the animation */\n      .navigation-panel__map-background { \n        animation: none;\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "src/client/css/panels/engineering-panel.css",
    "content": ".engineering__blueprint-grade {\n  clear: both;\n}\n\n@media only screen and (min-width: 799px) {\n  .engineering__blueprint-components {\n    padding-left: 20.5rem;\n  }\n  .engineering__blueprint-features {\n    width: 20rem;\n    float: left;\n    margin-top: 2.5rem;\n    margin-bottom: 1rem;\n    font-size: 1rem;\n    line-height: 1rem;\n  }\n\n}"
  },
  {
    "path": "src/client/css/panels/navigation-panel.css",
    "content": "\n.navigation-panel__inspector-heading,\n.navigation-panel__inspector h4,\n.navigation-panel__inspector h5,\n.navigation-panel__inspector p,\n.navigation-panel__inspector span {\n  word-wrap: break-word;\n  /* word-break: break-all; */\n  overflow-wrap: break-word;\n  hyphens: auto;\n  white-space: normal;\n}\n\n.navigation-panel__inspector-heading {\n  position: relative;\n  padding-left: 5rem;\n}\n\n.navigation-panel__inspector {\n  position: absolute;\n  right: 0;\n  top: 0;\n  bottom: 0;\n  width: 21.5rem;\n  transition: right .5s ease-in-out;\n  z-index: 10;\n}\n\n.navigation-panel__inspector--hidden {\n  right: -21.5rem;\n  padding: 0;\n  animation-delay: 0;\n}\n\n.navigation-panel__inspector .navigation-panel__inspector-heading .icon {\n  position: absolute;\n  top: -.25rem;\n  left: 0;\n  bottom: 0;\n  width: 4rem;\n  font-size: 3.5rem;\n}\n\n.navigation-panel__inspector hr {\n  margin: 1.5rem 0 1rem 0;\n}\n\n.navigation-panel__inspector .percentage {\n  display: inline-block;\n  width: 6rem;\n  text-align: right;\n  margin-right: .5rem;\n}\n\n.navigation-panel__inspector-heading h2 {\n  font-size: 1.5rem;\n  line-height: 1.5rem;\n  margin-bottom: 0.25rem;\n}\n\n.navigation-panel__inspector-heading h3 {\n  font-size: 1.25rem;\n  line-height: 1.25rem;\n}\n\n#navigation-panel[data-view=\"navigation-panel__list\"] .navigation-panel__map {\n  display: none;\n}\n\n#navigation-panel[data-view=\"navigation-panel__map\"] .navigation-panel__list {\n  display: none;\n}\n\n.navigation-panel__list,\n.navigation-panel__map {\n  position: absolute;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  margin: 0;\n  height: 100%;\n  z-index: 3;\n  overflow: hidden;\n  transition: right .5s ease-in-out;\n}\n\n.navigation-panel__list--inspector,\n.navigation-panel__map--inspector {\n  right: 22rem;\n}\n\n.navigation-panel__list {\n  left: 4.5rem;\n}\n\n.navigation-panel__list .scrollable {\n  padding-right: .5rem;\n}\n\n.navigation-panel__map {\n  left: 0;\n}\n\n.navigation-panel__list .scrollable {\n  height: 100%;\n}\n\n.navigation-panel__list table .icon {\n  font-size: 2rem;\n  line-height: 1rem;\n  margin: 0;\n  padding: .225rem 0;\n}\n\n.navigation-panel__list table .icon.system-object-icon {\n  position: absolute;\n  margin-left: -3rem;\n}\n\n.navigation-panel__map-foreground {\n  position: absolute;\n  overflow: auto;\n  z-index: 10;\n  width: auto;\n  top: 0rem;\n  left: 0rem;\n  right: 0rem;\n  bottom: 0rem;\n  overflow-y: scroll;\n}\n\n.navigation-panel__map-foreground,\n.navigation-panel__map-frame {\n  --color-scrollbar: var(--color-primary);\n}\n\n.navigation-panel__map-foreground.scrollable::-webkit-scrollbar-thumb {\n  background: var(--color-scrollbar);\n}\n\n.navigation-panel__map-foreground.scrollable::-webkit-scrollbar-track {\n  background-image: linear-gradient(90deg, transparent 41.67%, var(--color-scrollbar) 41.67%, var(--color-scrollbar) 50%, transparent 50%, transparent 91.67%, var(--color-scrollbar) 91.67%, var(--color-scrollbar) 100%);\n}\n\n.navigation-panel__map-background {\n  --background-position-y-offset-stars: 0px;\n  --background-position-y-offset-grid: 0px;\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background: linear-gradient(rgba(0,0,0,0), rgba(var(--color-primary-r), var(--color-primary-g), var(--color-primary-b), .15));\n  animation: system-map-fade-in-animation 1s ease-in-out;\n  animation-fill-mode: forwards;\n}\n\n\n@keyframes system-map-fade-in-animation {\n  0% {\n    mask: linear-gradient(90deg, #000 25%, #000000e6 50%, #00000000) 150% 0 / 400% no-repeat;\n    opacity: .5;\n  }\n  100% {\n    mask: linear-gradient(90deg, #000 25%, #000000e6 50%, #00000000) 0 / 400% no-repeat;\n    opacity: 1;\n  }\n}\n\n\n/*\n.navigation-panel__map-frame {\n  position: absolute;\n  top: 0;\n  left: 4.5rem;\n  right: .5rem;\n  bottom: 3.5rem;\n  pointer-events: none;\n  z-index: 15;\n}\n\n.navigation-panel__map-frame-border {\n  position: absolute;\n  width: 2.5rem;\n  height: 2.5rem;\n  border: .2rem solid var(--color-scrollbar);\n  opacity: .25;\n  pointer-events: none;\n}\n\n.navigation-panel__map-frame-border-top-left {\n  top: 0;\n  left: 0;\n  border-right: none;\n  border-bottom: none;\n}\n.navigation-panel__map-frame-border-top-right {\n  top: 0;\n  right: 0;\n  border-left: none;\n  border-bottom: none;\n}\n\n.navigation-panel__map-frame-border-bottom-left {\n  bottom: 0;\n  left: 0;\n  border-right: none;\n  border-top: none;\n}\n.navigation-panel__map-frame-border-bottom-right {\n  bottom: 0;\n  right: 0;\n  border-left: none;\n  border-top: none;\n}\n*/\n\n.navigation-panel__map-background::after {\n  background-color: black;\n  background-image: url(/images/textures/stars.jpg);\n  background-size: 50rem;\n  background-position-y: var(--background-position-y-offset-stars);\n  background-image: url(/images/textures/galaxy.jpg);\n  background-position: center center;\n  background-size: cover;\n  content: \" \";\n  display: block;\n  position: absolute;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  right: 0;\n  z-index: -2;\n  animation: navigation-panel__map-background-fade-in-animation 1s ease-in-out;\n  animation-fill-mode: forwards;\n}\n\n@keyframes navigation-panel__map-background-fade-in-animation {\n  from { filter: blur(2rem) brightness(200%); }\n  to { filter: blur(0) brightness(50%); }\n}\n\n.navigation-panel__map-background::before {\n  --color-map-background-grid: rgba(30, 30, 30, .25);\n  background-image: linear-gradient(var(--color-map-background-grid) .1rem, transparent .1rem), linear-gradient(90deg, var(--color-map-background-grid) .1rem, transparent .1rem);\n  background-size: 4rem 4rem;\n  background-position: -1.5rem 0;\n  background-position-y: var(--background-position-y-offset-grid);\n  content: \" \";\n  display: block;\n  position: absolute;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  right: 0;\n  z-index: -1;\n}\n\n.system-map__planet-icon {\n  height: 100%;\n  width: 100%;\n  border-radius: 10000px;\n  pointer-events: none;\n}\n\n.navigation-panel__inspector-section {\n  margin-bottom: 1.5rem;\n}\n\n.navigation-panel__inspector-section .icon {\n  margin-right: .5rem;\n  font-size: 2rem;\n  line-height: 1rem;\n  position: relative;\n  top: .5rem;\n}\n\n.navigation-panel__inspector-section ul {\n  margin-bottom: .5rem;\n  margin: .5rem 0;\n}\n\n.navigation-panel__inspector-section li {\n  font-size: var(--base-font-size);\n  margin: .25rem 0;\n}\n\n.navigation-panel__inspector-section--location .icon {\n  margin-right: .25rem;\n  font-size: 1.75rem;\n  line-height: 1.5rem;\n  position: relative;\n  top: .45rem;\n  text-decoration: none !important;\n}\n\n@media only screen and (orientation: portrait), (max-width: 599px) {\n  .navigation-panel__list,\n  .navigation-panel__map {\n    height: 100%;\n    bottom: 0;\n    transition: height .5s ease-in-out;\n  }\n  .navigation-panel__list--inspector,\n  .navigation-panel__map--inspector {\n    position: absolute;\n    height: 50%;\n    top: 0;\n    bottom: 50%;\n    right: 0;\n  }\n\n  .navigation-panel__inspector {\n    top: 50%;\n    position: absolute;\n    width: 100%;\n    top: calc(50% + .5rem);\n    left: 0;\n    right: 0;\n    bottom: 0;\n    transition: top .5s ease-in-out;\n  }\n\n  .navigation-panel__inspector--hidden {\n    top: 100%;\n    height: 0;\n    padding: 0;\n    overflow: hidden;\n  }\n}\n\n.navigation-panel__legend .icon {\n  font-size: 2rem;\n  line-height: 2rem;\n  position: relative;\n  top: .5rem;\n  margin-right: .25rem;\n}\n\n.navigation-panel__route-heading {\n  padding: .5rem;\n  height: 4rem;\n}\n\n@media only screen and (max-width: 799px) {\n  .navigation-panel__route-heading {\n    font-size: 1.75rem;\n  }\n}\n\ntable.navigation-panel__route-plan tbody tr.table__row--highlighted:hover td .text-info,\ntable.navigation-panel__route-plan tbody tr.table__row--highlighted:hover td .text-secondary,\ntable.navigation-panel__route-plan tbody tr.table__row--highlighted:hover td .text-danger {\n  color: var(--color-secondary-dark) !important;\n  text-shadow: none;\n}\n\ntable.navigation-panel__route-plan tbody tr.table__row--highlight-primary-hover:hover td .text-info,\ntable.navigation-panel__route-plan tbody tr.table__row--highlight-primary-hover:hover td .text-secondary,\ntable.navigation-panel__route-plan tbody tr.table__row--highlight-primary-hover:hover td .text-danger {\n  color: var(--color-primary-dark) !important;\n  text-shadow: none;\n}"
  },
  {
    "path": "src/client/css/panels/ship-panel.css",
    "content": ".ship-panel {\n  --height-module-panel-rem: 20;\n}\n\n.ship-panel hr {\n  margin: 1.5rem 0;\n}\n\n.ship-panel__title {\n  margin-bottom: .5rem;\n  display: grid;\n  grid-template-columns: auto 1fr;\n  overflow: hidden;\n  max-height: 4rem;\n}\n\n.ship-panel__horizontal-activity {\n  height: 100%;\n  border-left: .15rem solid #666;\n  margin-left: .5rem;\n  opacity: .75;\n  overflow: hidden;\n}\n\n.ship-panel__horizontal-activity-marker::before {\n  height: 100%;\n  opacity: .75;\n  border-bottom: .15rem solid #666;\n  position: absolute;\n  display: block;\n  content: ' ';\n  width: calc(100% - .5rem);\n  height: .5rem;\n  bottom: 0;\n  left: .5rem;\n  background-image: linear-gradient(90deg, #666 6.52%, transparent 6.52%, transparent 50%, #666 50%, #666 56.52%, transparent 56.52%, #000000 100%);\n  background-size: 26.00px 26.00px;\n}\n\n.ship-panel__horizontal-activity--online {\n  background-image: url('/images/line.png');\n  background-repeat: repeat-x;\n  background-position-y: 50%;\n  margin-left: .5rem;\n  animation: horizontal-activity-animation 10s linear infinite;\n  filter: invert(1) blur(.075rem);\n  opacity: .5;\n}\n\n.ship-panel__horizontal-activity--online::after {\n  display: block;\n  content: ' ';\n  height: 100%;\n  background-image: url('/images/line.png');\n  background-repeat: repeat-x;\n  position: relative;\n  top: -5.5rem;\n  background-clip: cover;\n  animation: horizontal-activity-animation 6s linear infinite;\n  filter: blur(.2rem);\n  opacity: .75;\n  transform: scaleY(-1.5);\n}\n\n.ship-panel__horizontal-activity--online::before {\n  display: block;\n  content: ' ';\n  height: 100%;\n  xbackground-size: 26.00px 26.00px;\n  background-image: url('/images/line.png');\n  background-repeat: repeat-x;\n  background-position-y: 50%;\n  background-clip: cover;\n  animation: horizontal-activity-animation 18s linear infinite;\n  filter: blur(.15rem);\n  opacity: .65;\n  transform: scaleY(-2);\n}\n\n@keyframes horizontal-activity-animation {\n  0%,\n  100% {\n    background-position-x: 0px;\n  }\n  50% {\n\n  }\n  100% {\n    background-position-x: 584px;\n  }\n}\n\n.ship-panel__status {\n  position: absolute;\n  /* To avoid clipping text-shadow to left of title text */\n  top: 0;\n  bottom: 0;\n  height: auto;\n  padding-right: .5rem;\n  right: 0;\n  left: 4.5rem;\n}\n\n\n.ship-panel__status:before {\n  content: \" \";\n  display: block;\n  position: absolute;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  right: 0;\n  z-index: -1;\n  opacity: .02;\n  content: ' ';\n  background-size: 5rem 5rem;\n  background-image: url(/images/grid.svg);\n}\n\n.ship-panel__modules {\n  position: absolute;\n  /* To avoid clipping text-shadow to left of title text */\n  top: 0;\n  bottom: 0;\n  height: auto;\n  padding-right: .5rem;\n  right: 0;\n  left: 4.5rem;\n}\n\n.ship-panel__modules--module-inspector {\n  bottom: 15rem;\n}\n\n.ship-panel__module-inspector {\n  position: absolute;\n  height: 14.5rem;\n  bottom: 0;\n  width: 100%;\n  z-index: 20;\n  transition: height .25s ease-in;\n  display: flex;\n  flex-wrap: wrap;\n  gap: .25rem;\n}\n\n.ship-panel__module-inspector > *:not(button) {\n  pointer-events: none;\n}\n\n.ship-panel__module-inspector--hidden {\n  height: 0;\n  padding: 0;\n  border-color: transparent;\n  overflow: hidden;\n}\n\n@media only screen and (orientation: portrait) {\n  .ship-panel__modules--module-inspector {\n    bottom: 20.5rem;\n  }\n\n  .ship-panel__module-inspector {\n    height: 20rem;\n  }\n\n  .ship-panel__module-inspector--hidden {\n    height: 0;\n  }\n}\n\n\n\n.ship-panel__ship-pip {\n  height: 2rem;\n  margin-top: .25rem;\n}\n\n.ship-panel__ship-pip progress {\n  width: 5rem;\n  height: 1.5rem !important;\n  float: right;\n}\n\n.ship-panel__ship-pip progress {\n  width: calc(100% - 4rem);\n}\n\n.ship-panel__ship-pip label {\n  float: right;\n  font-size: 1.25rem;\n  margin-right: .5rem;\n}\n\n.ship-panel__ship-pip label {\n  float: left;\n}\n\n.ship-panel__ship-pips {\n  position: relative;\n  transform: rotate(270deg);\n  width: 16rem;\n  top: 2.75rem;\n  padding: .5rem;\n}\n.ship-panel__ship-pip label {\n  transform: rotate(45deg);\n  font-size: 1rem !important;\n  position: relative;\n  left: 1.5rem;\n}\n.ship-panel__ship-pip progress {\n  height: 2rem !important;\n  margin-bottom: 1rem;\n}\n\n.ship-panel__ship-pip progress {\n  position: relative;\n  animation: ship-panel__ship-pip-animation 3s ease-in-out infinite;\n}\n\n.ship-panel__ship-pip:nth-child(2) progress {\n  animation-delay: 1.5s;\n}\n\n.ship-panel__ship-pip:nth-child(3) progress {\n  animation-delay: 2s;\n}\n\n@keyframes ship-panel__ship-pip-animation {\n  0%,\n  100% {\n    padding-right: 0;\n  }\n  50% {\n    padding-right: .3rem;\n  }\n}\n\n@media only screen and (min-width: 799px) {\n  .ship-panel__ship-pips {\n    left: -3rem;\n  }\n}\n\n.ship-panel__ship-stats {\n  width: 100%;\n  margin: auto;\n  border: .5rem solid transparent;\n  table-layout: fixed;\n}\n\n.ship-panel__ship-stats tbody tr,\n.ship-panel__ship-stats tbody tr:hover td,\n.ship-panel__ship-stats tbody tr:focus td {\n  background: none !important;\n  color: inherit !important;\n}\n\n.ship-panel__ship-stats td {\n  padding: 0 1rem 0 0;\n  text-shadow: none;\n}\n\n.ship-panel__ship-stats td > .value {\n  margin-bottom: .5rem;\n}\n\n.ship-panel__ship-stats td > progress,\n.ship-panel__ship-stats td > span,\n.ship-panel__ship-stats td > .value {\n  clear: both;\n  xfloat: left;\n  display: block;\n  text-align: center;\n}\n\n.ship-panel__module-icon {\n  background: var(--color-primary-dark);\n}\n\n.ship-panel__module-section {\n  width: 33%;\n  float: left;\n  pointer-events: none;\n  font-size: var(--base-font-size) !important;\n  font-weight: bold !important;\n  box-sizing: border-box;\n  position: relative;\n}\n\n.ship-panel__module-section .text-link {\n  pointer-events: all !important;\n}\n\n@media only screen and (orientation: portrait) {\n  .ship-panel__module-section {\n    width: 100%;\n    margin-bottom: .25rem;\n  }\n}\n\n.ship-panel__module-section p {\n  margin: 0.25rem 0;\n}\n\ntable.table--flex-inline.table--interactive tbody tr td.ship-panel__module {\n  box-shadow: 0 0 1.5rem .5rem rgba(var(--color-primary-dark-r),var(--color-primary-dark-g),var(--color-primary-dark-b),.3) inset;\n}\n\ntable.table--flex-inline.table--interactive tbody tr:hover td.ship-panel__module,\ntable.table--flex-inline.table--interactive tbody tr:focus td.ship-panel__module {\n  filter: var(--filter-hover-element);\n\n}\n\ntable.table--flex-inline.table--interactive tbody tr.table__row--active td.ship-panel__module {\n filter: var(--filter-active-element);\n}\n\ntable.table--flex-inline.table--interactive tbody tr:hover td.ship-panel__module .ship-panel__module-icon,\ntable.table--flex-inline.table--interactive tbody tr:focus td.ship-panel__module .ship-panel__module-icon,\ntable.table--flex-inline.table--interactive tbody tr.table__row--active td.ship-panel__module .ship-panel__module-icon {\n  color: var(--color-primary-dark);\n  background: var(--color-background-panel-translucent);\n  text-shadow: none;\n}\n\ntable.table--flex-inline.table--interactive tbody tr:hover td.ship-panel__module .ship-panel__engineering .icon,\ntable.table--flex-inline.table--interactive tbody tr:focus td.ship-panel__module .ship-panel__engineering .icon,\ntable.table--flex-inline.table--interactive tbody tr.table__row--active td.ship-panel__module .ship-panel__engineering .icon {\n  color: var(--color-primary-dark);\n  font-weight: 600;\n  text-shadow: none;\n}\n\n.ship-panel .icon.icarus-terminal-engineering {\n  /* This is a hack, weird spacing got introduced at some point */\n  width: 2rem !important;\n  display: inline-block;\n  right: .25rem;\n  position: relative;\n}\n\n.ship-panel__module p {\n  margin-bottom: 0;\n}\n\n.ship-panel__module p:last-of-type {\n  margin-bottom: 2.75rem;\n}\n\n.ship-panel__engineering {\n  position: absolute;\n  right: .5rem;\n  bottom: 0.25rem;\n  font-size: 2rem;\n  line-height: 2rem;\n}\n\n.ship-panel__engineering .icon {\n  font-weight: 500;\n}\n\ntable.ship-panel__lights {\n  top: 0;\n}\n\n@media only screen and (max-width: 799px) {\n  table.ship-panel__lights {\n    top: -3rem;\n  }\n}\n\ntable.ship-panel__lights td {\n  overflow: visible;\n  padding: 0 .25rem;\n}\n\n.ship-panel__light-text {\n  margin-left: 2.5rem;\n  display: block;\n  width: 7rem;\n  font-size: 1.1rem;\n  line-height: 1.25rem;\n  text-align: left;\n  hyphens: none;\n}\n\n@media only screen and (max-width: 1023px) {\n  .ship-panel__light-text {\n    font-size: 1rem;\n  }\n}\n\n\n@media only screen and (max-width: 799px) {\n  .ship-panel__light-text {\n    margin: auto;\n    width: auto;\n    padding: 0;\n    line-height: 1rem;\n    text-align: center;\n    text-overflow: ellipsis;\n    hyphens: auto;\n  } \n}\n\n@media only screen and (max-width: 599px) {\n  .ship-panel__light-text {\n    xfont-size: .7rem;\n  }\n}\n\n.ship-panel__light--off,\n.ship-panel__light--on,\n.ship-panel__light--danger {\n  background: var(--color-background-panel);\n  color: var(--color-primary);\n  display: block;\n  padding: 0.25rem;\n  height: 1.5rem;\n  width: 1.5rem;\n  position: relative;\n  display: flex;\n  flex-direction: column;\n  justify-content: center;\n  text-align: center;\n  opacity: 0.5;\n  border: .2rem solid var(--color-primary);\n  transition: all .25s ease-in-out;\n  border-radius: 10rem;\n  margin-bottom: .25rem;\n}\n\n@media only screen and (max-width: 799px) {\n  .ship-panel__light--off,\n  .ship-panel__light--on,\n  .ship-panel__light--danger {\n    height: 3rem;\n    width: auto;\n    overflow: hidden;\n    margin-bottom: 0;\n  }\n\n  .ship-panel__light--off,\n  .ship-panel__light--on,\n  .ship-panel__light--on::before,\n  .ship-panel__light--danger,\n  .ship-panel__light--danger::before,\n  .ship-panel__light--danger::after {\n    border-radius: .5rem !important;\n  }\n}\n\n.ship-panel__light--on {\n  opacity: 1;\n  color: var(--color-info);\n  border-color: var(--color-info);\n  background-color: transparent;\n  box-shadow: inset 0 0 1rem var(--color-secondary), 0 0 .25rem var(--color-secondary);\n}\n\n.ship-panel__light--on::before {\n  content: '';\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  display: block;\n  position: absolute;\n  background-color: var(--color-secondary);\n  z-index: -1;\n  opacity: .5;\n  border-radius: 10rem;\n}\n\n.ship-panel__light--danger {\n  opacity: 1;\n  color: var(--color-danger);\n  background-color: transparent;\n  filter: saturate(1.8) contrast(1.5);\n  box-shadow: inset 0 0 1rem var(--color-danger), 0 0 .25rem var(--color-danger);\n  border-color: var(--color-danger);\n}\n\n.ship-panel__light--danger::before {\n  content: '';\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  display: block;\n  position: absolute;\n  opacity: .3;\n  z-index: -1;\n  background: var(--color-danger);\n  border-radius: 10rem;\n}\n\n.ship-panel__light--danger::after {\n  content: '';\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  display: block;\n  position: absolute;\n  opacity: .6;\n  z-index: 1;\n  animation: light-blink-animation .75s ease-in-out infinite;\n  box-shadow: inset 0 0 2rem black;\n  border-radius: 10rem;\n}\n\n@keyframes light-blink-animation {\n  50% { opacity: .5; }\n}\n\n\n.ship-panel__instrumentation {\n  height: 38rem;\n}\n\n@media only screen and (max-width: 799px) {\n  .ship-panel__instrumentation {\n    height: 53rem;\n  }\n}\n\n.ship-panel__navigation-instrumentation {\n  position: relative;\n}\n\n@media only screen and (min-width: 799px) {\n  .ship-panel__navigation-instrumentation {\n    left: 2rem;\n  }\n}\n\n.ship-panel__navigation-instrumentation p {\n  font-size: 1rem;\n}\n\n@media only screen and (max-width: 799px) {\n  .ship-panel__switches {\n    margin-bottom: 2rem !important;\n  }\n}\n\n.ship-panel__navigation-instrumentation.--active .dial-border {\n  xanimation: ship-panel__navigation-instrumentation-animation 3s ease-in-out infinite;\n  /* \"glowing\" animation disabled here as browser rendering bug can cause compass heading icon to \"jiggle\" */\n  box-shadow: 0 0 1.25rem 0 rgba(255,255,255,.5);\n}\n\n@keyframes ship-panel__navigation-instrumentation-animation {\n  0%,\n  100% {\n    box-shadow: 0 0 .5rem 0 rgba(255,255,255,.75);\n  }\n  50% {\n    box-shadow: 0 0 1.25rem 0 rgba(255,255,255,.5);\n  }\n}\n\n.ship-panel__navigation-instrumentation .dial-background {\n  background: radial-gradient(var(--color-primary-dark) 1%, transparent 90%);\n  position: relative;\n  top: 0;\n  left: 0;\n  display: flex;\n  flex-direction: column;\n  justify-content: center;\n  text-align: center;\n  height: 100%;\n  min-height: 12rem;\n  min-width: 12rem;\n  border-radius: 100rem;\n}\n\n.ship-panel__navigation-instrumentation .rings {\n  opacity: .25;\n}\n\n.ship-panel__navigation-instrumentation.--active .rings {\n  opacity: .75;\n}\n\n.ship-panel__navigation-instrumentation .ring {\n  border: .5rem solid var(--color-info);\n  border-radius: 100rem;\n  position: absolute;\n  aspect-ratio: 1/1;\n  transform: rotateX(250deg);\n}\n\n.ship-panel__navigation-instrumentation.--on-board .ring {\n  animation: ship-panel__navigation-instrumentation-rings-animation 3s ease-in-out infinite;\n}\n\n.ship-panel__navigation-instrumentation.--active .ring {\n  box-shadow: 0 0 3rem 0 rgba(255,255,255,.5);\n}\n\n@keyframes ship-panel__navigation-instrumentation-rings-animation {\n  0%,\n  100% {\n    transform: rotateX(250deg);\n  }\n\n  50% {\n    transform: rotateX(251.5deg);\n  }\n}"
  },
  {
    "path": "src/client/css/system-map-realistic-planets.css",
    "content": "/* Additional styles for different types of planet https://elite-dangerous.fandom.com/wiki/Planets */\n\n.system-map__planet-ring {\n  display: block;\n  fill: transparent;\n  stroke: rgba(160, 255, 246, 0.2);\n  stroke-width: 5rem;\n  transform-box: fill-box;\n  transform-origin: center;\n  transform: rotate(-15deg);\n  fill: url(#system-map-svg-gradient__planet-ring);\n  pointer-events: none;\n}\n#system-map-svg-gradient__planet-ring stop:nth-child(1) {\n  stop-color: rgba(160, 160, 160, 0.1);\n}\n#system-map-svg-gradient__planet-ring stop:nth-child(2) {\n  stop-color: rgba(160, 160, 160, 0.2);\n}\n\n.system-map__system-object[data-system-object-type=\"Planet\"][data-system-object-sub-type=\"Class I gas giant\"],\n.system-map__system-object[data-system-object-type=\"Planet\"][data-system-object-sub-type=\"Class II gas giant\"],\n.system-map__system-object[data-system-object-type=\"Planet\"][data-system-object-sub-type=\"Class III gas giant\"],\n.system-map__system-object[data-system-object-type=\"Planet\"][data-system-object-sub-type=\"Class IV gas giant\"],\n.system-map__system-object[data-system-object-type=\"Planet\"][data-system-object-sub-type=\"Class V gas giant\"],\n.system-map__system-object[data-system-object-type=\"Planet\"][data-system-object-sub-type=\"Helium-rich gas giant\"],\n.system-map__system-object[data-system-object-type=\"Planet\"][data-system-object-sub-type=\"Helium gas giant\"] \n.system-map__system-object[data-system-object-type=\"Planet\"][data-system-object-sub-type=\"Gas giant with water-based life\"] {\n  fill: url(#system-map-svg-gradient__planet--gas-giant);\n}\n#system-map-svg-gradient__planet--gas-giant stop:nth-child(1) {\n  stop-color: rgb(132, 134, 111);\n}\n#system-map-svg-gradient__planet--gas-giant stop:nth-child(2) {\n  stop-color: rgb(117, 70, 7);\n}\n\n.system-map__system-object[data-system-object-type=\"Planet\"][data-system-object-sub-type=\"Ammonia world\"],\n.system-map__system-object[data-system-object-type=\"Planet\"][data-system-object-sub-type=\"Gas giant with ammonia-based life\"] {\n  fill: url(#system-map-svg-gradient__planet--gas-giant-ammonia);\n}\n#system-map-svg-gradient__planet--gas-giant-ammonia stop:nth-child(1) {\n  stop-color: rgb(107, 139, 87);\n}\n#system-map-svg-gradient__planet--gas-giant-ammonia stop:nth-child(2) {\n  stop-color: rgb(4, 99, 47);\n}\n\n.system-map__system-object[data-system-object-type=\"Planet\"][data-system-object-sub-type=\"Rocky body\"] {\n  fill: url(#system-map-svg-gradient__planet--rocky);\n}\n#system-map-svg-gradient__planet--rocky stop:nth-child(1) {\n  stop-color: rgb(124, 94, 81);\n}\n#system-map-svg-gradient__planet--rocky stop:nth-child(2) {\n  stop-color: rgb(97, 57, 41);\n}\n\n.system-map__system-object[data-system-object-type=\"Planet\"][data-system-object-sub-type=\"Rocky Ice world\"] {\n  fill: url(#system-map-svg-gradient__planet--rocky-icy);\n}\n#system-map-svg-gradient__planet--rocky-icy stop:nth-child(1) {\n  stop-color: rgb(106, 142, 155);\n}\n#system-map-svg-gradient__planet--rocky-icy stop:nth-child(2) {\n  stop-color: rgb(90, 69, 37);\n}\n\n.system-map__system-object[data-system-object-type=\"Planet\"][data-system-object-sub-type=\"Icy body\"] {\n  fill: url(#system-map-svg-gradient__planet--icy);\n}\n#system-map-svg-gradient__planet--icy stop:nth-child(1) {\n  stop-color: rgb(153, 206, 226);\n}\n#system-map-svg-gradient__planet--icy stop:nth-child(2) {\n  stop-color: rgb(61, 88, 110);\n}\n\n.system-map__system-object[data-system-object-type=\"Planet\"][data-system-object-sub-type=\"Metal-rich body\"]{\n  fill: url(#system-map-svg-gradient__planet--metal-rich);\n}\n#system-map-svg-gradient__planet--metal-rich stop:nth-child(1) {\n  stop-color: rgb(102, 102, 102);\n}\n#system-map-svg-gradient__planet--metal-rich stop:nth-child(2) {\n  stop-color: rgb(97, 84, 79);\n}\n\n.system-map__system-object[data-system-object-type=\"Planet\"][data-system-object-sub-type=\"High metal content world\"] {\n  fill: url(#system-map-svg-gradient__planet--high-metal);\n}\n#system-map-svg-gradient__planet--high-metal stop:nth-child(1) {\n  stop-color: rgb(133, 19, 19);\n}\n#system-map-svg-gradient__planet--high-metal stop:nth-child(2) {\n  stop-color: rgb(85, 28, 5);\n}\n\n.system-map__system-object[data-system-object-type=\"Planet\"][data-system-object-sub-type=\"Water giant\"],\n.system-map__system-object[data-system-object-type=\"Planet\"][data-system-object-sub-type=\"Water world\"],\n.system-map__system-object[data-system-object-type=\"Planet\"][data-system-object-sub-type=\"Earth-like world\"] {\n  fill: url(#system-map-svg-gradient__planet--earth-like);\n}\n#system-map-svg-gradient__planet--earth-like stop:nth-child(1) {\n  stop-color: rgb(27, 116, 250);\n}\n#system-map-svg-gradient__planet--earth-like stop:nth-child(2) {\n  stop-color: rgb(7, 82, 72);\n}\n\n\n"
  },
  {
    "path": "src/client/css/system-map.css",
    "content": ".system-map,\n.system-map__planetary-system {\n  --system-map-left-margin: 5rem;\n}\n\n.system-map {\n  margin-top: 4rem;\n  margin-bottom: 4rem;\n}\n\n/* Happy with the effect but it negatively impacts rendering time too much \non slow devices (e.g. Amazon Fire) to be the default */\n\n/*\n.system-map__overlay {\n  position: fixed;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  right: 2rem;\n  background-image: url(/images/textures/noise.svg);\n  opacity: .25;\n  filter: contrast(2) invert(1);\n  z-index: 20;\n  transition: right .5s ease-in-out;\n  pointer-events: none;\n}\n\n.navigation-panel__map--inspector .system-map__overlay {\n  right: 24rem;\n}\n\n@media only screen and (orientation: portrait) {\n  .navigation-panel__map--inspector .system-map__overlay {\n    right: 2rem;\n  }\n}\n*/\n\n.system-map__toolbar,\n.system-map__toolbar-background {\n  position: absolute;\n  height: 4.25rem;\n  left: 4.5rem;\n  right: 1.5rem;\n  top: 0rem;\n  box-sizing: border-box;\n  z-index: 100;\n}\n\n.system-map__toolbar {\n  padding-left: .75rem;\n  padding-top: .4rem;\n}\n\n.system-map__toolbar-background {\n  backdrop-filter: blur(.5rem) brightness(.25);\n}\n\n.map__info {\n  position: absolute;\n  color: var(--color-info);\n  left: .75rem;\n  width: 100%;\n  top: .5rem;\n  height: 3.25rem;\n  z-index: 50;\n  pointer-events: none;\n  box-sizing: border-box;\n  line-height: 1.5rem;\n}\n\n.system-map__info--system-facilities {\n  margin-top: .1rem;\n  position: absolute;\n  left: .75rem;\n}\n\n.system-map__info--icons {\n  white-space: nowrap !important;\n  text-overflow: ellipsis !important;\n  overflow-x: clip !important; /* avoids clipping text shadow on y axis */\n  pointer-events: none;\n  margin-bottom: .25rem;\n}\n\n.system-map__info-icon {\n  color: var(--color-info);\n  text-shadow: var(--text-shadow);\n  margin-right: 1rem;\n  position: relative;\n}\n\n.system-map__info-icon .icon {\n  position: relative;\n  top: .25rem;\n  margin-right: .25rem;\n  font-size: 1.25rem;\n  line-height: 1rem;\n  text-shadow: var(--text-shadow);\n}\n\n.system-map__info-icon .count {\n  display: inline-block;\n  font-size: 1rem;\n  line-height: 1rem;\n  color: var(--color-info);\n}\n\n.system-map__location {\n  position: absolute;\n  top: .25rem;\n  z-index: 50;\n  pointer-events: none;\n  height: 3.5rem;\n  font-size: 1rem;\n  right: 1rem;\n  width: 100%;\n  text-align: right;\n}\n\n.system-map__location h3 {\n  font-size: 1.25rem;\n  text-align: right !important;\n  display: inline;\n  position: absolute;\n  right: 0;\n}\n\n\n.system-map__system-information {\n  position: absolute;\n  left: 4.5rem;\n  bottom: 0;\n  height: auto;\n  width: auto;\n  box-sizing: border-box;\n  z-index: 101;\n  padding: .5rem;\n  font-size: 1rem;\n  border-radius: .1rem;\n  min-height: 4rem;\n}\n\n.system-map__system-information--open {\n  background: rgba(0,0,0,.75);\n  backdrop-filter: blur(.5rem) brightness(.25);\n  clip-path: polygon(0 2.00rem,2.00rem 0,100% 0,100% calc(100% - 2.00rem),calc(100% - 2.00rem) 100%,0 100%);\n  border-radius: .2rem;\n  padding: .5rem 2.5rem .6rem .75rem;\n  background: var(--linear-gradient-background);\n  margin-right: 1.5rem;\n}\n\n.system-map__system-information--open:hover {\n  background: var(--color-primary-dark);\n}\n\n.system-map__system-information--open:before {\n  content: \"\";\n  position: absolute;\n  inset: 0;\n  z-index: -1;\n  background: var(--color-info);\n  background: var(--color-primary);\n  opacity: .25;\n  clip-path: polygon(0 2.00rem,2.00rem 0,100% 0,100% calc(100% - 2.00rem),calc(100% - 2.00rem) 100%,0 100%,0 2.00rem,.15rem  calc(2.00rem + 0.06rem),.15rem calc(100% - .15rem),calc(100% - 2.00rem - 0.06rem) calc(100% - .15rem),calc(100% - .15rem) calc(100% - 2.00rem - 0.06rem),calc(100% - .15rem) .15rem,calc(2.00rem + 0.06rem) .15rem,.15rem calc(2.00rem + 0.06rem));\n  border-radius: .2rem;\n}\n\n.system-map__system-information--open:hover:before {\n  background: var(--color-primary);\n  opacity: 1;\n}\n\n.system-map__system-position {\n  position: absolute;\n  top: 4rem;\n  right: 1.5rem;\n  text-align: right;\n  font-size: 1rem;\n}\n\n.system-map__system-telemetry--progress,\n.system-map__system-telemetry--text {\n  position: absolute;\n  bottom: -.25rem;\n  right: 1.5rem;\n  font-size: 1rem;\n  text-align: left;\n  padding: .1rem;\n  border-radius: .2rem;\n  z-index: 100;\n  width: 8.5rem;\n  padding: .5rem;\n  overflow: hidden;\n  background: rgba(0,0,0,.75);\n}\n\n.system-map__system-telemetry--text {\n  right: 1.25rem;\n}\n\n.system-map__planetary-system {\n  position: relative;\n  display: block;\n  left: 0;\n  min-height: 5rem;\n  height: auto;\n  padding-top: 1rem;\n  padding-left: var(--system-map-left-margin);\n}\n\n.system-map__planetary-system:last-child {\n  margin-bottom: 2rem;\n}\n\n.system-map__planetary-system svg {\n  max-width: 100%;\n  /* Don't display map SVG on page load for performance reasons */\n  opacity: 0;\n  visibility: hidden;\n  animation: svg-fade-in-animation 1s ease-in-out;\n  animation-fill-mode: forwards;\n  /* Wait until after other animations on page are done for best performance on slow devices */\n  animation-delay: 1s; \n}\n\n.system-map__planetary-system-star-icon svg {\n  opacity: 0;\n  visibility: hidden;\n  animation: fx-fade-in-animation 1s ease-in-out;\n  animation-fill-mode: forwards;\n  /* Wait until after other animations on page are done for best performance on slow devices */\n  animation-delay: .5s; \n}\n\n@keyframes svg-fade-in-animation {\n  from { filter: contrast(2) blur(2rem); visibility: visible; opacity : 0; }\n  to { filter: contrast(1) blur(0); visibility: visible; opacity: 1; }\n}\n\n\n.system-map__planetary-system-star {\n  position: relative;\n  display: inline-block;\n}\n\n.system-map__planetary-system-star--icon {\n  padding-left: 5.5rem;\n}\n\n.system-map__planetary-system-star-icon {\n  width: 5rem;\n  height: 5rem;\n  position: absolute;\n  left: 0;\n  top: 0;\n}\n\n.system-map__planetary-system-star h2 {\n  font-size: 2rem;\n  line-height: 2rem;\n}\n\n@media only screen and (max-width: 799px) {\n  .system-map__planetary-system-star h2 { \n    font-size: 1.75rem;\n    line-height: 2rem;\n  }\n}\n\n.system-map__planetary-system-star h3,\n.system-map__planetary-system-star h4 {\n  font-size: 1.25rem;\n  line-height: 1.25rem;\n}\n\n.system-map__planetary-system-star .icon {\n  position: relative;\n  top: .25rem;\n}\n\n.system-map__system-object {\n  outline: 0;\n}\n\n.system-map__system-object .system-map__planet {\n  fill: url(#svg-gradient__unknown);\n  overflow: visible;\n}\n\n.system-map__planetary-system-map .system-map__system-object:focus .system-map__planet {\n  outline: none;\n  stroke-width: 100 !important;\n  stroke: var(--color-system-map-focus) !important;\n  transition: all .1s ease;\n  vector-effect: non-scaling-stroke;\n}\n\n.system-map__system-object .system-map__planet {\n  z-index: 3;\n}\n\n.system-map__system-object[data-system-object-type=\"Planet\"]:focus .system-map__planet {\n  filter: url(#svg-filter__planet-shadow) drop-shadow(0 0 8rem var(--color-primary-dark)) var(--filter-system-map-planet-not-landable) !important;\n}\n\n.system-map__system-object[data-system-object-type=\"Planet\"][data-system-object-small=\"true\"]:focus .system-map__planet {\n  filter: url(#svg-filter__planet-shadow--small) drop-shadow(0 0 4rem var(--color-primary-dark)) var(--filter-system-map-planet-not-landable) !important;\n}\n\n.system-map__system-object[data-system-object-type=\"Planet\"][data-system-object-landable=\"true\"]:focus .system-map__planet {\n  filter: url(#svg-filter__planet-shadow) drop-shadow(0 0 8rem var(--color-primary-dark)) var(--filter-system-map-planet-landable) !important;\n}\n\n.system-map__system-object[data-system-object-type=\"Planet\"][data-system-object-small=\"true\"][data-system-object-landable=\"true\"]:focus .system-map__planet {\n  filter: url(#svg-filter__planet-shadow--small) drop-shadow(0 0 4rem var(--color-primary-dark)) var(--filter-system-map-planet-landable) !important;\n}\n\n/* .system-map__system-object[data-system-object-type=\"Planet\"]:focus + .system-map__planet-ring {\n  stroke: var(--color-icon-focus);\n  stroke-width: 10rem;\n  transition: all .1s ease; \n  opacity: 0.7;\n} */\n\n.system-map__system-object[data-system-object-type=\"Planet\"]:not([data-system-object-atmosphere=\"No atmosphere\"]) .system-map__planet {\n\n}\n\n.system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type=\"Supermassive Black Hole\" i] .system-map__planet,\n.system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type=\"Black Hole\" i] .system-map__planet {\n  filter: none !important;\n}\n\n.system-map__system-object[data-system-object-type=\"Planet\"] .system-map__planet {\n  fill: url(#system-map-svg-gradient__planet);\n  filter: url(#svg-filter__planet-shadow) var(--filter-system-map-planet-not-landable);\n}\n.system-map__system-object[data-system-object-type=\"Planet\"][data-system-object-sub-type*=\"gas giant\" i] .system-map__planet-surface {\n  fill: url(#svg-pattern__planet-surface--gas-giant);\n}\n\n.system-map__system-object[data-system-object-type=\"Planet\"][data-system-object-landable=\"true\"] .system-map__planet {\n  fill: url(#system-map-svg-gradient__planet--landable);\n}\n\n.system-map__system-object[data-system-object-type=\"Planet\"][data-system-object-landable=\"true\"][data-system-object-small=\"true\"] .system-map__planet {\n  filter: url(#svg-filter__planet-shadow--small) var(--filter-system-map-planet-landable);\n}\n\n.system-map__system-object[data-system-object-type=\"Planet\"][data-system-object-small=\"true\"] .system-map__planet {\n  filter: url(#svg-filter__planet-shadow--small) var(--filter-system-map-planet-not-landable);\n}\n\n.system-map__system-object[data-system-object-type=\"Planet\"]:not([data-system-object-atmosphere=\"No atmosphere\"]) .system-map__planet {\n  filter: url(#svg-filter__planet-shadow) var(--filter-system-map-planet-not-landable);\n}\n\n.system-map__system-object[data-system-object-type=\"Planet\"]:not([data-system-object-atmosphere=\"No atmosphere\"])[data-system-object-small=\"true\"] .system-map__planet {\n  filter: url(#svg-filter__planet-shadow--small) var(--filter-system-map-planet-not-landable);\n}\n\n.system-map__system-object[data-system-object-type=\"Planet\"]:not([data-system-object-atmosphere=\"No atmosphere\"])[data-system-object-landable=\"true\"][data-system-object-small=\"true\"] .system-map__planet {\n  filter: url(#svg-filter__planet-shadow--small) var(--filter-system-map-planet-landable);\n}\n\n.system-map__system-object[data-system-object-type=\"Planet\"][data-system-object-sub-type*=\"Water giant\"] .system-map__planet-surface,\n.system-map__system-object[data-system-object-type=\"Planet\"][data-system-object-sub-type*=\"Water world\"] .system-map__planet-surface,\n.system-map__system-object[data-system-object-type=\"Planet\"][data-system-object-sub-type*=\"Ammonia world\"] .system-map__planet-surface,\n.system-map__system-object[data-system-object-type=\"Planet\"][data-system-object-sub-type*=\"Earth-like world\"] .system-map__planet-surface {\n  fill: url(#svg-pattern__planet-surface--clouds);\n  filter: contrast(2) brightness(2) !important;\n}\n\n.system-map__system-object[data-system-object-type=\"Star\"] .system-map__planet {\n  filter: url(#svg-filter__star-glow--light);\n}\n\n.system-map__system-object[data-system-object-type=\"Star\"]:focus .system-map__planet {\n  stroke-width: 225 !important;\n}\n\n.system-map__system-object[data-system-object-type=\"Star\"] .system-map__planet-surface {\n  fill: white;\n  filter: grayscale(100%) contrast(0.2) brightness(1.5) drop-shadow(0 0 15rem white);\n  opacity: 1;\n  stroke: none;\n}\n\n.system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type=\"Supermassive Black Hole\" i] .system-map__planet-surface,\n.system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type=\"Black Hole\" i] .system-map__planet-surface {\n  fill: black !important;\n  filter: drop-shadow(0 0 15rem white) !important;\n  stroke-width: 100;\n  stroke: white !important;\n}\n\n.system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type*=\"White Dwarf\" i] .system-map__planet-surface,\n.system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type=\"Neutron Star\" i] .system-map__planet-surface {\n  filter: grayscale(100%) contrast(0.1) brightness(2) drop-shadow(0 0 7rem rgb(118, 173, 245)) drop-shadow(0 0 5rem rgb(53, 114, 255));\n}\n\n.system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"O \"] .system-map__planet-surface,\n.system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"B \"] .system-map__planet-surface,\n.system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"A \"] .system-map__planet-surface,\n.system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"TT \"] .system-map__planet-surface,\n.system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"TTS \"] .system-map__planet-surface,\n.system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"W \"] .system-map__planet-surface,\n.system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"WC \"] .system-map__planet-surface,\n.system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"WN \"] .system-map__planet-surface,\n.system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"WO \"] .system-map__planet-surface {\n  filter: grayscale(100%) contrast(0.2) brightness(1.8) drop-shadow(0 0 5rem rgb(222, 247, 255)) drop-shadow(0 0 10rem white) drop-shadow(0 0 10rem rgb(108, 196, 255));\n}\n\n.system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"G \"] .system-map__planet-surface {\n  filter: contrast(0.2) sepia(100%) hue-rotate(350deg) saturate(2) brightness(1.1) contrast(2) drop-shadow(0 0 5rem rgb(255, 236, 129)) drop-shadow(0 0 10rem rgb(255, 236, 129)) drop-shadow(0 0 10rem rgb(255, 166, 0));\n}\n\n.system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"F \"] .system-map__planet-surface {\n  filter: contrast(0.2) sepia(100%) hue-rotate(350deg) saturate(1) brightness(1.3) contrast(1.5) drop-shadow(0 0 5rem rgb(255, 244, 181)) drop-shadow(0 0 10rem rgb(255, 242, 168)) drop-shadow(0 0 10rem rgb(255, 220, 154));\n}\n\n.system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"Ae \"] .system-map__planet-surface,\n.system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"Be \"] .system-map__planet-surface,\n.system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"K \"] .system-map__planet-surface,\n.system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"C \"] .system-map__planet-surface,\n.system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"CH \"] .system-map__planet-surface,\n.system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"CHd \"] .system-map__planet-surface,\n.system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"CJ \"] .system-map__planet-surface,\n.system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"CN \"] .system-map__planet-surface,\n.system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"CS \"] .system-map__planet-surface,\n.system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"MS \"] .system-map__planet-surface,\n.system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"WNC \"] .system-map__planet-surface,\n.system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"S \"] .system-map__planet-surface {\n  filter: contrast(0.25) sepia(100%) hue-rotate(330deg) saturate(4) brightness(1.15) contrast(2) drop-shadow(0 0 5rem rgb(255, 236, 129)) drop-shadow(0 0 10rem rgb(255, 194, 81)) drop-shadow(0 0 10rem rgb(255, 187, 61));\n}\n\n.system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"M \"] .system-map__planet-surface {\n  filter: contrast(0.25) sepia(100%) hue-rotate(360deg) saturate(4) brightness(.9) contrast(1.5)  drop-shadow(0 0 5rem #ff8c00) drop-shadow(0 0 10rem #ff8c00) drop-shadow(0 0 10rem #ff8c00);\n}\n\n.system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"L \"] .system-map__planet-surface,\n.system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"Y \"] .system-map__planet-surface,\n.system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type^=\"T \"] .system-map__planet-surface,\n.system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type*=\"Brown dwarf\" i] .system-map__planet-surface {\n  filter: contrast(0.2) sepia(100%) hue-rotate(300deg) saturate(1.4) brightness(.4)  contrast(2) drop-shadow(0 0 15rem rgb(200,20,20));\n}\n\n/* \n.system-map__system-object:focus .system-map__planet-surface {\n  fill: url(#svg-pattern__planet-surface-animated);\n}\n */\n\n.system-map__planetary-system-map {\n  position: relative;\n  animation: fade-in-animation ease 1s;\n  animation-fill-mode: forwards;\n  animation-delay: .5s;\n  opacity: 0;\n  margin: 1rem auto auto auto;\n  z-index: 2;\n  user-select: none;\n}\n\n\n/*\n.system-map__planetary-system-map {\n  position: relative;\n  padding: 2rem;\n}\n\n.system-map__planetary-system-map::after {\n  content: \" \";\n  display: block;\n  position: absolute;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  right: 0;\n  background: rgba(18, 16, 16, 0.1);\n  opacity: 0;\n  z-index: 2;\n  pointer-events: none;\n  animation: text-flicker-animation 5s infinite;\n}\n\n.system-map__planetary-system-map::before {\n  content: \" \";\n  display: block;\n  position: absolute;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  right: 0;\n  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.5) 50%), linear-gradient(90deg, rgba(138, 73, 0, .25), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));\n  z-index: 2;\n  background-size: 100% 2px, 3px 100%;\n  pointer-events: none;\n}\n*/\n\n.system-map__planet-name-text {\n  font-size: 26rem;\n  fill: var(--color-primary);\n  color: var(--color-primary);\n  text-shadow: var(--text-shadow);\n  opacity: 1;\n  text-transform: uppercase;\n}\n\n.system-map__planet-distance-text {\n  font-size: 22rem;\n  fill: var(--color-info);\n  color: var(--color-info);\n  text-shadow: var(--text-shadow);\n  opacity: 0.5;\n}\n\n.system-map__planet-surface {\n  z-index: 1;\n  pointer-events: none;\n  opacity: 0.1;\n  fill: url(#svg-pattern__planet-surface);\n}\n\n.system-map__planet-atmosphere {\n  fill: url(#system-map-svg-gradient__planet--atmosphere);\n  stroke: var(--color-system-map-planet-atmosphere);\n  stroke-width: 50;\n  filter: blur(5rem);\n  opacity: .75;\n}\n\n.system-map__planet-ring {\n  display: block;\n  fill: transparent;\n  stroke: rgba(160, 255, 246, 0.2) !important;\n  stroke-width: 7rem;\n  transform-box: fill-box;\n  transform-origin: center;\n  transform: rotate(-15deg);\n  fill: url(#system-map-svg-gradient__planet-ring);\n  pointer-events: none;\n  filter: none !important;\n}\n\n.system-map__planet-ring-mask {\n  transform-box: fill-box;\n  transform-origin: center;\n  transform: rotate(-15deg);\n  stroke-width: 0 !important;\n}\n\n.system-map__planetary-facility-icon,\n.system-map__planetary-port-icon,\n.system-map__planetary-lander-icon {\n  pointer-events: none;\n  overflow: visible;\n  z-index: 5;\n  display: block;\n  fill: var(--color-info);\n  filter: drop-shadow(0 0 5rem var(--color-secondary)) drop-shadow(0 0 10rem var(--color-secondary)) drop-shadow(0 0 10rem var(--color-secondary-dark)) !important;\n }\n\n .system-map__system-object:focus .system-map__planetary-facility-icon,\n .system-map__system-object:focus .system-map__planetary-port-icon,\n .system-map__system-object:focus .system-map__planetary-lander-icon {\n  filter: drop-shadow(0 0 5rem var(--color-primary)) drop-shadow(0 0 10rem var(--color-primary)) !important;\n }\n\n .system-map__system-object .system-map__station {\n  stroke: var(--color-secondary);\n  fill: var(--color-secondary-dark);\n  stroke-width: 100;\n  transition: all .1s ease;\n  outline: none;\n}\n\n.system-map__system-object:focus .system-map__station {\n  fill: var(--color-primary-dark);\n  stroke: var(--color-system-map-focus);\n}\n\n.system-map__station-icon {\n  fill: var(--color-info);\n  pointer-events: none;\n  filter: drop-shadow(0 0 5rem var(--color-secondary)) !important;\n}\n\n.system-map__system-object:focus .system-map__station-icon {\n  filter: drop-shadow(0 0 5rem var(--color-primary)) !important;\n}\n\n#system-map-svg-gradient__planet stop:nth-child(1) {\n  stop-color: var(--color-primary);\n  stop-color: #005c81;\n}\n#system-map-svg-gradient__planet stop:nth-child(2) {\n  stop-color: var(--color-primary-dark);\n  stop-color:  #551b00;\n}\n\n#system-map-svg-gradient__planet--landable stop:nth-child(1) {\n  stop-color: #00b3f7;\n}\n#system-map-svg-gradient__planet--landable stop:nth-child(2) {\n  stop-color:  #8f3c15;\n}\n\n#system-map-svg-gradient__planet-ring stop:nth-child(1) {\n  stop-color: rgba(160, 160, 160, 0.05);\n}\n#system-map-svg-gradient__planet-ring stop:nth-child(2) {\n  stop-color: rgba(160, 160, 160, 0.1);\n}\n\n\n#system-map-svg-gradient__planet--atmosphere stop:nth-child(1) {\n  stop-color: rgb(113, 203, 255);\n}\n\n#system-map-svg-gradient__planet--atmosphere stop:nth-child(2) {\n  stop-color: rgb(0, 140, 255);\n}\n\n#system-map-svg-gradient__planet--atmosphere stop:nth-child(3) {\n  stop-color: rgb(0, 135, 177);\n}\n"
  },
  {
    "path": "src/client/css/table.css",
    "content": "table {\n  position: relative;\n  top: 0;\n  margin: 0;\n  border: 0;\n  padding: 0;\n  border-spacing: 0;\n  border-collapse: collapse;\n  width: 100%;\n  --color-icon: var(--color-primary);\n  padding-right: .25rem;\n}\n\ntable thead tr th {\n  text-shadow: var(--text-shadow);\n  text-transform: uppercase;\n  color: var(--color-info);\n  padding: .5rem .5rem .9rem .5rem;\n  text-align: left;\n  user-select: none;\n  font-weight: bold;\n  text-shadow: none;\n\n  /* Don't let table heading text wrap (breaks UI) */\n  white-space: nowrap !important;\n  text-overflow: ellipsis !important;\n  overflow-x: clip !important; /* avoids clipping text shadow on y axis */\n}\n\ntable thead tr {\n  position: sticky !important;\n  top: 0;\n  z-index: 2;\n  background: var(--color-background-panel);\n  box-shadow: 0 -1rem .5rem -.5rem rgba(var(--color-primary-r),var(--color-primary-g),var(--color-primary-b),.5) inset;\n  box-shadow: 0 1rem 3rem -.5rem black inset;\n}\n\ntable thead tr th:after {\n  opacity: 0.5;\n  position: absolute;\n  content: '';\n  display: block;\n  width: 100%;\n  top: 2.6rem;\n  left: 0;\n  right: 0;\n  border-bottom: .2rem solid var(--color-primary);\n  box-shadow: 0 .03rem .5rem var(--color-primary);\n}\n\ntable td {\n  padding: 0.5rem 1rem;\n  overflow: hidden;\n  text-shadow: var(--text-shadow);\n  text-transform: uppercase;\n  font-weight: bold;\n  vertical-align: middle;\n}\n\ntable tbody tr {\n  border-top: .25rem solid transparent;\n  outline: 0 !important;\n  animation: fade-in-animation .25s ease;\n  color: var(--color-primary);\n  background: var(--color-background-panel-translucent);\n}\n\ntable tbody tr.table__row--highlighted td {\n  background: rgba(var(--color-secondary-dark-r),var(--color-secondary-dark-g),var(--color-secondary-dark-b),.5) !important;\n  color: var(--color-secondary) !important;\n}\n\ntable:not(.table--inline).table--interactive tbody tr.table__row--highlighted:hover td {\n  background: var(--color-secondary) !important;\n  color: var(--color-secondary-dark) !important;\n  text-shadow: none;\n}\n\ntable:not(.table--inline).table--interactive tbody tr.table__row--highlight-primary-hover:hover td {\n  background: var(--color-primary) !important;\n  color: var(--color-primary-dark) !important;\n  text-shadow: none;\n}\n\ntable tbody tr.table__row--selected td:first-of-type {\n  box-shadow: .5rem 0 0 0 var(--color-primary) inset !important;\n}\n\ntable tbody tr.table__row--large td {\n  padding-top: 1rem !important;\n  padding-bottom: 1rem !important;\n}\n\n/* \n Use <td> selector for :hover and :focus states as some older browsers don't \n let you set a background colour for those states on <tr> elements\n*/\ntable:not(.table--inline).table--interactive tbody tr:hover:not(.table-row--disabled):not(:focus) td {\n  color: var(--color-primary);\n  background: var(--color-primary-dark);\n  transition: all .1s ease;\n}\n\ntable:not(.table--inline).table--interactive tbody tr:focus:not(.table-row--disabled) td {\n  color: var(--color-primary-dark) !important;\n  background: var(--color-primary) !important;\n  text-shadow: none;\n}\n\ntable:not(.table--inline).table--interactive tbody tr:focus:not(.table-row--disabled) .icon {\n  color: var(--color-primary-dark) !important; \n  font-weight: bold;\n  text-shadow: none;\n}\n\ntable td.wrap:last-child {\n  white-space: pre-wrap;\n  word-wrap: break-word;\n}\n\ntable ul {\n  margin-top: .5rem;\n  margin-bottom: .5rem;\n}\n\ntable.table--layout {\n  margin: .5rem 0;\n  table-layout: fixed;\n}\n\ntable.table--layout tbody tr {\n  background: transparent;\n}\n\ntable.table--layout tbody tr td {\n  padding: 0;\n  border: .5rem solid transparent;\n  vertical-align: middle;\n  overflow: visible;\n}\n\ntable.table__bordered {\n  border: 0;\n  padding-right: 0;\n}\n\ntable.table__bordered tbody tr {\n  border-bottom: 0;\n}\n\ntable.table__bordered tbody tr:not(.table-row--disabled) {\n  background: transparent !important;\n}\n\ntable.table__bordered tbody tr {\n  background: var(--color-background-panel-translucent);\n  border: .2rem solid var(--color-primary-dark);\n}\n\ntable.table--inline {\n  display: inline-block;\n  font-size: 1.25rem;\n}\n\ntable.table--inline tbody tr td {\n  padding: .125rem 1.5rem .125rem 0;\n}\n\ntable.table--inline tbody tr {\n  border-spacing: 0;\n  border-bottom: 0;\n  background: transparent;\n}\n\ntable.table--flex-inline tbody {\n  display: flex;\n  flex-wrap: wrap;\n  border: 0;\n}\n\ntable.table--flex-inline tbody tr {\n  background: none;\n  width: 25%;\n  box-sizing: border-box;\n  margin: 0;\n  padding: .1rem .25rem;\n}\n\n@media only screen and (max-width: 1280px) {\n  table.table--flex-inline tbody tr {\n    width: 33.33%;\n  }\n}\n\n@media only screen and (max-width: 799px) {\n  table.table--flex-inline tbody tr {\n    width: 50%;\n  }\n}\n\n@media only screen and (max-width: 599px) {\n  table.table--flex-inline tbody tr {\n    width: 100%;\n  }\n}\n\ntable.table--flex-inline tbody tr td {\n  display: block;\n  height: 100%;\n  box-sizing: border-box;\n  position: relative;\n  background: var(--color-background-panel-translucent);\n}\n\ntable.table--flex-inline.table--interactive tbody tr:hover td,\ntable.table--flex-inline.table--interactive tbody tr:focus td,\ntable.table--flex-inline.table--interactive tbody tr.table__row--active td {\n  background: var(--color-primary) !important;\n  color: var(--color-primary-dark) !important;\n  opacity: 1;\n  text-shadow: none;\n  border-radius: .1rem;\n}\n\ntable.table--flex-inline.table--interactive tbody tr:not(.table__row--active):hover td {\n  filter: var(--filter-hover-element);\n}\n\ntable.table--animated tbody tr {\n  /* animation: fx-fade-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: 0.5s;\n  opacity: 0; */\n  opacity: 0; \n}\n\ntable.table--animated tbody tr.--shown {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  opacity: 0;\n}\n\n/*\ntable.table--animated tbody tr:nth-child(1) {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: 0s;\n}\ntable.table--animated tbody tr:nth-child(2) {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .025s;\n}\ntable.table--animated tbody tr:nth-child(3) {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .05s;\n}\ntable.table--animated tbody tr:nth-child(4) {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .075s;\n}\ntable.table--animated tbody tr:nth-child(5) {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .1s;\n}\ntable.table--animated tbody tr:nth-child(6) {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .125s;\n}\ntable.table--animated tbody tr:nth-child(7) {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .15s;\n}\ntable.table--animated tbody tr:nth-child(8) {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .175s;\n}\ntable.table--animated tbody tr:nth-child(9) {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .2s;\n}\ntable.table--animated tbody tr:nth-child(10) {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .225s;\n}\ntable.table--animated tbody tr:nth-child(11) {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .25s;\n}\ntable.table--animated tbody tr:nth-child(12) {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .275s;\n}\ntable.table--animated tbody tr:nth-child(13) {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .3s;\n}\ntable.table--animated tbody tr:nth-child(14) {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .325s;\n}\ntable.table--animated tbody tr:nth-child(15) {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .35s;\n}\ntable.table--animated tbody tr:nth-child(16) {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .375s;\n}\ntable.table--animated tbody tr:nth-child(17) {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .4s;\n}\ntable.table--animated tbody tr:nth-child(18) {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .425s;\n}\ntable.table--animated tbody tr:nth-child(19) {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .45s;\n}\ntable.table--animated tbody tr:nth-child(20) {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .475s;\n}\ntable.table--animated tbody tr:nth-child(21) {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .5s;\n}\ntable.table--animated tbody tr:nth-child(22) {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .525s;\n}\ntable.table--animated tbody tr:nth-child(23) {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .55s;\n}\ntable.table--animated tbody tr:nth-child(24) {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .575s;\n}\ntable.table--animated tbody tr:nth-child(25) {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .6s;\n}\ntable.table--animated tbody tr:nth-child(26) {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .625s;\n}\ntable.table--animated tbody tr:nth-child(27) {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .65s;\n}\ntable.table--animated tbody tr:nth-child(28) {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .675s;\n}\ntable.table--animated tbody tr:nth-child(29) {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .7s;\n}\ntable.table--animated tbody tr:nth-child(30) {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .725s;\n}\n*/\n\n\ntable.table--flex-inline.table--animated tbody tr {\n  animation: none;\n  opacity: 1;\n}\n\ntable.table--flex-inline.table--animated tbody tr td {\n  animation: fx-fade-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: 0.5s;\n  opacity: 0;\n}\n\ntable.table--flex-inline.table--animated tbody tr:nth-child(1) td {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: 0s;\n}\ntable.table--flex-inline.table--animated tbody tr:nth-child(2) td {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .025s;\n}\ntable.table--flex-inline.table--animated tbody tr:nth-child(3) td {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .05s;\n}\ntable.table--flex-inline.table--animated tbody tr:nth-child(4) td {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .075s;\n}\ntable.table--flex-inline.table--animated tbody tr:nth-child(5) td {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .1s;\n}\ntable.table--flex-inline.table--animated tbody tr:nth-child(6) td {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .125s;\n}\ntable.table--flex-inline.table--animated tbody tr:nth-child(7) td {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .15s;\n}\ntable.table--flex-inline.table--animated tbody tr:nth-child(8) td {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .175s;\n}\ntable.table--flex-inline.table--animated tbody tr:nth-child(9) td {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .2s;\n}\ntable.table--flex-inline.table--animated tbody tr:nth-child(10) td {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .225s;\n}\ntable.table--flex-inline.table--animated tbody tr:nth-child(11) td {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .25s;\n}\ntable.table--flex-inline.table--animated tbody tr:nth-child(12) td {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .275s;\n}\ntable.table--flex-inline.table--animated tbody tr:nth-child(13) td {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .3s;\n}\ntable.table--flex-inline.table--animated tbody tr:nth-child(14) td {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .325s;\n}\ntable.table--flex-inline.table--animated tbody tr:nth-child(15) td {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .35s;\n}\ntable.table--flex-inline.table--animated tbody tr:nth-child(16) td {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .375s;\n}\ntable.table--flex-inline.table--animated tbody tr:nth-child(17) td {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .4s;\n}\ntable.table--flex-inline.table--animated tbody tr:nth-child(18) td {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .425s;\n}\ntable.table--flex-inline.table--animated tbody tr:nth-child(19) td {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .45s;\n}\ntable.table--flex-inline.table--animated tbody tr:nth-child(20) td {\n  animation: fx-flash-in-animation .5s;\n  animation-fill-mode: forwards;\n  animation-delay: .475s;\n}\n"
  },
  {
    "path": "src/client/css/text.css",
    "content": ".text-muted {\n  opacity: 0.5 !important;\n  text-shadow: none;\n}\n\n.text-primary {\n  color: var(--color-primary);\n  text-shadow: var(--text-shadow);\n}\n\n.text-primary-dark {\n  color: var(--color-primary-dark);\n  text-shadow: var(--text-shadow);\n}\n\n.text-secondary {\n  color: var(--color-secondary);\n  text-shadow: var(--text-shadow);\n}\n\n.text-secondary-dark {\n  color: var(--color-secondary-dark);\n  text-shadow: var(--text-shadow);\n}\n\n.text-danger {\n  color: var(--color-danger);\n  text-shadow: var(--text-shadow);\n}\n\n.text-success {\n  color: var(--color-success);\n  text-shadow: var(--text-shadow);\n}\n\n.text-info {\n  color: var(--color-info);\n  text-shadow: var(--text-shadow);\n}\n\n.text-link {\n  color: var(--color-secondary);\n  text-shadow: var(--text-shadow);\n}\n\n.text-link .text-link-text {\n  padding-bottom: .05rem;\n  border-bottom: .15rem dotted var(--color-secondary);\n}\n\n.text-link:hover,\n.text-link:focus {\n  color: var(--color-secondary);\n  text-shadow: var(--text-shadow);\n}\n\n.text-link:hover .text-link-text,\n.text-link:focus .text-link-text {\n  border-bottom: .15rem solid var(--color-secondary);\n}\n\n.text-right {\n  text-align: right;\n}\n\n.text-left {\n  text-align: left;\n}\n\n.text-center {\n  text-align: center;\n}\n\n.text-no-wrap {\n  white-space: nowrap !important;\n  text-overflow: ellipsis !important;\n  overflow-x: clip !important; /* avoids clipping text shadow on y axis */\n}\n\n.text-blink-slow {\n  animation: text-blink-animation .75s ease-in-out infinite;\n}\n\n.text-blink {\n  animation: text-blink-animation .5s ease-in-out infinite;\n}\n\n.text-blink-fast {\n  animation: text-blink-animation .25s ease-in-out infinite;\n}\n\n@keyframes text-blink-animation {\n  50% { opacity: 10%; }\n}\n\n.text-uppercase {\n  text-transform: uppercase;\n}\n\n.text-no-transform {\n  text-transform: none;\n}\n\n.text-formatted-object {\n  color: var(--color-primary);\n}\n\n.text-formatted-object-property {\n  margin: .5rem 0;\n}\n\n.text-formatted-object label {\n  display: inline-block;\n  text-transform: uppercase;\n}\n\n.text-formatted-object .text-formatted-object-value {\n  color: var(--color-info) !important;\n}\n\n.text-no-shadow {\n  text-shadow: none !important;\n}\n\n/* This class should only be used on <div> elements with relative positioning */\n.text-center-vertical {\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  left: 0;\n  display: flex;\n  align-items: center;\n  height: 100%;\n}\n\n.text-center-both {\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  left: 0;\n  display: flex;\n  justify-content: center;\n  align-items: center;\n  height: 100%;\n  text-align: center;\n}"
  },
  {
    "path": "src/client/css/ui/inspector.css",
    "content": ".inspector {\n  padding: .5rem;\n  background: black var(--linear-gradient-background);\n  box-sizing: border-box;\n}\n\n.inspector__title {\n  background: var(--color-primary-dark);\n  color: var(--color-primary);\n  margin: -.5rem -1rem 1rem -.5rem;\n  height: 2.25rem;\n  z-index: 10;\n  width: calc(100% + 1.4rem);\n  pointer-events: all !important;\n  position: absolute;\n}\n\n.inspector__title:hover {\n  background: var(--color-primary);\n  color: var(--color-primary-dark);\n  filter: var(--filter-hover-element);\n}\n\n.inspector__title:hover .icon {\n  color: var(--color-primary-dark);\n}\n\n.inspector__title > * {\n  float: left;\n}\n\n.inspector__title h3 {\n  padding: .25rem 0 0 2.25rem;\n  font-size: 1.25rem;\n  line-height: 1.65rem;\n}\n\n.inspector__close-button {\n  background: transparent !important;\n  color: var(--color-primary) !important;\n  padding: 0 .5rem;\n  pointer-events: all !important;\n  text-shadow: none;\n  position: absolute;\n  left: 0rem;\n  box-shadow: none;\n}\n\n.inspector__close-button .icon {\n  background: transparent !important;\n  line-height: 2.25rem;\n}\n\n.inspector__close-button:hover {\n  color: var(--color-primary-dark) !important;\n  filter: none !important;\n  box-shadow: none !important;\n}\n\n.inspector--horizontal .inspector__close-button {\n  float: right;\n  padding-right: .75rem;\n}\n\n.inspector--horizontal .inspector__close-button .icon {\n  display: block;\n  transform: rotate(90deg);\n}\n\n.inspector--horizontal .inspector__title {\n  padding: 0 .5rem;\n}\n\n.inspector--horizontal .inspector__title h3 {\n  padding: .25rem 0 0 2rem;\n}\n\n@media only screen and (orientation: portrait) {\n  .inspector__title {\n    padding: 0 .5rem;\n  }\n  .inspector {\n    display: flex;\n  }\n\n  .inspector--horizontal .inspector__close-button,\n  .inspector__close-button {\n    float: right;\n    padding-right: .5rem;\n  }\n\n  .inspector__close-button .icon {\n    display: block;\n    transform: rotate(90deg);\n  }\n\n  \n  .inspector__title h3 {\n    padding: .25rem 0 0 2rem;\n  }\n}\n\n.inspector__contents {\n  position: absolute;\n  top: 2.65rem;\n  bottom: .4rem;\n  right: .5rem;\n  left: .25rem;\n\n  top: 2.25rem;\n  left: 0;\n  right: 0;\n  bottom: 0;\n\n  padding: .75rem;\n  pointer-events: all !important;\n}"
  },
  {
    "path": "src/client/css/ui/layout.css",
    "content": ".layout__overlay {\n  pointer-events: none;\n}\n\n/* .layout__overlay:after {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  background: blue;\n  z-index: 100000;\n} */\n\n.layout__background {\n  position: absolute !important;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  content: ' ';\n  background: radial-gradient(circle, var(--color-background) 0%, rgba(0,0,0,1) 100%);\n  z-index: -1;\n  opacity: 0.8;\n}\n\n.layout header h1 {\n  position: relative;\n  top: -.15rem;\n  font-size: 2rem;\n  line-height: 2rem;\n}\n\n.layout__main {\n  position: absolute;\n  top: 9.5rem;\n  bottom: .5rem;\n  left: .5rem;\n  right: .5rem;\n  transition: .25s ease-in-out;\n  opacity: 0;\n  overflow: hidden;\n  z-index: 10;\n}\n\n.layout__full-width {\n  width: 100%;\n  height: 100%;\n}\n\n.layout__left-half,\n.layout__right-half {\n  position: relative;\n  width: 50%;\n  height: 100%;\n}\n\n.layout__left-half {\n  float: left;\n}\n\n@media only screen and (min-width: 799px) {\n  .layout__left-half.scrollable {\n    overflow-y: scroll;\n  }\n}\n\n.layout__right-half {\n  float: right;\n}\n\n.layout__panel--secondary-navigation {\n  padding-left: 4.5rem;\n  box-sizing: border-box;\n}\n\n.layout__panel--secondary-navigation.scrollable {\n  padding-right: .5rem;\n}\n\n.layout__top-half,\n.layout__bottom-half {\n  position: absolute;\n  width: 100%;\n  height: 50%;\n  float: none;\n}\n\n.layout__top-half {\n  top: 0;\n  bottom: 50%;\n}\n\n.layout__bottom-half {\n  margin-top: .5rem;\n  top: 50%;\n  bottom: .5rem;\n}\n\n@media only screen and (orientation: portrait) {\n  .layout__left-half,\n  .layout__right-half {\n    position: absolute;\n    width: 100%;\n    height: 50%;\n    float: none;\n  }\n  .layout__left-half {\n    top: 0;\n    bottom: 50%;\n  }\n  .layout__right-half {\n    margin-top: .5rem;\n    top: 50%;\n    bottom: .5rem;\n  }\n}"
  },
  {
    "path": "src/client/css/ui/loader.css",
    "content": "/* CSS specific to the loader animation */\n\n#loader {\n  position: absolute;\n  top: 50%;\n  left: 0;\n  width: 100%;\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  opacity: .75;\n  zoom: 1.5;\n  transition: .25s ease-in-out;\n  z-index: 3000;\n  pointer-events: none;\n  margin-top: -2.5rem;\n  text-align: center;\n}\n\n.loader__row {\n  display: flex;\n}\n\n.loader__arrow {\n  width: 0;\n  height: 0;\n  margin: 0 -6px;\n  border-left: 12px solid transparent;\n  border-right: 12px solid transparent;\n  border-bottom: 21.6px solid var(--color-primary);\n  animation: loader__arrow-blink 1s infinite;\n  filter: drop-shadow(0 0 18px var(--color-primary));\n}\n\n.loader__arrow--down {\n  transform: rotate(180deg);\n}\n\n.loader__arrow--outer-1 {\n  animation-delay: -0.0555555556s;\n}\n\n.loader__arrow--outer-2 {\n  animation-delay: -0.1111111111s;\n}\n\n.loader__arrow--outer-3 {\n  animation-delay: -0.1666666667s;\n}\n\n.loader__arrow--outer-4 {\n  animation-delay: -0.2222222222s;\n}\n\n.loader__arrow--outer-5 {\n  animation-delay: -0.2777777778s;\n}\n\n.loader__arrow--outer-6 {\n  animation-delay: -0.3333333333s;\n}\n\n.loader__arrow--outer-7 {\n  animation-delay: -0.3888888889s;\n}\n\n.loader__arrow--outer-8 {\n  animation-delay: -0.4444444444s;\n}\n\n.loader__arrow--outer-9 {\n  animation-delay: -0.5s;\n}\n\n.loader__arrow--outer-10 {\n  animation-delay: -0.5555555556s;\n}\n\n.loader__arrow--outer-11 {\n  animation-delay: -0.6111111111s;\n}\n\n.loader__arrow--outer-12 {\n  animation-delay: -0.6666666667s;\n}\n\n.loader__arrow--outer-13 {\n  animation-delay: -0.7222222222s;\n}\n\n.loader__arrow--outer-14 {\n  animation-delay: -0.7777777778s;\n}\n\n.loader__arrow--outer-15 {\n  animation-delay: -0.8333333333s;\n}\n\n.loader__arrow--outer-16 {\n  animation-delay: -0.8888888889s;\n}\n\n.loader__arrow--outer-17 {\n  animation-delay: -0.9444444444s;\n}\n\n.loader__arrow--outer-18 {\n  animation-delay: -1s;\n}\n\n.loader__arrow--inner-1 {\n  animation-delay: -0.1666666667s;\n}\n\n.loader__arrow--inner-2 {\n  animation-delay: -0.3333333333s;\n}\n\n.loader__arrow--inner-3 {\n  animation-delay: -0.5s;\n}\n\n.loader__arrow--inner-4 {\n  animation-delay: -0.6666666667s;\n}\n\n.loader__arrow--inner-5 {\n  animation-delay: -0.8333333333s;\n}\n\n.loader__arrow--inner-6 {\n  animation-delay: -1s;\n}\n\n@keyframes loader__arrow-blink {\n  0% {\n    opacity: 0.1;\n  }\n  30% {\n    opacity: 1;\n  }\n  100% {\n    opacity: 0.1;\n  }\n}"
  },
  {
    "path": "src/client/css/ui/modal-dialog.css",
    "content": ".modal-dialog__background {\n  position: fixed;\n  top: 0;\n  bottom: 0;\n  left: 0;\n  right: 0;\n  background: rgba(0,0,0,.5);\n  backdrop-filter: blur(.1rem);\n  z-index: 19999;\n  transition: .5s ease-in-out;\n}\n.modal-dialog {\n  z-index: 20000;\n  border-top: .2rem solid var(--color-primary);\n  background: black var(--linear-gradient-background);\n  position: fixed;\n  top: 0;\n  bottom: 0;\n  left: 0;\n  right: 0;\n  margin: auto;\n  max-width: min(50rem, 150vw);\n  max-height: min(52rem, 100vh);\n  box-shadow: 0 0 5rem black, 0 0 10rem black;\n  padding: 0.5rem;\n  overflow: hidden;\n  transition: opacity .25s ease-in-out;\n}\n\n.modal-dialog__title {\n  font-size: 1.5rem;\n  line-height: 1.5rem;\n  padding-top: 0;\n  margin-top: 0;\n}\n\n.modal-dialog__navigation {\n  top: 3.25rem !important;\n  padding: 0 0.5rem;\n}\n\n.modal-dialog__panel {\n  position: absolute;\n  top: 3.25rem;\n  bottom: 4.5rem;\n  left: .5rem;\n  right: .5rem;\n  padding: .5rem;\n}\n\n.modal-dialog__panel--with-navigation {\n  left: 5.5rem;\n}\n\n.modal-dialog__footer {\n  position: absolute;\n  bottom: 0rem;\n  left: 0rem;\n  right: 0;\n  padding: .5rem .5rem 1rem .5rem;\n  height: 4rem;\n}"
  },
  {
    "path": "src/client/css/ui/secondary-navigation.css",
    "content": ".secondary-navigation {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 4rem;\n  bottom: 0;\n  z-index: 10;\n}\n\n.secondary-navigation button.button--icon {\n  width: 4rem;\n  height: 4rem;\n  margin-bottom: .5rem;\n}\n\n.secondary-navigation button.button--icon .icon {\n  position: relative;\n  top: .25rem;\n  font-size: 2rem;\n  line-height: 2.25rem;\n}\n\n.secondary-navigation__exit-button {\n  position: absolute !important;\n  z-index: 9;\n  bottom: -.5rem;\n  left: 0;\n  margin: 0;\n}\n\n@media only screen and (orientation: portrait), (max-width: 599px) {\n  .secondary-navigation__exit-button {\n    position: relative !important;\n    bottom: 0;\n  }\n}\n\n.secondary-navigation button.button--icon.button--active,\n.secondary-navigation .button.button--icon.button--active {\n  background: var(--color-primary-dark);\n  color: var(--color-primary);\n  border-right: .5rem solid var(--color-primary);\n  box-shadow: none;\n}\n\n.secondary-navigation button.button--icon.button--selected {\n  background: var(--color-secondary) !important;\n  color: var(--color-secondary-dark) !important;\n  z-index: 50;\n  box-shadow: none;\n  filter: var(--filter-active-element);\n}\n\n.secondary-navigation button.button--icon.button--selected:hover {\n  box-shadow: none;\n}\n\n#secondary-navigation__search-form {\n  position: absolute;\n  top: 0;\n  left: 3.8rem;\n  width: 25.2rem;\n}\n\n#secondary-navigation__search-input {\n  animation: search-input-animation .25s ease-in-out;\n  animation-fill-mode: forwards;\n  float: left;\n  padding-left: 1rem;\n  height: 4rem;\n  box-shadow: 0 0 1rem black, 0 0 2rem black;\n  filter: var(--filter-active-element);\n  box-sizing: border-box;\n}\n\n#secondary-navigation__search-button {\n  filter: var(--filter-active-element);\n  border-top-left-radius: 0;\n  border-bottom-left-radius: 0;\n}\n\n@keyframes search-input-animation {\n  from { width: 0rem; }\n  to { width: 15rem; }\n}\n\n\n/*\n box-shadow: 0 0 2rem black; \n */\n"
  },
  {
    "path": "src/client/css/ui/sections.css",
    "content": ".section-heading__text {\n  color: var(--color-primary);\n  text-shadow: var(--text-shadow);\n  display: inline-block;\n  position: relative;\n  top: .1rem;\n  margin-bottom: .25rem;\n  font-size: 1.5rem;\n  line-height: 2rem;\n}\n\n.section-heading {\n  border-bottom: .2rem solid var(--color-primary);\n}"
  },
  {
    "path": "src/client/css/utils.css",
    "content": ".float-right {\n  float: right;\n}\n\n.float-left {\n  float: left;\n}\n\n.circle {\n  border-radius: 100rem !important;\n}\n\n.seperator::before {\n  display: inline-block;\n  padding: 0 .5rem;\n  opacity: .5;\n  content: '//';\n  font-weight: bold;\n}\n\n@media only screen and (max-width: 799px) {\n  .seperator::before {\n    display: none;\n  }\n  .seperator {\n    display: block;\n  }\n}\n\n\n@media only screen and (max-width: 599px) {\n  .hidden-small {\n    display: none;\n  }\n}\n\n@media only screen and (min-width: 599px) {\n  .visible-small {\n    display: none;\n  }\n}\n\n@media only screen and (max-width: 799px) {\n  .hidden-medium {\n    display: none;\n  }\n}\n\n@media only screen and (min-width: 799px) {\n  .visible-medium {\n    display: none;\n  }\n}\n\n\n@media only screen and (max-width: 1023px) {\n  .hidden-large {\n    display: none;\n  }\n}\n\n@media only screen and (min-width: 1023px) {\n  .visible-large {\n    display: none;\n  }\n}"
  },
  {
    "path": "src/client/css/variables.css",
    "content": ":root {\n  /* Default values to allow for theme reset */\n  --color-default-primary-r: 250;\n  --color-default-primary-g: 150;\n  --color-default-primary-b: 0;\n  --color-default-primary-dark-modifier: 200;\n  \n  --color-default-secondary-r: 20;\n  --color-default-secondary-g: 245;\n  --color-default-secondary-b: 255;\n  --color-default-secondary-dark-modifier: 200;\n\n  /* Customisation options (used to define primary and secondary theme colors) */\n  --color-primary-r: var(--color-default-primary-r);\n  --color-primary-g: var(--color-default-primary-g);\n  --color-primary-b: var(--color-default-primary-b);\n\n  --color-secondary-r: var(--color-default-secondary-r);\n  --color-secondary-g: var(--color-default-secondary-g);\n  --color-secondary-b: var(--color-default-secondary-b);\n  \n  /* Advanced theme customisation options (internal use only) */\n  --color-primary-dark-modifier: var(--color-default-primary-dark-modifier);\n  --color-primary-dark-r: calc(var(--color-primary-r) - var(--color-primary-dark-modifier));\n  --color-primary-dark-g: calc(var(--color-primary-g) - var(--color-primary-dark-modifier));\n  --color-primary-dark-b: calc(var(--color-primary-b) - var(--color-primary-dark-modifier));\n\n  --color-secondary-dark-modifier: var(--color-default-secondary-dark-modifier);\n  --color-secondary-dark-r: calc(var(--color-secondary-r) - var(--color-secondary-dark-modifier));\n  --color-secondary-dark-g: calc(var(--color-secondary-g) - var(--color-secondary-dark-modifier));\n  --color-secondary-dark-b: calc(var(--color-secondary-b) - var(--color-secondary-dark-modifier));\n\n  --color-primary: rgb(var(--color-primary-r), var(--color-primary-g), var(--color-primary-b));\n  --color-primary-dark: rgb(var(--color-primary-dark-r), var(--color-primary-dark-g), var(--color-primary-dark-b));\n\n  --color-secondary: rgb(var(--color-secondary-r), var(--color-secondary-g), var(--color-secondary-b));\n  --color-secondary-dark: rgb(var(--color-secondary-dark-r), var(--color-secondary-dark-g), var(--color-secondary-dark-b));\n\n  --color-danger: rgb(252, 72, 72);\n  --color-success: rgb(77, 255, 201);\n  --color-info: rgb(206, 237, 255);\n\n  --text-shift-left-color: rgba(0, 128, 0, .5);\n  --text-shift-right-color: rgba(255, 0, 0, .5);\n\n  --color-background: var(--color-primary-dark);\n\n  --color-background-panel: rgb(var( --color-primary-dark-r), var( --color-primary-dark-g), var( --color-primary-dark-b));\n  --color-background-panel-translucent: rgba(var( --color-primary-dark-r), var( --color-primary-dark-g), var( --color-primary-dark-b), .4);\n\n  --linear-gradient-background: linear-gradient(var(--color-primary-dark), transparent);\n\n  --color-icon: var(--color-info);\n  --color-icon-focus: var(--color-secondary);\n\n  --filter-hover-element: contrast(1.05) brightness(1.05);\n  --filter-active-element: contrast(1.1) brightness(1.1);\n\n    /* These are only used by the system map */\n  --color-system-map-line: var(--color-info);\n  --color-system-map-focus: var(--color-primary);\n  --color-system-map-planet-atmosphere: #00b3f7;\n  --filter-system-map-planet-not-landable: contrast(1.07);\n  --filter-system-map-planet-landable: contrast(1.15) brightness(1.2);\n  \n  --base-font-size: 1.25rem;\n  --text-shadow: 0 0 20px;\n\n  /*\n    CSS variables cant' be used with media queries, these breakpoints are\n    defined here only for reference.\n\n    Example usage:\n    @media only screen and (max-width: 599px) { } // Tiny only\n    @media only screen and (min-width: 599px) { } // Small and larger\n    @media only screen and (max-width: 799px) { } // Small and smaller\n    @media only screen and (min-width: 799px) { } // Medium and larger\n    @media only screen and (max-width: 1023px) { } // Medium and smaller\n    @media only screen and (min-width: 1023px) { } // Large and larger\n    @media only screen and (max-width: 1280px) { } // Large and smaller\n    @media only screen and (min-width: 1279px) { } // Huge only\n\n    Where possible, instead use the screen orientation to determine layout.\n    @media only screen and (orientation: portrait) {}\n    @media only screen and (orientation: landscape) {}\n  */\n\n  --breakpoint-small: 600px; /* Where Small starts. Anything below this is Tiny */\n  --breakpoint-medium: 800px; /* Where Medium starts. */\n  --breakpoint-large: 1024px; /* Where Large starts. */\n  --breakpoint-huge: 1280px; /* Where Huge starts. */\n}"
  },
  {
    "path": "src/client/jsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"baseUrl\": \".\"\n  }\n}"
  },
  {
    "path": "src/client/lib/animate-table-effect.js",
    "content": "module.exports = () => {\n  const observer = new IntersectionObserver(callbackFunction, {})\n  function callbackFunction (entries) {\n    let shownItems = 0\n    for (let i = 0; i < entries.length; i++) {\n      if (entries[i].isIntersecting) {\n        entries[i].target.style.animationDelay = `${shownItems++ * .03}s`;\n      }\n      entries[i].target.className += \" --shown\";\n      observer.unobserve(entries[i].target)\n      //} else {\n      //  entries[i].target.className = entries[i].target.className.replace(' --shown', '');\n      //}\n    }\n  }\n\n  setTimeout(() => {\n    const elements = document.querySelectorAll(\"table.table--animated tbody tr\")\n    elements.forEach(el => observer.observe(el))\n  }, 0)\n\n  return () => {\n    const elements = document.querySelectorAll(\"table.table--animated tbody tr\")\n    elements.forEach(el => observer.unobserve(el))\n  }\n}"
  },
  {
    "path": "src/client/lib/convert.js",
    "content": "function kelvinToCelius (kelvin) { return kelvin - 273 }\nfunction celiusToFahrenheit (celcius) { return Math.floor(celcius * (9 / 5) + 32) }\nfunction kelvinToFahrenheit (kelvin) { return celiusToFahrenheit(kelvinToCelius(kelvin)) }\n\nmodule.exports = {\n  kelvinToCelius,\n  celiusToFahrenheit,\n  kelvinToFahrenheit\n}\n"
  },
  {
    "path": "src/client/lib/format.js",
    "content": "function formatBytes (bytes) {\n  if (bytes >= 1073741824) {\n    bytes = (bytes / 1073741824).toFixed(2) + ' GB'\n  } else if (bytes >= 1048576) {\n    bytes = (bytes / 1048576).toFixed(2) + ' MB'\n  } else if (bytes >= 1024) {\n    bytes = (bytes / 1024).toFixed(2) + ' KB'\n  } else if (bytes > 1) {\n    bytes = bytes + ' BYTES'\n  } else if (bytes === 1) {\n    bytes = bytes + ' BYTES'\n  } else {\n    bytes = '0 BYTES'\n  }\n  return bytes\n}\n\nfunction eliteDateTime (timestamp = Date.now()) {\n  const date = new Date(timestamp)\n  date.setFullYear(date.getFullYear() + 1286) // We are living in the future\n  const dateTimeString = date.toUTCString()\n    .replace(' GMT', '') // Time in the Elite universe is always in UTC\n    .replace(/(.*), /, '') // Strip day of week\n    .replace(/:[0-9]{2}$/, '') // Strip seconds\n    .replace(/^0/, '') // Strip leading zeros from day of month\n\n  const dateTimeObject = {\n    dateTime: dateTimeString,\n    date: dateTimeString.split(/^(.*)? (\\d\\d:\\d\\d)/)[1],\n    time: dateTimeString.split(/^(.*)? (\\d\\d:\\d\\d)/)[2],\n    day: date.getDate(),\n    month: date.toLocaleString('en-us',{month:'short'}),\n    year: date.getFullYear()\n  }\n\n  return dateTimeObject\n}\n\nfunction objectToHtml (obj, depth = 0, type = null, previousPropertyName) {\n  const tag = 'div'\n  let str = ''\n\n  if (depth === 0) str = `<${tag} class=\"text-formatted-object\">`\n\n  for (const prop in obj) {\n    let propertyName = prop\n    let propertyValue = obj[propertyName]\n\n    if (propertyName.startsWith('_')) continue // Skip internal properties\n\n    // Use only localised versions of property names (if exists)\n    if (!propertyName.endsWith('_Localised') && obj[`${propertyName}_Localised`]) continue\n    if (propertyName.endsWith('_Localised')) propertyName = propertyName.replace(/_Localised$/, '')\n\n    if (propertyName === 'timestamp') {\n      propertyName = 'Time'\n      propertyValue = eliteDateTime(propertyValue).dateTime\n    }\n\n    let propertyLabel\n    if (type === 'array') {\n      if (typeof propertyValue === 'object') {\n        propertyLabel = `<label class=\"text-muted\">${previousPropertyName.replace(/([a-z])([A-Z])/g, '$1 $2').replaceAll('_', ' ').trim()} #${propertyName.replace(/([a-z])([A-Z])/g, '$1 $2').replaceAll('_', ' ').trim()}</label>`\n      } else {\n        propertyLabel = '<label> ■</label>'\n      }\n    } else {\n      propertyLabel = `<label>${propertyName.replace(/([a-z])([A-Z])/g, '$1 $2').replaceAll('_', ' ').trim()}</label>`\n    }\n\n    str += `<div class=\"text-formatted-object-property\" data-depth=\"${depth}\" style=\"padding-left: ${(depth)}rem;\">`\n\n    switch (typeof propertyValue) {\n      case 'string':\n        str += propertyLabel + ' <span class=\"text-formatted-object-value\">' + propertyValue.replace(/([a-z])([A-Z])/g, '$1 $2').replaceAll('_', ' ').replace(/^\\$/, '').replace(/;$/, '').trim() + '</span>'\n        break\n      case 'number':\n      case 'boolean':\n        str += propertyLabel + ' <span class=\"text-formatted-object-value\">' + propertyValue + '</span>'\n        break\n      case 'object':\n      default:\n        if (Array.isArray(propertyValue)) {\n          if (propertyValue.length > 0) {\n            str += propertyLabel + objectToHtml(propertyValue, depth + 1, 'array', propertyName)\n          } else {\n            str += propertyLabel + ' <span class=\"text-formatted-object-value\">NONE</span>'\n          }\n        } else {\n          str += propertyLabel + objectToHtml(propertyValue, depth > 1 ? depth - 1 : depth, null, propertyName)\n        }\n        break\n    }\n    str += '</div>'\n  }\n\n  if (depth === 0) str += `</${tag}>`\n\n  return str\n}\n\nmodule.exports = {\n  formatBytes,\n  eliteDateTime,\n  objectToHtml\n}\n"
  },
  {
    "path": "src/client/lib/icons.js",
    "content": "import iconJson from '../public/fonts/icarus-terminal/icarus-terminal.json'\nimport { SURFACE_PORTS, PLANETARY_BASES } from '../../shared/consts'\nclass _Icons {\n\n}\n\nconst _IconsProxyHandler = {\n  get: function (obj, name) {\n    let iconName = name.toLowerCase().replaceAll(' ', '-')\n\n    if (!iconJson[iconName]) {\n      if (PLANETARY_BASES.includes(name)) iconName = 'settlement'\n      if (SURFACE_PORTS.includes(name)) iconName = 'planetary-port'\n      if (name === 'Mega ship') iconName = 'megaship'\n    }\n\n    if (iconJson[iconName]) {\n      return iconJson[iconName].map((path, i) => <path key={`icon-${iconName}-${i}`} d={path} />)\n    } else {\n      console.log('Unsupported icon:', name)\n      return null\n    }\n  }\n}\n\nconst Icons = new Proxy(_Icons, _IconsProxyHandler)\n\nexport default Icons\n"
  },
  {
    "path": "src/client/lib/navigation-items.js",
    "content": "function ShipPanelNavItems (activePanel) {\n  const navigationItems = [\n    {\n      name: 'Status',\n      icon: 'ship',\n      url: '/ship/status'\n    },\n    {\n      name: 'Modules',\n      icon: 'wrench',\n      url: '/ship/modules'\n    },\n    {\n      name: 'Cargo',\n      icon: 'cargo',\n      url: '/ship/cargo'\n    },\n    {\n      name: 'Inventory',\n      icon: 'inventory',\n      url: '/ship/inventory'\n    }\n  ]\n  navigationItems.forEach(item => {\n    if (item.name.toLowerCase() === activePanel.toLowerCase()) item.active = true\n  })\n  return navigationItems\n}\n\nfunction NavPanelNavItems (activePanel, query) {\n  const navigationItems = [\n    {\n      name: 'Search',\n      icon: 'search',\n      type: 'SEARCH'\n    },\n    {\n      name: 'Map',\n      icon: 'system-bodies',\n      url: {\n        pathname: '/nav/map',\n        query\n      }\n    },\n    {\n      name: 'List',\n      icon: 'table-inspector',\n      url: {\n        pathname: '/nav/list',\n        query\n      }\n    },\n    {\n      name: 'Route',\n      icon: 'route',\n      url: {\n        pathname: '/nav/route',\n        query\n      }\n    }\n  ]\n  navigationItems.forEach(item => {\n    if (item.name.toLowerCase() === activePanel.toLowerCase()) item.active = true\n  })\n  return navigationItems\n}\n\nfunction EngineeringPanelNavItems (activePanel) {\n  const navigationItems = [\n    {\n      name: 'Blueprints',\n      icon: 'engineering',\n      url: '/eng/blueprints'\n    },\n    {\n      name: 'Engineers',\n      icon: 'engineer',\n      url: '/eng/engineers'\n    },\n    {\n      name: 'Raw Materials',\n      icon: 'materials-raw',\n      url: '/eng/raw-materials'\n    },\n    {\n      name: 'Manufactured Materials',\n      icon: 'materials-manufactured',\n      url: '/eng/manufactured-materials'\n    },\n    {\n      name: 'Encoded Materials',\n      icon: 'materials-encoded',\n      url: '/eng/encoded-materials'\n    },\n    {\n      name: 'Xeno Materials',\n      icon: 'materials-xeno',\n      url: '/eng/xeno-materials'\n    }\n  ]\n  navigationItems.forEach(item => {\n    if (item.name.toLowerCase() === activePanel.toLowerCase()) item.active = true\n  })\n  return navigationItems\n}\n\nfunction SettingsNavItems (activePanel) {\n  const navigationItems = [\n    {\n      name: 'Theme',\n      icon: 'color-picker'\n    },\n    {\n      name: 'Sounds',\n      icon: 'sound'\n    }\n  ]\n  navigationItems.forEach(item => {\n    if (item.name.toLowerCase() === activePanel.toLowerCase()) item.active = true\n  })\n  return navigationItems\n}\n\nmodule.exports = {\n  ShipPanelNavItems,\n  NavPanelNavItems,\n  EngineeringPanelNavItems,\n  SettingsNavItems\n}\n"
  },
  {
    "path": "src/client/lib/notification.js",
    "content": "// Work in progress abstraction for notifications for future use\n// (not currently used)\nimport ReactDOMServer from 'react-dom/server'\nimport toast from 'react-hot-toast'\n\n// Message can be string or JSX\nfunction notification (message, args = {}) {\n  let toastId = args?.id\n\n  if (!toastId) {\n    toastId = typeof message === 'string'\n      ? fastHash(message)\n      : fastHash(ReactDOMServer.renderToStaticMarkup(message))\n  }\n\n  // FIXME Limitation in toast library that it cannot update existing toasts in\n  // in the way we need it do, and there is a bug in the toast library with\n  // removing toasts by ID so we can't just remove them either. Looks like it\n  // is worth exploring other libraries.\n\n  // Always assign ID to avoid duplicate notifications (bug on some platforms?)\n  const options = {\n    toastId\n  }\n\n  toast(message, options)\n}\n\n// Fast non-secure hash (signed int)\nfunction fastHash (string) {\n  let hash = 0\n  for (let i = 0; i < string.length; i++) {\n    const char = string.charCodeAt(i)\n    hash = ((hash << 5) - hash) + char\n    hash = hash & hash\n  }\n  return hash\n}\n\nexport default notification\n"
  },
  {
    "path": "src/client/lib/socket.js",
    "content": "/* global WebSocket, CustomEvent */\nimport { createContext, useState, useContext } from 'react'\nimport notification from 'lib/notification'\n\nlet socket = null// Store socket connection (defaults to null)\nlet callbackHandlers = {} // Store callbacks waiting to be executed (pending response from server)\nlet deferredEventQueue = [] // Store events waiting to be sent (used when server is not ready yet or offline)\nlet recentBroadcastEvents = 0\n\nconst defaultSocketState = {\n  connected: false, // Boolean to indicate current connection status\n  active: false, // Boolean to indicate if any pending requests\n  ready: false // Boolean to indicate if the service is ready and loaded\n}\n\nconst socketOptions = {\n  notifications: true\n}\n\nfunction socketDebugMessage () { /* console.log(...arguments) */ }\n\nfunction connect (socketState, setSocketState) {\n  if (socket !== null) return\n\n  // Reset on reconnect\n  callbackHandlers = {}\n  deferredEventQueue = []\n\n  socket = new WebSocket('ws://' + window.location.host)\n  socket.onmessage = (event) => {\n    const { requestId, name, message } = JSON.parse(event.data)\n    // Invoke callback to handler (if there is one)\n    if (requestId && callbackHandlers[requestId]) callbackHandlers[requestId](event, setSocketState)\n\n    // Updating resync whern loading completes tells any components to resync\n    // with the server. it is useful for remote clients that disconnects then\n    // reconnects to tell them to update once the service is ready.\n    if (name === 'loadingProgress') {\n      if (message.loadingComplete) {\n        setSocketState(prevState => ({\n          ...prevState,\n          ready: true\n        }))\n      }\n    }\n\n    // Broadcast event to anything that is listening for an event with this name\n    if (!requestId && name) {\n      window.dispatchEvent(new CustomEvent(`socketEvent_${name}`, { detail: message }))\n\n      // When a broadcast message is received, use recentBroadcastEvents to\n      // track recent requests so the activity monitor in the UI can reflect\n      // that there is activity and that the client is receiving events.\n      recentBroadcastEvents++\n      setTimeout(() => {\n        recentBroadcastEvents--\n        setSocketState(prevState => ({\n          ...prevState,\n          active: socketRequestsPending()\n        }))\n      }, 500)\n\n      // Trigger notifications for key actions\n      // TODO Refactor out into a seperate handler\n      try { // Don't crash if fails because properties are missing\n        if (socketOptions.notifications === true && name === 'newLogEntry') {\n          if (message.event === 'StartJump' && message.StarSystem) notification(`Jumping to ${message.StarSystem}`)\n          if (message.event === 'FSDJump') notification(`Arrived in ${message.StarSystem}`)\n          if (message.event === 'ApproachBody') notification(`Approaching ${message.Body}`)\n          if (message.event === 'LeaveBody') notification(`Leaving ${message.Body}`)\n          if (message.event === 'NavRoute') notification('New route plotted')\n          if (message.event === 'DockingGranted') notification(`Docking at ${message.StationName}`)\n          if (message.event === 'Docked') notification(`Docked at ${message.StationName}`)\n          if (message.event === 'Undocked') notification(`Now leaving ${message.StationName}`)\n          if (message.event === 'ApproachSettlement') notification(`Approaching ${message.Name}`)\n          if (message.event === 'ReceiveText' && message.From) notification(() => <p style={{ width: '100%' }}><span className='text-primary'>{message.From_Localised || message.From}</span><br /><span className='text-info text-no-transform'>{message.Message_Localised || message.Message}</span></p>)\n          if (message.event === 'MarketBuy') notification(`Purchased ${message.Type_Localised || message.Type} (${message.Count})`)\n          if (message.event === 'MarketSell') notification(`Sold ${message.Type_Localised || message.Type} (${message.Count})`)\n          if (message.event === 'BuyDrones') notification(`Purchased Limpet ${message.Count === 1 ? 'Drone' : `Drones (${message.Count})`}`)\n          if (message.event === 'SellDrones') notification(`Sold Limpet ${message.Count === 1 ? 'Drone' : `Drones (${message.Count})`}`)\n          if (message.event === 'CargoDepot' && message.UpdateType === 'Collect') notification(`Collected ${message.CargoType.replace(/([a-z])([A-Z])/g, '$1 $2')} (${message.Count})`)\n          if (message.event === 'CargoDepot' && message.UpdateType === 'Deliver') notification(`Delivered ${message.CargoType.replace(/([a-z])([A-Z])/g, '$1 $2')} (${message.Count})`)\n          if (message.event === 'Scanned') notification('Scan detected')\n        }\n      } catch (e) { console.log('NOTIFICATION_ERROR', e) }\n    }\n    socketDebugMessage('Message received from socket server', requestId, name, message)\n  }\n  socket.onopen = async (e) => {\n    socketDebugMessage('Connected to socket server')\n\n    setSocketState(prevState => ({\n      ...prevState,\n      active: socketRequestsPending(),\n      connected: true\n    }))\n\n    // While connection remains open and there are queued messages, try to\n    // deliver. The readyState check matters because otherwise if a connection\n    // does down just after going up we want to catch that scenario, and try to\n    // send the message again when the open event is next fired.\n    while (socket.readyState === WebSocket.OPEN && deferredEventQueue.length > 0) {\n      const { requestId, name, message } = deferredEventQueue[0]\n      try {\n        socket.send(JSON.stringify({ requestId, name, message }))\n        setSocketState(prevState => ({\n          ...prevState,\n          active: socketRequestsPending()\n        }))\n        deferredEventQueue.shift() // Remove message from queue once delivered\n        socketDebugMessage('Queued message sent to socket server', requestId, name, message)\n      } catch (e) {\n        // Edge case for flakey connections\n        socketDebugMessage('Failed to deliver queued message socket server', requestId, name, message)\n      }\n    }\n\n    // If we are fully loaded, then set 'ready' state to true, otherwise wait\n    // until get a loadingProgress event that indicates the service is loaded\n    const loadingStats = await sendEvent('getLoadingStatus')\n    if (loadingStats.loadingComplete) {\n      setSocketState(prevState => ({\n        ...prevState,\n        ready: true\n      }))\n    }\n  }\n  socket.onclose = (e) => {\n    socket = null\n    socketDebugMessage('Disconnected from socket server (will attempt reconnection)')\n    setSocketState(prevState => ({\n      ...prevState,\n      active: socketRequestsPending(),\n      connected: false,\n      ready: false\n    }))\n    setTimeout(() => { connect(socketState, setSocketState) }, 5000)\n  }\n\n  socket.onerror = function (err) {\n    socketDebugMessage('Socket error', err.message)\n    socket.close()\n  }\n}\n\nconst SocketContext = createContext()\n\nfunction SocketProvider ({ children }) {\n  const [socketState, setSocketState] = useState(defaultSocketState)\n\n  if (typeof window !== 'undefined' && socketState.connected !== true) {\n    connect(socketState, setSocketState)\n  }\n\n  return (\n    <SocketContext.Provider value={socketState}>\n      {children}\n    </SocketContext.Provider>\n  )\n}\n\nfunction useSocket () { return useContext(SocketContext) }\n\nfunction sendEvent (name, message = null) {\n  return new Promise((resolve, reject) => {\n    const requestId = generateUuid()\n    callbackHandlers[requestId] = (event, setSocketState) => {\n      const { message } = JSON.parse(event.data)\n      delete callbackHandlers[requestId]\n      setSocketState(prevState => ({\n        ...prevState,\n        active: socketRequestsPending()\n      }))\n      resolve(message)\n    }\n    if (socket && socket.readyState === WebSocket.OPEN) {\n      socket.send(JSON.stringify({ requestId, name, message }))\n      socketDebugMessage('Message sent to socket server', requestId, name, message)\n    } else {\n      deferredEventQueue.push({ requestId, name, message })\n      socketDebugMessage('Message queued', requestId, name, message)\n    }\n  })\n}\n\nfunction eventListener (eventName, callback) {\n  const eventHandler = (e) => { callback(e.detail) }\n  window.addEventListener(`socketEvent_${eventName}`, eventHandler)\n  return () => window.removeEventListener(`socketEvent_${eventName}`, eventHandler)\n}\n\nfunction socketRequestsPending () {\n  return !!((Object.keys(callbackHandlers).length > 0 || deferredEventQueue.length > 0 || recentBroadcastEvents > 0))\n}\n\nfunction generateUuid () {\n  return Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 15)\n}\n\nmodule.exports = {\n  SocketProvider,\n  useSocket,\n  sendEvent,\n  eventListener,\n  socketOptions\n}\n"
  },
  {
    "path": "src/client/lib/window.js",
    "content": "function isWindowsApp () { return (typeof window !== 'undefined' && typeof window.icarusTerminal_version === 'function') }\nfunction isWindowFullScreen () { if (isWindowsApp()) { return window.icarusTerminal_isFullScreen() } }\nfunction isWindowPinned () { if (isWindowsApp()) { return window.icarusTerminal_isPinned() } }\nfunction openReleaseNotes () { if (isWindowsApp()) { return window.icarusTerminal_openReleaseNotes() } }\nfunction openTerminalInBrowser () { if (isWindowsApp()) { return window.icarusTerminal_openTerminalInBrowser() } }\n\nfunction appVersion () {\n  if (isWindowsApp()) { return window.icarusTerminal_version() }\n  return null\n}\n\nfunction newWindow () {\n  if (isWindowsApp()) { return window.icarusTerminal_newWindow() }\n\n  window.open(`//${window.location.host}`)\n}\n\nfunction closeWindow () {\n  if (isWindowsApp()) { return window.icarusTerminal_quit() }\n\n  window.close()\n}\n\nasync function checkForUpdate () {\n  if (isWindowsApp()) {\n    try {\n      return JSON.parse(await window.icarusTerminal_checkForUpdate())\n    } catch {}\n    return null\n  }\n}\n\nfunction installUpdate () {\n  if (isWindowsApp()) { return window.icarusTerminal_installUpdate() }\n}\n\nasync function toggleFullScreen () {\n  if (isWindowsApp()) { return await window.icarusTerminal_toggleFullScreen() }\n\n  if (!document.fullscreenElement && !document.mozFullScreenElement && !document.webkitFullscreenElement && !document.webkitCurrentFullScreenElement) {\n    if (document.documentElement.requestFullscreen) {\n      document.documentElement.requestFullscreen()\n    } else if (document.documentElement.mozRequestFullScreen) {\n      document.documentElement.mozRequestFullScreen()\n    } else if (document.documentElement.webkitRequestFullscreen) {\n      document.documentElement.webkitRequestFullscreen()\n    }\n    return true\n  } else {\n    if (document.cancelFullScreen) {\n      document.cancelFullScreen()\n    } else if (document.mozCancelFullScreen) {\n      document.mozCancelFullScreen()\n    } else if (document.webkitCancelFullScreen) {\n      document.webkitCancelFullScreen()\n    } else if (document.webkitExitFullscreen) {\n      document.webkitExitFullscreen()\n    }\n    return false\n  }\n}\n\nasync function togglePinWindow () {\n  if (isWindowsApp()) { return await window.icarusTerminal_togglePinWindow() }\n}\n\nmodule.exports = {\n  isWindowsApp,\n  isWindowFullScreen,\n  isWindowPinned,\n  openReleaseNotes,\n  openTerminalInBrowser,\n  appVersion,\n  newWindow,\n  closeWindow,\n  toggleFullScreen,\n  togglePinWindow,\n  checkForUpdate,\n  installUpdate\n}\n"
  },
  {
    "path": "src/client/pages/_app.js",
    "content": "import App from 'next/app'\nimport { Toaster } from 'react-hot-toast'\nimport { SocketProvider, eventListener } from 'lib/socket'\nimport { loadColorSettings, saveColorSettings } from 'components/settings'\nimport '../public/fonts/icarus-terminal/icarus-terminal.css'\nimport '../css/main.css'\n\nconst handleKeyPress = (event) => {\n  const element = document.activeElement.tagName\n\n  // Check for focus on input elements\n  if (element.toLowerCase() === 'input') {\n    // If ESC is pressed, then remove focus from input\n    if (event.key === 'Escape') document.body.click()\n    \n    // If UP or DOWN arrow is pressed then remove focus\n    if (['ArrowUp', 'ArrowDown'].includes(event.key)) document.body.click()\n\n    return\n  }\n\n  try {\n    switch(event.key) {\n      case \"1\":\n        if (event.getModifierState('Alt')) {\n          return document.querySelector(`#secondaryNavigation button[data-secondary-navigation='1']`).click() \n        } else {\n          return document.querySelector(`#primaryNavigation button[data-primary-navigation='1']`).click()\n        }\n      case \"2\":\n        if (event.getModifierState('Alt')) {\n          return document.querySelector(`#secondaryNavigation button[data-secondary-navigation='2']`).click() \n        } else {\n          return document.querySelector(`#primaryNavigation button[data-primary-navigation='2']`).click()\n        }\n      case \"3\":\n        if (event.getModifierState('Alt')) {\n          return document.querySelector(`#secondaryNavigation button[data-secondary-navigation='3']`).click() \n        } else {\n          return document.querySelector(`#primaryNavigation button[data-primary-navigation='3']`).click()\n        }\n      case \"4\":\n        if (event.getModifierState('Alt')) {\n          return document.querySelector(`#secondaryNavigation button[data-secondary-navigation='4']`).click() \n        } else {\n          return document.querySelector(`#primaryNavigation button[data-primary-navigation='4']`).click()\n        }\n      case \"5\":\n        if (event.getModifierState('Alt')) {\n          return document.querySelector(`#secondaryNavigation button[data-secondary-navigation='5']`).click() \n        } else {\n          return document.querySelector(`#primaryNavigation button[data-primary-navigation='5']`).click()\n        }\n      case \"6\":\n        if (event.getModifierState('Alt')) {\n          return document.querySelector(`#secondaryNavigation button[data-secondary-navigation='6']`).click() \n        } else {\n          return document.querySelector(`#primaryNavigation button[data-primary-navigation='6']`).click()\n        }\n      case \"6\":\n        if (event.getModifierState('Alt')) {\n          return document.querySelector(`#secondaryNavigation button[data-secondary-navigation='7']`).click() \n        } else {\n          return document.querySelector(`#primaryNavigation button[data-primary-navigation='7']`).click()\n        }\n      case \"ArrowUp\":\n        if (!document.querySelector('#secondaryNavigation')) return\n        const previousSecondaryButtonNumber = parseInt(document.querySelector('#secondaryNavigation button.button--active').dataset.secondaryNavigation) - 1\n        const previousSecondaryButton = document.querySelector(`#secondaryNavigation button[data-secondary-navigation='${previousSecondaryButtonNumber}']`)\n        if (previousSecondaryButton) previousSecondaryButton.click()\n        return\n      case \"ArrowDown\":\n        if (!document.querySelector('#secondaryNavigation')) return\n        const nextSecondaryButtonNumber = parseInt(document.querySelector('#secondaryNavigation button.button--active').dataset.secondaryNavigation) + 1\n        const nextSecondaryButton = document.querySelector(`#secondaryNavigation button[data-secondary-navigation='${nextSecondaryButtonNumber}']`)\n        if (nextSecondaryButton) nextSecondaryButton.click()\n        return\n      case \"ArrowLeft\":\n        const previousPrimaryButtonNumber = parseInt(document.querySelector('#primaryNavigation button.button--active').dataset.primaryNavigation) - 1\n        const previousPrimaryButton = document.querySelector(`#primaryNavigation button[data-primary-navigation='${previousPrimaryButtonNumber}']`)\n        if (previousPrimaryButton) previousPrimaryButton.click()\n        return\n      case \"ArrowRight\":\n        const nextPrimaryButtonNumber = parseInt(document.querySelector('#primaryNavigation button.button--active').dataset.primaryNavigation) + 1\n        const nextPrimaryButton = document.querySelector(`#primaryNavigation button[data-primary-navigation='${nextPrimaryButtonNumber}']`)\n        if (nextPrimaryButton) nextPrimaryButton.click()\n        return \n      default:\n        //console.log(`Key pressed: ${event.key}`)\n    }\n  } catch (e) {\n    //console.log(e)\n  }\n}\n\nexport default class MyApp extends App {\n  constructor (props) {\n    super(props)\n    if (typeof window !== 'undefined') {\n      // Load settings at startup\n      loadColorSettings()\n\n      // Update settings in this window when they are changed in another window\n      window.addEventListener('storage', (event) => {\n        if (event.key === 'color-settings') { loadColorSettings() }\n      })\n\n      // Update theme settings (and save them) when sync message received\n      eventListener('syncMessage', (event) => {\n        if (event.name === 'colorSettings') {\n          const colorSettings = event.message\n          document.documentElement.style.setProperty('--color-primary-r', colorSettings.primaryColor.r)\n          document.documentElement.style.setProperty('--color-primary-g', colorSettings.primaryColor.g)\n          document.documentElement.style.setProperty('--color-primary-b', colorSettings.primaryColor.b)\n          document.documentElement.style.setProperty('--color-primary-dark-modifier', colorSettings.primaryColor.modifier)\n          document.documentElement.style.setProperty('--color-secondary-r', colorSettings.secondaryColor.r)\n          document.documentElement.style.setProperty('--color-secondary-g', colorSettings.secondaryColor.g)\n          document.documentElement.style.setProperty('--color-secondary-b', colorSettings.secondaryColor.b)\n          document.documentElement.style.setProperty('--color-secondary-dark-modifier', colorSettings.secondaryColor.modifier)\n          saveColorSettings()\n        }\n      })\n\n      document.addEventListener('keydown', handleKeyPress)\n    } \n  }\n\n  render () {\n    const { Component, pageProps } = this.props\n    return (\n      <SocketProvider>\n        <div id='notifications' style={{ transition: '1s all ease-in-out', position: 'fixed', zIndex: 9999 }}>\n          <Toaster\n            position='bottom-right'\n            toastOptions={{\n              duration: 8000,\n              className: 'notification text-uppercase text-primary',\n              style: {\n                borderRadius: '0',\n                border: '.2rem solid var(--color-primary)',\n                background: 'var(--color-background-panel)',\n                color: 'var(--color-info)',\n                minWidth: '300px',\n                maxWidth: '420px',\n                textAlign: 'left !important',\n                margin: '0 1rem',\n                boxShadow: '0 0 1rem black'\n              }\n            }}\n          />\n        </div>\n        <Component {...pageProps} />\n      </SocketProvider>\n    )\n  }\n}\n"
  },
  {
    "path": "src/client/pages/_document.js",
    "content": "import Document, { Html, Head, Main, NextScript } from 'next/document'\n\n// Disable onContextMenu, except in development\nconst onContextMenu = process.env.NODE_ENV === 'development'\n  ? ''\n  : 'document.oncontextmenu = (e) => e.preventDefault()'\n\nclass MyDocument extends Document {\n  static async getInitialProps (ctx) {\n    const initialProps = await Document.getInitialProps(ctx)\n    return { ...initialProps }\n  }\n\n  render () {\n    return (\n      <Html lang='en' data-fx-crt='true' data-fx-crt-text='false' data-fx-crt-text-animated='false'>\n        <Head>\n          <link rel='manifest' href='/manifest.json' />\n          <link rel='apple-touch-icon' izes='180x180' href='/icons/icon-180x180.png' />\n          <meta name='theme-color' content='#000' />\n          <style dangerouslySetInnerHTML={{\n            __html: 'html { background: black; }'\n          }}\n          />\n          <script dangerouslySetInnerHTML={{ __html: onContextMenu }} />\n        </Head>\n        <body className='not-selectable'>\n          <div dangerouslySetInnerHTML={{\n            __html: `\n            <!-- SVG filters and effects used for styling icons (e.g. sytem map) -->\n    <svg style=\"position: absolute; height: 0; margin: 0; padding: 0; top: -100px;\">\n      <defs>\n        <!-- For planet icons in system map -->\n        <clipPath id=\"svg-clip-path__planet\">\n          <rect x=\"400\" y=\"0\" width=\"500\" height=\"1000\" />\n        </clipPath>\n        <!-- Unknown system objects (eg stations, megaships)-->\n        <linearGradient id=\"svg-gradient__unknown\">\n          <stop offset=\"0%\" stop-color=\"#ccc\" />\n          <stop offset=\"100%\" stop-color=\"#aaa\" />\n        </linearGradient>\n        <!-- Planets -->\n        <linearGradient id=\"system-map-svg-gradient__planet-ring\" gradientTransform=\"rotate(90)\" gradientUnits=\"userSpaceOnUse\">\n          <stop offset=\"0%\" />\n          <stop offset=\"100%\" />\n        </linearGradient>\n        <linearGradient id=\"system-map-svg-gradient__planet\" gradientTransform=\"rotate(10)\">\n          <stop offset=\"0%\" />\n          <stop offset=\"100%\" />\n        </linearGradient>\n        <linearGradient id=\"system-map-svg-gradient__planet--gas-giant\">\n          <stop offset=\"0%\" />\n          <stop offset=\"100%\" />\n        </linearGradient>\n        <linearGradient id=\"system-map-svg-gradient__planet--gas-giant-ammonia\">\n          <stop offset=\"0%\" />\n          <stop offset=\"100%\" />\n        </linearGradient>\n        <linearGradient id=\"system-map-svg-gradient__planet--rocky\">\n          <stop offset=\"0%\" />\n          <stop offset=\"100%\" />\n        </linearGradient>\n        <linearGradient id=\"system-map-svg-gradient__planet--rocky-icy\">\n          <stop offset=\"0%\" />\n          <stop offset=\"100%\" />\n        </linearGradient>\n        <linearGradient id=\"system-map-svg-gradient__planet--icy\">\n          <stop offset=\"0%\" />\n          <stop offset=\"100%\" />\n        </linearGradient>\n        <linearGradient id=\"system-map-svg-gradient__planet--high-metal\">\n          <stop offset=\"0%\" />\n          <stop offset=\"100%\" />\n        </linearGradient>\n        <linearGradient id=\"system-map-svg-gradient__planet--metal-rich\">\n          <stop offset=\"0%\" />\n          <stop offset=\"100%\" />\n        </linearGradient>\n        <linearGradient id=\"system-map-svg-gradient__planet--earth-like\">\n          <stop offset=\"0%\" />\n          <stop offset=\"100%\" />\n        </linearGradient>\n        <linearGradient id=\"system-map-svg-gradient__planet--landable\">\n          <stop offset=\"0%\" />\n          <stop offset=\"100%\" />\n        </linearGradient>\n        <radialGradient id=\"system-map-svg-gradient__planet--atmosphere--radial\">\n          <stop offset=\"25%\" />\n          <stop offset=\"50%\" />\n          <stop offset=\"100%\" />\n        </radialGradient>\n        <linearGradient id=\"system-map-svg-gradient__planet--atmosphere\" gradientTransform=\"rotate(10)\">\n          <stop offset=\"50%\" />\n          <stop offset=\"100%\" />\n        </linearGradient>\n        <!-- Shadows on planets  -->\n        <filter id=\"svg-filter__planet-shadow\">\n          <feOffset dx=\"-500\" dy=\"-500\"/>\n          <feGaussianBlur stdDeviation=\"200\" result=\"offset-blur\"/>\n          <feComposite operator=\"out\" in=\"SourceGraphic\" in2=\"offset-blur\" result=\"inverse\"/>\n          <feFlood flood-color=\"black\" flood-opacity=\"1\" result=\"color\"/>\n          <feComposite operator=\"in\" in=\"color\" in2=\"inverse\" result=\"shadow\"/>\n          <feComponentTransfer in=\"shadow\" result=\"shadow\"><feFuncA type=\"linear\" slope=\".7\"/></feComponentTransfer>\n          <feComposite operator=\"over\" in=\"shadow\" in2=\"SourceGraphic\"/>\n        </filter>\n        <filter id=\"svg-filter__planet-shadow--small\">\n          <feOffset dx=\"-200\" dy=\"-200\"/>\n          <feGaussianBlur stdDeviation=\"100\" result=\"offset-blur\"/>\n          <feComposite operator=\"out\" in=\"SourceGraphic\" in2=\"offset-blur\" result=\"inverse\"/>\n          <feFlood flood-color=\"black\" flood-opacity=\"1\" result=\"color\"/>\n          <feComposite operator=\"in\" in=\"color\" in2=\"inverse\" result=\"shadow\"/>\n          <feComponentTransfer in=\"shadow\" result=\"shadow\"><feFuncA type=\"linear\" slope=\".7\"/></feComponentTransfer>\n          <feComposite operator=\"over\" in=\"shadow\" in2=\"SourceGraphic\"/>\n        </filter>\n        <filter id=\"svg-filter__star-glow\">\n          <feOffset dx=\"0\" dy=\"0\"/>\n          <feGaussianBlur stdDeviation=\"500\" result=\"offset-blur\"/>\n          <feComposite operator=\"out\" in=\"SourceGraphic\" in2=\"offset-blur\" result=\"inverse\"/>\n          <feFlood flood-color=\"rgba(255,0,0,.5)\" flood-opacity=\"1\" result=\"color\"/>\n          <feComposite operator=\"in\" in=\"color\" in2=\"inverse\" result=\"shadow\"/>\n          <feComponentTransfer in=\"shadow\" result=\"shadow\"><feFuncA type=\"linear\" slope=\"1\"/></feComponentTransfer>\n          <feComposite operator=\"over\" in=\"shadow\" in2=\"SourceGraphic\"/>\n        </filter>\n        <filter id=\"svg-filter__star-glow--light\">\n          <feOffset dx=\"0\" dy=\"0\"/>\n          <feGaussianBlur stdDeviation=\"500\" result=\"offset-blur\"/>\n          <feComposite operator=\"out\" in=\"SourceGraphic\" in2=\"offset-blur\" result=\"inverse\"/>\n          <feFlood flood-color=\"rgba(255,0,0,.25)\" flood-opacity=\"1\" result=\"color\"/>\n          <feComposite operator=\"in\" in=\"color\" in2=\"inverse\" result=\"shadow\"/>\n          <feComponentTransfer in=\"shadow\" result=\"shadow\"><feFuncA type=\"linear\" slope=\"1\"/></feComponentTransfer>\n          <feComposite operator=\"over\" in=\"shadow\" in2=\"SourceGraphic\"/>\n        </filter>\n      </defs>\n    </svg>\n    <script>\n      const isChromium = window.chrome\n      const isOpera = typeof window.opr !== \"undefined\"\n      const isIEedge = window.navigator.userAgent.indexOf('Edg') > -1\n      const isFirefox = navigator.userAgent.toLowerCase().indexOf('firefox') > -1\n      const isIOSChrome = window.navigator.userAgent.match('CriOS')\n      const isIOSFirefox = window.navigator.userAgent.match('FxiOS')\n      const isSafari = navigator.vendor.match(/apple/i) \n        && !isIOSChrome && !isIOSFirefox\n        && !navigator.userAgent.match(/Opera|OPT\\\\//)\n\n      // Google Chrome supports filters on SVG textures in this way but not all\n      // imitation Chrome browsers do and some look terrible as a result because\n      // of how the fail at rendering.\n      // \n      // Firefox supports this feature too, though doesn't support focus events\n      // on the SVGs so the map view isn't actually interactive on Firefox.\n      //\n      // This check is all so the map doesn't look bad on cheap tablets like the\n      // Amazon Fire, which Amazon recently forceably purged side loaded Google\n      // Chrome from and replaced it with less capeable version of Amazon's \n      // Silk browser which uses Google Inc. as the vendor name but isn't\n      // actually from Google and it does not have feature parity with Chrome.\n      let ENABLE_PLANET_TEXTURES = false\n\n      // Note: Safari supports SVG textures, but needs special handling as it\n      // doesn't support filters on SVG elements (textured or otherwise), so\n      // they are not enabled on Safari for now (unless/until Apple address the\n      // limitation).\n      if (isIEedge || (isFirefox && !isIOSFirefox)) { \n        ENABLE_PLANET_TEXTURES = true\n      } else if (\n        // Check is Google Chrome (and not impostor)\n        isChromium !== null &&\n        window.navigator.vendor === \"Google Inc.\" &&\n        !window.navigator.userAgent.match(\"like Chrome\") && // Browsers like Amazon Fire's Silk Browsers use the Google Inc. vendor name, but that's a lie and it doesn't support this feature\n        isOpera === false &&\n        isIEedge === false\n      ) {\n        ENABLE_PLANET_TEXTURES = true\n      }\n\n      if (ENABLE_PLANET_TEXTURES) {\n        document.write(\\`\n          <svg style=\"position: absolute; height: 0; margin: 0; padding: 0; top: -100px;\">\n            <defs>\n              <pattern id=\"svg-pattern__star-surface\" patternUnits=\"userSpaceOnUse\" preserveAspectRatio=\"none\" width=\"4096\" height=\"4096\">\n                <image href=\"/images/textures/star.jpg\" x=\"0\" y=\"0\" width=\"4096\" height=\"4096\"/>\n              </pattern>\n              <pattern id=\"svg-pattern__planet-surface\" patternUnits=\"userSpaceOnUse\" preserveAspectRatio=\"none\" width=\"4096\" height=\"4096\">\n                <image href=\"/images/textures/rock.jpg\" x=\"0\" y=\"0\" width=\"4096\" height=\"4096\"/>\n              </pattern>\n              <pattern id=\"svg-pattern__planet-surface-animated\" x=\"0\" patternUnits=\"userSpaceOnUse\" preserveAspectRatio=\"none\" width=\"4096\" height=\"4096\">\n                <image href=\"/images/textures/rock.jpg\" x=\"0\" y=\"0\" width=\"4096\" height=\"4096\"/>\n                <animate attributeName=\"x\" values=\"0;4096\" dur=\"30s\" repeatCount=\"indefinite\"/>\n              </pattern>\n              <pattern id=\"svg-pattern__planet-surface--clouds\" patternUnits=\"userSpaceOnUse\" preserveAspectRatio=\"none\" width=\"4096\" height=\"4096\">\n                <image href=\"/images/textures/clouds.jpg\" x=\"0\" y=\"0\" width=\"4096\" height=\"4096\"/>\n              </pattern>\n              <pattern id=\"svg-pattern__planet-surface--gas-giant\" patternUnits=\"userSpaceOnUse\" preserveAspectRatio=\"none\" width=\"4096\" height=\"4096\">\n                <image href=\"/images/textures/gas-giant.jpg\" x=\"0\" y=\"0\" width=\"4096\" height=\"4096\"/>\n              </pattern>\n              <pattern id=\"svg-pattern__planet-surface--brown-dwarf\" patternUnits=\"userSpaceOnUse\" preserveAspectRatio=\"none\" width=\"8192\" height=\"8192\">\n                <image href=\"/images/textures/gas-giant.jpg\" x=\"0\" y=\"0\" width=\"8192\" height=\"8192\"/>\n              </pattern>\n            </defs>\n          </svg>\n          <style>\n            .system-map__system-object[data-system-object-type=\"Star\"] .system-map__planet-surface {\n              fill: url(#svg-pattern__star-surface) !important;\n            }\n            \n            .system-map__system-object[data-system-object-type=\"Star\"][data-system-object-sub-type*=\"Brown dwarf\" i] .system-map__planet-surface {\n              fill: url(#svg-pattern__planet-surface--brown-dwarf) !important;\n            }\n          </style>\n        \\`)\n      } else {\n        // If the device is not kown to support textures, use a different effect\n        // to render stars that works without textures (uses a radial gradient)\n        document.write(\\`\n          <style>\n            .system-map__system-object[data-system-object-type=\"Star\"] .system-map__planet {\n              filter: url(#svg-filter__star-glow) !important;\n            }\n        </style>\n        \\`)\n      }\n    </script>\n          `\n          }}\n          />\n          <div className='layout__background' />\n          <div className='layout__overlay' />\n          <Main />\n          <NextScript />\n        </body>\n      </Html>\n    )\n  }\n}\n\nexport default MyDocument\n"
  },
  {
    "path": "src/client/pages/eng/blueprints.js",
    "content": "import { useState, useEffect } from 'react'\nimport animateTableEffect from 'lib/animate-table-effect'\nimport { useRouter } from 'next/router'\nimport Link from 'next/link'\nimport { UNKNOWN_VALUE } from '../../../shared/consts'\nimport distance from '../../../shared/distance'\nimport { useSocket, sendEvent, eventListener } from 'lib/socket'\nimport { EngineeringPanelNavItems } from 'lib/navigation-items'\nimport Layout from 'components/layout'\nimport Panel from 'components/panel'\nimport CopyOnClick from 'components/copy-on-click'\n\nexport default function EngineeringMaterialsPage () {\n  const router = useRouter()\n  const { query } = router\n  const { connected, active, ready } = useSocket()\n  const [currentSystem, setCurrentSystem] = useState()\n  const [blueprints, setBlueprints] = useState()\n  const [componentReady, setComponentReady] = useState(false)\n  const [blueprintsApplied, setBlueprintsApplied] = useState()\n  const [blueprintsNotApplied, setBlueprintsNotApplied] = useState()\n  const [selectedBlueprint, setSelectedBlueprint] = useState()\n\n  useEffect(animateTableEffect)\n  \n  useEffect(async () => {\n    if (!connected || !router.isReady) return\n\n    if (!blueprints) {\n      const newBlueprints = await sendEvent('getBlueprints')\n      setBlueprints(newBlueprints)\n      setBlueprintsApplied(newBlueprints.filter(b => b.appliedToModules.length > 0))\n      setBlueprintsNotApplied(newBlueprints.filter(b => b.appliedToModules.length === 0))\n    }\n    const newSystem = await sendEvent('getSystem')\n    if (newSystem?.address) setCurrentSystem(newSystem)\n    setComponentReady(true)\n  }, [connected, router.isReady, query])\n\n  useEffect(async () => {\n    if (!blueprints) return\n    const newSelectedBlueprint = (query?.symbol && query?.symbol.trim() !== '')\n      ? blueprints?.filter(blueprint => query?.symbol.toLowerCase() === blueprint.symbol.toLowerCase())?.[0] ?? null\n      : null\n    setSelectedBlueprint(newSelectedBlueprint)\n    const newSystem = await sendEvent('getSystem')\n    if (newSystem?.address) setCurrentSystem(newSystem)\n  }, [blueprints, query])\n\n  useEffect(() => eventListener('newLogEntry', async (log) => {\n    if (['Materials', 'MaterialCollected', 'MaterialDiscarded', 'MaterialTrade', 'EngineerCraft'].includes(log.event)) {\n      const newBlueprints = await sendEvent('getBlueprints')\n      setBlueprints(newBlueprints)\n      setBlueprintsApplied(newBlueprints.filter(b => b.appliedToModules.length > 0))\n      setBlueprintsNotApplied(newBlueprints.filter(b => b.appliedToModules.length === 0))\n    }\n    if (['Location', 'FSDJump'].includes(log.event)) {\n      const newSystem = await sendEvent('getSystem')\n      if (newSystem?.address) setCurrentSystem(newSystem)\n    }\n  }), [])\n\n  useEffect(() => eventListener('gameStateChange', async () => {\n    const newBlueprints = await sendEvent('getBlueprints')\n    setBlueprints(newBlueprints)\n    setBlueprintsApplied(newBlueprints.filter(b => b.appliedToModules.length > 0))\n    setBlueprintsNotApplied(newBlueprints.filter(b => b.appliedToModules.length === 0))\n  }), [])\n\n  return (\n    <Layout connected={connected} active={active} ready={ready} loader={!componentReady}>\n      {!selectedBlueprint &&\n        <Panel layout='full-width' scrollable navigation={EngineeringPanelNavItems('Blueprints')}>\n          <h2>Blueprints</h2>\n          <h3 className='text-primary'>Ship &amp; equipment modifications</h3>\n\n          <p className='text-primary'>\n            Blueprints can be used to improve ships and equipment\n          </p>\n\n          {blueprintsApplied && blueprintsApplied.length > 0 &&\n            <>\n              <div className='section-heading'>\n                <h4 className='section-heading__text' style={{ marginTop: '1rem' }}>Applied Blueprints</h4>\n              </div>\n              <p className='text-primary'>\n                Equipment on your current ship that has been modified using Blueprints\n              </p>\n              <table className='table--interactive table--animated'>\n                <tbody className='fx-fade-in'>\n                  {blueprintsApplied.map(blueprint =>\n                    <tr\n                      key={`blueprint_${blueprint.name}_${blueprint.modules.join(', ')}`}\n                      tabIndex={2}\n                      className='table__row--highlighted'\n                      onFocus={() => {\n                        router.push({ pathname: '/eng/blueprints', query: { symbol: blueprint.symbol } })\n                      }}\n                    >\n                      <td\n                        className='text-center text-info'\n                        style={{ width: '1rem' }}\n                      >\n                        <i\n                          className='icon icarus-terminal-wrench'\n                          style={{ position: 'relative', top: '.15rem' }}\n                        />\n                      </td>\n                      <td>\n                        <h4>{blueprint.name}</h4>\n                        <h4 className='text-muted visible-medium'>{blueprint.originalName}</h4>\n                      </td>\n                      <td className='text-right hidden-medium'>\n                        <h4 className='text-muted'>{blueprint.originalName}</h4>\n                      </td>\n                      <td className='text-center' style={{ width: '1rem' }}>\n                        <i className='icon icarus-terminal-chevron-right' style={{ fontSize: '1rem' }} />\n                      </td>\n                    </tr>\n                  )}\n                </tbody>\n              </table>\n              <div className='section-heading'>\n                <h4 className='section-heading__text' style={{ marginTop: '1rem' }}>Other Blueprints</h4>\n              </div>\n            </>}\n          {blueprintsApplied && blueprintsApplied.length === 0 &&\n            <div className='section-heading'>\n              <h4 className='section-heading__text' style={{ marginTop: '1rem' }}>Blueprints</h4>\n            </div>}\n          {blueprintsNotApplied &&\n            <table className='table--interactive table--animated'>\n              <tbody>\n                {blueprintsNotApplied.map(blueprint =>\n                  <tr\n                    key={`blueprint_${blueprint.name}_${blueprint.modules.join(', ')}`}\n                    tabIndex={2}\n                    className='table__row--highlight-primary-hover'\n                    onFocus={() => {\n                      router.push({ pathname: '/eng/blueprints', query: { symbol: blueprint.symbol } })\n                    }}\n                  >\n                    <td\n                      className='text-center text-primary'\n                      style={{ width: '1rem' }}\n                    >\n                      <i\n                        className='icon icarus-terminal-wrench'\n                        style={{ position: 'relative', top: '.15rem' }}\n                      />\n                    </td>\n                    <td>\n                      <h4>{blueprint.name}</h4>\n                      <h4 className='text-muted visible-medium'>{blueprint.originalName}</h4>\n                    </td>\n                    <td className='text-right hidden-medium'>\n                      <h4 className='text-muted'>{blueprint.originalName}</h4>\n                    </td>\n                    <td className='text-center' style={{ width: '1rem' }}>\n                      <i className='icon icarus-terminal-chevron-right' style={{ fontSize: '1rem' }} />\n                    </td>\n                  </tr>\n                )}\n              </tbody>\n            </table>}\n        </Panel>}\n      {selectedBlueprint &&\n        <Panel layout='full-width' scrollable navigation={EngineeringPanelNavItems('Blueprints')}>\n          <p style={{ marginTop: 0, marginBottom: '1rem' }}>\n            <Link href='/eng/blueprints'>\n              <a className='text-link text-uppercase'><span className='text-link-text'>Blueprints</span></a>\n            </Link>\n            <span className='text-link text-uppercase text-muted'>\n              <i className='icon icarus-terminal-chevron-right' style={{ fontSize: '1rem' }} />\n              {selectedBlueprint.name}\n            </span>\n          </p>\n          <h2>{selectedBlueprint.name}</h2>\n          <h3 className='text-primary'>{selectedBlueprint.originalName}</h3>\n          {selectedBlueprint.appliedToModules.length > 0 &&\n            <>\n              <div className='section-heading'>\n                <h4 className='section-heading__text' style={{ marginTop: '1rem' }}>Engineered equipment</h4>\n              </div>\n              <p className='text-primary'>\n                Equipment on your current ship that has been modified using this Blueprint\n              </p>\n              <table className='table--animated'>\n                <tbody className='fx-fade-in'>\n                  {selectedBlueprint.appliedToModules.map(module => (\n                    <tr\n                      key={`engineering_${module.engineering.symbol}_applied-to_${module.name}_slot_${module.slot}`}\n                      className='table__row--highlighted'\n                    >\n                      <td\n                        className='text-center text-info'\n                        style={{ width: '1rem' }}\n                      >\n                        <i\n                          className='icon icarus-terminal-wrench'\n                          style={{ position: 'relative', top: '.15rem' }}\n                        />\n                      </td>\n                      <td>\n                        <span className='text-info'>{module.class}{module.rating} {module.name}</span>\n                        <span className='visible-medium'><br />{module.slotName}</span>\n                      </td>\n                      <td className='hidden-medium text-no-wrap' style={{ width: '12rem' }}>\n                        <span>{module.slotName}</span>\n                      </td>\n                      <td className='text-info text-no-wrap' style={{ minWidth: '3rem' }}>\n                        <span className='visible-medium' style={{ fontSize: '1.75rem', lineHeight: '1.75rem' }}>\n                          <i className='icon icarus-terminal-engineering float-right' />\n                          <span className='float-right' style={{ marginRight: '.25rem' }}>{module.engineering.level}</span>\n                        </span>\n                        <span className='hidden-medium float-right' style={{ height: '1.75rem' }}>\n                          {[...Array(module.engineering.level)].map((j, i) =>\n                            <i\n                              style={{ fontSize: '1.75rem', lineHeight: '1.75rem', width: '1.75rem', display: 'inline-block', marginRight: '0.1rem' }}\n                              key={`engineering_${module.engineering.symbol}_applied-to_${module.name}_slot_${module.slot}_engineering-grade_${i}`}\n                              className='icon icarus-terminal-engineering'\n                            />\n                          )}\n                        </span>\n                      </td>\n                    </tr>\n                  ))}\n                </tbody>\n              </table>\n            </>}\n\n          {selectedBlueprint.appliedToModules.length === 0 &&\n            <>\n              <div className='section-heading'>\n                <h4 className='section-heading__text' style={{ marginTop: '1rem' }}>Engineered equipment</h4>\n              </div>\n              <p className='text-muted text-primary'>Blueprint not applied to any currently fitted equipment</p>\n            </>}\n\n          <div className='section-heading'>\n            <h4 className='section-heading__text' style={{ marginTop: '1rem' }}>Engineers</h4>\n          </div>\n          <p className='text-primary'>\n            Engineers who know how to apply or upgrade this Blueprint\n          </p>\n          <table className='table--animated' style={{ tableLayout: 'fixed' }}>\n            <tbody className='fx-fade-in'>\n              {Object.keys(selectedBlueprint?.engineers ?? []).map(engineer => (\n                <tr key={`engineer_${engineer}`}>\n                  <td\n                    className={`text-center ${selectedBlueprint?.engineers[engineer]?.rank === 0 ? 'text-info text-muted' : 'text-info'}`}\n                    style={{ width: '1rem' }}\n                  >\n                    <i\n                      className='icon icarus-terminal-engineer'\n                      style={{ position: 'relative', top: '.15rem' }}\n                    />\n                  </td>\n                  <td>\n                    <span className={selectedBlueprint?.engineers[engineer]?.rank === 0 ? 'text-info text-muted' : 'text-info'}>\n                      <CopyOnClick>{engineer}</CopyOnClick>\n                      <span className='visible-medium text-primary'>\n                        <br />\n                        {\n                            Math.min(...selectedBlueprint?.engineers?.[engineer]?.grades) !== Math.max(...selectedBlueprint?.engineers?.[engineer]?.grades) &&\n                            `Grade ${Math.min(...selectedBlueprint?.engineers?.[engineer]?.grades)} — ${Math.max(...selectedBlueprint?.engineers?.[engineer]?.grades)}`\n                          }\n                        {\n                            Math.min(...selectedBlueprint?.engineers?.[engineer]?.grades) === Math.max(...selectedBlueprint?.engineers?.[engineer]?.grades) &&\n                            `Grade ${Math.min(...selectedBlueprint?.engineers?.[engineer]?.grades)}`\n                          }\n                      </span>\n                    </span>\n                  </td>\n                  <td className='text-right hidden-medium'>\n                    <span className={selectedBlueprint?.engineers[engineer]?.rank === 0 ? 'text-primary text-muted' : 'text-primary'}>\n                      {\n                        Math.min(...selectedBlueprint?.engineers?.[engineer]?.grades) !== Math.max(...selectedBlueprint?.engineers?.[engineer]?.grades) &&\n                        `Grade ${Math.min(...selectedBlueprint?.engineers?.[engineer]?.grades)} — ${Math.max(...selectedBlueprint?.engineers?.[engineer]?.grades)}`\n                      }\n                      {\n                        Math.min(...selectedBlueprint?.engineers?.[engineer]?.grades) === Math.max(...selectedBlueprint?.engineers?.[engineer]?.grades) &&\n                        `Grade ${Math.min(...selectedBlueprint?.engineers?.[engineer]?.grades)}`\n                      }\n                    </span>\n                  </td>\n                  <td>\n                    {selectedBlueprint?.engineers[engineer]?.rank === 0 && <>\n                      {selectedBlueprint?.engineers[engineer]?.progress === UNKNOWN_VALUE\n                        ? <span className='text-danger text-muted'>Locked</span>\n                        : <span className='text-info text-muted'>{selectedBlueprint?.engineers[engineer]?.progress}</span>}\n                    </>}\n                    {selectedBlueprint?.engineers[engineer]?.rank > 0 && <span className='text-secondary'> Grade {selectedBlueprint?.engineers[engineer]?.rank} Unlocked</span>}\n                  </td>\n                  <td className='text-right'>\n                    <span className='text-right'>\n                      <CopyOnClick>{selectedBlueprint?.engineers[engineer]?.system}</CopyOnClick>\n                    </span>\n                    {(currentSystem?.position && selectedBlueprint?.engineers[engineer]?.location) &&\n                      <span className='text-muted text-no-transform'>\n                        <span className='visible-medium'><br /></span>\n                        {' '}\n                        {distance(currentSystem.position, selectedBlueprint?.engineers[engineer]?.location).toLocaleString(undefined, { maximumFractionDigits: 0 })} Ly\n                      </span>}\n                  </td>\n                </tr>\n              ))}\n            </tbody>\n          </table>\n\n          {Object.keys(selectedBlueprint.grades).map(grade =>\n            <div className='engineering__blueprint-grade' style={{ position: 'relative' }} key={`${selectedBlueprint.symbol}_${grade}_materials`}>\n\n              <div className='section-heading' style={{ marginTop: '1rem' }}>\n                <h4 className='section-heading__text'>Grade {parseInt(grade) + 1}</h4>\n                <h4 className='text-info text-muted float-right' style={{ marginTop: '.5rem' }}>Cost / Inventory</h4>\n              </div>\n\n              <h4 className='text-info hidden-medium' style={{ position: 'absolute', margin: '.5rem 0 0 0' }}>\n                {[...Array(selectedBlueprint.grades[grade].grade)].map((j, i) =>\n                  <i\n                    style={{ fontSize: '2rem', width: '2rem', display: 'inline-block', marginRight: '0.1rem' }}\n                    key={`${selectedBlueprint.symbol}_${grade}_engineering_${i}`}\n                    className='icon icarus-terminal-engineering'\n                  />\n                )}\n              </h4>\n              <div className='engineering__blueprint-features text-uppercase'>\n                {Object.entries(selectedBlueprint.grades[grade]?.features).map(([k, v]) => {\n                  if (!v.improvement) return null\n                  return (\n                    <p key={`feature_${k}_${v}`} className='text-success'>\n                      <i className='icon icarus-terminal-chevron-up' style={{ marginRight: '.2rem', position: 'relative', top: '.1rem' }} />\n                      {k}\n                      <span className='float-right'>\n                        {v.value[0] === v.value[1] && <>{v.value[0] >= 0 && '+'}{v.value[0]}</>}\n                        {v.value[0] !== v.value[1] && <>{v.value[0] !== 0 && <>{v.value[0] >= 0 && '+'}{v.value[0]} <span className='text-info text-muted'>—</span></>} {v.value[1] >= 0 && '+'}{v.value[1]}</>}\n                      </span>\n                    </p>\n                  )\n                })}\n                {Object.entries(selectedBlueprint.grades[grade]?.features).map(([k, v]) => {\n                  if (v.improvement) return null\n                  return (\n                    <p key={`feature_${k}_${v}`} className='text-danger'>\n                      <i className='icon icarus-terminal-chevron-down' style={{ marginRight: '.2rem', position: 'relative', top: '.1rem' }} />\n                      {k}\n                      <span className='float-right'>\n                        {v.value[0] === v.value[1] && <>{v.value[0] >= 0 && '+'}{v.value[0]}</>}\n                        {v.value[0] !== v.value[1] && <>{v.value[0] !== 0 && <>{v.value[0] >= 0 && '+'}{v.value[0]} <span className='text-info text-muted'>—</span></>} {v.value[1] >= 0 && '+'}{v.value[1]}</>}\n                      </span>\n                    </p>\n                  )\n                })}\n              </div>\n              <div className='engineering__blueprint-components'>\n                <table className='table--animated'>\n                  {/*\n                  <thead>\n                    <tr>\n                      <th className='text-left' colSpan={2}>Material</th>\n                      <th>Cost</th>\n                      <th>\n                        <span className='text-muted'>Current</span>\n                      </th>\n                    </tr>\n                  </thead>\n                  */}\n                  <tbody>\n                    {selectedBlueprint.grades[grade].components.map(component => {\n                      return (\n                        <tr\n                          key={`blueprint_${selectedBlueprint.name}_grade_${grade}_component_${component.name}`}\n                          className={component.count > 0 ? 'text-primary' : 'text-muted text-danger'}\n                        >\n                          <td className='text-center' style={{ background: 'var(--color-primary-dark)', width: '1rem' }}>\n                            <i className={`icon icarus-terminal-materials-grade-${component.grade}`} style={{ fontSize: '2.5rem' }} />\n                          </td>\n                          <td style={{ background: 'var(--color-primary-dark)' }}>\n                            <CopyOnClick>{component.name}</CopyOnClick>\n                            <div className='text-muted'>\n                              {component.type}\n                            </div>\n                          </td>\n                          <td className='text-right' style={{ width: '3rem' }}>{component.cost}</td>\n                          <td className='text-right text-muted' style={{ width: '3rem' }}>{component.count}</td>\n                        </tr>\n                      )\n                    })}\n                  </tbody>\n                </table>\n              </div>\n            </div>\n          )}\n        </Panel>}\n    </Layout>\n  )\n}\n"
  },
  {
    "path": "src/client/pages/eng/encoded-materials.js",
    "content": "import { useState, useEffect } from 'react'\nimport animateTableEffect from 'lib/animate-table-effect'\nimport { useSocket, sendEvent, eventListener } from 'lib/socket'\nimport { EngineeringPanelNavItems } from 'lib/navigation-items'\nimport Layout from 'components/layout'\nimport Panel from 'components/panel'\nimport Materials from 'components/panels/eng/materials'\n\nexport default function EngineeringMaterialsPage () {\n  const { connected, active, ready } = useSocket()\n  const [materials, setMaterials] = useState()\n\n  useEffect(animateTableEffect)\n  \n  useEffect(async () => {\n    if (!connected) return\n    setMaterials(await sendEvent('getMaterials'))\n  }, [connected, ready])\n\n  useEffect(() => eventListener('newLogEntry', async (log) => {\n    if (['Materials', 'MaterialCollected', 'MaterialDiscarded', 'MaterialTrade', 'EngineerCraft'].includes(log.event)) {\n      setMaterials(await sendEvent('getMaterials'))\n    }\n  }), [])\n\n  return (\n    <Layout connected={connected} active={active} ready={ready}>\n      <Panel layout='full-width' scrollable navigation={EngineeringPanelNavItems('Encoded Materials')}>\n        <h2>Encoded Materials</h2>\n        <h3 className='text-primary'>For engineering and synthesis</h3>\n        <p className='text-primary'>\n          Encoded Materials are used in engineering and synthesis and can be exchanged at Encoded Material Traders\n        </p>\n        {materials && <Materials materialType='Encoded' materials={materials} />}\n      </Panel>\n    </Layout>\n  )\n}\n"
  },
  {
    "path": "src/client/pages/eng/engineers.js",
    "content": "import { useState, useEffect, Fragment } from 'react'\nimport animateTableEffect from 'lib/animate-table-effect'\nimport { useRouter } from 'next/router'\nimport distance from '../../../shared/distance'\nimport { UNKNOWN_VALUE } from '../../../shared/consts'\nimport { useSocket, sendEvent, eventListener } from 'lib/socket'\nimport { EngineeringPanelNavItems } from 'lib/navigation-items'\nimport Layout from 'components/layout'\nimport Panel from 'components/panel'\nimport CopyOnClick from 'components/copy-on-click'\n\nexport default function EngineeringEngineersPage () {\n  const router = useRouter()\n  const { query } = router\n  const { connected, active, ready } = useSocket()\n  const [componentReady, setComponentReady] = useState(false)\n  const [currentSystem, setCurrentSystem] = useState()\n  const [engineers, setEngineers] = useState()\n\n  useEffect(animateTableEffect)\n  \n  useEffect(async () => {\n    if (!connected || !router.isReady) return\n\n    // Always refetch list of engineers to ensure up to date\n    const newEngineers = await sendEvent('getEngineers')\n    setEngineers(newEngineers)\n\n    // Always refetch current system\n    const newSystem = await sendEvent('getSystem')\n    if (newSystem?.address) setCurrentSystem(newSystem)\n    setComponentReady(true)\n  }, [connected, ready, router.isReady, query])\n\n  useEffect(() => eventListener('newLogEntry', async (log) => {\n    if (['Location', 'FSDJump'].includes(log.event)) {\n      const newSystem = await sendEvent('getSystem')\n      if (newSystem?.address) setCurrentSystem(newSystem)\n    }\n  }), [])\n\n  return (\n    <Layout connected={connected} active={active} ready={ready} loader={!componentReady}>\n      <Panel layout='full-width' scrollable navigation={EngineeringPanelNavItems('Engineers')}>\n        <h2>Engineers</h2>\n        <h3 className='text-primary'>Engineers &amp; Workshops</h3>\n\n        <p className='text-primary'>\n          Engineers can use Blueprints and Experimental Effects to improve ships and equipment\n        </p>\n\n        {engineers && engineers.length > 0 &&\n          <>\n            <div className='section-heading'>\n              <h4 className='section-heading__text' style={{ marginTop: '1rem' }}>Unlocked Engineers</h4>\n            </div>\n            <ListEngineers\n              engineers={engineers.filter(e => e.progress.status.toLowerCase() === 'unlocked')}\n              currentSystem={currentSystem}\n            />\n            <div className='section-heading'>\n              <h4 className='section-heading__text' style={{ marginTop: '1rem' }}>Known/Invited Engineers</h4>\n            </div>\n            <ListEngineers\n              engineers={engineers.filter(e => e.progress.status !== UNKNOWN_VALUE && e.progress.status.toLowerCase() !== 'unlocked')}\n              currentSystem={currentSystem}\n            />\n            <div className='section-heading'>\n              <h4 className='section-heading__text' style={{ marginTop: '1rem' }}>Locked Engineers</h4>\n            </div>\n            <ListEngineers\n              engineers={engineers.filter(e => e.progress.status === UNKNOWN_VALUE)}\n              currentSystem={currentSystem}\n            />\n          </>}\n      </Panel>\n    </Layout>\n  )\n}\n\nfunction ListEngineers ({ engineers, currentSystem }) {\n  return (\n    <>\n      <table className='table--animated'>\n        <tbody className='fx-fade-in'>\n          {engineers?.length === 0 &&\n            <tr>\n              <td className='text-muted'>None</td>\n            </tr>}\n          {engineers?.length > 0 && engineers.map(engineer =>\n            <tr\n              key={`engineer_${engineer.name}`}\n              tabIndex={2}\n              // className='table__row--highlighted'\n              onFocus={() => {\n                /// router.push({ pathname: '/eng/blueprints', query: { symbol: blueprint.symbol } })\n              }}\n            >\n              <td className={`text-primary text-center ${engineer.progress.status.toLowerCase() === 'unlocked' ? '' : 'text-muted'}`} style={{ width: '2rem' }}>\n                <i\n                  className='icon icarus-terminal-engineer'\n                  style={{ fontSize: '1.75rem', lineHeight: '2rem', width: '2rem', display: 'inline-block' }}\n                />\n              </td>\n              <td style={{ width: '18rem' }}>\n                <h4 className={engineer.progress.status.toLowerCase() === 'unlocked' ? 'text-info' : 'text-info text-muted'}>\n                  <CopyOnClick>{engineer.name}</CopyOnClick>\n                </h4>\n                {engineer.progress.rank === 0 && <>\n                  {engineer.progress.status === UNKNOWN_VALUE\n                    ? <p className='text-danger text-muted'>Locked</p>\n                    : <p className={engineer.progress.status.toLowerCase() === 'unlocked' ? 'text-primary' : 'text-primary text-muted'}>{engineer.progress.status}</p>}\n                </>}\n                {engineer.progress.rank > 0 &&\n                  <h4 className='text-secondary'>\n                    {[...Array(engineer.progress.rank)].map((j, i) =>\n                      <i\n                        style={{ fontSize: '1.5rem', width: '1.5rem', display: 'inline-block', marginRight: '0.1rem', marginTop: '.25rem' }}\n                        key={`${engineer.name}_rank_${i}`}\n                        className='icon icarus-terminal-engineering'\n                      />\n                    )}\n                  </h4>}\n              </td>\n              <td className='text-primary text-no-transform text-left hidden-small'>\n                {engineer.description}\n              </td>\n              <td className='text-right'>\n                <span className='text-right'>\n                  <CopyOnClick>{engineer.system.name}</CopyOnClick>\n                </span>\n                {currentSystem?.position &&\n                  <span className='text-muted text-no-transform'>\n                    <br />\n                    {distance(currentSystem.position, engineer.system.position).toLocaleString(undefined, { maximumFractionDigits: 0 })} Ly\n                  </span>}\n              </td>\n            </tr>\n          )}\n        </tbody>\n      </table>\n      <hr className='small' style={{ marginTop: 0 }} />\n    </>\n  )\n}\n"
  },
  {
    "path": "src/client/pages/eng/index.js",
    "content": "import Router from 'next/router'\nimport Layout from 'components/layout'\nimport Panel from 'components/panel'\nimport { useSocket } from 'lib/socket'\n\nexport default function EngineeringPage () {\n  const { connected, active } = useSocket()\n\n  if (typeof window !== 'undefined') Router.push('/eng/blueprints')\n\n  return (\n    <Layout connected={connected} active={active}>\n      <Panel layout='full-width' scrollable />\n    </Layout>\n  )\n}\n"
  },
  {
    "path": "src/client/pages/eng/manufactured-materials.js",
    "content": "import { useState, useEffect } from 'react'\nimport animateTableEffect from 'lib/animate-table-effect'\nimport { useSocket, sendEvent, eventListener } from 'lib/socket'\nimport { EngineeringPanelNavItems } from 'lib/navigation-items'\nimport Layout from 'components/layout'\nimport Panel from 'components/panel'\nimport Materials from 'components/panels/eng/materials'\n\nexport default function EngineeringMaterialsPage () {\n  const { connected, active, ready } = useSocket()\n  const [materials, setMaterials] = useState()\n\n  useEffect(animateTableEffect)\n  \n  useEffect(async () => {\n    if (!connected) return\n    setMaterials(await sendEvent('getMaterials'))\n  }, [connected, ready])\n\n  useEffect(() => eventListener('newLogEntry', async (log) => {\n    if (['Materials', 'MaterialCollected', 'MaterialDiscarded', 'MaterialTrade', 'EngineerCraft'].includes(log.event)) {\n      setMaterials(await sendEvent('getMaterials'))\n    }\n  }), [])\n\n  return (\n    <Layout connected={connected} active={active} ready={ready}>\n      <Panel layout='full-width' scrollable navigation={EngineeringPanelNavItems('Manufactured Materials')}>\n        <h2>Manufactured Materials</h2>\n        <h3 className='text-primary'>For engineering and synthesis</h3>\n        <p className='text-primary'>\n          Manufactured Materials are used in engineering and synthesis and can be exchanged at Manufactured Material Traders\n        </p>\n        {materials && <Materials materialType='Manufactured' materials={materials} />}\n      </Panel>\n    </Layout>\n  )\n}\n"
  },
  {
    "path": "src/client/pages/eng/raw-materials.js",
    "content": "import { useState, useEffect } from 'react'\nimport animateTableEffect from 'lib/animate-table-effect'\nimport { useSocket, sendEvent, eventListener } from 'lib/socket'\nimport { EngineeringPanelNavItems } from 'lib/navigation-items'\nimport Layout from 'components/layout'\nimport Panel from 'components/panel'\nimport Materials from 'components/panels/eng/materials'\n\nexport default function EngineeringMaterialsPage () {\n  const { connected, active, ready } = useSocket()\n  const [materials, setMaterials] = useState()\n\n  useEffect(animateTableEffect)\n  \n  useEffect(async () => {\n    if (!connected) return\n    setMaterials(await sendEvent('getMaterials'))\n  }, [connected, ready])\n\n  useEffect(() => eventListener('newLogEntry', async (log) => {\n    if (['Materials', 'MaterialCollected', 'MaterialDiscarded', 'MaterialTrade', 'EngineerCraft'].includes(log.event)) {\n      setMaterials(await sendEvent('getMaterials'))\n    }\n  }), [])\n\n  return (\n    <Layout connected={connected} active={active} ready={ready}>\n      <Panel layout='full-width' scrollable navigation={EngineeringPanelNavItems('Raw Materials')}>\n        <h2>Raw Materials</h2>\n        <h3 className='text-primary'>For engineering and synthesis</h3>\n        <p className='text-primary'>\n          Raw Materials are used in engineering and synthesis and can be exchanged at Raw Material Traders\n        </p>\n        {materials && <Materials materialType='Raw' materials={materials} />}\n      </Panel>\n    </Layout>\n  )\n}\n"
  },
  {
    "path": "src/client/pages/eng/xeno-materials.js",
    "content": "import { useState, useEffect } from 'react'\nimport animateTableEffect from 'lib/animate-table-effect'\nimport { useSocket, sendEvent, eventListener } from 'lib/socket'\nimport { EngineeringPanelNavItems } from 'lib/navigation-items'\nimport Layout from 'components/layout'\nimport Panel from 'components/panel'\nimport Materials from 'components/panels/eng/materials'\n\nexport default function EngineeringMaterialsPage () {\n  const { connected, active, ready } = useSocket()\n  const [materials, setMaterials] = useState()\n\n  useEffect(animateTableEffect)\n  \n  useEffect(async () => {\n    if (!connected) return\n    setMaterials(await sendEvent('getMaterials'))\n  }, [connected, ready])\n\n  useEffect(() => eventListener('newLogEntry', async (log) => {\n    if (['Materials', 'MaterialCollected', 'MaterialDiscarded', 'MaterialTrade', 'EngineerCraft'].includes(log.event)) {\n      setMaterials(await sendEvent('getMaterials'))\n    }\n  }), [])\n\n  return (\n    <Layout connected={connected} active={active} ready={ready}>\n      <Panel layout='full-width' scrollable navigation={EngineeringPanelNavItems('Xeno Materials')}>\n        <h2>Xeno Materials</h2>\n        <h3 className='text-primary'>Guardian and Thargoid Technology</h3>\n        <p className='text-primary'>\n          Alien technology can be used in synthesis and exchanged with Technology Brokers\n        </p>\n        {materials && <Materials materialType='Xeno' materials={materials} />}\n      </Panel>\n    </Layout>\n  )\n}\n"
  },
  {
    "path": "src/client/pages/index.js",
    "content": "import Router from 'next/router'\nimport Layout from 'components/layout'\nimport Panel from 'components/panel'\nimport { useSocket } from 'lib/socket'\n\nexport default function IndexPage () {\n  const { connected, active } = useSocket()\n\n  // Client side redirect\n  if (typeof window !== 'undefined') Router.push('/nav/map')\n\n  return (\n    <Layout connected={connected} active={active}>\n      <Panel layout='full-width' scrollable />\n    </Layout>\n  )\n}\n"
  },
  {
    "path": "src/client/pages/launcher.js",
    "content": "import { useState, useEffect } from 'react'\nimport { formatBytes, eliteDateTime } from 'lib/format'\nimport { newWindow, checkForUpdate, installUpdate, openReleaseNotes, openTerminalInBrowser } from 'lib/window'\nimport { useSocket, eventListener, sendEvent } from 'lib/socket'\nimport Loader from 'components/loader'\nimport packageJson from '../../../package.json'\n\nconst defaultloadingStats = {\n  loadingComplete: false,\n  loadingInProgress: false,\n  numberOfFiles: 0,\n  numberOfLogLines: 0,\n  numberOfEventsImported: 0,\n  logSizeInBytes: 0,\n  loadingTime: 0\n}\n\nexport default function IndexPage () {\n  const { connected } = useSocket()\n  const [hostInfo, setHostInfo] = useState()\n  const [update, setUpdate] = useState()\n  const [downloadingUpdate, setDownloadingUpdate] = useState(false)\n  const [loadingProgress, setLoadingProgress] = useState(defaultloadingStats)\n\n  // Display URL (IP address/port) to connect from a browser\n  useEffect(async () => setHostInfo(await sendEvent('hostInfo')), [])\n\n  useEffect(async () => {\n    const message = await sendEvent('getLoadingStatus')\n    setLoadingProgress(message)\n    if (message?.loadingComplete === true) {\n      document.getElementById('loadingProgressBar').style.opacity = 0\n    }\n\n    setTimeout(async () => {\n      const update = await checkForUpdate()\n      setUpdate(update)\n    }, 3000)\n  }, [connected])\n\n  useEffect(() => eventListener('loadingProgress', (message) => {\n    setLoadingProgress(message)\n    if (message?.loadingComplete === true) {\n      setTimeout(() => { document.getElementById('loadingProgressBar').style.opacity = 0 }, 500)\n    }\n  }), [])\n\n  return (\n    <>\n      <Loader visible={!connected} />\n      <style dangerouslySetInnerHTML={{\n        __html: '.notification { visibility: hidden; }'\n      }}\n      />\n      <div style={{ padding: '.5rem 1rem', opacity: connected ? 1 : 0, zoom: '1.2', fontWeight: 'bold' }}>\n        <h1 className='text-info' style={{ marginBottom: '.5rem' }}>\n          <i className='icon icarus-terminal-logo' style={{ position: 'relative', top: '.75rem' }} />ICARUS\n        </h1>\n        <span className='launcher-title'>\n          <h3 className='text-primary'>ICARUS Terminal</h3>\n          <h4 className='text-primary text-muted'>Version {packageJson.version}</h4>\n        </span>\n        {update && update.isUpgrade &&\n          <div className='fx-fade-in'>\n            <div>\n              <h4 style={{ marginTop: '1.5rem', fontSize: '1.2rem' }} className='text-info'>Update Released</h4>\n              <span\n                target='_blank'\n                className='text-link'\n                onClick={() => openReleaseNotes()}\n                style={{ margin: '0 0 1rem 0', display: 'inline-block', fontWeight: 'normal', fontSize: '1.1rem' }} rel='noreferrer'\n              >\n                <span className='text-link-text'>Version {update?.productVersion} release notes</span>\n              </span>\n            </div>\n            {!downloadingUpdate &&\n              <button\n                onClick={() => {\n                  setDownloadingUpdate(true)\n                  installUpdate()\n                }}\n              ><i className='icon icarus-terminal-download' /> Install Update\n              </button>}\n            {downloadingUpdate && <p className='text-primary text-blink-slow'>\n              <i style={{position: 'relative', top: '.2rem', marginRight: '.2rem'}} className='icon icarus-terminal-download' /> Downloading update...\n            </p>}\n          </div>}\n        <div style={{ position: 'absolute', bottom: '.5rem', left: '1rem' }}>\n          <p className='text-muted'>Connect from a browser on</p>\n          {hostInfo?.urls?.[0] &&\n            <p>\n              <span className='text-info' onClick={() => openTerminalInBrowser()}>\n                {hostInfo.urls[0]}\n              </span>\n            </p>}\n        </div>\n        <div\n          className='scrollable text-right text-uppercase' style={{\n            position: 'absolute',\n            top: '1rem',\n            right: '1rem',\n            bottom: '5rem',\n            width: '19rem',\n            background: 'var(--color-background-panel-translucent)',\n            fontSize: '1.15rem',\n            padding: '0 .5rem'\n          }}\n        >\n          <div className={loadingProgress.loadingComplete ? 'text-muted' : ''}>\n            {/* <p>Scanned {loadingProgress.numberOfFiles.toLocaleString()} log files</p> */}\n            <p>Imported {formatBytes(loadingProgress.logSizeInBytes)} of data</p>\n            <p>{loadingProgress.numberOfLogLines.toLocaleString()} recent log entries</p>\n            {/* <p>{loadingProgress.numberOfEventsImported.toLocaleString()} events imported</p> */}\n            {loadingProgress.loadingComplete === true && <p>Completed in {(loadingProgress.loadingTime / 1000).toFixed(2)} seconds</p>}\n            {loadingProgress.loadingComplete === true && loadingProgress.numberOfLogLines > 0 && <p>Last activity {eliteDateTime(loadingProgress.lastActivity).dateTime}</p>}\n            {loadingProgress.loadingComplete === true && loadingProgress.numberOfLogLines === 0 && <p>No recent activity found</p>}\n          </div>\n          {loadingProgress.loadingComplete === true\n            ? <p>Ready <span className='text-blink-slow'>_</span></p>\n            : <p>Loading <span className='text-blink-slow'>_</span></p>}\n          <div style={{ position: 'absolute', bottom: '.5rem', left: '.5rem', right: '.5rem' }}>\n            <progress id='loadingProgressBar' value={loadingProgress.numberOfEventsImported} max={loadingProgress.numberOfLogLines} />\n          </div>\n        </div>\n        <div style={{ position: 'absolute', bottom: '1rem', right: '1rem' }}>\n          <button style={{ width: '20rem' }} onClick={newWindow}>New Terminal</button>\n        </div>\n      </div>\n    </>\n  )\n}\n"
  },
  {
    "path": "src/client/pages/log.js",
    "content": "import { useState, useEffect } from 'react'\nimport animateTableEffect from 'lib/animate-table-effect'\nimport Layout from 'components/layout'\nimport Panel from 'components/panel'\nimport LogListPanel from 'components/panels/log/log-list-panel'\nimport LogInspectorPanel from 'components/panels/log/log-inspector-panel'\nimport { useSocket, eventListener, sendEvent } from 'lib/socket'\n\nexport default function LogPage () {\n  const { connected, active, ready } = useSocket()\n  const [componentReady, setComponentReady] = useState(false)\n  const [logEntries, setLogEntries] = useState([])\n  const [selectedLogEntry, setSelectedLogEntry] = useState()\n\n  useEffect(animateTableEffect)\n\n  useEffect(async () => {\n    if (!connected) return\n    setComponentReady(false)\n    const newLogEntries = await sendEvent('getLogEntries', { count: 100 })\n    if (Array.isArray(newLogEntries) && newLogEntries.length > 0) {\n      setLogEntries(newLogEntries)\n      // Only select a log entry if one isn't set already\n      setSelectedLogEntry(prevState => prevState || newLogEntries[0])\n    }\n    setComponentReady(true)\n  }, [connected, ready])\n\n  useEffect(() => eventListener('newLogEntry', async (newLogEntry) => {\n    setLogEntries(prevState => [newLogEntry, ...prevState])\n    // If no log row is currently selected (focus is not on a table row) then\n    // display the most recent log - otherwise leaves it displaying whatever is\n    // currently selected.\n    if (document.activeElement.tagName !== 'TR') {\n      setSelectedLogEntry(newLogEntry)\n    }\n  }), [])\n\n  return (\n    <Layout connected={connected} active={active} ready={ready && componentReady}>\n      <Panel layout='left-half' scrollable>\n        <LogListPanel logEntries={logEntries} setSelectedLogEntry={setSelectedLogEntry} />\n        {ready && logEntries.length === 0 && <p style={{ margin: '2rem 0' }} className='text-center text-muted'>No recent log entries</p>}\n      </Panel>\n      <Panel layout='right-half' scrollable>\n        <LogInspectorPanel logEntry={selectedLogEntry} />\n      </Panel>\n    </Layout>\n  )\n}\n"
  },
  {
    "path": "src/client/pages/nav/index.js",
    "content": "import Router from 'next/router'\nimport Layout from 'components/layout'\nimport Panel from 'components/panel'\nimport { useSocket } from 'lib/socket'\n\nexport default function NavPage () {\n  const { connected, active } = useSocket()\n\n  // Client side redirect to default map view\n  if (typeof window !== 'undefined') Router.push('/nav/map')\n\n  return (\n    <Layout connected={connected} active={active}>\n      <Panel layout='full-width' scrollable />\n    </Layout>\n  )\n}\n"
  },
  {
    "path": "src/client/pages/nav/list.js",
    "content": "import { useState, useEffect } from 'react'\nimport animateTableEffect from 'lib/animate-table-effect'\nimport { useRouter } from 'next/router'\nimport { useSocket, sendEvent, eventListener } from 'lib/socket'\nimport { NavPanelNavItems } from 'lib/navigation-items'\nimport Layout from 'components/layout'\nimport Panel from 'components/panel'\nimport NavigationListPanel from 'components/panels/nav/navigation-list-panel'\nimport NavigationInspectorPanel from 'components/panels/nav/navigation-inspector-panel'\n\nexport default function NavListPage () {\n  const router = useRouter()\n  const { query } = router\n  const { connected, active, ready } = useSocket()\n  const [componentReady, setComponentReady] = useState(false)\n  const [system, setSystem] = useState()\n  const [systemObject, setSystemObject] = useState()\n  const [helpVisible, setHelpVisible] = useState(false)\n  \n  useEffect(animateTableEffect)\n\n  const getSystem = async (systemName, useCache = true) => {\n    const newSystem = await sendEvent('getSystem', { name: systemName, useCache })\n    if (!newSystem) return\n    setSystemObject(null)\n    setSystem(newSystem)\n  }\n\n  const search = async (searchInput) => {\n    const newSystem = await sendEvent('getSystem', { name: searchInput })\n    if (!newSystem) return\n    setSystemObject(null)\n    setSystem(newSystem)\n  }\n\n  const setSystemObjectByName = (name) => {\n    if (!name) setSystemObject(null)\n    const el = document.querySelector(`[data-system-object-name=\"${name}\" i]`)\n    if (el) {\n      el.focus()\n    } else {\n      const newSystemObject = system.objectsInSystem.filter(child => child.name.toLowerCase() === name?.toLowerCase())[0]\n      setSystemObject(newSystemObject)\n    }\n  }\n\n  useEffect(async () => {\n    if (!connected || !router.isReady) return\n\n    const newSystem = await sendEvent('getSystem', query.system ? { name: query.system, useCache: true } : null)\n    if (newSystem) {\n      setSystem(newSystem)\n    } else {\n      // If system lookup fails (i.e. no game data), fallback to Sol system\n      setSystem(await sendEvent('getSystem', { name: 'Sol', useCache: true }))\n    }\n\n    if (query.selected) {\n      const newSystemObject = newSystem.objectsInSystem.filter(child => child.name.toLowerCase() === query.selected.toLowerCase())[0]\n      if (newSystemObject) {\n        const el = document.querySelector(`[data-system-object-name=\"${newSystemObject.name}\" i]`)\n        if (el) el.focus()\n      }\n    }\n    setComponentReady(true)\n  }, [connected, ready, router.isReady])\n\n  useEffect(() => eventListener('newLogEntry', async (log) => {\n    if (['Location', 'FSDJump'].includes(log.event)) {\n      const newSystem = await sendEvent('getSystem', { useCache: false })\n      if (!newSystem) return // If no result, don't update map\n      setSystemObject(null) // Clear selected object\n      setSystem(newSystem)\n    }\n    if (['FSSDiscoveryScan', 'FSSAllBodiesFound', 'SAASignalsFound', 'FSSBodySignals', 'Scan'].includes(log.event)) {\n      const newSystem = await sendEvent('getSystem', { name: system?.name, useCache: false })\n      // Update system object so NavigationInspectorPanel is also updated\n      if (newSystem) {\n        if (systemObject?.name) {\n          const newSystemObject = newSystem.objectsInSystem.filter(child => child.name.toLowerCase() === systemObject.name?.toLowerCase())[0]\n          setSystemObject(newSystemObject)\n        }\n        setSystem(newSystem)\n      }\n    }\n  }), [system, systemObject])\n\n  useEffect(() => {\n    if (!router.isReady) return\n    const q = { ...query }\n    if (system) q.system = system?.name?.toLowerCase()\n    if (systemObject) {\n      q.selected = systemObject?.name?.toLowerCase()\n    } else {\n      if (q.selected) delete q.selected\n    }\n    router.push({ query: q }, undefined, { shallow: true })\n  }, [system, systemObject, router.isReady])\n\n  return (\n    <>\n      <div className='modal-dialog__background' style={{ opacity: helpVisible ? 1 : 0, visibility: helpVisible ? 'visible' : 'hidden' }} onClick={() => setHelpVisible(!helpVisible)} />\n      <div className='modal-dialog' style={{ opacity: helpVisible ? 1 : 0, visibility: helpVisible ? 'visible' : 'hidden' }}>\n        <h2 className='modal-dialog__title'>Help</h2>\n        <hr />\n        <div className='modal-dialog__panel scrollable text-primary navigation-panel__legend'>\n          <h3>Exploration Icons</h3>\n          <p className='text-info'>\n            Icons indicating interesting features of planets in the system.\n          </p>\n          <div className='text-uppercase'>\n            <p className='text-secondary'>\n              <i className='icon icarus-terminal-planet-lander text-secondary' /> Landable\n            </p>\n            <p>\n              <i className='icon icarus-terminal-planet-atmosphere' /> Atmosphere\n            </p>\n            <p>\n              <i className='icon icarus-terminal-planet-volcanic' /> Volcanic activity\n            </p>\n            <p>\n              <i className='icon icarus-terminal-planet-terraformable' /> Terraformable\n            </p>\n            <p>\n              <i className='icon icarus-terminal-planet-earthlike' /> Earthlike\n            </p>\n            <p>\n              <i className='icon icarus-terminal-planet-water-world' /> Water World\n            </p>\n            <p>\n              <i className='icon icarus-terminal-planet-ammonia-world' /> Ammonia World\n            </p>\n            <p>\n              <i className='icon icarus-terminal-planet-high-metal-content' /> High metal content / Metal rich\n            </p>\n            <p>\n              <i className='icon icarus-terminal-planet-gas-giant' /> Gas Giant\n            </p>\n            <p>\n              <i className='icon icarus-terminal-plant' /> Biological signal\n            </p>\n            <p>\n              <i className='icon icarus-terminal-planet-water-based-life' /> Water based life\n            </p>\n            <p>\n              <i className='icon icarus-terminal-planet-ammonia-based-life' /> Ammonia based life\n            </p>\n            <p>\n              <i className='icon icarus-terminal-planet-ringed' /> Ringed body\n            </p>\n            <p>\n              <i className='text-success icon icarus-terminal-credits' /> High scan value\n            </p>\n          </div>\n        </div>\n        <div className='modal-dialog__footer'>\n          <hr style={{ margin: '1rem 0 .5rem 0' }} />\n          <button className='float-right' onClick={() => setHelpVisible(false)}>\n            Close\n          </button>\n        </div>\n      </div>\n      <Layout connected={connected} active={active} ready={ready} loader={!componentReady}>\n        <Panel layout='full-width' navigation={NavPanelNavItems('List', query)} search={search} exit={system?.isCurrentLocation === false ? () => getSystem() : null}>\n          <NavigationListPanel system={system} systemObject={systemObject} setSystemObject={setSystemObject} showHelp={() => setHelpVisible(true)} />\n          <NavigationInspectorPanel systemObject={systemObject} setSystemObjectByName={setSystemObjectByName} />\n        </Panel>\n      </Layout>\n    </>\n  )\n}\n"
  },
  {
    "path": "src/client/pages/nav/map.js",
    "content": "import { useState, useEffect } from 'react'\nimport { useRouter } from 'next/router'\nimport { useSocket, sendEvent, eventListener } from 'lib/socket'\nimport { NavPanelNavItems } from 'lib/navigation-items'\nimport Layout from 'components/layout'\nimport Panel from 'components/panel'\nimport NavigationSystemMapPanel from 'components/panels/nav/navigation-system-map-panel'\nimport NavigationInspectorPanel from 'components/panels/nav/navigation-inspector-panel'\n\nexport default function NavMapPage () {\n  const router = useRouter()\n  const { query } = router\n  const { connected, active, ready } = useSocket()\n  const [componentReady, setComponentReady] = useState(false)\n  const [system, setSystem] = useState()\n  const [systemObject, setSystemObject] = useState()\n  const [cmdrStatus, setCmdrStatus] = useState()\n  const [rescanInProgress, setRescanInProgress] = useState(false)\n\n  const search = async (searchInput) => {\n    const newSystem = await sendEvent('getSystem', { name: searchInput })\n    if (!newSystem) return\n    setSystemObject(null)\n    setSystem(newSystem)\n  }\n\n  const getSystem = async (systemName, useCache = true) => {\n    const newSystem = await sendEvent('getSystem', { name: systemName, useCache })\n    if (!newSystem) return\n    setSystemObject(null)\n    setSystem(newSystem)\n  }\n\n  const rescanSystem = async () => {\n    setRescanInProgress(true)\n    const newSystem = await sendEvent('getSystem', { name: system?.name, useCache: false })\n    setRescanInProgress(false)\n    if (!newSystem) return\n    setSystem(newSystem)\n  }\n\n  const setSystemObjectByName = (name) => {\n    const el = document.querySelector(`[data-system-object-name=\"${name}\" i]`)\n    if (el) {\n      el.focus()\n    } else {\n      const newSystemObject = system.objectsInSystem.filter(child => child.name.toLowerCase() === name?.toLowerCase())[0]\n      setSystemObject(newSystemObject)\n    }\n  }\n\n  useEffect(async () => {\n    if (!connected || !router.isReady) return\n\n    setCmdrStatus(await sendEvent('getCmdrStatus'))\n\n    const newSystem = await sendEvent('getSystem', query.system ? { name: query.system, useCache: true } : { useCache: true })\n\n    if (newSystem) {\n      setSystem(newSystem)\n    } else {\n      // If system lookup fails (i.e. no game data), fallback to Sol system\n      setSystem(await sendEvent('getSystem', { name: 'Sol', useCache: true }))\n    }\n\n    if (query.selected) {\n      const newSystemObject = newSystem.objectsInSystem.filter(child => child.name.toLowerCase() === query.selected.toLowerCase())[0]\n      if (!newSystemObject) return\n      setSystemObject(newSystemObject)\n      // TODO Highlight body on map (or, if ground facility, the nearest planet)\n      // setTimeout(() => {\n      //   const el = document.querySelector(`[data-system-object-name=\"${newSystemObject?.name}\" i]`)\n      //   if (el) el.focus()\n      // }, 750) // Delay to allow map to render\n    }\n\n    setComponentReady(true)\n  }, [connected, ready, router.isReady])\n\n  useEffect(() => eventListener('newLogEntry', async (log) => {\n    if (['Location', 'FSDJump'].includes(log.event)) {\n      setCmdrStatus(await sendEvent('getCmdrStatus'))\n      const newSystem = await sendEvent('getSystem', { useCache: false })\n      if (!newSystem) return // If no result, don't update map\n      setSystemObject(null) // Clear selected object\n      setSystem(newSystem)\n    }\n    if (['FSSDiscoveryScan', 'FSSAllBodiesFound', 'SAASignalsFound', 'FSSBodySignals', 'Scan'].includes(log.event)) {\n      const newSystem = await sendEvent('getSystem', { name: system?.name, useCache: false })\n      // Update system object so NavigationInspectorPanel is also updated\n      if (newSystem) {\n        if (systemObject?.name) {\n          const newSystemObject = newSystem.objectsInSystem.filter(child => child.name.toLowerCase() === systemObject.name?.toLowerCase())[0]\n          setSystemObject(newSystemObject)\n        }\n        setSystem(newSystem)\n      }\n    }\n  }), [system, systemObject])\n\n  useEffect(() => eventListener('gameStateChange', async (log) => {\n    //setCmdrStatus(await sendEvent('getCmdrStatus'))\n  }))\n  \n\n  useEffect(() => {\n    if (!router.isReady) return\n    const q = { ...query }\n    if (system) q.system = system?.name?.toLowerCase()\n    if (systemObject) {\n      q.selected = systemObject?.name?.toLowerCase()\n    } else {\n      if (q.selected) delete q.selected\n    }\n    router.push({ query: q }, undefined, { shallow: true })\n  }, [system, systemObject, router.isReady])\n\n  return (\n    <Layout connected={connected} active={active} ready={ready} loader={!componentReady}>\n      <Panel layout='full-width' navigation={NavPanelNavItems('Map', query)} search={search} exit={system?.isCurrentLocation === false ? () => getSystem() : null}>\n        <NavigationSystemMapPanel system={system} systemObject={systemObject} setSystemObject={setSystemObject} getSystem={getSystem} cmdrStatus={cmdrStatus} rescanSystem={rescanSystem} rescanInProgress={rescanInProgress}/>\n        <NavigationInspectorPanel systemObject={systemObject} setSystemObjectByName={setSystemObjectByName} />\n      </Panel>\n    </Layout>\n  )\n}\n"
  },
  {
    "path": "src/client/pages/nav/route.js",
    "content": "import { useState, useEffect, useRef } from 'react'\nimport { useRouter } from 'next/router'\nimport animateTableEffect from 'lib/animate-table-effect'\nimport { useSocket, sendEvent, eventListener } from 'lib/socket'\nimport { NavPanelNavItems } from 'lib/navigation-items'\nimport Layout from 'components/layout'\nimport Panel from 'components/panel'\nimport CopyOnClick from 'components/copy-on-click'\n\nexport default function NavListPage () {\n  const router = useRouter()\n  const { query } = router\n  const { connected, active, ready } = useSocket()\n  const [componentReady, setComponentReady] = useState(false)\n  const [scrolled, setScrolled] = useState(false)\n  const [navRoute, setNavRoute] = useState()\n  const [system, setSystem] = useState()\n  const currentSystemRef = useRef(null)\n\n  useEffect(animateTableEffect)\n  \n  // Scroll to current route once, on view load\n  useEffect(() => {\n    if (!scrolled && currentSystemRef?.current) {\n      currentSystemRef?.current?.scrollIntoView()\n      setScrolled(true)\n    }\n  }, [navRoute])\n\n  const search = async (searchInput) => {\n    router.push({ pathname: '/nav/map', query: { system: searchInput.toLowerCase() } })\n  }\n\n  useEffect(async () => {\n    if (!connected || !router.isReady) return\n    const [newSystem, newNavRoute] = await Promise.all([\n      sendEvent('getSystem', query.system ? { name: query.system, useCache: true } : null),\n      sendEvent('getNavRoute')\n    ])\n    if (newSystem) setSystem(newSystem)\n    if (newNavRoute) setNavRoute(newNavRoute)\n    setComponentReady(true)\n  }, [connected, ready, router.isReady])\n\n  useEffect(() => eventListener('newLogEntry', async (log) => {\n    if (['Location', 'FSDJump'].includes(log.event)) {\n      const newNavRoute = await sendEvent('getNavRoute')\n      if (newNavRoute) setNavRoute(newNavRoute)\n    }\n  }))\n\n  useEffect(() => eventListener('gameStateChange', async (log) => {\n    const newNavRoute = await sendEvent('getNavRoute')\n    // TODO Check destination system and only update navroute if different\n    // to current destination and if it is then execute setScrolled(false) so\n    // that the route scroll position will update\n    if (newNavRoute) setNavRoute(newNavRoute)\n  }))\n\n  useEffect(() => {\n    if (!router.isReady) return\n    const q = { ...query }\n    if (system) {\n      q.system = system?.name?.toLowerCase()\n      if (q.selected) delete q.selected\n    }\n    router.push({ query: q }, undefined, { shallow: true })\n  }, [system, router.isReady])\n\n  return (\n    <Layout connected={connected} active={active} ready={ready} loader={!componentReady}>\n      <Panel scrollable layout='full-width' navigation={NavPanelNavItems('Route', query)} search={search}>\n        <h2>Route Plan</h2>\n        <table>\n          <tbody>\n            <tr style={{ background: 'none' }}>\n              <td style={{ width: '50%', padding: '.5rem 0 0 0' }}>\n                {navRoute?.currentSystem &&\n                  <>\n                    <h3 className='text-primary'>\n                      <i className='icarus-terminal-location-filled text-secondary' style={{ position: 'relative', top: '.25rem', marginRight: '.5rem' }} />\n                      Location\n                    </h3>\n                    <h2 className='navigation-panel__route-heading text-info'>\n                      <CopyOnClick>{navRoute.currentSystem?.name}</CopyOnClick>\n                    </h2>\n                  </>}\n              </td>\n              <td style={{ width: '50%', padding: '.5rem 0 0 0' }} className='text-right'>\n                {navRoute?.destination &&\n                  <>\n                    <h3 className='text-primary'>\n                      <i className='icarus-terminal-route' style={{ position: 'relative', top: '.25rem', marginRight: '.5rem' }} />\n                      Destination\n                    </h3>\n                    <h2 className='navigation-panel__route-heading text-info text-right'>\n                      {navRoute?.destination?.distance > 0\n                        ? <CopyOnClick>{navRoute?.destination?.system}</CopyOnClick>\n                        : <span className='text-muted'>—</span>}\n                    </h2>\n                  </>}\n              </td>\n            </tr>\n          </tbody>\n        </table>\n        <hr style={{ marginBottom: 0 }} />\n        {navRoute?.route?.length > 0 &&\n          <>\n            <div className='scrollable' style={{ position: 'fixed', top: '20rem', bottom: '4.5rem', left: '5rem', right: '1rem' }}>\n              <table className='navigation-panel__route-plan table--animated table--interactive'>\n                <tbody className='fx-fade-in'>\n                  {navRoute.route.map((route, i) => {\n                    const icon = route?.isCurrentSystem === true ? 'icarus-terminal-location-filled' : 'icarus-terminal-star'\n                    const previouslyVistedSystem = navRoute?.inSystemOnRoute && (navRoute?.route?.length - navRoute.jumpsToDestination) > (i + 1)\n                    return (\n                      <tr\n                        ref={route?.isCurrentSystem === true ? currentSystemRef : null}\n                        key={`nav-route_${route.system}`}\n                        className={`${route?.isCurrentSystem === true ? 'table__row--highlighted' : 'table__row--highlight-primary-hover'}`}\n                        onClick={() => router.push({ pathname: '/nav/map', query: { system: route?.system?.toLowerCase() } })}\n                        style={{top: '-.5rem', position: 'relative'}}\n                      >\n                        <td className='text-center' style={{ width: '3rem', paddingLeft: '.5rem', paddingRight: '.5rem' }}>\n                          <span className={previouslyVistedSystem ? 'text-muted' : ''}>{i + 1}</span>\n                        </td>\n                        <td style={{ paddingLeft: '3.5rem' }}>\n                          <div style={{ position: 'relative' }} className={previouslyVistedSystem ? 'text-muted' : ''}>\n                            <i style={{ position: 'absolute', top: '.5rem', left: '-3rem', fontSize: '2rem' }} className={`icon ${icon} visible-medium`} />\n                            <i style={{ position: 'absolute', top: '.4rem', left: '-3rem', fontSize: '2rem' }} className={`icon ${icon} hidden-medium`} />\n                            <span className='text-info'>{route.system}</span>\n                            <br/>\n                            {route.numberOfStars > 0 && <span className='text-no-wrap'>\n                              <span style={{marginRight: '1rem'}}>\n                                <i className='icon icarus-terminal-star' style={{ position: 'relative', top: '.35rem', fontSize: '1.5rem'}}/> {route.numberOfStars}\n                                <span className='hidden-small'> {route.numberOfStars === 1 ? 'Star' : 'Stars'}</span>\n                              </span>\n                              {route.numberOfPlanets > 0 && <>\n                                <i className='icon icarus-terminal-planet' style={{ position: 'relative', top: '.35rem', fontSize: '1.5rem'}}/> {route.numberOfPlanets}\n                                <span className='hidden-small'> {route.numberOfPlanets === 1 ? 'Planet' : 'Planets'}</span>\n                              </>}\n                            </span>}\n                            {route.numberOfStars < 1 && <>\n                              <span className='text-muted'>Unknown System</span>\n                            </>}\n                          </div>\n                        </td>\n                        <td className='text-no-wrap hidden-small hidden-medium'>\n                            <span className='text-muted'>\n                              {route.starClass.match(/^[DNH]/)\n                                ? route.starClass.match(/^D/)\n                                    ? 'White Dwarf'\n                                    : route.starClass.match(/^N/)\n                                      ? 'Neutron Star'\n                                      : 'Black Hole'\n                                : `${route.starClass} Class`\n                              }\n                              {route.starClass.match(/^[OBAFGKM]/) ? <><br/>Main Sequence</> : ''}\n                            </span>\n                        </td>\n                        <td className='text-right' style={{ width: '1rem', paddingLeft: '.5rem', paddingRight: '.5rem' }}>\n                          <span className={previouslyVistedSystem ? 'text-info text-muted' : 'text-info'}>\n                            {route?.isExplored === false && <>\n                              <i className='icarus-terminal-scan' style={{ position: 'relative', fontSize: '2rem', top: '.25rem', marginRight: '.5rem' }}/>\n                              <br className='visible-small'/>\n                            </>}\n                          </span>\n                          <span className={previouslyVistedSystem ? 'text-muted' : ''}>\n                            {route.starClass.match(/^[OBAFGKM]/)\n                              ? <i className='icarus-terminal-fuel' style={{ position: 'relative', fontSize: '2rem', top: '.25rem', marginRight: '.5rem' }} />\n                              : route.starClass.match(/^[DNH]/) \n                                ? <i className='text-danger icarus-terminal-warning' style={{ position: 'relative', fontSize: '2rem', top: '.25rem', marginRight: '.5rem' }} />\n                                : ''}\n                            </span>\n                        </td>\n                        <td className='text-right' style={{ width: '1rem' }}>\n                          <span className={previouslyVistedSystem ? 'text-muted' : ''}>\n                            {route?.isCurrentSystem === false && <span className=' text-no-wrap text-no-transform'>{route.distance.toLocaleString(undefined, { maximumFractionDigits: 2 })} Ly</span>}\n                            {route?.isCurrentSystem === true && <span className='text-muted'>Current System</span>}\n                          </span>\n                        </td>\n                        <td className='text-center' style={{ width: '1rem' }}>\n                          <i className='icon icarus-terminal-chevron-right' style={{ fontSize: '1rem' }} />\n                        </td>\n                      </tr>\n                    )\n                  })}\n                </tbody>\n              </table>\n            </div>\n          </>}\n          <div className='text-primary text-uppercase text-center' style={{height: '2F.75rem', fontSize: '1.5rem', position: 'fixed', bottom: '.8rem', left: '5rem', right: '1rem', marginBottom: '.5rem' }}>\n            <hr className='small' style={{ marginTop: 0, marginBottom: '1rem' }} />\n            {navRoute?.route?.length > 0 && navRoute?.jumpsToDestination > 0 &&\n              <>\n                {navRoute.inSystemOnRoute && <>\n                  {navRoute.jumpsToDestination === 1 ? `${navRoute.jumpsToDestination} jump` : `${navRoute.jumpsToDestination} jumps`}\n                  <span className='text-muted'> / </span>\n                </>}\n                {navRoute.destination.distance.toLocaleString(undefined, { maximumFractionDigits: 2 })} Ly\n                {' '}<span className='text-muted hidden-small'>to destination</span>\n              </>}\n            {navRoute?.route?.length > 0 && navRoute?.jumpsToDestination === 0 &&\n              <>Arrived at destination</>}\n        </div>\n        {navRoute?.route?.length === 0 &&\n          <div className='text-center-both' style={{zIndex: '30', pointerEvents: 'none' }}>\n            <h2 className='text-primary'>\n              NO ROUTE SET<br />\n              <span className='text-muted' style={{ fontSize: '1.5rem' }}>Use galaxy map to plot route</span>\n            </h2>\n          </div>\n        }\n      </Panel>\n    </Layout>\n  )\n}\n"
  },
  {
    "path": "src/client/pages/ship/cargo.js",
    "content": "import { useState, useEffect } from 'react'\nimport animateTableEffect from 'lib/animate-table-effect'\nimport { useSocket, sendEvent, eventListener } from 'lib/socket'\nimport { ShipPanelNavItems } from 'lib/navigation-items'\nimport { eliteDateTime } from 'lib/format'\nimport Layout from 'components/layout'\nimport Panel from 'components/panel'\nimport CopyOnClick from 'components/copy-on-click'\n\nexport default function ShipCargoPage () {\n  const { connected, active, ready } = useSocket()\n  const [ship, setShip] = useState()\n  const [cargo, setCargo] = useState(null)\n\n  useEffect(animateTableEffect)\n\n  useEffect(async () => {\n    if (!connected) return\n    const newShip = await sendEvent('getShipStatus')\n    setShip(newShip)\n    setCargo(newShip?.cargo?.inventory ?? [])\n  }, [connected, ready])\n\n  useEffect(() => eventListener('gameStateChange', async () => {\n    const newShip = await sendEvent('getShipStatus')\n    setShip(newShip)\n    setCargo(newShip?.cargo?.inventory ?? [])\n  }), [])\n\n  useEffect(() => eventListener('newLogEntry', async () => {\n    const newShip = await sendEvent('getShipStatus')\n    setShip(newShip)\n    setCargo(newShip?.cargo?.inventory ?? [])\n  }), [])\n\n  return (\n    <Layout connected={connected} active={active} ready={ready}>\n      <Panel layout='full-width' scrollable navigation={ShipPanelNavItems('Cargo')}>\n        {ship &&\n          <>\n            <h2>Cargo Manifest</h2>\n            <h4 className='text-primary' style={{ overflow: 'auto' }}>\n              <span className='float-left' style={{ display: 'inline-block', padding: '.25rem .5rem .25rem 0' }}>\n                <span className={`${ship.cargo.count > 0 ? '' : 'text-muted'}`}>{ship.cargo.count ?? 0}</span>\n                <span className='text-muted'>/{ship.cargo.capacity ?? 0}</span>\n              </span>\n              <progress\n                style={{ marginTop: '.5rem', height: '1.2rem', display: 'inline-block', width: '12rem', float: 'left' }}\n                value={ship.cargo.count ?? 0}\n                max={ship.cargo.capacity ?? 0}\n                className='float-left'\n              />\n              <span className='float-left' style={{ display: 'inline-block', padding: '.25rem .5rem' }}>\n                {ship.cargo.count > 0 && ship.cargo.count < ship.cargo.capacity && <span className='text-muted'> {ship.cargo.capacity - ship.cargo.count} free</span>}\n              </span>\n            </h4>\n            <hr style={{ margin: '.5rem 0 0 0' }} />\n            {ship && cargo && cargo.length === 0 && <p className='text-primary text-muted text-uppercase text-center' style={{ padding: '1rem 0' }}>Cargo hold is empty</p>}\n            {cargo && cargo.length > 0 &&\n              <table className='table--animated fx-fade-in'>\n                <thead>\n                  <tr>\n                    <th style={{ width: '3rem' }} className='text-right'>#</th>\n                    <th>Cargo</th>\n                    <th>Description</th>\n                  </tr>\n                </thead>\n                <tbody>\n                  {cargo.map((item, i) =>\n                    <tr className='table__row--large' key={`${ship.name}_cargo_${i}_${item.name}`}>\n                      <td style={{ width: '3rem' }} className='text-right'>{item.count}</td>\n                      <td><CopyOnClick>{item.name}</CopyOnClick></td>\n                      <td>\n                        {item.mission !== false && <span className='text-secondary'>Mission Critical </span>}\n                        {item.stolen !== false && <span className='text-danger'>Stolen </span>}\n                        <span className='text-muted'>{item.description}</span>\n                      </td>\n                    </tr>\n                  )}\n                </tbody>\n              </table>}\n            <hr className='small' style={{ marginTop: 0 }} />\n            {(!ship.onBoard) &&\n              <p className='text-muted text-primary text-center' style={{ margin: '1rem 0' }}>\n                Cargo manifest as of {eliteDateTime(ship?.timestamp).dateTime}\n              </p>}\n          </>}\n      </Panel>\n    </Layout>\n  )\n}\n"
  },
  {
    "path": "src/client/pages/ship/index.js",
    "content": "import Router from 'next/router'\nimport Layout from 'components/layout'\nimport Panel from 'components/panel'\nimport { useSocket } from 'lib/socket'\n\nexport default function ShipPage () {\n  const { connected, active } = useSocket()\n\n  if (typeof window !== 'undefined') Router.push('/ship/status')\n\n  return (\n    <Layout connected={connected} active={active}>\n      <Panel layout='full-width' scrollable />\n    </Layout>\n  )\n}\n"
  },
  {
    "path": "src/client/pages/ship/inventory.js",
    "content": "import { useState, useEffect } from 'react'\nimport animateTableEffect from 'lib/animate-table-effect'\nimport { useSocket, sendEvent, eventListener } from 'lib/socket'\nimport { ShipPanelNavItems } from 'lib/navigation-items'\nimport Layout from 'components/layout'\nimport Panel from 'components/panel'\nimport CopyOnClick from 'components/copy-on-click'\n\nexport default function ShipInventoryPage () {\n  const { connected, active, ready } = useSocket()\n  const [inventory, setInventory] = useState()\n  const [componentReady, setComponentReady] = useState(false)\n\n  useEffect(animateTableEffect)\n\n  useEffect(async () => {\n    if (!connected) return\n    setInventory(await sendEvent('getInventory'))\n    setComponentReady(true)\n  }, [connected, ready])\n\n  useEffect(() => eventListener('gameStateChange', async () => {\n    setInventory(await sendEvent('getInventory'))\n  }), [])\n\n  useEffect(() => eventListener('newLogEntry', async () => {\n    setInventory(await sendEvent('getInventory'))\n  }), [])\n\n  return (\n    <Layout connected={connected} active={active} ready={ready} loader={!componentReady}>\n      <Panel layout='full-width' scrollable navigation={ShipPanelNavItems('Inventory')}>\n        <>\n          <h2>Item Storage</h2>\n          <h3 className='text-primary'>\n            Ship Locker\n          </h3>\n          {inventory?.items &&\n            <>\n              <LockerItems heading='Consumables' max='100' items={inventory.items.filter(item => item.type === 'Consumable')} />\n              <LockerItems heading='Goods' count={inventory.counts.goods} items={inventory.items.filter(item => item.type === 'Goods')} />\n              <LockerItems heading='Assets' count={inventory.counts.components} items={inventory.items.filter(item => item.type === 'Component')} />\n              <LockerItems heading='Data' count={inventory.counts.data} items={inventory.items.filter(item => item.type === 'Data')} />\n            </>}\n        </>\n      </Panel>\n    </Layout>\n  )\n}\n\nfunction LockerItems ({ heading, items, count = false, max = false }) {\n  return (\n    <>\n      <div className='section-heading'>\n        <h4 className='section-heading__text' style={{ marginTop: '1rem' }}>\n          {heading}\n        </h4>\n        {count !== false &&\n          <h4 className='float-right text-primary' style={{ paddingTop: '1rem' }}>\n            <span className='float-left' style={{ display: 'inline-block', padding: '.25rem .5rem .25rem 0' }}>\n              <span className={`${count > 0 ? '' : 'text-muted'}`}>{count}</span>\n              <span className='text-muted'>/1000</span>\n            </span>\n            <progress\n              style={{ marginTop: '.5rem', height: '1.2rem', display: 'inline-block', width: '8rem', float: 'left' }}\n              value={count}\n              max={1000}\n              className='float-left'\n            />\n          </h4>}\n      </div>\n\n      <table className='table--animated fx-fade-in'>\n        {items.length === 0 &&\n          <tbody><tr><td colSpan={3} style={{ paddingTop: '1rem', paddingBottom: '1rem' }} className='text-center text-muted'>No {heading}</td></tr></tbody>}\n        {items.length > 0 &&\n          <>\n            <thead>\n              <tr>\n                <th className='text-right' style={{ width: '3rem' }}>#</th>\n                <th style={{ width: '25rem' }}>{heading.replace(/s$/, '')}</th>\n                <th>Description</th>\n              </tr>\n            </thead>\n            <tbody>\n              {items.map(item => (\n                <tr key={`inventory_${item.name}`}>\n                  <td className='text-right' style={{ width: '3rem' }}>\n                    <span className={`${item.count > 0 ? '' : 'text-muted'}`}>{item.count}</span>\n                    {max !== false && <span className='text-muted'>/{max}</span>}\n                  </td>\n                  <td style={{ width: '25rem' }}>\n                    <CopyOnClick>{item.name}</CopyOnClick>\n                  </td>\n                  <td>\n                    {item.mission > 0 && <span className='text-secondary'> {item.mission} Mission Critical</span>}\n                    {item.stolen > 0 && <span className='text-danger'> {item.stolen} Stolen</span>}\n                  </td>\n                </tr>\n              ))}\n            </tbody>\n          </>}\n      </table>\n      <hr className='small' style={{ margin: '0 0 .5rem 0' }} />\n    </>\n  )\n}\n"
  },
  {
    "path": "src/client/pages/ship/modules.js",
    "content": "import { useState, useEffect } from 'react'\nimport { useSocket, sendEvent, eventListener } from 'lib/socket'\nimport { ShipPanelNavItems } from 'lib/navigation-items'\nimport Layout from 'components/layout'\nimport Panel from 'components/panel'\nimport ShipModulesPanel from 'components/panels/ship/ship-modules-panel'\nimport ShipModuleInspectorPanel from 'components/panels/ship/ship-module-inspector-panel'\n\nexport default function ShipStatusPage () {\n  const { connected, active, ready } = useSocket()\n  const [ship, setShip] = useState()\n  const [selectedModule, setSelectedModule] = useState()\n  const [cmdrStatus, setCmdrStatus] = useState()\n\n  // Using state for toggle switches like this allow us to have the UI\n  // respond immediately to the input from the user, even if it takes the game\n  // API a second or two to callback and update us with the new state.\n  // It also means that even if they do go out of sync, the UI in ICARUS\n  // Terminal will correctly reflect the in game state after a second or two.\n  const [toggleSwitches, setToggleSwitches] = useState({\n    lights: false,\n    nightVision: false,\n    cargoHatch: false,\n    landingGear: false,\n    hardpoints: false\n  })\n\n  useEffect(async () => {\n    if (!connected) return\n    setShip(await sendEvent('getShipStatus'))\n    setCmdrStatus(await sendEvent('getCmdrStatus'))\n  }, [connected, ready])\n\n  const toggleSwitch = async (switchName) => {\n\n    /*\n    // Only toggle switch value if we think it was successful\n    const switchToggled = await sendEvent('toggleSwitch', { switchName })\n\n    setToggleSwitches({\n      ...toggleSwitches,\n      [switchName]: switchToggled ? !toggleSwitches[switchName] : toggleSwitches[switchName]\n    })\n    */\n  }\n\n  useEffect(async () => {\n    setToggleSwitches({\n      lights: cmdrStatus?.flags?.lightsOn ?? false,\n      nightVision: cmdrStatus?.flags?.nightVision ?? false,\n      cargoHatch: cmdrStatus?.flags?.cargoScoopDeployed ?? false,\n      landingGear: cmdrStatus?.flags?.landingGearDown ?? false,\n      hardpoints: cmdrStatus?.flags?.hardpointsDeployed ?? false\n    })\n  }, [cmdrStatus])\n\n  useEffect(() => eventListener('gameStateChange', async () => {\n    setShip(await sendEvent('getShipStatus'))\n    setCmdrStatus(await sendEvent('getCmdrStatus'))\n  }), [])\n\n  useEffect(() => eventListener('newLogEntry', async (log) => {\n    setShip(await sendEvent('getShipStatus'))\n    if (['Location', 'FSDJump'].includes(log.event)) {\n      setCmdrStatus(await sendEvent('getCmdrStatus'))\n    }\n  }), [])\n\n  return (\n    <Layout connected={connected} active={active} ready={ready} className='ship-panel'>\n      <Panel navigation={ShipPanelNavItems('Modules')} scrollable>\n        <ShipModulesPanel\n          ship={ship}\n          cmdrStatus={cmdrStatus}\n          toggleSwitches={toggleSwitches}\n          toggleSwitch={toggleSwitch}\n          selectedModule={selectedModule}\n          setSelectedModule={setSelectedModule}\n        />\n      </Panel>\n      <Panel>\n        <ShipModuleInspectorPanel module={selectedModule} setSelectedModule={setSelectedModule} />\n      </Panel>\n    </Layout>\n  )\n}\n"
  },
  {
    "path": "src/client/pages/ship/status.js",
    "content": "import { useState, useEffect } from 'react'\nimport { useSocket, sendEvent, eventListener } from 'lib/socket'\nimport { ShipPanelNavItems } from 'lib/navigation-items'\nimport Layout from 'components/layout'\nimport Panel from 'components/panel'\nimport ShipStatusPanel from 'components/panels/ship/ship-status-panel'\nimport ShipModuleInspectorPanel from 'components/panels/ship/ship-module-inspector-panel'\n\nexport default function ShipStatusPage () {\n  const { connected, active, ready } = useSocket()\n  const [ship, setShip] = useState()\n  const [selectedModule, setSelectedModule] = useState()\n  const [cmdrStatus, setCmdrStatus] = useState()\n\n  // Using state for toggle switches like this allow us to have the UI\n  // respond immediately to the input from the user, even if it takes the game\n  // API a second or two to callback and update us with the new state.\n  // It also means that even if they do go out of sync, the UI in ICARUS\n  // Terminal will correctly reflect the in game state after a second or two.\n  const [toggleSwitches, setToggleSwitches] = useState({\n    lights: false,\n    nightVision: false,\n    cargoHatch: false,\n    landingGear: false,\n    hardpoints: false\n  })\n\n  useEffect(async () => {\n    if (!connected) return\n    setShip(await sendEvent('getShipStatus'))\n    setCmdrStatus(await sendEvent('getCmdrStatus'))\n  }, [connected, ready])\n\n  const toggleSwitch = async (switchName) => {\n\n    /*\n    // Only toggle switch value if we think it was successful\n    const switchToggled = await sendEvent('toggleSwitch', { switchName })\n\n    setToggleSwitches({\n      ...toggleSwitches,\n      [switchName]: switchToggled ? !toggleSwitches[switchName] : toggleSwitches[switchName]\n    })\n    */\n  }\n\n  useEffect(async () => {\n    setToggleSwitches({\n      lights: cmdrStatus?.flags?.lightsOn ?? false,\n      nightVision: cmdrStatus?.flags?.nightVision ?? false,\n      cargoHatch: cmdrStatus?.flags?.cargoScoopDeployed ?? false,\n      landingGear: cmdrStatus?.flags?.landingGearDown ?? false,\n      hardpoints: cmdrStatus?.flags?.hardpointsDeployed ?? false\n    })\n  }, [cmdrStatus])\n\n  useEffect(() => eventListener('gameStateChange', async () => {\n    setShip(await sendEvent('getShipStatus'))\n    setCmdrStatus(await sendEvent('getCmdrStatus'))\n  }), [])\n\n  useEffect(() => eventListener('newLogEntry', async (log) => {\n    setShip(await sendEvent('getShipStatus'))\n    if (['Location', 'FSDJump'].includes(log.event)) {\n      setCmdrStatus(await sendEvent('getCmdrStatus'))\n    }\n  }), [])\n\n  return (\n    <Layout connected={connected} active={active} ready={ready} className='ship-panel'>\n      <Panel navigation={ShipPanelNavItems('Status')} scrollable>\n        <ShipStatusPanel\n          ship={ship}\n          cmdrStatus={cmdrStatus}\n          toggleSwitches={toggleSwitches}\n          toggleSwitch={toggleSwitch}\n          selectedModule={selectedModule}\n          setSelectedModule={setSelectedModule}\n        />\n      </Panel>\n      <Panel>\n        <ShipModuleInspectorPanel module={selectedModule} setSelectedModule={setSelectedModule} />\n      </Panel>\n    </Layout>\n  )\n}\n"
  },
  {
    "path": "src/client/pages/test/codex.js",
    "content": "import { useState, useEffect } from 'react'\nimport { useRouter } from 'next/router'\nimport Link from 'next/link'\nimport { sendEvent, useSocket } from 'lib/socket'\n\nexport default function CodexPage () {\n  const router = useRouter()\n  const { query } = router\n  const { connected } = useSocket()\n  const [codexEntries, setCodexEntries] = useState()\n  const [codexEntry, setCodexEntry] = useState()\n\n  useEffect(async () => {\n    if (!connected || !router.isReady) return\n\n    if (query.name) {\n      const newCodexEntry = await sendEvent('getCodexEntry', { name: query.name })\n      setCodexEntry(newCodexEntry || null)\n    } else {\n      setCodexEntry(null)\n    }\n\n    if (!codexEntries) {\n      setCodexEntries(await sendEvent('getCodexEntries'))\n    }\n  }, [connected, router.isReady, query])\n\n  if (codexEntry) {\n    return <CodexEntry codexEntry={codexEntry} />\n  } else {\n    return <CodexEntries codexEntries={codexEntries} />\n  }\n}\n\nfunction CodexEntry ({ codexEntry }) {\n  return (\n    <div style={{ padding: '1rem' }}>\n      <h1 style={{ marginBottom: '1rem' }}>{codexEntry.title}</h1>\n      <div className='text-primary' dangerouslySetInnerHTML={{ __html: codexEntry.text.replace(/\\n/g, '<br/>') }} />\n      <hr style={{ marginTop: '1rem' }} />\n      <Link href='codex'>\n        <a className='text-link text-uppercase'><span className='text-link-text'>Back</span></a>\n      </Link>\n    </div>\n  )\n}\n\nfunction CodexEntries ({ codexEntries }) {\n  return (\n    <div style={{ padding: '1rem' }}>\n      <h1>Codex</h1>\n      {codexEntries && Object.keys(codexEntries.index).map(codexEntry =>\n        <p>\n          <Link href={`codex?name=${codexEntry}`}>\n            <a className='text-link text-uppercase'><span className='text-link-text'>{codexEntry}</span></a>\n          </Link>\n        </p>\n      )}\n    </div>\n  )\n}\n"
  },
  {
    "path": "src/client/pages/test/index.js",
    "content": "import { sendEvent } from 'lib/socket'\n\nexport default function TestPage () {\n  return (\n    <div style={{padding: '1rem'}}>\n      <h1>Test Page</h1>\n      <hr/>\n      <h2>Simulate Events</h2>\n      <p>\n        Send a test event to all connected clients.\n      </p>\n      <input id='debug_event_name' defaultValue='Test' style={{textTransform: 'none'}}/>\n      <p>\n        <button onClick={() => {\n          sendEvent('testMessage', { name: document.getElementById('debug_event_name').value })\n        }}>Send Event</button>\n      </p>\n      <h2>Simulate Log Entry</h2>\n      <p>\n        Simulate an event triggered after an in-game log entry is fired.\n      </p>\n      <input id='debug_log_entry_name' defaultValue='Scan' style={{textTransform: 'none'}}/>\n      <p>\n        <button onClick={() => {\n          sendEvent('testMessage', { \n            name: 'newLogEntry',\n            message: { \n              event: document.getElementById('debug_log_entry_name').value }\n            }\n          )\n        }}>Simulate Log Entry</button>\n      </p>\n    </div>\n  )\n}\n"
  },
  {
    "path": "src/client/pages/test/status.js",
    "content": "import { useState, useEffect, Fragment } from 'react'\nimport { sendEvent, eventListener } from 'lib/socket'\n\nexport default function StatusPage () {\n  const [cmdrStatus, setCmdrStatus] = useState()\n\n  useEffect(async () => {\n    setCmdrStatus(await sendEvent('getCmdrStatus'))\n  }, [])\n\n  useEffect(() => eventListener('newLogEntry', async (log) => {\n    if (['Location', 'FSDJump'].includes(log.event)) {\n      setCmdrStatus(await sendEvent('getCmdrStatus'))\n    }\n  }))\n\n  useEffect(() => eventListener('gameStateChange', async (log) => {\n    setCmdrStatus(await sendEvent('getCmdrStatus'))\n  }), [])\n\n  return (\n    <div style={{ padding: '1rem' }}>\n      <h1>Cmdr Status</h1>\n      <p>\n        balance: {cmdrStatus?.balance && `${cmdrStatus.balance?.toLocaleString()} CR`}\n      </p>\n      <p>\n        location: {cmdrStatus?._location && cmdrStatus._location.map((loc, i) => {\n        return (\n          <Fragment key={`location_${loc}_${i}`}>\n            {i > 0 && <span className='seperator' />}\n            {loc}\n          </Fragment>\n        )\n      })}\n      </p>\n      <hr />\n      {cmdrStatus && Object.keys(cmdrStatus).map(key =>\n        <Fragment key={key}>\n          {key !== 'flags' &&\n            <p className='text-primary'>\n              {key}: <span className='text-info'>{JSON.stringify(cmdrStatus[key])}</span>\n            </p>}\n        </Fragment>\n      )}\n      {cmdrStatus && Object.keys(cmdrStatus.flags).map(flag =>\n        <p key={flag} className='text-primary'>\n          {flag}:\n          {cmdrStatus.flags[flag] === true && <span className='text-success'>true</span>}\n          {cmdrStatus.flags[flag] === false && <span className='text-danger'>false</span>}\n        </p>\n      )}\n    </div>\n  )\n}\n"
  },
  {
    "path": "src/client/public/fonts/icarus-terminal/icarus-terminal.css",
    "content": "@font-face {\n  font-family: \"icarus-terminal\";\n  src: url('icarus-terminal.eot?t=1764689807536'); /* IE9*/\n  src: url('icarus-terminal.eot?t=1764689807536#iefix') format('embedded-opentype'), /* IE6-IE8 */\n  url(\"icarus-terminal.woff2?t=1764689807536\") format(\"woff2\"),\n  url(\"icarus-terminal.woff?t=1764689807536\") format(\"woff\"),\n  url('icarus-terminal.ttf?t=1764689807536') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/\n  url('icarus-terminal.svg?t=1764689807536#icarus-terminal') format('svg'); /* iOS 4.1- */\n}\n\n[class^=\"icarus-terminal-\"], [class*=\" icarus-terminal-\"] {\n  font-family: 'icarus-terminal' !important;\n  font-size:16px;\n  font-style:normal;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n\n.icarus-terminal-0_copy:before { content: \"\\ea01\"; }\n.icarus-terminal-asteroid-base:before { content: \"\\ea02\"; }\n.icarus-terminal-atmosphere:before { content: \"\\ea03\"; }\n.icarus-terminal-barrel:before { content: \"\\ea04\"; }\n.icarus-terminal-cargo-buy:before { content: \"\\ea05\"; }\n.icarus-terminal-cargo-export:before { content: \"\\ea06\"; }\n.icarus-terminal-cargo-import:before { content: \"\\ea07\"; }\n.icarus-terminal-cargo-sell:before { content: \"\\ea08\"; }\n.icarus-terminal-cargo:before { content: \"\\ea09\"; }\n.icarus-terminal-chevron-down:before { content: \"\\ea0a\"; }\n.icarus-terminal-chevron-left:before { content: \"\\ea0b\"; }\n.icarus-terminal-chevron-right:before { content: \"\\ea0c\"; }\n.icarus-terminal-chevron-up:before { content: \"\\ea0d\"; }\n.icarus-terminal-cogs:before { content: \"\\ea0e\"; }\n.icarus-terminal-color-picker:before { content: \"\\ea0f\"; }\n.icarus-terminal-coriolis-starport:before { content: \"\\ea10\"; }\n.icarus-terminal-credits:before { content: \"\\ea11\"; }\n.icarus-terminal-direction-heading:before { content: \"\\ea12\"; }\n.icarus-terminal-dodec-starport:before { content: \"\\ea13\"; }\n.icarus-terminal-download:before { content: \"\\ea14\"; }\n.icarus-terminal-economy:before { content: \"\\ea15\"; }\n.icarus-terminal-engineer:before { content: \"\\ea16\"; }\n.icarus-terminal-engineering:before { content: \"\\ea17\"; }\n.icarus-terminal-exit:before { content: \"\\ea18\"; }\n.icarus-terminal-fleet-carrier-lg:before { content: \"\\ea19\"; }\n.icarus-terminal-fleet-carrier:before { content: \"\\ea1a\"; }\n.icarus-terminal-fuel:before { content: \"\\ea1b\"; }\n.icarus-terminal-fullscreen-exit:before { content: \"\\ea1c\"; }\n.icarus-terminal-fullscreen-window-exit:before { content: \"\\ea1d\"; }\n.icarus-terminal-fullscreen-window:before { content: \"\\ea1e\"; }\n.icarus-terminal-fullscreen:before { content: \"\\ea1f\"; }\n.icarus-terminal-help:before { content: \"\\ea20\"; }\n.icarus-terminal-home:before { content: \"\\ea21\"; }\n.icarus-terminal-info:before { content: \"\\ea22\"; }\n.icarus-terminal-inventory:before { content: \"\\ea23\"; }\n.icarus-terminal-location-filled:before { content: \"\\ea24\"; }\n.icarus-terminal-location:before { content: \"\\ea25\"; }\n.icarus-terminal-logo:before { content: \"\\ea26\"; }\n.icarus-terminal-materials-encoded:before { content: \"\\ea27\"; }\n.icarus-terminal-materials-grade-1:before { content: \"\\ea28\"; }\n.icarus-terminal-materials-grade-2:before { content: \"\\ea29\"; }\n.icarus-terminal-materials-grade-3:before { content: \"\\ea2a\"; }\n.icarus-terminal-materials-grade-4:before { content: \"\\ea2b\"; }\n.icarus-terminal-materials-grade-5:before { content: \"\\ea2c\"; }\n.icarus-terminal-materials-manufactured:before { content: \"\\ea2d\"; }\n.icarus-terminal-materials-raw:before { content: \"\\ea2e\"; }\n.icarus-terminal-materials-xeno:before { content: \"\\ea2f\"; }\n.icarus-terminal-materials:before { content: \"\\ea30\"; }\n.icarus-terminal-megaship-lg:before { content: \"\\ea31\"; }\n.icarus-terminal-megaship:before { content: \"\\ea32\"; }\n.icarus-terminal-menu:before { content: \"\\ea33\"; }\n.icarus-terminal-notifications-disabled:before { content: \"\\ea34\"; }\n.icarus-terminal-notifications:before { content: \"\\ea35\"; }\n.icarus-terminal-ocellus-starport:before { content: \"\\ea36\"; }\n.icarus-terminal-orbis-starport:before { content: \"\\ea37\"; }\n.icarus-terminal-outpost:before { content: \"\\ea38\"; }\n.icarus-terminal-pin-window:before { content: \"\\ea39\"; }\n.icarus-terminal-planet-ammonia-based-life:before { content: \"\\ea3a\"; }\n.icarus-terminal-planet-ammonia-world:before { content: \"\\ea3b\"; }\n.icarus-terminal-planet-atmosphere-landable:before { content: \"\\ea3c\"; }\n.icarus-terminal-planet-atmosphere:before { content: \"\\ea3d\"; }\n.icarus-terminal-planet-earthlike:before { content: \"\\ea3e\"; }\n.icarus-terminal-planet-empty:before { content: \"\\ea3f\"; }\n.icarus-terminal-planet-gas-giant:before { content: \"\\ea40\"; }\n.icarus-terminal-planet-high-metal-content:before { content: \"\\ea41\"; }\n.icarus-terminal-planet-high-value:before { content: \"\\ea42\"; }\n.icarus-terminal-planet-landable:before { content: \"\\ea43\"; }\n.icarus-terminal-planet-lander:before { content: \"\\ea44\"; }\n.icarus-terminal-planet-life:before { content: \"\\ea45\"; }\n.icarus-terminal-planet-ringed:before { content: \"\\ea46\"; }\n.icarus-terminal-planet-terraformable:before { content: \"\\ea47\"; }\n.icarus-terminal-planet-volcanic:before { content: \"\\ea48\"; }\n.icarus-terminal-planet-water-based-life:before { content: \"\\ea49\"; }\n.icarus-terminal-planet-water-world:before { content: \"\\ea4a\"; }\n.icarus-terminal-planet:before { content: \"\\ea4b\"; }\n.icarus-terminal-planetary-port-large:before { content: \"\\ea4c\"; }\n.icarus-terminal-planetary-port:before { content: \"\\ea4d\"; }\n.icarus-terminal-plant:before { content: \"\\ea4e\"; }\n.icarus-terminal-poi-empty:before { content: \"\\ea4f\"; }\n.icarus-terminal-poi:before { content: \"\\ea50\"; }\n.icarus-terminal-power:before { content: \"\\ea51\"; }\n.icarus-terminal-route:before { content: \"\\ea52\"; }\n.icarus-terminal-scan:before { content: \"\\ea53\"; }\n.icarus-terminal-search:before { content: \"\\ea54\"; }\n.icarus-terminal-settings:before { content: \"\\ea55\"; }\n.icarus-terminal-settlement:before { content: \"\\ea56\"; }\n.icarus-terminal-shield:before { content: \"\\ea57\"; }\n.icarus-terminal-ship:before { content: \"\\ea58\"; }\n.icarus-terminal-signal-even-bars:before { content: \"\\ea59\"; }\n.icarus-terminal-signal:before { content: \"\\ea5a\"; }\n.icarus-terminal-sound:before { content: \"\\ea5b\"; }\n.icarus-terminal-star:before { content: \"\\ea5c\"; }\n.icarus-terminal-sync:before { content: \"\\ea5d\"; }\n.icarus-terminal-system-authority-solid:before { content: \"\\ea5e\"; }\n.icarus-terminal-system-authority:before { content: \"\\ea5f\"; }\n.icarus-terminal-system-bodies:before { content: \"\\ea60\"; }\n.icarus-terminal-system-orbits:before { content: \"\\ea61\"; }\n.icarus-terminal-table-index:before { content: \"\\ea62\"; }\n.icarus-terminal-table-inspector:before { content: \"\\ea63\"; }\n.icarus-terminal-table-rows:before { content: \"\\ea64\"; }\n.icarus-terminal-trending-down-chart:before { content: \"\\ea65\"; }\n.icarus-terminal-trending-down:before { content: \"\\ea66\"; }\n.icarus-terminal-trending-steady-chart:before { content: \"\\ea67\"; }\n.icarus-terminal-trending-steady:before { content: \"\\ea68\"; }\n.icarus-terminal-trending-up-chart:before { content: \"\\ea69\"; }\n.icarus-terminal-trending-up:before { content: \"\\ea6a\"; }\n.icarus-terminal-triangle-up:before { content: \"\\ea6b\"; }\n.icarus-terminal-warning:before { content: \"\\ea6c\"; }\n.icarus-terminal-wrench:before { content: \"\\ea6d\"; }\n"
  },
  {
    "path": "src/client/public/fonts/icarus-terminal/icarus-terminal.json",
    "content": "{\n\"0_copy\": [\"M 28.291016,1.6894531 C 14.412347,1.6911941 3.1618977,12.941643 3.1601562,26.820312 V 808.37695 c 0.00174,13.87867 11.2521908,25.12912 25.1308598,25.13086 H 176.53711 v 138.89258 c 6.6e-4,13.87943 11.25143,25.13107 25.13086,25.13281 h 771.60742 c 13.87943,-0.002 25.1302,-11.25338 25.13086,-25.13281 V 190.8457 c -0.002,-13.87867 -11.25219,-25.12912 -25.13086,-25.13086 H 825.0293 V 26.820312 C 825.02756,12.941643 813.77711,1.691194 799.89844,1.6894531 Z M 53.421875,51.951172 H 774.76758 V 164.55078 H 201.66797 c -13.87867,0.002 -25.12912,11.25219 -25.13086,25.13086 v 1.16406 592.40039 H 53.421875 Z M 226.80078,215.97656 h 721.3418 V 947.26953 H 226.80078 Z M 797.53125,363.6582 659.31055,504.20117 528.74414,373.63477 371.60547,530.77344 l 131.875,131.87695 -137.3457,139.65039 h 276.99609 37.37305 119.76757 V 645.16211 363.6582 Z\"],\n\"asteroid-base\": [\"m 777.6,301.333 c 24.801,-0.8 42.667,10.133 61.601,17.066 112,41.333 223.2,84.267 334.934,125.333 38.399,14.133 79.733,13.6 119.733,15.733 56.533,2.934 109.333,19.467 163.199,33.6 7.734,1.867 13.867,6.667 19.467,12.8 63.2,71.733 126.667,143.2 189.867,214.667 27.199,30.667 44,68 64.8,102.667 51.2,85.066 100.267,170.934 150.667,256.267 9.066,15.2 11.467,28.533 5.333,46.667 -30.667,93.866 -59.733,188.533 -89.067,282.933 -8.533,26.934 -35.199,35.2 -53.333,52 -18.667,17.067 -41.6,29.334 -59.466,47.2 -34.4,33.867 -78.667,28.533 -120,33.334 -65.335,7.466 -131.202,10.4 -196.535,18.4 -35.2,4.267 -66.667,23.2 -99.733,36.267 -98.133,38.934 -196.267,77.867 -293.6,118.934 -32,13.333 -58.4,-1.867 -85.867,-8.8 -87.467,-22.4 -174.133,-47.467 -261.066,-71.2 -15.733,-4.267 -26.133,-11.733 -32.533,-28 -50.4,-126.4 -121.6,-241.334 -192.8,-356.533 -35.467,-57.334 -67.467,-116.533 -101.601,-174.4 -9.866,-16.8 -13.066,-35.467 -14.667,-54.133 -8.533,-89.334 -17.6,-178.4 -29.333,-267.2 -1.867,-14.4 0.267,-28.267 7.466,-41.867 59.467,-111.733 118.667,-223.733 177.334,-336 8.8,-17.067 21.066,-26.667 39.732,-29.333 49.334,-7.467 98.4,-15.467 147.734,-23.2 45.066,-7.2 89.866,-14.4 134.933,-21.333 4.801,-1.069 10.668,-1.602 12.801,-1.869 z m 161.334,1362.934 c 12.8,0.8 19.733,-1.333 26.666,-4 89.867,-36 180.268,-70.667 269.601,-108.533 70.399,-29.867 141.333,-52.267 219.2,-53.6 54.666,-1.067 109.333,-9.601 164.267,-14.4 7.466,-0.8 13.866,-3.2 20,-7.733 32,-24.8 64,-49.601 96.267,-74.134 8.267,-6.399 13.333,-14.133 16.533,-24.533 25.6,-82.666 50.934,-165.6 78.4,-247.733 5.6,-16.8 2.666,-28.533 -5.334,-42.399 -43.467,-73.601 -86.4,-147.2 -129.6,-220.801 -21.6,-36.8 -40,-76.267 -66.934,-108.8 -57.333,-68.8 -118.4,-133.6 -177.6,-200.267 -8.267,-9.333 -17.867,-14.933 -30.4,-18.933 -58.4,-18.667 -118.4,-24 -178.934,-29.067 -28.267,-2.399 -57.333,-4 -85.066,-14.666 C 1037.867,449.333 919.2,405.6 800.8,361.6 c -10.133,-3.733 -20.267,-4.8 -31.733,-3.2 -82.666,13.067 -165.6,25.067 -248.267,38.133 -14.667,2.4 -29.866,4 -38.399,20.267 C 428,521.333 372.8,625.601 317.867,729.866 c -3.467,6.4 -6.134,13.067 -5.334,20.801 9.334,85.6 18.134,170.933 28,256.533 1.867,15.467 1.066,31.467 9.867,46.4 30.133,51.199 59.467,102.666 89.066,154.133 C 496.267,1305.866 564,1397.866 607.2,1504 c 8.533,20.8 18.399,41.066 27.2,61.6 5.066,11.733 12.267,19.2 26.133,22.934 66.4,17.333 132.267,36.533 198.134,54.667 28.267,7.466 56.8,14.933 80.267,21.066 z\",\n\"m 229.867,1710.134 c -26.667,-2.4 -52.533,-18.667 -81.333,-25.334 -29.333,-6.934 -38.4,-24 -41.333,-53.866 -4.8,-48.534 5.333,-91.2 29.6,-132.267 9.867,-16.801 17.867,-34.4 20,-54.667 1.867,-17.866 12,-28.8 31.733,-32.8 30.4,-6.4 59.733,-16.8 89.6,-24.8 6.933,-1.867 15.2,-3.733 21.333,-1.334 32.8,13.334 67.2,25.334 93.333,49.334 30.934,28.267 57.601,61.066 86.4,91.733 14.133,15.199 16.8,29.866 5.066,48.8 -14.934,24 -26.934,49.6 -40,74.399 -4.533,8.801 -10.934,15.2 -21.066,17.334 -58.934,14.133 -117.867,28.267 -177.067,42.133 -4,1.067 -8.533,0.801 -16.266,1.335 z M 286.4,1440 c -24.267,6.667 -47.2,12.8 -69.867,19.467 -5.066,1.333 -8.533,5.333 -9.6,10.933 -6.4,27.2 -19.733,51.467 -33.333,75.2 -14.667,25.334 -10.934,51.733 -10.934,78.134 0,3.2 1.333,9.066 3.467,9.6 26.933,8 50.933,28.533 81.867,21.066 44.267,-10.666 88.267,-21.333 132.533,-31.466 17.6,-4 50.4,-46.667 49.334,-64.8 -0.268,-5.601 -3.467,-9.334 -6.934,-13.067 -20,-21.866 -38.134,-45.866 -60.533,-65.066 -21.6,-19.468 -49.067,-30.135 -76,-40.001 z\",\n\"m 1530.667,264.8 c 11.2,35.2 -16,63.2 -32.8,94.4 -5.334,9.866 -16.268,13.6 -27.467,15.2 -25.867,3.467 -51.2,9.067 -75.467,17.867 -20.533,7.467 -39.2,6.667 -57.066,-7.467 -12.533,-9.866 -25.867,-18.667 -39.733,-26.4 -18.934,-10.4 -24.534,-25.6 -20.267,-45.333 5.6,-26.933 12.533,-53.333 17.6,-80.267 3.467,-17.6 15.2,-25.333 30.4,-30.133 22.934,-7.2 45.066,-15.2 64.8,-29.333 23.2,-16.8 46.134,-1.6 69.066,0.8 10.667,1.067 21.333,4.534 31.2,8.534 38.667,15.199 39.467,17.065 39.734,82.132 z m -52.267,-0.267 c -0.801,-32.8 -1.066,-32.8 -32.533,-40 -18.934,-4.267 -36.533,-4.533 -53.334,8.8 -7.733,6.133 -18.4,8 -27.199,12.533 -7.467,3.733 -19.467,3.467 -20.801,13.333 -2.399,18.667 -12.8,35.733 -9.6,55.2 0.267,1.867 1.866,4 3.467,5.333 16.8,12.8 32.8,26.4 56.533,16 11.733,-5.067 24.8,-8 37.333,-10.667 32.267,-6.932 46.934,-25.865 46.134,-60.532 z\",\n\"m 1637.334,1615.2 c 30.666,9.333 67.466,19.467 103.732,31.733 9.601,3.2 15.2,13.066 15.2,24.533 0,8 -1.333,16.533 1.067,23.733 16.8,51.733 -16,86.4 -41.601,123.2 -11.2,16 -27.2,23.733 -47.466,16 -3.201,-1.333 -7.201,-2.4 -10.667,-1.867 -46.4,5.601 -74.4,-23.733 -102.4,-53.333 -5.333,-5.6 -8.8,-11.2 -8.533,-19.2 2.134,-51.733 11.2,-100.533 57.066,-133.6 8.268,-6.132 16.535,-11.465 33.602,-11.199 z m 67.199,101.6 c 4.267,-18.934 -3.199,-30.4 -24.267,-33.333 -10.667,-1.333 -20.8,-5.867 -30.933,-9.067 -8.268,-2.399 -15.467,-1.066 -22.667,3.467 -29.601,19.467 -29.333,76.801 1.866,92.801 15.467,8 36.801,17.6 50.667,4 14.401,-13.868 29.601,-32.001 25.334,-57.868 z\",\n\"m 1027.467,1414.667 c -244.267,-1.867 -419.2,-184.267 -420,-420.533 -0.8,-216.801 182.934,-411.733 419.467,-407.467 224.533,4 412.267,169.866 413.333,425.066 1.067,211.201 -178.934,405.6 -412.8,402.934 z m 358.4,-403.467 c 1.066,-218.934 -166.667,-366.934 -358.934,-370.667 -193.334,-4 -367.467,165.333 -365.601,353.601 1.867,202.666 156,369.333 372,367.732 194.935,-1.599 356.002,-168.8 352.535,-350.666 z\",\n\"m 1605.066,1164.267 c -56.266,5.867 -87.199,-33.333 -82.133,-74.4 3.2,-25.866 18.934,-44.8 45.066,-52.533 21.066,-6.133 42.667,-8 64.533,-7.199 28,1.066 51.734,19.732 58.667,46.399 7.733,29.867 -4.267,61.867 -28.533,76 -18.399,10.666 -38.133,13.067 -57.6,11.733 z m -2.666,-55.734 c 9.6,0 16,0.267 22.666,0 8,-0.533 14.667,-4.533 14.134,-13.066 -0.533,-8.267 -7.2,-12.533 -15.467,-12 -7.2,0.533 -14.399,1.333 -21.333,3.733 -9.066,2.934 -26.4,-3.2 -24.533,13.066 1.866,14.401 17.866,6.134 24.533,8.267 z\",\n\"M 1028.8,1234.4 C 897.333,1242.933 788.267,1132.799 789.867,1005.066 791.733,864 885.333,770.933 1018.933,766.667 c 125.333,-4 240.8,93.866 244.267,230.133 3.467,119.467 -99.467,244.533 -234.4,237.6 z m -2.667,-413.334 c -101.6,-3.467 -181.866,76.267 -183.199,187.733 -1.066,75.467 77.6,172 176.8,174.4 104.533,2.399 189.6,-86.134 189.866,-181.334 -0.267,-107.731 -99.733,-186.132 -183.467,-180.799 z\"],\n\"atmosphere\": [\"M 549.87623,4.2346683 A 544.16885,544.16885 0 0 0 5.706634,548.40426 544.16885,544.16885 0 0 0 246.18243,999.0822 544.16885,544.16885 0 0 1 66.610642,596.06778 544.16885,544.16885 0 0 1 610.78023,51.900444 544.16885,544.16885 0 0 1 915.0926,145.00831 544.16885,544.16885 0 0 0 549.87623,4.2346683 Z\"],\n\"barrel\": [\"m 499.42676,7.0789031 c -92.47187,0 -176.13651,6.4696599 -237.77167,17.2063029 -30.81757,5.368442 -56.02562,11.672859 -75.08524,19.522536 -9.52978,3.924957 -17.58646,8.127827 -24.46107,13.980122 -6.87464,5.852186 -13.49827,14.836759 -13.49827,26.278908 0,11.442033 6.62363,20.424588 13.49827,26.276828 0.6247,0.5318 1.31194,0.98551 1.95638,1.49108 v 106.0173 55.62889 c -0.64444,0.5056 -1.32961,0.95925 -1.95432,1.49107 -6.87462,5.85224 -13.49826,14.83471 -13.49826,26.27683 0,11.44216 6.62364,20.42873 13.49826,26.28098 0.62471,0.53179 1.30988,0.98551 1.95432,1.49107 v 133.6177 c -0.64444,0.50558 -1.33168,0.95926 -1.95638,1.49108 -6.87464,5.85224 -13.49827,14.83472 -13.49827,26.27684 0,11.44215 6.62363,20.42873 13.49827,26.28097 0.6247,0.5318 1.31194,0.98549 1.95638,1.49107 v 100.60104 h -0.002 v 55.62889 c -0.64444,0.5056 -1.32962,0.95925 -1.95432,1.49107 -6.87463,5.85224 -13.49826,14.83471 -13.49826,26.27684 0,11.44215 6.62363,20.42872 13.49826,26.28097 0.6247,0.53179 1.30988,0.98549 1.95432,1.49107 -1.5e-4,-1.2e-4 0.002,1.2e-4 0.002,0 v 161.65446 c -0.64444,0.50559 -1.33168,0.95927 -1.95638,1.49108 -6.87464,5.85223 -13.49827,14.83676 -13.49827,26.2789 0,11.44214 6.62363,20.42666 13.49827,26.27891 6.87461,5.85225 14.93129,10.0532 24.46107,13.97805 19.05962,7.84966 44.26767,14.15626 75.08524,19.5246 61.63516,10.7367 145.2998,17.2042 237.77167,17.20424 92.47189,0 176.13444,-6.46754 237.7696,-17.20424 30.81757,-5.36834 56.02564,-11.67494 75.08525,-19.5246 9.52985,-3.92485 17.58855,-8.1258 24.46313,-13.97805 6.87469,-5.85225 13.49827,-14.83677 13.49827,-26.27891 0,-9.97746 -5.08626,-17.94238 -10.93386,-23.73519 V 725.91356 c 5.8476,-5.7928 10.93179,-13.75976 10.93179,-23.73724 0,-9.97776 -5.08387,-17.94281 -10.93179,-23.73519 V 618.77952 514.14368 c 5.8476,-5.7928 10.93386,-13.75975 10.93386,-23.73724 0,-9.97775 -5.08605,-17.9428 -10.93386,-23.73519 V 324.9881 l 0.002,-0.002 c 5.8476,-5.7928 10.93179,-13.75976 10.93179,-23.73725 0,-9.97775 -5.08387,-17.9428 -10.93179,-23.73518 v -59.66161 h -0.002 V 107.93638 h -0.1365 c 5.90584,-5.80113 11.07036,-13.814213 11.07036,-23.869608 0,-11.442149 -6.62358,-20.426722 -13.49827,-26.278908 C 829.87016,51.935571 821.81146,47.7327 812.28161,43.807742 793.222,35.958065 768.01393,29.653647 737.19636,24.285206 675.5612,13.548563 591.89865,7.0789031 499.42676,7.0789031 Z m 0,38.4453329 c 90.66225,0 172.79638,6.464017 231.17454,16.63345 29.18908,5.084595 52.54297,11.224404 67.04254,17.195957 4.01685,1.654441 7.13139,3.262812 9.62477,4.711054 -2.49359,1.448474 -5.60718,3.05639 -9.62477,4.711054 -14.49957,5.971571 -37.85346,12.111299 -67.04254,17.195969 -58.37816,10.16935 -140.51229,16.63551 -231.17454,16.63551 -90.66224,0 -172.79638,-6.46616 -231.17454,-16.63551 -29.18908,-5.08467 -52.54095,-11.224398 -67.04046,-17.195969 -4.01757,-1.654664 -7.13326,-3.26258 -9.62685,-4.711054 2.49342,-1.448242 5.61004,-3.056613 9.62685,-4.711054 14.4995,-5.971553 37.85138,-12.111362 67.04046,-17.195957 58.37816,-10.169433 140.5123,-16.63345 231.17454,-16.63345 z m 298.56038,84.015154 c -0.0577,29.37517 0.012,49.81753 0,88.31259 0.018,23.14947 0,87.95275 0,87.95275 -0.10705,0.0447 -0.19122,0.0882 -0.2916,0.13235 v 1.52416 c -24.29551,5.13864 -47.08417,12.15972 -67.09424,15.69662 -58.37819,10.16936 -140.51229,16.63345 -231.17454,16.63345 -90.66224,0 -172.79431,-6.46409 -231.17247,-16.63345 -26.74912,-4.65963 -48.24046,-10.20594 -62.86504,-15.69662 v -89.60926 h -0.002 v -86.9518 c 15.92255,4.90461 34.62527,9.17599 56.26792,12.94608 61.63516,10.73671 145.2998,17.20424 237.77167,17.20424 92.47189,0 176.13444,-6.46753 237.7696,-17.20424 23.66361,-4.12215 43.98619,-8.80492 60.79078,-14.30687 z m 0,217.18407 c 0.0307,55.81883 0,148.23892 0,148.23892 -0.10737,0.0447 -0.19122,0.0882 -0.2916,0.13236 v 1.52416 c -24.29553,5.13865 -47.08419,12.15971 -67.09424,15.69661 -58.37816,10.16935 -140.51229,16.63346 -231.17454,16.63346 -90.66224,0 -172.79638,-6.46411 -231.17454,-16.63346 -26.74912,-4.65962 -48.24047,-10.20595 -62.86505,-15.69661 V 348.08425 c 0,0 0.002,0 0.002,0 15.92255,4.9046 34.62527,9.17599 56.26791,12.94609 61.63516,10.73669 145.29773,17.20424 237.7696,17.20424 92.47189,0 176.13443,-6.46755 237.7696,-17.20424 23.66367,-4.12216 43.98627,-8.8049 60.79078,-14.30688 z m 0,189.15766 c 0,0 0.0797,61.8437 0.12408,82.8984 h -0.12616 c 0.018,23.14946 0,87.95274 0,87.95274 -0.10705,0.0447 -0.19121,0.0882 -0.29159,0.13236 v 1.52416 c -24.29551,5.13864 -47.08418,12.15972 -67.09424,15.69662 -58.37814,10.16935 -140.51233,16.63345 -231.17453,16.63345 -90.66225,0 -172.79432,-6.4641 -231.17248,-16.63345 -26.74912,-4.65963 -48.24047,-10.20596 -62.86505,-15.69662 v -89.60926 h -0.90167 l 0.90167,-81.53761 c 15.92255,4.90462 34.62528,9.17599 56.26792,12.94608 61.63516,10.73671 145.2998,17.20424 237.77167,17.20424 92.47189,0 176.13444,-6.46753 237.7696,-17.20424 23.66365,-4.12215 43.98618,-8.80491 60.79078,-14.30687 z m 0.31848,211.6003 c 0.12667,73.59001 0.26443,117.62887 0.2523,167.62703 3.48266,1.48812 6.45407,2.95153 8.71069,4.26228 -2.49359,1.44845 -5.60718,3.05851 -9.62477,4.71313 -14.49957,5.97161 -37.85346,12.11129 -67.04254,17.19596 -58.37816,10.16934 -140.51229,16.63344 -231.17454,16.63344 -90.66224,0 -172.79638,-6.4641 -231.17454,-16.63344 -29.18908,-5.08467 -52.54095,-11.22435 -67.04046,-17.19596 -4.01757,-1.65463 -7.13326,-3.26468 -9.62685,-4.71313 2.49342,-1.44826 5.61004,-3.05464 9.62685,-4.70898 l 1.8447,-166.75017 c 0.24257,0.11511 2.33071,1.10021 2.33071,1.10021 15.92255,4.9046 34.62528,9.17599 56.26792,12.94609 61.63516,10.73669 145.29773,17.20423 237.76961,17.20423 92.47193,0 176.13443,-6.46754 237.76959,-17.20423 23.66366,-4.12217 43.98626,-8.80491 60.79077,-14.30688 z\"],\n\"cargo-buy\": [\"m 225.03011,91.47987 7.15442,-20.026798 -14.31234,-13.053099 -25.73252,2.118376 -39.19816,30.177525 -6.9204,20.666976 10.57491,12.67208 29.33402,-3.6136 z m -7.00606,-14.38456 -6.88534,11.064757 -26.80735,20.108803 -20.81391,3.75824 -3.87687,-5.59604 3.45129,-13.410824 31.95752,-24.005134 17.58669,-0.06268 z M 182.18515,9.0753408 275.82247,-8.3354493 326.40005,40.204027 478.07,288.02729 441.24171,369.66213 342.38923,437.24366 253.66087,446.57475 95.356107,190.31724 61.53325,144.31681 85.973141,77.663998 Z M 187.68692,32.920586 107.89601,90.030844 90.368077,143.6265 116.1701,174.00166 194.80929,158.53725 267.36841,101.85 291.49825,46.516211 263.77388,16.894095 Z m -54.53138,162.257064 134.52247,223.94397 71.86587,-9.07897 86.36085,-60.6526 23.25278,-53.78969 L 312.92559,68.809817 288.5209,116.90372 206.49887,180.90378 Z m 55.17633,-25.35752 9.37517,-7.88674 150.46966,247.47862 -9.65627,7.25989 z m 83.03688,-60.72885 8.01106,-9.457385 152.53397,247.706025 -6.11397,10.14633 z\",\n\"m 290.70585,496.48973 71.03434,54.92263 -90.14664,40.42663 193.75404,20.69274 113.41872,-158.44563 -90.14664,40.42664 6.23422,-89.57403 z\"],\n\"cargo-export\": [\"m 359.2931,485.40537 61.12544,71.48959 -104.58197,46.90022 174.5365,-22.16011 132.63626,-115.59278 -104.58196,46.90023 -12.72754,-93.19381 z\",\n\"m 134.04386,212.9733 8.46387,-23.69229 -16.93191,-15.44219 -30.442323,2.50611 -46.372565,35.70088 -8.187022,24.44962 12.510417,14.99144 34.702997,-4.27499 z m -8.28837,-17.01735 -8.14557,13.08991 -31.713888,23.7893 -24.623446,4.44611 -4.586451,-6.62027 4.082977,-15.8654 37.806672,-28.39877 20.805576,-0.0742 z M 83.357014,115.48634 194.13268,94.888864 l 59.83475,57.423626 179.42994,293.18209 -43.56892,96.57639 -116.94535,79.9509 -104.96822,11.03895 -187.279132,-303.16005 -40.01343,-54.41986 28.913095,-78.85219 z m 6.508754,28.20963 -94.3949509,67.5631 -20.7360571,63.4052 30.5245418,35.93469 93.0324502,-18.29485 85.839528,-67.06265 28.54629,-65.46148 -32.79872,-35.04382 z m -64.512201,191.95482 159.143993,264.93219 85.01942,-10.74068 102.16737,-71.75379 27.5087,-63.63477 -161.1663,-268.29978 -28.87145,56.89647 -97.03444,75.71395 z m 65.275201,-29.99868 11.091102,-9.33027 178.00993,292.77439 -11.42363,8.58866 z m 98.235042,-71.844 9.47729,-11.18836 180.45213,293.04338 -7.23299,12.00341 z\"],\n\"cargo-import\": [\"m 359.2931,485.40537 61.12544,71.48959 -104.58197,46.90022 174.5365,-22.16011 132.63626,-115.59278 -104.58196,46.90023 -12.72754,-93.19381 z\",\n\"m 134.04386,212.9733 8.46387,-23.69229 -16.93191,-15.44219 -30.442323,2.50611 -46.372565,35.70088 -8.187022,24.44962 12.510417,14.99144 34.702997,-4.27499 z m -8.28837,-17.01735 -8.14557,13.08991 -31.713888,23.7893 -24.623446,4.44611 -4.586451,-6.62027 4.082977,-15.8654 37.806672,-28.39877 20.805576,-0.0742 z M 83.357014,115.48634 194.13268,94.888864 l 59.83475,57.423626 179.42994,293.18209 -43.56892,96.57639 -116.94535,79.9509 -104.96822,11.03895 -187.279132,-303.16005 -40.01343,-54.41986 28.913095,-78.85219 z m 6.508754,28.20963 -94.3949509,67.5631 -20.7360571,63.4052 30.5245418,35.93469 93.0324502,-18.29485 85.839528,-67.06265 28.54629,-65.46148 -32.79872,-35.04382 z m -64.512201,191.95482 159.143993,264.93219 85.01942,-10.74068 102.16737,-71.75379 27.5087,-63.63477 -161.1663,-268.29978 -28.87145,56.89647 -97.03444,75.71395 z m 65.275201,-29.99868 11.091102,-9.33027 178.00993,292.77439 -11.42363,8.58866 z m 98.235042,-71.844 9.47729,-11.18836 180.45213,293.04338 -7.23299,12.00341 z\"],\n\"cargo-sell\": [\"m 318.76142,265.9979 7.15442,-20.02679 -14.31234,-13.0531 -25.73252,2.11838 -39.19816,30.17752 -6.9204,20.66697 10.57491,12.67208 29.33402,-3.6136 z m -7.00606,-14.38456 -6.88534,11.06476 -26.80735,20.1088 -20.81391,3.75824 -3.87687,-5.59604 3.45129,-13.41083 31.95752,-24.00512 17.58669,-0.0627 z m -35.8389,-68.01995 93.63732,-17.41079 50.57758,48.53947 151.66995,247.82325 -36.82829,81.63484 -98.85248,67.58153 -88.72836,9.33109 -158.30476,-256.25751 -33.82284,-46.00043 24.43988,-66.65281 z m 5.50177,23.84524 -79.79091,57.11025 -17.52793,53.59565 25.80202,30.37516 78.63919,-15.46441 72.55912,-56.68725 24.12984,-55.33378 -27.72437,-29.62211 z m -54.53138,162.25705 134.52247,223.94397 71.86587,-9.07897 86.36085,-60.6526 23.25278,-53.78969 -136.23192,-226.79054 -24.40469,48.0939 -82.02203,64.00006 z m 55.17633,-25.35752 9.37517,-7.88674 150.46966,247.47862 -9.65627,7.25989 z m 83.03688,-60.72885 8.01106,-9.45739 152.53397,247.70603 -6.11397,10.14633 z\",\n\"m 481.3352,921.49367 71.03432,54.9226 -90.14662,40.42673 193.75403,20.6927 113.41874,-158.44563 -90.14669,40.4266 6.23424,-89.574 z\"],\n\"cargo\": [\"m 201.12743,137.23568 10.86991,-30.42725 -21.74512,-19.831893 -39.09601,3.218483 -59.55477,45.84951 -10.514369,31.39989 16.066742,19.25302 44.567947,-5.49025 z m -10.64448,-21.85484 -10.46108,16.81097 -40.72902,30.55185 -31.62312,5.70997 -5.89024,-8.50218 5.24363,-20.37544 48.5539,-36.47161 26.71984,-0.0952 z M 136.03205,12.036349 278.29758,-14.41634 355.14143,59.330962 649.9679,406.97909 594.01375,531.009 443.82465,633.68732 309.01734,647.86432 4.1104607,287.40186 -47.277434,217.51223 -10.145309,116.24486 Z M 144.39102,48.265054 23.162635,135.03412 -3.4679807,216.46341 35.733677,262.61319 155.21223,239.1177 265.45312,152.99124 302.1142,68.921229 259.99183,23.915573 Z M 61.54009,294.78643 330.31396,606.15405 439.5016,592.36014 570.71186,500.20908 606.04044,418.48504 334.6693,102.79248 297.59063,175.86282 172.97242,273.09975 Z m 83.83083,-38.52637 14.24388,-11.98252 293.00289,347.12446 -14.67101,11.03012 z m 126.16001,-92.26692 12.1714,-14.36886 296.13927,347.46998 -9.28914,15.41561 z\"],\n\"chevron-down\": [\"M 90.390625,267.5625 8.5839844,349.36914 417.61914,758.40625 438.07227,778.85938 499.42773,840.21289 990.27148,349.36914 908.46289,267.5625 499.42578,676.59766 Z\"],\n\"chevron-left\": [\"M 725.75293,90.85055 643.94629,9.043949 234.90918,418.07906 214.45605,438.53219 153.10254,499.88765 643.94629,990.7314 725.75293,908.92281 316.71777,499.8857 Z\"],\n\"chevron-right\": [\"M 273.10254,908.92476 354.90918,990.7314 763.94629,581.69625 784.39942,561.24312 845.75293,499.88766 354.90918,9.043949 273.10254,90.8525 682.1377,499.88961 Z\"],\n\"chevron-up\": [\"M 90.390624,780.21289 8.5839844,698.40625 417.61914,289.36914 438.07227,268.91601 499.42773,207.5625 990.27148,698.40625 908.46289,780.21289 499.42578,371.17773 Z\"],\n\"cogs\": [\"m 353.96054,10.059338 c -29.66408,0 -58.90969,3.90421 -87.11409,11.30553 v 53.649034 a 293.94819,293.94819 0 0 0 -49.8064,20.88091 l -37.93004,-37.93004 c -24.53477,14.5233 -47.38194,32.13344 -67.88738,52.638878 -21.687925,21.68791 -40.087655,46.02175 -55.067315,72.17746 l 36.76532,36.76533 a 293.94819,293.94819 0 0 0 -20.25719,47.65593 H 21.712657 c -7.23475,27.90315 -11.0357,56.81894 -11.0357,86.14055 0,30.34948 4.10563,60.25428 11.84653,89.05981 h 49.240988 a 293.94819,293.94819 0 0 0 20.08771,48.10611 l -34.8657,34.86569 c 14.82828,25.59816 32.95334,49.42352 54.236145,70.7063 20.91067,20.91069 44.26904,38.78535 69.35718,53.47006 l 34.50231,-34.50097 a 293.94819,293.94819 0 0 0 51.76433,21.95208 v 48.31898 c 28.2043,7.4015 57.45013,11.30552 87.11409,11.30552 30.00699,0 59.58186,-4.00493 88.08763,-11.57535 v -49.52437 a 293.94819,293.94819 0 0 0 46.88172,-19.9711 l 35.59246,35.59247 c 26.15571,-14.97967 50.48954,-33.3794 72.17746,-55.06732 20.50542,-20.50542 38.11536,-43.35261 52.63888,-67.88737 l -36.75718,-36.75719 a 293.94819,293.94819 0 0 0 20.59346,-49.03354 h 52.22398 c 7.7409,-28.80553 11.84652,-58.71033 11.84652,-89.05981 0,-29.32161 -3.80096,-58.2374 -11.03569,-86.14055 h -53.59751 a 293.94819,293.94819 0 0 0 -20.57448,-49.10811 l 38.13478,-38.13343 C 635.48779,154.87228 617.61062,131.51444 596.69981,110.60365 575.41691,89.320742 551.58935,71.196952 525.9908,56.368872 l -38.57546,38.57682 A 293.94819,293.94819 0 0 0 442.04817,76.120322 V 21.633338 c -28.50573,-7.57016 -58.08068,-11.574 -88.08763,-11.574 z M 352.9165,170.59289 A 184.22388,184.22388 0 0 1 537.14039,354.81679 184.22388,184.22388 0 0 1 352.9165,539.04069 184.22388,184.22388 0 0 1 168.6926,354.81679 184.22388,184.22388 0 0 1 352.9165,170.59289 Z\",\n\"m 557.53312,669.21709 c -8.42156,17.88263 -14.37072,36.62138 -17.91608,55.72529 l 32.34167,15.23082 a 195.86992,195.86992 0 0 0 -1.55212,35.95321 l -33.63389,12.09743 c 1.78983,18.91361 5.91963,37.68622 12.45964,55.86912 6.91715,19.23143 16.36287,37.23181 27.87783,53.68765 l 32.6011,-11.72594 a 195.86992,195.86992 0 0 0 22.97784,25.74121 l -14.46481,30.71505 c 14.76715,12.28302 31.1196,22.78348 48.79579,31.10784 18.29581,8.61613 37.48913,14.63099 57.0518,18.14231 l 13.9794,-29.68433 a 195.86992,195.86992 0 0 0 34.70304,1.54757 l 11.12006,30.91663 c 19.64125,-1.67172 39.14974,-5.83429 58.02194,-12.62223 18.54224,-6.66926 35.94913,-15.67601 51.92411,-26.63112 l -11.00338,-30.59402 a 195.86992,195.86992 0 0 0 27.92931,-24.97338 l 29.12851,13.71765 c 12.46899,-14.90137 23.12533,-31.42349 31.54688,-49.30605 8.51889,-18.08936 14.50082,-37.05518 18.02979,-56.38878 l -29.85517,-14.05984 a 195.86992,195.86992 0 0 0 1.27026,-33.93182 l 31.5611,-11.35186 c -1.60479,-20.02035 -5.7885,-39.91333 -12.70567,-59.14477 -6.53999,-18.18288 -15.31373,-35.28508 -25.98102,-51.00577 l -32.5939,11.72335 a 195.86992,195.86992 0 0 0 -23.71283,-26.33502 l 14.82625,-31.48259 c -15.16743,-12.84432 -32.0296,-23.80924 -50.32541,-32.42538 -17.67618,-8.32434 -36.1868,-14.24209 -55.06179,-17.80236 l -15.21619,32.31061 a 195.86992,195.86992 0 0 0 -35.44527,-1.53859 L 744.05,538.8839 c -19.29329,1.73001 -38.44956,5.87576 -56.99191,12.54507 -18.8723,6.78797 -36.5626,16.00683 -52.76888,27.22894 l 12.30408,34.20662 a 195.86992,195.86992 0 0 0 -24.22828,22.00456 l -32.84679,-15.46871 c -12.65629,15.03518 -23.46621,31.72739 -31.9851,49.81671 z m 96.47928,46.20448 A 122.75605,122.75605 0 0 1 817.37024,656.66513 122.75605,122.75605 0 0 1 876.12666,820.02297 122.75605,122.75605 0 0 1 712.76883,878.77939 122.75605,122.75605 0 0 1 654.0124,715.42157 Z\"],\n\"color-picker\": [\"M 536.08203 21.912109 L 536.08203 228.42578 A 284.97464 284.97464 0 0 1 672.0332 284.98828 L 816.71875 140.30273 A 481.04968 481.04968 0 0 0 536.08203 21.912109 z M 469.64453 22.203125 A 481.04968 481.04968 0 0 0 189.00977 137.57617 L 331.78711 280.35352 A 284.97464 284.97464 0 0 1 469.64453 227.76758 L 469.64453 22.203125 z M 141.36719 183.89062 A 481.04968 481.04968 0 0 0 23.269531 469.64453 L 218.14648 469.64453 A 284.97464 284.97464 0 0 1 283.08984 325.61328 L 141.36719 183.89062 z M 863.49414 187.48438 L 719.43945 331.53906 A 284.97464 284.97464 0 0 1 779.69727 469.64453 L 979.99023 469.64453 A 481.04968 481.04968 0 0 0 863.49414 187.48438 z M 23.890625 536.08203 A 481.04968 481.04968 0 0 0 141.70117 815.32031 L 274.00781 683.01367 A 284.97464 284.97464 0 0 1 216.07617 536.08203 L 23.890625 536.08203 z M 781.22266 536.08203 A 284.97464 284.97464 0 0 1 728.28125 676.84766 L 864.81445 813.38086 A 481.04968 481.04968 0 0 0 979.51562 536.08203 L 781.22266 536.08203 z M 682.56055 725.08398 A 284.97464 284.97464 0 0 1 536.08203 790.51953 L 536.08203 978.57617 A 481.04968 481.04968 0 0 0 817.83984 860.36328 L 682.56055 725.08398 z M 320.64648 730.33203 L 188.80273 862.17578 A 481.04968 481.04968 0 0 0 469.64453 978.7832 L 469.64453 791.79297 A 284.97464 284.97464 0 0 1 320.64648 730.33203 z \"],\n\"coriolis-starport\": [\"M 484.22684,5.9191489 48.590428,44.590428 9.9191489,499.22847 48.590428,953.86651 503.22847,992.53595 957.86651,953.86651 996.53595,499.22847 957.86651,44.590428 Z M 527.63182,49.324134 902.52241,91.702957 943.30726,465.00141 Z M 469.67129,58.477944 62.190323,465.95892 93.351877,92.879425 Z M 503.22847,86.731731 915.72521,499.22847 503.22847,911.72521 90.731731,499.22847 Z M 364.63164,469.45492 v 59.54523 h 277.1918 v -59.54523 z m 579.08199,63.59421 -36.48721,370.17729 -370.17729,36.48721 z M 63.249886,533.55758 469.79192,940.09775 105.11099,907.93045 Z\"],\n\"credits\": [\"M 960.58008,411.80499 272.27148,743.44298 37.943359,536.03681 13.455078,550.61907 266.21289,774.33655 978.57031,429.51313 Z\",\n\"M 955.16193,477.69587 266.85333,809.33386 32.525209,601.9277 8.0369288,616.50996 260.79474,840.22747 973.15216,495.40402 Z\",\n\"m 566.85575,271.98605 c -3.29137,0.027 -6.65419,0.4299 -10.09079,1.20639 -6.07946,1.37437 -15.29768,5.42352 -27.65251,12.16566 -13.07802,7.14262 -21.98338,12.20163 -26.72593,15.17798 -9.71269,6.08235 -16.34696,12.19136 -19.89092,18.32844 -5.7625,9.77898 -5.44959,19.56618 0.92662,29.35671 3.99629,6.11689 14.08552,18.07316 30.27242,35.89375 7.88599,8.67545 15.66876,16.57883 23.35019,23.70994 16.78619,15.43776 33.99066,21.22349 51.60953,17.3655 4.55815,-0.92776 8.81728,-2.24867 12.77611,-3.97166 3.95885,-1.71145 10.26846,-4.93975 18.93526,-9.67655 19.33611,-10.55403 31.11675,-17.46461 35.3378,-20.75211 11.22522,-8.66105 14.909,-18.13977 11.06826,-28.43738 -1.82959,-5.05659 -7.08391,-12.29333 -15.75938,-21.71504 -0.82978,-0.91333 -2.54946,-2.80249 -5.15988,-5.67223 l -19.13873,10.4433 c 3.1809,3.24141 5.92747,6.13026 8.22672,8.67729 7.05907,7.76498 10.19063,13.52184 9.40405,17.2819 -0.58204,2.6594 -3.29839,5.77751 -8.1504,9.35316 -4.86069,3.57276 -13.10378,8.53702 -24.7383,14.88731 -5.05372,2.76024 -9.84271,5.28193 -14.37493,7.55811 -7.4567,3.6736 -13.71286,5.3827 -18.76085,5.10899 -4.40829,-0.23052 -9.09503,-2.20487 -14.04791,-5.94475 -7.81395,-5.69338 -23.93084,-21.97457 -48.361,-48.86246 -6.87466,-7.56904 -11.15446,-13.33108 -12.83426,-17.29281 -1.52415,-3.65919 -1.81201,-6.85052 -0.86118,-9.56754 0.95368,-2.71413 3.30463,-5.44155 7.06756,-8.17584 6.08518,-4.39392 16.83219,-10.80027 32.23826,-19.20778 11.63452,-6.35028 19.91746,-9.45142 24.84728,-9.31319 5.64439,0.13823 12.75388,4.79269 21.33715,13.97525 0.71165,0.7808 2.26406,2.42348 4.65839,4.92727 l 18.89527,-10.31608 c -1.22451,-1.47806 -2.12884,-2.54074 -2.72528,-3.19766 -5.15744,-5.67607 -9.82362,-10.15284 -14.00432,-13.43746 -8.57678,-6.66434 -17.80014,-9.95744 -27.6743,-9.87641 z\",\n\"m 566.8125,266.65234 c -3.69677,0.0303 -7.44336,0.48397 -11.22266,1.33789 -7.146,1.61549 -16.48541,5.83918 -29.03125,12.68555 l -0.002,0.002 c -13.11094,7.1606 -22.01542,12.20989 -27,15.33789 -10.14171,6.35102 -17.44975,12.8678 -21.66992,20.16797 -6.57905,11.18615 -6.14751,23.87046 1.0664,34.94727 l 0.002,0.004 0.002,0.004 c 4.50385,6.89379 14.54551,18.67954 30.78906,36.5625 h 0.002 v 0.002 c 7.97634,8.77485 15.86298,16.78544 23.66797,24.03125 l 0.01,0.008 0.008,0.008 c 17.62326,16.20758 36.92216,22.89192 56.32618,18.65625 4.8716,-0.99434 9.47502,-2.41724 13.7871,-4.29297 4.30621,-1.86161 10.64826,-5.12109 19.375,-9.89062 19.38053,-10.57827 30.87533,-17.19293 36.03907,-21.21094 l 0.006,-0.004 c 6.13126,-4.73181 10.58361,-9.95912 12.89062,-15.88867 2.30362,-5.92083 2.21264,-12.43348 -0.0781,-18.59766 -2.39063,-6.59323 -7.98091,-13.87089 -16.84375,-23.49609 -0.83873,-0.92314 -2.54058,-2.79224 -5.13868,-5.64844 l -2.82031,-3.10156 -29.01172,15.83203 4.94141,5.03711 c 3.14632,3.20617 5.84844,6.04782 8.07617,8.51563 l 0.006,0.006 0.006,0.008 c 3.35229,3.68752 5.66179,6.81637 6.90625,9.10351 1.22511,2.25159 1.21281,3.47287 1.2207,3.47071 -0.0433,0.15052 -1.68871,2.93487 -6.09179,6.17968 -4.44274,3.26489 -12.59414,8.20416 -24.12891,14.5 h -0.002 c -5.00086,2.73137 -9.72695,5.22038 -14.1875,7.46094 -6.97674,3.43507 -12.49266,4.75623 -16.10157,4.56055 h -0.006 -0.006 c -3.01923,-0.15788 -6.72931,-1.56618 -11.11133,-4.875 l -0.0371,-0.0274 -0.0371,-0.0273 C 560.6891,393.12146 544.22501,376.69982 519.86,349.8837 v -0.002 c -6.70111,-7.37812 -10.72357,-13.09423 -11.86328,-15.77344 -1.18208,-2.84679 -1.15347,-4.56411 -0.74609,-5.73242 0.41556,-1.18056 1.91522,-3.261 5.15625,-5.61914 l 0.002,-0.002 c 5.66407,-4.08961 16.34786,-10.48706 31.66797,-18.84766 11.34107,-6.19011 19.61409,-8.73496 22.14258,-8.66406 h 0.01 0.01 c 2.82462,0.0692 9.37831,3.52105 17.57227,12.28711 0.81065,0.88819 2.31947,2.48216 4.69922,4.9707 l 2.82421,2.95312 28.16016,-15.375 -4.12695,-4.98242 c -1.2463,-1.50436 -2.16765,-2.59102 -2.88477,-3.38086 v -0.002 c -5.29553,-5.82804 -10.14226,-10.49692 -14.6582,-14.04492 l -0.01,-0.008 -0.0117,-0.01 c -9.36744,-7.2787 -19.90314,-11.08903 -30.99023,-10.99805 z m 0.0879,10.66602 c 8.65607,-0.071 16.56212,2.70361 24.34375,8.74609 3.36045,2.64118 7.28975,6.42073 11.55664,10.97461 l -9.38476,5.12305 c -0.51544,-0.54764 -1.52816,-1.60645 -1.76758,-1.86914 l -0.0234,-0.0234 -0.0234,-0.0254 c -8.96981,-9.59609 -16.63269,-15.45337 -25.09375,-15.66406 -7.32885,-0.20221 -15.61811,3.4552 -27.54101,9.96289 -15.49057,8.45362 -26.29996,14.86618 -32.80664,19.56445 l -0.006,0.006 -0.006,0.004 c -4.27276,3.10475 -7.47285,6.4765 -8.96485,10.72265 v 0.004 l -0.002,0.002 c -1.49176,4.26274 -0.88306,8.92565 0.97266,13.38086 l 0.006,0.0156 0.006,0.0156 c 2.2252,5.24805 6.75718,11.04614 13.79687,18.79688 24.47583,26.93815 40.23475,43.06887 49.14258,49.5664 5.50814,4.14927 11.15347,6.67772 16.93359,6.98047 6.4e-4,4e-5 0.001,-3e-5 0.002,0 6.48169,0.34902 13.47108,-1.74588 21.39648,-5.65039 l 0.0195,-0.01 0.0176,-0.01 c 4.59747,-2.30895 9.43871,-4.85793 14.53711,-7.64258 11.73062,-6.40274 20.06222,-11.39083 25.3418,-15.27148 l 0.002,-0.002 0.002,-0.002 c 5.27877,-3.89015 9.06041,-7.31146 10.19727,-12.50586 l 0.006,-0.0234 0.004,-0.0234 c 0.79546,-3.80249 -0.40548,-7.30871 -2.29492,-10.78125 -1.8872,-3.46842 -4.6709,-7.09642 -8.37109,-11.16797 l -0.002,-0.002 c -1.00325,-1.11135 -2.39049,-2.5156 -3.54492,-3.74024 l 9.375,-5.11523 c 0.74195,0.8155 1.96387,2.15863 2.33789,2.57031 l 0.0117,0.0117 0.0137,0.0137 c 8.48052,9.20998 13.39404,16.4025 14.66602,19.91797 l 0.01,0.0234 0.01,0.0254 c 1.53802,4.12367 1.52286,7.48753 0.14258,11.03515 -1.38028,3.54763 -4.38166,7.38835 -9.47266,11.31641 l -0.01,0.006 -0.01,0.008 c -3.2843,2.55793 -15.33889,9.75789 -34.61523,20.2793 h -0.002 c -8.60575,4.70344 -14.88299,7.90176 -18.49414,9.46289 l -0.006,0.002 -0.006,0.002 c -3.58994,1.56245 -7.48797,2.77679 -11.71289,3.63672 l -0.0371,0.008 -0.0391,0.008 c -15.81514,3.46303 -30.90885,-1.42077 -46.83984,-16.06445 l -0.008,-0.008 c -0.004,-0.004 -0.008,-0.006 -0.0117,-0.01 -7.55121,-7.01132 -15.22317,-14.801 -23.01172,-23.36914 l -0.002,-0.002 c -16.12546,-17.75304 -26.25934,-29.8753 -29.75,-35.21679 l -0.002,-0.002 c -4.5e-4,-6.9e-4 -10e-4,-0.003 -0.002,-0.004 -5.52859,-8.49238 -5.72504,-15.36931 -0.79688,-23.73242 l 0.0117,-0.0195 0.0117,-0.0215 c 2.869,-4.96826 8.82641,-10.66503 18.10352,-16.47461 l 0.002,-0.002 0.002,-0.002 c 4.50116,-2.82485 13.40516,-7.89066 26.44727,-15.01367 12.16279,-6.63734 21.25832,-10.51091 26.27148,-11.64453 3.0939,-0.69906 6.07497,-1.0525 8.96094,-1.07617 z\",\n\"m 708.9228,197.30611 c -9.64358,0.0894 -20.72134,3.55004 -33.23751,10.38149 l -71.00991,38.76076 104.05119,114.51264 19.12058,-10.44689 -40.82107,-44.92716 48.62627,-26.53696 c 7.99548,-4.55239 15.12077,-6.74407 21.41345,-6.56249 6.29264,0.46674 12.64937,4.22058 19.05151,11.26812 l 24.55296,27.01298 19.13874,-10.44327 -27.20557,-29.95628 c -12.59108,-13.72629 -26.11145,-17.17462 -40.56671,-10.36332 8.15107,-5.41965 11.67913,-11.44644 10.58137,-18.07043 -0.90761,-6.14573 -5.80104,-14.11415 -14.69836,-23.8989 -5.39082,-5.93249 -10.35494,-10.40171 -14.87276,-13.4011 -7.65839,-4.99033 -15.69942,-7.4358 -24.12418,-7.32919 z m -1.44984,17.85968 c 1.70314,-0.0334 3.26635,0.15925 4.69473,0.57412 4.61577,1.38588 11.52671,7.12871 20.71216,17.24195 6.75077,7.44227 8.78619,13.70447 6.08644,18.78989 -2.35686,4.4083 -8.31045,9.21727 -17.85605,14.42944 l -46.69677,25.49408 -37.97221,-41.79488 51.9947,-28.38289 c 7.58058,-4.13604 13.92759,-6.25206 19.037,-6.35171 z\",\n\"m 708.86523,191.97266 c -10.8794,0.10258 -22.72447,3.93227 -35.73437,11.0332 l -76.96289,42.00976 111.43359,122.63672 28.75196,-15.70703 -40.82032,-44.92578 42.7168,-23.31055 0.041,-0.0234 c 7.38562,-4.20516 13.56354,-5.96541 18.48242,-5.85743 4.43134,0.36323 9.5848,3.11612 15.39648,9.51368 l 27.375,30.11718 28.77149,-15.69921 -31.77344,-34.98633 -0.01,-0.01 c -6.78796,-7.39996 -14.17793,-12.398 -22.19531,-14.44531 -2.55653,-0.65283 -5.16136,-0.87556 -7.7793,-0.9043 1.37706,-3.271 1.90478,-6.7364 1.32422,-10.30078 -1.22806,-8.21371 -6.82138,-16.55062 -16.01758,-26.66406 h 0.002 c -5.59016,-6.15186 -10.81923,-10.90387 -15.8711,-14.25781 l -0.0176,-0.0117 -0.0195,-0.0137 c -8.41841,-5.48558 -17.59772,-8.3115 -27.09375,-8.19336 z m 0.10743,10.66601 h 0.008 0.01 c 7.34378,-0.0929 14.23733,1.9698 21.12696,6.45508 3.9799,2.64549 8.67185,6.82483 13.85547,12.5293 l 0.002,0.002 c 8.58253,9.43856 12.76701,17.02588 13.36719,21.08984 l 0.008,0.0469 0.008,0.0449 c 0.71111,4.29088 -1.04956,7.95466 -8.27344,12.75781 l 5.22657,9.26563 c 6.33369,-2.98443 11.88429,-3.58138 17.38867,-2.17578 5.50437,1.40559 11.1715,4.994 16.97461,11.32031 l 22.6289,24.91601 -9.50586,5.1875 -21.73242,-23.9082 c -6.94979,-7.6504 -14.47144,-12.39878 -22.60351,-13.00195 l -0.1211,-0.008 -0.12109,-0.004 c -7.64553,-0.22062 -15.66526,2.39744 -24.20508,7.25977 l -54.49609,29.73828 40.82422,44.92968 -9.49024,5.18555 -96.66797,-106.39062 65.05664,-35.50977 c 12.0194,-6.5603 22.32676,-9.65254 30.73243,-9.73047 z m -1.60352,7.19531 c -6.49498,0.12668 -13.48033,2.63274 -21.48828,7.00196 l -57.94727,31.63281 45.35352,49.91797 50.37891,-27.50391 c 9.93798,-5.42642 16.64668,-10.31631 20.0039,-16.5957 l 0.004,-0.008 0.004,-0.006 c 2.0353,-3.83381 2.22256,-8.46549 0.86329,-12.65821 -1.35928,-4.19271 -4.01464,-8.14187 -7.71094,-12.21679 l -0.002,-0.002 c -9.40498,-10.35494 -16.02894,-16.6325 -23.12695,-18.76367 l -0.0234,-0.008 -0.0215,-0.006 c -2.00459,-0.58223 -4.11806,-0.82769 -6.28711,-0.78516 z m 0.20703,10.66407 h 0.002 c 1.22715,-0.0241 2.22834,0.11757 3.07618,0.36132 2.14952,0.6576 9.32944,5.85729 18.27734,15.70899 3.0524,3.36578 4.79195,6.26834 5.46289,8.33789 0.67013,2.06704 0.52506,3.11039 -0.13672,4.35937 -1.36187,2.53877 -6.55771,7.26026 -15.70312,12.25391 l -43.01563,23.48438 -30.59179,-33.66993 46.04296,-25.13476 c 7.1532,-3.90286 12.86211,-5.62855 16.58594,-5.70117 z\",\n\"M 726.17383,102.94727 11.820312,490.54688 274.68359,751.84375 989.03711,364.67383 Z M 721.08594,138.03125 942.26758,358.27148 276.57812,718.54688 55.396484,498.66016 Z\",\n\"M 727.35937,94.71875 722.99414,97.087891 0.76757812,488.95898 273.5,760.06836 1000.0859,366.26758 Z m -2.37109,16.45703 253,251.9043 L 275.86719,743.61914 22.873047,492.13477 Z m -2.71484,18.63086 -4.36328,2.36328 L 44.339844,497.06836 275.39258,726.76953 953.32031,359.86914 Z m -2.375,16.44922 211.3164,210.41601 L 277.76367,710.32422 66.453125,500.25195 Z\",\n\"m 422.40811,271.21214 -29.61053,9.90532 c 1.39537,0.27902 177.37334,160.49175 177.37334,160.49175 L 889.37638,285.24101 874.92597,262.52085 576.21216,412.07753 Z\"],\n\"direction-heading\": [\"M 276.20852,237.10146 20.268325,726.796 h 446.055765 65.82684 189.01093 257.0448 l -255.94018,-489.69454 -1.10462,2.11231 v -2.11231 h -444.2844 v 1.28099 z\"],\n\"dodec-starport\": [\"M 486.4043,17.507812 202.69727,119.64062 33.208984,369.0293 42.673828,670.4082 227.47852,908.66602 491.06836,985.25 v 0.39258 l 1.33984,-0.002 24.62696,7.1543 283.70312,-102.13281 169.49024,-249.38477 c -3.15734,-100.46088 -6.31148,-200.92186 -9.4668,-301.38281 L 775.95703,101.63672 Z m 1.64843,52.546876 253.01368,73.511722 -67.77735,95.85351 L 329.0293,244.125 263.1875,151.00781 Z M 228.29102,170.9375 298.52344,270.26367 197.55859,596.08398 91.339844,627.14648 83.693359,383.69531 Z m 540.375,2.87695 142.63086,183.88672 8.17578,260.23438 L 819.90039,588.81836 707.96094,259.66602 Z M 672.43359,279.43555 780.72656,597.85938 511.35352,799.24805 236.58008,605.29102 336.13281,284.03125 Z M 360.83203,468.83984 v 62.88282 H 628.85938 V 468.83984 Z M 808.38477,627.125 900.98828,654.20508 768.51562,849.12109 530.96289,934.64062 530.75586,834.6875 Z M 208.625,634.52344 490.75195,833.66797 490.95898,933.1543 257.0293,865.18555 102.24609,665.63281 Z\"],\n\"download\": [\"M 325.82812,6.5019531 V 292.33789 L 25.636719,294.83594 325.82812,595.02734 366.33008,635.5293 496.125,765.32422 666.42188,595.02734 971.49609,289.95312 968.52734,286.98438 666.42188,289.5 V 6.5019531 Z M 25.996094,858.03516 V 994.80469 H 968.52734 V 858.03516 Z\"],\n\"economy\": [\"M 4.3085938,3.984375 V 918.36914 997.01172 H 82.951172 997.33594 V 918.36914 H 82.951172 V 571.64844 L 295.75781,454.08008 481.42188,776.51758 853.46484,297.69336 953.97656,371.23828 977.5332,49.828125 704.62695,188.78711 796.8125,256.24023 488.25977,655.83203 315.82617,361.98828 82.951172,489.32812 V 3.984375 Z\"],\n\"engineer\": [\"m 499.24609,1.3984375 c -150.94466,0 -274.21249,122.8725225 -274.21289,273.5742225 2.5e-4,90.75618 44.7433,171.37165 113.27735,221.18359 -34.75452,9.40419 -67.71812,21.81569 -97.69727,37.3457 C 161.04323,574.7214 99.630859,643.34488 99.630859,732.99023 V 999.01172 H 905.75977 V 732.99023 c 0,-88.92601 -54.12283,-157.83784 -126.98243,-198.86132 C 745.03095,515.12805 707.0615,501.01483 666.77539,491.19922 731.56472,441.08736 773.45875,362.7812 773.45898,274.97266 773.45858,124.27096 650.19076,1.3984311 499.24609,1.3984375 Z m 0,75.0078125 c 110.51612,-5e-6 199.20479,88.51209 199.20508,198.56641 -2.9e-4,110.05431 -88.68896,198.56641 -199.20508,198.5664 -110.5161,0 -199.20478,-88.51209 -199.20507,-198.5664 2.9e-4,-110.05432 88.68896,-198.56641 199.20507,-198.56641 z m 20.26172,472.41406 c 83.52673,0.70766 165.33749,18.5003 222.46875,50.66797 57.13127,32.16767 88.77539,73.3441 88.77539,133.50195 V 924.00391 H 174.63867 V 732.99023 c 0,-56.35712 35.77807,-99.36918 100.47656,-132.88476 64.6985,-33.51558 155.47705,-52.03847 244.39258,-51.28516 z\"],\n\"engineering\": [\"M 241.56055,73.769531 0,473.96484 271.56641,928.61133 H 754.68555 L 998.95312,527.49609 724.68359,73.769531 Z m 30.00586,54.447269 h 423.11132 l 30.00391,54.44726 173.8125,299.37891 -203.81641,337.67187 H 271.56641 l -208.697269,-345.75 z m 210.53711,208.08984 c -75.76335,0 -137.19727,62.41337 -137.19727,139.38086 0,76.96747 61.43392,139.38086 137.19727,139.38086 75.76332,0 137.20117,-62.41339 137.20117,-139.38086 0,-76.96749 -61.43785,-139.38086 -137.20117,-139.38086 z m -12.88282,2.28906 a 136.39852,138.56638 0 0 0 -2.51562,0.28907 c 0.83933,-0.0965 1.67172,-0.20822 2.51562,-0.28907 z m -27.2832,5.49024 a 136.39852,138.56638 0 0 0 -1.08789,0.38672 c 0.36738,-0.1191 0.71915,-0.27073 1.08789,-0.38672 z m -35.33203,17.17578 a 136.39852,138.56638 0 0 0 -0.37695,0.24023 c 0.12278,-0.0844 0.25388,-0.15627 0.37695,-0.24023 z m -19.39649,16.10156 a 136.39852,138.56638 0 0 0 -1.88671,1.91797 c 0.62369,-0.64612 1.25069,-1.28438 1.88671,-1.91797 z m -17.5039,21.24414 a 136.39852,138.56638 0 0 0 -0.24024,0.38867 c 0.0839,-0.12697 0.15591,-0.262 0.24024,-0.38867 z m 119.42187,2.08008 c 2.12285,0 4.20455,0.16975 6.28907,0.32227 a 87.097468,88.481753 0 0 1 11.38867,1.52343 c 3.52218,0.74214 6.93399,1.7693 10.28515,2.93164 a 87.097468,88.481753 0 0 1 9.86524,4.15039 c 3.43217,1.69852 6.76805,3.56031 9.92773,5.6875 a 87.097468,88.481753 0 0 1 8.99024,7.00782 c 3.04943,2.69432 5.90656,5.59728 8.55859,8.69531 a 87.097468,88.481753 0 0 1 6.90039,9.13672 c 2.09047,3.20527 3.92009,6.58905 5.58985,10.07031 a 87.097468,88.481753 0 0 1 4.09374,10.04492 c 1.14311,3.40316 2.153,6.86666 2.88282,10.44336 a 87.097468,88.481753 0 0 1 1.49609,11.54688 c 0.15075,2.12202 0.31836,4.24121 0.31836,6.40234 0,48.58646 -38.75961,87.96291 -86.58594,87.96289 -2.12399,0 -4.20538,-0.16958 -6.29101,-0.32226 a 87.097468,88.481753 0 0 1 -11.37891,-1.52149 c -3.52988,-0.74353 -6.9485,-1.77391 -10.30664,-2.93945 a 87.097468,88.481753 0 0 1 -9.83789,-4.13867 c -3.43702,-1.70031 -6.77951,-3.56322 -9.94336,-5.69336 a 87.097468,88.481753 0 0 1 -8.98047,-7 c -3.05305,-2.69692 -5.91353,-5.6036 -8.56836,-8.70508 a 87.097468,88.481753 0 0 1 -6.89258,-9.12695 c -2.09697,-3.21441 -3.93167,-6.6096 -5.60546,-10.10157 a 87.097468,88.481753 0 0 1 -4.08985,-10.0332 c -1.14014,-3.39558 -2.14626,-6.85161 -2.875,-10.41992 a 87.097468,88.481753 0 0 1 -1.5,-11.57422 c -0.1501,-2.11741 -0.3164,-4.2304 -0.3164,-6.38672 0,-2.1552 0.16646,-4.26845 0.3164,-6.38477 a 87.097468,88.481753 0 0 1 1.5,-11.58007 c 0.72726,-3.56061 1.73026,-7.00982 2.86719,-10.39844 a 87.097468,88.481753 0 0 1 4.10742,-10.07422 c 1.66986,-3.48126 3.49927,-6.86504 5.58985,-10.07031 a 87.097468,88.481753 0 0 1 6.90039,-9.13672 c 2.65432,-3.10057 5.51404,-6.00694 8.5664,-8.70313 a 87.097468,88.481753 0 0 1 8.98047,-7 c 3.16385,-2.13002 6.50634,-3.99315 9.94336,-5.69335 a 87.097468,88.481753 0 0 1 9.83789,-4.13868 c 3.35681,-1.16501 6.77432,-2.19414 10.30273,-2.9375 a 87.097468,88.481753 0 0 1 11.38282,-1.52148 c 2.08564,-0.15268 4.16701,-0.32422 6.29101,-0.32422 z m -136.16797,33.04102 a 136.39852,138.56638 0 0 0 -0.40039,1.16406 c 0.12022,-0.39451 0.27679,-0.77108 0.40039,-1.16406 z m -5.50781,26.23828 a 136.39852,138.56638 0 0 0 -0.29883,2.68359 c 0.0833,-0.90036 0.1986,-1.78836 0.29883,-2.68359 z m -0.29883,28.75781 a 136.39852,138.56638 0 0 0 0.29883,2.68555 c -0.1003,-0.89581 -0.21552,-1.78461 -0.29883,-2.68555 z m 5.40625,27.75781 a 136.39852,138.56638 0 0 0 0.40235,1.16797 c -0.12404,-0.39432 -0.28172,-0.77211 -0.40235,-1.16797 z m 16.90625,35.89649 a 136.39852,138.56638 0 0 0 0.24024,0.38867 c -0.0843,-0.12667 -0.15632,-0.2617 -0.24024,-0.38867 z m 15.86328,19.72265 A 136.39852,138.56638 0 0 0 387.19727,574 c -0.62979,-0.62751 -1.25146,-1.25863 -1.86915,-1.89844 z m 20.89454,17.76953 a 136.39852,138.56638 0 0 0 0.41406,0.26368 c -0.13518,-0.0922 -0.27923,-0.17103 -0.41406,-0.26368 z m 34.62695,17.03125 a 136.39852,138.56638 0 0 0 1.08789,0.38672 c -0.36874,-0.11599 -0.72051,-0.26762 -1.08789,-0.38672 z m 25.8125,5.58399 a 136.39852,138.56638 0 0 0 2.58789,0.29687 c -0.86815,-0.083 -1.72459,-0.19734 -2.58789,-0.29687 z\"],\n\"exit\": [\"m 138.65464,11.269287 v 489.346823 2.42038 489.34683 h 24.20391 598.42988 24.75936 V 906.43581 761.77726 h -58.25011 v 0.002 H 703.09031 V 906.43581 H 221.10867 V 503.03649 500.61611 97.216804 H 703.09031 V 241.87299 h 24.70737 v 0.002 h 58.25011 V 97.216804 11.269287 H 761.28843 162.85855 Z m 425.3412,234.220103 -164.5937,164.5937 -90.53302,90.53302 h -0.26946 l -1.07546,1.07546 0.13473,0.13473 -0.13473,0.13474 1.07546,1.07545 h 0.26946 l 90.53302,90.53303 164.5937,164.5937 1.60019,-1.60256 -1.32366,-159.18799 h 342.96044 v -94.33618 -2.42038 -94.33617 H 564.27237 l 1.32366,-159.18799 z\"],\n\"fleet-carrier-lg\": [\"m 385.7263,66.755573 -267.40371,463.156457 -24.782793,42.92205 1.92871,1.1148 -0.963486,0.55652 28.861079,41.08379 113.58692,156.2881 35.98462,39.93052 163.23351,1.22436 41.25126,-88.59685 h 42.99184 l 3.56177,-42.05086 H 456.05181 L 416.37733,771.84147 303.98656,771.42859 282.07857,745.82492 170.27253,596.65861 153.70894,572.83408 163.44814,555.96266 415.81,118.86378 H 520.41425 V 66.755573 H 387.65327 v 1.113052 z m 58.29608,88.583257 v 0.2574 l -244.39484,423.30573 -0.003,0.002 -0.21914,0.12696 122.06351,149.72632 0.21913,-0.12663 h 77.06164 L 436.7132,646.2363 h 83.70153 v -32.84672 h -97.94859 l -39.44829,79.00007 h -44.31577 c 0,0 -98.91798,-115.76076 -99.43377,-117.68572 l 224.50204,-386.8466 h 56.6439 v -32.5185 z\",\n\"m 385.7263,66.755573 -267.40371,463.156457 -24.782793,42.92205 1.92871,1.1148 -0.963486,0.55652 28.861079,41.08379 113.58692,156.2881 35.98462,39.93052 163.23351,1.22436 41.25126,-88.59685 h 42.99184 l 3.56177,-42.05086 H 456.05181 L 416.37733,771.84147 303.98656,771.42859 282.07857,745.82492 170.27253,596.65861 153.70894,572.83408 163.44814,555.96266 415.81,118.86378 H 520.41425 V 66.755573 H 387.65327 v 1.113052 z m 58.29608,88.583257 v 0.2574 l -244.39484,423.30573 -0.003,0.002 -0.21914,0.12696 122.06351,149.72632 0.21913,-0.12663 h 77.06164 L 436.7132,646.2363 h 83.70153 v -32.84672 h -97.94859 l -39.44829,79.00007 h -44.31577 c 0,0 -98.91798,-115.76076 -99.43377,-117.68572 l 224.50204,-386.8466 h 56.6439 v -32.5185 z\",\n\"m -1283.9809,950.36845 h 178.0309 v -41.7688 h -178.0309 z m 89.0155,106.13355 c 69.9614,0 126.6758,-56.71438 126.6758,-126.67571 0,-69.96132 -56.7144,-126.67582 -126.6758,-126.67582 -69.9613,0 -126.6759,56.7145 -126.6759,126.67582 0,69.96133 56.7146,126.67571 126.6759,126.67571 m 0,25.3352 c -20.5106,0 -40.4205,-4.0227 -59.1775,-11.9561 -18.1043,-7.6573 -34.3586,-18.6146 -48.3114,-32.5673 -13.9515,-13.9521 -24.9086,-30.2064 -32.5673,-48.31067 -7.932,-18.7563 -11.9548,-38.66633 -11.9548,-59.17684 0,-20.50982 4.0228,-40.41986 11.9562,-59.17749 7.6573,-18.10436 18.6144,-34.35859 32.568,-48.31068 13.9521,-13.95281 30.2056,-24.91003 48.3107,-32.56799 18.7556,-7.93193 38.6655,-11.95483 59.1761,-11.95483 20.5098,0 40.4198,4.0229 59.1774,11.95618 18.1044,7.65875 34.3586,18.61587 48.3115,32.56798 13.9521,13.9521 24.9092,30.20498 32.5673,48.31081 7.9319,18.75616 11.9547,38.6662 11.9547,59.17602 0,20.51051 -4.0228,40.42054 -11.9561,59.1775 -7.6581,18.10431 -18.6151,34.35851 -32.568,48.31061 -13.9521,13.9521 -30.205,24.9094 -48.3107,32.5673 -18.7563,7.9328 -38.6663,11.9555 -59.1761,11.9555 z\"],\n\"fleet-carrier\": [\"M 385.7263,66.755573 C 288.3288,235.44751 190.9402,437.66796 93.539797,606.35858 l 1.92871,1.1148 -0.963486,0.55652 C 154.1958,689.88175 214.30142,746.08383 272.93764,811.80781 l 143.41647,1.22436 61.0683,-88.59685 h 42.99184 l 3.56177,-42.05086 h -69.81876 l -61.27241,89.45701 -88.89829,-0.41288 C 250.24048,705.36557 195.48846,666.14267 153.70894,606.35858 241.19837,453.97286 328.46226,267.96079 415.81,115.51133 H 520.41425 V 66.755573 H 387.65327 v 1.113052 z\",\n\"M 385.7263,66.755573 C 288.3288,235.44751 190.9402,437.66796 93.539797,606.35858 l 1.92871,1.1148 -0.963486,0.55652 C 154.1958,689.88175 214.30142,746.08383 272.93764,811.80781 l 143.41647,1.22436 61.0683,-88.59685 h 42.99184 l 3.56177,-42.05086 h -69.81876 l -61.27241,89.45701 -88.89829,-0.41288 C 246.64201,700.33821 200.61452,673.82604 153.70894,606.35858 241.19837,453.97286 328.46226,267.96079 415.81,115.51133 H 520.41425 V 66.755573 H 387.65327 v 1.113052 z\",\n\"m -1320.2963,956.45077 h 246.6149 V 898.5911 h -246.6149 z m 123.3074,137.50013 c 96.9131,0 166.0884,-69.0427 166.0884,-165.95589 0,-96.91298 -69.1753,-165.95577 -166.0884,-165.95577 -96.9129,0 -166.0885,78.563 -166.0885,175.47598 0,96.91308 69.1756,156.43568 166.0885,156.43568 m 0,44.6154 c -28.4119,0 -55.9919,-5.5725 -81.9748,-16.562 -25.0788,-10.6072 -47.5948,-25.7857 -66.9227,-45.1135 -19.3262,-19.327 -34.5043,-41.8429 -45.1135,-66.9218 -10.9875,-25.98199 -16.5601,-53.56207 -16.5601,-81.97399 0,-28.41095 5.5726,-55.99106 16.562,-81.97482 10.6073,-25.07883 25.7854,-47.59479 45.1145,-66.92172 19.3269,-19.32794 41.842,-34.50629 66.9217,-45.11438 25.981,-10.9876 53.561,-16.56027 81.9729,-16.56027 28.411,0 55.9911,5.57267 81.9747,16.56215 25.0789,10.60917 47.5949,25.78738 66.9229,45.11435 19.3269,19.32696 34.5051,41.84104 45.1136,66.92191 10.98746,25.98172 16.55999,53.56183 16.55999,81.97278 0,28.41192 -5.57253,55.992 -16.56199,81.97499 -10.6085,25.0788 -25.7865,47.5947 -45.1145,66.9217 -19.327,19.3269 -41.8411,34.5054 -66.9217,45.1134 -25.9819,10.9887 -53.562,16.5612 -81.973,16.5612 z\"],\n\"fuel\": [\"m 775.39859,122.29472 c 0,0 -205.30175,258.46797 -210.13332,408.81369 a 199.34701,219.61959 0 0 0 -2.44967,33.38405 199.34701,219.61959 0 0 0 199.34626,219.61851 199.34701,219.61959 0 0 0 199.34626,-219.61851 199.34701,219.61959 0 0 0 -1.69597,-28.20139 C 957.16086,381.80152 775.39859,122.29472 775.39859,122.29472 Z\",\n\"M 180.69531,306.17578 V 459.85742 H 27.728516 V 565.18359 H 180.69531 V 711.66211 H 286.02148 V 565.18359 H 433.21484 V 459.85742 H 286.02148 V 306.17578 Z\"],\n\"fullscreen-exit\": [\"m 643.803,352.17773 c 0,-40.07813 0,-80.15625 0,-120.23438 V 20 L 750.65652,125.08984 851.56081,24.18554 971.79519,144.41992 871.89284,244.32226 979.428,350.08203 v 2.0957 H 764.03738 Z\",\n\"m 355.625,352.17773 c 0,-40.07813 0,-80.15625 0,-120.23438 V 20 L 248.77147,125.08984 147.86718,24.18554 27.6328,144.41992 127.53515,244.32226 20,350.08203 v 2.0957 h 215.39061 z\",\n\"m 355.625,647.50793 c 0,40.07814 0,80.15628 0,120.23442 V 979.6857 L 248.77148,874.59586 147.86719,975.50016 27.63281,855.26578 127.53516,755.36344 20,649.60367 v -2.09574 h 215.39062 z\",\n\"m 643.803,647.50793 c 0,40.07814 0,80.15628 0,120.23442 V 979.6857 L 750.65651,874.59586 851.5608,975.50016 971.79518,855.26578 871.89283,755.36344 979.42798,649.60367 v -2.09574 H 764.03737 Z\"],\n\"fullscreen-window-exit\": [\"M 0,0 V 1000.4895 H 1000.2189 V 0 Z M 50,157.80245 H 950 V 950 H 50 Z\",\n\"M 593.93972,511.02726 V 435.65207 412.13136 237.80245 l 87.8898,86.43912 82.9964,-82.99641 98.8959,98.8959 -82.17228,82.17227 L 870,509.30349 v 1.72377 H 692.83562 Z\",\n\"M 406.06028,596.77519 V 672.15038 695.67109 870 l -87.8898,-86.43912 -82.9964,82.99641 -98.8959,-98.8959 82.17228,-82.17227 L 130,598.49896 v -1.72377 h 177.16438 z\"],\n\"fullscreen-window\": [\"M 0,0 V 1000.4895 H 1000.2189 V 0 Z M 50,157.80245 H 950 V 950 H 50 Z\",\n\"m 850,257.80245 v 75.37519 23.52071 174.32891 l -87.8898,-86.43912 -82.9964,82.99641 -98.8959,-98.8959 82.17228,-82.17227 -88.45046,-86.99016 v -1.72377 H 751.1041 Z\",\n\"M 150,850 V 774.62481 751.1041 576.77519 l 87.8898,86.43912 82.9964,-82.99641 98.8959,98.8959 -82.17228,82.17227 88.45046,86.99016 V 850 H 248.8959 Z\"],\n\"fullscreen\": [\"M 0,0 C 0,40.078127 0,80.156253 0,120.23438 V 332.17773 L 106.85352,227.08789 207.75781,327.99219 327.99219,207.75781 228.08984,107.85547 335.625,2.0957031 V 0 H 120.23438 Z\",\n\"m 999.428,0 c 0,40.078127 0,80.156253 0,120.23438 V 332.17773 L 892.57447,227.08789 791.67018,327.99219 671.4358,207.75781 771.33815,107.85547 663.803,2.0957027 V 0 h 215.39061 z\",\n\"M 0,999.6857 C 0,959.60756 0,919.52942 0,879.45128 V 667.50793 L 106.85352,772.59777 207.75781,671.69347 327.99219,791.92785 228.08984,891.83019 335.625,997.58996 v 2.09574 H 120.23438 Z\",\n\"m 999.42798,999.6857 c 0,-40.07814 0,-80.15628 0,-120.23442 V 667.50793 L 892.57447,772.59777 791.67018,671.69347 671.4358,791.92785 771.33815,891.83019 663.803,997.58996 v 2.09574 h 215.39061 z\"],\n\"help\": [\"m 503.16406,34.638672 c -122.95463,0 -240.90951,48.858732 -327.85156,135.800778 -86.942054,86.94206 -135.80078,204.89694 -135.800781,327.85157 0,122.95463 48.858727,240.9095 135.800781,327.85156 86.94205,86.94205 204.89693,135.80078 327.85156,135.80078 122.95463,0 240.90951,-48.85873 327.85156,-135.80078 C 917.95768,739.20052 966.81641,621.24565 966.81641,498.29102 966.8164,375.33639 917.95768,257.38151 831.01562,170.43945 744.07358,83.497404 626.11869,34.638672 503.16406,34.638672 Z M 508.5293,238.2207 h 0.002 c 41.1601,1e-4 71.50709,3.19359 92.42578,10.74024 30.99533,10.99671 51.83643,32.55122 59.08203,62.11328 l 0.008,0.0273 0.006,0.0274 c 3.39066,14.1791 4.57032,37.99801 4.57032,74.20117 0,39.69673 -1.49996,64.72769 -7.3125,79.77344 v 0.002 c -5.70925,14.83802 -13.90675,26.76504 -24.84766,34.89258 l -0.0547,0.0391 -0.0547,0.041 c -12.19072,8.80442 -37.51843,19.26155 -80.32227,35.18555 -10.30681,4.07864 -15.32124,8.68252 -15.61914,9.21875 l -0.19727,0.35547 -0.22461,0.33594 c 0.24046,-0.36068 -2.22656,7.4896 -2.22656,19.84375 v 68.75 10 h -81.32812 v -85 c 0,-35.026 9.13041,-61.48707 29.78515,-75.46875 l 0.11133,-0.0742 0.11133,-0.0723 c 11.61155,-7.41849 33.79377,-16.04822 69.64062,-28.34765 0.003,-10e-4 0.007,-0.003 0.01,-0.004 17.1713,-6.04773 26.21498,-13.46185 29.4375,-20.24609 l 0.0762,-0.16211 0.084,-0.16016 c 1.44664,-2.78203 3.94921,-15.74118 3.94921,-35.23047 0,-17.467 -0.2935,-31.48955 -0.86328,-41.93554 -0.56851,-10.42277 -1.64495,-17.66679 -2.22461,-19.61524 -4.01004,-12.80881 -10.989,-18.75466 -25.64062,-21.16015 l -0.0586,-0.01 -0.0586,-0.01 c -7.3175,-1.29132 -23.86936,-2.1914 -47.87304,-2.1914 -24.35359,0 -41.05365,1.78561 -47.3125,3.81054 l -0.10157,0.0332 -0.10156,0.0312 c -12.15621,3.64687 -18.36843,11.13264 -21.10352,27.83789 -0.57486,4.06891 -1.06835,15.38976 -1.06835,32.11523 v 21.32813 H 359.46875 V 374.7832 c 0,-27.21124 1.46454,-47.4211 4.97461,-61.7539 l 0.002,-0.002 c 7.11897,-29.04543 25.12872,-50.66029 51.89649,-61.90039 21.12634,-9.0836 51.44091,-12.90613 92.1875,-12.90625 z m -61.16992,457.42188 h 82.26562 10 v 102.8125 h -92.26562 z\"],\n\"home\": [\"M 502.863,16.559214 19.827687,377.07535 V 519.63766 L 75.47307,474.70123 v 461.40224 h 316.09916 v -333.8723 h 222.58154 v 333.8723 H 930.25293 V 474.70123 l 55.64538,44.93643 V 377.07535 Z\"],\n\"info\": [\"M 503.16406,11.729165 C 226.87309,26.533484 20.388159,247.28115 16.602212,498.29102 31.406532,774.58198 252.1542,981.06692 503.16406,984.85287 779.45502,970.04855 985.93997,749.30088 989.72592,498.29102 974.92158,222.00006 754.17394,15.515111 503.16406,11.729165 Z m 0,92.993495 C 738.02019,117.29974 893.51448,284.94837 896.73036,498.29102 884.1533,733.14616 716.50547,888.64145 503.16406,891.85732 268.30809,879.28041 112.81159,711.6335 109.59571,498.29102 122.17263,263.43407 289.82034,107.93856 503.16406,104.72266 Z\"],\n\"inventory\": [\"M 497.31836,6.9003906 113.33594,266.1582 113.08789,715.22852 C 110.7855,714.8367 497.39243,991.43357 497.4082,991.75586 l 384.05664,-276.67383 -0.25,-448.98437 z M 497.00195,70.644531 796.58008,275.70703 497.00391,477.36914 197.42578,275.70508 Z m 334.36914,257.189449 0.2168,351.46485 -305.83203,224.30664 -0.2168,-379.46289 z m -668.20312,24.11914 305.82422,209.08204 -0.0117,21.85156 L 163.1543,373.80078 Z m -0.0371,59.22071 305.82812,209.08594 -0.0117,21.08398 -305.82813,-209.08789 z m -0.0352,58.45312 305.83008,209.08985 -0.0117,19.93554 -305.83008,-209.08789 z m 608.51758,6.35743 -190.69531,129 -1.375,150.38671 190.69336,-129 z m -608.55273,50.95117 305.83398,209.08984 -0.0117,20.85547 -305.83593,-209.0918 z m -0.0352,58.22656 305.83594,209.0918 -0.0137,21.84961 -305.83594,-209.09375 z m -0.0371,59.2207 305.83984,209.09375 -0.0137,21.08399 -305.83984,-209.09571 z\"],\n\"location-filled\": [\"m 506.58376,16.367513 -1.41975,0.884477 h -0.002 l -319.92355,199.34752 1.30787,0.81552 -0.83719,0.52783 319.4548,770.20187 v 2.53455 l 0.5247,-1.26728 0.89312,2.15176 v -4.30352 l 319.45481,-770.20185 -0.83719,-0.52783 1.30786,-0.81554 z m -0.002,34.813237 264.05571,164.53427 -264.05571,164.53191 -1.41782,-0.88449 v 1.76896 L 241.1083,216.59951 505.16401,52.065227 l 1.41782,0.884479 z\"],\n\"location\": [\"m 506.58376,16.367513 -1.41975,0.884477 h -0.002 l -319.92355,199.34752 1.30787,0.81552 -0.83719,0.52783 319.4548,770.20187 v 2.53455 l 0.5247,-1.26728 0.89312,2.15176 v -4.30352 l 319.45481,-770.20185 -0.83719,-0.52783 1.30786,-0.81554 z m -0.002,34.813237 264.05571,164.53427 -264.05571,164.53191 -1.41782,-0.88449 v 1.76896 L 241.1083,216.59951 505.16401,52.065227 l 1.41782,0.884479 z M 766.7911,252.92254 505.68871,882.43774 244.95474,253.80701 l 260.20927,162.13762 1.41782,-0.88447 z\"],\n\"logo\": [\"m 300.23543,247.3766 -4.67638,14.71731 -28.0203,88.18726 -99.88879,33.74683 99.88879,33.74686 32.69668,102.90455 32.69604,-102.90455 99.8883,-33.74686 c 6.25484,0.0512 5.47609,-1.90694 -99.8883,-33.74683 z\",\n\"m 416.8326,158.29649 c -202.11915,3e-5 -366.367702,164.24854 -366.367697,366.3677 2e-6,97.15964 38.605057,190.3599 107.307297,259.06214 68.70223,68.70223 161.90079,107.30553 259.0604,107.30555 h 0.0485 0.0485 c 31.44439,-0.16446 62.6478,-4.45745 92.89188,-12.56156 l -11.43997,-35.48638 c -26.59175,6.99095 -53.98648,10.72408 -81.60256,10.87215 -87.29504,-0.0142 -170.99246,-34.68987 -232.72042,-96.41783 -61.74064,-61.74063 -96.41784,-145.45962 -96.41784,-232.77407 -1e-5,-182.02822 147.1637,-329.19361 329.19191,-329.19364 59.00661,0.002 116.08311,15.91106 165.831,44.99799 l 36.58056,-17.30533 C 556.62281,176.52965 496.44354,158.29919 416.8326,158.29649 Z\",\n\"m 961.23717,108.02504 -406.9707,171.5957 -77.46875,223.21289 -230.4668,77.85938 230.4668,77.86328 75.4375,237.42382 c 2.00371,4.49193 178.57421,-72.58007 178.57421,-72.58007 l 30.97071,-98.05664 -161.6875,68.05859 v -31.92383 l 173.3164,-72.95312 36.35352,-115.09375 -209.66992,88.25586 V 629.76332 L 821.39147,536.61293 858.75865,418.30238 600.09264,527.18129 V 495.25551 L 870.38951,381.48011 906.01256,268.69496 600.09264,397.46644 V 365.54066 L 917.83287,231.79457 Z\"],\n\"materials-encoded\": [\"m 808.63991,66.772298 c -36.9918,0.57877 -72.95392,13.64432 -100.92322,38.096022 -9.74964,8.52346 -18.52751,18.42983 -26.0403,29.67393 -48.08163,71.96217 -25.72439,170.86883 48.77297,220.64436 74.4974,49.77554 174.42929,32.57692 222.51095,-39.38524 48.08169,-71.96224 25.7219,-170.86631 -48.77545,-220.641852 -29.4643,-19.6866 -62.90511,-28.89791 -95.54495,-28.38722 z m 6.96615,53.889932 c 37.56502,0.34501 74.32296,22.36613 92.94415,60.12437 25.90771,52.53326 6.27371,114.37856 -43.17566,138.7654 -49.44937,24.38688 -110.46594,2.31677 -136.37367,-50.21647 -21.85966,-44.32492 -11.29756,-95.2788 22.2399,-124.7684 6.21071,-5.46096 13.2093,-10.18654 20.93577,-13.997 13.90761,-6.85879 28.73016,-10.04291 43.42951,-9.9079 z m -579.49909,23.13089 -49.39517,43.32 418.38927,477.06518 0.15182,-0.13192 185.46271,211.47313 49.39765,-43.32001 -418.38927,-477.06516 -0.15182,0.1319 z m 251.64978,54.39516 -47.80979,41.92876 326.1171,371.85374 47.8098,-41.93126 z m -239.42729,209.97985 -47.80981,41.93125 326.1171,371.85125 47.8098,-41.93126 z m -71.51312,206.41839 c -36.9918,0.57877 -72.95392,13.64432 -100.923235,38.09601 -9.749638,8.52346 -18.527498,18.42984 -26.04028,29.67394 -48.0816378,71.96216 -25.72439,170.86882 48.772966,220.64435 74.497399,49.77554 174.429289,32.57692 222.510949,-39.38523 48.0817,-71.96225 25.72439,-170.86632 -48.77296,-220.64186 -29.4643,-19.6866 -62.90761,-28.89791 -95.54744,-28.38721 z m 6.96614,53.88992 c 37.56502,0.34502 74.32545,22.36613 92.94664,60.12438 25.90771,52.53326 6.27372,114.37607 -43.17566,138.7629 -49.44936,24.38689 -110.46842,2.31678 -136.376151,-50.21647 -21.859661,-44.3249 -11.297577,-95.27631 22.239891,-124.7659 6.21071,-5.46097 13.20928,-10.18655 20.93576,-13.99701 13.90763,-6.85879 28.73017,-10.04291 43.42952,-9.9079 z\"],\n\"materials-grade-1\": [\"m 305.878,483.814 231.265,-111.948 7.283,-134.18 -190.834,84.465 z m 522.448,-75.365 -46.92,-0.004 -142.01,231.551 23.473,38.237 z M 269.201,683.58 244.673,723.578 582.581,723.602 558.027,683.6 Z M 164.598,677.869 188.061,639.607 46.303,408.393 -0.619,408.392 Z M 827.721,316.288 661.083,44.495 637.621,82.756 780.801,316.286 Z M 554.445,42.1 578.973,2.102 247.811,2.078 272.367,42.081 Z M 0,316.231 46.921,316.235 189.656,83.5 166.185,45.262 Z\"],\n\"materials-grade-2\": [\"M 221.21289,0 34.207031,304.96484 H 81.128906 L 243.60547,40 H 641.24023 L 803.9707,305.37695 h 46.91992 L 663.63477,0 Z m 308.93945,162.16797 -197.48632,67.46875 -61.65625,156.875 240.16015,-91.31445 z m 69.92774,163.73047 -240.16016,91.31445 -18.98047,133.0293 197.48243,-67.46875 z M 30.154297,409.92383 221.21289,721.5 H 663.63477 L 854.43945,410.33789 H 807.51758 L 641.24023,681.5 H 243.60547 L 77.076172,409.92383 Z\"],\n\"materials-grade-3\": [\"M 432.275,69.77 322.003,246.948 373.487,407.449 501.726,184.809 Z M 717.944,485.799 619.64,301.711 454.899,266.047 583.593,488.426 Z m -503.126,39.383 208.577,6.908 113.256,-124.837 -256.933,0.263 z M 641.24,40 837.925,360.75 641.24,681.5 H 243.605 L 46.921,360.75 243.605,40 H 641.24 M 663.634,0 H 221.212 L 0,360.75 221.212,721.5 H 663.634 L 884.846,360.75 Z\"],\n\"materials-grade-4\": [\"M 518.452,40 674.205,294.002 518.452,548.005 H 202.676 L 46.921,294.002 202.676,40 H 518.452 M 540.846,0 H 180.282 L 0,294.002 180.282,588.005 H 540.845 L 721.126,294.002 Z m -180.51,212.419 137.221,136.52 97.212,-28.258 -107.608,-114.627 z m 81.811,81.357 -136.521,137.22 28.259,97.212 L 448.512,420.6 Z m -81.357,81.81 -137.219,-136.52 -97.213,28.259 107.608,114.626 z M 278.98,294.23 415.5,157.01 387.241,59.797 272.614,167.405 Z\"],\n\"materials-grade-5\": [\"M 566.08,54 733.58,323.5 566.08,593 h -335 L 63.58,323.5 231.08,54 h 334.5 M 596.098,0 h -30.018 -335 -30.018 L 185.216,25.245 17.717,294.62 0,323.063 17.717,351.537 185.217,621.271 201.063,647 h 30.018 335 30.018 L 611.945,621.255 779.445,351.63 797.162,323.063 779.445,294.526 611.943,25.26 Z\"],\n\"materials-manufactured\": [\"M 413.01758 30.994141 C 361.04576 30.994141 315.25164 58.743072 289.67773 100.14453 C 283.01553 110.33558 277.53936 121.36573 273.61914 133.11328 C 238.69828 216.31676 195.94869 296.06316 155.92383 376.90039 C 131.94943 378.52079 112.16915 394.17767 104.13281 415.49219 C 100.99384 422.46675 99.232424 430.13836 99.232422 438.26758 C 99.232422 438.41648 99.242971 438.56234 99.244141 438.71094 L 19.664062 509.56836 C 28.063538 533.19124 24.360733 594.54912 32.517578 627 L 86.283203 617.20898 L 78.693359 530.29688 L 125.80078 491.01562 C 127.2456 490.14722 128.46776 489.55239 129.77539 488.85352 C 137.35528 493.22727 145.92566 496.20722 155.01367 497.42383 L 166.32031 572.11914 L 113.66406 632.85938 L 162.07422 669.70117 C 162.10192 669.75677 233.25977 585.76172 233.25977 585.76172 L 216.27148 474.21875 C 224.45293 464.30792 229.38672 451.92493 229.38672 438.26758 C 229.38672 437.74213 229.35825 437.22479 229.34375 436.70312 C 247.07062 425.8757 423.63907 318.06393 424.06836 320.74805 L 522.55273 739.28906 C 537.0608 851.94474 633.91741 939.75195 750.35547 939.75195 C 876.7184 939.75195 980.10934 836.36294 980.10938 710 C 961.49192 562.52129 850.29843 478.74041 755.41406 367.82422 C 673.2514 277.27451 600.13112 168.3004 520.67188 79.203125 C 520.64778 79.137065 520.62967 79.083657 520.60547 79.017578 C 520.52597 78.799706 520.47387 78.619936 520.39453 78.402344 L 519.58789 78.011719 C 493.06061 49.157361 455.06179 30.994141 413.01758 30.994141 z M 413.01758 86.980469 C 462.43853 86.980469 501.90235 126.44429 501.90234 175.86523 C 501.90235 225.28618 462.43853 264.75 413.01758 264.75 C 363.59665 264.75 324.13281 225.28618 324.13281 175.86523 C 324.13282 126.44429 363.59665 86.980469 413.01758 86.980469 z M 410.94727 123.50781 A 53.341011 53.341011 0 0 0 357.60742 176.84961 A 53.341011 53.341011 0 0 0 410.94727 230.18945 A 53.341011 53.341011 0 0 0 464.28906 176.84961 A 53.341011 53.341011 0 0 0 410.94727 123.50781 z M 541.79688 241.92773 L 740.47266 480.49805 C 666.00379 483.69286 600.43476 522.7514 560.70312 580.75977 L 493.32031 296.25781 C 513.71841 282.57945 530.46393 263.85783 541.79688 241.92773 z M 293.55273 257.52734 C 302.94672 271.20034 314.62414 283.18523 328.01758 292.95117 L 249.00391 345.88086 L 293.55273 257.52734 z M 750.35547 569.03711 C 838.23019 572.82586 888.42604 631.45075 891.32031 710 C 891.32031 788.37734 828.7328 850.96094 750.35547 850.96094 C 671.97813 850.96094 609.39453 788.37734 609.39453 710 C 609.39453 631.62267 671.97813 569.03711 750.35547 569.03711 z M 746.77344 624.4043 A 88.901688 88.901688 0 0 0 657.87305 713.30469 A 88.901688 88.901688 0 0 0 746.77344 802.20703 A 88.901688 88.901688 0 0 0 835.67578 713.30469 A 88.901688 88.901688 0 0 0 746.77344 624.4043 z \"],\n\"materials-raw\": [\"M 494.0293,14.423828 A 100.94891,100.94891 0 0 0 393.91406,103.71094 C 215.65229,150.99311 83.873047,313.6687 83.873047,506.60156 c -3e-6,110.53334 43.923163,216.5716 122.082033,294.73047 52.60791,52.60791 117.87281,89.61968 188.61133,108.25195 a 100.94891,100.94891 0 0 0 98.1582,78.47461 100.94891,100.94891 0 0 0 97.38477,-74.47461 c 77.14975,-16.95649 148.58539,-55.5307 205.30664,-112.25195 78.15887,-78.15887 122.08008,-184.19713 122.08007,-294.73047 0,-110.53333 -43.9212,-216.5716 -122.08007,-294.73047 C 739.61757,156.07265 669.57751,117.8421 593.86914,100.4668 A 100.94891,100.94891 0 0 0 494.0293,14.423828 Z m 89.74023,146.705082 c 63.16155,15.18986 121.5174,47.47638 168.21485,94.17382 66.65714,66.65714 104.09179,157.0314 104.09179,251.29883 0,94.26743 -37.43466,184.64364 -104.09179,251.30078 -45.88238,45.88239 -103.00291,77.91313 -164.89454,93.42578 a 100.94891,100.94891 0 0 0 -94.36523,-65.16796 100.94891,100.94891 0 0 0 -92.65625,61.23632 C 343.66324,830.74289 291.72919,800.24677 249.38477,757.90234 182.72763,691.2452 145.29297,600.86899 145.29297,506.60156 c 0,-163.77974 110.16475,-301.18215 260.58594,-342.5625 a 100.94891,100.94891 0 0 0 88.15039,52.28125 100.94891,100.94891 0 0 0 89.74023,-55.1914 z M 494.55078,287.38867 A 212.9946,212.9946 0 0 0 281.55469,500.38281 212.9946,212.9946 0 0 0 494.55078,713.37695 212.9946,212.9946 0 0 0 707.54492,500.38281 212.9946,212.9946 0 0 0 494.55078,287.38867 Z\"],\n\"materials-xeno\": [\"m 406.76758,14.111328 -89.98242,151.119142 91.64453,152.32617 181.62304,1.20898 89.98047,-151.11718 C 649.48567,116.8719 618.93817,66.094899 588.39062,15.318359 Z m 25.21484,41.916016 131.64649,0.878906 66.42578,110.4082 -65.22071,109.53516 -131.64257,-0.875 L 366.76562,165.5625 Z M 102.74023,177.32617 12.759766,328.44531 104.4043,480.77539 l 181.625,1.20899 89.97851,-151.11915 c -30.548,-50.77646 -61.0961,-101.55387 -91.64453,-152.33007 z m 612.26172,12.5918 -89.97851,151.11914 91.64258,152.33008 181.62304,1.20898 89.98242,-151.12109 C 957.72043,292.6809 927.17517,241.90283 896.62695,191.12695 Z m -587.04297,29.32617 131.64649,0.87695 66.42578,110.41016 -65.2207,109.53516 L 129.16406,439.18945 62.738281,328.7793 Z m 612.26172,12.5918 131.64649,0.87695 66.42578,110.41016 -65.2207,109.53515 -131.64454,-0.8789 -66.42578,-110.40821 z m -331.8457,119.0332 -89.97852,151.12109 91.64258,152.32618 181.625,1.20898 89.97852,-151.11914 C 651.09155,453.63121 620.54573,402.85322 589.99805,352.07617 Z m -302.54102,156.89453 -89.980464,151.1211 91.644534,152.32812 181.625,1.20899 89.97851,-151.11915 C 348.55634,610.52481 318.00685,559.74899 287.45898,508.97266 Z m 601.16407,13.82813 -89.98243,151.12109 91.64454,152.32617 181.625,1.20899 89.97851,-151.11719 C 949.71617,624.35429 919.16862,573.57733 888.62109,522.80078 Z m -575.94727,28.08984 131.64649,0.87695 66.42578,110.41211 -65.21875,109.53321 -131.64453,-0.875 L 65.833984,659.2168 Z m 601.16211,13.82813 131.64649,0.87695 66.42773,110.4082 -65.22266,109.53711 -131.64257,-0.875 -66.42579,-110.41211 z M 402.9707,684.80664 312.99219,835.92773 404.63672,988.25781 586.25977,989.4668 676.24023,838.3457 C 645.69222,787.56927 615.14412,736.79377 584.5957,686.01758 Z m 25.21875,41.91992 131.64649,0.875 66.42578,110.41211 -65.2207,109.53321 -131.64454,-0.875 -66.42578,-110.41016 z\"],\n\"materials\": [\"M 177.95117,21.324219 66.8125,170.73242 l 71.89453,170.61133 183.03125,21.20117 c 37.04907,-49.8011 74.09409,-99.60522 111.14063,-149.4082 L 360.98438,42.525391 Z m 274.16016,217.873051 -111.13672,149.4082 71.89258,170.61133 183.0332,21.20117 c 37.04409,-49.80546 74.09333,-99.60709 111.14063,-149.41016 L 635.14453,260.39844 Z M 125.4707,373.50977 14.330078,522.91992 86.224609,693.53125 269.25781,714.73242 c 37.04658,-49.80312 74.0925,-99.60673 111.13867,-149.41015 L 308.50391,394.71094 Z m 606.38672,85.69335 -111.14062,149.40821 71.89453,170.61133 183.03515,21.20312 C 912.68969,750.62063 949.73726,700.81874 986.7832,651.01562 L 914.88867,480.4043 Z M 406.36719,590.13477 295.23047,739.54297 367.125,910.1543 550.15625,931.35547 C 587.20312,881.55273 624.25,831.75 661.29688,781.94727 L 589.40234,611.33789 Z\"],\n\"megaship-lg\": [\"m 453.89305,390.22652 h 151.27132 v 35.49059 H 453.89305 Z m 75.63567,-90.18088 c 59.44556,0 107.63538,48.18983 107.63538,107.63537 0,59.44554 -48.18982,107.63537 -107.63538,107.63537 -59.44555,0 -107.63536,-48.18983 -107.63536,-107.63537 0,-59.44554 48.18981,-107.63537 107.63536,-107.63537 m 0,-21.52708 c -17.42763,0 -34.34499,3.41811 -50.28258,10.15905 -15.38313,6.50633 -29.19421,15.81661 -41.04981,27.67217 -11.85443,11.85498 -21.1646,25.66605 -27.67218,41.04917 -6.73972,15.93707 -10.15786,32.85446 -10.15786,50.28206 0,17.42702 3.41814,34.34441 10.15903,50.28262 6.50641,15.38312 15.81658,29.19419 27.67275,41.04917 11.85502,11.85558 25.66553,21.16584 41.04923,27.67275 15.93643,6.73969 32.85379,10.15791 50.28142,10.15791 17.42704,0 34.34442,-3.41822 50.28258,-10.15906 15.38315,-6.50758 29.19422,-15.81775 41.04981,-27.67274 11.85501,-11.85498 21.16519,-25.66491 27.67219,-41.04929 6.73972,-15.93695 10.15787,-32.85434 10.15787,-50.28136 0,-17.4276 -3.41815,-34.34499 -10.15904,-50.28262 -6.50698,-15.38314 -15.81715,-29.19419 -27.67277,-41.04918 -11.85501,-11.85499 -25.66491,-21.16527 -41.0492,-27.67218 -15.93702,-6.74036 -32.8544,-10.15847 -50.28144,-10.15847 z M 238.28446,66.755979 v 2.2275 l -0.96422,-0.556422 -28.86145,49.989163 -85.09272,147.38299 -28.861412,49.98918 0.964219,0.55643 -1.928448,1.11465 24.781601,42.92244 267.40343,463.15527 1.92844,-1.11284 v 1.11284 h 227.90652 57.7211 v -1.11465 l 1.93025,1.11465 24.78162,-42.92425 150.42429,-260.5433 92.19571,-159.68772 24.78162,-42.92244 -1.92844,-1.11465 0.96422,-0.55643 -28.86146,-49.98918 -113.95234,-197.372153 -0.96604,0.558232 v -2.22931 h -49.56326 z m 30.08485,52.107911 h 504.71838 19.48022 l 14.78234,25.60448 99.87686,172.9911 -252.36009,437.09949 -9.74011,16.87029 H 615.56042 415.81031 L 163.4484,334.32976 l -9.7401,-16.87029 14.78415,-25.6063 85.09271,-147.3848 z m 17.48108,42.67233 -86.44479,149.72649 0.21931,0.12687 0.002,0.002 244.39619,423.30493 v 0.25738 h 172.88961 v -0.25738 l 244.39617,-423.30675 0.22113,-0.12686 -86.44299,-149.7265 -0.2193,0.12687 h -488.7981 z m 32.58242,47.78161 h 424.0716 l 30.67753,53.1356 30.67753,53.1356 L 697.8402,499.21739 591.82276,682.84576 H 469.11264 l -212.0367,-367.25673 30.67935,-53.1356 z\"],\n\"megaship\": [\"m 391.45686,373.11251 h 278.36978 v 65.30985 H 391.45686 Z M 530.64177,216.06589 c 109.39183,0 189.16642,79.77461 189.16642,189.16641 0,109.39179 -79.77459,189.1664 -189.16642,189.1664 -109.39182,0 -189.16639,-79.77461 -189.16639,-189.1664 0,-109.3918 79.77457,-189.16641 189.16639,-189.16641 m 0,-48.51858 c -32.07036,0 -63.20172,6.29001 -92.5301,18.6947 -28.30807,11.97296 -53.72324,29.10576 -75.53994,50.92238 -21.81455,21.81556 -38.94714,47.23072 -50.9224,75.53876 -12.40245,29.32743 -18.69251,60.45884 -18.69251,92.52915 0,32.06923 6.29006,63.20065 18.69466,92.53017 11.97311,28.30805 29.1057,53.7232 50.92345,75.53876 21.81563,21.81666 47.22976,38.94942 75.53887,50.92345 29.32625,12.40239 60.45761,18.69261 92.52797,18.69261 32.06927,0 63.20067,-6.29022 92.5301,-18.69473 28.3081,-11.97526 53.72326,-29.10785 75.53994,-50.92343 21.81561,-21.81555 38.94822,-47.22861 50.92241,-75.53898 12.40245,-29.3272 18.69254,-60.45862 18.69254,-92.52785 0,-32.07031 -6.29009,-63.20172 -18.69469,-92.53018 -11.97416,-28.30808 -29.10675,-53.7232 -50.92348,-75.53878 -21.81561,-21.81557 -47.22862,-38.94837 -75.53882,-50.9224 -29.32733,-12.40362 -60.45873,-18.69363 -92.528,-18.69363 z M 238.28446,66.755979 v 2.2275 l -0.96422,-0.556422 C 184.56724,159.79735 144.01884,230.02774 94.504658,315.78839 l 0.964219,0.55643 -1.928448,1.11465 C 190.93586,486.1518 288.33052,654.84457 385.72546,823.53718 l 1.92844,-1.11284 v 1.11284 h 285.62762 v -1.11465 l 1.93025,1.11465 C 784.59859,634.07214 873.35715,480.33559 967.39501,317.45947 l -1.92844,-1.11465 0.96422,-0.55643 C 918.82581,233.33483 871.22151,150.88088 823.61699,68.427057 l -0.96604,0.558232 v -2.22931 z m 30.08485,52.107911 h 524.1986 c 38.21905,66.19892 76.43935,132.39712 114.6592,198.59558 -87.36681,151.32321 -174.73333,302.6466 -262.1002,453.96978 H 415.81031 C 328.4432,620.10586 241.07525,468.78295 153.7083,317.45947 193.00385,249.40111 234.4035,177.68919 268.36931,118.86389 Z\"],\n\"menu\": [\"M 285.2231 -46.400706 L -19.828083 481.9636 L 590.27428 481.9636 L 285.2231 -46.400706 z \"],\n\"notifications-disabled\": [\"m 56.855469,104.07227 -25.462891,25.46289 v 615.07226 l 97.767582,-88.92383 v -72.78515 h 80.02148 l 95.58594,-86.93946 H 129.12891 V 390.81836 h 291.23437 l 95.64453,-86.99414 H 129.12891 V 198.68359 h 502.47461 l 104.01953,-94.61132 z m 920.492191,33.5957 -103.35157,94.00391 v 72.15234 h -79.32812 l -95.64453,86.99414 H 873.99609 V 495.95898 H 583.42773 l -95.58398,86.93946 h 112.62109 c 3.13391,3.84069 6.07532,7.97211 8.81055,12.41211 v 90.03906 l -235.4375,1.24414 -98.92773,89.98047 h 330.11718 l 103.07618,180.2539 44.10156,0.18165 105.17383,-180.43555 h 94.50586 l 25.46289,-25.46289 z\"],\n\"notifications\": [\"m 56.855469,104.07227 -25.462891,25.46289 v 621.57617 l 25.462891,25.46289 H 605.02734 l 103.07618,180.2539 44.10156,0.18165 105.17383,-180.43555 h 94.50586 l 25.46289,-25.46289 V 129.53516 l -25.46289,-25.46289 z m 72.273441,94.61132 H 873.99609 V 303.82422 H 129.12891 Z m 0,192.13477 H 873.99609 V 495.95898 H 129.12891 Z m 0.0312,192.08008 h 471.30468 c 3.13391,3.84069 6.07532,7.97211 8.81055,12.41211 v 90.03906 l -480.11523,2.53516 z\"],\n\"ocellus-starport\": [\"M 497.22461 26.697266 C 375.58497 26.697264 258.97462 76.729974 173.25195 165.375 C 87.529294 254.02002 39.558594 373.96976 39.558594 498.94336 C 39.558591 623.91695 87.529294 743.86864 173.25195 832.51367 C 258.97462 921.1587 375.58497 971.18946 497.22461 971.18945 C 618.86425 971.18945 735.47266 921.1587 821.19531 832.51367 C 906.91798 743.86865 954.89063 623.91695 954.89062 498.94336 C 954.89062 373.96976 906.91798 254.02002 821.19531 165.375 C 735.47266 76.729975 618.86425 26.697266 497.22461 26.697266 z M 497.22461 86.697266 C 602.43264 86.697266 703.38159 129.85511 778.06445 207.08398 C 852.74732 284.31287 894.89063 389.33583 894.89062 498.94336 C 894.89063 608.55089 852.74732 713.57386 778.06445 790.80273 C 703.38159 868.03162 602.43264 911.18945 497.22461 911.18945 C 392.01657 911.18945 291.06763 868.03162 216.38477 790.80273 C 141.70189 713.57386 99.558591 608.55089 99.558594 498.94336 C 99.558594 389.33583 141.70189 284.31287 216.38477 207.08398 C 291.06763 129.85511 392.01657 86.697264 497.22461 86.697266 z M 497.95508 266.73438 C 368.98002 269.27917 267.66193 374.05809 266.73438 497.95508 C 269.27938 626.92691 374.06059 728.24988 497.95508 729.17773 C 626.92715 726.63048 728.24985 621.84959 729.17773 497.95508 C 726.6306 368.98218 621.84938 267.66184 497.95508 266.73438 z M 497.95508 305.27148 C 604.37216 305.27148 690.64063 391.538 690.64062 497.95508 C 690.64062 604.37216 604.37216 690.64063 497.95508 690.64062 C 391.538 690.64062 305.27148 604.37216 305.27148 497.95508 C 305.27148 391.538 391.538 305.27148 497.95508 305.27148 z M 362.55469 466.70898 L 362.55469 530.24219 L 633.35547 530.24219 L 633.35547 466.70898 L 362.55469 466.70898 z \"],\n\"orbis-starport\": [\"M 495.70312,13.738281 C 370.30814,13.738282 250.09962,65.313566 161.73047,156.69531 73.361311,248.07706 23.908201,371.73258 23.908203,500.56445 c 0,128.83188 49.453108,252.48544 137.822267,343.86719 88.36915,91.38175 208.57767,142.95703 333.97265,142.95703 125.39501,0 245.60546,-51.57528 333.97461,-142.95703 C 918.0469,753.04989 967.5,629.39633 967.5,500.56445 967.5,371.73257 918.0469,248.07706 829.67773,156.69531 741.30858,65.313565 621.09813,13.738278 495.70312,13.738281 Z m 17.9629,62.314453 c 101.92688,4.626023 198.8205,48.434946 271.54687,123.640626 76.98853,79.61314 120.4336,187.87968 120.43359,300.87109 0,86.5875 -25.59417,170.34593 -72.16406,240.61524 C 784.57107,702.73461 735.6594,664.28883 686.74805,625.84375 751.99999,530.88172 728.35133,389.57311 636.20898,320.64453 601.24597,293.11203 558.04984,274.1959 513.66602,270.78125 Z m -41.27344,0.291016 v 194.74023 c -115.93333,8.67209 -211.73177,119.57135 -206.10352,235.52149 -3.70885,33.15127 18.32483,70.25436 18.48438,97.05273 L 140.86523,713.13281 C 105.17064,649.08862 85.759766,575.90374 85.759766,500.56445 85.759764,387.57305 129.20484,279.3065 206.19336,199.69336 277.64598,125.80484 372.43004,82.236682 472.39258,76.34375 Z m 22.67969,233.77148 C 604.20332,306.79077 699.24448,412.09377 684.79883,520.32617 676.89889,629.08025 562.77659,712.81289 456.63672,687.66406 349.34019,668.83852 277.48494,547.18332 312.93555,444.11523 c 23.32243,-78.21269 100.42594,-135.19484 182.13672,-134 z M 361.05859,469.90039 v 62.88281 h 268.02735 v -62.88281 z m -50.64062,166.10742 c 65.79707,94.45499 206.15116,122.3612 303.19922,60.63086 24.49162,-14.56939 48.20508,-39.3125 48.20508,-39.3125 0,0 103.46457,82.75013 147.19726,117.125 -7.55756,9.29192 -15.44505,18.33578 -23.80664,26.98242 -76.98853,79.61314 -181.05367,124.10352 -289.50977,124.10352 -108.45608,0 -212.52124,-44.49038 -289.50976,-124.10352 -15.97643,-16.52108 -30.41706,-34.33641 -43.41602,-53.11132 49.21359,-37.4383 98.42705,-74.87616 147.64063,-112.31446 z\"],\n\"outpost\": [\"M 732.83789 35.765625 L 732.83789 92.630859 L 761.83203 92.630859 L 761.83203 35.765625 L 732.83789 35.765625 z M 776.59766 35.765625 L 776.59766 331.53906 L 685.54102 331.53906 C 685.73051 352.53371 685.78306 373.80261 685.85938 395.02344 L 657.46094 395.02344 L 657.46094 309.375 L 538.32422 309.375 L 538.32422 343.65625 L 538.32422 395.02344 L 512.04688 395.02344 L 512.04688 309.34375 L 392.91016 309.34375 L 392.91016 343.625 L 392.91016 395.02344 L 364.83594 395.02344 L 364.83594 309.18164 L 245.69922 309.18164 L 245.69922 343.46289 L 245.69922 395.02344 L 217.48828 395.02344 L 217.48828 309.18164 L 98.351562 309.18164 L 98.351562 343.46289 L 98.351562 518.61133 L 217.48828 518.61133 L 217.48828 435.18555 L 245.69922 435.18555 L 245.69922 518.61133 L 364.83594 518.61133 L 364.83594 435.18555 L 392.91016 435.18555 L 392.91016 518.77344 L 512.04688 518.77344 L 512.04688 435.18555 L 538.32422 435.18555 L 538.32422 518.80469 L 657.46094 518.80469 L 657.46094 435.18555 L 686 435.18555 C 686.09252 524.62997 685.54102 614.31215 685.54102 697.61523 L 799.97852 810.20703 L 865.53125 810.20703 L 865.53125 945.56055 L 905.80078 945.56055 L 905.80078 810.20703 L 905.80078 331.53906 L 816.86914 331.53906 L 816.86914 247.86523 L 832.50977 247.86523 L 832.50977 276.13672 L 861.50391 276.13672 L 861.50391 192.49219 L 832.50977 192.49219 L 832.50977 221.68945 L 816.86914 221.68945 L 816.86914 35.765625 L 776.59766 35.765625 z M 831.63477 35.765625 L 831.63477 92.630859 L 860.62891 92.630859 L 860.62891 35.765625 L 831.63477 35.765625 z M 722.45508 368.45508 L 868.88672 368.45508 L 868.88672 773.29297 L 815.0918 773.29297 L 722.45508 682.14844 L 722.45508 368.45508 z \"],\n\"pin-window\": [\"m 457.77341,10.990912 c -36.02786,-1.755647 -59.70996,5.894969 -67.90039,21.935547 -0.26153,0.780415 -0.49072,1.576714 -0.6875,2.388672 l -41.11523,80.511719 0.70898,0.36329 c -2.9589,55.67713 70.38232,83.08055 93.7297,111.08228 2.96081,3.55106 -69.45213,-45.52486 -66.03903,-41.85055 l -142.48559,305.01631 -0.002,0.004 -0.002,0.004 -2.17578,4.26172 0.5586,0.28516 c -17.44109,43.24358 34.87809,85.24116 107.06986,138.21447 L 204.39779,990.40213 436.29691,684.15487 c 87.81188,29.89791 166.34241,53.58183 191.77533,12.92394 l 0.55859,0.28515 160.6141,-315.88929 c 6.92096,0.51417 -61.02841,-16.47852 -54.95783,-16.60817 26.53102,-0.56661 113.46356,22.55434 121.54295,10.26895 l 0.10352,0.0527 0.27344,-0.53515 c 0.53113,-0.62299 -0.37696,0.48245 -0.37696,0.48245 0.7092,-1.42712 3.17426,-5.31702 3.63672,-6.86722 l 38.09766,-74.5957 -0.42969,-0.21875 c 0.28392,-0.346 0.55867,-0.69692 0.82422,-1.05274 C 920.25216,248.74881 824.58531,155.27596 684.28122,83.623726 600.79381,40.987124 516.11751,13.834517 457.77341,10.990912 Z\"],\n\"planet-ammonia-based-life\": [\"m 503.16406,34.63867 c -122.95459,0 -240.90953,48.85876 -327.85156,135.80078 -86.94203,86.94203 -135.80078,204.89697 -135.80078,327.85157 0,122.95459 48.85875,240.90953 135.80078,327.85156 86.94203,86.94204 204.89697,135.80074 327.85156,135.80074 122.95459,0 240.90955,-48.8587 327.85156,-135.80074 C 917.95765,739.20055 966.81641,621.24561 966.81641,498.29102 966.8164,375.33642 917.95765,257.38148 831.01562,170.43945 744.07362,83.49743 626.11865,34.63867 503.16406,34.63867 Z m 0,69.55664 c 104.53367,0 204.74955,41.51127 278.66602,115.42774 73.91646,73.91646 115.42773,174.1343 115.42773,278.66797 0,104.53367 -41.51126,204.74954 -115.42773,278.66601 -73.91647,73.91647 -174.13235,115.42774 -278.66602,115.42774 -104.53367,0 -204.7515,-41.51127 -278.66797,-115.42774 -73.91646,-73.91647 -115.42773,-174.13234 -115.42773,-278.66601 0,-104.53367 41.51127,-204.75151 115.42773,-278.66797 73.91647,-73.91647 174.1343,-115.42774 278.66797,-115.42774 z\",\n\"m 396.45741,236.18839 c -32.5199,-1.52716 -55.35481,9.03126 -61.78679,28.56901 -11.42597,34.70954 31.2379,87.21074 95.29178,117.26391 19.47281,9.1053 39.49364,15.40384 58.21787,18.31524 l -0.0626,0.0731 c 76.07132,48.14246 133.03304,179.99933 94.72417,276.70555 h 42.30346 c 21.74661,-82.55522 -0.58544,-169.86911 -38.59187,-238.64102 27.56902,3.61706 65.03124,-6.18248 100.99168,-26.41789 62.69626,-35.331 102.63316,-91.51422 89.20142,-125.48831 -13.43109,-33.97422 -75.1441,-32.87448 -137.83984,2.45626 -29.31667,16.55147 -55.04651,38.60072 -71.79893,61.52818 -7.54032,-32.99423 -46.06242,-70.89436 -95.77165,-94.22523 -25.53105,-11.97889 -51.8514,-19.05771 -74.87859,-20.13875 z\",\n\"M 463.56641 488.00781 A 65.063016 65.063016 0 0 0 398.50195 553.07227 A 65.063016 65.063016 0 0 0 405.23242 581.05078 L 403.50195 582.57812 A 58.963361 58.963361 0 0 0 368.48828 570.5957 A 58.963361 58.963361 0 0 0 314.27148 607.25977 L 310.60938 606.99609 A 65.063016 65.063016 0 0 0 246.01172 549.26367 A 65.063016 65.063016 0 0 0 180.94922 614.32617 A 65.063016 65.063016 0 0 0 246.01172 679.39062 A 65.063016 65.063016 0 0 0 305.6543 639.60156 L 310.69727 639.96289 A 58.963361 58.963361 0 0 0 366.94727 688.34961 L 369.40625 694.01758 A 65.063016 65.063016 0 0 0 339.53906 748.26172 A 65.063016 65.063016 0 0 0 404.60352 813.32422 A 65.063016 65.063016 0 0 0 469.66602 748.26172 A 65.063016 65.063016 0 0 0 404.60352 683.19727 A 65.063016 65.063016 0 0 0 400.73633 683.63281 L 398.98438 679.59766 A 58.963361 58.963361 0 0 0 427.45312 629.56055 A 58.963361 58.963361 0 0 0 425.43555 614.58398 L 431.4082 609.3125 A 65.063016 65.063016 0 0 0 463.56641 618.13477 A 65.063016 65.063016 0 0 0 528.62891 553.07227 A 65.063016 65.063016 0 0 0 463.56641 488.00781 z M 367.69727 583.90234 A 46.964489 46.964489 0 0 1 414.66211 630.86523 A 46.964489 46.964489 0 0 1 367.69727 677.83008 A 46.964489 46.964489 0 0 1 320.73242 630.86523 A 46.964489 46.964489 0 0 1 367.69727 583.90234 z \"],\n\"planet-ammonia-world\": [\"m 503.16406,34.63867 c -122.95459,0 -240.90953,48.85876 -327.85156,135.80078 -86.94203,86.94203 -135.80078,204.89697 -135.80078,327.85157 0,122.95459 48.85875,240.90953 135.80078,327.85156 86.94203,86.94204 204.89697,135.80074 327.85156,135.80074 122.95459,0 240.90955,-48.8587 327.85156,-135.80074 C 917.95765,739.20055 966.81641,621.24561 966.81641,498.29102 966.8164,375.33642 917.95765,257.38148 831.01562,170.43945 744.07362,83.49743 626.11865,34.63867 503.16406,34.63867 Z m 0,69.55664 c 104.53367,0 204.74955,41.51127 278.66602,115.42774 73.91646,73.91646 115.42773,174.1343 115.42773,278.66797 0,104.53367 -41.51126,204.74954 -115.42773,278.66601 -73.91647,73.91647 -174.13235,115.42774 -278.66602,115.42774 -104.53367,0 -204.7515,-41.51127 -278.66797,-115.42774 -73.91646,-73.91647 -115.42773,-174.13234 -115.42773,-278.66601 0,-104.53367 41.51127,-204.75151 115.42773,-278.66797 73.91647,-73.91647 174.1343,-115.42774 278.66797,-115.42774 z\",\n\"m 670.81841,247.16703 a 115.34584,115.34584 0 0 0 -115.3484,115.34841 115.34584,115.34584 0 0 0 11.932,49.60121 l -3.06784,2.70771 a 104.53217,104.53217 0 0 0 -62.07338,-21.24282 104.53217,104.53217 0 0 0 -96.11731,64.99927 l -6.4923,-0.46747 A 115.34584,115.34584 0 0 0 285.13034,355.76342 115.34584,115.34584 0 0 0 169.78542,471.10835 115.34584,115.34584 0 0 0 285.13034,586.45673 115.34584,115.34584 0 0 0 390.86666,515.91738 l 8.94034,0.64058 a 104.53217,104.53217 0 0 0 99.72184,85.78156 l 4.35935,10.04837 a 115.34584,115.34584 0 0 0 -52.94953,96.16578 115.34584,115.34584 0 0 0 115.34841,115.34492 115.34584,115.34584 0 0 0 115.34492,-115.34492 115.34584,115.34584 0 0 0 -115.34492,-115.34839 115.34584,115.34584 0 0 0 -6.85588,0.77214 l -3.10591,-7.15364 a 104.53217,104.53217 0 0 0 50.47031,-88.70743 104.53217,104.53217 0 0 0 -3.57682,-26.55095 l 10.58851,-9.34545 A 115.34584,115.34584 0 0 0 670.81841,477.86036 115.34584,115.34584 0 0 0 786.16333,362.51544 115.34584,115.34584 0 0 0 670.81841,247.16703 Z M 500.85846,417.17198 a 83.26018,83.26018 0 0 1 83.2608,83.25736 83.26018,83.26018 0 0 1 -83.2608,83.26081 83.26018,83.26018 0 0 1 -83.26081,-83.26081 83.26018,83.26018 0 0 1 83.26081,-83.25736 z\"],\n\"planet-atmosphere-landable\": [\"M 501.14453,7.9101562 C 369.15398,7.9101562 242.54597,59.907039 149.17969,152.49805 55.813391,245.08908 3.328125,370.72528 3.328125,501.71875 c 0,130.99347 52.485266,256.62774 145.851565,349.21875 12.65334,12.54827 25.96446,24.28176 39.76953,35.31055 L 205.4668,862.3457 C 196.14756,854.45673 179.03074,838.29032 170.30469,829.63672 82.579505,742.64001 33.328125,624.70073 33.328125,501.71875 c 0,-122.98198 49.25138,-240.92126 136.976565,-327.91797 87.72518,-86.996742 206.72827,-135.890624 330.83984,-135.890624 124.11148,0 243.11669,48.893882 330.8418,135.890624 87.72521,86.99671 136.97656,204.93599 136.97656,327.91797 0,12.56191 -0.64392,25.05139 -1.66016,37.48047 l 28.48633,17.20898 c 2.03187,-18.0807 3.17383,-36.32167 3.17383,-54.68945 0,-130.99347 -52.48526,-256.62967 -145.85156,-349.2207 C 759.74512,59.907039 633.135,7.9101562 501.14453,7.9101562 Z M 486.25391,129.48438 c -98.8681,0 -193.70295,39.28107 -263.61329,109.1914 -69.91028,69.91033 -109.19335,164.74723 -109.19335,263.61524 0,82.98491 27.76638,163.06699 77.99804,228.01562 5.52252,7.58709 11.28064,14.98873 17.39258,22.07813 26.54165,30.78616 57.68892,55.37301 91.61523,72.99609 3.6711,2.11087 7.46409,3.98322 11.20118,5.9668 l 0.0371,-0.0879 c 0,0 14.78692,-22.39273 16.32226,-29.19922 C 297.3998,786.60525 261.10164,756.52377 236.77147,728.30272 185.80812,669.18918 156.7246,588.22471 156.7246,503.6621 c 0,-84.56252 29.08352,-165.52914 80.04687,-224.64258 50.96337,-59.11354 119.21308,-91.63672 190.08204,-91.63672 70.86902,0 139.12063,32.52318 190.08398,91.63672 33.20266,38.51246 56.90825,86.37567 69.54492,138.39063 12.89816,3.1e-4 24.80955,-0.0135 38.09766,-0.006 -13.27734,-60.769 -40.49694,-116.98197 -79.70899,-162.46485 -38.96966,-45.20175 -87.80157,-77.20389 -140.91992,-93.0664 83.96782,4.36175 163.60172,39.6193 223.35156,99.36914 52.0298,52.02979 85.49312,119.13623 96.1543,191.05273 12.81014,6.77723 28.63724,17.22733 34.34375,20.74801 C 850.86086,384.88139 812.8469,301.6555 749.86719,238.67578 679.95696,168.76545 585.12201,129.48437 486.25391,129.48438 Z\",\n\"m 741.53353,500.31105 c -87.08761,-0.0767 -163.77527,0.0477 -245.80894,0.0426 L 238.735,655.5727 410.98992,808.3678 364.68882,916.6015 H 238.735 l 3.2e-4,82.8919 c 250.29496,0.025 530.30011,-0.042 759.78751,-0.039 l -3e-4,-82.8956 H 872.56933 L 826.26813,808.3267 998.52253,655.5723 Z M 734.74813,547.658 686.4775,699.6632 H 550.75193 L 502.50999,547.7007 Z m 27.0828,260.6654 46.3011,108.2355 c -39.1342,-0.015 -157.66947,0.019 -157.66947,0.019 l 1.92213,-83.2499 109.44624,-25.0041 z M 586.76687,916.583 c 0,0 -121.28124,0.02 -157.64083,0.019 l 46.30112,-108.2374 c 112.30077,24.0098 112.30077,24.9634 112.30077,24.9634 z\"],\n\"planet-atmosphere\": [\"M 501.14453,7.9101562 C 369.1539,7.9101552 242.54607,59.906946 149.17969,152.49805 55.813304,245.08914 3.3281264,370.72517 3.328125,501.71875 c 0,130.99358 52.485179,256.62765 145.851565,349.21875 93.36638,92.5911 219.97421,144.58984 351.96484,144.58984 131.99063,0 258.60042,-51.99874 351.9668,-144.58984 93.36638,-92.5911 145.85156,-218.22517 145.85156,-349.21875 0,-130.99358 -52.48518,-256.62961 -145.85156,-349.2207 C 759.74495,59.906946 633.13516,7.9101563 501.14453,7.9101562 Z m 0,29.9999998 c 124.11164,0 243.11653,48.893799 330.8418,135.890624 87.72527,86.99683 136.97656,204.93587 136.97656,327.91797 0,122.9821 -49.25129,240.92114 -136.97656,327.91797 -87.72527,86.99683 -206.73016,135.89062 -330.8418,135.89062 -124.11164,0 -243.11457,-48.89379 -330.83984,-135.89062 C 82.579417,742.63989 33.328125,624.70085 33.328125,501.71875 33.328126,378.73665 82.579417,260.79761 170.30469,173.80078 258.02996,86.803955 377.03289,37.910155 501.14453,37.910156 Z m -14.89062,91.574224 c -98.86818,0 -193.70289,39.28103 -263.61329,109.1914 -69.91035,69.91039 -109.19335,164.74705 -109.19335,263.61524 0,82.98494 27.76633,163.06697 77.99804,228.01562 5.52252,7.58716 11.28063,14.98872 17.39258,22.07813 26.54168,30.78624 57.68888,55.37303 91.61523,72.99609 56.06052,32.23468 120.01452,49.7168 185.80079,49.7168 98.86822,0 193.70295,-39.28107 263.61328,-109.19141 69.91043,-69.91038 109.19336,-164.74702 109.19336,-263.61523 0,-98.86819 -39.28293,-193.70485 -109.19336,-263.61524 -69.91033,-69.91037 -164.74506,-109.1914 -263.61328,-109.1914 z m 17.69726,32.38867 c 83.96788,4.36176 163.60166,39.61922 223.35156,99.36914 63.9346,63.93458 99.84766,150.63168 99.84766,241.04883 0,90.41717 -35.91306,177.11424 -99.84766,241.04882 -57.1175,57.11752 -132.4147,91.78534 -212.28906,98.54688 48.82581,-16.84293 93.60887,-47.45649 129.85742,-89.50195 57.27143,-66.43033 88.99414,-155.73952 88.99414,-248.72266 0,-92.98314 -31.72271,-182.29233 -88.99414,-248.72266 -38.96967,-45.20176 -87.80156,-77.20385 -140.91992,-93.0664 z m -77.09765,25.50976 c 70.86909,0 139.12056,32.52318 190.08398,91.63672 50.96342,59.11352 80.04688,140.07989 80.04688,224.64258 0,84.56268 -29.08346,165.52709 -80.04688,224.64062 -50.96342,59.11352 -119.21489,91.63868 -190.08398,91.63868 -70.86907,0 -139.11862,-32.52516 -190.08204,-91.63868 -50.96341,-59.11353 -80.04687,-140.07794 -80.04687,-224.64062 0,-84.56268 29.08346,-165.52906 80.04687,-224.64258 50.96342,-59.11354 119.21297,-91.63672 190.08204,-91.63672 z\"],\n\"planet-earthlike\": [\"M 505.6582,32.673828 C 377.44096,32.67383 254.40876,81.669792 163.54688,169.12305 72.684977,256.5763 21.472655,375.43316 21.472656,499.4082 c 0,123.97504 51.212321,242.83387 142.074224,330.28711 90.86189,87.45325 213.89408,136.44922 342.11132,136.44922 128.21724,0 251.24943,-48.99597 342.11133,-136.44922 90.8619,-87.45324 142.07422,-206.31206 142.07422,-330.28711 0,-123.97504 -51.21232,-242.8319 -142.07422,-330.28515 C 756.90763,81.669792 633.87544,32.673828 505.6582,32.673828 Z m -2.49414,71.523442 c 12.43496,0 24.80237,0.62956 37.07813,1.78906 l -64.58789,54.95312 53.76562,191.07422 93.20117,26.54102 -22.10937,100.2539 97.5918,51.05469 147.53906,-23.56445 -94.13086,175.63086 -63.94531,31.1289 28.88476,68.05469 c 0,0 13.38753,13.08988 28.41602,28.30078 -68.7772,53.43531 -153.67609,82.97071 -241.70313,82.97071 -88.43914,0 -173.7229,-29.81156 -242.66992,-83.72266 11.30138,-24.58436 23.29297,-52.07422 23.29297,-52.07422 L 397.60742,721.09375 384.58984,578.46484 C 355.94321,513.46638 335.56445,452.75195 335.56445,452.75195 L 204.17578,357.96094 c -3.17314,0.13151 -9.777,-56.90222 -12.93555,-56.55469 L 171.1543,286.16992 c 15.23627,-23.84763 33.01496,-46.22004 53.34179,-66.54687 73.91644,-73.91644 174.13434,-115.42578 278.66797,-115.42578 z\"],\n\"planet-empty\": [\"m 503.16406,34.638672 c -122.95463,0 -240.90951,48.858729 -327.85156,135.800778 -86.942054,86.94206 -135.80078,204.89694 -135.800781,327.85157 0,122.95463 48.858727,240.9095 135.800781,327.85156 86.94205,86.94205 204.89693,135.80078 327.85156,135.80078 122.95463,0 240.90951,-48.85873 327.85156,-135.80078 C 917.95768,739.20052 966.81641,621.24565 966.81641,498.29102 966.8164,375.33639 917.95768,257.38151 831.01562,170.43945 744.07357,83.497401 626.11869,34.638672 503.16406,34.638672 Z m 0,69.558598 c 104.53363,0 204.74958,41.51129 278.66602,115.42773 73.91644,73.91644 115.42773,174.13239 115.42773,278.66602 0,104.53363 -41.51129,204.74957 -115.42773,278.66601 -73.91644,73.91644 -174.13239,115.42774 -278.66602,115.42774 -104.53363,0 -204.75153,-41.5113 -278.66797,-115.42774 -73.91644,-73.91644 -115.42773,-174.13238 -115.42773,-278.66601 0,-104.53363 41.51129,-204.75153 115.42773,-278.66797 73.91644,-73.91644 174.13434,-115.42578 278.66797,-115.42578 z\"],\n\"planet-gas-giant\": [\"M 503.16406 34.638672 C 380.20943 34.638672 262.25455 83.497416 175.3125 170.43945 C 88.370446 257.38151 39.51172 375.33639 39.511719 498.29102 C 39.511719 621.24565 88.370446 739.20052 175.3125 826.14258 C 262.25455 913.08463 380.20943 961.94336 503.16406 961.94336 C 626.11869 961.94336 744.07357 913.08463 831.01562 826.14258 C 917.95768 739.20052 966.81641 621.24565 966.81641 498.29102 C 966.8164 375.33639 917.95768 257.38151 831.01562 170.43945 C 744.07358 83.497416 626.11869 34.638672 503.16406 34.638672 z M 261.25 187.33008 L 718.21289 187.33008 L 745.07422 187.33008 C 757.89584 197.30536 770.22079 208.01571 781.83008 219.625 C 789.65559 227.45052 797.03476 235.63055 804.12305 244.01953 L 202.20117 244.01953 C 209.28999 235.62976 216.66992 227.44922 224.49609 219.62305 C 236.10473 208.01441 248.42908 197.30481 261.25 187.33008 z M 124.17578 390.60742 L 882.15039 390.60742 C 891.73788 424.34859 896.89484 459.47008 897.17969 495.14648 L 109.14648 495.14648 C 109.43133 459.47047 114.5885 424.34855 124.17578 390.60742 z M 396.33398 518.90039 C 450.04697 518.90639 500.10909 543.24402 529.36523 583.57422 L 887.80469 583.57422 C 881.01834 614.18187 870.63476 643.81191 856.86719 671.86719 L 554.10938 671.86719 C 552.91966 685.60048 549.43473 727.74304 510.68359 758.92383 C 480.86284 786.9435 439.56254 802.85498 396.33398 802.97852 C 353.10543 802.85498 311.80512 786.9435 281.98438 758.92383 C 251.2509 733.47051 239.74893 685.60057 238.55859 671.86719 L 149.45898 671.86719 C 135.69141 643.81191 125.30783 614.18187 118.52148 583.57422 L 263.34961 583.57422 C 292.59669 543.25651 342.63763 518.92027 396.33398 518.90039 z M 394.30664 564.97461 C 333.5754 564.97501 284.34292 609.05269 284.3418 663.42578 C 284.34171 717.79964 333.57454 761.87851 394.30664 761.87891 C 455.0395 761.87948 504.27353 717.80032 504.27344 663.42578 C 504.27244 609.052 455.03865 564.97404 394.30664 564.97461 z \"],\n\"planet-high-metal-content\": [\"M 493.69922,38.066406 C 370.74464,38.066408 252.79162,86.92513 165.84961,173.86719 78.907597,260.80924 30.048828,378.76412 30.048828,501.71875 c 0,122.95463 48.858769,240.90951 135.800782,327.85156 86.94201,86.94206 204.89503,135.79883 327.84961,135.79883 122.95458,0 240.90955,-48.85677 327.85156,-135.79883 86.94201,-86.94205 135.80078,-204.89693 135.80078,-327.85156 0,-122.95463 -48.85877,-240.90951 -135.80078,-327.85156 C 734.60877,86.92513 616.6538,38.066406 493.69922,38.066406 Z m 0,69.556644 c 104.53357,0 204.75157,41.51129 278.66797,115.42773 73.9164,73.91644 115.42773,174.13433 115.42773,278.66797 0,104.53364 -41.51133,204.74958 -115.42773,278.66602 C 698.45079,854.3012 598.23279,895.8125 493.69922,895.8125 389.16565,895.8125 288.9496,854.3012 215.0332,780.38477 141.1168,706.46833 99.605469,606.25238 99.605469,501.71875 99.605469,397.18512 141.1168,296.96722 215.0332,223.05078 288.9496,149.13434 389.16565,107.62305 493.69922,107.62305 Z\",\n\"M 439.35498,243.33425 363.27211,435.3416 H 624.12767 L 548.0448,243.33425 Z\",\n\"M 254.5823,478.81752 178.49943,670.82487 H 439.35498 L 363.27211,478.81752 Z\",\n\"M 624.12767,478.81752 548.0448,670.82487 H 808.90035 L 732.81748,478.81752 Z\"],\n\"planet-high-value\": [\"m 503.16406,34.638672 c -122.95463,0 -240.90951,48.858732 -327.85156,135.800778 -86.942054,86.94206 -135.80078,204.89694 -135.800781,327.85157 0,122.95463 48.858727,240.9095 135.800781,327.85156 86.94205,86.94205 204.89693,135.80078 327.85156,135.80078 122.95463,0 240.90951,-48.85873 327.85156,-135.80078 C 917.95768,739.20052 966.81641,621.24565 966.81641,498.29102 966.8164,375.33639 917.95768,257.38151 831.01562,170.43945 744.07358,83.497404 626.11869,34.638672 503.16406,34.638672 Z m 0,69.558598 c 104.53363,0 204.74958,41.51129 278.66602,115.42773 73.91644,73.91644 115.42773,174.13239 115.42773,278.66602 0,104.53363 -41.51129,204.74957 -115.42773,278.66601 -73.91644,73.91644 -174.13239,115.42774 -278.66602,115.42774 -104.53363,0 -204.75153,-41.5113 -278.66797,-115.42774 -73.91644,-73.91644 -115.42773,-174.13238 -115.42773,-278.66601 0,-104.53363 41.51129,-204.75153 115.42773,-278.66797 73.91644,-73.91644 174.13434,-115.42578 278.66797,-115.42578 z m -27.32617,91.14062 v 45.32617 c -17.62636,0.27979 -31.89508,0.69825 -42.80664,1.25782 -51.75995,2.79783 -87.71106,14.82825 -107.85547,36.09179 -19.02528,19.58485 -28.53906,52.60086 -28.53906,99.04492 0,34.1336 4.33647,60.71301 13.00976,79.73829 10.07221,22.66246 28.67936,38.4688 55.81836,47.42187 20.98377,6.99459 57.77375,10.63233 110.37305,10.91211 v 168.28906 c -8.95307,-0.27978 -28.9577,-0.83838 -60.01367,-1.67773 -18.18593,-1.11914 -31.8941,-5.59575 -41.12695,-13.42969 -8.95308,-7.83393 -14.26857,-19.72422 -15.94727,-35.67188 -1.11914,-10.35199 -1.81983,-26.30041 -2.09961,-47.84374 v -8.39258 h -65.46875 v 5.875 c 0.27979,20.14441 0.97852,36.37116 2.09766,48.68164 2.51805,24.62095 8.11382,44.20712 16.78711,58.75586 8.67329,14.54874 21.82285,26.15874 39.44921,34.83203 12.59026,6.15524 25.87997,10.21143 39.86915,12.16992 13.98918,1.95848 36.23211,2.79931 66.72851,2.51953 h 19.72461 v 54.97656 h 52.46094 v -54.97656 c 48.12276,-1.6787 78.05963,-3.63868 89.81055,-5.87695 36.65163,-7.55416 62.11189,-24.47965 76.38085,-50.7793 11.19134,-20.42419 16.78711,-48.2629 16.78711,-83.51562 0,-27.41879 -2.939,-50.08214 -8.81445,-67.98829 -9.51264,-29.65705 -28.67839,-49.66168 -57.49609,-60.01367 -24.34117,-8.95307 -63.22932,-13.70801 -116.66797,-14.26757 V 298.99805 c 13.42961,0 23.92045,0.14014 31.47461,0.41992 29.37727,0.83935 49.52204,5.03569 60.43359,12.58984 5.59567,3.91698 9.79201,11.33064 12.58985,22.24219 1.11913,5.03611 1.95801,20.00552 2.51757,44.90625 l 0.41993,9.23242 h 64.21093 c 0.27978,-8.67329 0.41992,-15.80668 0.41992,-21.40234 0,-28.81771 -3.63773,-51.34091 -10.91211,-67.56836 -10.63177,-23.7816 -29.09683,-40.28863 -55.39648,-49.52149 -15.94767,-5.59567 -46.30495,-8.53467 -91.07031,-8.81445 -2.51806,0 -7.41313,-0.13818 -14.6875,-0.41797 v -45.32617 z m 0,103.24023 v 158.21876 c -10.35199,0 -18.18607,-0.14014 -23.50195,-0.41993 -32.17511,-0.83934 -54.55623,-4.61722 -67.14649,-11.33203 -16.50722,-8.95307 -24.76172,-33.0139 -24.76172,-72.18359 0,-25.18052 3.91802,-43.08698 11.75196,-53.71875 8.11372,-11.75091 25.45963,-18.18556 52.03906,-19.30469 12.31047,-0.55957 29.51624,-0.97998 51.61914,-1.25977 z m 52.46094,217.39258 c 31.33576,0.27979 52.878,1.2588 64.6289,2.9375 23.22204,3.07762 38.19145,10.9117 44.90625,23.50196 6.71481,12.03069 10.07227,29.3766 10.07227,52.03906 0,36.37186 -7.55576,60.2945 -22.66406,71.76562 -15.94767,11.75091 -44.48511,17.625 -85.61328,17.625 h -11.33008 z\"],\n\"planet-landable\": [\"M 518.32812 30.400391 C 394.39825 30.400391 275.5223 79.639825 187.89062 167.27148 C 100.25897 254.90316 51.019531 373.7791 51.019531 497.70898 C 51.019534 601.72942 85.824322 702.11122 148.78906 783.52344 C 155.71145 793.03384 162.92859 802.3108 170.58984 811.19727 C 184.81346 827.69553 200.14739 842.6805 216.30273 856.26367 L 296.51367 856.26367 C 263.29251 837.43541 232.51004 812.22115 205.60352 781.01172 C 141.7216 706.91374 105.26758 605.42586 105.26758 499.42773 C 105.26758 393.42962 141.7216 291.93976 205.60352 217.8418 C 269.48543 143.74382 355.03771 102.97656 443.87109 102.97656 C 532.70448 102.97656 618.25676 143.74382 682.13867 217.8418 C 736.62077 281.03672 771.05984 364.17639 780.04297 453.02344 L 828.33789 482.20117 C 824.62098 371.89465 785.39461 266.81188 717.15234 187.65625 C 668.3044 130.9965 607.09484 90.883467 540.51172 71 C 645.76427 76.467391 745.58479 120.66097 820.48047 195.55664 C 900.62156 275.69773 945.63672 384.37237 945.63672 497.70898 C 945.63672 515.6214 944.38557 533.39325 942.17578 550.97852 L 979.34375 573.43359 C 983.43176 548.55107 985.63672 523.25013 985.63672 497.70898 C 985.63672 373.7791 936.39533 254.90316 848.76367 167.27148 C 761.13201 79.639825 642.25803 30.400393 518.32812 30.400391 z M 782.78711 594.88477 L 732.51953 753.17969 L 763.42969 746.11719 C 786.99287 705.73847 804.4669 661.28765 815.38672 614.58008 L 782.78711 594.88477 z M 699.3418 759.32617 C 698.91473 759.90183 698.49061 760.47977 698.06055 761.05273 L 705.61914 759.32617 L 699.3418 759.32617 z \",\n\"m 741.72431,499.97422 c -87.08761,-0.0767 -163.77527,0.0477 -245.80894,0.0426 L 426.10066,542.18417 238.92578,655.23582 411.1807,808.03098 364.8796,916.26464 H 238.92578 l 3.2e-4,82.8919 c 250.29496,0.0246 530.30011,-0.0422 759.78746,-0.0387 l -2e-4,-82.89557 H 872.7601 l -46.30124,-108.23213 172.2545,-152.7544 z m -6.78544,47.347 -48.27059,152.00517 H 550.94271 L 502.70077,547.36387 Z m 27.0828,260.66533 46.30114,108.23549 c -39.13419,-0.0152 -157.66947,0.0185 -157.66947,0.0185 l 1.92213,-83.24984 109.4462,-25.00417 z M 586.95765,916.24619 c 0,0 -121.28124,0.0199 -157.64083,0.0185 l 46.30112,-108.2374 c 112.30077,24.00977 112.30077,24.9634 112.30077,24.9634 z\",\n\"m 741.53369,500.31115 c -87.08761,-0.0767 -163.77527,0.0477 -245.80894,0.0426 l -256.98959,155.219 172.25492,152.79516 -46.3011,108.23366 H 238.73516 l 3.2e-4,82.8919 c 250.29496,0.0246 530.30011,-0.0422 759.78747,-0.0387 l -2.4e-4,-82.89557 H 872.56948 L 826.26824,808.32707 998.52271,655.57267 Z m -6.78544,47.347 -48.27059,152.00517 H 550.75209 L 502.51015,547.7008 Z m 27.0828,260.66533 46.30114,108.23549 c -39.13419,-0.0152 -157.66947,0.0185 -157.66947,0.0185 l 1.92213,-83.24984 109.4462,-25.00417 z M 586.76703,916.58312 c 0,0 -121.28124,0.0199 -157.64083,0.0185 l 46.30112,-108.2374 c 112.30077,24.00977 112.30077,24.9634 112.30077,24.9634 z\"],\n\"planet-lander\": [\"m 645.3087,260.34946 c -103.79866,-0.0913 -195.20179,0.0568 -292.97677,0.0508 L 46.029,445.404 251.33766,627.5188 196.15191,756.52123 H 46.029 l 3.73e-4,98.79804 c 298.323667,0.0287 632.058587,-0.0495 905.581887,-0.0464 L 951.611,756.47042 H 801.48872 L 746.30297,627.47021 951.611,445.404 Z m -8.08744,56.43234 -57.53313,181.17321 H 417.91837 l -57.499,-181.12238 z m 32.27971,310.68399 55.18577,129.00463 c -46.64361,-0.0181 -187.92441,0.0221 -187.92441,0.0221 l 2.29095,-99.22452 130.44769,-29.80218 z m -208.6568,129.03342 c 0,0 -144.55372,0.0238 -187.89029,0.0221 L 328.13965,627.5144 c 133.85,28.61698 133.85,29.7536 133.85,29.7536 z\"],\n\"planet-life\": [\"m 503.16406,34.638672 c -122.95459,0 -240.90953,48.858763 -327.85156,135.800778 -86.942026,86.94203 -135.80078,204.89697 -135.800781,327.85157 0,122.95459 48.858755,240.90953 135.800781,327.85156 86.94203,86.94202 204.89697,135.80078 327.85156,135.80078 122.95459,0 240.90955,-48.85876 327.85156,-135.80078 C 917.95765,739.20055 966.81641,621.24561 966.81641,498.29102 966.8164,375.33642 917.95765,257.38148 831.01562,170.43945 744.07362,83.497435 626.11865,34.638672 503.16406,34.638672 Z m 0,69.556638 c 104.53367,0 204.74955,41.51127 278.66602,115.42774 73.91646,73.91646 115.42773,174.1343 115.42773,278.66797 0,104.53367 -41.51126,204.74954 -115.42773,278.66601 -73.91647,73.91647 -174.13235,115.42774 -278.66602,115.42774 -104.53367,0 -204.7515,-41.51127 -278.66797,-115.42774 -73.91646,-73.91647 -115.42773,-174.13234 -115.42773,-278.66601 0,-104.53367 41.51127,-204.75151 115.42773,-278.66797 73.91647,-73.91647 174.1343,-115.42774 278.66797,-115.42774 z M 294.45703,317.7793 a 155.21191,70.446739 21.45389 0 0 -76.95898,29.80468 155.21191,70.446739 21.45389 0 0 118.6914,122.33594 155.21191,70.446739 21.45389 0 0 72.51367,19.10742 l -0.0781,0.0762 c 94.75119,50.22476 165.70031,187.78479 117.98438,288.67382 h 52.6914 c 27.08677,-86.12596 -0.72919,-177.21641 -48.06836,-248.96289 a 70.965866,156.35568 64.732725 0 0 125.79102,-27.56054 70.965866,156.35568 64.732725 0 0 111.10547,-130.91602 70.965866,156.35568 64.732725 0 0 -171.6875,2.5625 70.965866,156.35568 64.732725 0 0 -89.42969,64.18945 155.21191,70.446739 21.45389 0 0 -119.28906,-98.30078 155.21191,70.446739 21.45389 0 0 -93.26563,-21.00976 z\"],\n\"planet-ringed\": [\"m 413.02681,209.87777 c -76.4226,20.47737 -141.6015,70.48944 -181.16076,139.00806 -39.55925,68.51864 -50.28151,149.97126 -29.80413,226.39386 1.50597,5.62036 3.24932,11.14593 5.07617,16.63633 0,0 -207.16602337,156.92762 -196.339319,193.16061 C 22.027017,815.44765 184.2438,742.21969 254.88552,713.9445 334.42811,682.10662 436.27,630.93962 539.10533,571.56764 641.94065,512.19564 737.12128,449.51646 804.51632,396.6148 c 0,0 203.08108,-150.30857 185.76094,-179.69475 C 979.48417,180.56057 712.87064,299.57667 712.87064,299.57667 691.90124,276.0546 667.21813,255.7308 639.42066,239.6819 570.90203,200.12266 489.44943,189.4004 413.02681,209.87777 Z m 11.58428,43.23312 c 64.97306,-17.40948 134.17508,-8.29859 192.42834,25.33395 44.10843,25.466 79.15356,63.4134 101.14279,108.53906 12.95672,-9.26671 25.0123,-18.22096 36.46228,-26.95237 -5.55927,-10.64718 -11.69334,-20.96176 -18.47061,-30.8315 0,0 129.26412,-50.02297 130.39793,-42.60042 7.4774,4.65701 -61.86225,63.35287 -84.60575,81.28669 -65.26477,51.2295 -159.48373,113.37056 -261.12245,172.05168 -101.63872,58.68115 -202.56436,109.20744 -279.5628,140.11364 -33.8996,16.96205 -108.1024,43.32318 -111.4898,34.71674 -0.71883,-9.501 64.18106,-65.99633 91.55309,-87.72119 l 0.36187,0.8889 c 4.8048,9.93343 10.12619,19.58228 15.97618,28.88756 13.20966,-5.3734 27.2292,-11.41331 41.77163,-17.89984 C 264.189,616.08155 252.54128,590.73878 245.29503,563.69541 227.88556,498.72234 236.996,429.5186 270.62852,371.26535 304.26105,313.0121 359.63804,270.52036 424.61109,253.11089 Z m 358.46636,188.29869 c -12.94346,9.51172 -26.56342,19.21393 -40.77095,29.06873 5.83164,53.27294 -5.31647,107.38674 -32.44656,154.37742 -33.63253,58.25326 -89.00732,100.74626 -153.98038,118.15574 -64.97306,17.40947 -134.17727,8.29731 -192.43052,-25.33522 -8.32977,-4.8092 -16.29644,-10.10958 -23.95443,-15.77242 -15.71095,7.30118 -31.09789,14.27483 -45.80104,20.59673 14.54537,12.7393 30.3876,24.13138 47.37642,33.93988 68.51863,39.55925 149.97124,50.28151 226.39384,29.80414 76.42262,-20.47737 141.6015,-70.48943 181.16076,-139.00807 36.0306,-62.40686 48.05114,-135.53405 34.45286,-205.82693 z\"],\n\"planet-terraformable\": [\"m 507.82812,56.193359 c -3.158,0.02963 -6.3195,0.09244 -9.48632,0.189453 l 1.22461,39.980469 c 2.87416,-0.08804 5.75507,-0.144812 8.64062,-0.171875 h 0.002 c 15.17646,-0.143865 30.3493,0.731433 45.45313,2.273438 L 480.23438,160.93945 534,352.01367 l 93.20117,26.54102 -22.10937,100.2539 97.59179,51.05469 147.53907,-23.56445 -94.13086,175.63086 -63.94532,31.1289 28.88477,68.05469 c 0,0 25.38569,24.81575 45.85352,46.36133 -1.03565,0.82168 -1.99942,1.73146 -3.04297,2.54297 l 24.55664,31.57617 c 33.05595,-25.70568 62.46913,-56.0261 87.1582,-89.84961 l -32.30859,-23.58398 c -14.89633,20.40764 -31.85918,39.27258 -50.26172,56.59961 l -41.55664,-37.29102 -22.90821,-41.23828 60.70899,-24.05469 105.38476,-226.80273 -185.56835,22.9082 -65.29102,-34.36328 22.9082,-103.09375 -106.52929,-34.36328 -42.38086,-163.80274 71.51562,-59.08008 c 7.93316,1.5211 15.83342,3.21261 23.66016,5.20118 L 622.7793,70.011719 C 585.26061,60.479192 546.5358,55.826617 507.83008,56.193359 Z m -51.19921,3.400391 c -39.2071,4.854857 -77.73633,14.902247 -114.32227,29.802734 -2.1878,0.890882 -4.37366,1.801719 -6.55859,2.732422 l 15.67383,36.798824 c 1.97768,-0.84242 3.97002,-1.6689 5.97265,-2.48437 v -0.002 c 33.31503,-13.56834 68.45125,-22.73016 104.14844,-27.150394 z m 206.16992,22.582031 -13.37695,37.697269 c 1.07219,0.38046 2.15413,0.77023 3.24414,1.16797 34.73675,12.67465 67.77196,30.09308 97.84765,51.5996 l 23.26563,-32.5371 C 740.74515,116.48144 704.52457,97.384041 666.37695,83.464844 c -1.18016,-0.430633 -2.37287,-0.861382 -3.57812,-1.289063 z M 298.05664,110.28125 C 263.44307,128.97333 231.32603,152.21648 202.75,179.25 c -1.83598,1.73683 -3.66528,3.4961 -5.48633,5.2793 L 225.25,213.10742 c 1.64149,-1.60737 3.30574,-3.2053 4.99023,-4.79883 26.0197,-24.61518 55.30893,-45.81113 86.82422,-62.83007 z m 508.58984,55.70508 -26.17187,30.25 c 1.65166,1.42908 3.29514,2.87687 4.93359,4.34179 26.79227,23.95295 50.43529,51.46642 70.06836,81.5625 l 33.5,-21.85546 c -21.56443,-33.05673 -47.48638,-63.22509 -76.90625,-89.52735 h -0.002 c -1.78955,-1.60002 -3.59612,-3.19177 -5.42188,-4.77148 z m -637.89453,49.15039 c -26.03298,30.67731 -47.89802,64.83932 -64.85937,101.32031 v 0.002 c -0.68687,1.47757 -1.3742,2.97122 -2.05664,4.48438 l 36.46289,16.44531 c 0.60688,-1.3456 1.23014,-2.70019 1.86523,-4.0664 v -0.002 c 4.4024,-9.46869 9.26656,-18.71368 14.38282,-27.82031 l 20.70898,10.65039 6.87305,63.00195 130.58398,91.63868 50.40039,119.1289 10.31055,107.67383 -105.38477,32.07422 -37.06054,75.21289 c -7.13515,-6.71532 -14.08228,-13.6275 -20.71485,-20.83594 l -29.43555,27.08399 c 26.43559,28.73082 56.60709,53.98243 89.55274,74.9375 2.38312,1.5161 4.78333,3.01275 7.20312,4.48828 l 20.82618,-34.15235 c -2.19498,-1.33844 -4.38133,-2.70079 -6.5586,-4.08593 h -0.002 v -0.002 c -12.29817,-7.82218 -24.05531,-16.4653 -35.45313,-25.55859 12.41521,-25.38276 31.97071,-70.16797 31.97071,-70.16797 L 402.1875,721.09375 389.16992,578.46484 C 360.52329,513.46638 340.14453,452.75195 340.14453,452.75195 L 208.75586,357.96094 c -3.17314,0.13151 -9.777,-56.90222 -12.93555,-56.55469 l -26.52343,-20.12109 c 9.18953,-13.99752 19.12579,-27.50634 29.95507,-40.26758 z m 741.4336,81.20312 -35.3711,18.67774 c 0.83888,1.58868 1.6711,3.19525 2.5,4.81836 16.51567,32.3437 28.7146,66.92234 36.14649,102.46875 l 39.15429,-8.1875 C 944.45282,375.07672 931.07528,337.16455 912.9375,301.64453 v -0.002 c -0.89994,-1.76221 -1.8159,-3.53003 -2.75195,-5.30274 z M 86.402344,359.81836 c -12.716229,36.92691 -20.589283,75.48759 -23.361328,114.44531 -0.200139,2.80766 -0.374081,5.61982 -0.521485,8.43555 l 39.945309,2.08984 c 0.13404,-2.56039 0.29391,-5.12139 0.47657,-7.68359 v -0.002 c 2.52396,-35.47129 9.70237,-70.6376 21.28125,-104.26172 z m 872.867186,95.60547 -39.74219,4.52734 c 4.31462,37.8832 3.30466,76.40144 -2.99218,114.00391 l 39.45117,6.60547 c 6.91624,-41.30132 8.0217,-83.53174 3.2832,-125.13672 z M 61.900391,506.29688 c -0.0067,38.33199 4.910113,76.63425 14.601562,113.72265 0.893296,3.41971 1.827267,6.836 2.804688,10.24414 l 38.449219,-11.02734 c -0.8871,-3.09321 -1.73666,-6.20399 -2.55274,-9.32813 -8.82424,-33.76966 -13.30879,-68.70043 -13.30273,-103.60547 z m 846.609379,104.90624 -0.29883,1.13086 -0.32813,1.2129 c -9.75641,36.03191 -24.47959,70.74746 -43.60351,102.80468 l 34.35351,20.49219 C 919.63686,701.63488 935.77931,663.57151 946.49414,624 l 0.002,-0.0117 0.35352,-1.3125 0.31641,-1.1875 z m -778.5586,44.16602 -37.265623,14.53125 c 14.628363,37.51431 34.305883,73.02303 58.367183,105.31055 l 0.002,0.002 c 0.95217,1.27741 1.91995,2.56431 2.9082,3.85938 l 31.79883,-24.26563 c -0.87473,-1.14629 -1.75165,-2.31329 -2.63477,-3.49805 l -0.002,-0.002 c -21.90681,-29.39685 -39.85427,-61.77961 -53.17383,-95.9375 z m 602.73047,196.64258 c -1.55892,0.99641 -3.1388,1.98615 -4.73437,2.97461 -30.82657,19.09486 -64.22812,34.084 -98.98633,44.41797 l 11.39844,38.33984 c 38.17246,-11.34906 74.79692,-27.78073 108.65234,-48.75195 h 0.002 v -0.002 c 1.73253,-1.07329 3.46918,-2.16335 5.20899,-3.27539 z m -400.83008,22.7168 -17.57812,35.93164 c 36.37653,17.79764 75.13591,30.64137 114.94336,38.08593 1.35126,0.25292 2.70411,0.49959 4.05859,0.74024 l 6.99805,-39.38477 c -1.23286,-0.21904 -2.46553,-0.44329 -3.69727,-0.67383 h -0.002 -0.002 c -36.24638,-6.77826 -71.5975,-18.4933 -104.72071,-34.69921 z m 260.07813,33.83984 c -1.05485,0.21061 -2.1294,0.41855 -3.22266,0.62695 -36.37267,6.9299 -73.72071,8.89375 -110.62305,5.82422 l -3.3164,39.86328 c 40.52608,3.37095 81.47699,1.21728 121.42773,-6.39453 h 0.002 c 1.17064,-0.22316 2.35922,-0.45272 3.56445,-0.69336 z\"],\n\"planet-volcanic\": [\"m 431.84375,128.875 v 93.92969 h 93.92969 V 128.875 Z m 93.92969,93.92969 v 93.92773 h 93.92968 v -93.92773 z m 0,93.92773 h -93.92969 v 93.92969 h 93.92969 z M 371.68164,491.3125 188.32812,955.57812 h 95.83204 L 428.3125,577.74805 h 154.86523 l 144.15235,377.83007 h 95.83008 L 639.80859,491.3125 Z\"],\n\"planet-water-based-life\": [\"m 503.16406,34.638672 c -122.95459,0 -240.90953,48.858763 -327.85156,135.800778 -86.942026,86.94203 -135.80078,204.89697 -135.800781,327.85157 0,122.95459 48.858755,240.90953 135.800781,327.85156 86.94203,86.94202 204.89697,135.80078 327.85156,135.80078 122.95459,0 240.90955,-48.85876 327.85156,-135.80078 C 917.95765,739.20055 966.81641,621.24561 966.81641,498.29102 966.8164,375.33642 917.95765,257.38148 831.01562,170.43945 744.07362,83.497435 626.11865,34.638672 503.16406,34.638672 Z m 0,69.556638 c 104.53367,0 204.74955,41.51127 278.66602,115.42774 73.91646,73.91646 115.42773,174.1343 115.42773,278.66797 0,104.53367 -41.51126,204.74954 -115.42773,278.66601 -73.91647,73.91647 -174.13235,115.42774 -278.66602,115.42774 -104.53367,0 -204.7515,-41.51127 -278.66797,-115.42774 -73.91646,-73.91647 -115.42773,-174.13234 -115.42773,-278.66601 0,-104.53367 41.51127,-204.75151 115.42773,-278.66797 73.91647,-73.91647 174.1343,-115.42774 278.66797,-115.42774 z\",\n\"m 396.45741,236.18839 c -32.5199,-1.52716 -55.35481,9.03126 -61.78679,28.56901 -11.42597,34.70954 31.2379,87.21074 95.29178,117.26391 19.47281,9.1053 39.49364,15.40384 58.21787,18.31524 l -0.0626,0.0731 c 76.07132,48.14246 133.03304,179.99933 94.72417,276.70555 h 42.30346 c 21.74661,-82.55522 -0.58544,-169.86911 -38.59187,-238.64102 27.56902,3.61706 65.03124,-6.18248 100.99168,-26.41789 62.69626,-35.331 102.63316,-91.51422 89.20142,-125.48831 -13.43109,-33.97422 -75.1441,-32.87448 -137.83984,2.45626 -29.31667,16.55147 -55.04651,38.60072 -71.79893,61.52818 -7.54032,-32.99423 -46.06242,-70.89436 -95.77165,-94.22523 -25.53105,-11.97889 -51.8514,-19.05771 -74.87859,-20.13875 z\",\n\"m 385.05969,447.68476 c 0,0 -103.39208,130.16723 -105.82536,205.88292 a 100.39326,110.60275 0 0 0 -1.23364,16.8126 100.39326,110.60275 0 0 0 100.39292,110.60214 100.39326,110.60275 0 0 0 100.39292,-110.60214 100.39326,110.60275 0 0 0 -0.85416,-14.2026 C 476.59712,578.37515 385.05969,447.68476 385.05969,447.68476 Z\"],\n\"planet-water-world\": [\"m 503.16406,34.638672 c -122.95459,0 -240.90953,48.85876 -327.85156,135.800778 -86.942026,86.94203 -135.80078,204.89697 -135.800781,327.85157 0,122.95459 48.858755,240.90953 135.800781,327.85156 86.94203,86.94202 204.89697,135.80078 327.85156,135.80078 122.95459,0 240.90955,-48.85876 327.85156,-135.80078 C 917.95765,739.20055 966.81641,621.24561 966.81641,498.29102 966.8164,375.33642 917.95765,257.38148 831.01562,170.43945 744.07361,83.497432 626.11865,34.638672 503.16406,34.638672 Z m 0,69.556638 c 104.53367,0 204.74955,41.51127 278.66602,115.42774 73.91646,73.91646 115.42773,174.1343 115.42773,278.66797 0,104.53367 -41.51126,204.74954 -115.42773,278.66601 -73.91647,73.91647 -174.13235,115.42774 -278.66602,115.42774 -104.53367,0 -204.7515,-41.51127 -278.66797,-115.42774 -73.91646,-73.91647 -115.42773,-174.13234 -115.42773,-278.66601 0,-104.53367 41.51127,-204.75151 115.42773,-278.66797 73.91647,-73.91647 174.1343,-115.42774 278.66797,-115.42774 z\",\n\"m 508.92773,229.7793 c 0,0 -174.0045,219.06587 -178.09961,346.49218 a 168.95761,186.13974 0 0 0 -2.07617,28.29493 168.95761,186.13974 0 0 0 168.95703,186.13867 168.95761,186.13974 0 0 0 168.95704,-186.13867 168.95761,186.13974 0 0 0 -1.4375,-23.90235 C 662.98137,449.7257 508.92773,229.7793 508.92773,229.7793 Z\"],\n\"planet\": [\"m 518.32812,30.400391 c -123.93,0 -242.80574,49.239342 -330.4375,136.871089 -87.63174,87.63176 -136.871089,206.50749 -136.871089,330.4375 3e-6,104.02054 34.804726,204.40216 97.769529,285.81446 6.92239,9.51041 14.13952,18.78736 21.80078,27.67383 33.26965,38.59015 72.3136,69.41167 114.83985,91.50195 70.27115,40.40579 150.43618,62.31836 232.89843,62.31836 123.93003,0 242.8038,-49.23934 330.43555,-136.8711 87.63175,-87.63175 136.87305,-206.50748 136.87305,-330.4375 0,-123.93001 -49.2413,-242.80574 -136.87305,-330.4375 C 761.13192,79.639733 642.25815,30.400393 518.32812,30.400391 Z M 540.51172,71 c 105.25266,5.467396 205.073,49.66089 279.96875,124.55664 80.14117,80.14117 125.15625,188.81561 125.15625,302.15234 0,113.33674 -45.01508,222.01118 -125.15625,302.15235 -71.59607,71.59607 -165.98206,115.05182 -266.10352,123.52734 61.2025,-21.11236 117.33829,-59.48796 162.77539,-112.1914 71.789,-83.26956 111.55274,-195.21637 111.55274,-311.76954 0,-116.55316 -39.76374,-228.50192 -111.55274,-311.77148 C 668.30435,130.99644 607.09491,90.883487 540.51172,71 Z m -96.64063,31.97656 c 88.83348,0 174.3856,40.76719 238.26758,114.86524 63.88198,74.09804 100.33789,175.5877 100.33789,281.58593 0,105.99823 -36.45591,207.48594 -100.33789,281.58399 -63.88198,74.09804 -149.4341,114.86719 -238.26758,114.86719 -88.83347,0 -174.38559,-40.76915 -238.26757,-114.86719 -63.88198,-74.09805 -100.33594,-175.58576 -100.33594,-281.58399 0,-105.99822 36.45396,-207.48789 100.33594,-281.58593 63.88198,-74.09805 149.4341,-114.86524 238.26757,-114.86524 z\"],\n\"planetary-port-large\": [\"m 483.11523,239.83594 a 12,12 0 0 0 -8.91211,2.21875 12,12 0 0 0 -2.51562,16.7832 c 0,0 17.59085,23.25977 49.25781,23.25977 31.25936,0 46.44336,-22.95313 46.44336,-22.95313 a 12,12 0 0 0 -4.20898,-16.44141 12,12 0 0 0 -16.44141,4.21094 c 0,0 -5.03425,11.1836 -25.79297,11.1836 -20.35111,0 -29.95898,-13.52735 -29.95898,-13.52735 a 12,12 0 0 0 -7.8711,-4.73437 z m 75.21875,-72.00586 a 12,12 0 0 0 -7.99023,4.52734 c 0,0 -10.54537,13.77539 -30.89648,13.77539 -20.35111,0 -29.96094,-13.52734 -29.96094,-13.52734 a 12,12 0 0 0 -16.78321,-2.51563 12,12 0 0 0 -2.51562,16.78321 c 0,0 17.59281,23.25976 49.25977,23.25976 31.66695,0 49.82031,-23.01172 49.82031,-23.01172 a 12,12 0 0 0 -2.08008,-16.84375 12,12 0 0 0 -8.85352,-2.44726 z m 19.47071,-493.96875 a 6,6 0 0 0 -6.18555,5.80859 l -2.43359,77.37305 a 6,6 0 0 0 5.80859,6.18555 6,6 0 0 0 6.18555,-5.8086 l 2.43359,-77.37109 a 6,6 0 0 0 -5.80859,-6.1875 z m 31.56836,496.16015 a 12,12 0 0 0 -8.62891,3.14454 c 0,0 -14.3636,12.32031 -30.89648,12.32031 a 12,12 0 0 0 -12,12 12,12 0 0 0 12,12 c 27.72333,0 47.11718,-18.63086 47.11718,-18.63086 a 12,12 0 0 0 0.73438,-16.95508 12,12 0 0 0 -8.32617,-3.87891 z m -179.32422,50.24219 a 12,12 0 0 0 -6.85938,6.10547 12,12 0 0 0 5.57422,16.0293 c 12.55384,6.07467 25.23155,6.80665 34.77539,6.16211 4.77192,-0.32228 8.78192,-1.00369 11.81446,-1.70313 1.51626,-0.34972 2.7576,-0.69028 3.92968,-1.08398 0.58605,-0.19685 1.10477,-0.36931 1.99414,-0.78516 0.44469,-0.20793 0.93472,-0.39347 2.0586,-1.19336 0.56194,-0.39994 1.31632,-0.87829 2.49804,-2.37305 1.18173,-1.49475 3.54857,-5.20446 2.23047,-10.41406 a 12,12 0 0 0 -14.57812,-8.68945 12,12 0 0 0 -7.02735,5.23828 c 0.18802,-0.27665 0.39029,-0.81951 0.54688,-1.01758 1.16388,-1.47218 1.88968,-1.92505 2.41211,-2.29687 1.04485,-0.74364 1.41205,-0.86261 1.69336,-0.99414 0.56261,-0.26307 0.58874,-0.24458 0.52929,-0.22461 -0.11888,0.0399 -0.77971,0.23969 -1.67968,0.44726 -1.79995,0.41515 -4.67404,0.91728 -8.03907,1.14453 -6.73005,0.45452 -15.34023,-0.25654 -22.70507,-3.82031 a 12,12 0 0 0 -9.16797,-0.53125 z m 36,8.05664 a 12,12 0 0 0 -1.25196,8.57422 c -1.00446,-3.97002 0.13805,-6.68019 1.25196,-8.57422 z m -41.98633,-65.8164 a 12,12 0 0 0 -6.78516,6.18945 12,12 0 0 0 5.76758,15.96094 c 12.70972,5.9609 25.61655,6.48047 35.33203,5.76172 4.85775,-0.35938 8.94404,-1.05693 11.95703,-1.71875 1.5065,-0.33092 2.72514,-0.64647 3.75391,-0.95313 0.51439,-0.15333 0.94293,-0.28471 1.58203,-0.52734 0.31955,-0.12132 0.61672,-0.20715 1.50195,-0.67188 0.44262,-0.23236 0.95603,-0.36148 2.45118,-1.69531 0.74757,-0.66692 1.98426,-1.52595 3.18164,-4.5625 0.59869,-1.51828 0.68768,-6.30157 0.6875,-6.30274 -1.9e-4,-0.001 -3.17877,-6.39943 -3.17969,-6.40039 a 12,12 0 0 0 -16.91992,-0.39648 c 0.0737,-0.0635 0.18774,-0.18707 0.2539,-0.24609 1.47931,-1.3197 1.96511,-1.43243 2.36914,-1.64454 0.80807,-0.42421 0.98279,-0.45913 1.13672,-0.51757 0.30787,-0.11689 0.2305,-0.08 0.0801,-0.0352 -0.30083,0.0897 -1.05127,0.29303 -2.04687,0.51172 -1.99122,0.43739 -5.03762,0.96449 -8.58008,1.22656 -7.08493,0.52415 -16.04666,-0.12237 -23.36914,-3.55664 a 12,12 0 0 0 -9.17383,-0.42187 z m 39.26172,4.75195 a 12,12 0 0 0 -3.36524,7.64258 c 0.10016,-1.29415 0.24508,-2.71804 0.51954,-3.41407 1.05907,-2.68582 2.09689,-3.58215 2.8457,-4.22851 z m -3.45703,8.92773 a 12,12 0 0 0 3.10156,7.99024 c 9.2e-4,9.5e-4 -3.17597,-6.3957 -3.17578,-6.39453 6e-5,3.6e-4 0.0449,-0.91848 0.0742,-1.59571 z M 428.2832,20.869141 a 12,12 0 0 0 -12.04297,11.957031 l -0.83984,232.615238 a 12,12 0 0 0 11.95703,12.04492 12,12 0 0 0 12.04297,-11.95703 L 440.24023,32.914062 A 12,12 0 0 0 428.2832,20.869141 Z m 47.37305,-51.478516 a 12,12 0 0 0 -11.94141,12.058594 l 1.6875,345.714841 a 12,12 0 0 0 12.0586,11.94141 12,12 0 0 0 11.9414,-12.0586 l -1.6875,-345.714839 a 12,12 0 0 0 -12.05859,-11.941406 z m 88.5293,0.002 a 12,12 0 0 0 -12.25391,11.740235 l -7.40234,345.7148 a 12,12 0 0 0 11.74023,12.2539 12,12 0 0 0 12.25391,-11.74023 l 7.40234,-345.714846 a 12,12 0 0 0 -11.74023,-12.253906 z m 54.28906,-221.427735 a 12,12 0 0 0 -12.25781,11.73633 c -3.83527,176.14259 -7.72184,352.60119 -10.92969,525.00586 a 12,12 0 0 0 11.77539,12.22266 12,12 0 0 0 12.2207,-11.77539 c 3.20681,-172.34877 7.09239,-348.785076 10.92774,-524.93164 a 12,12 0 0 0 -11.73633,-12.25782 z m -88.56836,-0.002 A 12,12 0 0 0 518,-239.94531 l 1.55078,199.970701 a 12,12 0 0 0 12.09375,11.90625 12,12 0 0 0 11.90625,-12.09375 L 542,-240.13086 a 12,12 0 0 0 -12.09375,-11.90625 z m -102.41797,505.625 a 12.0012,12.0012 0 0 0 -12.08594,11.71875 c -9.2e-4,0.0623 0.0198,0.11761 0.0195,0.17969 h -0.0215 c 0,0.60095 0.15911,1.14604 0.2168,1.72851 0.5164,5.43128 3.3118,10.12104 6.53906,13.22071 3.60793,3.46529 7.76556,5.73334 12.3457,7.57617 2.27448,0.91514 4.67202,1.71362 7.17383,2.40234 1.13409,0.31221 2.36244,0.51943 3.53906,0.78516 6.37723,1.45047 13.32141,2.26423 20.74805,2.32812 0.33198,0.003 0.64289,0.039 0.97656,0.0391 0.007,0 0.0142,0 0.0215,0 a 12.0012,12.0012 0 0 0 0.0215,-23.99805 c -0.007,-1e-5 -0.0141,10e-6 -0.0215,0 -3e-5,0 3e-5,-0.002 0,-0.002 -0.23493,0 -0.44984,-0.0273 -0.6836,-0.0293 -6.62074,-0.0705 -12.76961,-0.93101 -17.61718,-2.16602 -1.93562,-0.49908 -3.70574,-1.04201 -5.1543,-1.63086 -2.59331,-1.05419 -4.25448,-2.23594 -4.68164,-2.64648 -0.0471,-0.0453 0.0429,0.0951 0.0273,0.084 -0.0108,-0.01 -0.0609,-0.0417 -0.0703,-0.0508 -0.3655,-0.35105 0.40196,0.65509 0.53516,2.16211 a 12.0012,12.0012 0 0 0 -11.82813,-11.70117 z m 179.78516,19.5 a 12.0012,12.0012 0 0 0 -11.97657,11.81836 c 0.0205,-1.72937 0.99746,-2.77801 0.57813,-2.37695 -0.003,0.003 -0.0167,0.011 -0.0195,0.0137 -0.0141,0.013 0.0314,-0.052 0.0117,-0.0332 -0.44129,0.42117 -2.13042,1.61347 -4.74219,2.67187 -1.29132,0.5233 -2.79948,1.02026 -4.47266,1.47461 -0.004,9.5e-4 -0.006,0.001 -0.01,0.002 -5.09128,1.36944 -11.77152,2.33649 -18.94922,2.35547 a 12.0012,12.0012 0 0 0 0.0312,24 c 0.0107,0 0.0206,-0.002 0.0312,-0.002 v 0.002 c 0.2427,-6.4e-4 0.46909,-0.0272 0.71094,-0.0293 8.84917,-0.0573 17.14006,-1.09497 24.48828,-3.13476 0.17125,-0.0473 0.31999,-0.11768 0.49023,-0.16602 2.3303,-0.66158 4.58622,-1.40006 6.71485,-2.25976 4.56826,-1.84501 8.71084,-4.11356 12.30468,-7.55078 2.60947,-2.49575 4.99427,-5.99298 6.1211,-10.09571 0.0343,-0.12498 0.10287,-0.23128 0.13476,-0.35742 3.1e-4,-0.001 -3.1e-4,-0.003 0,-0.004 0.23835,-0.94353 0.28598,-1.96172 0.37305,-2.96485 0.0449,-0.5143 0.19141,-0.9906 0.19141,-1.51953 h -0.004 c 0,-0.009 0.004,-0.0165 0.004,-0.0254 a 12.0012,12.0012 0 0 0 -12.01172,-11.81836 z m -141.8711,42.01758 v 12 c 0,6.20888 3.21825,11.47266 6.79493,14.91015 3.57667,3.4375 7.70753,5.72207 12.27343,7.57813 9.13181,3.71213 20.25141,5.59375 32.49414,5.59375 12.24274,0 23.36038,-1.88162 32.49219,-5.59375 4.56591,-1.85606 8.69872,-4.14063 12.27539,-7.57813 3.57667,-3.43749 6.79297,-8.70127 6.79297,-14.91015 v -12 h -24 v 10.01562 c -0.71552,0.54334 -2.0009,1.38277 -4.10547,2.23828 -5.18661,2.10839 -13.84864,3.82813 -23.45508,3.82813 -9.60643,0 -18.26846,-1.71974 -23.45507,-3.82813 -2.10457,-0.85551 -3.3919,-1.69494 -4.10743,-2.23828 V 315.10547 Z M 607.47656,49.089844 a 12,12 0 0 0 -7.27734,5.605468 c -3.4417,5.985625 -10.03453,11.046875 -29.66406,11.046875 a 12,12 0 0 0 -12,12 12,12 0 0 0 12,12 c 24.62668,0 42.23357,-8.758405 50.4707,-23.083984 a 12,12 0 0 0 -4.42188,-16.384766 12,12 0 0 0 -9.10742,-1.183593 z M 519.82227,-52.751953 c -13.80773,0 -26.40318,2.654637 -36.57227,7.759766 -10.16909,5.105128 -19.53516,13.809113 -19.53516,26.382812 0,12.573699 9.36607,21.2757305 19.53516,26.3808594 10.16909,5.1051286 22.76454,7.7617186 36.57227,7.7617186 13.80772,0 26.40317,-2.65659 36.57226,-7.7617186 10.16909,-5.1051289 19.5332,-13.8071604 19.5332,-26.3808594 0,-12.573699 -9.36411,-21.277684 -19.5332,-26.382812 -10.16909,-5.105129 -22.76454,-7.759766 -36.57226,-7.759766 z m 0,24 c 10.55195,0 20.00819,2.299983 25.80273,5.208984 5.79454,2.909001 6.30273,5.278144 6.30273,4.933594 0,-0.34455 -0.50819,2.024593 -6.30273,4.933594 -5.79454,2.909001 -15.25078,5.2089838 -25.80273,5.2089841 -10.55196,-3e-7 -20.01015,-2.2999831 -25.80469,-5.2089841 -5.79454,-2.909001 -6.30274,-5.278144 -6.30274,-4.933594 0,0.34455 0.5082,-2.024593 6.30274,-4.933594 5.79454,-2.909001 15.25273,-5.208984 25.80469,-5.208984 z m -47.47461,20.6933592 c -14.30659,7e-7 -27.44902,3.6672957 -37.77149,10.4375001 -10.32247,6.7702043 -18.33594,17.5578167 -18.33594,30.4902347 0,12.932417 8.01347,23.720029 18.33594,30.490234 10.32247,6.770205 23.4649,10.439453 37.77149,10.439453 h 12 v -24 h -12 c -10.05309,0 -18.96627,-2.807944 -24.60743,-6.507812 -5.64115,-3.699869 -7.5,-7.377501 -7.5,-10.421875 0,-3.044375 1.85885,-6.720054 7.5,-10.419922 5.64116,-3.699869 14.55434,-6.507812 24.60743,-6.507813 h 12 V -8.0585938 Z M 574.10742,-274.18164 c -13.80772,0 -26.40318,2.65659 -36.57226,7.76172 -10.16909,5.10512 -19.53515,13.80716 -19.53516,26.38086 0,12.5737 9.36607,21.27768 19.53516,26.38281 10.16909,5.10513 22.76454,7.76172 36.57226,7.76172 13.80772,0 26.40318,-2.65659 36.57227,-7.76172 10.16908,-5.10513 19.53516,-13.80911 19.53515,-26.38281 0,-12.5737 -9.36607,-21.27574 -19.53515,-26.38086 -10.16909,-5.10513 -22.76455,-7.76172 -36.57227,-7.76172 z m 0,24 c 10.55196,0 20.01015,2.30194 25.80469,5.21094 5.79454,2.909 6.30273,5.27619 6.30273,4.93164 0,-0.34455 -0.50819,2.02459 -6.30273,4.93359 -5.79454,2.909 -15.25273,5.21094 -25.80469,5.21094 -10.55196,0 -20.01014,-2.30194 -25.80469,-5.21094 -5.79454,-2.909 -6.30273,-5.27814 -6.30273,-4.93359 0,0.34455 0.50819,-2.02264 6.30273,-4.93164 5.79455,-2.909 15.25274,-5.21094 25.80469,-5.21094 z m -368.4375,567.14453 c -36.30581,7.37839 -63.3359,17.92482 -96.80469,14.38867 l -11.933589,-1.26172 -2.521485,23.86719 11.933594,1.26172 c 35.00072,3.698 62.96496,-5.12513 92.40234,-12.02148 0.70501,3.18735 1.73207,7.05808 2.60743,9.96093 -30.57318,17.29425 -69.77116,30.07526 -91.87305,31.27539 l -11.982423,0.65039 1.300781,23.96485 11.982422,-0.65039 c 31.50328,-1.71064 76.25108,-17.58709 111.29102,-39.52149 a 12.0012,12.0012 0 0 0 4.9121,-14.26758 c -4.01658,-11.0577 -4.5533,-13.27773 -7.10156,-27.9414 a 12.0012,12.0012 0 0 0 -14.21289,-9.70508 z m 22.81836,63.65234 a 12.0012,12.0012 0 0 0 -9.43164,0.72657 c -32.22881,16.8708 -72.86686,36.72366 -101.67383,40.45507 l -11.90039,1.54102 3.08203,23.80078 11.90235,-1.54101 c 32.12394,-4.16107 67.80727,-21.35761 98.24023,-37.09571 1.05567,2.5417 2.5704,5.79243 3.4707,7.94336 -25.04359,21.67084 -66.15033,42.69269 -89.41992,52.1875 l -11.10937,4.53321 9.0664,22.22265 11.11133,-4.53515 c 27.3404,-11.15585 74.39669,-34.33461 103.26367,-62.67969 a 12.0012,12.0012 0 0 0 2.36914,-13.83985 c -4.07016,-8.31351 -4.83301,-11.97954 -11.9414,-27.38671 a 12.0012,12.0012 0 0 0 -7.0293,-6.33204 z m 28.4707,57.08204 a 12.0012,12.0012 0 0 0 -8.60351,2.86523 c -28.00991,24.02312 -59.57823,51.88636 -86.59766,65.89258 l -10.65234,5.52148 11.04492,21.3086 10.6543,-5.52344 c 28.37424,-14.70853 56.83639,-39.35833 82.46875,-61.48828 5.73896,5.82932 11.59748,11.02517 18.34961,16.36914 -15.4624,26.48027 -39.4509,47.10285 -60.77149,64.52734 l -9.29297,7.59375 15.1875,18.58399 9.29297,-7.59375 c 23.80605,-19.45577 54.06679,-44.6064 71.84961,-81.13086 a 12.0012,12.0012 0 0 0 -3.71289,-14.94336 c -13.30331,-9.71616 -20.874,-16.62026 -31.06641,-28.01172 a 12.0012,12.0012 0 0 0 -8.15039,-3.9707 z m 558.09961,-69.375 a 12.0012,12.0012 0 0 0 -7.81445,4.09375 c -6.05522,7.01996 -9.19767,12.00083 -11.86914,15.96289 -2.67147,3.96206 -4.97347,7.20039 -11.08789,13.39257 a 12.0012,12.0012 0 0 0 -0.28125,16.56836 c 25.39684,27.53453 55.8383,45.34641 84.96875,61.79688 l 10.44726,5.90039 11.80274,-20.89649 -10.44922,-5.90234 c -25.67022,-14.49641 -50.53781,-29.2627 -71.48242,-49.42383 2.43828,-2.98975 4.38991,-5.65571 5.98242,-8.01758 1.22803,-1.82129 2.32185,-3.45702 3.50586,-5.1621 24.40276,17.24502 43.89206,26.51776 73.91797,37.75195 l 11.23828,4.20508 8.41016,-22.47852 -11.23829,-4.20508 C 867.81243,399.45015 851.62236,391.86206 823.5625,370.67773 a 12.0012,12.0012 0 0 0 -8.50391,-2.35546 z m -46.88867,61.97656 a 12.0012,12.0012 0 0 0 -8.46875,2.79492 c -14.86067,12.50671 -17.60978,16.92727 -30.68555,25.57812 a 12.0012,12.0012 0 0 0 -4.04882,15.49805 c 16.66678,32.39236 41.30107,59.46654 66.79297,83.81836 l 8.67773,8.28906 16.57812,-17.35547 -8.67773,-8.2871 c -22.00431,-21.02022 -42.40037,-43.46053 -57.01562,-68.42579 5.53552,-4.2814 10.46515,-8.76224 15.61328,-13.43554 21.65501,21.89354 45.96851,41.18989 75.48632,59.56836 l 10.1875,6.34179 12.6836,-20.37304 -10.18555,-6.3418 c -31.83413,-19.82066 -56.77937,-40.00503 -78.87695,-63.84961 a 12.0012,12.0012 0 0 0 -8.06055,-3.82031 z m -69.0293,52.80273 a 12.0012,12.0012 0 0 0 -8.65625,0.58594 c -17.4304,8.15159 -24.61479,11.46437 -39.62304,17.86914 a 12.0012,12.0012 0 0 0 -7.19141,12.57422 c 5.13046,39.69209 23.71562,74.01314 39.44141,100.79101 l 6.07812,10.34766 20.69532,-12.15234 -6.07813,-10.34766 c -13.99936,-23.8381 -28.95428,-52.26956 -34.8125,-82.95508 6.84021,-2.9875 14.28246,-6.34062 21.71875,-9.78906 14.97185,25.74399 30.14862,51.30143 56.4707,77.77148 l 8.46094,8.50977 17.01953,-16.92383 -8.46289,-8.50976 c -27.09502,-27.24734 -41.13128,-53.03157 -58.27148,-82.36914 a 12.0012,12.0012 0 0 0 -6.78907,-5.40235 z m -92.55273,32.47071 c -19.1741,2.62267 -36.03914,5.59182 -52.37891,8.66796 a 12.0012,12.0012 0 0 0 -9.77343,12.1836 c 1.16328,35.67518 4.26913,69.91448 11.75586,100.99219 l 2.81054,11.66601 23.33203,-5.62109 -2.81054,-11.66602 c -6.20112,-25.74109 -9.21175,-54.92724 -10.59961,-85.81055 9.89812,-1.79765 20.22132,-3.50892 31.04883,-5.125 9.74984,29.99381 20.15512,60.33654 34.97265,90.46875 l 5.29688,10.76954 21.53515,-10.5918 -5.29492,-10.76758 c -15.47501,-31.46922 -26.1965,-63.92063 -36.84765,-96.95898 a 12.0012,12.0012 0 0 0 -13.04688,-8.20703 z m 6.4375,-413.1875 a 12,12 0 0 0 -13.9043,9.72656 12,12 0 0 0 9.72852,13.90625 c 136.91009,24.19727 233.82727,116.69148 239.25,205.5625 1.2094,19.82031 -3.06065,42.60463 -10.97266,64.04687 a 12,12 0 0 0 7.10352,15.41407 12,12 0 0 0 15.41211,-7.10547 c 8.82882,-23.92689 13.89218,-49.5601 12.41211,-73.81641 C 865.66533,225.40651 758.26048,128.05338 613.02539,102.38477 Z m -188.64648,7.72265 C 288.2791,144.37287 186.63999,234.69196 172.72461,332.38867 a 12,12 0 0 0 10.1875,13.57227 12,12 0 0 0 13.57226,-10.1875 C 208.33013,252.60715 301.18686,165.87176 430.23828,133.38086 a 12,12 0 0 0 8.70703,-14.56641 12,12 0 0 0 -14.5664,-8.70703 z M 183.17969,365.32227 a 12,12 0 0 0 -10.17774,13.58007 c 1.19429,8.34146 2.94295,16.66599 5.23242,24.92969 a 12,12 0 0 0 14.76758,8.35938 12,12 0 0 0 8.36133,-14.76758 c -2.0213,-7.29577 -3.55726,-14.61439 -4.60351,-21.92188 a 12,12 0 0 0 -13.58008,-10.17968 z m 641.88867,64.48046 a 12,12 0 0 0 -7.46094,5.35743 c -6.71474,10.82244 -13.61467,20.06721 -22.44922,30.51367 a 12,12 0 0 0 1.41407,16.91211 12,12 0 0 0 16.9121,-1.41407 c 9.37462,-11.08507 17.13568,-21.45969 24.51758,-33.35742 a 12,12 0 0 0 -3.87109,-16.52343 12,12 0 0 0 -9.0625,-1.48829 z m -614.68359,1.70899 a 12,12 0 0 0 -9.13672,0.92383 12,12 0 0 0 -4.88477,16.25195 c 6.01742,11.18835 13.07938,22.10692 21.1582,32.64453 a 12,12 0 0 0 16.82422,2.22266 12,12 0 0 0 2.22266,-16.82422 C 229.2507,457.18568 222.89197,447.34574 217.5,437.32031 a 12,12 0 0 0 -7.11523,-5.80859 z M 766.2793,500.2832 a 12,12 0 0 0 -8.75782,2.76953 c -11.57025,9.72446 -24.06378,18.87798 -37.36523,27.28907 a 12,12 0 0 0 -3.72852,16.55468 12,12 0 0 0 16.55664,3.73047 c 14.21047,-8.98589 27.57409,-18.77397 39.98047,-29.20117 a 12,12 0 0 0 1.46485,-16.9082 12,12 0 0 0 -8.15039,-4.23438 z m -501.56641,2.15625 a 12,12 0 0 0 -8.16602,4.20313 12,12 0 0 0 1.4004,16.91211 c 63.49685,53.77935 160.05089,89.32054 284.87304,85.51562 6.33061,-0.19298 12.6154,-0.54557 18.84961,-1.05273 a 12,12 0 0 0 10.98828,-12.9336 12,12 0 0 0 -12.93359,-10.98828 c -5.83265,0.4745 -11.71218,0.80579 -17.63477,0.98633 -119.9032,3.65498 -210.31107,-30.44721 -268.63086,-79.8418 a 12,12 0 0 0 -8.74609,-2.80078 z m 412.28906,55.14063 a 12,12 0 0 0 -9.18359,0.0449 c -13.38845,5.62405 -27.29915,10.5071 -41.65234,14.53711 a 12,12 0 0 0 -8.3086,14.79687 12,12 0 0 0 14.79688,8.31055 c 15.32535,-4.30296 30.17124,-9.51576 44.45898,-15.51758 a 12,12 0 0 0 6.41602,-15.71093 12,12 0 0 0 -6.52735,-6.46094 z M 424.12171,133.25194 c -103.33381,33.18388 -176.50548,110.0623 -171.70082,189.5282 5.95097,98.42509 112.25086,185.40105 286.13018,180.05198 71.59742,-2.20257 134.92089,-28.88743 180.00372,-67.18716 45.08284,-38.29972 72.50645,-88.65259 69.4825,-138.66685 -4.56604,-75.51976 -75.93907,-144.67724 -174.05881,-170.28027 a 12,12 0 0 0 -14.64163,8.58092 12,12 0 0 0 8.58093,14.64164 c 90.56539,23.63182 152.48037,87.59339 156.16326,148.50614 2.42839,40.16411 -20.25988,84.26216 -61.06471,118.92753 -40.80481,34.66539 -99.14662,59.45847 -165.20336,61.49059 C 372.10705,483.94229 281.33089,403.26331 276.37714,321.3317 272.54893,258.01567 335.34456,186.96834 431.45947,156.10269 a 12,12 0 0 0 7.75547,-15.09518 12,12 0 0 0 -15.09323,-7.75557 z m 6.70671,78.75637 a 12,12 0 0 0 -9.12222,1.06616 c -36.92894,20.6084 -62.10354,52.58714 -59.91232,88.8285 1.86906,30.91299 23.39371,56.56326 53.69564,73.14075 30.30191,16.57749 70.08979,25.02849 113.12413,22.42655 43.03433,-2.60193 81.51418,-15.78514 109.59804,-35.89273 28.08388,-20.10761 46.3613,-48.16439 44.49226,-79.07738 -2.17449,-35.96465 -30.61671,-64.52773 -69.28523,-80.59434 a 12,12 0 0 0 -15.6845,6.47792 12,12 0 0 0 6.47597,15.68464 c 33.31422,13.84192 53.08774,35.90196 54.5375,59.88022 1.24613,20.61023 -10.89424,41.20805 -34.50679,58.11425 -23.61253,16.9062 -58.10877,29.09516 -97.07569,31.45117 -38.96692,2.35601 -74.68043,-5.58793 -100.15788,-19.52607 -25.47744,-13.93813 -40.01106,-32.92319 -41.2572,-53.53342 -1.46093,-24.16275 15.80092,-48.64789 47.65236,-66.42275 a 12,12 0 0 0 4.63051,-16.3268 12,12 0 0 0 -7.20458,-5.69667 z\"],\n\"planetary-port\": [\"M 160.48925,77.792879 V 695.73316 H 36.511025 V 870.1252 H 2.6695246 v 74.58186 H 996.94115 V 870.1252 H 962.77782 V 547.22162 H 628.8771 V 77.792879 H 215.15767 Z m 54.66842,54.668401 H 574.20868 V 547.22162 H 435.23393 V 695.73316 H 215.15767 V 370.84767 h 274.44284 v -55.9712 H 215.15767 V 253.51434 H 489.60051 V 197.54535 H 215.15767 Z m 276.45805,474.84855 h 414.7781 v 68.62624 H 611.12407 v 55.97118 H 906.39382 V 789.199 870.1252 H 491.61572 Z M 92.706377,746.471 H 435.23393 V 869.20415 H 92.706377 Z\"],\n\"plant\": [\"m 209.28347,219.28281 c -57.8574,-2.27562 -98.48395,13.45823 -109.927345,42.57267 -20.3284,51.72319 55.576605,129.95893 169.537465,174.74329 34.64478,13.56845 70.26466,22.95433 103.57771,27.29282 l -0.11156,0.10884 c 135.34154,71.74049 236.68446,268.22969 168.52757,412.33845 h 75.2638 c 38.69044,-123.02136 -1.04157,-253.13393 -68.66031,-355.6158 49.04917,5.39004 115.69972,-9.21295 179.67848,-39.36716 111.54538,-52.64921 182.59884,-136.37179 158.70181,-186.99898 -23.8958,-50.62732 -133.6919,-48.98858 -245.2365,3.66025 -52.15844,24.66452 -97.9355,57.52166 -127.74036,91.68749 C 499.47896,340.53765 430.94272,284.05999 342.50307,249.29295 297.07965,231.44249 250.25217,220.89377 209.2835,219.28284 Z\"],\n\"poi-empty\": [\"M 56.127804,68.437961 V 388.34462 H 113.79397 V 128.68106 H 368.53119 V 68.437961 Z m 564.808846,0 V 128.68106 H 873.0793 v 259.66356 h 58.19179 V 68.437961 Z M 56.127804,640.75009 V 943.58125 H 368.53119 V 887.9664 H 113.79397 V 640.75009 Z m 816.951496,0 V 887.9664 H 620.93665 v 55.61485 H 931.27109 V 640.75009 Z\"],\n\"poi\": [\"M 56.127804,68.437961 V 388.34462 H 113.79397 V 128.68106 H 368.53119 V 68.437961 Z m 564.808846,0 V 128.68106 H 873.0793 v 259.66356 h 58.19179 V 68.437961 Z M 56.127804,640.75009 V 943.58125 H 368.53119 V 887.9664 H 113.79397 V 640.75009 Z m 816.951496,0 V 887.9664 H 620.93665 v 55.61485 H 931.27109 V 640.75009 Z\",\n\"m 242.32812,257.51172 v 30 472.16015 H 744.48828 V 257.51172 Z m 60,60 H 684.48828 V 699.67187 H 302.32812 Z\"],\n\"power\": [\"m 1703.541,-199.82617 -145.164,70.57226 -161.002,11.46485 -52.7441,152.548826 -105.7403,121.951174 70.5723,145.16406 11.4648,161.00195 152.5489,52.74414 121.9531,105.74024 145.1641,-70.57227 161,-11.46484 52.748,-152.55274 105.7363,-121.94921 -70.5722,-145.16407 -11.4649,-160.999997 -152.5488,-52.746094 z m -12.5117,95.03515 93.7246,81.265629 117.2402,40.535157 8.8106,123.736324 54.2383,111.56446 -81.2657,93.72656 -2.5234,7.29883 -38.0117,109.9414 -123.7363,8.81055 -111.5645,54.23633 -93.7266,-81.26367 -117.2402,-40.53711 -8.8105,-123.73633 -54.2364,-111.56445 81.2637,-93.724613 40.5371,-117.240234 123.7363,-8.810547 z\"],\n\"route\": [\"m 862.98602,220.5041 a 136.44227,136.44227 0 0 0 -136.44297,136.44296 136.44227,136.44227 0 0 0 11.45936,54.34709 L 602.91264,510.8725 a 97.011715,97.011715 0 0 0 -33.46669,-6.21736 97.011715,97.011715 0 0 0 -54.47088,16.91477 L 384.71534,429.61973 a 97.011715,97.011715 0 0 0 3.85038,-26.98466 97.011715,97.011715 0 0 0 -97.01073,-97.01074 97.011715,97.011715 0 0 0 -97.01288,97.01074 97.011715,97.011715 0 0 0 29.37302,69.20649 L 103.40088,685.5866 A 82.616429,82.616429 0 0 0 83.762656,683.03177 82.616429,82.616429 0 0 0 1.1460234,765.64627 82.616429,82.616429 0 0 0 83.762656,848.26291 82.616429,82.616429 0 0 0 166.3793,765.64627 82.616429,82.616429 0 0 0 149.50508,715.96061 L 272.64886,497.552 a 97.011715,97.011715 0 0 0 18.90613,2.09593 97.011715,97.011715 0 0 0 63.39675,-23.61878 l 125.13302,88.33031 a 97.011715,97.011715 0 0 0 -7.64953,37.3064 97.011715,97.011715 0 0 0 97.01072,97.01288 97.011715,97.011715 0 0 0 97.01286,-97.01288 97.011715,97.011715 0 0 0 -18.00969,-55.93292 l 121.3808,-89.47432 a 136.44227,136.44227 0 0 0 93.1561,37.12925 A 136.44227,136.44227 0 0 0 999.42687,356.94706 136.44227,136.44227 0 0 0 862.98602,220.5041 Z\"],\n\"scan\": [\"m 503.16406,34.638672 c -122.95463,0 -240.90951,48.858732 -327.85156,135.800778 -86.942054,86.94206 -135.80078,204.89694 -135.800781,327.85157 0,122.95463 48.858727,240.9095 135.800781,327.85156 86.94205,86.94205 204.89693,135.80078 327.85156,135.80078 122.95463,0 240.90951,-48.85873 327.85156,-135.80078 C 917.95768,739.20052 966.81641,621.24565 966.81641,498.29102 966.8164,375.33639 917.95768,257.38151 831.01562,170.43945 744.07358,83.497404 626.11869,34.638672 503.16406,34.638672 Z m 0,69.558598 c 4.21694,0 8.41379,0.17799 12.61524,0.3125 l -25.21485,136.15429 c -50.22167,2.84239 -98.4041,19.76959 -139.21679,48.48438 a 65.292099,65.292099 0 0 0 -42.06836,-15.37891 65.292099,65.292099 0 0 0 -65.29297,65.29102 65.292099,65.292099 0 0 0 22.09961,48.9082 c -18.65376,37.07781 -28.70703,78.29873 -28.70703,120.57617 0,71.16264 28.27806,139.43236 78.59765,189.75196 26.12845,26.12844 57.12064,46.24951 90.82032,59.61914 a 65.292099,65.292099 0 0 0 63.99414,53.08007 65.292099,65.292099 0 0 0 57.73632,-35.13867 c 62.80974,-5.35767 122.03606,-32.64543 166.95118,-77.56054 31.27001,-31.27001 54.01203,-69.47798 66.76171,-110.99805 l 120.40235,16.90234 c -18.06614,64.72837 -52.44631,124.38967 -100.8125,172.75586 -73.91644,73.91644 -174.13239,115.42774 -278.66602,115.42774 -104.53363,0 -204.75153,-41.5113 -278.66797,-115.42774 -73.91644,-73.91644 -115.42773,-174.13238 -115.42773,-278.66601 0,-104.53363 41.51129,-204.75153 115.42773,-278.66797 73.91644,-73.91644 174.13434,-115.42578 278.66797,-115.42578 z m -20.17773,177.39648 -26.7461,144.42383 a 99.656357,99.656357 0 0 0 -53.0332,87.79687 99.656357,99.656357 0 0 0 99.65625,99.65625 99.656357,99.656357 0 0 0 86.39063,-50.45508 l 132.47851,18.59766 c -11.13326,32.9115 -29.68511,63.18121 -54.7207,88.2168 -35.78894,35.78894 -82.24308,58.38793 -131.88867,64.83984 a 65.292099,65.292099 0 0 0 -64.33203,-54.25781 65.292099,65.292099 0 0 0 -58.32618,36.21484 c -25.08908,-11.24466 -48.20363,-26.97707 -68.02343,-46.79687 -42.78073,-42.78073 -66.80469,-100.78407 -66.80469,-161.28516 0,-36.75883 8.91689,-72.57203 25.47266,-104.63281 a 65.292099,65.292099 0 0 0 6.16992,0.44141 65.292099,65.292099 0 0 0 65.29101,-65.29297 65.292099,65.292099 0 0 0 -1.91992,-15.69532 c 32.42052,-23.29933 70.44735,-37.77721 110.33594,-41.77148 z\"],\n\"search\": [\"m 655.41602,6.1816406 c -187.61175,0 -342.71094,148.0001394 -342.71094,331.6542994 0,67.26536 20.86973,129.70278 56.45898,181.88281 L 81.263672,807.62109 81.796875,808.1543 3.4902344,886.46094 114.54297,997.51367 441.49023,670.56445 l -0.5332,-0.53125 44.53125,-44.53125 c 50.25894,27.94627 108.31328,43.99024 169.92774,43.99024 187.61173,0 342.71093,-148.00208 342.71093,-331.65625 0,-183.65416 -155.0992,-331.6542933 -342.71093,-331.6542994 z M 656.2168,130.57617 c 118.20294,0 213.14453,94.94161 213.14453,213.14453 0,118.20296 -94.94159,213.14062 -213.14453,213.14063 -118.20296,0 -213.14063,-94.93767 -213.14063,-213.14063 0,-118.20292 94.93768,-213.14453 213.14063,-213.14453 z\"],\n\"settings\": [\"M 996.1458,85.155272 H 851.37151 V 4.5947252 h -54.5832 -41.36408 -54.5832 V 85.155272 H 4.686525 v 15.999998 60.26367 14.26563 H 700.84103 v 82.59375 h 95.94728 54.5832 V 175.68457 H 996.1458 v -14.26563 -60.26367 z m 0,379.732418 H 334.32061 v -80.29297 h -54.5832 -41.36407 -54.5832 v 80.29297 H 4.686525 v 16.26758 60.26367 14 H 183.79014 v 82.85938 h 95.94727 54.5832 V 555.41894 H 996.1458 v -14 -60.26367 z m 0,362.26758 H 630.90384 v -82.56055 h -54.58321 -41.36407 -54.58321 v 82.56055 H 4.686525 v 14 60.26367 16.26563 H 480.37335 v 80.59373 h 54.58321 95.94728 V 917.68457 H 996.1458 v -16.26563 -60.26367 z\"],\n\"settlement\": [\"M 806.05021,150.18863 V 530.32185 H 718.1769 V 305.66712 H 643.82749 V 530.32185 H 566.21546 V 399.70907 H 46.403698 V 771.93744 H 5.2447177 v 72.45205 H 995.75729 V 771.93744 H 954.98276 V 530.32185 H 880.39963 V 150.18863 Z M 114.33678,472.10294 H 498.2871 v 299.8345 H 114.33678 Z M 566.21546,591.45407 H 887.28085 V 771.93744 H 566.21546 Z\"],\n\"shield\": [\"m 503.14298,19.742706 c 0,0 -273.05503,163.832224 -414.325534,166.213864 l 2.493383,197.49685 c 0,0 30.166641,187.61198 115.905641,319.59129 102.41047,161.97461 277.88533,276.15426 297.55086,278.93578 -0.006,0.0581 0.002,0.34477 -0.004,0.39594 0.12033,0.008 0.92419,-0.17945 1.14111,-0.19695 0.21679,0.0176 1.02081,0.20514 1.1411,0.19695 -0.006,-0.0514 0.002,-0.33797 -0.004,-0.39594 0,0 141.87659,-81.38706 270.48508,-258.35931 C 891.84518,543.64941 920.49589,383.45342 920.49589,383.45342 l 2.49135,-171.31026 C 787.25812,197.55608 503.14298,19.742707 503.14298,19.742706 Z m -3.68119,117.091424 c 0,1e-5 215.22248,134.69702 318.04003,145.74703 3.51859,147.19285 -50.70375,291.11256 -110.18793,387.45672 -97.42344,134.05991 -204.89781,195.71006 -204.89781,195.71006 0.005,0.0439 -0.002,0.26152 0.002,0.3005 -0.0911,0.006 -0.69872,-0.13491 -0.86294,-0.14822 -0.16433,0.0133 -0.7738,0.15446 -0.86497,0.14822 0.005,-0.0388 -0.002,-0.25652 0.002,-0.3005 C 485.79521,863.64089 352.871,777.14706 275.29307,654.44815 201.90736,535.10724 187.94142,398.51256 185.60244,262.74578 292.6176,260.94165 499.46179,136.83413 499.46179,136.83413 Z\",\n\"M 640.35233,467.85489 A 142.97715,142.97715 0 0 1 497.37518,610.83204 142.97715,142.97715 0 0 1 354.39803,467.85489 142.97715,142.97715 0 0 1 497.37518,324.87774 142.97715,142.97715 0 0 1 640.35233,467.85489 Z\"],\n\"ship\": [\"M 314.20117,206.81645 6.1621094,450.59961 8.5644531,456.30469 H 6.1621094 v 275.53515 2 70.53516 C 332.33855,804.43078 697.1519,804.27107 995.80859,804.2773 V 731.74219 456.20508 h -2.40234 l 2.40234,-5.70313 -308.03906,-243.7832 c -122.75855,-0.0796 -259.71397,0.10517 -373.56836,0.0977 z m 364.51953,73.58199 6.26368,4.95703 -114.89258,204.39062 0.46093,0.27539 h -0.46093 l -0.58594,241.72071 c -44.96545,-0.12467 -94.15028,0.1114 -137.04297,0.0976 l -0.58398,-241.7207 h -0.46094 l 0.46094,-0.27539 -114.89258,-204.39063 6.26367,-4.95703 c 127.35346,0.10376 228.26609,-0.0976 355.4707,-0.0976 z m 36.11133,28.58008 205.27735,162.45703 V 731.74219 H 604.24023 l 0.55079,-227 z m -427.69336,0.0976 110.04102,195.76367 0.55078,227 H 81.859375 V 471.5332 Z\"],\n\"signal-even-bars\": [\"M 801.95675,361.81793 V 1000.1147 H 998.3222 V 361.81793 Z M 536.09118,195.40049 v 804.71421 h 196.3677 V 195.40049 Z M 270.22786,456.74298 V 1000.1147 H 466.59329 V 456.74298 Z M 4.3622791,243.92548 V 1000.1147 H 200.72997 V 243.92548 Z\"],\n\"signal\": [\"M 801.95675,1.8179325 V 1000.1147 H 998.3222 V 1.8179325 Z M 536.09118,235.40049 v 764.71421 h 196.3677 V 235.40049 Z M 270.22786,436.74298 V 1000.1147 H 466.59329 V 436.74298 Z M 4.3622791,663.92548 V 1000.1147 H 200.72997 V 663.92548 Z\"],\n\"sound\": [\"M 549.77141,139.1917 278.33913,325.74979 H 87.258283 v 323.9721 H 273.23756 l 271.83222,186.83304 c 0.78171,0.62914 1.56547,1.16751 2.35082,1.6148 l 2.35284,1.61696 v -0.78339 c 1.19394,0.63488 2.39087,1.05913 3.58917,1.27219 33.01195,-10e-4 59.77332,-156.81765 59.77332,-350.2604 0,-193.44275 -26.76137,-350.25937 -59.77332,-350.2604 -1.19897,0.21282 -2.39658,0.63707 -3.5912,1.27219 z\",\n\"m 884.2248,141.58073 -18.70639,12.14222 c 30.30788,29.18223 52.43495,174.73869 52.44321,344.98222 -7.8e-4,155.24444 -18.4678,291.96307 -45.37282,335.91657 l 6.65857,4.3224 c 0.82757,0.62918 1.6573,1.16762 2.48871,1.61502 l 2.49193,1.61652 v -0.78395 c 1.26402,0.63514 2.53121,1.05972 3.79985,1.27317 16.78621,9e-5 32.88491,-36.90218 44.75456,-102.58872 11.86965,-65.68654 18.53795,-154.77667 18.53796,-247.67153 -10e-6,-92.89487 -6.66831,-181.98499 -18.53796,-247.67153 -11.86965,-65.68655 -27.96835,-102.58882 -44.75456,-102.58873 -1.2697,0.21259 -2.53796,0.63667 -3.80306,1.27165 z\",\n\"m 677.03529,308.80952 -13.09809,6.73651 c 21.22134,16.19031 36.71456,96.94505 36.72034,191.3962 -5.7e-4,86.12965 -12.93101,161.98117 -31.76971,186.36659 l 4.66228,2.39807 c 0.57946,0.34906 1.16043,0.64779 1.74258,0.89601 l 1.74484,0.89685 v -0.43494 c 0.88506,0.35236 1.77232,0.58793 2.6606,0.70635 11.75359,6e-5 23.02578,-20.47333 31.33683,-56.91624 8.31103,-36.44291 12.98013,-85.87013 12.98014,-137.40822 -10e-6,-51.53808 -4.66911,-100.96531 -12.98014,-137.40822 -8.31105,-36.4429 -19.58324,-56.91629 -31.33683,-56.91624 -0.88902,0.11794 -1.77703,0.35322 -2.66284,0.70552 z\",\n\"m 779.82685,245.64937 -16.38115,9.1818 c 26.54052,22.06723 45.91713,132.13522 45.92436,260.87126 -7.1e-4,117.39391 -16.17219,220.77883 -39.73283,254.01592 l 5.83088,3.26855 c 0.7247,0.47576 1.45129,0.88293 2.17937,1.22125 l 2.18217,1.22239 v -0.59281 c 1.10691,0.48027 2.21657,0.80134 3.3275,0.96275 14.69965,8e-5 28.79722,-27.90497 39.19145,-77.57632 10.39421,-49.67133 16.23362,-117.04018 16.23363,-187.28612 -10e-6,-70.24593 -5.83942,-137.61478 -16.23363,-187.28612 -10.39423,-49.67134 -24.4918,-77.57639 -39.19145,-77.57631 -1.11186,0.16075 -2.22247,0.48143 -3.3303,0.9616 z\"],\n\"star\": [\"m 500.05078,5.9707031 -17.52344,53.2207029 -105,318.902344 L 3.2148438,500.12891 377.52734,622.16406 500.05078,994.28711 622.57227,622.16406 996.88281,500.12891 622.57227,378.09375 Z m 2.09766,185.9941369 77.39844,235.07422 235.94531,76.92578 -235.94531,76.92383 -77.39844,235.07422 -77.40039,-235.07422 -235.94532,-76.92383 235.94532,-76.92578 z\"],\n\"sync\": [\"M 493.29688,24.519531 C 221.76227,21.247545 -0.62071438,269.27704 19.353516,525.74609 28.99458,649.53732 86.72871,771.18447 163.00195,838.7207 l -35.49414,67.63672 199.00391,-4.48828 27.95117,-0.63086 89.57422,-2.01758 -64.08984,-98.54687 -108.51954,-166.8711 -36.37304,68.88086 c -40.45261,-56.92929 -64.25977,-126.6006 -64.25977,-202.13867 0,-193.29308 155.34571,-348.63868 348.63867,-348.63867 5.40762,0 10.78145,0.14011 16.12696,0.38086 l -23.38867,-31.24023 -26.50391,-35.400396 20.90625,-24.152343 6.52344,-7.539063 22.53515,-26.035156 c 0.6113,-3.196023 -13.51501,-2.288945 -15.91211,-2.291016 -8.85499,-0.636698 -17.66464,-1.003827 -26.42382,-1.109375 z m 375.13085,72.267578 -199.0039,4.488281 -27.95117,0.63281 -89.57422,2.01563 64.08984,98.54687 108.51953,166.87305 36.37305,-68.88281 c 40.45261,56.92928 64.25976,126.6006 64.25976,202.13867 0,193.29309 -155.34571,348.63868 -348.63867,348.63867 -5.40762,0 -10.77949,-0.14011 -16.125,-0.38086 l 23.38672,31.24219 26.50391,35.39844 -20.90625,24.15429 -6.52344,7.53907 -22.53516,26.03515 c -0.6113,3.19602 13.51501,2.287 15.91211,2.28906 C 759.57457,997.88995 997.20061,742.14265 976.58203,477.40039 966.94097,353.60916 909.20683,231.96201 832.93359,164.42578 Z\"],\n\"system-authority-solid\": [\"M 503.24805,48.818359 C 384.8681,48.66613 267.37427,56.917164 178.89258,74.027344 V 355.76758 h -74.19336 l 2.39844,150.8418 c 0,0 29.01795,143.29191 111.49218,244.09374 98.51088,123.71134 267.304,210.91854 286.22071,213.04297 -0.006,0.0444 0.002,0.26366 -0.004,0.30274 0.11575,0.006 0.889,-0.13701 1.09766,-0.15039 0.20854,0.0134 0.98194,0.15665 1.09765,0.15039 -0.006,-0.0392 0.002,-0.25846 -0.004,-0.30274 0,0 136.4742,-62.16008 260.18554,-197.32617 C 877.14904,628.96288 904.70879,506.60938 904.70879,506.60938 l 2.39649,-130.8418 H 832.91602 V 74.027344 C 740.89361,57.52608 621.628,48.970588 503.24805,48.818359 Z M 256.58594,139.74805 c 252.00458,-43.52806 249.71436,-41.23711 508.59179,0 V 309.0957 c -249.71363,-43.52806 -272.62386,-43.52806 -508.59179,0 z m 244.55078,177.625 c 135.72963,6.7e-4 245.75984,108.17445 245.75976,241.61328 8e-5,133.43883 -110.03013,241.61261 -245.75976,241.61328 C 365.40633,800.6 255.37492,692.42591 255.375,558.98633 255.37492,425.54675 365.40633,317.37266 501.13672,317.37305 Z\"],\n\"system-authority\": [\"M 503.24805,48.818359 C 384.8681,48.66613 267.37427,56.917164 178.89258,74.027344 V 395.76758 h -74.19336 l 2.39844,110.8418 c 8.08347,373.69776 371.73411,454.21918 397.71289,457.13671 -0.006,0.0444 0.002,0.26366 -0.004,0.30274 0.11575,0.006 0.889,-0.13701 1.09766,-0.15039 0.20854,0.0134 0.98194,0.15665 1.09765,0.15039 -0.006,-0.0392 0.002,-0.25846 -0.004,-0.30274 25.98392,-2.91875 389.62752,-83.44191 397.71093,-457.13671 l 2.39649,-110.8418 H 832.91602 V 74.027344 C 740.89361,57.52608 621.628,48.970588 503.24805,48.818359 Z M 508.50977,81 c 106.99844,-0.445391 213.12824,8.535021 293.00976,28.27734 l 0.70313,321.74024 h 73.48828 L 873.3125,503.6582 C 851.71334,656.39644 830.64216,829.44798 506.20508,932.61328 157.57903,812.61536 161.3899,639.91657 138.49414,503.6582 l -2.39648,-72.64062 74.1914,-2.14453 V 109.27734 C 293.64454,91.316583 401.51132,81.445391 508.50977,81 Z m -2.46485,45.69141 c -86.74895,-0.13327 -172.75296,6.21712 -253.8789,19.22265 v 31.94922 8.91797 31.94922 c 169.57306,-35.16501 349.24527,-38.69365 511.93554,-0.36524 v -31.94921 -8.42774 -31.94922 c -83.894,-12.65904 -171.32035,-19.21441 -258.05664,-19.34765 z m 0,113.11914 c -86.74895,-0.13327 -172.75296,6.21908 -253.8789,19.22461 v 31.94922 8.91601 31.95117 c 169.57306,-35.16501 349.24527,-38.69364 511.93554,-0.36523 v -31.95117 -8.42578 -31.94922 c -83.894,-12.65904 -171.32035,-19.21637 -258.05664,-19.34961 z m 1.58594,159.47851 A 204.22923,199.14529 0 0 0 303.40039,598.43359 204.22923,199.14529 0 0 0 507.63086,797.57812 204.22923,199.14529 0 0 0 711.85938,598.43359 204.22923,199.14529 0 0 0 507.63086,399.28906 Z\"],\n\"system-bodies\": [\"M 262.1543,46.794922 C 123.04241,41.648542 6.0983486,150.25038 0.953125,289.36328 -3.9670304,427.02482 102.53692,543.13994 240.10938,550.10156 v 59.75391 C 148.25876,617.89655 76.601205,692.79202 72.615234,784.91797 68.863756,886.30548 148.00471,971.53697 249.38086,975.28711 350.7558,979.0364 435.97625,899.88631 439.72656,798.5 443.26329,701.56945 370.84075,618.59167 274.33203,609 V 549.72266 C 396.27963,539.23305 493.06551,442.65064 503.8125,320.72461 h 53.48242 c 7.98171,31.63455 35.81665,54.2561 68.41797,55.60351 34.7111,1.23445 65.57279,-21.93114 74.07617,-55.60351 h 42.13282 c 7.94738,59.36135 55.94713,105.1849 115.4746,110.55078 v 45.22266 c -3.966,1.14934 -7.74734,2.65042 -11.37304,4.42187 a 80.183273,76.17411 0 0 0 -52.20899,71.18164 80.183273,76.17411 0 0 0 63.58203,74.32617 v 50.98243 a 56.128292,53.264603 0 0 0 -40.38086,51.12109 56.128292,53.264603 0 0 0 56.12696,53.26563 56.128292,53.264603 0 0 0 56.1289,-53.26563 56.128292,53.264603 0 0 0 -36.36523,-49.70898 v -52.8711 a 80.183273,76.17411 0 0 0 61.27539,-73.84961 80.183273,76.17411 0 0 0 -27.87695,-57.70312 c -9.0712,-8.78826 -20.42872,-15.31086 -33.39844,-18.29883 v -46.69727 c 58.06212,-11.53122 100.66416,-61.34597 103.05273,-120.5 2.61584,-70.71203 -52.58082,-130.15587 -123.28515,-132.77148 -65.29206,-1.87907 -121.54289,45.67118 -130.56641,110.37109 h -42.30273 c -7.29494,-32.44523 -35.41858,-55.98535 -68.64453,-57.45703 -35.13304,-0.87386 -65.99521,23.17783 -73.72657,57.45703 h -54.0332 C 497.12276,156.21329 392.4796,52.237712 262.1543,46.794922 Z\"],\n\"system-orbits\": [\"m 502.86328,19.673828 c -126.01503,0 -246.89001,50.067744 -335.99609,139.173832 C 77.761105,247.95374 27.691405,368.83068 27.691406,494.8457 c 0,47.96265 7.297022,95.16473 21.195313,140.16992 a 76.140038,76.100662 0 0 0 -36.535157,64.86915 76.140038,76.100662 0 0 0 76.140626,76.10156 76.140038,76.100662 0 0 0 27.576172,-5.36524 c 15.17742,21.28884 32.06977,41.49165 50.79883,60.22071 89.10608,89.10608 209.98106,139.17578 335.99609,139.17578 126.01503,0 246.89197,-50.0697 335.99805,-139.17578 89.10608,-89.10608 139.17383,-209.98107 139.17383,-335.9961 0,-41.13078 -5.42855,-81.68498 -15.71289,-120.79492 a 76.140038,76.100662 0 0 0 26.76171,-57.90039 76.140038,76.100662 0 0 0 -76.14062,-76.09961 76.140038,76.100662 0 0 0 -8.76563,0.625 C 885.58853,211.32122 863.81692,183.80325 838.86133,158.84766 749.75525,69.741572 628.87831,19.673828 502.86328,19.673828 Z m 0,42.957031 c 114.63835,0 224.55955,45.532201 305.6211,126.593751 21.04386,21.04386 39.63491,44.06672 55.71484,68.57812 a 76.140038,76.100662 0 0 0 -27.39453,58.34766 76.140038,76.100662 0 0 0 76.13867,76.10156 76.140038,76.100662 0 0 0 9.58008,-0.6289 c 8.24249,33.50844 12.55469,68.13856 12.55468,103.22265 0,114.63835 -45.53219,224.55955 -126.59374,305.6211 -81.06156,81.06155 -190.98275,126.59179 -305.6211,126.59179 -114.63834,0 -224.55954,-45.53024 -305.62109,-126.59179 -17.43549,-17.43549 -33.11763,-36.27509 -47.16602,-56.14063 a 76.140038,76.100662 0 0 0 14.55664,-44.4414 76.140038,76.100662 0 0 0 -74.214841,-76.05274 C 77.475342,582.44917 70.650391,539.00902 70.650391,494.8457 70.65039,380.20736 116.18064,270.28616 197.24219,189.22461 278.30374,108.16306 388.22493,62.630859 502.86328,62.630859 Z m -7.44531,92.083981 c -74.0926,0 -142.69774,23.772 -198.75195,63.98243 a 76.140038,76.100662 0 0 0 -33.44532,-7.86719 76.140038,76.100662 0 0 0 -76.14062,76.10156 76.140038,76.100662 0 0 0 11.59765,40.24414 c -28.63999,49.97482 -45.10742,107.77763 -45.10742,169.38867 0,188.49303 153.35463,341.84766 341.84766,341.84766 112.94564,10e-6 213.22975,-55.09598 275.50976,-139.78516 a 76.140038,76.100662 0 0 0 8.5586,0.61328 76.140038,76.100662 0 0 0 76.14062,-76.10156 76.140038,76.100662 0 0 0 -25.54687,-56.78125 c 4.69504,-22.54075 7.18554,-45.87974 7.18554,-69.79297 10e-6,-188.49304 -153.35461,-341.84961 -341.84765,-341.84961 z m 0,51.37891 c 160.72671,-1e-5 290.47071,129.74399 290.4707,290.4707 0,17.27949 -1.58643,34.17076 -4.46289,50.61133 a 76.140038,76.100662 0 0 0 -1.93945,-0.13867 76.140038,76.100662 0 0 0 -76.13867,76.10156 76.140038,76.100662 0 0 0 21.04687,52.28711 c -53.11021,67.95852 -135.80596,111.60938 -228.97656,111.60938 -160.72671,0 -290.4707,-129.744 -290.4707,-290.47071 -1e-5,-49.79172 12.47444,-96.5953 34.4414,-137.5039 a 76.140038,76.100662 0 0 0 23.83203,3.9707 76.140038,76.100662 0 0 0 76.14063,-76.09961 76.140038,76.100662 0 0 0 -6.70899,-31.15039 c 46.39551,-31.37739 102.39333,-49.6875 162.76563,-49.6875 z m 1.4375,114.34766 A 179.26691,179.17419 0 0 0 317.58789,499.61719 179.26691,179.17419 0 0 0 496.85547,678.79102 179.26691,179.17419 0 0 0 676.12109,499.61719 179.26691,179.17419 0 0 0 496.85547,320.44141 Z\"],\n\"table-index\": [\"m 0,0 v 100 100 100 100 100 100 100 100 100 100 h 100 100 100 600 100 V 900 100 0 H 100 Z M 80,180 H 220 V 320 H 80 Z m 200,0 H 920 V 320 H 280 Z M 80,380 H 220 V 520 H 80 Z m 200,0 H 920 V 520 H 280 Z M 80,580 H 220 V 720 H 80 Z m 200,0 H 920 V 720 H 280 Z M 80,780 H 220 V 920 H 80 Z m 200,0 H 920 V 920 H 280 Z\"],\n\"table-inspector\": [\"m 0,0 v 100 100 100 100 100 100 100 100 100 100 h 100 420.61914 100 H 900 1000 V 900 100 0 H 100 Z M 80,180 H 540.61914 V 320 H 80 Z m 540.61914,0 H 920 V 920 H 620.61914 Z M 80,380 H 540.61914 V 520 H 80 Z m 0,200 H 540.61914 V 720 H 80 Z m 0,200 H 540.61914 V 920 H 80 Z\"],\n\"table-rows\": [\"m 0,0 v 100 100 100 100 100 100 100 100 100 100 h 100 800 100 V 900 100 0 H 100 Z M 80,180 H 920 V 320 H 80 Z m 0,200 H 920 V 520 H 80 Z m 0,200 H 920 V 720 H 80 Z m 0,200 H 920 V 920 H 80 Z\"],\n\"trending-down-chart\": [\"M 1001.5093,808.25503 719.39441,654.08852 825.74578,592.21972 628.44005,327.89128 516.94029,532.98727 203.71168,129.72187 V 3.106442 L 500.21326,385.42455 624.03524,156.03011 895.47887,551.96358 1001.8414,490.74384 Z\",\n\"M 100,0 H 0 v 1000 h 1000 l 0.1445,-100 H 100 Z\"],\n\"trending-down\": [\"M 985.49144,993.09993 642.09448,805.44481 771.54788,730.13665 531.3827,408.38984 395.66256,658.03752 14.393294,167.17335 V 13.054083 L 375.30202,478.4207 526.02105,199.19636 856.42865,681.13594 985.89563,606.61782 Z\"],\n\"trending-steady-chart\": [\"M 998.854,442.2427 724.28436,275.00728 723.8801,398.04467 563.50829,437.0957 399.27469,372.77151 214.06405,386.83092 v 93.70864 l 175.54361,-18.27686 154.92614,68.6177 179.35001,-52.31704 0.16342,122.72253 z\",\n\"M 100,0 H 0 v 1000 h 1000 l 0.1445,-100 H 100 Z\"],\n\"trending-steady\": [\"M 1010.492,523.00501 684.82313,324.64595 684.34363,463.46479 506.68127,489.78348 256.99415,433.48813 2.42602,450.16409 v 125.38173 l 243.102,-21.67831 255.25298,61.38792 183.56703,-42.05359 0.19383,138.44538 z\"],\n\"trending-up-chart\": [\"M 1001.5093,3.106442 719.39441,157.27295 825.74578,219.14175 628.44005,483.47019 516.94029,278.3742 203.71168,681.6396 V 808.25503 L 500.21326,425.93692 624.03524,655.33136 895.47887,259.39789 1001.8414,320.61763 Z\",\n\"M 100,0 H 0 v 1000 h 1000 l 0.1445,-100 H 100 Z\"],\n\"trending-up\": [\"M 985.49144,13.054083 642.09448,200.7092 771.54788,276.01736 531.3827,597.76417 395.66256,348.11649 14.393294,838.98066 V 993.09993 L 375.30202,527.73331 526.02105,806.95765 856.42865,325.01807 985.89563,399.53619 Z\"],\n\"triangle-up\": [\"M 285.2231 -46.400706 L -19.828083 481.9636 L 590.27428 481.9636 L 285.2231 -46.400706 z \"],\n\"warning\": [\"M 534.78467,61.015174 C 399.0487,295.25304 108.49991,760.14259 108.49991,760.14259 c 284.19047,0 568.38101,0 852.5715,0 z m 0,195.503846 245.17293,402.09527 -489.51374,-1.36416 z\"],\n\"wrench\": [\"m 656.37727,19.874573 a 134.32581,132.22431 9.731433e-5 0 0 -131.96876,-36.621447 134.32581,132.22431 9.731433e-5 0 0 -94.98332,161.943314 134.32581,132.22431 9.731433e-5 0 0 3.57645,10.54518 L 216.7395,368.62037 A 134.32581,132.22431 9.7319837e-5 0 0 115.45457,355.49895 134.32581,132.22431 9.7319837e-5 0 0 21.184496,446.52627 L 150.40941,412.44225 c 18.75068,17.75119 37.50312,35.50166 56.25372,53.25418 -7.22173,24.60364 -14.44333,49.20838 -21.66537,73.81006 L 53.018626,574.31707 a 134.32581,132.22431 9.7319837e-5 0 0 131.968764,36.61943 134.32581,132.22431 9.7319837e-5 0 0 94.9833,-161.94128 134.32581,132.22431 9.7319837e-5 0 0 -0.51493,-1.51652 l 221.0896,-217.63067 a 134.32581,132.22431 9.731433e-5 0 0 93.39491,8.84368 134.32581,132.22431 9.731433e-5 0 0 94.27009,-91.02733 L 558.98544,181.7484 c -18.75067,-17.75118 -37.50208,-35.50269 -56.25267,-53.2552 7.22172,-24.60364 14.44331,-49.206341 21.66535,-73.808013 z\"]\n}"
  },
  {
    "path": "src/client/public/manifest.json",
    "content": "\n{\n  \"name\": \"ICARUS Terminal\",\n  \"short_name\": \"ICARUS\",\n  \"icons\": [\n    {\n      \"src\": \"/icons/icon-maskable.png\",\n      \"sizes\": \"192x192\",\n      \"type\": \"image/png\",\n      \"purpose\": \"maskable\"\n    },\n    {\n      \"src\": \"/icons/icon-180x180.png\",\n      \"sizes\": \"180x180\",\n      \"type\": \"image/png\",\n      \"purpose\": \"any\"\n    },\n    {\n      \"src\": \"/icons/icon-192x192.png\",\n      \"sizes\": \"192x192\",\n      \"type\": \"image/png\",\n      \"purpose\": \"any\"\n    },\n    {\n      \"src\": \"/icons/icon-512x512.png\",\n      \"sizes\": \"512x512\",\n      \"type\": \"image/png\",\n      \"purpose\": \"any\"\n    }\n  ],\n  \"theme_color\": \"#000\",\n  \"background_color\": \"#000\",\n  \"start_url\": \"/\",\n  \"display\": \"standalone\",\n  \"orientation\": \"any\"\n}"
  },
  {
    "path": "src/service/data/all-commodites.json",
    "content": "{\n  \"advancedcatalysers\": {\n    \"id\": \"128049231\",\n    \"symbol\": \"AdvancedCatalysers\",\n    \"category\": \"Technology\",\n    \"name\": \"Advanced Catalysers\",\n    \"description\": \"Engineered catalysing agents, used by refineries to improve the efficiency of a large number of chemical reactions.\"\n  },\n  \"advancedmedicines\": {\n    \"id\": \"128682046\",\n    \"symbol\": \"AdvancedMedicines\",\n    \"category\": \"Medicines\",\n    \"name\": \"Advanced Medicines\",\n    \"description\": \"These medicines are specially tailored to counteract the most virulent of diseases, whilst causing minimum damage to the host.\"\n  },\n  \"advert1\": {\n    \"id\": \"128671119\",\n    \"symbol\": \"Advert1\",\n    \"market_id\": \"3227172352\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Ultra-Compact Processor Prototypes\",\n    \"limit\": 1,\n    \"rare\": true,\n    \"description\": \"These new processor prototypes have already demonstrated their versatility and capability. The combination of organic and nano fabrication makes them difficult to manufacture.\"\n  },\n  \"aerialedenapple\": {\n    \"id\": \"128667055\",\n    \"symbol\": \"AerialEdenApple\",\n    \"market_id\": \"128083448\",\n    \"category\": \"Foods\",\n    \"name\": \"Eden Apples of Aerial\",\n    \"limit\": 15,\n    \"rare\": true,\n    \"description\": \"A native plant that bears fruit resembling an apple with a silver lustre. Originally inedible, but through genetic modification the neurotoxins have been stripped away leaving what is now seen as a delicacy.\"\n  },\n  \"aganipperush\": {\n    \"id\": \"128667068\",\n    \"symbol\": \"AganippeRush\",\n    \"market_id\": \"128012800\",\n    \"category\": \"Medicines\",\n    \"name\": \"Aganippe Rush\",\n    \"limit\": 10,\n    \"rare\": true,\n    \"description\": \"A neurological stimulant only available in Aganippe. Often used to temporarily increase the user's memory retention and awareness, it is a favourite among students and scholars. Recent reports have revealed that excessive use and abuse of the compound has been linked with psychotic episodes and hallucinations.\"\n  },\n  \"agriculturalmedicines\": {\n    \"id\": \"128049208\",\n    \"symbol\": \"AgriculturalMedicines\",\n    \"category\": \"Medicines\",\n    \"name\": \"Agri-Medicines\",\n    \"description\": \"A range of engineered substances created to prevent or treat common diseases and ailments among livestock and fisheries. These are produced on High Tech worlds and consumed in Agricultural worlds.\"\n  },\n  \"agronomictreatment\": {\n    \"id\": \"128924334\",\n    \"symbol\": \"AgronomicTreatment\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Agronomic Treatment\",\n    \"description\": \"This material has been specifically engineered to revive plants affected by contaminants.\"\n  },\n  \"airelics\": {\n    \"id\": \"128668548\",\n    \"symbol\": \"AiRelics\",\n    \"category\": \"Salvage\",\n    \"name\": \"AI Relics\",\n    \"description\": \"A collection of highly illegal AI remnants. These items are of extreme interest to various shady organisations and remote cults. Their almost mythical status has led to a huge amount of counterfeiting, further inflating the value of items with a clear and proven history. It is uncertain whether any of these pieces actually retain the AI personality that was originally present within.\"\n  },\n  \"alacarakmoskinart\": {\n    \"id\": \"128667036\",\n    \"symbol\": \"AlacarakmoSkinArt\",\n    \"market_id\": \"3231373824\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Alacarakmo Skin Art\",\n    \"limit\": 24,\n    \"rare\": true,\n    \"description\": \"Micro thin sheets that are absorbed into the skin. A mixture of bio engineering and microelectronics allow the user to program art on their skin that reacts to their surroundings and mood. The Body Decor company of Alacarakmo has specialised in this for hundreds of years.\"\n  },\n  \"albinoquechuamammoth\": {\n    \"id\": \"128667020\",\n    \"symbol\": \"AlbinoQuechuaMammoth\",\n    \"market_id\": \"3222822912\",\n    \"category\": \"Foods\",\n    \"name\": \"Albino Quechua Mammoth Meat\",\n    \"limit\": 10,\n    \"rare\": true,\n    \"description\": \"Specially adapted to the cold climate, these enormous animals, originally created from modified genetic material from ancient Earth, are now flourishing on Quechua. The albino form has been encouraged to dominance due to the tenderness of their flesh.\"\n  },\n  \"alexandrite\": {\n    \"id\": \"128924331\",\n    \"symbol\": \"Alexandrite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Alexandrite\",\n    \"description\": \"Alexandrite is a form of chrysoberyl characterised by the fact that it exhibits different colours when viewed from different angles and under different light conditions.\"\n  },\n  \"algae\": {\n    \"id\": \"128049177\",\n    \"symbol\": \"Algae\",\n    \"category\": \"Foods\",\n    \"name\": \"Algae\",\n    \"description\": \"Algae are a range of biological organisms grown in water. Considered edible and often locally produced to sustain life in many poorer outposts. Usually commercially processed to provide more appetising food stuffs as a constituent of food cartridges for 'chefs' (cheap 3D food printers).\"\n  },\n  \"alieneggs\": {\n    \"id\": \"128667717\",\n    \"symbol\": \"AlienEggs\",\n    \"market_id\": \"128164088\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Leathery Eggs\",\n    \"limit\": 1,\n    \"rare\": true,\n    \"description\": \"Advertised as genuine fossilised xeno ovum, scientists were quickly able to show that the eggs traded are actually the product of a team of highly talented prop designers. For some collectors, owning one of these eggs is their top priority, with all other priorities rescinded.\"\n  },\n  \"altairianskin\": {\n    \"id\": \"128667700\",\n    \"symbol\": \"AltairianSkin\",\n    \"market_id\": \"128151032\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Altairian Skin\",\n    \"limit\": 42,\n    \"rare\": true,\n    \"description\": \"A small colony of brightly coloured micro-organisms form a mesmerising, ever changing fashion statement. Capable of self-sustaining, the colony will feed on dirt and skin flakes, keeping the wearer clean and healthy. When mature, the micro-organisms lose their bright colors and excrete a heady natural perfume.\"\n  },\n  \"aluminium\": {\n    \"id\": \"128049176\",\n    \"symbol\": \"Aluminium\",\n    \"category\": \"Metals\",\n    \"name\": \"Aluminium\",\n    \"description\": \"Aluminium, Al, atomic number 13. Melting point 933K. A silvery-white ductile metal that is regularly used by many industries in alloys for its lightness and strength.\"\n  },\n  \"alyabodilysoap\": {\n    \"id\": \"128667718\",\n    \"symbol\": \"AlyaBodilySoap\",\n    \"market_id\": \"3221638400\",\n    \"category\": \"Medicines\",\n    \"name\": \"Alya Body Soap\",\n    \"limit\": 16,\n    \"rare\": true,\n    \"description\": \"Guaranteed to give a cleaner you. The deep cleansing action works both inside and out, with this fully digestible soap! Rumoured to be made from Human fat.\"\n  },\n  \"ancientcasket\": {\n    \"id\": \"128732185\",\n    \"symbol\": \"AncientCasket\",\n    \"category\": \"Salvage\",\n    \"name\": \"Guardian Casket\",\n    \"description\": \"A stone casket created several million years ago by the Guardians, an extinct nonhuman civilisation.\"\n  },\n  \"ancientkey\": {\n    \"id\": \"128888499\",\n    \"symbol\": \"AncientKey\",\n    \"category\": \"Salvage\",\n    \"name\": \"Ancient Key\",\n    \"description\": \"A crystalline artefact recovered from a Guardian beacon.\"\n  },\n  \"ancientorb\": {\n    \"id\": \"128732184\",\n    \"symbol\": \"AncientOrb\",\n    \"category\": \"Salvage\",\n    \"name\": \"Guardian Orb\",\n    \"description\": \"A mechanical device created several million years ago by the Guardians, an extinct nonhuman civilisation.\"\n  },\n  \"ancientrelic\": {\n    \"id\": \"128732183\",\n    \"symbol\": \"AncientRelic\",\n    \"category\": \"Salvage\",\n    \"name\": \"Guardian Relic\",\n    \"description\": \"An artefact created several million years ago by the Guardians, an extinct nonhuman civilisation.\"\n  },\n  \"ancientrelictg\": {\n    \"id\": \"129015433\",\n    \"symbol\": \"AncientRelicTG\",\n    \"category\": \"Salvage\",\n    \"name\": \"Unclassified Relic\"\n  },\n  \"ancienttablet\": {\n    \"id\": \"128732186\",\n    \"symbol\": \"AncientTablet\",\n    \"category\": \"Salvage\",\n    \"name\": \"Guardian Tablet\",\n    \"description\": \"A tablet, engraved with runes, created several million years ago by the Guardians.\"\n  },\n  \"ancienttotem\": {\n    \"id\": \"128732188\",\n    \"symbol\": \"AncientTotem\",\n    \"category\": \"Salvage\",\n    \"name\": \"Guardian Totem\",\n    \"description\": \"A statue created several million years ago by the Guardians, an extinct nonhuman civilisation.\"\n  },\n  \"ancienturn\": {\n    \"id\": \"128732187\",\n    \"symbol\": \"AncientUrn\",\n    \"category\": \"Salvage\",\n    \"name\": \"Guardian Urn\",\n    \"description\": \"A sealed container created several million years ago by the Guardians, an extinct nonhuman civilisation.\"\n  },\n  \"anduligafireworks\": {\n    \"id\": \"128667673\",\n    \"symbol\": \"AnduligaFireWorks\",\n    \"market_id\": \"3230243584\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Anduliga Fire Works\",\n    \"limit\": 16,\n    \"rare\": true,\n    \"description\": \"For earth shattering displays that will blow your mind. Perfect for atmospheric use, or deployed from orbit! Official suppliers to the Imperial Family.\"\n  },\n  \"animaleffigies\": {\n    \"id\": \"128727921\",\n    \"symbol\": \"AnimalEffigies\",\n    \"market_id\": \"3228463360\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Crom Silver Fesh\",\n    \"limit\": 17,\n    \"rare\": true,\n    \"description\": \"A variant of the synthetic psychoactive drug based on a closely guarded secret recipe. While active, it causes the user to lock their teeth together and rapidly exhale, a reaction that led to its street name, Fesh. This variant was created from a stolen recipe for Wolf 1301 Fesh and is the closest Fesh variant in terms of quality to the original. Banned in most jurisdictions.\"\n  },\n  \"animalmeat\": {\n    \"id\": \"128049182\",\n    \"symbol\": \"Animalmeat\",\n    \"category\": \"Foods\",\n    \"name\": \"Animal Meat\",\n    \"description\": \"Flesh - and other elements - harvested from a vast selection of once-living creatures. In many places a luxury item with some ceremonial importance. Illegal in some jurisdictions.\"\n  },\n  \"animalmonitors\": {\n    \"id\": \"128049229\",\n    \"symbol\": \"AnimalMonitors\",\n    \"category\": \"Technology\",\n    \"name\": \"Animal Monitors\",\n    \"description\": \"A bio-electronic suite of sensor systems and analysis software, easily adapted to monitor a wide variety of organic species.\"\n  },\n  \"antimattercontainmentunit\": {\n    \"id\": \"128682053\",\n    \"symbol\": \"AntimatterContainmentUnit\",\n    \"category\": \"Salvage\",\n    \"name\": \"Antimatter Containment Unit\",\n    \"description\": \"This containment unit safely stores antimatter protecting it from gamma radiation and interaction with standard matter.\"\n  },\n  \"antiquejewellery\": {\n    \"id\": \"128672159\",\n    \"symbol\": \"AntiqueJewellery\",\n    \"category\": \"Salvage\",\n    \"name\": \"Antique Jewellery\",\n    \"description\": \"A treasure trove of exquisite antique jewellery. These often contain very rare, and very valuable, pieces.\"\n  },\n  \"antiquities\": {\n    \"id\": \"128668551\",\n    \"symbol\": \"Antiquities\",\n    \"category\": \"Salvage\",\n    \"name\": \"Antiquities\",\n    \"description\": \"A collection of priceless artefacts. Such objects are often invested with great cultural and historical value. Removal of antiquities from their original sites is generally considered a crime. The legal extraction of antiquities can only occur when the relevant permit has been granted by the local authorities.\"\n  },\n  \"anynacoffee\": {\n    \"id\": \"128667041\",\n    \"symbol\": \"AnyNaCoffee\",\n    \"market_id\": \"3229880064\",\n    \"category\": \"Foods\",\n    \"name\": \"Any Na Coffee\",\n    \"limit\": 11,\n    \"rare\": true,\n    \"description\": \"Once sneered at as a cheap substitute, this product has gained cult status from its overly thick texture and bitter flavour from the roots and herbs that it is made of. It is an acquired taste that now appeals to the Bohemian set.\"\n  },\n  \"apavietii\": {\n    \"id\": \"128958679\",\n    \"symbol\": \"ApaVietii\",\n    \"market_id\": \"128958681\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Apa Vietii\",\n    \"limit\": 11,\n    \"rare\": true,\n    \"description\": \"A unique alcoholic spirit distilled by the crew of The Golconda, an ancient generation ship.\"\n  },\n  \"aquaponicsystems\": {\n    \"id\": \"128049230\",\n    \"symbol\": \"AquaponicSystems\",\n    \"category\": \"Technology\",\n    \"name\": \"Aquaponic Systems\",\n    \"description\": \"An automated system to monitor and sustain nutritional and chemical balance levels of a confined marine ecosystem using targeted chemical and microbial filtration, and the spares and consumables required.\"\n  },\n  \"aroucaconventualsweets\": {\n    \"id\": \"128667705\",\n    \"symbol\": \"AroucaConventualSweets\",\n    \"market_id\": \"128098040\",\n    \"category\": \"Foods\",\n    \"name\": \"Arouca Conventual Sweets\",\n    \"limit\": 18,\n    \"rare\": true,\n    \"description\": \"The monastic orders of Arouca live a secluded and peaceful life producing, among other things, a limited range of Conventual sweets. Each come with a personalised blessing.\"\n  },\n  \"articulationmotors\": {\n    \"id\": \"128673859\",\n    \"symbol\": \"ArticulationMotors\",\n    \"category\": \"Machinery\",\n    \"name\": \"Articulation Motors\",\n    \"description\": \"Articulation motors are used to move components with devices.\"\n  },\n  \"assaultplans\": {\n    \"id\": \"128672129\",\n    \"symbol\": \"AssaultPlans\",\n    \"category\": \"Salvage\",\n    \"name\": \"Assault Plans\",\n    \"description\": \"Encrypted resources and documentation for secret attack plans. Possession of such documents is illegal as its possession implicates those transporting the information. There is a limited black market demand for these items.\"\n  },\n  \"atmosphericextractors\": {\n    \"id\": \"128064028\",\n    \"symbol\": \"AtmosphericExtractors\",\n    \"category\": \"Machinery\",\n    \"name\": \"Atmospheric Processors\",\n    \"description\": \"Components and consumables for atmospheric processors. These are large installations, usually with a high power output reactor at its core, used to process and stabilise breathable planetary atmospheres, especially on terraformed worlds.\"\n  },\n  \"autofabricators\": {\n    \"id\": \"128049228\",\n    \"symbol\": \"AutoFabricators\",\n    \"category\": \"Technology\",\n    \"name\": \"Auto-Fabricators\",\n    \"description\": \"High speed, low cost fabricators that can build almost any design out of basic resources.\"\n  },\n  \"azcancriformula42\": {\n    \"id\": \"128667080\",\n    \"symbol\": \"AZCancriFormula42\",\n    \"market_id\": \"3228400128\",\n    \"category\": \"Technology\",\n    \"name\": \"Az Cancri Formula 42\",\n    \"limit\": 9,\n    \"rare\": true,\n    \"description\": \"Formula 42 achieves incredible results, transforming even the most arid of desert worlds into fertile utopias. Beyond its name, all aspects of this product are kept under the highest secrecy. However, people don't ask questions when it delivers time and again.\"\n  },\n  \"bakedgreebles\": {\n    \"id\": \"128667669\",\n    \"symbol\": \"BakedGreebles\",\n    \"market_id\": \"3229378560\",\n    \"category\": \"Foods\",\n    \"name\": \"Baked Greebles\",\n    \"limit\": 17,\n    \"rare\": true,\n    \"description\": \"These tough, limpet like creatures were originally thought to be inedible. However, pioneering colonists discovered that a combination of high pressure and chemical treatment in an ammonia-based solution could render these iron rich creatures into a digestible and delicious food source. They are now considered a delicacy around their galaxy.\"\n  },\n  \"baltahsinevacuumkrill\": {\n    \"id\": \"128667025\",\n    \"symbol\": \"BaltahSineVacuumKrill\",\n    \"market_id\": \"128088056\",\n    \"category\": \"Foods\",\n    \"name\": \"Baltah'sine Vacuum Krill\",\n    \"limit\": 18,\n    \"rare\": true,\n    \"description\": \"Vacuum Krill are astonishing creatures. One of the few species to live in the hard vacuum of space, they are native to the ice rings around Baltah'sine 4b. Their eggs grow in vast numbers in tiny water pockets within the rocks - kept liquid by secretions from the mother when the eggs are first laid. When mature, they eventually burrow their way out, propelling themselves between rocks with tiny excretions of fluid, in search of a mate.\"\n  },\n  \"bankiamphibiousleather\": {\n    \"id\": \"128667674\",\n    \"symbol\": \"BankiAmphibiousLeather\",\n    \"market_id\": \"3228346112\",\n    \"category\": \"Textiles\",\n    \"name\": \"Banki Amphibious Leather\",\n    \"limit\": 18,\n    \"rare\": true,\n    \"description\": \"The native amphibian like creatures of Banki have a particularly colorful and lustrous skins, with a number of useful properties when wet. Highly valued on oceanic worlds.\"\n  },\n  \"basicmedicines\": {\n    \"id\": \"128049210\",\n    \"symbol\": \"BasicMedicines\",\n    \"category\": \"Medicines\",\n    \"name\": \"Basic Medicines\",\n    \"description\": \"A wide range of pharmaceuticals used in the healthcare sphere. Includes treatments for preventative, convalescent and palliative care.\"\n  },\n  \"basicnarcotics\": {\n    \"id\": \"128049212\",\n    \"symbol\": \"BasicNarcotics\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Narcotics\",\n    \"description\": \"Synthetically created substances tailored to create mood enhancement in a human. Widely outlawed due to their addictive nature, and the resultant longer term effects on human consumers.\"\n  },\n  \"bastsnakegin\": {\n    \"id\": \"128667065\",\n    \"symbol\": \"BastSnakeGin\",\n    \"market_id\": \"128086776\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Bast Snake Gin\",\n    \"limit\": 15,\n    \"rare\": true,\n    \"description\": \"Traditional cure-all and cocktail ingredient. The venom of the snake entombed in the bottle adds to the intoxicating effect of the drink.\"\n  },\n  \"battleweapons\": {\n    \"id\": \"128049234\",\n    \"symbol\": \"BattleWeapons\",\n    \"category\": \"Weapons\",\n    \"name\": \"Battle Weapons\",\n    \"description\": \"Military-grade human-portable heavy weapons. The trade and movement of military-grade weaponry is highly regulated; most commonly it is confined to nation states and private organisations with considerable political influence.\"\n  },\n  \"bauxite\": {\n    \"id\": \"128049165\",\n    \"symbol\": \"Bauxite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Bauxite\",\n    \"description\": \"Bauxite is the main source of aluminium, and is in fact a mix of ores that occur naturally together sometimes with small amounts of rutile and haematite. A key source of aluminum for refineries.\"\n  },\n  \"beer\": {\n    \"id\": \"128049214\",\n    \"symbol\": \"Beer\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Beer\",\n    \"description\": \"Traded under a variety of brands. A very mild narcotic. Occasionally illegal due to its association with antisocial behaviour, but also widely consumed in many cultures.\"\n  },\n  \"belalansrayleather\": {\n    \"id\": \"128667061\",\n    \"symbol\": \"BelalansRayLeather\",\n    \"market_id\": \"3223537152\",\n    \"category\": \"Textiles\",\n    \"name\": \"Belalans Ray Leather\",\n    \"limit\": 11,\n    \"rare\": true,\n    \"description\": \"Due to the particular chemical conditions of the water on Belalans, the rays have a particularly soft skin.\"\n  },\n  \"benitoite\": {\n    \"id\": \"128924329\",\n    \"symbol\": \"Benitoite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Benitoite\",\n    \"description\": \"Benitoite is a blue barium titanium silicate mineral that appears fluorescent under shortwave ultraviolet light.\"\n  },\n  \"bertrandite\": {\n    \"id\": \"128049156\",\n    \"symbol\": \"Bertrandite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Bertrandite\",\n    \"description\": \"Bertrandite: chemical formula Be4Si2O7(OH)2. Beryllium Ore. A pale yellow orthorhombic mineral, widely refined into Beryllium.\"\n  },\n  \"beryllium\": {\n    \"id\": \"128049168\",\n    \"symbol\": \"Beryllium\",\n    \"category\": \"Metals\",\n    \"name\": \"Beryllium\",\n    \"description\": \"Beryllium, Be, atomic number 4. Melting point 1560K. A white-grey alkaline earth metal. Widely used in the spacecraft industry right from its early pre-interstellar history because of its high thermal stability and low density. It is also a very useful component of many alloys, both industrially and for specialist high tech components.\"\n  },\n  \"bioreducinglichen\": {\n    \"id\": \"128049672\",\n    \"symbol\": \"BioReducingLichen\",\n    \"category\": \"Technology\",\n    \"name\": \"Bioreducing Lichen\",\n    \"description\": \"Genetically engineered lichen used to prepare an asteroid field or broken surface rocks for industrial extraction. Once deployed the lichen will spread over the field and concentrate specific minerals, changing colour in the process, allowing for efficient extraction.\"\n  },\n  \"biowaste\": {\n    \"id\": \"128049244\",\n    \"symbol\": \"Biowaste\",\n    \"category\": \"Waste\",\n    \"name\": \"Biowaste\",\n    \"description\": \"Sterilised, then used as a basic form of fertiliser on many agricultural worlds.\"\n  },\n  \"bismuth\": {\n    \"id\": \"128672300\",\n    \"symbol\": \"Bismuth\",\n    \"category\": \"Metals\",\n    \"name\": \"Bismuth\",\n    \"description\": \"Bismuth, Bi, atomic number 83. Melting point 545K. It is a pentavalent post-transition often used for medicines and specialist alloys. It is sometimes used in pharmaceuticals.\"\n  },\n  \"bluemilk\": {\n    \"id\": \"128667716\",\n    \"symbol\": \"BlueMilk\",\n    \"market_id\": \"128639992\",\n    \"category\": \"Foods\",\n    \"name\": \"Azure Milk\",\n    \"limit\": 7,\n    \"rare\": true,\n    \"description\": \"Harvested from native mammals found in Leesti, this highly nourishing and rehydrating drink is favoured in arid and desert worlds.\"\n  },\n  \"bootlegliquor\": {\n    \"id\": \"128672306\",\n    \"symbol\": \"BootlegLiquor\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Bootleg Liquor\",\n    \"description\": \"Unregulated alcoholic substances which are typically made through home or small scale production methods, with varying levels of toxicity.\"\n  },\n  \"borasetanipathogenetics\": {\n    \"id\": \"128667032\",\n    \"symbol\": \"BorasetaniPathogenetics\",\n    \"market_id\": \"3229638400\",\n    \"category\": \"Weapons\",\n    \"name\": \"Borasetani Pathogenetics\",\n    \"limit\": 6,\n    \"rare\": true,\n    \"description\": \"These tiny crawling creatures have been called a lab in a bag. They exude tailored biological agents that adapt and mutate to overcome the defenses of their enemies. When deployed in large numbers they resemble a viscious yellow goo that slowly crawls over their victim devouring them completely. When there are no further nutrients to absorb the insects bocome dormant and can be recovered by specialy trained teams to be used again.\"\n  },\n  \"bromellite\": {\n    \"id\": \"128673846\",\n    \"symbol\": \"Bromellite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Bromellite\",\n    \"description\": \"Bromellite, BeO, is a white oxide mineral with a wide range of uses, such as ceramic based electronics, and enhancing material properties of mechanical strength and thermal conductivity.\"\n  },\n  \"buckyballbeermats\": {\n    \"id\": \"128748428\",\n    \"symbol\": \"BuckyballBeerMats\",\n    \"market_id\": \"128745551\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Buckyball Beer Mats\",\n    \"limit\": 25,\n    \"rare\": true,\n    \"description\": \"Double-sided drinks mats originally commissioned in 3302. One side bears the Buckyball Racing Club logo with the slogan \\\"Win it or bin it\\\" while the other reads \\\"Celebrating 10000 rescues\\\" and depicts the mascot of the Fuel Rats.\"\n  },\n  \"buildingfabricators\": {\n    \"id\": \"128672309\",\n    \"symbol\": \"BuildingFabricators\",\n    \"category\": \"Machinery\",\n    \"name\": \"Building Fabricators\",\n    \"description\": \"These are combined resources and manufacturing devices that are used to build surface structures.\"\n  },\n  \"burnhambiledistillate\": {\n    \"id\": \"128667681\",\n    \"symbol\": \"BurnhamBileDistillate\",\n    \"market_id\": \"3230224384\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Burnham Bile Distillate\",\n    \"limit\": 16,\n    \"rare\": true,\n    \"description\": \"The use of 'donated' human bodily fluids in the distillation process for this potent liquor causes a strong variation in flavours from vintage to vintage, and widespread outcry about the ethics of the production. The producers of the drink report that each slave used agrees to the extraction progress, but this has not stopped some having a bitter taste left in their mouths.\"\n  },\n  \"cd75catcoffee\": {\n    \"id\": \"128667042\",\n    \"symbol\": \"CD75CatCoffee\",\n    \"market_id\": \"3228566016\",\n    \"category\": \"Foods\",\n    \"name\": \"CD-75 Kitten Brand Coffee\",\n    \"limit\": 12,\n    \"rare\": true,\n    \"description\": \"The coffee beans are mellowed in the digestive tract of the indigenous giant cats making for a distinctive and unique aftertaste, many have tried to emulate this chemically and physically however the result to date have been inferior if not disastrous.\"\n  },\n  \"centaurimegagin\": {\n    \"id\": \"128667672\",\n    \"symbol\": \"CentauriMegaGin\",\n    \"market_id\": \"3228728832\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Centauri Mega Gin\",\n    \"limit\": 7,\n    \"rare\": true,\n    \"description\": \"This chemical distillate is almost pure Alcohol, but with subtle, prized flavors. Often used as an ingredient in more dangerous cocktails. The exact details of the distillation process are a closely guarded secret.\"\n  },\n  \"ceramiccomposites\": {\n    \"id\": \"128672302\",\n    \"symbol\": \"CeramicComposites\",\n    \"category\": \"Industrial Materials\",\n    \"name\": \"Ceramic Composites\",\n    \"description\": \"A wide range of engineered materials supporting a broad range of technological and industrial applications.\"\n  },\n  \"ceremonialheiketea\": {\n    \"id\": \"128667078\",\n    \"symbol\": \"CeremonialHeikeTea\",\n    \"market_id\": \"3227417856\",\n    \"category\": \"Foods\",\n    \"name\": \"Ceremonial Heike Tea\",\n    \"limit\": 8,\n    \"rare\": true,\n    \"description\": \"Super fine green tea. Powdered for use in tea ceremonies, this tea is often used to seal treaties and business deals. It is traditionally ground on granite mills by specially selected millers, chosen for their moral purity.\"\n  },\n  \"cetiaepyornisegg\": {\n    \"id\": \"128667670\",\n    \"symbol\": \"CetiAepyornisEgg\",\n    \"market_id\": \"3222560256\",\n    \"category\": \"Foods\",\n    \"name\": \"Aepyornis Egg\",\n    \"limit\": 5,\n    \"rare\": true,\n    \"description\": \"Originally referred to as Elephant birds, these behemoths were brought out of extinction using preserved genetic material found on ancient Earth. With some careful genetic modification (before the process of gene modification was outlawed), they were adapted to thrive in a dense, oxygen-rich Cetian atmosphere. They lay prized eggs with a circumference of over a meter.\"\n  },\n  \"cetirabbits\": {\n    \"id\": \"128667026\",\n    \"symbol\": \"CetiRabbits\",\n    \"market_id\": \"3222560000\",\n    \"category\": \"Foods\",\n    \"name\": \"Ceti Rabbits\",\n    \"limit\": 12,\n    \"rare\": true,\n    \"description\": \"For years 47 Ceti suffered from rodents, introduced from Earth, decimating crops. However, they have turned this to their advantage and now farm them in great numbers as the local environment makes the meat curiously sweet.\"\n  },\n  \"chameleoncloth\": {\n    \"id\": \"128667710\",\n    \"symbol\": \"ChameleonCloth\",\n    \"market_id\": \"3223418880\",\n    \"category\": \"Textiles\",\n    \"name\": \"Chameleon Cloth\",\n    \"limit\": 7,\n    \"rare\": true,\n    \"description\": \"Woven from living plants, the fabric created retains the native Flora's sympathetic camouflage. When worn the user will blend in with whatever their current environment is. Although considered for military applications, the low availability of the fabric, and the slow speed of the camouflage effect led to it being deemed inferior to technological camouflages.\"\n  },\n  \"chateaudeaegaeon\": {\n    \"id\": \"128667084\",\n    \"symbol\": \"ChateauDeAegaeon\",\n    \"market_id\": \"3228416768\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Chateau De Aegaeon\",\n    \"limit\": 14,\n    \"rare\": true,\n    \"description\": \"Wines from Aegaeon are some of the most valued and prized possessions in the galaxy. In great demand in wealthy systems, these wines are purchased for large sums, but rarely actually drunk.\"\n  },\n  \"chemicalwaste\": {\n    \"id\": \"128049246\",\n    \"symbol\": \"ChemicalWaste\",\n    \"category\": \"Waste\",\n    \"name\": \"Chemical Waste\",\n    \"description\": \"Chemicals that have become contaminated beyond use. Usually produced as a byproduct of industrial processes.\"\n  },\n  \"cherbonesbloodcrystals\": {\n    \"id\": \"128667675\",\n    \"symbol\": \"CherbonesBloodCrystals\",\n    \"market_id\": \"3229594624\",\n    \"category\": \"Metals\",\n    \"name\": \"Cherbones Blood Crystals\",\n    \"limit\": 48,\n    \"rare\": true,\n    \"description\": \"The unique magnetic flows found in the deepest caves of Cherbones have formed amazing crystals that are coveted for their beauty. These fragile structures are manually extracted at great personal risk. The local inhabitants train all their lives to learn the method for extracting the crystals. Many are lost on their first attempt.\"\n  },\n  \"chieridanimarinepaste\": {\n    \"id\": \"128667049\",\n    \"symbol\": \"ChiEridaniMarinePaste\",\n    \"market_id\": \"128128760\",\n    \"category\": \"Foods\",\n    \"name\": \"Chi Eridani Marine Paste\",\n    \"limit\": 18,\n    \"rare\": true,\n    \"description\": \"A unique mix of zooplankton and phytoplankton from the rich and varied oceans of Chi Eridani. Due to the automated trawling process, it may include any number of other marine creatures that happened to wander into the processor.\"\n  },\n  \"classifiedexperimentalequipment\": {\n    \"id\": \"129002574\",\n    \"symbol\": \"ClassifiedExperimentalEquipment\",\n    \"market_id\": \"128986325\",\n    \"category\": \"Technology\",\n    \"name\": \"Classified Experimental Equipment\",\n    \"rare\": true,\n    \"description\": \"Secretive technology required by Salvation for mass anti-Xeno initiatives.\"\n  },\n  \"clothing\": {\n    \"id\": \"128049241\",\n    \"symbol\": \"Clothing\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Clothing\",\n    \"description\": \"Even in the 34th century, fashion is continually changing, driving purchases of new clothing for those with some credits to spare.\"\n  },\n  \"cmmcomposite\": {\n    \"id\": \"128673856\",\n    \"symbol\": \"CMMComposite\",\n    \"category\": \"Industrial Materials\",\n    \"name\": \"CMM Composite\",\n    \"description\": \"CMM Composites are layered carbon and metals layered to take advantage of the properties for each of the different components. These result in flexible, lightweight and strong structures.\"\n  },\n  \"cobalt\": {\n    \"id\": \"128049162\",\n    \"symbol\": \"Cobalt\",\n    \"category\": \"Metals\",\n    \"name\": \"Cobalt\",\n    \"description\": \"Cobalt, Co, atomic number 27. Melting point 1768K. Traditionally used as a blue colouring, but now mainly used for creating high temperature alloys. Also has biotech applications.\"\n  },\n  \"coffee\": {\n    \"id\": \"128049189\",\n    \"symbol\": \"Coffee\",\n    \"category\": \"Foods\",\n    \"name\": \"Coffee\",\n    \"description\": \"A good source of caffeine to fuel to the creative economics. Many attempts have been made to supplant it but all inevitably fail. Some claim the archaic ritual of grinding beans is a key part of the experience.\"\n  },\n  \"coltan\": {\n    \"id\": \"128049159\",\n    \"symbol\": \"Coltan\",\n    \"category\": \"Minerals\",\n    \"name\": \"Coltan\",\n    \"description\": \"Coltan is a mixture of columbite and tantalite, both valuable Tantalum ores. Useful in capacitors throughout history for many high tech and electronic devices.\"\n  },\n  \"combatstabilisers\": {\n    \"id\": \"128049670\",\n    \"symbol\": \"CombatStabilisers\",\n    \"category\": \"Medicines\",\n    \"name\": \"Combat Stabilisers\",\n    \"description\": \"Biological agents used to sustain and heal injured humans in combat. Combat Stabilizers allow recipients to continue to function despite unimaginable amounts of pain. Some cultures consider they encourage glorification of combat, and so are illegal.\"\n  },\n  \"comercialsamples\": {\n    \"id\": \"128672127\",\n    \"symbol\": \"ComercialSamples\",\n    \"category\": \"Salvage\",\n    \"name\": \"Commercial Samples\",\n    \"description\": \"An assortment of materials, often marketing related, and are of little value on the open market.\"\n  },\n  \"computercomponents\": {\n    \"id\": \"128049225\",\n    \"symbol\": \"ComputerComponents\",\n    \"category\": \"Technology\",\n    \"name\": \"Computer Components\",\n    \"description\": \"Industrially mass-produced computer components and electronic devices, regulators, storage, distribution boards, spares. Wherever there are computers there are computers that have gone wrong and need a spare part.\"\n  },\n  \"conductivefabrics\": {\n    \"id\": \"128682044\",\n    \"symbol\": \"ConductiveFabrics\",\n    \"category\": \"Textiles\",\n    \"name\": \"Conductive Fabrics\",\n    \"description\": \"These Fabrics allow for current to be passed through them in order to build Cloth-set circuitry for wearable technology.\"\n  },\n  \"consumertechnology\": {\n    \"id\": \"128049240\",\n    \"symbol\": \"ConsumerTechnology\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Consumer Technology\",\n    \"description\": \"Ever evolving and changing, get on board for the next generation of personal consumer devices. Be the envy of your friends as you show off the latest thing, then get ready to upgrade.\"\n  },\n  \"coolinghoses\": {\n    \"id\": \"128673857\",\n    \"symbol\": \"CoolingHoses\",\n    \"category\": \"Industrial Materials\",\n    \"name\": \"Micro-weave Cooling Hoses\",\n    \"description\": \"High specification cooling hoses used as conduits for fluid or gas based thermal management systems.\"\n  },\n  \"copper\": {\n    \"id\": \"128049175\",\n    \"symbol\": \"Copper\",\n    \"category\": \"Metals\",\n    \"name\": \"Copper\",\n    \"description\": \"Copper, Cu, atomic number 29. Melting point 1358K. A highly ductile lustrous red-orange metal, with good thermal and electrical conductivity. Used broadly by industry as a cheap conductor and in many alloys. It is also used in biotech and aquaculture especially in many extraterrestrial and hemocyanal species.\"\n  },\n  \"coquimspongiformvictuals\": {\n    \"id\": \"128667054\",\n    \"symbol\": \"CoquimSpongiformVictuals\",\n    \"market_id\": \"3223832576\",\n    \"category\": \"Foods\",\n    \"name\": \"Coquim Spongiform Victuals\",\n    \"limit\": 20,\n    \"rare\": true,\n    \"description\": \"Spongiform Victuals have been a staple food of the Imperial military for years. Many have tried to create copies of the nutritious formula, but it seems only to thrive in the vast damp caves of Coquim. The ingredients are a tightly held secret, and some suggest that it contains addictive substances.\"\n  },\n  \"coralsap\": {\n    \"id\": \"129022407\",\n    \"symbol\": \"CoralSap\",\n    \"category\": \"Salvage\",\n    \"name\": \"Coral Sap\"\n  },\n  \"cropharvesters\": {\n    \"id\": \"128049222\",\n    \"symbol\": \"CropHarvesters\",\n    \"category\": \"Machinery\",\n    \"name\": \"Crop Harvesters\",\n    \"description\": \"Agricultural machinery together with spare parts and consumables used for harvesting and packing specific ground-based crops.\"\n  },\n  \"cryolite\": {\n    \"id\": \"128672294\",\n    \"symbol\": \"Cryolite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Cryolite\",\n    \"description\": \"Used in a range of applications, including insecticides, pesticides, fireworks and as a solvent for aluminium oxide.\"\n  },\n  \"crystallinespheres\": {\n    \"id\": \"128672432\",\n    \"symbol\": \"CrystallineSpheres\",\n    \"market_id\": \"128059402\",\n    \"category\": \"Salvage\",\n    \"name\": \"Crystalline Spheres\",\n    \"limit\": 12,\n    \"rare\": true,\n    \"description\": \"Transparent spheres crafted from the finest crystal and containing a clear liquid full of snow that swirls when shaken\"\n  },\n  \"damagedescapepod\": {\n    \"id\": \"128672811\",\n    \"symbol\": \"DamagedEscapePod\",\n    \"category\": \"Salvage\",\n    \"name\": \"Damaged Escape Pod\",\n    \"description\": \"This escape pod's systems have been damaged and will fail by the end time provided in the briefing. After this time the system will no longer be able to sustain the life of its occupant.\"\n  },\n  \"damnacarapaces\": {\n    \"id\": \"128667062\",\n    \"symbol\": \"DamnaCarapaces\",\n    \"market_id\": \"3227751936\",\n    \"category\": \"Textiles\",\n    \"name\": \"Damna Carapaces\",\n    \"limit\": 23,\n    \"rare\": true,\n    \"description\": \"The hard colourful exoskeletons of large insect like creatures. Used as decoration and in the production of exotic materials and clothing.\"\n  },\n  \"datacore\": {\n    \"id\": \"128682049\",\n    \"symbol\": \"DataCore\",\n    \"category\": \"Salvage\",\n    \"name\": \"Data Core\",\n    \"description\": \"A large core filled with digital data.\"\n  },\n  \"deltaphoenicispalms\": {\n    \"id\": \"128667073\",\n    \"symbol\": \"DeltaPhoenicisPalms\",\n    \"market_id\": \"128045312\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Delta Phoenicis Palms\",\n    \"limit\": 17,\n    \"rare\": true,\n    \"description\": \"A truly organic pest eradication tool, these sterile plants can only be grown from cuttings. Their pollen is lethal to most insectoid life forms. Historically it used their body as a host to germinate. Note may cause hallucinations if workers are over-exposed.\"\n  },\n  \"deuringastruffles\": {\n    \"id\": \"128667058\",\n    \"symbol\": \"DeuringasTruffles\",\n    \"market_id\": \"3229713408\",\n    \"category\": \"Foods\",\n    \"name\": \"Deuringas Truffles\",\n    \"limit\": 7,\n    \"rare\": true,\n    \"description\": \"More of a lichen than the fungus that they resemble. They have a similar musty flavor to ancient Earth truffles, but the process of metabolising Deuringas's surface - which is why Deuringas truffles must be shaved in preparation for eating.\"\n  },\n  \"diagnosticsensor\": {\n    \"id\": \"128673875\",\n    \"symbol\": \"DiagnosticSensor\",\n    \"category\": \"Technology\",\n    \"name\": \"Hardware Diagnostic Sensor\",\n    \"description\": \"Diagnostic sensors that provide hardware monitoring and telemetry for a variety of systems. These can be found at Kanwar Gateway in the Xiripa system.\"\n  },\n  \"diplomaticbag\": {\n    \"id\": \"128672131\",\n    \"symbol\": \"DiplomaticBag\",\n    \"category\": \"Salvage\",\n    \"name\": \"Diplomatic Bag\",\n    \"description\": \"Used to carry political correspondence and other confidential items. Can only be sold on the black market. These packages are often contained within booby-trapped containers.\"\n  },\n  \"disomacorn\": {\n    \"id\": \"128667714\",\n    \"symbol\": \"DisoMaCorn\",\n    \"market_id\": \"128161016\",\n    \"category\": \"Foods\",\n    \"name\": \"Diso Ma Corn\",\n    \"limit\": 15,\n    \"rare\": true,\n    \"description\": \"This ancient corn-like crop is harvested manually to preserve the dust-like coating on the seeds. This dust is traditionally snorted from the corn as a chef's treat.\"\n  },\n  \"domesticappliances\": {\n    \"id\": \"128049238\",\n    \"symbol\": \"DomesticAppliances\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Domestic Appliances\",\n    \"description\": \"For every household task, there are any number of domestic appliances fighting for the consumers' attention and credits.\"\n  },\n  \"drones\": {\n    \"id\": \"128066403\",\n    \"symbol\": \"Drones\",\n    \"category\": \"NonMarketable\",\n    \"name\": \"Limpets\"\n  },\n  \"duradrives\": {\n    \"id\": \"128922524\",\n    \"symbol\": \"Duradrives\",\n    \"market_id\": \"3223453184\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Duradrives\",\n    \"limit\": 22,\n    \"rare\": true,\n    \"description\": \"These robust personal computing devices, manufactured by technology company Herculean Machines, are used throughout the galaxy.\"\n  },\n  \"earthrelics\": {\n    \"id\": \"128672161\",\n    \"symbol\": \"EarthRelics\",\n    \"category\": \"Salvage\",\n    \"name\": \"Earth Relics\",\n    \"description\": \"Historical artefacts originating from the ancient periods of Earth. These items vary considerably in nature and hold great value to collectors.\"\n  },\n  \"eleuthermals\": {\n    \"id\": \"128667037\",\n    \"symbol\": \"EleuThermals\",\n    \"market_id\": \"3230624768\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Eleu Thermals\",\n    \"limit\": 13,\n    \"rare\": true,\n    \"description\": \"In an age of manufactured goods, many prefer the expensive tradition of making things by hand. Eleu hand-knitted thermals, made from their own wool are the survival underwear of choice for cold climates.\"\n  },\n  \"emergencypowercells\": {\n    \"id\": \"128673861\",\n    \"symbol\": \"EmergencyPowerCells\",\n    \"category\": \"Machinery\",\n    \"name\": \"Emergency Power Cells\",\n    \"description\": \"Emergency power cells used to provide power when the primary power source is unavailable. They can also be used to temporarily increase power output.\"\n  },\n  \"encripteddatastorage\": {\n    \"id\": \"128672124\",\n    \"symbol\": \"EncriptedDataStorage\",\n    \"category\": \"Salvage\",\n    \"name\": \"Encrypted Data Storage\",\n    \"description\": \"It is sometimes safer to transport sensitive data physically and also quicker if immense quantities need transferring. They usually have little intrinsic value except to the organisation attempting to secure these items.\"\n  },\n  \"encryptedcorrespondence\": {\n    \"id\": \"128672130\",\n    \"symbol\": \"EncryptedCorrespondence\",\n    \"category\": \"Salvage\",\n    \"name\": \"Encrypted Correspondence\",\n    \"description\": \"Heavily encrypted data that is of little interest, although some hackers use it for training or practise, or simply enjoy the challenge of breaking the encryption. There is a limited black market for these items.\"\n  },\n  \"eraninpearlwhisky\": {\n    \"id\": \"128666746\",\n    \"symbol\": \"EraninPearlWhisky\",\n    \"market_id\": \"128001536\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Eranin Pearl Whisky\",\n    \"limit\": 16,\n    \"rare\": true,\n    \"description\": \"Created to celebrate 30 years of Eranin independence in Alliance, this specially created whiskey was created in limited supply and is expected to increase in value over time.\"\n  },\n  \"eshuumbrellas\": {\n    \"id\": \"128667038\",\n    \"symbol\": \"EshuUmbrellas\",\n    \"market_id\": \"3222295552\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Eshu Umbrellas\",\n    \"limit\": 9,\n    \"rare\": true,\n    \"description\": \"An anachronistic homage to a more civilized age becomes as symbol of wealth and tradition. Suppliers to the Empire and beyond.\"\n  },\n  \"esusekucaviar\": {\n    \"id\": \"128667050\",\n    \"symbol\": \"EsusekuCaviar\",\n    \"market_id\": \"3226919680\",\n    \"category\": \"Foods\",\n    \"name\": \"Esuseku Caviar\",\n    \"limit\": 10,\n    \"rare\": true,\n    \"description\": \"After being discovered in an ancient gene bank, the last of the cryogenically stored Sturgeon eggs were purchased for an undisclosed, but reliable enormous sum. After the long search for an appropriate environment, they were introduced to the waters of Esuseku, and to their owner's relief, hatched and established a breeding colony. The ancient fish continues to thrive in the waters of Esuseku making it the primary producer of caviar in known space.\"\n  },\n  \"ethgrezeteabuds\": {\n    \"id\": \"128667077\",\n    \"symbol\": \"EthgrezeTeaBuds\",\n    \"market_id\": \"3229524992\",\n    \"category\": \"Foods\",\n    \"name\": \"Ethgreze Tea Buds\",\n    \"limit\": 7,\n    \"rare\": true,\n    \"description\": \"These tea buds have to be hand plucked from the dangerous Ethgreze Carnivorous Camellia Sinensis plants. Only those with sharp reflexes make it through their first season without losing fingers or entire hands to the deadly fast plants. Due to the danger in collecting it, this tea is famously expensive.\"\n  },\n  \"evacuationshelter\": {\n    \"id\": \"128672314\",\n    \"symbol\": \"EvacuationShelter\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Evacuation Shelter\",\n    \"description\": \"A lightweight robust unit that can be deployed to provide shelter, basic food and air for up to a month in the event of structural failure or meteor impacts on habited builds. They are also used by survey teams on long expeditions.\"\n  },\n  \"exhaustmanifold\": {\n    \"id\": \"128673866\",\n    \"symbol\": \"ExhaustManifold\",\n    \"category\": \"Machinery\",\n    \"name\": \"Exhaust Manifold\",\n    \"description\": \"These customised manifolds are used to combine plasmas and gases from multiple sources into a single element. These can be found at Somerville Station in the Kharpulo system.\"\n  },\n  \"explosives\": {\n    \"id\": \"128049204\",\n    \"symbol\": \"Explosives\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Explosives\",\n    \"description\": \"Chemical explosives are used extensively in extraction to gain access to valuable mineral deposits.\"\n  },\n  \"fish\": {\n    \"id\": \"128049183\",\n    \"symbol\": \"Fish\",\n    \"category\": \"Foods\",\n    \"name\": \"Fish\",\n    \"description\": \"Flesh from once-living aquatic organisms sold as food stuff. Illegal in some jurisdictions.\"\n  },\n  \"foodcartridges\": {\n    \"id\": \"128049184\",\n    \"symbol\": \"FoodCartridges\",\n    \"category\": \"Foods\",\n    \"name\": \"Food Cartridges\",\n    \"description\": \"Cartridges for 'chefs' (cheap 3D food printers). These dehydrated components are reconstituted into a variety of shapes using a 3D printing technique. Components are mixed with water and flavourings as they are printed, according to the desired food item template for colour, texture and taste. \\\"Burgers\\\" and \\\"Hotdogs\\\" are common standard template choices in most chefs.\"\n  },\n  \"fossilremnants\": {\n    \"id\": \"128682055\",\n    \"symbol\": \"FossilRemnants\",\n    \"category\": \"Salvage\",\n    \"name\": \"Fossil Remnants\",\n    \"description\": \"Fossilised fragments from an unidentified life form. Inquisitive minds will revel at the chance to analyse and possess one of our galaxy's ancestral occupants.\"\n  },\n  \"fruitandvegetables\": {\n    \"id\": \"128049178\",\n    \"symbol\": \"FruitAndVegetables\",\n    \"category\": \"Foods\",\n    \"name\": \"Fruit and Vegetables\",\n    \"description\": \"A diverse selection of plant-based produce, usually grown in bulk on outdoor worlds, used by the luxury food industry and for direct consumption by the population.\"\n  },\n  \"fujintea\": {\n    \"id\": \"128667709\",\n    \"symbol\": \"FujinTea\",\n    \"market_id\": \"128134392\",\n    \"category\": \"Foods\",\n    \"name\": \"Fujin Tea\",\n    \"limit\": 23,\n    \"rare\": true,\n    \"description\": \"A range of infusions from indigenous plants and herbs that produce highly effective medicines rivalling or exceeding the best synthetics. Ill-informed combinations have been known to be instantly fatal.\"\n  },\n  \"galactictravelguide\": {\n    \"id\": \"128682050\",\n    \"symbol\": \"GalacticTravelGuide\",\n    \"market_id\": \"128673074\",\n    \"category\": \"Salvage\",\n    \"name\": \"Galactic Travel Guide\",\n    \"rare\": true,\n    \"description\": \"A where's where and a what's what of the Milky Way. This guide highlights the galaxy's top destinations and hot spots.\"\n  },\n  \"gallite\": {\n    \"id\": \"128049158\",\n    \"symbol\": \"Gallite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Gallite\",\n    \"description\": \"Gallite: chemical formula CuGaS2. Gallium Ore. Named for its high Gallium content and is widely extracted at refineries.\"\n  },\n  \"gallium\": {\n    \"id\": \"128049170\",\n    \"symbol\": \"Gallium\",\n    \"category\": \"Metals\",\n    \"name\": \"Gallium\",\n    \"description\": \"Gallium, Ga, atomic number 31. Melting point 303K. It is a soft silvery metal at human room temperature, but melts in the human hand. It is used as a key component in semiconductors and in lasers.\"\n  },\n  \"geawendancedust\": {\n    \"id\": \"128667677\",\n    \"symbol\": \"GeawenDanceDust\",\n    \"market_id\": \"3230954752\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Geawen Dance Dust\",\n    \"limit\": 23,\n    \"rare\": true,\n    \"description\": \"There may be no sound in space, but Geawen Dance Dust will bring the music inside your cockpit, and inside your head. You literally won't be able to stop dancing.\"\n  },\n  \"genebank\": {\n    \"id\": \"128672162\",\n    \"symbol\": \"GeneBank\",\n    \"category\": \"Salvage\",\n    \"name\": \"Gene Bank\",\n    \"description\": \"Collection of DNA and other biological samples containing valuable information for the scientific community. These banks can sometimes contain samples from extinct species which vastly increases their demand.\"\n  },\n  \"geologicalequipment\": {\n    \"id\": \"128672307\",\n    \"symbol\": \"GeologicalEquipment\",\n    \"category\": \"Machinery\",\n    \"name\": \"Geological Equipment\",\n    \"description\": \"Allows basic monitoring and integration of the world's geology, for both scientific, civic and commercial purposes.\"\n  },\n  \"geologicalsamples\": {\n    \"id\": \"128672315\",\n    \"symbol\": \"GeologicalSamples\",\n    \"category\": \"Salvage\",\n    \"name\": \"Geological Samples\",\n    \"description\": \"Geological samples used for scientific and commercial purposes.\"\n  },\n  \"gerasiangueuzebeer\": {\n    \"id\": \"128667678\",\n    \"symbol\": \"GerasianGueuzeBeer\",\n    \"market_id\": \"3228047360\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Gerasian Gueuze Beer\",\n    \"limit\": 40,\n    \"rare\": true,\n    \"description\": \"Geras 3 A supports life in the form of large algae like plankton, whose bioluminescent digestive system excretes a complex protein that can be used in the brewing process. The resulting beer is famous for it's strength, heady aroma, and luminescent color.\"\n  },\n  \"giantirukamasnails\": {\n    \"id\": \"128667024\",\n    \"symbol\": \"GiantIrukamaSnails\",\n    \"market_id\": \"3225345792\",\n    \"category\": \"Foods\",\n    \"name\": \"Giant Irukama Snails\",\n    \"limit\": 16,\n    \"rare\": true,\n    \"description\": \"Despite appearances, the species discovered on Irukama are not strictly snails. These indigenous creatures almost destroyed Irukama's native habitat over their sole predator was culled, due to the threat it posed to human settlers. Now actively managed, the surplus stock is sold on as a delicacy. The meat from a single snail can easily fill several standard-size cargo canisters.\"\n  },\n  \"giantverrix\": {\n    \"id\": \"128667703\",\n    \"symbol\": \"GiantVerrix\",\n    \"market_id\": \"128121336\",\n    \"category\": \"Machinery\",\n    \"name\": \"Giant Verrix\",\n    \"limit\": 6,\n    \"rare\": true,\n    \"description\": \"This hardy beast of burden now found throughout human space, especially on the emerging worlds of the outer rim, but naturally bred Verrix are very rare and highly prized.\"\n  },\n  \"gilyasignatureweapons\": {\n    \"id\": \"128667072\",\n    \"symbol\": \"GilyaSignatureWeapons\",\n    \"market_id\": \"3226857216\",\n    \"category\": \"Weapons\",\n    \"name\": \"Gilya Signature Weapons\",\n    \"limit\": 9,\n    \"rare\": true,\n    \"description\": \"Leave your own personal mark with these highly customisable weapons, a speciality of the Gilya system. Leave no doubt about who put your victim to rest when using a Gilya Signature weapon. Illegal but highly prized in many jurisdictions. Being disarmed of your signature weapon is considered the greatest of humiliations.\"\n  },\n  \"gold\": {\n    \"id\": \"128049154\",\n    \"symbol\": \"Gold\",\n    \"category\": \"Metals\",\n    \"name\": \"Gold\",\n    \"description\": \"Gold, Au, atomic number 79. Melting point 1337K. A valuable precious metal, and because it is the most resistive metal to corrosion, is widely used in jewelry and luxury goods and for contact pads in electronics.\"\n  },\n  \"gomanyauponcoffee\": {\n    \"id\": \"128667043\",\n    \"symbol\": \"GomanYauponCoffee\",\n    \"market_id\": \"3224449792\",\n    \"category\": \"Foods\",\n    \"name\": \"Goman Yaupon Coffee\",\n    \"limit\": 9,\n    \"rare\": true,\n    \"description\": \"This once traditional coffee substitute leapt to fame when the Emperor Hengist Duval gave it his seal of approval.\"\n  },\n  \"goslarite\": {\n    \"id\": \"128672295\",\n    \"symbol\": \"Goslarite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Goslarite\",\n    \"description\": \"This zinc sulphate mineral is used in medicines and antiseptic treatments.\"\n  },\n  \"grain\": {\n    \"id\": \"128049180\",\n    \"symbol\": \"Grain\",\n    \"category\": \"Foods\",\n    \"name\": \"Grain\",\n    \"description\": \"Inexpensive and intensively grown in various forms on many outdoor worlds. Mainly consumed as bread but also forms a key constituent of many industrially produced foods.\"\n  },\n  \"grandidierite\": {\n    \"id\": \"128924330\",\n    \"symbol\": \"Grandidierite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Grandidierite\",\n    \"description\": \"Grandidierite is bluish-green nesosilicate mineral distinguished by the fact that it exhibits different colours when viewed from different angles.\"\n  },\n  \"haematite\": {\n    \"id\": \"129031327\",\n    \"symbol\": \"Haematite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Haematite\"\n  },\n  \"hafnium178\": {\n    \"id\": \"128668549\",\n    \"symbol\": \"Hafnium178\",\n    \"category\": \"Metals\",\n    \"name\": \"Hafnium 178\",\n    \"description\": \"Hafnium 178m2, Hf, atomic number 72. This nuclear isomer has the potential to unleash enormous quantities of gamma radiation, making it an excellent ingredient for use in devastating weapons of mass destruction. As a result Hafnium 178 is a highly controlled substance that is universally illegal to own without special dispensation.\"\n  },\n  \"haidneblackbrew\": {\n    \"id\": \"128667679\",\n    \"symbol\": \"HaidneBlackBrew\",\n    \"market_id\": \"3226557696\",\n    \"category\": \"Foods\",\n    \"name\": \"Haiden Black Brew\",\n    \"limit\": 21,\n    \"rare\": true,\n    \"description\": \"Brewed over a low heat for days, this tea is comprised of fine mineral shavings, rather than traditional leaves. This mineral based tea is high in salts and nutritious metals. Over consumption of this has been known to temporarily cause the drinker's skin to take a metallic hue.\"\n  },\n  \"harmasilversearum\": {\n    \"id\": \"128793113\",\n    \"symbol\": \"HarmaSilverSeaRum\",\n    \"market_id\": \"3221575424\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Harma Silver Sea Rum\",\n    \"limit\": 60,\n    \"rare\": true,\n    \"description\": \"Based on a secret 24th Century recipe taken from the log of one Captain Smolenski, Harma Silver Sea Rum has been developed by blending a range of rare alcohols to create a beverage any corsair would be proud of. The Harma Silver Cartel, who manufacture and distribute the potent brew, enjoy the controversy their product has gleaned after it became a favourite among pirate gangs across the galaxy.\"\n  },\n  \"havasupaidreamcatcher\": {\n    \"id\": \"128667680\",\n    \"symbol\": \"HavasupaiDreamCatcher\",\n    \"market_id\": \"3221438976\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Havasupai Dream Catcher\",\n    \"limit\": 4,\n    \"rare\": true,\n    \"description\": \"Re-live your dreams! This device can record, consolidate and replay the neural activity of dreams, allowing you to re-experience them whenever you desire, or even share your dreams with friends!\"\n  },\n  \"hazardousenvironmentsuits\": {\n    \"id\": \"128049226\",\n    \"symbol\": \"HazardousEnvironmentSuits\",\n    \"category\": \"Technology\",\n    \"name\": \"H.E. Suits\",\n    \"description\": \"Suitable for human use in hostile environments including vacuum, together with spare parts. Fitted with atmospheric scrubbing and life support, vital signs monitoring, automatic medical systems and a multi channel communications interface.\"\n  },\n  \"heatsinkinterlink\": {\n    \"id\": \"128673868\",\n    \"symbol\": \"HeatsinkInterlink\",\n    \"category\": \"Machinery\",\n    \"name\": \"Heatsink Interlink\",\n    \"description\": \"These specially made heatsink interlinks provide the mechanism for the emissive cooling plates within a heatsink. These can be found at Gresley Enterprise in the LHS 3980 system.\"\n  },\n  \"heliostaticfurnaces\": {\n    \"id\": \"128049220\",\n    \"symbol\": \"HeliostaticFurnaces\",\n    \"category\": \"Machinery\",\n    \"name\": \"Microbial Furnaces\",\n    \"description\": \"Bio-engineered microbes that separate specific elements from powdered ore. Produced on high tech worlds, their name is historic having replaced thermal furnaces for the refining or many ores.\"\n  },\n  \"helvetitjpearls\": {\n    \"id\": \"128667052\",\n    \"symbol\": \"HelvetitjPearls\",\n    \"market_id\": \"3231094528\",\n    \"category\": \"Metals\",\n    \"name\": \"Helvetitj Pearls\",\n    \"limit\": 6,\n    \"rare\": true,\n    \"description\": \"Oysters have been one of the more successful adaptors with their rapid genetic modification. Due to the chemicals in the waters the oysters of Helvetitj produce a range of vividly coloured but natural pearls which are in high demand for decorative purposes, but are valued as a food source as well.\"\n  },\n  \"hip10175bushmeat\": {\n    \"id\": \"128667019\",\n    \"symbol\": \"HIP10175BushMeat\",\n    \"market_id\": \"3223234816\",\n    \"category\": \"Foods\",\n    \"name\": \"HIP 10175 Bush Meat\",\n    \"limit\": 13,\n    \"rare\": true,\n    \"description\": \"A wide range of strong-tasting exotic meats native to HIP 10175, famed for its hunting and natural environment. One commonality between all the available species is a strange spicing flavor. This is believed to be due to the rich local ecosystem. Restricted trade has brought high prices.\"\n  },\n  \"hip118311swarm\": {\n    \"id\": \"128667033\",\n    \"symbol\": \"HIP118311Swarm\",\n    \"market_id\": \"3223177472\",\n    \"category\": \"Weapons\",\n    \"name\": \"HIP 118311 Swarm\",\n    \"limit\": 1,\n    \"rare\": true,\n    \"description\": \"Swarm is the codename of the weaponised form of the tiny but lethally poisonous biting insects native to HIP 118311. Manipulated by a control fluid, the weapons can be targeted onto enemy positions using a remote electromagnetic beam, then unleashed to wreak chaos and death on enemy ranks. The weapon’s trademark buzzing quickly made it a favourite with crime syndicates, favoured for intimidation and enforcement purposes. Banned in most jurusdictions.\"\n  },\n  \"hip41181squid\": {\n    \"id\": \"128667053\",\n    \"symbol\": \"HIP41181Squid\",\n    \"market_id\": \"3227995392\",\n    \"category\": \"Foods\",\n    \"name\": \"HIP Proto-Squid\",\n    \"limit\": 14,\n    \"rare\": true,\n    \"description\": \"Though there is no genetic link between the huge creatures of HIP 41181 and the now extinct squid once found on ancient Earth, the evolutionary similarities are remarkable. Perhaps they share some ancient space faring ancestor. There was much protest at the use of these animals as food. Claims of sentience still remain high on the agenda of those trying to stamp out the trade.\"\n  },\n  \"hiporganophosphates\": {\n    \"id\": \"128667682\",\n    \"symbol\": \"HIPOrganophosphates\",\n    \"market_id\": \"3227036160\",\n    \"category\": \"Chemicals\",\n    \"name\": \"HIP Organophosphates\",\n    \"limit\": 17,\n    \"rare\": true,\n    \"description\": \"The high phosphorous content of this powerful pesticide is highly effective, but can cause a number of highly dangerous side effects. This has led to some governments classifying it as a chemical weapon, and many independent agricultural worlds making taking legal action against the producer after cattle and workers have been left maimed.\"\n  },\n  \"hnshockmount\": {\n    \"id\": \"128673860\",\n    \"symbol\": \"HNShockMount\",\n    \"category\": \"Machinery\",\n    \"name\": \"HN Shock Mount\",\n    \"description\": \"HN shock mounts absorb vibration and impacts to stabilise the mounted device.\"\n  },\n  \"holvaduellingblades\": {\n    \"id\": \"128667070\",\n    \"symbol\": \"HolvaDuellingBlades\",\n    \"market_id\": \"3222713088\",\n    \"category\": \"Weapons\",\n    \"name\": \"Holva Duelling Blades\",\n    \"limit\": 7,\n    \"rare\": true,\n    \"description\": \"The finest blades money can buy. Putting art into death, forged from the purest alloys and available in a range of traditional and modern styles. Ceremonial and combat blades are available.\"\n  },\n  \"honestypills\": {\n    \"id\": \"128667686\",\n    \"symbol\": \"HonestyPills\",\n    \"market_id\": \"3229561344\",\n    \"category\": \"Medicines\",\n    \"name\": \"Honesty Pills\",\n    \"limit\": 13,\n    \"rare\": true,\n    \"description\": \"Originally created to be used in a religious ceremony, wherein an apostate is purified through forced confession, then repentance for their sins. The sect was soon infiltrated by corporate agents, and the psychoactive compound identified. The only secrets that has not been revealed by this drug are the ingredients for creating it, and the fate of the religious sect that discovered it.\"\n  },\n  \"hostage\": {\n    \"id\": \"128672135\",\n    \"symbol\": \"Hostage\",\n    \"category\": \"Salvage\",\n    \"name\": \"Hostages\",\n    \"description\": \"Sometimes criminal gangs hide their hostages in cargo pods fitted with rudimentary life support.\"\n  },\n  \"hr7221wheat\": {\n    \"id\": \"128667059\",\n    \"symbol\": \"HR7221Wheat\",\n    \"market_id\": \"3226170880\",\n    \"category\": \"Foods\",\n    \"name\": \"HR 7221 Wheat\",\n    \"limit\": 16,\n    \"rare\": true,\n    \"description\": \"This blood-red, grain-like plant - sometimes known as 'Mars Grass' - has proven itself to be terribly invasive and highly aggressive to all other plant types. For this reason, its growth is now restricted to HR 7221. Its restriction has proved a blessing as its unique colouring and flavour are in demand in exotic cookery.\"\n  },\n  \"hydrogenfuel\": {\n    \"id\": \"128049202\",\n    \"symbol\": \"HydrogenFuel\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Hydrogen Fuel\",\n    \"description\": \"Hydrogen fuel is used in high power systems, from ships' drives to weapons to powering the energy needs of stations and surface cities. Using high pressure and temperature, hydrogen is fused into helium in a simple reactor.\"\n  },\n  \"hydrogenperoxide\": {\n    \"id\": \"128673850\",\n    \"symbol\": \"HydrogenPeroxide\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Hydrogen Peroxide\",\n    \"description\": \"Hydrogen Peroxide, H2O2, is the simplest peroxide and has a number of uses as a reacting agent in chemical processes.\"\n  },\n  \"imperialslaves\": {\n    \"id\": \"128667728\",\n    \"symbol\": \"ImperialSlaves\",\n    \"category\": \"Slavery\",\n    \"name\": \"Imperial Slaves\",\n    \"description\": \"Slavery is an important part of Imperial Society, providing labour for the Empire and a safety net for its citizens. Many Imperials will choose to sell themselves into a fixed period of slavery than face the embarrassment and dishonour of living with a debt.\"\n  },\n  \"indibourbon\": {\n    \"id\": \"128667704\",\n    \"symbol\": \"IndiBourbon\",\n    \"market_id\": \"128118520\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Indi Bourbon\",\n    \"limit\": 8,\n    \"rare\": true,\n    \"description\": \"Originally used as a medicine to revive those who have suffocated in dust storms, the restorative effects of this potent drink are almost as famous as the hangovers.\"\n  },\n  \"indite\": {\n    \"id\": \"128049157\",\n    \"symbol\": \"Indite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Indite\",\n    \"description\": \"Indite: chemical formula Fein2S4. Indium Ore. A rare, black, crystalline mineral. Often found in what were once hydrothermal deposits or asteroids that have been heated in their past. it is widely refined into Indium.\"\n  },\n  \"indium\": {\n    \"id\": \"128049169\",\n    \"symbol\": \"Indium\",\n    \"category\": \"Metals\",\n    \"name\": \"Indium\",\n    \"description\": \"Indium, In, atomic number 49. Melting point 429K. Used industrially and high tech for a wide range of alloys, including superconductors, sensors and holo projectors.\"\n  },\n  \"insulatingmembrane\": {\n    \"id\": \"128673855\",\n    \"symbol\": \"InsulatingMembrane\",\n    \"category\": \"Industrial Materials\",\n    \"name\": \"Insulating Membrane\",\n    \"description\": \"Insulating membranes are used to control heat flow between devices and are typically used for cooling.\"\n  },\n  \"iondistributor\": {\n    \"id\": \"128673874\",\n    \"symbol\": \"IonDistributor\",\n    \"category\": \"Machinery\",\n    \"name\": \"Ion Distributor\",\n    \"description\": \"Ion distributors are used to control the flows of ions within a device. These can be found at Stevens Orbital in the HIP 18327 system.\"\n  },\n  \"jadeite\": {\n    \"id\": \"128672776\",\n    \"symbol\": \"Jadeite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Jadeite\",\n    \"description\": \"Jadeite; NaAlSi2O6, is a substance of the purest green and used in a variety of crafts and art. It has historical roots with the ancient Mesoamerican cultures.\"\n  },\n  \"jaquesquinentianstill\": {\n    \"id\": \"128668017\",\n    \"symbol\": \"JaquesQuinentianStill\",\n    \"market_id\": \"128667761\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Jaques Quinentian Still\",\n    \"limit\": 26,\n    \"rare\": true,\n    \"description\": \"A pocket sized one shot distillery, hand crafted by the legendary Cyborg bartender Jaques. This device is capable of turning almost any combination of liquids into 10ml of highly concentrated alcohol in just 3 minutes.\"\n  },\n  \"jaradharrepuzzlebox\": {\n    \"id\": \"128667683\",\n    \"symbol\": \"JaradharrePuzzlebox\",\n    \"market_id\": \"3230754816\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Jaradharre Puzzle Box\",\n    \"limit\": 4,\n    \"rare\": true,\n    \"description\": \"This entertainment device uses concentrated radiation bursts to detect the desires of the player and automatically and instantly creates a game with every feature they could desire. Each unit is unique, and will self customise to represent its owner. Use of another person's puzzle box is considered a great social faux pas.\"\n  },\n  \"jarouarice\": {\n    \"id\": \"128667060\",\n    \"symbol\": \"JarouaRice\",\n    \"market_id\": \"3224698112\",\n    \"category\": \"Foods\",\n    \"name\": \"Jaroua Rice\",\n    \"limit\": 18,\n    \"rare\": true,\n    \"description\": \"Grown in the paddy fields of Jaroua, bioengineered filter fish are used to remove any pests or parasites attached to the plant. It is hand-planted and hand-picked by specially engineered robots.\"\n  },\n  \"jotunmookah\": {\n    \"id\": \"128667702\",\n    \"symbol\": \"JotunMookah\",\n    \"market_id\": \"128078840\",\n    \"category\": \"Textiles\",\n    \"name\": \"Jotun Mookah\",\n    \"limit\": 10,\n    \"rare\": true,\n    \"description\": \"A small soft-furred quadruped that stains its multi-colored fur sludge brown when it dies - an action that this highly nervous creature is predisposed to do at the drop of a hat. Professional comforters must work day and night to keep this creature from self induced heart attack. The meat is extremely bitter, but they have found a niche as an expensive accessory.\"\n  },\n  \"kachiriginleaches\": {\n    \"id\": \"128667027\",\n    \"symbol\": \"KachiriginLeaches\",\n    \"market_id\": \"3221595648\",\n    \"category\": \"Medicines\",\n    \"name\": \"Kachirigin Filter Leeches\",\n    \"limit\": 10,\n    \"rare\": true,\n    \"description\": \"Leeches were used medically for millennia on ancient Earth but were largely superseded by technology. Hundreds of years later, a chance discovery on Kachirigin revealed some very valuable properties of the native creatures. Kachirigin leeches can painlessly filter impurities from the user's blood, so can be used as a cure-all for hangovers and the worst effects of certain addictions. They are prized by the wealthy and hedonistic, and have an almost cult-like following.\"\n  },\n  \"kamitracigars\": {\n    \"id\": \"128667081\",\n    \"symbol\": \"KamitraCigars\",\n    \"market_id\": \"3225450752\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Kamitra Cigars\",\n    \"limit\": 23,\n    \"rare\": true,\n    \"description\": \"Providing the biggest cigars in the Galaxy, hand rolled and ready to smoke right out of the box. Specially treated to allow safe smoking even in the cockpit without overloading your life support module. The best way to end your days.\"\n  },\n  \"kamorinhistoricweapons\": {\n    \"id\": \"128667071\",\n    \"symbol\": \"KamorinHistoricWeapons\",\n    \"market_id\": \"3221669632\",\n    \"category\": \"Weapons\",\n    \"name\": \"Kamorin Historic Weapons\",\n    \"limit\": 10,\n    \"rare\": true,\n    \"description\": \"Kamorin Historic Weapons are happy to provide the re-enactor and enthusiast with fully-functional replicas of weapons from a number of important historical eras. Our expert team of craftsmen use traditional materials and methods, with a modern eye of quality. Exploring and researching the annals of history, our artisans continue to bring you the best of weapons from throughout the ages.\"\n  },\n  \"karetiicouture\": {\n    \"id\": \"128667039\",\n    \"symbol\": \"KaretiiCouture\",\n    \"market_id\": \"3227333120\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Karetii Couture\",\n    \"limit\": 5,\n    \"rare\": true,\n    \"description\": \"With the vagaries of fashion Karetii Couture is always ahead of the curve, and so are the prices. Many people question the value and the practicalities of these items and yet they still maintain a vice like grip on the public's imagination and credits.\"\n  },\n  \"karsukilocusts\": {\n    \"id\": \"128667023\",\n    \"symbol\": \"KarsukiLocusts\",\n    \"market_id\": \"3225028096\",\n    \"category\": \"Foods\",\n    \"name\": \"Karsuki Locusts\",\n    \"limit\": 18,\n    \"rare\": true,\n    \"description\": \"Prized for their uniquely sweet flavor caused by the native fungal parasites that infest them.\"\n  },\n  \"kinagoinstruments\": {\n    \"id\": \"128667045\",\n    \"symbol\": \"KinagoInstruments\",\n    \"market_id\": \"3227394304\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Kinago Violins\",\n    \"limit\": 3,\n    \"rare\": true,\n    \"description\": \"Kinago is famed for its Luthiers producing the finest Violins and other stringed instruments. They are highly prized by both musicians and collectors throughout the galaxy.\"\n  },\n  \"konggaale\": {\n    \"id\": \"128667034\",\n    \"symbol\": \"KonggaAle\",\n    \"market_id\": \"3226978048\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Kongga Ale\",\n    \"limit\": 16,\n    \"rare\": true,\n    \"description\": \"The hops of Kongga provide a deep, satisfying flavour to the locally brewed ale, but seem to wither and spoil rapidly when removed from their native climate. Due to this Kongga Ale is renowned for its authentic flavour and traditional production methods. Served at room temperature with a decorative umbrella.\"\n  },\n  \"korrokungpellets\": {\n    \"id\": \"128667684\",\n    \"symbol\": \"KorroKungPellets\",\n    \"market_id\": \"3228726272\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Korro Kung Pellets\",\n    \"limit\": 20,\n    \"rare\": true,\n    \"description\": \"This exotic fertiliser is made from the crushed bodies of the native life forms siphoned from the nearby gas giants vast ammonia oceans in unsustainable quantities. It is reported to have invigorated even the most barren and arid of soils, but has also proved to be lethal to some crops.\"\n  },\n  \"landmines\": {\n    \"id\": \"128672312\",\n    \"symbol\": \"Landmines\",\n    \"category\": \"Weapons\",\n    \"name\": \"Landmines\",\n    \"description\": \"A cheap and effective way of creating area denial. These explosive devices are banned in most jurisdictions and are effective against personnel and land vehicles.\"\n  },\n  \"lanthanum\": {\n    \"id\": \"128672298\",\n    \"symbol\": \"Lanthanum\",\n    \"category\": \"Metals\",\n    \"name\": \"Lanthanum\",\n    \"description\": \"Lanthanum, La, atomic number 57. Melting point 1193K. is a soft metallic element used as an additive in glass. It's properties make it ideal for optical communications systems, other lighting applications and as a catalyst for various refining processes.\"\n  },\n  \"largeexplorationdatacash\": {\n    \"id\": \"128672136\",\n    \"symbol\": \"LargeExplorationDataCash\",\n    \"category\": \"Salvage\",\n    \"name\": \"Large Survey Data Cache\",\n    \"description\": \"Occasionally survey ships go missing during their journeys into the black. On even rarer occasions their cache of survey data can be retrieved and these are highly sought after by institutions and private interests.\"\n  },\n  \"lavianbrandy\": {\n    \"id\": \"128666747\",\n    \"symbol\": \"LavianBrandy\",\n    \"market_id\": \"128106744\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Lavian Brandy\",\n    \"limit\": 24,\n    \"rare\": true,\n    \"description\": \"A highly valued liquor from the old world of Lave. Using ancient breeds of grains grown in it's tropical climate, under a permit from the government, the distillate is kept in old earth oak barrels and held in an orbital maturing facility for decades to achieve maximum richness.\"\n  },\n  \"leather\": {\n    \"id\": \"128049190\",\n    \"symbol\": \"Leather\",\n    \"category\": \"Textiles\",\n    \"name\": \"Leather\",\n    \"description\": \"Assorted tanned animal hides. Used in industry to produce clothing and high value furnishings.\"\n  },\n  \"leestianeviljuice\": {\n    \"id\": \"128667715\",\n    \"symbol\": \"LeestianEvilJuice\",\n    \"market_id\": \"128639992\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Leestian Evil Juice\",\n    \"limit\": 14,\n    \"rare\": true,\n    \"description\": \"Leestian evil juice acquired its name from local security forces, claiming that those intoxicated with this powerful liquor seem to be possessed with a pure evil.\"\n  },\n  \"lepidolite\": {\n    \"id\": \"128049161\",\n    \"symbol\": \"Lepidolite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Lepidolite\",\n    \"description\": \"Lepidolite: chemical formula K(Li,Al,Rb)3(Al,Si)4O10(F,OH)2. A purplish pink phyllosilicate mineral. Source of Lithium once refined.\"\n  },\n  \"lftvoidextractcoffee\": {\n    \"id\": \"128667685\",\n    \"symbol\": \"LFTVoidExtractCoffee\",\n    \"market_id\": \"3229028864\",\n    \"category\": \"Foods\",\n    \"name\": \"Void Extract Coffee\",\n    \"limit\": 18,\n    \"rare\": true,\n    \"description\": \"Brewed using particularly robust beans, the flavour and caffeine is extracted from the beans using custom technology. Harnessing the power of the vacuum of space to enrich comet water, the method creates a beverage noted for its potency.\"\n  },\n  \"liquidoxygen\": {\n    \"id\": \"128673851\",\n    \"symbol\": \"LiquidOxygen\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Liquid oxygen\",\n    \"description\": \"Oxygen that has been cooled to the point of condensation. Useful in cryogenics or to oxidise other substances.\"\n  },\n  \"liquor\": {\n    \"id\": \"128049216\",\n    \"symbol\": \"Liquor\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Liquor\",\n    \"description\": \"A range of luxury drinks made from distilled, fermented grains and fruits, usually containing a high percentage of alcohol. The narcotic effect means it is illegal in some jurisdictions.\"\n  },\n  \"lithium\": {\n    \"id\": \"128049173\",\n    \"symbol\": \"Lithium\",\n    \"category\": \"Metals\",\n    \"name\": \"Lithium\",\n    \"description\": \"Lithium, Li, atomic number 3. Melting point 453K. A silvery white alkali metal used by industry in ceramic production, and in electronic devices for energy storage. Before the advent of direct brain treatments it was used to treat human mental disorders in early history.\"\n  },\n  \"lithiumhydroxide\": {\n    \"id\": \"128673853\",\n    \"symbol\": \"LithiumHydroxide\",\n    \"category\": \"Minerals\",\n    \"name\": \"Lithium Hydroxide\",\n    \"description\": \"Lithium Hydroxide, LiOH, is a hygroscopic material often used for scrubbing CO₂ from life support systems. It is also used within certain ceramics and as a heat transfer medium.\"\n  },\n  \"livehecateseaworms\": {\n    \"id\": \"128667051\",\n    \"symbol\": \"LiveHecateSeaWorms\",\n    \"market_id\": \"128042496\",\n    \"category\": \"Foods\",\n    \"name\": \"Live Hecate Sea Worms\",\n    \"limit\": 13,\n    \"rare\": true,\n    \"description\": \"Harvested from hydrothermal vents and prized for the sulphurous salty flavour. They are best eaten live to ensure freshness.\"\n  },\n  \"lowtemperaturediamond\": {\n    \"id\": \"128673848\",\n    \"symbol\": \"LowTemperatureDiamond\",\n    \"category\": \"Minerals\",\n    \"name\": \"Low Temperature Diamonds\",\n    \"description\": \"Low Temperature Diamonds, C, are formed under intense pressure (as with regular diamonds), but without a heat component.\"\n  },\n  \"ltthypersweet\": {\n    \"id\": \"128667688\",\n    \"symbol\": \"LTTHyperSweet\",\n    \"market_id\": \"3224166400\",\n    \"category\": \"Foods\",\n    \"name\": \"LTT Hyper Sweet\",\n    \"limit\": 19,\n    \"rare\": true,\n    \"description\": \"Created by combining the DNA of the universe's sweetest crops, to create the sweetest substance of them all. It turns out it's highly addictive.\"\n  },\n  \"lyraeweed\": {\n    \"id\": \"128667028\",\n    \"symbol\": \"LyraeWeed\",\n    \"market_id\": \"3226417152\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Lyrae Weed\",\n    \"limit\": 10,\n    \"rare\": true,\n    \"description\": \"This infamous drug grown exclusively on 16 Lyrae 5 is still the narcotic of choice for overpaid celebrities and the super-rich. It has almost become more of a status symbol than a recreational drug.\"\n  },\n  \"m3_tissuesample_membrane\": {\n    \"id\": \"128922782\",\n    \"symbol\": \"M3_TissueSample_Membrane\",\n    \"category\": \"Salvage\",\n    \"name\": \"Mollusc Membrane\",\n    \"description\": \"A sample of membrane from a from a space-based mollusc.\"\n  },\n  \"m3_tissuesample_mycelium\": {\n    \"id\": \"128922783\",\n    \"symbol\": \"M3_TissueSample_Mycelium\",\n    \"category\": \"Salvage\",\n    \"name\": \"Mollusc Mycelium\",\n    \"description\": \"A sample of the mycelium of a space-based mollusc.\"\n  },\n  \"m3_tissuesample_spores\": {\n    \"id\": \"128922784\",\n    \"symbol\": \"M3_TissueSample_Spores\",\n    \"category\": \"Salvage\",\n    \"name\": \"Mollusc Spores\",\n    \"description\": \"A sample of spores from a from a space-based mollusc.\"\n  },\n  \"m_tissuesample_fluid\": {\n    \"id\": \"128922517\",\n    \"symbol\": \"M_TissueSample_Fluid\",\n    \"category\": \"Salvage\",\n    \"name\": \"Mollusc Fluid\",\n    \"description\": \"A fluid sample from a space-based mollusc.\"\n  },\n  \"m_tissuesample_nerves\": {\n    \"id\": \"128922519\",\n    \"symbol\": \"M_TissueSample_Nerves\",\n    \"category\": \"Salvage\",\n    \"name\": \"Mollusc Brain Tissue\",\n    \"description\": \"A sample of brain tissue from a space-based mollusc.\"\n  },\n  \"m_tissuesample_soft\": {\n    \"id\": \"128922518\",\n    \"symbol\": \"M_TissueSample_Soft\",\n    \"category\": \"Salvage\",\n    \"name\": \"Mollusc Soft Tissue\",\n    \"description\": \"A sample of soft tissue from a space-based mollusc.\"\n  },\n  \"magneticemittercoil\": {\n    \"id\": \"128673869\",\n    \"symbol\": \"MagneticEmitterCoil\",\n    \"category\": \"Machinery\",\n    \"name\": \"Magnetic Emitter Coil\",\n    \"description\": \"These custom made magnetic emitter coils are used to focus and guide wireless forms of energy transfer. These can be found at Steiner Platform in the Aasgaa system\"\n  },\n  \"marinesupplies\": {\n    \"id\": \"128049223\",\n    \"symbol\": \"MarineSupplies\",\n    \"category\": \"Machinery\",\n    \"name\": \"Marine Equipment\",\n    \"description\": \"A wide range of industrial scale equipment for marine agriculture. Submersibles, feedstock dispersing equipment, fishing equipment, nets and underwater confinements.\"\n  },\n  \"masterchefs\": {\n    \"id\": \"128672316\",\n    \"symbol\": \"MasterChefs\",\n    \"market_id\": \"128123640\",\n    \"category\": \"Slavery\",\n    \"name\": \"Master Chefs\",\n    \"limit\": 26,\n    \"rare\": true,\n    \"description\": \"Master Chefs are selected based on genetic markers that tend to favour an aptitude for the gourmet. Little is known about them except that they are kidnapped as children and then trained under mysterious conditions to bring out their genetic cooking potential. The use of Master Chefs is illegal in most Federal and Alliance systems, but is regarded as a sign of high status in many Imperial systems. Many anti-slavery protest groups have tried to free Master Chefs from their life of culinary bondage, yet due to their training, most return of their own free will to serve. Theirs is a life of servitude - they know nothing but to cook.\"\n  },\n  \"mechucoshightea\": {\n    \"id\": \"128667689\",\n    \"symbol\": \"MechucosHighTea\",\n    \"market_id\": \"3228398848\",\n    \"category\": \"Foods\",\n    \"name\": \"Mechucos High Tea\",\n    \"limit\": 12,\n    \"rare\": true,\n    \"description\": \"Mechucos high tea is so named for the dizzying highs caused by its consumption. Most users recommend restricting consumption to specific times of the day, and only with a side plate of restorative sandwiches and cakes.\"\n  },\n  \"medbstarlube\": {\n    \"id\": \"128667690\",\n    \"symbol\": \"MedbStarlube\",\n    \"market_id\": \"3228762368\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Medb Starlube\",\n    \"limit\": 18,\n    \"rare\": true,\n    \"description\": \"The universal lubricator used in construction, machinery and agriculture. It also has a number of domestic applications. It's slogan is: the lube that keeps the galaxy spinning!\"\n  },\n  \"medicaldiagnosticequipment\": {\n    \"id\": \"128682047\",\n    \"symbol\": \"MedicalDiagnosticEquipment\",\n    \"category\": \"Technology\",\n    \"name\": \"Medical Diagnostic Equipment\",\n    \"description\": \"Equipment which allows for rapid diagnosis of a large number of ailments and diseases. This equipment also screens for and identifies prohibited substances.\"\n  },\n  \"metaalloys\": {\n    \"id\": \"128672701\",\n    \"symbol\": \"MetaAlloys\",\n    \"category\": \"Industrial Materials\",\n    \"name\": \"Meta-Alloys\",\n    \"description\": \"Meta-alloys have a complex lattice structure with large internal voids. They are cellular in nature, and formed organically. They are incredibly strong - much stronger than foamed aluminium for example. Many elements form the structure so technically they are alloys, but the composition is different in different parts of the cell walls for strength. They are good thermal insulators, and have a high melting point, but if they are melted they lose all their special properties and become a conventional alloy. They are easily machined, but as yet cannot be manufactured, only found in space. They are associated with recently discovered alien entities nicknamed 'Large Barnacles' by interstellar explorers. These appear to be common in certain parts of space, although no-one is certain why. This material has been heralded as the next step in materials technology. It is ultra-light and stronger and more versatile than most commercially available alloys.\"\n  },\n  \"methaneclathrate\": {\n    \"id\": \"128673854\",\n    \"symbol\": \"MethaneClathrate\",\n    \"category\": \"Minerals\",\n    \"name\": \"Methane Clathrate\",\n    \"description\": \"Methane Clathrate, CH4·5.75H2O or 4CH4·23H2O, is a chemical where methane is bound within a crystal lattice of water.\"\n  },\n  \"methanolmonohydratecrystals\": {\n    \"id\": \"128673852\",\n    \"symbol\": \"MethanolMonohydrateCrystals\",\n    \"category\": \"Minerals\",\n    \"name\": \"Methanol Monohydrate Crystals\",\n    \"description\": \"Methanol Monohydrate, CH6O2, are crystals with unusual thermoelastic properties which are useful for mechanical and optical materials.\"\n  },\n  \"microcontrollers\": {\n    \"id\": \"128673873\",\n    \"symbol\": \"MicroControllers\",\n    \"category\": \"Technology\",\n    \"name\": \"Micro Controllers\",\n    \"description\": \"Micro controllers are small units to provide actuation and process control for lightweight devices.\"\n  },\n  \"militarygradefabrics\": {\n    \"id\": \"128682045\",\n    \"symbol\": \"MilitaryGradeFabrics\",\n    \"category\": \"Textiles\",\n    \"name\": \"Military Grade Fabrics\",\n    \"description\": \"Made fom high-grade fabrics which are highly durable as well as adaptive to different temperatures and weather conditions, this clothing is essential for military personnel.\"\n  },\n  \"militaryintelligence\": {\n    \"id\": \"128668552\",\n    \"symbol\": \"MilitaryIntelligence\",\n    \"category\": \"Salvage\",\n    \"name\": \"Military Intelligence\",\n    \"description\": \"Highly confidential documents detailing military movements and military strategy. Possession of such documents is highly illegal, due to their sensitive nature. For the same reason they fetch an exceedingly large sum from the right buyer.\"\n  },\n  \"mineralextractors\": {\n    \"id\": \"128049221\",\n    \"symbol\": \"MineralExtractors\",\n    \"category\": \"Machinery\",\n    \"name\": \"Mineral Extractors\",\n    \"description\": \"Industrially produced 'grey goo' micro devices that are injected into minerals to separate specific constituents from mixed ores along grain boundaries. Extraction sites that utilise mineral extractors in their processes are significantly more efficient.\"\n  },\n  \"mineraloil\": {\n    \"id\": \"128049203\",\n    \"symbol\": \"MineralOil\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Mineral Oil\",\n    \"description\": \"This is an organic oil that is a useful raw material for producing a wide range of synthetic materials from plastics to ceramics. It is derived from the decay of organic materials, and can often be found beneath the ground on outdoor worlds. Surprisingly, mineral oil was burnt for energy on ancient Earth.\"\n  },\n  \"modularterminals\": {\n    \"id\": \"128673870\",\n    \"symbol\": \"ModularTerminals\",\n    \"category\": \"Machinery\",\n    \"name\": \"Modular Terminals\",\n    \"description\": \"Used by factions as a reward for mission contracts. Modular terminals are ubiquitous items that provide a hardware display of data in a visual and audio format. While they can be sold at markets for a minimal price, these are more often used by engineers for their upgrades.\"\n  },\n  \"moissanite\": {\n    \"id\": \"128672296\",\n    \"symbol\": \"Moissanite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Moissanite\",\n    \"description\": \"This crystalline silicon carbide mineral has applications in electronics manufacture, and thermal energy absorption. It is also used in jewellery and other crafted items.\"\n  },\n  \"mokojingbeastfeast\": {\n    \"id\": \"128667691\",\n    \"symbol\": \"MokojingBeastFeast\",\n    \"market_id\": \"3229612800\",\n    \"category\": \"Foods\",\n    \"name\": \"Mokojing Beast Feast\",\n    \"limit\": 7,\n    \"rare\": true,\n    \"description\": \"Marketed as \\\"the galaxy's most dangerous cereal\\\", with a tagline imploring the consumer to \\\"eat it before it eats you\\\", Beast Feast claims to contain trace elements of over two hundred and twenty three confirmed man-eater species, allowing consumers to \\\"eat their way to the top of the food chain\\\".\"\n  },\n  \"momusbogspaniel\": {\n    \"id\": \"128667713\",\n    \"symbol\": \"MomusBogSpaniel\",\n    \"market_id\": \"128075256\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Momus Bog Spaniel\",\n    \"limit\": 7,\n    \"rare\": true,\n    \"description\": \"Famed for its inability to hunt through water, it makes such lifelike duck calls that some interesting cross breeds are now being researched.\"\n  },\n  \"monazite\": {\n    \"id\": \"128924327\",\n    \"symbol\": \"Monazite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Monazite\",\n    \"description\": \"Monazite is a reddish-brown phosphate mineral containing thorium and sometimes uranium, making it radioactive.\"\n  },\n  \"motronaexperiencejelly\": {\n    \"id\": \"128667676\",\n    \"symbol\": \"MotronaExperienceJelly\",\n    \"market_id\": \"3229750528\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Motrona Experience Jelly\",\n    \"limit\": 11,\n    \"rare\": true,\n    \"description\": \"A programmable narcotic created in small batches and pre-programmed to provide whatever experience the client wishes to hallucinate. Usually this drug is created only on a bespoke order from an unknown client, but some worlds are willing to sell Pre-programmed samples on the general market.\"\n  },\n  \"mukusubiichitinos\": {\n    \"id\": \"128667692\",\n    \"symbol\": \"MukusubiiChitinOs\",\n    \"market_id\": \"3221719296\",\n    \"category\": \"Foods\",\n    \"name\": \"Mukusubii Chitin-os\",\n    \"limit\": 15,\n    \"rare\": true,\n    \"description\": \"The chitinous native insects of nearby worlds are processed using industrial mining equipment, then re-constituted into convenient circles. Marketed as a food for those who like a little crunch.\"\n  },\n  \"mulachigiantfungus\": {\n    \"id\": \"128667693\",\n    \"symbol\": \"MulachiGiantFungus\",\n    \"market_id\": \"3228892672\",\n    \"category\": \"Foods\",\n    \"name\": \"Mulachi Giant Fungus\",\n    \"limit\": 22,\n    \"rare\": true,\n    \"description\": \"The fungal life forms found in Mulachi can grow to occupy entire continents! Specifically trained teams are sent to the planet's surface to industrially harvest large portions of the fungal structures, but workers must be wary of the deadly fungal spores.\"\n  },\n  \"musgravite\": {\n    \"id\": \"128924328\",\n    \"symbol\": \"Musgravite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Musgravite\",\n    \"description\": \"Musgravite is an oxide mineral first discovered on Earth in the Musgrave mountain range in Australia, hence its name.\"\n  },\n  \"mutomimager\": {\n    \"id\": \"128672310\",\n    \"symbol\": \"MuTomImager\",\n    \"category\": \"Technology\",\n    \"name\": \"Muon Imager\",\n    \"description\": \"Muon topographical instruments providing deep surface scans of planets and moons.\"\n  },\n  \"mysteriousidol\": {\n    \"id\": \"128682051\",\n    \"symbol\": \"MysteriousIdol\",\n    \"category\": \"Salvage\",\n    \"name\": \"Mysterious Idol\",\n    \"description\": \"This appears to be an idol crafted to worship some sort of deity or higher form of life.\"\n  },\n  \"nanobreakers\": {\n    \"id\": \"128673871\",\n    \"symbol\": \"Nanobreakers\",\n    \"category\": \"Technology\",\n    \"name\": \"Nanobreakers\",\n    \"description\": \"Used by factions as a reward for mission contracts. Nanobreakers are tiny machines used for disassembling certain, specialised materials. While they can be sold at markets for a minimal price, these are more often used by engineers for their upgrades.\"\n  },\n  \"nanomedicines\": {\n    \"id\": \"128913661\",\n    \"symbol\": \"Nanomedicines\",\n    \"market_id\": \"3226651904\",\n    \"category\": \"Medicines\",\n    \"name\": \"Nanomedicines\",\n    \"limit\": 40,\n    \"rare\": true,\n    \"description\": \"These sophisticated pharmaceuticals use nanoscale materials to target disease far more efficiently than conventional medicine. The product of an ambitious R&D programme, they are developed by the technologically advanced community Utopia and exclusively distributed by Vandermeer Corporation in the Kuma system.\"\n  },\n  \"naturalfabrics\": {\n    \"id\": \"128049191\",\n    \"symbol\": \"NaturalFabrics\",\n    \"category\": \"Textiles\",\n    \"name\": \"Natural Fabrics\",\n    \"description\": \"A range of high value fabrics derived from natural organic materials generally produced on outdoor worlds. These are used in industrial locations to make clothing and other items.\"\n  },\n  \"neofabricinsulation\": {\n    \"id\": \"128673858\",\n    \"symbol\": \"NeofabricInsulation\",\n    \"category\": \"Industrial Materials\",\n    \"name\": \"Neofabric Insulation\",\n    \"description\": \"Neofabric insulation is a material using complementary fibre structures to retain, or protect from, heat build up.\"\n  },\n  \"neritusberries\": {\n    \"id\": \"128667056\",\n    \"symbol\": \"NeritusBerries\",\n    \"market_id\": \"3228206080\",\n    \"category\": \"Foods\",\n    \"name\": \"Neritus Berries\",\n    \"limit\": 13,\n    \"rare\": true,\n    \"description\": \"This native plant form produces clear red fruit with a unique flavor. The plant is carnivorous and the berries contain blood plasma from its victims which is said to be an aid to slimming.\"\n  },\n  \"nerveagents\": {\n    \"id\": \"128672304\",\n    \"symbol\": \"NerveAgents\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Nerve Agents\",\n    \"description\": \"Used in medical research but because of the potential to be weaponised is a controlled substance in many jurisdictions.\"\n  },\n  \"ngadandarifireopals\": {\n    \"id\": \"128667694\",\n    \"symbol\": \"NgadandariFireOpals\",\n    \"market_id\": \"3226127872\",\n    \"category\": \"Metals\",\n    \"name\": \"Ngadandari Fire Opals\",\n    \"limit\": 6,\n    \"rare\": true,\n    \"description\": \"A particularly rich seam of high grade opals famed for their mesmerising fire-like reflections. Imperial citizens view them as a status symbol, representing the fire of the birth of the empire. Their high market value has lead to the planet being systematically strip-mined by Imperial slaves.\"\n  },\n  \"ngunamodernantiques\": {\n    \"id\": \"128667046\",\n    \"symbol\": \"NgunaModernAntiques\",\n    \"market_id\": \"3221538304\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Nguna Modern Antiques\",\n    \"limit\": 4,\n    \"rare\": true,\n    \"description\": \"Local craftsmen are specialists in bringing the past into your life crafted from authentically accurate materials, a mark of distinction.\"\n  },\n  \"njangarisaddles\": {\n    \"id\": \"128667040\",\n    \"symbol\": \"NjangariSaddles\",\n    \"market_id\": \"3222416896\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Njangari Saddles\",\n    \"limit\": 13,\n    \"rare\": true,\n    \"description\": \"The Saddlers of Njangari are renowned for their leather work, and their motto: No job too big or too invertebrate. Whether simple domestic supplies or custom saddles and tack for some of the more exotic species in the galaxy, they are the very best.\"\n  },\n  \"noneuclidianexotanks\": {\n    \"id\": \"128667687\",\n    \"symbol\": \"NonEuclidianExotanks\",\n    \"market_id\": \"3224135424\",\n    \"category\": \"Machinery\",\n    \"name\": \"Non Euclidian Exotanks\",\n    \"limit\": 16,\n    \"rare\": true,\n    \"description\": \"Produced under licence, and with the approval of a number of environmental groups, these tanks can be used to create a truly alien habitat capable of sustaining life forms from a variety on non earth like environments. They are available in a number of mind bending shapes.\"\n  },\n  \"nonlethalweapons\": {\n    \"id\": \"128049236\",\n    \"symbol\": \"NonLethalWeapons\",\n    \"category\": \"Weapons\",\n    \"name\": \"Non-Lethal Weapons\",\n    \"description\": \"Non-Lethal Weapons are hand-held weapons used by law enforcement and for personal protection. They temporarily stun or incapacitate a human target, and are legal in most jurisdictions.\"\n  },\n  \"occupiedcryopod\": {\n    \"id\": \"128672125\",\n    \"symbol\": \"OccupiedCryoPod\",\n    \"category\": \"Salvage\",\n    \"name\": \"Occupied Escape Pod\",\n    \"description\": \"Escape pods are typically made from composite materials designed to withstand extremes of temperature and pressure, and can protect a single occupant in the event of ship destruction.\"\n  },\n  \"ochoengchillies\": {\n    \"id\": \"128667057\",\n    \"symbol\": \"OchoengChillies\",\n    \"market_id\": \"3226719232\",\n    \"category\": \"Foods\",\n    \"name\": \"Ochoeng Chillies\",\n    \"limit\": 14,\n    \"rare\": true,\n    \"description\": \"Due to the relaxation of various genetic modification laws, Ochoeng prides itself on having produced the galaxy's hottest chilli pepper. There have been numerous calls to reclassify the substances as toxic, however the produce remains legal in most systems.\"\n  },\n  \"onionhead\": {\n    \"id\": \"128667029\",\n    \"symbol\": \"OnionHead\",\n    \"market_id\": \"128129272\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Onionhead\",\n    \"limit\": 12,\n    \"rare\": true,\n    \"description\": \"The Onionhead flower is native to HIP 55118, and its seeds contain the well-known psychedelic narcotic. Illegal in most jurisdictions.\"\n  },\n  \"onionheada\": {\n    \"id\": \"128672812\",\n    \"symbol\": \"OnionHeadA\",\n    \"market_id\": \"3226977024\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Onionhead Alpha Strain\",\n    \"limit\": 10,\n    \"rare\": true,\n    \"description\": \"A new and improved strain of the famous Onionhead narcotic.\"\n  },\n  \"onionheadb\": {\n    \"id\": \"128673069\",\n    \"symbol\": \"OnionHeadB\",\n    \"market_id\": \"3223027200\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Onionhead Beta Strain\",\n    \"limit\": 10,\n    \"rare\": true,\n    \"description\": \"An adapted strain of the Onionhead narcotic favourable to local conditions.\"\n  },\n  \"onionheadc\": {\n    \"id\": \"128983059\",\n    \"symbol\": \"OnionHeadC\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Onionhead Gamma Strain\",\n    \"description\": \"A new strain of Onionhead tailored to grow in local conditions.\"\n  },\n  \"opal\": {\n    \"id\": \"128924332\",\n    \"symbol\": \"Opal\",\n    \"category\": \"Minerals\",\n    \"name\": \"Void Opals\",\n    \"description\": \"Void opals are a mineraloid prized by various cultures. Their lack of reflectivity means that they seem almost to absorb light, hence their name.\"\n  },\n  \"ophiuchiexinoartefacts\": {\n    \"id\": \"128667668\",\n    \"symbol\": \"OphiuchiExinoArtefacts\",\n    \"market_id\": \"3228939264\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Ophiuch Exino Artefacts\",\n    \"limit\": 7,\n    \"rare\": true,\n    \"description\": \"These strange sculptures are believed by some to have been created by a now extinct ancient sentient race. Others have theorised that the sculptures are a natural formation caused by local weather patterns. Most economists agree that there are massive profits made from the gullible and wealthy collectors.\"\n  },\n  \"orrerianviciousbrew\": {\n    \"id\": \"128667711\",\n    \"symbol\": \"OrrerianViciousBrew\",\n    \"market_id\": \"128166392\",\n    \"category\": \"Foods\",\n    \"name\": \"Orrerian Vicious Brew\",\n    \"limit\": 32,\n    \"rare\": true,\n    \"description\": \"This drink is so high in caffeine and Natural sugars that it is often classed as a Narcotic. The addictive properties and resulting sleep deprivation are famed.\"\n  },\n  \"osmium\": {\n    \"id\": \"128671118\",\n    \"symbol\": \"Osmium\",\n    \"category\": \"Metals\",\n    \"name\": \"Osmium\",\n    \"description\": \"Osmium, Os, atomic number 76, melting point 3306K. A very hard bluish-white metal. Provides extreme durability even at high temperatures, and is a valuable constituent in specialist alloys.\"\n  },\n  \"p_particulatesample\": {\n    \"id\": \"128922523\",\n    \"symbol\": \"P_ParticulateSample\",\n    \"category\": \"Salvage\",\n    \"name\": \"Anomaly Particles\",\n    \"description\": \"A collection of particles from a space-based anomaly.\"\n  },\n  \"painite\": {\n    \"id\": \"128668550\",\n    \"symbol\": \"Painite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Painite\",\n    \"description\": \"Painite is an incredibly rare borate mineral that typically takes the form of a red gemstone. Highly sought after by socialities throughout occupied space, it is renowned for being one of the most valuable types of gemstones in the galaxy.\"\n  },\n  \"palladium\": {\n    \"id\": \"128049153\",\n    \"symbol\": \"Palladium\",\n    \"category\": \"Metals\",\n    \"name\": \"Palladium\",\n    \"description\": \"Palladium, PD, 46. Often used in electronics and for purifying noxious gasses.\"\n  },\n  \"pantaaprayersticks\": {\n    \"id\": \"128667708\",\n    \"symbol\": \"PantaaPrayerSticks\",\n    \"market_id\": \"3228824064\",\n    \"category\": \"Medicines\",\n    \"name\": \"Pantaa Prayer Sticks\",\n    \"limit\": 36,\n    \"rare\": true,\n    \"description\": \"These sacred items are said to bring wealth and prosperity to all who inhale their smoke, as can be seen by how prosperous George Pantazis has become.\"\n  },\n  \"pavoniseargrubs\": {\n    \"id\": \"128667701\",\n    \"symbol\": \"PavonisEarGrubs\",\n    \"market_id\": \"128117240\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Pavonis Ear Grubs\",\n    \"limit\": 30,\n    \"rare\": true,\n    \"description\": \"Native to the harsh desert climate, these unpleasant creatures will burrow into any soft surface, including flesh, to avoid the sun. Their resemblance of a walking human ear lead to their name. Some slavers use these grubs as a restrainer for their captives, attaching a dormant extra ear to the forehead of their slave that can be remotely triggered.\"\n  },\n  \"performanceenhancers\": {\n    \"id\": \"128049209\",\n    \"symbol\": \"PerformanceEnhancers\",\n    \"category\": \"Medicines\",\n    \"name\": \"Performance Enhancers\",\n    \"description\": \"A broad category of engineered substances that enhance human physical or mental or emotional capabilities. Produced on high tech worlds, and widely consumed. There are some risks from excessive consumption and they are illegal in some jurisdictions.\"\n  },\n  \"personaleffects\": {\n    \"id\": \"128672126\",\n    \"symbol\": \"PersonalEffects\",\n    \"category\": \"Salvage\",\n    \"name\": \"Personal Effects\",\n    \"description\": \"Personal items are often transported and sometimes lost while travelling within and between star systems. They usually have little value except to their owners.\"\n  },\n  \"personalgifts\": {\n    \"id\": \"128672431\",\n    \"symbol\": \"PersonalGifts\",\n    \"market_id\": \"3223105792\",\n    \"category\": \"Salvage\",\n    \"name\": \"Personal Gifts\",\n    \"limit\": 20,\n    \"rare\": true,\n    \"description\": \"Colourfully wrapped presents for those naughty and nice, although the nice ones do appear to be bigger.\"\n  },\n  \"personalweapons\": {\n    \"id\": \"128049233\",\n    \"symbol\": \"PersonalWeapons\",\n    \"category\": \"Weapons\",\n    \"name\": \"Personal Weapons\",\n    \"description\": \"Personal firearms, designed for both self defence and offence, but intended to kill a human attacker. Illegal or highly controlled in many jurisdictions.\"\n  },\n  \"pesticides\": {\n    \"id\": \"128049205\",\n    \"symbol\": \"Pesticides\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Pesticides\",\n    \"description\": \"Pesticides are targeted engineered substances, created to disrupt a particular part of the biological processes within a given organic pest. Used on agricultural worlds to reduce pest damage to crops or livestock.\"\n  },\n  \"platinum\": {\n    \"id\": \"128049152\",\n    \"symbol\": \"Platinum\",\n    \"category\": \"Metals\",\n    \"name\": \"Platinum\",\n    \"description\": \"Platinum, Pt. atomic number 78. Melting point 2,041K. A grey-white precious metal used as a catalyst within many industrial processes, in addition to its value in electronics and luxury goods because of its resistance to corrosion.\"\n  },\n  \"platinumaloy\": {\n    \"id\": \"128793114\",\n    \"symbol\": \"PlatinumAloy\",\n    \"market_id\": \"3223779840\",\n    \"category\": \"Metals\",\n    \"name\": \"Platinum Alloy\",\n    \"limit\": 13,\n    \"rare\": true,\n    \"description\": \"An ultra-strong metal alloy used in the manufacture of robotics, heavy machinery and weaponry. Due to the dangerous nature of mining and processing the alloy and fusing it with Platinum, most systems refused to produce it and the technique was almost lost. Now the factions of the Nahuatl system are the only people with the knowledge to create the metal.\"\n  },\n  \"politicalprisoner\": {\n    \"id\": \"128672134\",\n    \"symbol\": \"PoliticalPrisoner\",\n    \"category\": \"Salvage\",\n    \"name\": \"Political Prisoners\",\n    \"description\": \"Political prisoners are sometimes transported in cargo pods to help disguise their movement.\"\n  },\n  \"polymers\": {\n    \"id\": \"128049197\",\n    \"symbol\": \"Polymers\",\n    \"category\": \"Industrial Materials\",\n    \"name\": \"Polymers\",\n    \"description\": \"Polymers are materials made of long chains of molecules. They are synthesised from mineral oil in refineries, and then used by industry to manufacture a very wide range of goods.\"\n  },\n  \"powerconverter\": {\n    \"id\": \"128673862\",\n    \"symbol\": \"PowerConverter\",\n    \"category\": \"Machinery\",\n    \"name\": \"Power Converter\",\n    \"description\": \"Power converter used to modify and regulate the energy coming from multiple sources so that it is tuned to the optimal operational requirements of all attached devices. These can be found at Shukor Dock in the Perun system.\"\n  },\n  \"powergenerators\": {\n    \"id\": \"128049217\",\n    \"symbol\": \"PowerGenerators\",\n    \"category\": \"Machinery\",\n    \"name\": \"Power Generators\",\n    \"description\": \"Industrially produced components for Power Generators, used throughout human space. Though the Sirius Corporation have a near monopoly on manufacture of most new larger units, many other companies produce the vast amount of consumables, spares and ancillary parts for them.\"\n  },\n  \"powergridassembly\": {\n    \"id\": \"128673863\",\n    \"symbol\": \"PowerGridAssembly\",\n    \"category\": \"Machinery\",\n    \"name\": \"Energy Grid Assembly\",\n    \"description\": \"A specialised energy grid assembly for controlling power flow. These can be found at Pailes Enterprise in the 40 Ceti system.\"\n  },\n  \"powertransferconduits\": {\n    \"id\": \"128673864\",\n    \"symbol\": \"PowerTransferConduits\",\n    \"category\": \"Machinery\",\n    \"name\": \"Power Transfer Bus\",\n    \"description\": \"High energy power transfer units used to deliver power where it is needed. These can be found at Haignere Orbital in the Wuthawchu system.\"\n  },\n  \"praseodymium\": {\n    \"id\": \"128673845\",\n    \"symbol\": \"Praseodymium\",\n    \"category\": \"Metals\",\n    \"name\": \"Praseodymium\",\n    \"description\": \"Praseodymium, Pr, atomic number 59. Melting point 1208K. This is a soft and malleable metal. It is a rare mineral used for a variety of purposes including: a component in enhanced magnets, an alloy component for metals and laser optics.\"\n  },\n  \"preciousgems\": {\n    \"id\": \"128672160\",\n    \"symbol\": \"PreciousGems\",\n    \"category\": \"Salvage\",\n    \"name\": \"Precious Gems\",\n    \"description\": \"These materials have inherent value. They are very useful in maintaining stability in otherwise volatile economies. Alongside the wealth factor, precious gems and metals play a significant role in the generation of extravagant status symbols.\"\n  },\n  \"progenitorcells\": {\n    \"id\": \"128049669\",\n    \"symbol\": \"ProgenitorCells\",\n    \"category\": \"Medicines\",\n    \"name\": \"Progenitor Cells\",\n    \"description\": \"Targeted engineered cells to restore damage in older human cells. These can greatly extend the life of humans that take them. Some cultures believe it is immoral, especially as they tend to be used by the richest people, and so they are illegal in some jurisdictions.\"\n  },\n  \"prohibitedresearchmaterials\": {\n    \"id\": \"128682052\",\n    \"symbol\": \"ProhibitedResearchMaterials\",\n    \"category\": \"Salvage\",\n    \"name\": \"Prohibited Research Materials\",\n    \"description\": \"Contains theoretical and experimental research, along with samples, the subject and contents of which are strictly prohibited by most authorities; their very existence is a crime, however their contents are highly valuable.\"\n  },\n  \"pyrophyllite\": {\n    \"id\": \"128672297\",\n    \"symbol\": \"Pyrophyllite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Pyrophyllite\",\n    \"description\": \"This phyllosilicate mineral is used in high pressure experiments. On some worlds it's also a material for intricate arts and crafts.\"\n  },\n  \"radiationbaffle\": {\n    \"id\": \"128673865\",\n    \"symbol\": \"RadiationBaffle\",\n    \"category\": \"Machinery\",\n    \"name\": \"Radiation Baffle\",\n    \"description\": \"Radiation baffles are used to restrict and direct radiation emissions. These can be found at Sopwith Arsenal in the Taevaisa system.\"\n  },\n  \"rajukrustoves\": {\n    \"id\": \"128667047\",\n    \"symbol\": \"RajukruStoves\",\n    \"market_id\": \"3227512320\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Rajukru Multi-Stoves\",\n    \"limit\": 17,\n    \"rare\": true,\n    \"description\": \"Multipurpose stoves that can be operated using almost any fuel. Used on many frontier worlds where other technology cannot be relied on or just does not work. Galactic heritage approved. The famed rustic designs are in use on camp fires throughout the galaxy.\"\n  },\n  \"rapabaosnakeskins\": {\n    \"id\": \"128667063\",\n    \"symbol\": \"RapaBaoSnakeSkins\",\n    \"market_id\": \"3222875648\",\n    \"category\": \"Textiles\",\n    \"name\": \"Rapa Bao Snake Skins\",\n    \"limit\": 11,\n    \"rare\": true,\n    \"description\": \"Rapa Bao Snake skins are farmed throughout the Galaxy for their size and strength. The snakes are free-range and many workers have lost their lives whilst tending to this vital crop.\"\n  },\n  \"reactivearmour\": {\n    \"id\": \"128049235\",\n    \"symbol\": \"ReactiveArmour\",\n    \"category\": \"Weapons\",\n    \"name\": \"Reactive Armour\",\n    \"description\": \"Capable of actively dissipating large amounts of kinetic, electrical and thermal energy, reactive armour greatly increases the chance of survival of the wearer from sustained weapons fire.\"\n  },\n  \"reinforcedmountingplate\": {\n    \"id\": \"128673867\",\n    \"symbol\": \"ReinforcedMountingPlate\",\n    \"category\": \"Machinery\",\n    \"name\": \"Reinforced Mounting Plate\",\n    \"description\": \"These custom made reinforced mounting plates are used to strengthen the supports for a mounted device. These can be found at Grassmann Station in the Findalibila system.\"\n  },\n  \"resonatingseparators\": {\n    \"id\": \"128049671\",\n    \"symbol\": \"ResonatingSeparators\",\n    \"category\": \"Technology\",\n    \"name\": \"Resonating Separators\",\n    \"description\": \"Self-calibrating tuned oscillators that resonate at a range of specific frequencies, used at refineries for bulk processing of ores.\"\n  },\n  \"rhodplumsite\": {\n    \"id\": \"128924325\",\n    \"symbol\": \"Rhodplumsite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Rhodplumsite\",\n    \"description\": \"Rhodplumsite is a rhodium-lead sulphide mineral distinguished by the fact that it exhibits different colours when viewed from different angles, appearing white, creamy pink or grayish blue.\"\n  },\n  \"robotics\": {\n    \"id\": \"128049227\",\n    \"symbol\": \"Robotics\",\n    \"category\": \"Technology\",\n    \"name\": \"Robotics\",\n    \"description\": \"Robotics are used to perform simple automated tasks or to act as avatars for remotely located humans in hazardous environments. They are also used for repetitive and highly accurate production line tasks.\"\n  },\n  \"rockforthfertiliser\": {\n    \"id\": \"128924333\",\n    \"symbol\": \"RockforthFertiliser\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Rockforth Fertiliser\",\n    \"description\": \"A synthetic material designed to provide growing plants with essential nutrients.\"\n  },\n  \"rusanioldsmokey\": {\n    \"id\": \"128667082\",\n    \"symbol\": \"RusaniOldSmokey\",\n    \"market_id\": \"3229255680\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Rusani Old Smokey\",\n    \"limit\": 10,\n    \"rare\": true,\n    \"description\": \"Guaranteed genuine non-synthetic tobacco. Fully certified as organic. The only harm done is to yourself.\"\n  },\n  \"rutile\": {\n    \"id\": \"128049163\",\n    \"symbol\": \"Rutile\",\n    \"category\": \"Minerals\",\n    \"name\": \"Rutile\",\n    \"description\": \"Rutile: Titanium Oxide, TiO2. Titanium Ore. A wine-red crystalline mineral used in creating ceramics in high refraction options, and of course refined to produce titanium.\"\n  },\n  \"s6_tissuesample_cells\": {\n    \"id\": \"128922786\",\n    \"symbol\": \"S6_TissueSample_Cells\",\n    \"category\": \"Salvage\",\n    \"name\": \"Pod Outer Tissue\",\n    \"description\": \"A sample of tissue from the outer layers of a space-based seed pod.\"\n  },\n  \"s6_tissuesample_coenosarc\": {\n    \"id\": \"128922787\",\n    \"symbol\": \"S6_TissueSample_Coenosarc\",\n    \"category\": \"Salvage\",\n    \"name\": \"Pod Shell Tissue\",\n    \"description\": \"A sample of tissue from the shell of a space-based seed pod.\"\n  },\n  \"s6_tissuesample_mesoglea\": {\n    \"id\": \"128922785\",\n    \"symbol\": \"S6_TissueSample_Mesoglea\",\n    \"category\": \"Salvage\",\n    \"name\": \"Pod Mesoglea\",\n    \"description\": \"A sample of jelly-like tissue from a space-based seed pod.\"\n  },\n  \"s9_tissuesample_shell\": {\n    \"id\": \"128922781\",\n    \"symbol\": \"S9_TissueSample_Shell\",\n    \"category\": \"Salvage\",\n    \"name\": \"Pod Tissue\",\n    \"description\": \"A sample of tissue from a space-based seed pod.\"\n  },\n  \"s_tissuesample_cells\": {\n    \"id\": \"128922520\",\n    \"symbol\": \"S_TissueSample_Cells\",\n    \"category\": \"Salvage\",\n    \"name\": \"Pod Core Tissue\",\n    \"description\": \"A sample of tissue from the core of a space-based seed pod.\"\n  },\n  \"s_tissuesample_core\": {\n    \"id\": \"128922522\",\n    \"symbol\": \"S_TissueSample_Core\",\n    \"category\": \"Salvage\",\n    \"name\": \"Pod Surface Tissue\",\n    \"description\": \"A sample of tissue from the surface of a space-based seed pod.\"\n  },\n  \"s_tissuesample_surface\": {\n    \"id\": \"128922521\",\n    \"symbol\": \"S_TissueSample_Surface\",\n    \"category\": \"Salvage\",\n    \"name\": \"Pod Dead Tissue\",\n    \"description\": \"A sample of dead tissue from a space-based seed pod.\"\n  },\n  \"samarium\": {\n    \"id\": \"128673847\",\n    \"symbol\": \"Samarium\",\n    \"category\": \"Metals\",\n    \"name\": \"Samarium\",\n    \"description\": \"Samarium, Sm, atomic number 62. Melting point 1345K. This element has remarkable magnetisation properties, far exceeding that of iron. It is also commonly used as a catalyst and chemical reagent.\"\n  },\n  \"sanumameat\": {\n    \"id\": \"128667076\",\n    \"symbol\": \"SanumaMEAT\",\n    \"market_id\": \"3230331136\",\n    \"category\": \"Foods\",\n    \"name\": \"Sanuma Decorative Meat\",\n    \"limit\": 7,\n    \"rare\": true,\n    \"description\": \"One of the most inventive of synthetic meat specialists, growing the meat into fabulous sculptures of flesh \\\"grown on the bone\\\".\"\n  },\n  \"sap8corecontainer\": {\n    \"id\": \"128671443\",\n    \"symbol\": \"SAP8CoreContainer\",\n    \"category\": \"Salvage\",\n    \"name\": \"SAP 8 Core Container\",\n    \"description\": \"This container holds a crystalline shard of unknown origin. Scans indicate that the foot long shard is suspended inside a modified, self-sustaining, fusion-core containment field. Any breach of the field will result in the containers destruction.\"\n  },\n  \"saxonwine\": {\n    \"id\": \"128667671\",\n    \"symbol\": \"SaxonWine\",\n    \"market_id\": \"3227986432\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Saxon Wine\",\n    \"limit\": 13,\n    \"rare\": true,\n    \"description\": \"A near perfect replication of the famed 2093 vintage wines produced on ancient Earth. That year's wine was universally declared the best ever produced, and has yet to be topped. Scientists on Hill Orbital station were able to replicate the famous wine, and now guard the secrets of their formular with great care.\"\n  },\n  \"scientificresearch\": {\n    \"id\": \"128672132\",\n    \"symbol\": \"ScientificResearch\",\n    \"category\": \"Salvage\",\n    \"name\": \"Scientific Research\",\n    \"description\": \"A collection of data and equipment, the results of a series of scientific experiments and observations.\"\n  },\n  \"scientificsamples\": {\n    \"id\": \"128672133\",\n    \"symbol\": \"ScientificSamples\",\n    \"category\": \"Salvage\",\n    \"name\": \"Scientific Samples\",\n    \"description\": \"Most scientific sample analysis is done on site, although certain types of projects require further or separate analysis. These finds can sometimes lead to breakthroughs and are also highly sought after by private collectors.\"\n  },\n  \"scrap\": {\n    \"id\": \"128049248\",\n    \"symbol\": \"Scrap\",\n    \"category\": \"Waste\",\n    \"name\": \"Scrap\",\n    \"description\": \"Assorted unwanted refuse with a high metal content.\"\n  },\n  \"semiconductors\": {\n    \"id\": \"128049199\",\n    \"symbol\": \"Semiconductors\",\n    \"category\": \"Industrial Materials\",\n    \"name\": \"Semiconductors\",\n    \"description\": \"Extremely pure semiconducting crystalline materials are used extensively in the electronics industry.\"\n  },\n  \"serendibite\": {\n    \"id\": \"128924326\",\n    \"symbol\": \"Serendibite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Serendibite\",\n    \"description\": \"Serendibite is a pale yellow, blue-green or greyish blue silicate mineral that takes its name from Serendib, the old Arabic name for Sri Lanka.\"\n  },\n  \"shanscharisorchid\": {\n    \"id\": \"128732551\",\n    \"symbol\": \"ShansCharisOrchid\",\n    \"market_id\": \"128107768\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Shan's Charis Orchid\",\n    \"limit\": 7,\n    \"rare\": true,\n    \"description\": \"Named after its discoverer's late baby daughter, this rare and delicate member of the Orchidaceae family is famed for its short but spectacular flowering and for its exquisite aroma which lingers long in the memory after the flower itself has faded.\"\n  },\n  \"silver\": {\n    \"id\": \"128049155\",\n    \"symbol\": \"Silver\",\n    \"category\": \"Metals\",\n    \"name\": \"Silver\",\n    \"description\": \"Silver, Ag, atomic number 47. Melting point 1234K. A precious metal valued in jewelry. It also has many useful industrial properties being the best electrical and thermal conductor of any metal, and also the most reflective, and so is widely used in high tech applications, either in its pure form or alloyed with other metals.\"\n  },\n  \"skimercomponents\": {\n    \"id\": \"128672313\",\n    \"symbol\": \"SkimerComponents\",\n    \"category\": \"Machinery\",\n    \"name\": \"Skimmer Components\",\n    \"description\": \"These maintenance and repair packs are used to keep skimmers operational.\"\n  },\n  \"slaves\": {\n    \"id\": \"128049243\",\n    \"symbol\": \"Slaves\",\n    \"category\": \"Slavery\",\n    \"name\": \"Slaves\",\n    \"description\": \"Bonded men and women. Almost universally illegal and shunned by most civilized nations. Great efforts have been made to stamp out this trade in misery, however a few markets remain open.\"\n  },\n  \"smallexplorationdatacash\": {\n    \"id\": \"128672137\",\n    \"symbol\": \"SmallExplorationDataCash\",\n    \"category\": \"Salvage\",\n    \"name\": \"Small Survey Data Cache\",\n    \"description\": \"Finding the data cache from a survey mission is a rare, but often lucrative, find for explorers. These caches are constantly in demand from academic institutions and commercial interests.\"\n  },\n  \"soontillrelics\": {\n    \"id\": \"128668018\",\n    \"symbol\": \"SoontillRelics\",\n    \"market_id\": \"3225348096\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Soontill Relics\",\n    \"limit\": 5,\n    \"rare\": true,\n    \"description\": \"A slab of unidentified material covered in pictographs of an unknown origin. This relic is part of a cache of similar artefacts that were uncovered by explorers researching lost alien civilizations in the Soontil system. Sold by Garry's Reclamations, Cheranovsky City, Ngurii.\"\n  },\n  \"sothiscrystallinegold\": {\n    \"id\": \"128672122\",\n    \"symbol\": \"SothisCrystallineGold\",\n    \"market_id\": \"128668557\",\n    \"category\": \"Metals\",\n    \"name\": \"Sothis Crystalline Gold\",\n    \"limit\": 20,\n    \"rare\": true,\n    \"description\": \"When gold is exposed to the rare gas coming from thermal vents on the sea beds of the twin Earth like planets in Sothis A5 and Sothis A6, it forms into a previously unseen crystalline structure unlike other crystalline gold. Scientists and engineers are only just beginning to discover the technological applications for this rare form of gold.\"\n  },\n  \"spacepioneerrelics\": {\n    \"id\": \"128682054\",\n    \"symbol\": \"SpacePioneerRelics\",\n    \"category\": \"Salvage\",\n    \"name\": \"Space Pioneer Relics\",\n    \"description\": \"Items from mankind's first attempts at space exploration and research.\"\n  },\n  \"steel\": {\n    \"id\": \"129031238\",\n    \"symbol\": \"Steel\",\n    \"category\": \"Metals\",\n    \"name\": \"Steel\"\n  },\n  \"structuralregulators\": {\n    \"id\": \"128672311\",\n    \"symbol\": \"StructuralRegulators\",\n    \"category\": \"Technology\",\n    \"name\": \"Structural Regulators\",\n    \"description\": \"These monitor structural stability of buildings under a broad range of gravities. They will generate alerts if dangerous stresses or damage is detected.\"\n  },\n  \"superconductors\": {\n    \"id\": \"128049200\",\n    \"symbol\": \"Superconductors\",\n    \"category\": \"Industrial Materials\",\n    \"name\": \"Superconductors\",\n    \"description\": \"Complex highly pure alloys have zero resistance to electricity below a certain temperature. Such superconducting alloys are used in High Tech and Industrial economies to create a wide range of devices.\"\n  },\n  \"surfacestabilisers\": {\n    \"id\": \"128672305\",\n    \"symbol\": \"SurfaceStabilisers\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Surface Stabilisers\",\n    \"description\": \"Unique polymer that is injected into the surrounding rock providing a stable environment for construction.\"\n  },\n  \"survivalequipment\": {\n    \"id\": \"128682048\",\n    \"symbol\": \"SurvivalEquipment\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Survival Equipment\",\n    \"description\": \"A selection of absolute essentials needed to survive in extreme conditions.\"\n  },\n  \"syntheticfabrics\": {\n    \"id\": \"128049193\",\n    \"symbol\": \"SyntheticFabrics\",\n    \"category\": \"Textiles\",\n    \"name\": \"Synthetic Fabrics\",\n    \"description\": \"Textile material created from artificial fibres. Used by industry for clothing and lightweight construction materials.\"\n  },\n  \"syntheticmeat\": {\n    \"id\": \"128049185\",\n    \"symbol\": \"SyntheticMeat\",\n    \"category\": \"Foods\",\n    \"name\": \"Synthetic Meat\",\n    \"description\": \"Meat that is synthesised in an industrial scale. The process relies on DNA from species from old Earth. The DNA is adjusted so muscle tissue is grown in huge quantities without the rest of the animal.\"\n  },\n  \"syntheticreagents\": {\n    \"id\": \"128672303\",\n    \"symbol\": \"SyntheticReagents\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Synthetic Reagents\",\n    \"description\": \"A selection of inorganic molecules used in the creation and manipulation of a wide range of organic compounds\"\n  },\n  \"taaffeite\": {\n    \"id\": \"128672775\",\n    \"symbol\": \"Taaffeite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Taaffeite\",\n    \"description\": \"Taaffeite; chemical formula BeMgAl4O8, is a rare gemstone with a purple hue, used in jewellery and other crafts.\"\n  },\n  \"tacticaldata\": {\n    \"id\": \"128672128\",\n    \"symbol\": \"TacticalData\",\n    \"category\": \"Salvage\",\n    \"name\": \"Tactical Data\",\n    \"description\": \"Encrypted documents detailing logistics, armament control points and infrastructure. Possession of such documents is illegal, due to their sensitive nature. There is a limited black market demand for these items as their military grade encryption makes them almost impossible to crack.\"\n  },\n  \"tanmarktranquiltea\": {\n    \"id\": \"128667079\",\n    \"symbol\": \"TanmarkTranquilTea\",\n    \"market_id\": \"128057866\",\n    \"category\": \"Foods\",\n    \"name\": \"Tanmark Tranquil Tea\",\n    \"limit\": 12,\n    \"rare\": true,\n    \"description\": \"An infusion of native herbs renowned for its sedative effects.\"\n  },\n  \"tantalum\": {\n    \"id\": \"128049171\",\n    \"symbol\": \"Tantalum\",\n    \"category\": \"Metals\",\n    \"name\": \"Tantalum\",\n    \"description\": \"Tantalum, Ta, atomic number 73. Melting point 3290K. Used to make capacitors and high melting point alloys used in reactors and by the military for specialist alloys used in weapons for armour penetration.\"\n  },\n  \"tarachtorspice\": {\n    \"id\": \"128667030\",\n    \"symbol\": \"TarachTorSpice\",\n    \"market_id\": \"128041984\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Tarach Spice\",\n    \"limit\": 12,\n    \"rare\": true,\n    \"description\": \"Made from crushed beetles, this mild euphoric drug has a number of side effects including turning the whites of addicts' eyes a subtle shade of green. Widely illegal, but favoured in many anarchic systems where the green eyes are seen as a badge of an extreme lifestyle.\"\n  },\n  \"taurichimes\": {\n    \"id\": \"128667706\",\n    \"symbol\": \"TauriChimes\",\n    \"market_id\": \"128134648\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Tauri Chimes\",\n    \"limit\": 26,\n    \"rare\": true,\n    \"description\": \"These hand crafted wind chimes are specially tuned to stimulate a variety of spiritual and physical responses. They are known for helping people find inner peace, or direction, and are guaranteed to keep your chakras aligned.\"\n  },\n  \"tea\": {\n    \"id\": \"128049188\",\n    \"symbol\": \"Tea\",\n    \"category\": \"Foods\",\n    \"name\": \"Tea\",\n    \"description\": \"Used ceremonially as well as for its stimulant effects. Tea remains a beverage with historic roots and there is great rivalry between those that drink tea and those that drink coffee.\"\n  },\n  \"telemetrysuite\": {\n    \"id\": \"128673872\",\n    \"symbol\": \"TelemetrySuite\",\n    \"category\": \"Technology\",\n    \"name\": \"Telemetry Suite\",\n    \"description\": \"Telemetry suites provide access to information flows relating to specific components within a system.\"\n  },\n  \"terrainenrichmentsystems\": {\n    \"id\": \"128049232\",\n    \"symbol\": \"TerrainEnrichmentSystems\",\n    \"category\": \"Technology\",\n    \"name\": \"Land Enrichment Systems\",\n    \"description\": \"A soup of carefully designed archaebacteria, lichens, and micro-fauna and their dispersal equipment. Used in terraforming or enriching agricultural land.\"\n  },\n  \"terramaterbloodbores\": {\n    \"id\": \"128667069\",\n    \"symbol\": \"TerraMaterBloodBores\",\n    \"market_id\": \"128051466\",\n    \"category\": \"Medicines\",\n    \"name\": \"Terra Mater Blood Bores\",\n    \"limit\": 5,\n    \"rare\": true,\n    \"description\": \"A potent physical stimulant produced using extracts of a native Terra Mater carnivorous plant. When added to the user's circulatory system, it allows a human to exert themselves far beyond their normal capabilities. The side effects are often permanent with increased likelihood of haemorrhaging and weight loss.\"\n  },\n  \"thallium\": {\n    \"id\": \"128672299\",\n    \"symbol\": \"Thallium\",\n    \"category\": \"Metals\",\n    \"name\": \"Thallium\",\n    \"description\": \"Thallium, Tl, atomic number 81. Melting point 577K. is a post-transition metal. It has a number of technological uses including medical imaging, infra-red optics and high temperature super conductivity.\"\n  },\n  \"thargoidbonefragments\": {\n    \"id\": \"129030461\",\n    \"symbol\": \"ThargoidBoneFragments\",\n    \"category\": \"Salvage\",\n    \"name\": \"Bone Fragments\"\n  },\n  \"thargoidcystspecimen\": {\n    \"id\": \"129030460\",\n    \"symbol\": \"ThargoidCystSpecimen\",\n    \"category\": \"Salvage\",\n    \"name\": \"Cyst Specimen\"\n  },\n  \"thargoidgeneratortissuesample\": {\n    \"id\": \"129019259\",\n    \"symbol\": \"ThargoidGeneratorTissueSample\",\n    \"category\": \"Salvage\",\n    \"name\": \"Caustic Tissue Sample\"\n  },\n  \"thargoidheart\": {\n    \"id\": \"128793127\",\n    \"symbol\": \"ThargoidHeart\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Heart\",\n    \"description\": \"A processing node recovered from a Thargoid ship. These objects are integral to the flight and operational systems of Thargoid vessels.\"\n  },\n  \"thargoidorgansample\": {\n    \"id\": \"129030462\",\n    \"symbol\": \"ThargoidOrganSample\",\n    \"category\": \"Salvage\",\n    \"name\": \"Organ Sample\"\n  },\n  \"thargoidpod\": {\n    \"id\": \"129022406\",\n    \"symbol\": \"ThargoidPod\",\n    \"category\": \"Salvage\",\n    \"name\": \"Xenobiological Prison Pod\"\n  },\n  \"thargoidscouttissuesample\": {\n    \"id\": \"128824468\",\n    \"symbol\": \"ThargoidScoutTissueSample\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Scout Tissue Sample\",\n    \"description\": \"A sample of bio-mechanical tissue taken from a Thargoid Scout-class vessel. Tissue samples appear to be much sought after for research purposes, despite the fact that they appear to be highly corrosive.\"\n  },\n  \"thargoidtissuesampletype1\": {\n    \"id\": \"128793128\",\n    \"symbol\": \"ThargoidTissueSampleType1\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Cyclops Tissue Sample\",\n    \"description\": \"A sample of bio-mechanical tissue taken from a Thargoid Interceptor-class vessel. This sample has been taken from a variant known as a Cyclops and contains both biological and mechanical elements. Tissue samples appear to be highly sought after for research purposes despite the fact that they appear to be highly corrosive.\"\n  },\n  \"thargoidtissuesampletype10a\": {\n    \"id\": \"129022402\",\n    \"symbol\": \"ThargoidTissueSampleType10a\",\n    \"category\": \"Salvage\",\n    \"name\": \"Titan Maw Deep Tissue Sample\"\n  },\n  \"thargoidtissuesampletype10b\": {\n    \"id\": \"129022403\",\n    \"symbol\": \"ThargoidTissueSampleType10b\",\n    \"category\": \"Salvage\",\n    \"name\": \"Titan Maw Tissue Sample\"\n  },\n  \"thargoidtissuesampletype10c\": {\n    \"id\": \"129022404\",\n    \"symbol\": \"ThargoidTissueSampleType10c\",\n    \"category\": \"Salvage\",\n    \"name\": \"Titan Maw Partial Tissue Sample\"\n  },\n  \"thargoidtissuesampletype2\": {\n    \"id\": \"128793129\",\n    \"symbol\": \"ThargoidTissueSampleType2\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Basilisk Tissue Sample\",\n    \"description\": \"A sample of bio-mechanical tissue taken from a Thargoid Interceptor-class vessel. This sample has come from a variant known as a Basilisk and appears older and more developed than samples taken from the Cyclops variant with denser biological matter and more intricate technological elements. Tissue samples appear to be highly sought after for research purposes despite the fact that they appear to be highly corrosive.\"\n  },\n  \"thargoidtissuesampletype3\": {\n    \"id\": \"128793130\",\n    \"symbol\": \"ThargoidTissueSampleType3\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Medusa Tissue Sample\",\n    \"description\": \"A sample of bio-mechanical tissue taken from a Thargoid Interceptor-class vessel. This sample has come from a variant known as a Medusa and appears older and more developed than samples taken from both the Cyclops and Basilisk variants with denser biological matter and more intricate technological elements. Tissue samples appear to be highly sought after for research purposes despite the fact that they appear to be highly corrosive.\"\n  },\n  \"thargoidtissuesampletype4\": {\n    \"id\": \"128902652\",\n    \"symbol\": \"ThargoidTissueSampleType4\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Hydra Tissue Sample\",\n    \"description\": \"A sample of bio-mechanical tissue from a Thargoid Interceptor-class vessel. This sample is from the Hydra variant, and is therefore more developed than samples from other kinds of Interceptor, with denser biological matter and more intricate technological elements. Such samples are highly sought after by scientists despite being highly corrosive.\"\n  },\n  \"thargoidtissuesampletype5\": {\n    \"id\": \"129019258\",\n    \"symbol\": \"ThargoidTissueSampleType5\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Orthrus Tissue Sample\"\n  },\n  \"thargoidtissuesampletype6\": {\n    \"id\": \"129022395\",\n    \"symbol\": \"ThargoidTissueSampleType6\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Glaive Tissue Sample\"\n  },\n  \"thargoidtissuesampletype7\": {\n    \"id\": \"129022396\",\n    \"symbol\": \"ThargoidTissueSampleType7\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Scythe Tissue Sample\"\n  },\n  \"thargoidtissuesampletype9a\": {\n    \"id\": \"129022398\",\n    \"symbol\": \"ThargoidTissueSampleType9a\",\n    \"category\": \"Salvage\",\n    \"name\": \"Titan Deep Tissue Sample\"\n  },\n  \"thargoidtissuesampletype9b\": {\n    \"id\": \"129022399\",\n    \"symbol\": \"ThargoidTissueSampleType9b\",\n    \"category\": \"Salvage\",\n    \"name\": \"Titan Tissue Sample\"\n  },\n  \"thargoidtissuesampletype9c\": {\n    \"id\": \"129022400\",\n    \"symbol\": \"ThargoidTissueSampleType9c\",\n    \"category\": \"Salvage\",\n    \"name\": \"Titan Partial Tissue Sample\"\n  },\n  \"thargoidtitandrivecomponent\": {\n    \"id\": \"129030459\",\n    \"symbol\": \"ThargoidTitanDriveComponent\",\n    \"category\": \"Salvage\",\n    \"name\": \"Titan Drive Component\"\n  },\n  \"thehuttonmug\": {\n    \"id\": \"128672121\",\n    \"symbol\": \"TheHuttonMug\",\n    \"market_id\": \"3228728832\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"The Hutton Mug\",\n    \"limit\": 30,\n    \"rare\": true,\n    \"description\": \"Delivered over vast distances by those in search of a profit, the Hutton Mug, is only sold to Commanders who make the painfully long journey to Hutton Orbital. Made from the salvaged frame shift drive plates of ships that ran out of fuel before reaching the station, this is purely a vanity item commemorating the epic journey. Its value lies in its rarity and latent frame shift energies keeping your drink that little bit warmer for the journey.\"\n  },\n  \"thermalcoolingunits\": {\n    \"id\": \"128672308\",\n    \"symbol\": \"ThermalCoolingUnits\",\n    \"category\": \"Machinery\",\n    \"name\": \"Thermal Cooling Units\",\n    \"description\": \"These draw excess heat from surrounding material to enable habitation in even the most extreme environments.\"\n  },\n  \"thorium\": {\n    \"id\": \"128672301\",\n    \"symbol\": \"Thorium\",\n    \"category\": \"Metals\",\n    \"name\": \"Thorium\",\n    \"description\": \"Thorium, Th, atomic number 90. Melting point 2023K. A radioactive actinide metal. It was once used in ancient fission reactions. It is still used by some medical technology and as a component in advanced ceramics.\"\n  },\n  \"thrutiscream\": {\n    \"id\": \"128667066\",\n    \"symbol\": \"ThrutisCream\",\n    \"market_id\": \"3226522368\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Thrutis Cream\",\n    \"limit\": 11,\n    \"rare\": true,\n    \"description\": \"A curious mix of fermented Thrutis Giant Rat milk and raw turtle egg yolks produces a potent mix similar to Ancient Advocaat. Each bottle is provided with a ceremonial tasting spoon, to ease the pouring of this viscous, but delicious drink.\"\n  },\n  \"tiegfriessynthsilk\": {\n    \"id\": \"128667695\",\n    \"symbol\": \"TiegfriesSynthSilk\",\n    \"market_id\": \"3227726848\",\n    \"category\": \"Textiles\",\n    \"name\": \"Tiegfries Synth Silk\",\n    \"limit\": 30,\n    \"rare\": true,\n    \"description\": \"Spun from atoms, using a number of interconnected particle colliders, this silk is almost indistinguishable from the real thing.\"\n  },\n  \"timecapsule\": {\n    \"id\": \"128672163\",\n    \"symbol\": \"TimeCapsule\",\n    \"category\": \"Salvage\",\n    \"name\": \"Time Capsule\",\n    \"description\": \"These canisters are of historical interest and highly collectable although sometimes the contents have turned to dust with age.\"\n  },\n  \"tiolcewaste2pasteunits\": {\n    \"id\": \"128667048\",\n    \"symbol\": \"TiolceWaste2PasteUnits\",\n    \"market_id\": \"3224141312\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Tiolce Waste2Paste Units\",\n    \"limit\": 13,\n    \"rare\": true,\n    \"description\": \"The original and best, turning all your waste into a nutritious and wholesome paste.\"\n  },\n  \"titanium\": {\n    \"id\": \"128049174\",\n    \"symbol\": \"Titanium\",\n    \"category\": \"Metals\",\n    \"name\": \"Titanium\",\n    \"description\": \"Titanium, Ti, atomic 22. Melting point 1941K. A lustrous, silver-grey, low density, high strength metal that is used in a great many industrial applications, including high spec spacecraft hulls.\"\n  },\n  \"tobacco\": {\n    \"id\": \"128049213\",\n    \"symbol\": \"Tobacco\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Tobacco\",\n    \"description\": \"A naturally occurring plant whose leaves, when dried and shredded, are a source of nicotine, a mild and expensive organic narcotic. Usually chewed or smoked, and used in ancient rituals. Illegal in many jurisdictions.\"\n  },\n  \"toxandjivirocide\": {\n    \"id\": \"128667074\",\n    \"symbol\": \"ToxandjiVirocide\",\n    \"market_id\": \"3230258688\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Toxandji Virocide\",\n    \"limit\": 14,\n    \"rare\": true,\n    \"description\": \"Engineered to order, Toxandji Virocide can be created to target whatever pest or parasite is effecting your crops. This highly intelligent virus can be programmed to self terminate at the end of a season, or to hibernate in preparation for the next cycle.\"\n  },\n  \"toxicwaste\": {\n    \"id\": \"128049245\",\n    \"symbol\": \"ToxicWaste\",\n    \"category\": \"Waste\",\n    \"name\": \"Toxic Waste\",\n    \"description\": \"Toxic waste is illegal in most parts of the galaxy. Hazardous toxic waste that is unsafe for human contact. Highly volatile, likely to leak and may explode when damaged.\"\n  },\n  \"transgeniconionhead\": {\n    \"id\": \"128667760\",\n    \"symbol\": \"TransgenicOnionHead\",\n    \"market_id\": \"128057866\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Lucan Onionhead\",\n    \"limit\": 12,\n    \"rare\": true,\n    \"description\": \"A genetically altered strain of the Onionhead flower, chemically changed to circumvent federal laws. This strain has been designed to survive in harsher climates, but its seeds contain the same well-known psychedelic narcotic. Federal lawmakers are working fast to legislate against this new breed.\"\n  },\n  \"trinketsoffortune\": {\n    \"id\": \"128671444\",\n    \"symbol\": \"TrinketsOfFortune\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Trinkets of Hidden Fortune\",\n    \"description\": \"This container appears to hold an assorted collection of low-value trinkets, knick-knacks and statuettes. Such trinkets are generally used by superstitious pilots to try and win favour with the lady Fortuna. However, these particular knick-knacks have a much more valuable prize hidden within.\"\n  },\n  \"tritium\": {\n    \"id\": \"128961249\",\n    \"symbol\": \"Tritium\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Tritium\",\n    \"description\": \"Tritium is a beta-emitting radioactive isotope of hydrogen. It is an important ingredient for boosting nuclear fusion reactions.\"\n  },\n  \"unknownartifact\": {\n    \"id\": \"128668547\",\n    \"symbol\": \"UnknownArtifact\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Sensor\",\n    \"description\": \"These strange objects are of Thargoid origin. They have the ability to repair themselves by extracting non-organic material from their immediate environment, and this self-repair mechanism can severely damage starships and other machinery. They can also scan nearby vessels and celestial bodies, and transmit information about the scanned object in an encrypted form.\"\n  },\n  \"unknownartifact2\": {\n    \"id\": \"128673876\",\n    \"symbol\": \"UnknownArtifact2\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Probe\",\n    \"description\": \"These Thargoid objects are capable of emitting an electro-magnetic pulse that can temporarily incapacitate a starship.\"\n  },\n  \"unknownartifact3\": {\n    \"id\": \"128740752\",\n    \"symbol\": \"UnknownArtifact3\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Link\",\n    \"description\": \"A piece of Thargoid technology typically found at Thargoid surface sites.\"\n  },\n  \"unknownbiologicalmatter\": {\n    \"id\": \"128737288\",\n    \"symbol\": \"UnknownBiologicalMatter\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Biological Matter\",\n    \"description\": \"A bio-mechanical canister containing Thargoid biological matter. This material plays a part in the construction of Thargoid structures, technology and ships.\"\n  },\n  \"unknownmineral\": {\n    \"id\": \"129022408\",\n    \"symbol\": \"UnknownMineral\",\n    \"category\": \"Salvage\",\n    \"name\": \"Impure Spire Mineral\"\n  },\n  \"unknownrefinedmineral\": {\n    \"id\": \"129022409\",\n    \"symbol\": \"UnknownRefinedMineral\",\n    \"category\": \"Salvage\",\n    \"name\": \"Semi-Refined Spire Mineral\"\n  },\n  \"unknownresin\": {\n    \"id\": \"128737287\",\n    \"symbol\": \"UnknownResin\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Resin\",\n    \"description\": \"A bio-mechanical canister containing Thargoid resin. This substance can be used to lubricate the internal systems of Thargoid technology when wet, and to protect and reinforce structures when dry. When converted into a gas it is highly corrosive.\"\n  },\n  \"unknownsack\": {\n    \"id\": \"129022405\",\n    \"symbol\": \"UnknownSack\",\n    \"category\": \"Salvage\",\n    \"name\": \"Protective Membrane Scrap\"\n  },\n  \"unknowntechnologysamples\": {\n    \"id\": \"128737289\",\n    \"symbol\": \"UnknownTechnologySamples\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Technology Samples\",\n    \"description\": \"A bio-mechanical canister containing Thargoid technological samples. This material plays a part in the construction of Thargoid structures and ships.\"\n  },\n  \"unocuppiedescapepod\": {\n    \"id\": \"129022087\",\n    \"symbol\": \"UnocuppiedEscapePod\",\n    \"category\": \"Salvage\",\n    \"name\": \"Unoccupied Escape Pod\"\n  },\n  \"unstabledatacore\": {\n    \"id\": \"128672810\",\n    \"symbol\": \"UnstableDataCore\",\n    \"category\": \"Salvage\",\n    \"name\": \"Unstable Data Core\",\n    \"description\": \"These ubiquitous devices provide extensive data storage, but are extremely volatile when damaged. They must be returned by the end date for information retrieval or their contents become unusable.\"\n  },\n  \"uraninite\": {\n    \"id\": \"128049160\",\n    \"symbol\": \"Uraninite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Uraninite\",\n    \"description\": \"Uraninite: chemical formula UO2. A radioactive ore, radioactive principally because of the small amount of the isotope U235 present. Refined into Uranium at some refineries. Uranium was used for power early in human history, using refined U235 in fission reactors, but now is mainly used for biotech applications. Illegal in some jurisdictions.\"\n  },\n  \"uranium\": {\n    \"id\": \"128049172\",\n    \"symbol\": \"Uranium\",\n    \"category\": \"Metals\",\n    \"name\": \"Uranium\",\n    \"description\": \"Uranium, U, atomic number 92. Melting point 1405K. Uranium is a silvery grey metal, usually found as a mix of isotopes, mostly U238, and typically less than 1% of the radioactive U235. As a whole it is only weakly radioactive. it is chemically toxic but useful element in industry, mainly because of its density. In early human history it was used as a power source in fission reactors. Standard canisters offer sufficient protection from the low level of radiation.\"\n  },\n  \"usscargoancientartefact\": {\n    \"id\": \"128666756\",\n    \"symbol\": \"USSCargoAncientArtefact\",\n    \"category\": \"Salvage\",\n    \"name\": \"Ancient Artefact\",\n    \"description\": \"Highly prized by collectors, the movement of recovered artefacts is strictly controlled by a number of authorities around the galaxy. Fortunately a lucrative black market offers savvy explorers with means to find reliable buyers for any ancient treasures.\"\n  },\n  \"usscargoblackbox\": {\n    \"id\": \"128666752\",\n    \"symbol\": \"USSCargoBlackBox\",\n    \"category\": \"Salvage\",\n    \"name\": \"Black Box\",\n    \"description\": \"The flight computer from a destroyed ship. Recovered flight computers can offer details on the movements and intentions of ships before meeting their demise. Taking a black box from the scene of an accident is frowned on by authorities, but can offer lucrative profits on the black market.\"\n  },\n  \"usscargoexperimentalchemicals\": {\n    \"id\": \"128666758\",\n    \"symbol\": \"USSCargoExperimentalChemicals\",\n    \"category\": \"Salvage\",\n    \"name\": \"Experimental Chemicals\",\n    \"description\": \"Often dangerous and corrosive in nature, experimental chemicals are often created for research and scientific purposes. In the wrong hands they can be turned into dangerous weapons, so trade is strictly controlled. A thriving black market trade has proved difficult to control for authorities.\"\n  },\n  \"usscargomilitaryplans\": {\n    \"id\": \"128666755\",\n    \"symbol\": \"USSCargoMilitaryPlans\",\n    \"category\": \"Salvage\",\n    \"name\": \"Military Plans\",\n    \"description\": \"Highly confidential documents detailing military movements and military strategy. Possession of such documents is highly illegal, due to their sensitive nature. For the same reason they fetch a large sum to the right seller on the black market.\"\n  },\n  \"usscargoprototypetech\": {\n    \"id\": \"128666760\",\n    \"symbol\": \"USSCargoPrototypeTech\",\n    \"category\": \"Salvage\",\n    \"name\": \"Prototype Tech\",\n    \"description\": \"The latest developments in experimental technology are jealously guarded by the galaxy's various corporations, and unsanctioned possession of prototype tech is severely punished. However, pilots have discovered there is a prospering black market for stolen tech.\"\n  },\n  \"usscargorareartwork\": {\n    \"id\": \"128666757\",\n    \"symbol\": \"USSCargoRareArtwork\",\n    \"category\": \"Salvage\",\n    \"name\": \"Rare Artwork\",\n    \"description\": \"Prized and treasured works of art. The galaxy is rife with reproductions and forgeries, and trade in the genuine articles is highly controlled, with pieces transported between owners in secure convoys. Occasionally pieces find their way onto the black market, selling for under-the-counter prices.\"\n  },\n  \"usscargorebeltransmissions\": {\n    \"id\": \"128666759\",\n    \"symbol\": \"USSCargoRebelTransmissions\",\n    \"category\": \"Salvage\",\n    \"name\": \"Rebel Transmissions\",\n    \"description\": \"Transcripts of communications between dissident groups. These documents are highly valued by a number of factions for the intelligence they contain. It is considered highly suspicious to be carrying them, but black market trade in data will always flow.\"\n  },\n  \"usscargotechnicalblueprints\": {\n    \"id\": \"128666761\",\n    \"symbol\": \"USSCargoTechnicalBlueprints\",\n    \"category\": \"Salvage\",\n    \"name\": \"Technical Blueprints\",\n    \"description\": \"Blueprints of a patented new machinery and systems that are highly prized on the black market. Copyright theft is frowned upon by the authorities and those carrying illegally acquired blueprints can face extreme application of the law.\"\n  },\n  \"usscargotradedata\": {\n    \"id\": \"128666754\",\n    \"symbol\": \"USSCargoTradeData\",\n    \"category\": \"Salvage\",\n    \"name\": \"Trade Data\",\n    \"description\": \"The trade manifest data for a ship that met its end nearby. The information contained within can be extremely useful to unscrupulous individuals and fetches a good price on the black market. However, illegal salvage is punishable by law.\"\n  },\n  \"uszaiantreegrub\": {\n    \"id\": \"128667712\",\n    \"symbol\": \"UszaianTreeGrub\",\n    \"market_id\": \"128164856\",\n    \"category\": \"Foods\",\n    \"name\": \"Uszaian Tree Grub\",\n    \"limit\": 14,\n    \"rare\": true,\n    \"description\": \"This grub was introduced to the system from Lave, in an attempt to create a wildlife reserve for endangered species. Unfortunately the grubs mutated and evolved in their new environment, and the project failed. The evolved grubs were found to have a delicious flavor and surprising texture, and have since become a delicacy.\"\n  },\n  \"utgaroarmillenialeggs\": {\n    \"id\": \"128667021\",\n    \"symbol\": \"UtgaroarMillenialEggs\",\n    \"market_id\": \"128037120\",\n    \"category\": \"Foods\",\n    \"name\": \"Utgaroar Millennial Eggs\",\n    \"limit\": 15,\n    \"rare\": true,\n    \"description\": \"These eggs have been buried deep in the highly alkaline Utgaroarian soil around the many active geysers, where they are slowly cooked by the natural heat of the planet and take on a distinctive purple color and their prized bittersweet taste.\"\n  },\n  \"uzumokulowgwings\": {\n    \"id\": \"128667696\",\n    \"symbol\": \"UzumokuLowGWings\",\n    \"market_id\": \"3226474496\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Uzumoku Low-G Wings\",\n    \"limit\": 8,\n    \"rare\": true,\n    \"description\": \"Have you ever wanted to fly? Uzumoku Low-G Wings provide you with enough lift and thrust to soar like a bird, and are practical and stylish from their discreet shoulder mounted unit! Sadly they can only function in suitable low G environments.\"\n  },\n  \"vanayequirhinofur\": {\n    \"id\": \"128667064\",\n    \"symbol\": \"VanayequiRhinoFur\",\n    \"market_id\": \"3227289856\",\n    \"category\": \"Textiles\",\n    \"name\": \"Vanayequi Ceratomorpha Fur\",\n    \"limit\": 10,\n    \"rare\": true,\n    \"description\": \"Genetically regressive rhinoceroses were originally introduced to Vanayequi to provide a reliable source of leather for nearby industries. The genetic modification was successful in reducing the animal's aggressive tendencies, but had unintended side effects. As the ceratomorphs returned to a more primitive state, they began growing soft, lush fur. This fur is now prized around the galaxy for its resilience and warmth.\"\n  },\n  \"vegaslimweed\": {\n    \"id\": \"128667699\",\n    \"symbol\": \"VegaSlimWeed\",\n    \"market_id\": \"128149240\",\n    \"category\": \"Medicines\",\n    \"name\": \"Vega Slimweed\",\n    \"limit\": 28,\n    \"rare\": true,\n    \"description\": \"Initially thought to be a plant, settlers of the system would swallow it whole for its slimming and appetite reducing qualities. The revelation that the plant is actually a parasitic life form has not reduced its popularity. Those infested have reported a difficulty in removing the parasite once it has established, but the benefits include an immunity to certain biological poisons. The parasite must be purged before it begins to pupate.\"\n  },\n  \"vherculisbodyrub\": {\n    \"id\": \"128667697\",\n    \"symbol\": \"VHerculisBodyRub\",\n    \"market_id\": \"3228959232\",\n    \"category\": \"Medicines\",\n    \"name\": \"V Herculis Body Rub\",\n    \"limit\": 10,\n    \"rare\": true,\n    \"description\": \"Available in a variety of textures, this scrub can exfoliate just about anything!\"\n  },\n  \"vidavantianlace\": {\n    \"id\": \"128667719\",\n    \"symbol\": \"VidavantianLace\",\n    \"market_id\": \"3231082240\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Vidavantian Lace\",\n    \"limit\": 5,\n    \"rare\": true,\n    \"description\": \"Specially engineered vines weave fine lace into intricate natural patterns. These highly fragile plants work slow and die if taken from their native environment.\"\n  },\n  \"volkhabbeedrones\": {\n    \"id\": \"128667044\",\n    \"symbol\": \"VolkhabBeeDrones\",\n    \"market_id\": \"3227831808\",\n    \"category\": \"Machinery\",\n    \"name\": \"Volkhab Bee Drones\",\n    \"limit\": 6,\n    \"rare\": true,\n    \"description\": \"Guaranteed pollination every time! These miniature drones are supplied in the thousands to ensure your crops are fertilised whatever the conditions. Unlike natural bees, they can be used in conjunction with pesticides and can be supplied pre-coated with your choice of growth agents!\"\n  },\n  \"water\": {\n    \"id\": \"128049166\",\n    \"symbol\": \"Water\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Water\",\n    \"description\": \"H2O. A chemical compound that is vital to human life and useful in a number of industrial processes.\"\n  },\n  \"waterpurifiers\": {\n    \"id\": \"128049218\",\n    \"symbol\": \"WaterPurifiers\",\n    \"category\": \"Machinery\",\n    \"name\": \"Water Purifiers\",\n    \"description\": \"Water purifiers and components and consumables for them. All space installations are reliant on recycled water, so water purification is vital for survival. Some units are set up to medicate the purified water to maintain the correct mood of inhabitants.\"\n  },\n  \"watersofshintara\": {\n    \"id\": \"128667085\",\n    \"symbol\": \"WatersOfShintara\",\n    \"market_id\": \"128666762\",\n    \"category\": \"Medicines\",\n    \"name\": \"Waters of Shintara\",\n    \"limit\": 12,\n    \"rare\": true,\n    \"description\": \"The medical qualities of the mineral waters of Shintara are decried by many in the scientific community as nonsense. This has not stopped widespread rumours that water from the planet can cure almost any ailment, and even reverse the ageing process. The company that controls the source of this water are happy to allow the rumours to continue, and people all over the galaxy are willing to pay a small fortune for the real thing.\"\n  },\n  \"wheemetewheatcakes\": {\n    \"id\": \"128667698\",\n    \"symbol\": \"WheemeteWheatCakes\",\n    \"market_id\": \"3225032704\",\n    \"category\": \"Foods\",\n    \"name\": \"Wheemete Wheat Cakes\",\n    \"limit\": 19,\n    \"rare\": true,\n    \"description\": \"These cakes were originally used as packing material for expensive machinery, but when plant owners realised they were edible, they soon became the workers staple diet. The wheat cakes produced today are made using the traditional recipe.\"\n  },\n  \"wine\": {\n    \"id\": \"128049215\",\n    \"symbol\": \"Wine\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Wine\",\n    \"description\": \"A luxury drink made from fermented fruits, containing alcohol, a mild narcotic, and is grown organically. Occasionally illegal because of the alcohol content.\"\n  },\n  \"witchhaulkobebeef\": {\n    \"id\": \"128667022\",\n    \"symbol\": \"WitchhaulKobeBeef\",\n    \"market_id\": \"3223358720\",\n    \"category\": \"Foods\",\n    \"name\": \"Witchhaul Kobe Beef\",\n    \"limit\": 18,\n    \"rare\": true,\n    \"description\": \"A traditional breed from the Tajima strain of wagyu cattle in Kobe in Japan on ancient Earth, they remain most pampered cattle in human space. Taken from Kobe before the Earth's serious environmental decline, the cattle are fed a secret mix of rare grains and brushed daily. Now unique to Witchhaul, this is one of the most priced meats there is.\"\n  },\n  \"wolf1301fesh\": {\n    \"id\": \"128667031\",\n    \"symbol\": \"Wolf1301Fesh\",\n    \"market_id\": \"128084984\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Wolf Fesh\",\n    \"limit\": 13,\n    \"rare\": true,\n    \"description\": \"A synthetic psychoactive drug based on a closely guarded secret recipe. While active, it causes the user to lock their teeth together and rapidly exhale, a reaction that led to its street name, Fesh. There are many poor imitations but Wolf 1301 Fesh is the original and remains the most expensive due to its consistent quality. Banned in most jurisdictions.\"\n  },\n  \"wreckagecomponents\": {\n    \"id\": \"128672123\",\n    \"symbol\": \"WreckageComponents\",\n    \"category\": \"Salvage\",\n    \"name\": \"Wreckage Components\",\n    \"description\": \"Accidents in space often leave a lot of debris, some of that wreckage should be useful in determining the cause of the accident. They should be handed in to whichever organisation has called for their collection, however they also generate some demand as morbid momentos or simply as scrap.\"\n  },\n  \"wulpahyperboresystems\": {\n    \"id\": \"128667067\",\n    \"symbol\": \"WulpaHyperboreSystems\",\n    \"market_id\": \"3221388032\",\n    \"category\": \"Machinery\",\n    \"name\": \"Wulpa Hyperbore Systems\",\n    \"limit\": 10,\n    \"rare\": true,\n    \"description\": \"Wulpa Engineering Systems are constantly working to improve and enhance on existing models, with the Wulpa Hyperbore System representing the latest in automated mineral extraction services.\"\n  },\n  \"wuthielokufroth\": {\n    \"id\": \"128667035\",\n    \"symbol\": \"WuthieloKuFroth\",\n    \"market_id\": \"3222155776\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Wuthielo Ku Froth\",\n    \"limit\": 17,\n    \"rare\": true,\n    \"description\": \"Not strictly a beer, this light alcoholic beverage is made from fermented frog spawn which is then filtered through rush mats.\"\n  },\n  \"xihecompanions\": {\n    \"id\": \"128667075\",\n    \"symbol\": \"XiheCompanions\",\n    \"market_id\": \"3224133120\",\n    \"category\": \"Technology\",\n    \"name\": \"Xihe Biomorphic Companions\",\n    \"limit\": 10,\n    \"rare\": true,\n    \"description\": \"We make the most realistic and exclusive animal companions using the latest technology and robotics, better than nature and guaranteed to last. Rigorous testing ensures that all our animals conform to the appropriate legislation on artificial intelligence.\"\n  },\n  \"yasokondileaf\": {\n    \"id\": \"128667083\",\n    \"symbol\": \"YasoKondiLeaf\",\n    \"market_id\": \"3223088640\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Yaso Kondi Leaf\",\n    \"limit\": 5,\n    \"rare\": true,\n    \"description\": \"A native plant that exhibits similar properties to tobacco, but without the harmful effects. Discovered through observing its effects on the local fauna.\"\n  },\n  \"zeesszeantglue\": {\n    \"id\": \"128667707\",\n    \"symbol\": \"ZeesszeAntGlue\",\n    \"market_id\": \"128125432\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Zeessze Ant Grub Glue\",\n    \"limit\": 27,\n    \"rare\": true,\n    \"description\": \"Stick anything to everything with this natural glue, made from the cocoons of indigenous insects. It is non-toxic and can be easily removed using a resin secreted by the queen ant.\"\n  }\n}"
  },
  {
    "path": "src/service/data/commodity-descriptions.json",
    "content": "{\n  \"gallium\": \"Gallium, Ga, atomic number 31. Melting point 303K. It is a soft silvery metal at human room temperature, but melts in the human hand. It is used as a key component in semiconductors and in lasers.\",\n  \"autofabricators\": \"High speed, low cost fabricators that can build almost any design out of basic resources.\",\n  \"cryolite\": \"Used in a range of applications, including insecticides, pesticides, fireworks and as a solvent for aluminium oxide.\",\n  \"airelics\": \"A collection of highly illegal AI remnants. These items are of extreme interest to various shady organisations and remote cults. Their almost mythical status has led to a huge amount of counterfeiting, further inflating the value of items with a clear and proven history. It is uncertain whether any of these pieces actually retain the AI personality that was originally present within.\",\n  \"azcancriformula42\": \"Formula 42 achieves incredible results, transforming even the most arid of desert worlds into fertile utopias. Beyond its name, all aspects of this product are kept under the highest secrecy. However, people don't ask questions when it delivers time and again.\",\n  \"advancedcatalysers\": \"Engineered catalysing agents, used by refineries to improve the efficiency of a large number of chemical reactions.\",\n  \"advancedmedicines\": \"These medicines are specially tailored to counteract the most virulent of diseases, whilst causing minimum damage to the host.\",\n  \"cetiaepyornisegg\": \"Originally referred to as Elephant birds, these behemoths were brought out of extinction using preserved genetic material found on ancient Earth. With some careful genetic modification (before the process of gene modification was outlawed), they were adapted to thrive in a dense, oxygen-rich Cetian atmosphere. They lay prized eggs with a circumference of over a meter.\",\n  \"aganipperush\": \"A neurological stimulant only available in Aganippe. Often used to temporarily increase the user's memory retention and awareness, it is a favourite among students and scholars. Recent reports have revealed that excessive use and abuse of the compound has been linked with psychotic episodes and hallucinations.\",\n  \"agriculturalmedicines\": \"A range of engineered substances created to prevent or treat common diseases and ailments among livestock and fisheries. These are produced on High Tech worlds and consumed in Agricultural worlds.\",\n  \"agronomictreatment\": \"This material has been specifically engineered to revive plants affected by contaminants.\",\n  \"alacarakmoskinart\": \"Micro thin sheets that are absorbed into the skin. A mixture of bio engineering and microelectronics allow the user to program art on their skin that reacts to their surroundings and mood. The Body Decor company of Alacarakmo has specialised in this for hundreds of years.\",\n  \"albinoquechuamammoth\": \"Specially adapted to the cold climate, these enormous animals, originally created from modified genetic material from ancient Earth, are now flourishing on Quechua. The albino form has been encouraged to dominance due to the tenderness of their flesh.\",\n  \"alexandrite\": \"Alexandrite is a form of chrysoberyl characterised by the fact that it exhibits different colours when viewed from different angles and under different light conditions.\",\n  \"algae\": \"Algae are a range of biological organisms grown in water. Considered edible and often locally produced to sustain life in many poorer outposts. Usually commercially processed to provide more appetising food stuffs as a constituent of food cartridges for 'chefs' (cheap 3D food printers).\",\n  \"altairianskin\": \"A small colony of brightly coloured micro-organisms form a mesmerising, ever changing fashion statement. Capable of self-sustaining, the colony will feed on dirt and skin flakes, keeping the wearer clean and healthy. When mature, the micro-organisms lose their bright colors and excrete a heady natural perfume.\",\n  \"aluminium\": \"Aluminium, Al, atomic number 13. Melting point 933K. A silvery-white ductile metal that is regularly used by many industries in alloys for its lightness and strength.\",\n  \"alyabodilysoap\": \"Guaranteed to give a cleaner you. The deep cleansing action works both inside and out, with this fully digestible soap! Rumoured to be made from Human fat.\",\n  \"usscargoancientartefact\": \"Highly prized by collectors, the movement of recovered artefacts is strictly controlled by a number of authorities around the galaxy. Fortunately a lucrative black market offers savvy explorers with means to find reliable buyers for any ancient treasures.\",\n  \"ancientkey\": \"A crystalline artefact recovered from a Guardian beacon.\",\n  \"anduligafireworks\": \"For earth shattering displays that will blow your mind. Perfect for atmospheric use, or deployed from orbit! Official suppliers to the Imperial Family.\",\n  \"animalmeat\": \"Flesh - and other elements - harvested from a vast selection of once-living creatures. In many places a luxury item with some ceremonial importance. Illegal in some jurisdictions.\",\n  \"animalmonitors\": \"A bio-electronic suite of sensor systems and analysis software, easily adapted to monitor a wide variety of organic species.\",\n  \"p_particulatesample\": \"A collection of particles from a space-based anomaly.\",\n  \"antimattercontainmentunit\": \"This containment unit safely stores antimatter protecting it from gamma radiation and interaction with standard matter.\",\n  \"antiquejewellery\": \"A treasure trove of exquisite antique jewellery. These often contain very rare, and very valuable, pieces.\",\n  \"antiquities\": \"A collection of priceless artefacts. Such objects are often invested with great cultural and historical value. Removal of antiquities from their original sites is generally considered a crime. The legal extraction of antiquities can only occur when the relevant permit has been granted by the local authorities.\",\n  \"anynacoffee\": \"Once sneered at as a cheap substitute, this product has gained cult status from its overly thick texture and bitter flavour from the roots and herbs that it is made of. It is an acquired taste that now appeals to the Bohemian set.\",\n  \"apavietii\": \"A unique alcoholic spirit distilled by the crew of The Golconda, an ancient generation ship.\",\n  \"aquaponicsystems\": \"An automated system to monitor and sustain nutritional and chemical balance levels of a confined marine ecosystem using targeted chemical and microbial filtration, and the spares and consumables required.\",\n  \"aroucaconventualsweets\": \"The monastic orders of Arouca live a secluded and peaceful life producing, among other things, a limited range of Conventual sweets. Each come with a personalised blessing.\",\n  \"articulationmotors\": \"Articulation motors are used to move components with devices.\",\n  \"assaultplans\": \"Encrypted resources and documentation for secret attack plans. Possession of such documents is illegal as its possession implicates those transporting the information. There is a limited black market demand for these items.\",\n  \"atmosphericextractors\": \"Components and consumables for atmospheric processors. These are large installations, usually with a high power output reactor at its core, used to process and stabilise breathable planetary atmospheres, especially on terraformed worlds.\",\n  \"bluemilk\": \"Harvested from native mammals found in Leesti, this highly nourishing and rehydrating drink is favoured in arid and desert worlds.\",\n  \"bakedgreebles\": \"These tough, limpet like creatures were originally thought to be inedible. However, pioneering colonists discovered that a combination of high pressure and chemical treatment in an ammonia-based solution could render these iron rich creatures into a digestible and delicious food source. They are now considered a delicacy around their galaxy.\",\n  \"baltahsinevacuumkrill\": \"Vacuum Krill are astonishing creatures. One of the few species to live in the hard vacuum of space, they are native to the ice rings around Baltah'sine 4b. Their eggs grow in vast numbers in tiny water pockets within the rocks - kept liquid by secretions from the mother when the eggs are first laid. When mature, they eventually burrow their way out, propelling themselves between rocks with tiny excretions of fluid, in search of a mate.\",\n  \"bankiamphibiousleather\": \"The native amphibian like creatures of Banki have a particularly colorful and lustrous skins, with a number of useful properties when wet. Highly valued on oceanic worlds.\",\n  \"basicmedicines\": \"A wide range of pharmaceuticals used in the healthcare sphere. Includes treatments for preventative, convalescent and palliative care.\",\n  \"bastsnakegin\": \"Traditional cure-all and cocktail ingredient. The venom of the snake entombed in the bottle adds to the intoxicating effect of the drink.\",\n  \"battleweapons\": \"Military-grade human-portable heavy weapons. The trade and movement of military-grade weaponry is highly regulated; most commonly it is confined to nation states and private organisations with considerable political influence.\",\n  \"bauxite\": \"Bauxite is the main source of aluminium, and is in fact a mix of ores that occur naturally together sometimes with small amounts of rutile and haematite. A key source of aluminum for refineries.\",\n  \"beer\": \"Traded under a variety of brands. A very mild narcotic. Occasionally illegal due to its association with antisocial behaviour, but also widely consumed in many cultures.\",\n  \"belalansrayleather\": \"Due to the particular chemical conditions of the water on Belalans, the rays have a particularly soft skin.\",\n  \"benitoite\": \"Benitoite is a blue barium titanium silicate mineral that appears fluorescent under shortwave ultraviolet light.\",\n  \"bertrandite\": \"Bertrandite: chemical formula Be4Si2O7(OH)2. Beryllium Ore. A pale yellow orthorhombic mineral, widely refined into Beryllium.\",\n  \"beryllium\": \"Beryllium, Be, atomic number 4. Melting point 1560K. A white-grey alkaline earth metal. Widely used in the spacecraft industry right from its early pre-interstellar history because of its high thermal stability and low density. It is also a very useful component of many alloys, both industrially and for specialist high tech components.\",\n  \"bioreducinglichen\": \"Genetically engineered lichen used to prepare an asteroid field or broken surface rocks for industrial extraction. Once deployed the lichen will spread over the field and concentrate specific minerals, changing colour in the process, allowing for efficient extraction.\",\n  \"biowaste\": \"Sterilised, then used as a basic form of fertiliser on many agricultural worlds.\",\n  \"bismuth\": \"Bismuth, Bi, atomic number 83. Melting point 545K. It is a pentavalent post-transition often used for medicines and specialist alloys. It is sometimes used in pharmaceuticals.\",\n  \"usscargoblackbox\": \"The flight computer from a destroyed ship. Recovered flight computers can offer details on the movements and intentions of ships before meeting their demise. Taking a black box from the scene of an accident is frowned on by authorities, but can offer lucrative profits on the black market.\",\n  \"bootlegliquor\": \"Unregulated alcoholic substances which are typically made through home or small scale production methods, with varying levels of toxicity.\",\n  \"borasetanipathogenetics\": \"These tiny crawling creatures have been called a lab in a bag. They exude tailored biological agents that adapt and mutate to overcome the defenses of their enemies. When deployed in large numbers they resemble a viscious yellow goo that slowly crawls over their victim devouring them completely. When there are no further nutrients to absorb the insects bocome dormant and can be recovered by specialy trained teams to be used again.\",\n  \"bromellite\": \"Bromellite, BeO, is a white oxide mineral with a wide range of uses, such as ceramic based electronics, and enhancing material properties of mechanical strength and thermal conductivity.\",\n  \"buckyballbeermats\": \"Double-sided drinks mats originally commissioned in 3302. One side bears the Buckyball Racing Club logo with the slogan \\\"Win it or bin it\\\" while the other reads \\\"Celebrating 10000 rescues\\\" and depicts the mascot of the Fuel Rats.\",\n  \"buildingfabricators\": \"These are combined resources and manufacturing devices that are used to build surface structures.\",\n  \"burnhambiledistillate\": \"The use of 'donated' human bodily fluids in the distillation process for this potent liquor causes a strong variation in flavours from vintage to vintage, and widespread outcry about the ethics of the production. The producers of the drink report that each slave used agrees to the extraction progress, but this has not stopped some having a bitter taste left in their mouths.\",\n  \"cd75catcoffee\": \"The coffee beans are mellowed in the digestive tract of the indigenous giant cats making for a distinctive and unique aftertaste, many have tried to emulate this chemically and physically however the result to date have been inferior if not disastrous.\",\n  \"cmmcomposite\": \"CMM Composites are layered carbon and metals layered to take advantage of the properties for each of the different components. These result in flexible, lightweight and strong structures.\",\n  \"centaurimegagin\": \"This chemical distillate is almost pure Alcohol, but with subtle, prized flavors. Often used as an ingredient in more dangerous cocktails. The exact details of the distillation process are a closely guarded secret.\",\n  \"ceramiccomposites\": \"A wide range of engineered materials supporting a broad range of technological and industrial applications.\",\n  \"ceremonialheiketea\": \"Super fine green tea. Powdered for use in tea ceremonies, this tea is often used to seal treaties and business deals. It is traditionally ground on granite mills by specially selected millers, chosen for their moral purity.\",\n  \"cetirabbits\": \"For years 47 Ceti suffered from rodents, introduced from Earth, decimating crops. However, they have turned this to their advantage and now farm them in great numbers as the local environment makes the meat curiously sweet.\",\n  \"chameleoncloth\": \"Woven from living plants, the fabric created retains the native Flora's sympathetic camouflage. When worn the user will blend in with whatever their current environment is. Although considered for military applications, the low availability of the fabric, and the slow speed of the camouflage effect led to it being deemed inferior to technological camouflages.\",\n  \"chateaudeaegaeon\": \"Wines from Aegaeon are some of the most valued and prized possessions in the galaxy. In great demand in wealthy systems, these wines are purchased for large sums, but rarely actually drunk.\",\n  \"chemicalwaste\": \"Chemicals that have become contaminated beyond use. Usually produced as a byproduct of industrial processes.\",\n  \"cherbonesbloodcrystals\": \"The unique magnetic flows found in the deepest caves of Cherbones have formed amazing crystals that are coveted for their beauty. These fragile structures are manually extracted at great personal risk. The local inhabitants train all their lives to learn the method for extracting the crystals. Many are lost on their first attempt.\",\n  \"chieridanimarinepaste\": \"A unique mix of zooplankton and phytoplankton from the rich and varied oceans of Chi Eridani. Due to the automated trawling process, it may include any number of other marine creatures that happened to wander into the processor.\",\n  \"classifiedexperimentalequipment\": \"Secretive technology required by Salvation for mass anti-Xeno initiatives.\",\n  \"clothing\": \"Even in the 34th century, fashion is continually changing, driving purchases of new clothing for those with some credits to spare.\",\n  \"cobalt\": \"Cobalt, Co, atomic number 27. Melting point 1768K. Traditionally used as a blue colouring, but now mainly used for creating high temperature alloys. Also has biotech applications.\",\n  \"coffee\": \"A good source of caffeine to fuel to the creative economics. Many attempts have been made to supplant it but all inevitably fail. Some claim the archaic ritual of grinding beans is a key part of the experience.\",\n  \"coltan\": \"Coltan is a mixture of columbite and tantalite, both valuable Tantalum ores. Useful in capacitors throughout history for many high tech and electronic devices.\",\n  \"combatstabilisers\": \"Biological agents used to sustain and heal injured humans in combat. Combat Stabilizers allow recipients to continue to function despite unimaginable amounts of pain. Some cultures consider they encourage glorification of combat, and so are illegal.\",\n  \"comercialsamples\": \"An assortment of materials, often marketing related, and are of little value on the open market.\",\n  \"computercomponents\": \"Industrially mass-produced computer components and electronic devices, regulators, storage, distribution boards, spares. Wherever there are computers there are computers that have gone wrong and need a spare part.\",\n  \"conductivefabrics\": \"These Fabrics allow for current to be passed through them in order to build Cloth-set circuitry for wearable technology.\",\n  \"consumertechnology\": \"Ever evolving and changing, get on board for the next generation of personal consumer devices. Be the envy of your friends as you show off the latest thing, then get ready to upgrade.\",\n  \"copper\": \"Copper, Cu, atomic number 29. Melting point 1358K. A highly ductile lustrous red-orange metal, with good thermal and electrical conductivity. Used broadly by industry as a cheap conductor and in many alloys. It is also used in biotech and aquaculture especially in many extraterrestrial and hemocyanal species.\",\n  \"coquimspongiformvictuals\": \"Spongiform Victuals have been a staple food of the Imperial military for years. Many have tried to create copies of the nutritious formula, but it seems only to thrive in the vast damp caves of Coquim. The ingredients are a tightly held secret, and some suggest that it contains addictive substances.\",\n  \"animaleffigies\": \"A variant of the synthetic psychoactive drug based on a closely guarded secret recipe. While active, it causes the user to lock their teeth together and rapidly exhale, a reaction that led to its street name, Fesh. This variant was created from a stolen recipe for Wolf 1301 Fesh and is the closest Fesh variant in terms of quality to the original. Banned in most jurisdictions.\",\n  \"cropharvesters\": \"Agricultural machinery together with spare parts and consumables used for harvesting and packing specific ground-based crops.\",\n  \"crystallinespheres\": \"Transparent spheres crafted from the finest crystal and containing a clear liquid full of snow that swirls when shaken\",\n  \"damagedescapepod\": \"This escape pod's systems have been damaged and will fail by the end time provided in the briefing. After this time the system will no longer be able to sustain the life of its occupant.\",\n  \"damnacarapaces\": \"The hard colourful exoskeletons of large insect like creatures. Used as decoration and in the production of exotic materials and clothing.\",\n  \"datacore\": \"A large core filled with digital data.\",\n  \"deltaphoenicispalms\": \"A truly organic pest eradication tool, these sterile plants can only be grown from cuttings. Their pollen is lethal to most insectoid life forms. Historically it used their body as a host to germinate. Note may cause hallucinations if workers are over-exposed.\",\n  \"deuringastruffles\": \"More of a lichen than the fungus that they resemble. They have a similar musty flavor to ancient Earth truffles, but the process of metabolising Deuringas's surface - which is why Deuringas truffles must be shaved in preparation for eating.\",\n  \"diplomaticbag\": \"Used to carry political correspondence and other confidential items. Can only be sold on the black market. These packages are often contained within booby-trapped containers.\",\n  \"disomacorn\": \"This ancient corn-like crop is harvested manually to preserve the dust-like coating on the seeds. This dust is traditionally snorted from the corn as a chef's treat.\",\n  \"domesticappliances\": \"For every household task, there are any number of domestic appliances fighting for the consumers' attention and credits.\",\n  \"duradrives\": \"These robust personal computing devices, manufactured by technology company Herculean Machines, are used throughout the galaxy.\",\n  \"earthrelics\": \"Historical artefacts originating from the ancient periods of Earth. These items vary considerably in nature and hold great value to collectors.\",\n  \"aerialedenapple\": \"A native plant that bears fruit resembling an apple with a silver lustre. Originally inedible, but through genetic modification the neurotoxins have been stripped away leaving what is now seen as a delicacy.\",\n  \"eleuthermals\": \"In an age of manufactured goods, many prefer the expensive tradition of making things by hand. Eleu hand-knitted thermals, made from their own wool are the survival underwear of choice for cold climates.\",\n  \"emergencypowercells\": \"Emergency power cells used to provide power when the primary power source is unavailable. They can also be used to temporarily increase power output.\",\n  \"encryptedcorrespondence\": \"Heavily encrypted data that is of little interest, although some hackers use it for training or practise, or simply enjoy the challenge of breaking the encryption. There is a limited black market for these items.\",\n  \"encripteddatastorage\": \"It is sometimes safer to transport sensitive data physically and also quicker if immense quantities need transferring. They usually have little intrinsic value except to the organisation attempting to secure these items.\",\n  \"powergridassembly\": \"A specialised energy grid assembly for controlling power flow. These can be found at Pailes Enterprise in the 40 Ceti system.\",\n  \"eraninpearlwhisky\": \"Created to celebrate 30 years of Eranin independence in Alliance, this specially created whiskey was created in limited supply and is expected to increase in value over time.\",\n  \"eshuumbrellas\": \"An anachronistic homage to a more civilized age becomes as symbol of wealth and tradition. Suppliers to the Empire and beyond.\",\n  \"esusekucaviar\": \"After being discovered in an ancient gene bank, the last of the cryogenically stored Sturgeon eggs were purchased for an undisclosed, but reliable enormous sum. After the long search for an appropriate environment, they were introduced to the waters of Esuseku, and to their owner's relief, hatched and established a breeding colony. The ancient fish continues to thrive in the waters of Esuseku making it the primary producer of caviar in known space.\",\n  \"ethgrezeteabuds\": \"These tea buds have to be hand plucked from the dangerous Ethgreze Carnivorous Camellia Sinensis plants. Only those with sharp reflexes make it through their first season without losing fingers or entire hands to the deadly fast plants. Due to the danger in collecting it, this tea is famously expensive.\",\n  \"evacuationshelter\": \"A lightweight robust unit that can be deployed to provide shelter, basic food and air for up to a month in the event of structural failure or meteor impacts on habited builds. They are also used by survey teams on long expeditions.\",\n  \"exhaustmanifold\": \"These customised manifolds are used to combine plasmas and gases from multiple sources into a single element. These can be found at Somerville Station in the Kharpulo system.\",\n  \"usscargoexperimentalchemicals\": \"Often dangerous and corrosive in nature, experimental chemicals are often created for research and scientific purposes. In the wrong hands they can be turned into dangerous weapons, so trade is strictly controlled. A thriving black market trade has proved difficult to control for authorities.\",\n  \"explosives\": \"Chemical explosives are used extensively in extraction to gain access to valuable mineral deposits.\",\n  \"fish\": \"Flesh from once-living aquatic organisms sold as food stuff. Illegal in some jurisdictions.\",\n  \"foodcartridges\": \"Cartridges for 'chefs' (cheap 3D food printers). These dehydrated components are reconstituted into a variety of shapes using a 3D printing technique. Components are mixed with water and flavourings as they are printed, according to the desired food item template for colour, texture and taste. \\\"Burgers\\\" and \\\"Hotdogs\\\" are common standard template choices in most chefs.\",\n  \"fossilremnants\": \"Fossilised fragments from an unidentified life form. Inquisitive minds will revel at the chance to analyse and possess one of our galaxy's ancestral occupants.\",\n  \"fruitandvegetables\": \"A diverse selection of plant-based produce, usually grown in bulk on outdoor worlds, used by the luxury food industry and for direct consumption by the population.\",\n  \"fujintea\": \"A range of infusions from indigenous plants and herbs that produce highly effective medicines rivalling or exceeding the best synthetics. Ill-informed combinations have been known to be instantly fatal.\",\n  \"galactictravelguide\": \"A where's where and a what's what of the Milky Way. This guide highlights the galaxy's top destinations and hot spots.\",\n  \"gallite\": \"Gallite: chemical formula CuGaS2. Gallium Ore. Named for its high Gallium content and is widely extracted at refineries.\",\n  \"geawendancedust\": \"There may be no sound in space, but Geawen Dance Dust will bring the music inside your cockpit, and inside your head. You literally won't be able to stop dancing.\",\n  \"genebank\": \"Collection of DNA and other biological samples containing valuable information for the scientific community. These banks can sometimes contain samples from extinct species which vastly increases their demand.\",\n  \"geologicalequipment\": \"Allows basic monitoring and integration of the world's geology, for both scientific, civic and commercial purposes.\",\n  \"geologicalsamples\": \"Geological samples used for scientific and commercial purposes.\",\n  \"gerasiangueuzebeer\": \"Geras 3 A supports life in the form of large algae like plankton, whose bioluminescent digestive system excretes a complex protein that can be used in the brewing process. The resulting beer is famous for it's strength, heady aroma, and luminescent color.\",\n  \"giantirukamasnails\": \"Despite appearances, the species discovered on Irukama are not strictly snails. These indigenous creatures almost destroyed Irukama's native habitat over their sole predator was culled, due to the threat it posed to human settlers. Now actively managed, the surplus stock is sold on as a delicacy. The meat from a single snail can easily fill several standard-size cargo canisters.\",\n  \"giantverrix\": \"This hardy beast of burden now found throughout human space, especially on the emerging worlds of the outer rim, but naturally bred Verrix are very rare and highly prized.\",\n  \"gilyasignatureweapons\": \"Leave your own personal mark with these highly customisable weapons, a speciality of the Gilya system. Leave no doubt about who put your victim to rest when using a Gilya Signature weapon. Illegal but highly prized in many jurisdictions. Being disarmed of your signature weapon is considered the greatest of humiliations.\",\n  \"gold\": \"Gold, Au, atomic number 79. Melting point 1337K. A valuable precious metal, and because it is the most resistive metal to corrosion, is widely used in jewelry and luxury goods and for contact pads in electronics.\",\n  \"gomanyauponcoffee\": \"This once traditional coffee substitute leapt to fame when the Emperor Hengist Duval gave it his seal of approval.\",\n  \"goslarite\": \"This zinc sulphate mineral is used in medicines and antiseptic treatments.\",\n  \"grain\": \"Inexpensive and intensively grown in various forms on many outdoor worlds. Mainly consumed as bread but also forms a key constituent of many industrially produced foods.\",\n  \"grandidierite\": \"Grandidierite is bluish-green nesosilicate mineral distinguished by the fact that it exhibits different colours when viewed from different angles.\",\n  \"ancientcasket\": \"A stone casket created several million years ago by the Guardians, an extinct nonhuman civilisation.\",\n  \"ancientorb\": \"A mechanical device created several million years ago by the Guardians, an extinct nonhuman civilisation.\",\n  \"ancientrelic\": \"An artefact created several million years ago by the Guardians, an extinct nonhuman civilisation.\",\n  \"ancienttablet\": \"A tablet, engraved with runes, created several million years ago by the Guardians.\",\n  \"ancienttotem\": \"A statue created several million years ago by the Guardians, an extinct nonhuman civilisation.\",\n  \"ancienturn\": \"A sealed container created several million years ago by the Guardians, an extinct nonhuman civilisation.\",\n  \"hazardousenvironmentsuits\": \"Suitable for human use in hostile environments including vacuum, together with spare parts. Fitted with atmospheric scrubbing and life support, vital signs monitoring, automatic medical systems and a multi channel communications interface.\",\n  \"hip10175bushmeat\": \"A wide range of strong-tasting exotic meats native to HIP 10175, famed for its hunting and natural environment. One commonality between all the available species is a strange spicing flavor. This is believed to be due to the rich local ecosystem. Restricted trade has brought high prices.\",\n  \"hip118311swarm\": \"Swarm is the codename of the weaponised form of the tiny but lethally poisonous biting insects native to HIP 118311. Manipulated by a control fluid, the weapons can be targeted onto enemy positions using a remote electromagnetic beam, then unleashed to wreak chaos and death on enemy ranks. The weapon’s trademark buzzing quickly made it a favourite with crime syndicates, favoured for intimidation and enforcement purposes. Banned in most jurusdictions.\",\n  \"hiporganophosphates\": \"The high phosphorous content of this powerful pesticide is highly effective, but can cause a number of highly dangerous side effects. This has led to some governments classifying it as a chemical weapon, and many independent agricultural worlds making taking legal action against the producer after cattle and workers have been left maimed.\",\n  \"hip41181squid\": \"Though there is no genetic link between the huge creatures of HIP 41181 and the now extinct squid once found on ancient Earth, the evolutionary similarities are remarkable. Perhaps they share some ancient space faring ancestor. There was much protest at the use of these animals as food. Claims of sentience still remain high on the agenda of those trying to stamp out the trade.\",\n  \"hnshockmount\": \"HN shock mounts absorb vibration and impacts to stabilise the mounted device.\",\n  \"hr7221wheat\": \"This blood-red, grain-like plant - sometimes known as 'Mars Grass' - has proven itself to be terribly invasive and highly aggressive to all other plant types. For this reason, its growth is now restricted to HR 7221. Its restriction has proved a blessing as its unique colouring and flavour are in demand in exotic cookery.\",\n  \"hafnium178\": \"Hafnium 178m2, Hf, atomic number 72. This nuclear isomer has the potential to unleash enormous quantities of gamma radiation, making it an excellent ingredient for use in devastating weapons of mass destruction. As a result Hafnium 178 is a highly controlled substance that is universally illegal to own without special dispensation.\",\n  \"haidneblackbrew\": \"Brewed over a low heat for days, this tea is comprised of fine mineral shavings, rather than traditional leaves. This mineral based tea is high in salts and nutritious metals. Over consumption of this has been known to temporarily cause the drinker's skin to take a metallic hue.\",\n  \"diagnosticsensor\": \"Diagnostic sensors that provide hardware monitoring and telemetry for a variety of systems. These can be found at Kanwar Gateway in the Xiripa system.\",\n  \"harmasilversearum\": \"Based on a secret 24th Century recipe taken from the log of one Captain Smolenski, Harma Silver Sea Rum has been developed by blending a range of rare alcohols to create a beverage any corsair would be proud of. The Harma Silver Cartel, who manufacture and distribute the potent brew, enjoy the controversy their product has gleaned after it became a favourite among pirate gangs across the galaxy.\",\n  \"havasupaidreamcatcher\": \"Re-live your dreams! This device can record, consolidate and replay the neural activity of dreams, allowing you to re-experience them whenever you desire, or even share your dreams with friends!\",\n  \"heatsinkinterlink\": \"These specially made heatsink interlinks provide the mechanism for the emissive cooling plates within a heatsink. These can be found at Gresley Enterprise in the LHS 3980 system.\",\n  \"helvetitjpearls\": \"Oysters have been one of the more successful adaptors with their rapid genetic modification. Due to the chemicals in the waters the oysters of Helvetitj produce a range of vividly coloured but natural pearls which are in high demand for decorative purposes, but are valued as a food source as well.\",\n  \"holvaduellingblades\": \"The finest blades money can buy. Putting art into death, forged from the purest alloys and available in a range of traditional and modern styles. Ceremonial and combat blades are available.\",\n  \"honestypills\": \"Originally created to be used in a religious ceremony, wherein an apostate is purified through forced confession, then repentance for their sins. The sect was soon infiltrated by corporate agents, and the psychoactive compound identified. The only secrets that has not been revealed by this drug are the ingredients for creating it, and the fate of the religious sect that discovered it.\",\n  \"hostage\": \"Sometimes criminal gangs hide their hostages in cargo pods fitted with rudimentary life support.\",\n  \"hydrogenfuel\": \"Hydrogen fuel is used in high power systems, from ships' drives to weapons to powering the energy needs of stations and surface cities. Using high pressure and temperature, hydrogen is fused into helium in a simple reactor.\",\n  \"hydrogenperoxide\": \"Hydrogen Peroxide, H2O2, is the simplest peroxide and has a number of uses as a reacting agent in chemical processes.\",\n  \"imperialslaves\": \"Slavery is an important part of Imperial Society, providing labour for the Empire and a safety net for its citizens. Many Imperials will choose to sell themselves into a fixed period of slavery than face the embarrassment and dishonour of living with a debt.\",\n  \"indibourbon\": \"Originally used as a medicine to revive those who have suffocated in dust storms, the restorative effects of this potent drink are almost as famous as the hangovers.\",\n  \"indite\": \"Indite: chemical formula Fein2S4. Indium Ore. A rare, black, crystalline mineral. Often found in what were once hydrothermal deposits or asteroids that have been heated in their past. it is widely refined into Indium.\",\n  \"indium\": \"Indium, In, atomic number 49. Melting point 429K. Used industrially and high tech for a wide range of alloys, including superconductors, sensors and holo projectors.\",\n  \"insulatingmembrane\": \"Insulating membranes are used to control heat flow between devices and are typically used for cooling.\",\n  \"iondistributor\": \"Ion distributors are used to control the flows of ions within a device. These can be found at Stevens Orbital in the HIP 18327 system.\",\n  \"jadeite\": \"Jadeite; NaAlSi2O6, is a substance of the purest green and used in a variety of crafts and art. It has historical roots with the ancient Mesoamerican cultures.\",\n  \"jaquesquinentianstill\": \"A pocket sized one shot distillery, hand crafted by the legendary Cyborg bartender Jaques. This device is capable of turning almost any combination of liquids into 10ml of highly concentrated alcohol in just 3 minutes.\",\n  \"jaradharrepuzzlebox\": \"This entertainment device uses concentrated radiation bursts to detect the desires of the player and automatically and instantly creates a game with every feature they could desire. Each unit is unique, and will self customise to represent its owner. Use of another person's puzzle box is considered a great social faux pas.\",\n  \"jarouarice\": \"Grown in the paddy fields of Jaroua, bioengineered filter fish are used to remove any pests or parasites attached to the plant. It is hand-planted and hand-picked by specially engineered robots.\",\n  \"jotunmookah\": \"A small soft-furred quadruped that stains its multi-colored fur sludge brown when it dies - an action that this highly nervous creature is predisposed to do at the drop of a hat. Professional comforters must work day and night to keep this creature from self induced heart attack. The meat is extremely bitter, but they have found a niche as an expensive accessory.\",\n  \"kachiriginleaches\": \"Leeches were used medically for millennia on ancient Earth but were largely superseded by technology. Hundreds of years later, a chance discovery on Kachirigin revealed some very valuable properties of the native creatures. Kachirigin leeches can painlessly filter impurities from the user's blood, so can be used as a cure-all for hangovers and the worst effects of certain addictions. They are prized by the wealthy and hedonistic, and have an almost cult-like following.\",\n  \"kamitracigars\": \"Providing the biggest cigars in the Galaxy, hand rolled and ready to smoke right out of the box. Specially treated to allow safe smoking even in the cockpit without overloading your life support module. The best way to end your days.\",\n  \"kamorinhistoricweapons\": \"Kamorin Historic Weapons are happy to provide the re-enactor and enthusiast with fully-functional replicas of weapons from a number of important historical eras. Our expert team of craftsmen use traditional materials and methods, with a modern eye of quality. Exploring and researching the annals of history, our artisans continue to bring you the best of weapons from throughout the ages.\",\n  \"karetiicouture\": \"With the vagaries of fashion Karetii Couture is always ahead of the curve, and so are the prices. Many people question the value and the practicalities of these items and yet they still maintain a vice like grip on the public's imagination and credits.\",\n  \"karsukilocusts\": \"Prized for their uniquely sweet flavor caused by the native fungal parasites that infest them.\",\n  \"kinagoinstruments\": \"Kinago is famed for its Luthiers producing the finest Violins and other stringed instruments. They are highly prized by both musicians and collectors throughout the galaxy.\",\n  \"konggaale\": \"The hops of Kongga provide a deep, satisfying flavour to the locally brewed ale, but seem to wither and spoil rapidly when removed from their native climate. Due to this Kongga Ale is renowned for its authentic flavour and traditional production methods. Served at room temperature with a decorative umbrella.\",\n  \"korrokungpellets\": \"This exotic fertiliser is made from the crushed bodies of the native life forms siphoned from the nearby gas giants vast ammonia oceans in unsustainable quantities. It is reported to have invigorated even the most barren and arid of soils, but has also proved to be lethal to some crops.\",\n  \"ltthypersweet\": \"Created by combining the DNA of the universe's sweetest crops, to create the sweetest substance of them all. It turns out it's highly addictive.\",\n  \"terrainenrichmentsystems\": \"A soup of carefully designed archaebacteria, lichens, and micro-fauna and their dispersal equipment. Used in terraforming or enriching agricultural land.\",\n  \"landmines\": \"A cheap and effective way of creating area denial. These explosive devices are banned in most jurisdictions and are effective against personnel and land vehicles.\",\n  \"lanthanum\": \"Lanthanum, La, atomic number 57. Melting point 1193K. is a soft metallic element used as an additive in glass. It's properties make it ideal for optical communications systems, other lighting applications and as a catalyst for various refining processes.\",\n  \"largeexplorationdatacash\": \"Occasionally survey ships go missing during their journeys into the black. On even rarer occasions their cache of survey data can be retrieved and these are highly sought after by institutions and private interests.\",\n  \"lavianbrandy\": \"A highly valued liquor from the old world of Lave. Using ancient breeds of grains grown in it's tropical climate, under a permit from the government, the distillate is kept in old earth oak barrels and held in an orbital maturing facility for decades to achieve maximum richness.\",\n  \"leather\": \"Assorted tanned animal hides. Used in industry to produce clothing and high value furnishings.\",\n  \"alieneggs\": \"Advertised as genuine fossilised xeno ovum, scientists were quickly able to show that the eggs traded are actually the product of a team of highly talented prop designers. For some collectors, owning one of these eggs is their top priority, with all other priorities rescinded.\",\n  \"leestianeviljuice\": \"Leestian evil juice acquired its name from local security forces, claiming that those intoxicated with this powerful liquor seem to be possessed with a pure evil.\",\n  \"lepidolite\": \"Lepidolite: chemical formula K(Li,Al,Rb)3(Al,Si)4O10(F,OH)2. A purplish pink phyllosilicate mineral. Source of Lithium once refined.\",\n  \"liquidoxygen\": \"Oxygen that has been cooled to the point of condensation. Useful in cryogenics or to oxidise other substances.\",\n  \"liquor\": \"A range of luxury drinks made from distilled, fermented grains and fruits, usually containing a high percentage of alcohol. The narcotic effect means it is illegal in some jurisdictions.\",\n  \"lithium\": \"Lithium, Li, atomic number 3. Melting point 453K. A silvery white alkali metal used by industry in ceramic production, and in electronic devices for energy storage. Before the advent of direct brain treatments it was used to treat human mental disorders in early history.\",\n  \"lithiumhydroxide\": \"Lithium Hydroxide, LiOH, is a hygroscopic material often used for scrubbing CO₂ from life support systems. It is also used within certain ceramics and as a heat transfer medium.\",\n  \"livehecateseaworms\": \"Harvested from hydrothermal vents and prized for the sulphurous salty flavour. They are best eaten live to ensure freshness.\",\n  \"lowtemperaturediamond\": \"Low Temperature Diamonds, C, are formed under intense pressure (as with regular diamonds), but without a heat component.\",\n  \"transgeniconionhead\": \"A genetically altered strain of the Onionhead flower, chemically changed to circumvent federal laws. This strain has been designed to survive in harsher climates, but its seeds contain the same well-known psychedelic narcotic. Federal lawmakers are working fast to legislate against this new breed.\",\n  \"lyraeweed\": \"This infamous drug grown exclusively on 16 Lyrae 5 is still the narcotic of choice for overpaid celebrities and the super-rich. It has almost become more of a status symbol than a recreational drug.\",\n  \"magneticemittercoil\": \"These custom made magnetic emitter coils are used to focus and guide wireless forms of energy transfer. These can be found at Steiner Platform in the Aasgaa system\",\n  \"marinesupplies\": \"A wide range of industrial scale equipment for marine agriculture. Submersibles, feedstock dispersing equipment, fishing equipment, nets and underwater confinements.\",\n  \"masterchefs\": \"Master Chefs are selected based on genetic markers that tend to favour an aptitude for the gourmet. Little is known about them except that they are kidnapped as children and then trained under mysterious conditions to bring out their genetic cooking potential. The use of Master Chefs is illegal in most Federal and Alliance systems, but is regarded as a sign of high status in many Imperial systems. Many anti-slavery protest groups have tried to free Master Chefs from their life of culinary bondage, yet due to their training, most return of their own free will to serve. Theirs is a life of servitude - they know nothing but to cook.\",\n  \"mechucoshightea\": \"Mechucos high tea is so named for the dizzying highs caused by its consumption. Most users recommend restricting consumption to specific times of the day, and only with a side plate of restorative sandwiches and cakes.\",\n  \"medbstarlube\": \"The universal lubricator used in construction, machinery and agriculture. It also has a number of domestic applications. It's slogan is: the lube that keeps the galaxy spinning!\",\n  \"medicaldiagnosticequipment\": \"Equipment which allows for rapid diagnosis of a large number of ailments and diseases. This equipment also screens for and identifies prohibited substances.\",\n  \"metaalloys\": \"Meta-alloys have a complex lattice structure with large internal voids. They are cellular in nature, and formed organically. They are incredibly strong - much stronger than foamed aluminium for example. Many elements form the structure so technically they are alloys, but the composition is different in different parts of the cell walls for strength. They are good thermal insulators, and have a high melting point, but if they are melted they lose all their special properties and become a conventional alloy. They are easily machined, but as yet cannot be manufactured, only found in space. They are associated with recently discovered alien entities nicknamed 'Large Barnacles' by interstellar explorers. These appear to be common in certain parts of space, although no-one is certain why. This material has been heralded as the next step in materials technology. It is ultra-light and stronger and more versatile than most commercially available alloys.\",\n  \"methaneclathrate\": \"Methane Clathrate, CH4·5.75H2O or 4CH4·23H2O, is a chemical where methane is bound within a crystal lattice of water.\",\n  \"methanolmonohydratecrystals\": \"Methanol Monohydrate, CH6O2, are crystals with unusual thermoelastic properties which are useful for mechanical and optical materials.\",\n  \"coolinghoses\": \"High specification cooling hoses used as conduits for fluid or gas based thermal management systems.\",\n  \"microcontrollers\": \"Micro controllers are small units to provide actuation and process control for lightweight devices.\",\n  \"heliostaticfurnaces\": \"Bio-engineered microbes that separate specific elements from powdered ore. Produced on high tech worlds, their name is historic having replaced thermal furnaces for the refining or many ores.\",\n  \"militarygradefabrics\": \"Made fom high-grade fabrics which are highly durable as well as adaptive to different temperatures and weather conditions, this clothing is essential for military personnel.\",\n  \"militaryintelligence\": \"Highly confidential documents detailing military movements and military strategy. Possession of such documents is highly illegal, due to their sensitive nature. For the same reason they fetch an exceedingly large sum from the right buyer.\",\n  \"usscargomilitaryplans\": \"Highly confidential documents detailing military movements and military strategy. Possession of such documents is highly illegal, due to their sensitive nature. For the same reason they fetch a large sum to the right seller on the black market.\",\n  \"mineralextractors\": \"Industrially produced 'grey goo' micro devices that are injected into minerals to separate specific constituents from mixed ores along grain boundaries. Extraction sites that utilise mineral extractors in their processes are significantly more efficient.\",\n  \"mineraloil\": \"This is an organic oil that is a useful raw material for producing a wide range of synthetic materials from plastics to ceramics. It is derived from the decay of organic materials, and can often be found beneath the ground on outdoor worlds. Surprisingly, mineral oil was burnt for energy on ancient Earth.\",\n  \"modularterminals\": \"Used by factions as a reward for mission contracts. Modular terminals are ubiquitous items that provide a hardware display of data in a visual and audio format. While they can be sold at markets for a minimal price, these are more often used by engineers for their upgrades.\",\n  \"moissanite\": \"This crystalline silicon carbide mineral has applications in electronics manufacture, and thermal energy absorption. It is also used in jewellery and other crafted items.\",\n  \"mokojingbeastfeast\": \"Marketed as \\\"the galaxy's most dangerous cereal\\\", with a tagline imploring the consumer to \\\"eat it before it eats you\\\", Beast Feast claims to contain trace elements of over two hundred and twenty three confirmed man-eater species, allowing consumers to \\\"eat their way to the top of the food chain\\\".\",\n  \"m_tissuesample_nerves\": \"A sample of brain tissue from a space-based mollusc.\",\n  \"m_tissuesample_fluid\": \"A fluid sample from a space-based mollusc.\",\n  \"m3_tissuesample_membrane\": \"A sample of membrane from a from a space-based mollusc.\",\n  \"m3_tissuesample_mycelium\": \"A sample of the mycelium of a space-based mollusc.\",\n  \"m_tissuesample_soft\": \"A sample of soft tissue from a space-based mollusc.\",\n  \"m3_tissuesample_spores\": \"A sample of spores from a from a space-based mollusc.\",\n  \"momusbogspaniel\": \"Famed for its inability to hunt through water, it makes such lifelike duck calls that some interesting cross breeds are now being researched.\",\n  \"monazite\": \"Monazite is a reddish-brown phosphate mineral containing thorium and sometimes uranium, making it radioactive.\",\n  \"motronaexperiencejelly\": \"A programmable narcotic created in small batches and pre-programmed to provide whatever experience the client wishes to hallucinate. Usually this drug is created only on a bespoke order from an unknown client, but some worlds are willing to sell Pre-programmed samples on the general market.\",\n  \"mukusubiichitinos\": \"The chitinous native insects of nearby worlds are processed using industrial mining equipment, then re-constituted into convenient circles. Marketed as a food for those who like a little crunch.\",\n  \"mulachigiantfungus\": \"The fungal life forms found in Mulachi can grow to occupy entire continents! Specifically trained teams are sent to the planet's surface to industrially harvest large portions of the fungal structures, but workers must be wary of the deadly fungal spores.\",\n  \"mutomimager\": \"Muon topographical instruments providing deep surface scans of planets and moons.\",\n  \"musgravite\": \"Musgravite is an oxide mineral first discovered on Earth in the Musgrave mountain range in Australia, hence its name.\",\n  \"mysteriousidol\": \"This appears to be an idol crafted to worship some sort of deity or higher form of life.\",\n  \"nanobreakers\": \"Used by factions as a reward for mission contracts. Nanobreakers are tiny machines used for disassembling certain, specialised materials. While they can be sold at markets for a minimal price, these are more often used by engineers for their upgrades.\",\n  \"nanomedicines\": \"These sophisticated pharmaceuticals use nanoscale materials to target disease far more efficiently than conventional medicine. The product of an ambitious R&D programme, they are developed by the technologically advanced community Utopia and exclusively distributed by Vandermeer Corporation in the Kuma system.\",\n  \"basicnarcotics\": \"Synthetically created substances tailored to create mood enhancement in a human. Widely outlawed due to their addictive nature, and the resultant longer term effects on human consumers.\",\n  \"naturalfabrics\": \"A range of high value fabrics derived from natural organic materials generally produced on outdoor worlds. These are used in industrial locations to make clothing and other items.\",\n  \"neofabricinsulation\": \"Neofabric insulation is a material using complementary fibre structures to retain, or protect from, heat build up.\",\n  \"neritusberries\": \"This native plant form produces clear red fruit with a unique flavor. The plant is carnivorous and the berries contain blood plasma from its victims which is said to be an aid to slimming.\",\n  \"nerveagents\": \"Used in medical research but because of the potential to be weaponised is a controlled substance in many jurisdictions.\",\n  \"ngadandarifireopals\": \"A particularly rich seam of high grade opals famed for their mesmerising fire-like reflections. Imperial citizens view them as a status symbol, representing the fire of the birth of the empire. Their high market value has lead to the planet being systematically strip-mined by Imperial slaves.\",\n  \"ngunamodernantiques\": \"Local craftsmen are specialists in bringing the past into your life crafted from authentically accurate materials, a mark of distinction.\",\n  \"njangarisaddles\": \"The Saddlers of Njangari are renowned for their leather work, and their motto: No job too big or too invertebrate. Whether simple domestic supplies or custom saddles and tack for some of the more exotic species in the galaxy, they are the very best.\",\n  \"nonlethalweapons\": \"Non-Lethal Weapons are hand-held weapons used by law enforcement and for personal protection. They temporarily stun or incapacitate a human target, and are legal in most jurisdictions.\",\n  \"noneuclidianexotanks\": \"Produced under licence, and with the approval of a number of environmental groups, these tanks can be used to create a truly alien habitat capable of sustaining life forms from a variety on non earth like environments. They are available in a number of mind bending shapes.\",\n  \"occupiedcryopod\": \"Escape pods are typically made from composite materials designed to withstand extremes of temperature and pressure, and can protect a single occupant in the event of ship destruction.\",\n  \"ochoengchillies\": \"Due to the relaxation of various genetic modification laws, Ochoeng prides itself on having produced the galaxy's hottest chilli pepper. There have been numerous calls to reclassify the substances as toxic, however the produce remains legal in most systems.\",\n  \"onionhead\": \"The Onionhead flower is native to HIP 55118, and its seeds contain the well-known psychedelic narcotic. Illegal in most jurisdictions.\",\n  \"onionheada\": \"A new and improved strain of the famous Onionhead narcotic.\",\n  \"onionheadb\": \"An adapted strain of the Onionhead narcotic favourable to local conditions.\",\n  \"onionheadc\": \"A new strain of Onionhead tailored to grow in local conditions.\",\n  \"ophiuchiexinoartefacts\": \"These strange sculptures are believed by some to have been created by a now extinct ancient sentient race. Others have theorised that the sculptures are a natural formation caused by local weather patterns. Most economists agree that there are massive profits made from the gullible and wealthy collectors.\",\n  \"orrerianviciousbrew\": \"This drink is so high in caffeine and Natural sugars that it is often classed as a Narcotic. The addictive properties and resulting sleep deprivation are famed.\",\n  \"osmium\": \"Osmium, Os, atomic number 76, melting point 3306K. A very hard bluish-white metal. Provides extreme durability even at high temperatures, and is a valuable constituent in specialist alloys.\",\n  \"painite\": \"Painite is an incredibly rare borate mineral that typically takes the form of a red gemstone. Highly sought after by socialities throughout occupied space, it is renowned for being one of the most valuable types of gemstones in the galaxy.\",\n  \"palladium\": \"Palladium, PD, 46. Often used in electronics and for purifying noxious gasses.\",\n  \"pantaaprayersticks\": \"These sacred items are said to bring wealth and prosperity to all who inhale their smoke, as can be seen by how prosperous George Pantazis has become.\",\n  \"pavoniseargrubs\": \"Native to the harsh desert climate, these unpleasant creatures will burrow into any soft surface, including flesh, to avoid the sun. Their resemblance of a walking human ear lead to their name. Some slavers use these grubs as a restrainer for their captives, attaching a dormant extra ear to the forehead of their slave that can be remotely triggered.\",\n  \"performanceenhancers\": \"A broad category of engineered substances that enhance human physical or mental or emotional capabilities. Produced on high tech worlds, and widely consumed. There are some risks from excessive consumption and they are illegal in some jurisdictions.\",\n  \"personaleffects\": \"Personal items are often transported and sometimes lost while travelling within and between star systems. They usually have little value except to their owners.\",\n  \"personalgifts\": \"Colourfully wrapped presents for those naughty and nice, although the nice ones do appear to be bigger.\",\n  \"personalweapons\": \"Personal firearms, designed for both self defence and offence, but intended to kill a human attacker. Illegal or highly controlled in many jurisdictions.\",\n  \"pesticides\": \"Pesticides are targeted engineered substances, created to disrupt a particular part of the biological processes within a given organic pest. Used on agricultural worlds to reduce pest damage to crops or livestock.\",\n  \"platinum\": \"Platinum, Pt. atomic number 78. Melting point 2,041K. A grey-white precious metal used as a catalyst within many industrial processes, in addition to its value in electronics and luxury goods because of its resistance to corrosion.\",\n  \"platinumaloy\": \"An ultra-strong metal alloy used in the manufacture of robotics, heavy machinery and weaponry. Due to the dangerous nature of mining and processing the alloy and fusing it with Platinum, most systems refused to produce it and the technique was almost lost. Now the factions of the Nahuatl system are the only people with the knowledge to create the metal.\",\n  \"s_tissuesample_cells\": \"A sample of tissue from the core of a space-based seed pod.\",\n  \"s_tissuesample_surface\": \"A sample of dead tissue from a space-based seed pod.\",\n  \"s6_tissuesample_mesoglea\": \"A sample of jelly-like tissue from a space-based seed pod.\",\n  \"s6_tissuesample_cells\": \"A sample of tissue from the outer layers of a space-based seed pod.\",\n  \"s6_tissuesample_coenosarc\": \"A sample of tissue from the shell of a space-based seed pod.\",\n  \"s_tissuesample_core\": \"A sample of tissue from the surface of a space-based seed pod.\",\n  \"s9_tissuesample_shell\": \"A sample of tissue from a space-based seed pod.\",\n  \"politicalprisoner\": \"Political prisoners are sometimes transported in cargo pods to help disguise their movement.\",\n  \"polymers\": \"Polymers are materials made of long chains of molecules. They are synthesised from mineral oil in refineries, and then used by industry to manufacture a very wide range of goods.\",\n  \"powerconverter\": \"Power converter used to modify and regulate the energy coming from multiple sources so that it is tuned to the optimal operational requirements of all attached devices. These can be found at Shukor Dock in the Perun system.\",\n  \"powergenerators\": \"Industrially produced components for Power Generators, used throughout human space. Though the Sirius Corporation have a near monopoly on manufacture of most new larger units, many other companies produce the vast amount of consumables, spares and ancillary parts for them.\",\n  \"powertransferconduits\": \"High energy power transfer units used to deliver power where it is needed. These can be found at Haignere Orbital in the Wuthawchu system.\",\n  \"praseodymium\": \"Praseodymium, Pr, atomic number 59. Melting point 1208K. This is a soft and malleable metal. It is a rare mineral used for a variety of purposes including: a component in enhanced magnets, an alloy component for metals and laser optics.\",\n  \"preciousgems\": \"These materials have inherent value. They are very useful in maintaining stability in otherwise volatile economies. Alongside the wealth factor, precious gems and metals play a significant role in the generation of extravagant status symbols.\",\n  \"progenitorcells\": \"Targeted engineered cells to restore damage in older human cells. These can greatly extend the life of humans that take them. Some cultures believe it is immoral, especially as they tend to be used by the richest people, and so they are illegal in some jurisdictions.\",\n  \"prohibitedresearchmaterials\": \"Contains theoretical and experimental research, along with samples, the subject and contents of which are strictly prohibited by most authorities; their very existence is a crime, however their contents are highly valuable.\",\n  \"usscargoprototypetech\": \"The latest developments in experimental technology are jealously guarded by the galaxy's various corporations, and unsanctioned possession of prototype tech is severely punished. However, pilots have discovered there is a prospering black market for stolen tech.\",\n  \"pyrophyllite\": \"This phyllosilicate mineral is used in high pressure experiments. On some worlds it's also a material for intricate arts and crafts.\",\n  \"radiationbaffle\": \"Radiation baffles are used to restrict and direct radiation emissions. These can be found at Sopwith Arsenal in the Taevaisa system.\",\n  \"rajukrustoves\": \"Multipurpose stoves that can be operated using almost any fuel. Used on many frontier worlds where other technology cannot be relied on or just does not work. Galactic heritage approved. The famed rustic designs are in use on camp fires throughout the galaxy.\",\n  \"rapabaosnakeskins\": \"Rapa Bao Snake skins are farmed throughout the Galaxy for their size and strength. The snakes are free-range and many workers have lost their lives whilst tending to this vital crop.\",\n  \"usscargorareartwork\": \"Prized and treasured works of art. The galaxy is rife with reproductions and forgeries, and trade in the genuine articles is highly controlled, with pieces transported between owners in secure convoys. Occasionally pieces find their way onto the black market, selling for under-the-counter prices.\",\n  \"reactivearmour\": \"Capable of actively dissipating large amounts of kinetic, electrical and thermal energy, reactive armour greatly increases the chance of survival of the wearer from sustained weapons fire.\",\n  \"usscargorebeltransmissions\": \"Transcripts of communications between dissident groups. These documents are highly valued by a number of factions for the intelligence they contain. It is considered highly suspicious to be carrying them, but black market trade in data will always flow.\",\n  \"reinforcedmountingplate\": \"These custom made reinforced mounting plates are used to strengthen the supports for a mounted device. These can be found at Grassmann Station in the Findalibila system.\",\n  \"resonatingseparators\": \"Self-calibrating tuned oscillators that resonate at a range of specific frequencies, used at refineries for bulk processing of ores.\",\n  \"rhodplumsite\": \"Rhodplumsite is a rhodium-lead sulphide mineral distinguished by the fact that it exhibits different colours when viewed from different angles, appearing white, creamy pink or grayish blue.\",\n  \"robotics\": \"Robotics are used to perform simple automated tasks or to act as avatars for remotely located humans in hazardous environments. They are also used for repetitive and highly accurate production line tasks.\",\n  \"rockforthfertiliser\": \"A synthetic material designed to provide growing plants with essential nutrients.\",\n  \"rusanioldsmokey\": \"Guaranteed genuine non-synthetic tobacco. Fully certified as organic. The only harm done is to yourself.\",\n  \"rutile\": \"Rutile: Titanium Oxide, TiO2. Titanium Ore. A wine-red crystalline mineral used in creating ceramics in high refraction options, and of course refined to produce titanium.\",\n  \"sap8corecontainer\": \"This container holds a crystalline shard of unknown origin. Scans indicate that the foot long shard is suspended inside a modified, self-sustaining, fusion-core containment field. Any breach of the field will result in the containers destruction.\",\n  \"samarium\": \"Samarium, Sm, atomic number 62. Melting point 1345K. This element has remarkable magnetisation properties, far exceeding that of iron. It is also commonly used as a catalyst and chemical reagent.\",\n  \"sanumameat\": \"One of the most inventive of synthetic meat specialists, growing the meat into fabulous sculptures of flesh \\\"grown on the bone\\\".\",\n  \"saxonwine\": \"A near perfect replication of the famed 2093 vintage wines produced on ancient Earth. That year's wine was universally declared the best ever produced, and has yet to be topped. Scientists on Hill Orbital station were able to replicate the famous wine, and now guard the secrets of their formular with great care.\",\n  \"scientificresearch\": \"A collection of data and equipment, the results of a series of scientific experiments and observations.\",\n  \"scientificsamples\": \"Most scientific sample analysis is done on site, although certain types of projects require further or separate analysis. These finds can sometimes lead to breakthroughs and are also highly sought after by private collectors.\",\n  \"scrap\": \"Assorted unwanted refuse with a high metal content.\",\n  \"semiconductors\": \"Extremely pure semiconducting crystalline materials are used extensively in the electronics industry.\",\n  \"serendibite\": \"Serendibite is a pale yellow, blue-green or greyish blue silicate mineral that takes its name from Serendib, the old Arabic name for Sri Lanka.\",\n  \"shanscharisorchid\": \"Named after its discoverer's late baby daughter, this rare and delicate member of the Orchidaceae family is famed for its short but spectacular flowering and for its exquisite aroma which lingers long in the memory after the flower itself has faded.\",\n  \"silver\": \"Silver, Ag, atomic number 47. Melting point 1234K. A precious metal valued in jewelry. It also has many useful industrial properties being the best electrical and thermal conductor of any metal, and also the most reflective, and so is widely used in high tech applications, either in its pure form or alloyed with other metals.\",\n  \"skimercomponents\": \"These maintenance and repair packs are used to keep skimmers operational.\",\n  \"slaves\": \"Bonded men and women. Almost universally illegal and shunned by most civilized nations. Great efforts have been made to stamp out this trade in misery, however a few markets remain open.\",\n  \"smallexplorationdatacash\": \"Finding the data cache from a survey mission is a rare, but often lucrative, find for explorers. These caches are constantly in demand from academic institutions and commercial interests.\",\n  \"soontillrelics\": \"A slab of unidentified material covered in pictographs of an unknown origin. This relic is part of a cache of similar artefacts that were uncovered by explorers researching lost alien civilizations in the Soontil system. Sold by Garry's Reclamations, Cheranovsky City, Ngurii.\",\n  \"sothiscrystallinegold\": \"When gold is exposed to the rare gas coming from thermal vents on the sea beds of the twin Earth like planets in Sothis A5 and Sothis A6, it forms into a previously unseen crystalline structure unlike other crystalline gold. Scientists and engineers are only just beginning to discover the technological applications for this rare form of gold.\",\n  \"spacepioneerrelics\": \"Items from mankind's first attempts at space exploration and research.\",\n  \"structuralregulators\": \"These monitor structural stability of buildings under a broad range of gravities. They will generate alerts if dangerous stresses or damage is detected.\",\n  \"superconductors\": \"Complex highly pure alloys have zero resistance to electricity below a certain temperature. Such superconducting alloys are used in High Tech and Industrial economies to create a wide range of devices.\",\n  \"surfacestabilisers\": \"Unique polymer that is injected into the surrounding rock providing a stable environment for construction.\",\n  \"survivalequipment\": \"A selection of absolute essentials needed to survive in extreme conditions.\",\n  \"syntheticfabrics\": \"Textile material created from artificial fibres. Used by industry for clothing and lightweight construction materials.\",\n  \"syntheticmeat\": \"Meat that is synthesised in an industrial scale. The process relies on DNA from species from old Earth. The DNA is adjusted so muscle tissue is grown in huge quantities without the rest of the animal.\",\n  \"syntheticreagents\": \"A selection of inorganic molecules used in the creation and manipulation of a wide range of organic compounds\",\n  \"taaffeite\": \"Taaffeite; chemical formula BeMgAl4O8, is a rare gemstone with a purple hue, used in jewellery and other crafts.\",\n  \"tacticaldata\": \"Encrypted documents detailing logistics, armament control points and infrastructure. Possession of such documents is illegal, due to their sensitive nature. There is a limited black market demand for these items as their military grade encryption makes them almost impossible to crack.\",\n  \"tanmarktranquiltea\": \"An infusion of native herbs renowned for its sedative effects.\",\n  \"tantalum\": \"Tantalum, Ta, atomic number 73. Melting point 3290K. Used to make capacitors and high melting point alloys used in reactors and by the military for specialist alloys used in weapons for armour penetration.\",\n  \"tarachtorspice\": \"Made from crushed beetles, this mild euphoric drug has a number of side effects including turning the whites of addicts' eyes a subtle shade of green. Widely illegal, but favoured in many anarchic systems where the green eyes are seen as a badge of an extreme lifestyle.\",\n  \"taurichimes\": \"These hand crafted wind chimes are specially tuned to stimulate a variety of spiritual and physical responses. They are known for helping people find inner peace, or direction, and are guaranteed to keep your chakras aligned.\",\n  \"tea\": \"Used ceremonially as well as for its stimulant effects. Tea remains a beverage with historic roots and there is great rivalry between those that drink tea and those that drink coffee.\",\n  \"usscargotechnicalblueprints\": \"Blueprints of a patented new machinery and systems that are highly prized on the black market. Copyright theft is frowned upon by the authorities and those carrying illegally acquired blueprints can face extreme application of the law.\",\n  \"telemetrysuite\": \"Telemetry suites provide access to information flows relating to specific components within a system.\",\n  \"terramaterbloodbores\": \"A potent physical stimulant produced using extracts of a native Terra Mater carnivorous plant. When added to the user's circulatory system, it allows a human to exert themselves far beyond their normal capabilities. The side effects are often permanent with increased likelihood of haemorrhaging and weight loss.\",\n  \"thallium\": \"Thallium, Tl, atomic number 81. Melting point 577K. is a post-transition metal. It has a number of technological uses including medical imaging, infra-red optics and high temperature super conductivity.\",\n  \"thargoidtissuesampletype2\": \"A sample of bio-mechanical tissue taken from a Thargoid Interceptor-class vessel. This sample has come from a variant known as a Basilisk and appears older and more developed than samples taken from the Cyclops variant with denser biological matter and more intricate technological elements. Tissue samples appear to be highly sought after for research purposes despite the fact that they appear to be highly corrosive.\",\n  \"unknownbiologicalmatter\": \"A bio-mechanical canister containing Thargoid biological matter. This material plays a part in the construction of Thargoid structures, technology and ships.\",\n  \"thargoidtissuesampletype1\": \"A sample of bio-mechanical tissue taken from a Thargoid Interceptor-class vessel. This sample has been taken from a variant known as a Cyclops and contains both biological and mechanical elements. Tissue samples appear to be highly sought after for research purposes despite the fact that they appear to be highly corrosive.\",\n  \"thargoidheart\": \"A processing node recovered from a Thargoid ship. These objects are integral to the flight and operational systems of Thargoid vessels.\",\n  \"thargoidtissuesampletype4\": \"A sample of bio-mechanical tissue from a Thargoid Interceptor-class vessel. This sample is from the Hydra variant, and is therefore more developed than samples from other kinds of Interceptor, with denser biological matter and more intricate technological elements. Such samples are highly sought after by scientists despite being highly corrosive.\",\n  \"unknownartifact3\": \"A piece of Thargoid technology typically found at Thargoid surface sites.\",\n  \"thargoidtissuesampletype3\": \"A sample of bio-mechanical tissue taken from a Thargoid Interceptor-class vessel. This sample has come from a variant known as a Medusa and appears older and more developed than samples taken from both the Cyclops and Basilisk variants with denser biological matter and more intricate technological elements. Tissue samples appear to be highly sought after for research purposes despite the fact that they appear to be highly corrosive.\",\n  \"unknownartifact2\": \"These Thargoid objects are capable of emitting an electro-magnetic pulse that can temporarily incapacitate a starship.\",\n  \"unknownresin\": \"A bio-mechanical canister containing Thargoid resin. This substance can be used to lubricate the internal systems of Thargoid technology when wet, and to protect and reinforce structures when dry. When converted into a gas it is highly corrosive.\",\n  \"thargoidscouttissuesample\": \"A sample of bio-mechanical tissue taken from a Thargoid Scout-class vessel. Tissue samples appear to be much sought after for research purposes, despite the fact that they appear to be highly corrosive.\",\n  \"unknownartifact\": \"These strange objects are of Thargoid origin. They have the ability to repair themselves by extracting non-organic material from their immediate environment, and this self-repair mechanism can severely damage starships and other machinery. They can also scan nearby vessels and celestial bodies, and transmit information about the scanned object in an encrypted form.\",\n  \"unknowntechnologysamples\": \"A bio-mechanical canister containing Thargoid technological samples. This material plays a part in the construction of Thargoid structures and ships.\",\n  \"thehuttonmug\": \"Delivered over vast distances by those in search of a profit, the Hutton Mug, is only sold to Commanders who make the painfully long journey to Hutton Orbital. Made from the salvaged frame shift drive plates of ships that ran out of fuel before reaching the station, this is purely a vanity item commemorating the epic journey. Its value lies in its rarity and latent frame shift energies keeping your drink that little bit warmer for the journey.\",\n  \"thermalcoolingunits\": \"These draw excess heat from surrounding material to enable habitation in even the most extreme environments.\",\n  \"thorium\": \"Thorium, Th, atomic number 90. Melting point 2023K. A radioactive actinide metal. It was once used in ancient fission reactions. It is still used by some medical technology and as a component in advanced ceramics.\",\n  \"thrutiscream\": \"A curious mix of fermented Thrutis Giant Rat milk and raw turtle egg yolks produces a potent mix similar to Ancient Advocaat. Each bottle is provided with a ceremonial tasting spoon, to ease the pouring of this viscous, but delicious drink.\",\n  \"tiegfriessynthsilk\": \"Spun from atoms, using a number of interconnected particle colliders, this silk is almost indistinguishable from the real thing.\",\n  \"timecapsule\": \"These canisters are of historical interest and highly collectable although sometimes the contents have turned to dust with age.\",\n  \"tiolcewaste2pasteunits\": \"The original and best, turning all your waste into a nutritious and wholesome paste.\",\n  \"titanium\": \"Titanium, Ti, atomic 22. Melting point 1941K. A lustrous, silver-grey, low density, high strength metal that is used in a great many industrial applications, including high spec spacecraft hulls.\",\n  \"tobacco\": \"A naturally occurring plant whose leaves, when dried and shredded, are a source of nicotine, a mild and expensive organic narcotic. Usually chewed or smoked, and used in ancient rituals. Illegal in many jurisdictions.\",\n  \"toxandjivirocide\": \"Engineered to order, Toxandji Virocide can be created to target whatever pest or parasite is effecting your crops. This highly intelligent virus can be programmed to self terminate at the end of a season, or to hibernate in preparation for the next cycle.\",\n  \"toxicwaste\": \"Toxic waste is illegal in most parts of the galaxy. Hazardous toxic waste that is unsafe for human contact. Highly volatile, likely to leak and may explode when damaged.\",\n  \"usscargotradedata\": \"The trade manifest data for a ship that met its end nearby. The information contained within can be extremely useful to unscrupulous individuals and fetches a good price on the black market. However, illegal salvage is punishable by law.\",\n  \"trinketsoffortune\": \"This container appears to hold an assorted collection of low-value trinkets, knick-knacks and statuettes. Such trinkets are generally used by superstitious pilots to try and win favour with the lady Fortuna. However, these particular knick-knacks have a much more valuable prize hidden within.\",\n  \"tritium\": \"Tritium is a beta-emitting radioactive isotope of hydrogen. It is an important ingredient for boosting nuclear fusion reactions.\",\n  \"advert1\": \"These new processor prototypes have already demonstrated their versatility and capability. The combination of organic and nano fabrication makes them difficult to manufacture.\",\n  \"unstabledatacore\": \"These ubiquitous devices provide extensive data storage, but are extremely volatile when damaged. They must be returned by the end date for information retrieval or their contents become unusable.\",\n  \"uraninite\": \"Uraninite: chemical formula UO2. A radioactive ore, radioactive principally because of the small amount of the isotope U235 present. Refined into Uranium at some refineries. Uranium was used for power early in human history, using refined U235 in fission reactors, but now is mainly used for biotech applications. Illegal in some jurisdictions.\",\n  \"uranium\": \"Uranium, U, atomic number 92. Melting point 1405K. Uranium is a silvery grey metal, usually found as a mix of isotopes, mostly U238, and typically less than 1% of the radioactive U235. As a whole it is only weakly radioactive. it is chemically toxic but useful element in industry, mainly because of its density. In early human history it was used as a power source in fission reactors. Standard canisters offer sufficient protection from the low level of radiation.\",\n  \"uszaiantreegrub\": \"This grub was introduced to the system from Lave, in an attempt to create a wildlife reserve for endangered species. Unfortunately the grubs mutated and evolved in their new environment, and the project failed. The evolved grubs were found to have a delicious flavor and surprising texture, and have since become a delicacy.\",\n  \"utgaroarmillenialeggs\": \"These eggs have been buried deep in the highly alkaline Utgaroarian soil around the many active geysers, where they are slowly cooked by the natural heat of the planet and take on a distinctive purple color and their prized bittersweet taste.\",\n  \"uzumokulowgwings\": \"Have you ever wanted to fly? Uzumoku Low-G Wings provide you with enough lift and thrust to soar like a bird, and are practical and stylish from their discreet shoulder mounted unit! Sadly they can only function in suitable low G environments.\",\n  \"vherculisbodyrub\": \"Available in a variety of textures, this scrub can exfoliate just about anything!\",\n  \"vanayequirhinofur\": \"Genetically regressive rhinoceroses were originally introduced to Vanayequi to provide a reliable source of leather for nearby industries. The genetic modification was successful in reducing the animal's aggressive tendencies, but had unintended side effects. As the ceratomorphs returned to a more primitive state, they began growing soft, lush fur. This fur is now prized around the galaxy for its resilience and warmth.\",\n  \"vegaslimweed\": \"Initially thought to be a plant, settlers of the system would swallow it whole for its slimming and appetite reducing qualities. The revelation that the plant is actually a parasitic life form has not reduced its popularity. Those infested have reported a difficulty in removing the parasite once it has established, but the benefits include an immunity to certain biological poisons. The parasite must be purged before it begins to pupate.\",\n  \"vidavantianlace\": \"Specially engineered vines weave fine lace into intricate natural patterns. These highly fragile plants work slow and die if taken from their native environment.\",\n  \"lftvoidextractcoffee\": \"Brewed using particularly robust beans, the flavour and caffeine is extracted from the beans using custom technology. Harnessing the power of the vacuum of space to enrich comet water, the method creates a beverage noted for its potency.\",\n  \"opal\": \"Void opals are a mineraloid prized by various cultures. Their lack of reflectivity means that they seem almost to absorb light, hence their name.\",\n  \"volkhabbeedrones\": \"Guaranteed pollination every time! These miniature drones are supplied in the thousands to ensure your crops are fertilised whatever the conditions. Unlike natural bees, they can be used in conjunction with pesticides and can be supplied pre-coated with your choice of growth agents!\",\n  \"water\": \"H2O. A chemical compound that is vital to human life and useful in a number of industrial processes.\",\n  \"waterpurifiers\": \"Water purifiers and components and consumables for them. All space installations are reliant on recycled water, so water purification is vital for survival. Some units are set up to medicate the purified water to maintain the correct mood of inhabitants.\",\n  \"watersofshintara\": \"The medical qualities of the mineral waters of Shintara are decried by many in the scientific community as nonsense. This has not stopped widespread rumours that water from the planet can cure almost any ailment, and even reverse the ageing process. The company that controls the source of this water are happy to allow the rumours to continue, and people all over the galaxy are willing to pay a small fortune for the real thing.\",\n  \"wheemetewheatcakes\": \"These cakes were originally used as packing material for expensive machinery, but when plant owners realised they were edible, they soon became the workers staple diet. The wheat cakes produced today are made using the traditional recipe.\",\n  \"wine\": \"A luxury drink made from fermented fruits, containing alcohol, a mild narcotic, and is grown organically. Occasionally illegal because of the alcohol content.\",\n  \"witchhaulkobebeef\": \"A traditional breed from the Tajima strain of wagyu cattle in Kobe in Japan on ancient Earth, they remain most pampered cattle in human space. Taken from Kobe before the Earth's serious environmental decline, the cattle are fed a secret mix of rare grains and brushed daily. Now unique to Witchhaul, this is one of the most priced meats there is.\",\n  \"wolf1301fesh\": \"A synthetic psychoactive drug based on a closely guarded secret recipe. While active, it causes the user to lock their teeth together and rapidly exhale, a reaction that led to its street name, Fesh. There are many poor imitations but Wolf 1301 Fesh is the original and remains the most expensive due to its consistent quality. Banned in most jurisdictions.\",\n  \"wreckagecomponents\": \"Accidents in space often leave a lot of debris, some of that wreckage should be useful in determining the cause of the accident. They should be handed in to whichever organisation has called for their collection, however they also generate some demand as morbid momentos or simply as scrap.\",\n  \"wulpahyperboresystems\": \"Wulpa Engineering Systems are constantly working to improve and enhance on existing models, with the Wulpa Hyperbore System representing the latest in automated mineral extraction services.\",\n  \"wuthielokufroth\": \"Not strictly a beer, this light alcoholic beverage is made from fermented frog spawn which is then filtered through rush mats.\",\n  \"xihecompanions\": \"We make the most realistic and exclusive animal companions using the latest technology and robotics, better than nature and guaranteed to last. Rigorous testing ensures that all our animals conform to the appropriate legislation on artificial intelligence.\",\n  \"yasokondileaf\": \"A native plant that exhibits similar properties to tobacco, but without the harmful effects. Discovered through observing its effects on the local fauna.\",\n  \"zeesszeantglue\": \"Stick anything to everything with this natural glue, made from the cocoons of indigenous insects. It is non-toxic and can be easily removed using a resin secreted by the queen ant.\"\n}"
  },
  {
    "path": "src/service/data/edcd/coriolis/blueprints.json",
    "content": "[\n  {\n    \"fdname\": \"AFM_Shielded\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Worn Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"c879e8d2-290a-471e-833c-eaea947a20c1\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0.6,\n              1.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.4,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"90981fc0-8c0e-4b86-a656-9ef1a9a7fa00\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"High Density Composites\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              1.2,\n              1.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.6,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"30976550-2ff1-46e2-9687-ae3faa4f4701\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Proprietary Composites\": 1,\n          \"Shielding Sensors\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              1.8,\n              2.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.8,\n              0.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"82195e56-cfe5-4996-a821-a820dcd9405d\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Core Dynamics Composites\": 1,\n          \"Compound Shielding\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              2.4,\n              3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              1,\n              1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"191479fe-5459-11eb-a2cb-6805caa43529\"\n      }\n    },\n    \"id\": 3,\n    \"modulename\": [\n      \"Auto field maintenance unit\",\n      \"AFMU\"\n    ],\n    \"name\": \"Shielded\",\n    \"symbol\": \"AFM_Shielded\",\n    \"engineers\": {\n      \"Bill Turner\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Lori Jameson\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"Armour_Advanced\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              0,\n              0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Hull Boost\": {\n            \"value\": [\n              -0.01,\n              -0.01\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0,\n              0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0,\n              -0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0,\n              0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"fb33c5c9-24e4-48b5-8227-cc7b855572cd\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              0.03,\n              0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Hull Boost\": {\n            \"value\": [\n              -0.02,\n              -0.02\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.03,\n              0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.15,\n              -0.25\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.03,\n              0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"a9417081-356c-43d7-bf30-9cc1de0c62a1\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"High Density Composites\": 1,\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              0.06,\n              0.09\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Hull Boost\": {\n            \"value\": [\n              -0.03,\n              -0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.06,\n              0.09\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.25,\n              -0.35\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.06,\n              0.09\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"b93f110f-c467-4340-8496-9ea99332ef55\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Germanium\": 1,\n          \"Proprietary Composites\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              0.09,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Hull Boost\": {\n            \"value\": [\n              -0.04,\n              -0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.09,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.35,\n              -0.45\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.09,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"4b9c30c9-0acf-4b56-bce9-3fc65be95382\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Military Grade Alloys\": 1,\n          \"Tin\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              0.12,\n              0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Hull Boost\": {\n            \"value\": [\n              -0.05,\n              -0.05\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.12,\n              0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.45,\n              -0.55\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.12,\n              0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"b97b8100-b8bb-4ef3-84bf-65f9b49eaa30\"\n      }\n    },\n    \"id\": 6,\n    \"modulename\": [\n      \"Bulkheads\",\n      \"Armour\"\n    ],\n    \"name\": \"Lightweight\",\n    \"symbol\": \"Armour_Advanced\",\n    \"engineers\": {\n      \"Liz Ryder\": {\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      \"Selene Jean\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"Armour_Explosive\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              0,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              -0.04,\n              -0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              -0.04,\n              -0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"c74fe800-a8c1-4ae9-95a1-47a8a9d1f10d\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Zinc\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              0.12,\n              0.19\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              -0.06,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              -0.06,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"78f76eb3-ac9e-47bd-be6f-a26b4fdf9c57\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Salvaged Alloys\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              0.19,\n              0.26\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              -0.08,\n              -0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              -0.08,\n              -0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"83ea4fd2-2eee-4cfb-baa6-d6c314f58b8d\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Galvanising Alloys\": 1,\n          \"Mercury\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              0.26,\n              0.33\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"9656e75a-a8ac-454f-941a-9fe4b4f6a330\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Molybdenum\": 1,\n          \"Phase Alloys\": 1,\n          \"Ruthenium\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              0.33,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              -0.12,\n              -0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              -0.12,\n              -0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"37e0788b-6f7d-43c8-89ca-decaff5f3653\"\n      }\n    },\n    \"id\": 5,\n    \"modulename\": [\n      \"Bulkheads\",\n      \"Armour\"\n    ],\n    \"name\": \"Blast resistant\",\n    \"symbol\": \"Armour_Explosive\",\n    \"engineers\": {\n      \"Liz Ryder\": {\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      \"Selene Jean\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"Armour_HeavyDuty\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Carbon\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              0,\n              0.01\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Hull Boost\": {\n            \"value\": [\n              0,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0,\n              0.01\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.1,\n              0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0,\n              0.01\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"f9d519ab-b6f6-4d81-a93b-8f4fb45edd55\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              0.01,\n              0.02\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Hull Boost\": {\n            \"value\": [\n              0.12,\n              0.17\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.01,\n              0.02\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.15,\n              0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.01,\n              0.02\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"ab58e035-3128-4eec-8974-cbbff022d31e\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"High Density Composites\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              0.02,\n              0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Hull Boost\": {\n            \"value\": [\n              0.17,\n              0.22\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.02,\n              0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.02,\n              0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"20afd6a5-5a72-4825-813d-b660fe796cb3\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Proprietary Composites\": 1,\n          \"Shielding Sensors\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              0.03,\n              0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Hull Boost\": {\n            \"value\": [\n              0.22,\n              0.27\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.03,\n              0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.25,\n              0.25\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.03,\n              0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"e08d3ec0-79e1-4d9f-ae16-6bd0a7e5b5c4\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Compound Shielding\": 1,\n          \"Core Dynamics Composites\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              0.04,\n              0.05\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Hull Boost\": {\n            \"value\": [\n              0.27,\n              0.32\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.04,\n              0.05\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.3,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.04,\n              0.05\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"58b95d8a-1066-4e22-957f-0beb3927a2dd\"\n      }\n    },\n    \"id\": 7,\n    \"modulename\": [\n      \"Bulkheads\",\n      \"Armour\"\n    ],\n    \"name\": \"Heavy duty\",\n    \"symbol\": \"Armour_HeavyDuty\",\n    \"engineers\": {\n      \"Liz Ryder\": {\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      \"Selene Jean\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"Armour_Kinetic\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              -0.04,\n              -0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              -0.04,\n              -0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"285736a7-9677-4875-b425-0704d2c05ee6\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Nickel\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              -0.06,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.12,\n              0.19\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              -0.06,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"816adb1f-c089-49b6-b52d-a8ca189a4ef5\"\n      },\n      \"3\": {\n        \"components\": {\n          \"High Density Composites\": 1,\n          \"Salvaged Alloys\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              -0.08,\n              -0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.19,\n              0.26\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              -0.08,\n              -0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"54c5cc67-3112-4c77-87f9-c5d6a5f0ae3c\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Galvanising Alloys\": 1,\n          \"Proprietary Composites\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.26,\n              0.33\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"80cdd75d-a574-4092-b45d-77187e52edf5\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Core Dynamics Composites\": 1,\n          \"Molybdenum\": 1,\n          \"Phase Alloys\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              -0.12,\n              -0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.33,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              -0.12,\n              -0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"f56d18cc-3eca-4bec-8238-4a0105947e4e\"\n      }\n    },\n    \"id\": 4,\n    \"modulename\": [\n      \"Bulkheads\",\n      \"Armour\"\n    ],\n    \"name\": \"Kinetic resistant\",\n    \"symbol\": \"Armour_Kinetic\",\n    \"engineers\": {\n      \"Liz Ryder\": {\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      \"Selene Jean\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"Armour_Thermic\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Heat Conduction Wiring\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              -0.04,\n              -0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              -0.04,\n              -0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"73c3a3c1-da09-4792-a1e9-d0161da6c0f2\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Heat Dispersion Plate\": 1,\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              -0.06,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              -0.06,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.12,\n              0.19\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"f3096b56-d6d2-4aa5-a77c-98ce2adc79dc\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Heat Exchangers\": 1,\n          \"Salvaged Alloys\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              -0.08,\n              -0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              -0.08,\n              -0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.19,\n              0.26\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"1aa48c57-d187-4e82-aa88-8b4a7a4bc856\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Galvanising Alloys\": 1,\n          \"Heat Vanes\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.26,\n              0.33\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"afc78426-8570-4ad4-923a-794821c2506f\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Molybdenum\": 1,\n          \"Phase Alloys\": 1,\n          \"Proto Heat Radiators\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              -0.12,\n              -0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              -0.12,\n              -0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.33,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"12abc854-37c9-4f20-874d-dca8755e76fc\"\n      }\n    },\n    \"id\": 8,\n    \"modulename\": [\n      \"Bulkheads\",\n      \"Armour\"\n    ],\n    \"name\": \"Thermal resistant\",\n    \"symbol\": \"Armour_Thermic\",\n    \"engineers\": {\n      \"Liz Ryder\": {\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      \"Selene Jean\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"Misc_LightWeight\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Phosphorus\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              0,\n              -0.45\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"5ebd5d76-7bb8-4958-9cc3-f5e2176f2b5e\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Manganese\": 1,\n          \"Salvaged Alloys\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.2,\n              -0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.45,\n              -0.55\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"c49d42a8-cd8f-4576-9c60-85725f635185\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Manganese\": 1,\n          \"Salvaged Alloys\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.3,\n              -0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.55,\n              -0.65\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"bc048a95-b5aa-4f6c-a696-6c40b87a1606\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Phase Alloys\": 1,\n          \"Proto Light Alloys\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.4,\n              -0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.65,\n              -0.75\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"4f9467f7-0c5f-4ab3-856b-aaad019bd79d\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Proto Light Alloys\": 1,\n          \"Proto Radiolic Alloys\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.5,\n              -0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.75,\n              -0.85\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"15d2a67d-71b5-405a-ba21-4f94583064a3\"\n      }\n    },\n    \"id\": 9,\n    \"modulename\": [\n      \"Chaff launcher\",\n      \"Electronic counter measures\",\n      \"ECM\",\n      \"Wake scanner\",\n      \"Frame shift wake scanner\",\n      \"Heat sink launcher\",\n      \"Kill warrant scanner\",\n      \"KWS\",\n      \"Cargo scanner\",\n      \"Manifest scanner\",\n      \"Point defence\"\n    ],\n    \"name\": \"Lightweight\",\n    \"symbol\": \"Misc_LightWeight\",\n    \"engineers\": {\n      \"Bill Turner\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Lori Jameson\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Tiana Fortune\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Juri Ishmaak\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Etienne Dorn\": {\n        \"grades\": [\n          \"1\",\n          \"2\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"Misc_Reinforced\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.3,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"9b714883-e0e7-46b5-a2bb-5367f2cc9b3f\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Nickel\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0.6,\n              1.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.6,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"9de3e096-fbfa-4694-a2e4-919494d39ee1\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Nickel\": 1,\n          \"Shield Emitters\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              1.2,\n              1.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.9,\n              0.9\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"4a5d7441-2543-4405-8587-9b969fffd3f2\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Molybdenum\": 1,\n          \"Tungsten\": 1,\n          \"Zinc\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              1.8,\n              2.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              1.2,\n              1.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"f4b41ce9-d3a8-4362-9821-0d45f2b975bc\"\n      },\n      \"5\": {\n        \"components\": {\n          \"High Density Composites\": 1,\n          \"Molybdenum\": 1,\n          \"Technetium\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              2.4,\n              3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              1.5,\n              1.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"d5d06450-a1cf-4dd2-b8f0-12d0142ad773\"\n      }\n    },\n    \"id\": 10,\n    \"modulename\": [\n      \"Chaff launcher\",\n      \"Electronic counter measures\",\n      \"ECM\",\n      \"Wake scanner\",\n      \"Frame shift wake scanner\",\n      \"Heat sink launcher\",\n      \"Kill warrant scanner\",\n      \"KWS\",\n      \"Cargo scanner\",\n      \"Manifest scanner\",\n      \"Point defence\"\n    ],\n    \"name\": \"Reinforced\",\n    \"symbol\": \"Misc_Reinforced\",\n    \"engineers\": {\n      \"Bill Turner\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Lori Jameson\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Tiana Fortune\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Juri Ishmaak\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Etienne Dorn\": {\n        \"grades\": [\n          \"1\",\n          \"2\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"Misc_Shielded\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Worn Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"f3684224-dfb1-4b30-81df-827246ccce14\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0.6,\n              1.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.4,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"0fec52b1-3a81-4260-8168-7af698e9ebf3\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"High Density Composites\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              1.2,\n              1.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.6,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"6ca69c4f-07b6-43e4-97c9-e9134cb1eaf4\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Proprietary Composites\": 1,\n          \"Shielding Sensors\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              1.8,\n              2.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.8,\n              0.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"e6ebc222-ec93-4f0f-ac8a-e690ab50656d\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Compound Shielding\": 1,\n          \"Core Dynamics Composites\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              2.4,\n              3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              1,\n              1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"b307db6f-a54c-49e9-be82-5a4458661fe1\"\n      }\n    },\n    \"id\": 11,\n    \"modulename\": [\n      \"Chaff launcher\",\n      \"Electronic counter measures\",\n      \"ECM\",\n      \"Wake scanner\",\n      \"Frame shift wake scanner\",\n      \"Heat sink launcher\",\n      \"Kill warrant scanner\",\n      \"KWS\",\n      \"Cargo scanner\",\n      \"Manifest scanner\",\n      \"Point defence\"\n    ],\n    \"name\": \"Shielded\",\n    \"symbol\": \"Misc_Shielded\",\n    \"engineers\": {\n      \"Bill Turner\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Lori Jameson\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Tiana Fortune\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Juri Ishmaak\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Etienne Dorn\": {\n        \"grades\": [\n          \"1\",\n          \"2\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"Misc_ChaffCapacity\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Mechanical Scrap\": 1,\n          \"Niobium\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"Ammo Maximum\": {\n            \"value\": [\n              0,\n              0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              1,\n              1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Reload Time\": {\n            \"value\": [\n              0.1,\n              0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"cc81fa92-d36d-4619-98f9-4202d475b2d8\"\n      }\n    },\n    \"id\": 12,\n    \"modulename\": [\n      \"Chaff launcher\"\n    ],\n    \"name\": \"Ammo capacity\",\n    \"symbol\": \"Misc_ChaffCapacity\",\n    \"engineers\": {\n      \"Petra Olmanova\": {\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      \"Ram Tah\": {\n        \"grades\": [\n          \"1\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"CollectionLimpet_LightWeight\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Phosphorus\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              0,\n              -0.45\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"40d015c8-e3c3-4e6c-8703-0e5dc0c0ca7a\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Manganese\": 1,\n          \"Salvaged Alloys\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.2,\n              -0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.45,\n              -0.55\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"4f4f23cf-fb43-4542-8d60-c96cf884c3c9\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Manganese\": 1,\n          \"Salvaged Alloys\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.3,\n              -0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.55,\n              -0.65\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"9c4ebeff-12e1-4f0e-a972-bb8d4d7e4f08\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Phase Alloys\": 1,\n          \"Proto Light Alloys\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.4,\n              -0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.65,\n              -0.75\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"befa7711-25fa-49d2-97fb-3f8a4cc8b91e\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Proto Light Alloys\": 1,\n          \"Proto Radiolic Alloys\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.5,\n              -0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.75,\n              -0.85\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"d5c4d258-6597-4557-bc1b-b4afc7b59784\"\n      }\n    },\n    \"id\": 16,\n    \"modulename\": [\n      \"Collector limpet controller\"\n    ],\n    \"name\": \"Lightweight\",\n    \"symbol\": \"CollectionLimpet_LightWeight\",\n    \"engineers\": {\n      \"Ram Tah\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\"\n        ]\n      },\n      \"The Sarge\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Tiana Fortune\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"CollectionLimpet_Reinforced\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.3,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"d0451acd-f57f-46a5-ac1a-c2a2f1919283\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Nickel\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0.6,\n              1.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.6,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"ccbf3b26-6ded-4e86-b2dd-330280ca552f\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Nickel\": 1,\n          \"Shield Emitters\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              1.2,\n              1.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.9,\n              0.9\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"a841e48c-d34b-4dd2-b540-14910224398a\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Molybdenum\": 1,\n          \"Tungsten\": 1,\n          \"Zinc\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              1.8,\n              2.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              1.2,\n              1.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"de78dde7-c159-4d37-91e2-b6562dd754e4\"\n      },\n      \"5\": {\n        \"components\": {\n          \"High Density Composites\": 1,\n          \"Molybdenum\": 1,\n          \"Technetium\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              2.4,\n              3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              1.5,\n              1.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"2a175094-0490-41f1-ad85-1d199e69f768\"\n      }\n    },\n    \"id\": 17,\n    \"modulename\": [\n      \"Collector limpet controller\"\n    ],\n    \"name\": \"Reinforced\",\n    \"symbol\": \"CollectionLimpet_Reinforced\",\n    \"engineers\": {\n      \"Ram Tah\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\"\n        ]\n      },\n      \"The Sarge\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Tiana Fortune\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"CollectionLimpet_Shielded\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Worn Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"6e384cd7-1ab5-4a03-849f-d1a6d5711012\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0.6,\n              1.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.4,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"be06b5e7-44c0-4bb4-b084-ca5578cd5b26\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"High Density Composites\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              1.2,\n              1.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.6,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"d18a63f6-c96e-4e73-b4a1-70deeb27af9c\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Proprietary Composites\": 1,\n          \"Shielding Sensors\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              1.8,\n              2.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.8,\n              0.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"99d03d5e-1fd6-49b1-a99d-71571c35dca5\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Compound Shielding\": 1,\n          \"Core Dynamics Composites\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              2.4,\n              3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              1,\n              1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"bedb2a94-2d59-4ed1-9e51-58ae2cfb4189\"\n      }\n    },\n    \"id\": 18,\n    \"modulename\": [\n      \"Collector limpet controller\"\n    ],\n    \"name\": \"Shielded\",\n    \"symbol\": \"CollectionLimpet_Shielded\",\n    \"engineers\": {\n      \"Ram Tah\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\"\n        ]\n      },\n      \"The Sarge\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Tiana Fortune\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"Engine_Dirty\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Specialised Legacy Firmware\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.03,\n              -0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Mass\": {\n            \"value\": [\n              -0.025,\n              -0.025\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Multiplier\": {\n            \"value\": [\n              0,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.04,\n              0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"bbdea125-dd2b-4031-8698-56c922df3b76\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Mechanical Equipment\": 1,\n          \"Specialised Legacy Firmware\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.06,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Mass\": {\n            \"value\": [\n              -0.05,\n              -0.05\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Multiplier\": {\n            \"value\": [\n              0.12,\n              0.19\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.06,\n              0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              0.3,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"d3ccba04-e0f5-40c3-a6f8-a038d5e5b4bf\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Chromium\": 1,\n          \"Mechanical Components\": 1,\n          \"Specialised Legacy Firmware\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.09,\n              -0.09\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Mass\": {\n            \"value\": [\n              -0.075,\n              -0.075\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Multiplier\": {\n            \"value\": [\n              0.19,\n              0.26\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.08,\n              0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              0.4,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"60091d1f-38a9-4d62-bbc0-6332e03c7f3d\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Configurable Components\": 1,\n          \"Modified Consumer Firmware\": 1,\n          \"Selenium\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.12,\n              -0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Mass\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Multiplier\": {\n            \"value\": [\n              0.26,\n              0.33\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.1,\n              0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              0.5,\n              0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"7355e32e-b850-4428-8279-66f234f59c6a\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Cadmium\": 1,\n          \"Cracked Industrial Firmware\": 1,\n          \"Pharmaceutical Isolators\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.15,\n              -0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Mass\": {\n            \"value\": [\n              -0.125,\n              -0.125\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Multiplier\": {\n            \"value\": [\n              0.33,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.12,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              0.6,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"92514d80-4513-489e-b85f-1b7010b3ae0f\"\n      }\n    },\n    \"id\": 22,\n    \"modulename\": [\n      \"Thrusters\",\n      \"Engines\"\n    ],\n    \"name\": \"Dirty\",\n    \"symbol\": \"Engine_Dirty\",\n    \"engineers\": {\n      \"Elvira Martuuk\": {\n        \"grades\": [\n          \"1\",\n          \"2\"\n        ]\n      },\n      \"Felicity Farseer\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Professor Palin\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"Engine_Reinforced\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Carbon\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.05,\n              0.05\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"21503395-f165-4340-91c7-07d062895eae\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Heat Conduction Wiring\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0.3,\n              0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.1,\n              0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              -0.1,\n              -0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"452e2359-5804-4de1-94bf-d16c9d512cc4\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Heat Conduction Wiring\": 1,\n          \"Shielding Sensors\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0.5,\n              0.7\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.15,\n              0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              -0.2,\n              -0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"ae1a71bb-e025-4268-aa7f-fd4063945beb\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Compound Shielding\": 1,\n          \"Heat Dispersion Plate\": 1,\n          \"High Density Composites\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0.7,\n              0.9\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              -0.3,\n              -0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"4bc0b925-dd64-41da-a653-f15acf108f23\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Heat Exchangers\": 1,\n          \"Imperial Shielding\": 1,\n          \"Proprietary Composites\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0.9,\n              1.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.25,\n              0.25\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              -0.4,\n              -0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"88aef454-76f6-48a3-a66c-958e50c92e7c\"\n      }\n    },\n    \"id\": 23,\n    \"modulename\": [\n      \"Thrusters\",\n      \"Engines\"\n    ],\n    \"name\": \"Reinforced\",\n    \"symbol\": \"Engine_Reinforced\",\n    \"engineers\": {\n      \"Elvira Martuuk\": {\n        \"grades\": [\n          \"1\",\n          \"2\"\n        ]\n      },\n      \"Felicity Farseer\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Professor Palin\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"Engine_Tuned\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Sulphur\": 1\n        },\n        \"features\": {\n          \"Optimal Mass\": {\n            \"value\": [\n              -0.02,\n              -0.02\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Multiplier\": {\n            \"value\": [\n              0,\n              0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              0,\n              -0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"5b32dae1-7c4a-4760-8c48-0d9a9fa2758d\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Specialised Legacy Firmware\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.04,\n              -0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Mass\": {\n            \"value\": [\n              -0.04,\n              -0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Multiplier\": {\n            \"value\": [\n              0.08,\n              0.13\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.04,\n              0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              -0.2,\n              -0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"5382eecb-c840-4613-99c1-9bcbdb8d7760\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Specialised Legacy Firmware\": 1,\n          \"Unexpected Emission Data\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.08,\n              -0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Mass\": {\n            \"value\": [\n              -0.06,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Multiplier\": {\n            \"value\": [\n              0.13,\n              0.18\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.08,\n              0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              -0.3,\n              -0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"0c58a5c8-0bf9-4a2c-baf0-b14228f236df\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Decoded Emission Data\": 1,\n          \"Modified Consumer Firmware\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.12,\n              -0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Mass\": {\n            \"value\": [\n              -0.08,\n              -0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Multiplier\": {\n            \"value\": [\n              0.18,\n              0.23\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.12,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              -0.4,\n              -0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"afb2b22e-ab30-4195-8bfe-ae81ea6067f3\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Abnormal Compact Emissions Data\": 1,\n          \"Conductive Ceramics\": 1,\n          \"Tin\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.16,\n              -0.16\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Mass\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Multiplier\": {\n            \"value\": [\n              0.23,\n              0.28\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.16,\n              0.16\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              -0.5,\n              -0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"74e6e223-c709-4c91-88d5-c55f9dfdf722\"\n      }\n    },\n    \"id\": 24,\n    \"modulename\": [\n      \"Thrusters\",\n      \"Engines\"\n    ],\n    \"name\": \"Clean\",\n    \"symbol\": \"Engine_Tuned\",\n    \"engineers\": {\n      \"Elvira Martuuk\": {\n        \"grades\": [\n          \"1\",\n          \"2\"\n        ]\n      },\n      \"Felicity Farseer\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Professor Palin\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"FSD_FastBoot\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Grid Resistors\": 1\n        },\n        \"features\": {\n          \"Boot time\": {\n            \"value\": [\n              0,\n              -0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Integrity\": {\n            \"value\": [\n              -0.03,\n              -0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Mass\": {\n            \"value\": [\n              0,\n              0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              0.04,\n              0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"23f08173-4d05-49d2-b126-d9e5ea5ee8b5\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Chromium\": 1,\n          \"Grid Resistors\": 1\n        },\n        \"features\": {\n          \"Boot time\": {\n            \"value\": [\n              -0.2,\n              -0.35\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Integrity\": {\n            \"value\": [\n              -0.06,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Mass\": {\n            \"value\": [\n              0.03,\n              0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              0.08,\n              0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"56875992-02ae-4364-934c-88dbfda0cc57\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Grid Resistors\": 1,\n          \"Heat Dispersion Plate\": 1,\n          \"Selenium\": 1\n        },\n        \"features\": {\n          \"Boot time\": {\n            \"value\": [\n              -0.35,\n              -0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Integrity\": {\n            \"value\": [\n              -0.09,\n              -0.09\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Mass\": {\n            \"value\": [\n              0.06,\n              0.09\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              0.12,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"80c84723-9c37-434b-890e-8723504e5e48\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Cadmium\": 1,\n          \"Heat Exchangers\": 1,\n          \"Hybrid Capacitors\": 1\n        },\n        \"features\": {\n          \"Boot time\": {\n            \"value\": [\n              -0.5,\n              -0.65\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Integrity\": {\n            \"value\": [\n              -0.12,\n              -0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Mass\": {\n            \"value\": [\n              0.09,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              0.16,\n              0.16\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"3747180c-d798-4bc4-bb42-daecf44729cc\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Electrochemical Arrays\": 1,\n          \"Heat Vanes\": 1,\n          \"Tellurium\": 1\n        },\n        \"features\": {\n          \"Boot time\": {\n            \"value\": [\n              -0.65,\n              -0.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Integrity\": {\n            \"value\": [\n              -0.15,\n              -0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Mass\": {\n            \"value\": [\n              0.12,\n              0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"1f542f8e-9c17-418d-af88-6f219596465e\"\n      }\n    },\n    \"id\": 25,\n    \"modulename\": [\n      \"Frame shift drive\",\n      \"FSD\"\n    ],\n    \"name\": \"Faster boot sequence\",\n    \"symbol\": \"FSD_FastBoot\",\n    \"engineers\": {\n      \"Colonel Bris Dekker\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Elvira Martuuk\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Felicity Farseer\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Professor Palin\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"FSD_LongRange\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Atypical Disrupted Wake Echoes\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.03,\n              -0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              0.1,\n              0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Mass\": {\n            \"value\": [\n              0,\n              0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.03,\n              0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"bb67b1a2-7a5b-47bc-8ed8-e949b5e3fb16\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Atypical Disrupted Wake Echoes\": 1,\n          \"Chemical Processors\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.06,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              0.15,\n              0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Mass\": {\n            \"value\": [\n              0.15,\n              0.25\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.06,\n              0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"74045351-f348-45f5-8798-487211f19520\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Chemical Processors\": 1,\n          \"Phosphorus\": 1,\n          \"Strange Wake Solutions\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.09,\n              -0.09\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Mass\": {\n            \"value\": [\n              0.25,\n              0.35\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.09,\n              0.09\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"cf196bb9-55a1-457f-893b-84ff2afd4db9\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Chemical Distillery\": 1,\n          \"Eccentric Hyperspace Trajectories\": 1,\n          \"Manganese\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.12,\n              -0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              0.25,\n              0.25\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Mass\": {\n            \"value\": [\n              0.35,\n              0.45\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.12,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"ecf49fec-32fd-4930-949d-a341bf0fd00c\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Arsenic\": 1,\n          \"Chemical Manipulators\": 1,\n          \"Datamined Wake Exceptions\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.15,\n              -0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              0.3,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Mass\": {\n            \"value\": [\n              0.45,\n              0.55\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.15,\n              0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"dddd4fd3-bc9a-4c5b-8606-853c63d0f554\"\n      }\n    },\n    \"id\": 26,\n    \"modulename\": [\n      \"Frame shift drive\",\n      \"FSD\"\n    ],\n    \"name\": \"Increased range\",\n    \"symbol\": \"FSD_LongRange\",\n    \"engineers\": {\n      \"Colonel Bris Dekker\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Elvira Martuuk\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Felicity Farseer\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Professor Palin\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"FSD_Shielded\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0,\n              0.25\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.04,\n              0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Mass\": {\n            \"value\": [\n              0,\n              0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              0,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"0bf46ac9-dfcd-49c3-bcef-db93ba04ed97\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0.25,\n              0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.08,\n              0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Mass\": {\n            \"value\": [\n              0.03,\n              0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              -0.1,\n              -0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"2858e680-b675-4ee9-9c24-04e8dd2bfe85\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Shielding Sensors\": 1,\n          \"Zinc\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0.5,\n              0.75\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.12,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Mass\": {\n            \"value\": [\n              0.06,\n              0.09\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              -0.15,\n              -0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"f836e994-c19f-4ed0-926d-fbcc75f136c0\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Compound Shielding\": 1,\n          \"High Density Composites\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0.75,\n              1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.16,\n              0.16\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Mass\": {\n            \"value\": [\n              0.09,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              -0.2,\n              -0.25\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"fe30a1a0-3644-4411-af1f-59bae0a565b9\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Imperial Shielding\": 1,\n          \"Proprietary Composites\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              1,\n              1.25\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Mass\": {\n            \"value\": [\n              0.12,\n              0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              -0.25,\n              -0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"eba5e423-bba4-40c1-aafb-e954881f9f2c\"\n      }\n    },\n    \"id\": 27,\n    \"modulename\": [\n      \"Frame shift drive\",\n      \"FSD\"\n    ],\n    \"name\": \"Shielded\",\n    \"symbol\": \"FSD_Shielded\",\n    \"engineers\": {\n      \"Colonel Bris Dekker\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Elvira Martuuk\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Felicity Farseer\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Professor Palin\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"FSDinterdictor_Expanded\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Mechanical Scrap\": 1\n        },\n        \"features\": {\n          \"Facing Limit\": {\n            \"value\": [\n              0,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.1,\n              0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Range\": {\n            \"value\": [\n              -0.1,\n              0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"da98fe81-8ac1-4c4a-ba1b-76b894dc9de8\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Mechanical Equipment\": 1,\n          \"Unusual Encrypted Files\": 1\n        },\n        \"features\": {\n          \"Facing Limit\": {\n            \"value\": [\n              0.4,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Range\": {\n            \"value\": [\n              -0.15,\n              -0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"88bcd4df-3ae3-4e6b-80d8-27bf8815e4d2\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Grid Resistors\": 1,\n          \"Mechanical Components\": 1,\n          \"Tagged Encryption Codes\": 1\n        },\n        \"features\": {\n          \"Facing Limit\": {\n            \"value\": [\n              0.6,\n              0.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.3,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Range\": {\n            \"value\": [\n              -0.2,\n              -0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"1036b38e-676f-4b42-8518-abed6f627fb7\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Divergent Scan Data\": 1,\n          \"Mechanical Equipment\": 1,\n          \"Strange Wake Solutions\": 1\n        },\n        \"features\": {\n          \"Facing Limit\": {\n            \"value\": [\n              0.8,\n              1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.4,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Range\": {\n            \"value\": [\n              -0.25,\n              -0.25\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"6c9f4098-99fa-4777-bd21-367937d1391f\"\n      }\n    },\n    \"id\": 28,\n    \"modulename\": [\n      \"Frame shift drive interdictor\",\n      \"FSDI\"\n    ],\n    \"name\": \"Expanded capture arc\",\n    \"symbol\": \"FSDinterdictor_Expanded\",\n    \"engineers\": {\n      \"Colonel Bris Dekker\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\"\n        ]\n      },\n      \"Felicity Farseer\": {\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      \"Tiana Fortune\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"FSDinterdictor_LongRange\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Unusual Encrypted Files\": 1\n        },\n        \"features\": {\n          \"Facing Limit\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              0.1,\n              0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.1,\n              0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Range\": {\n            \"value\": [\n              0,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"ecec8b3e-891f-4b79-8c07-7836e62424f8\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Atypical Disrupted Wake Echoes\": 1,\n          \"Tagged Encryption Codes\": 1\n        },\n        \"features\": {\n          \"Facing Limit\": {\n            \"value\": [\n              -0.15,\n              -0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              0.15,\n              0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Range\": {\n            \"value\": [\n              0.2,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"08d02c88-e63f-4d29-86b9-eea6a20b17a1\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Anomalous Bulk Scan Data\": 1,\n          \"Anomalous FSD Telemetry\": 1,\n          \"Open Symmetric Keys\": 1\n        },\n        \"features\": {\n          \"Facing Limit\": {\n            \"value\": [\n              -0.2,\n              -0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.3,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Range\": {\n            \"value\": [\n              0.3,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"a2d4bed7-4326-4776-a17b-6ee746f4c9be\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Unidentified Scan Archives\": 1,\n          \"Strange Wake Solutions\": 1,\n          \"Atypical Encryption Archives\": 1\n        },\n        \"features\": {\n          \"Facing Limit\": {\n            \"value\": [\n              -0.25,\n              -0.25\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              0.25,\n              0.25\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.4,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Range\": {\n            \"value\": [\n              0.4,\n              0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"aaabe016-883e-4ec6-a0f0-dd519b4f0ca5\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Classified Scan Databanks\": 1,\n          \"Eccentric Hyperspace Trajectories\": 1,\n          \"Adaptive Encryptors Capture\": 1\n        },\n        \"features\": {\n          \"Facing Limit\": {\n            \"value\": [\n              -0.3,\n              -0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              0.3,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.5,\n              0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Range\": {\n            \"value\": [\n              0.5,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"d62e9816-5457-11eb-a2cb-6805caa43529\"\n      }\n    },\n    \"id\": 29,\n    \"modulename\": [\n      \"Frame shift drive interdictor\",\n      \"FSDI\"\n    ],\n    \"name\": \"Long range\",\n    \"symbol\": \"FSDinterdictor_LongRange\",\n    \"engineers\": {\n      \"Colonel Bris Dekker\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\"\n        ]\n      },\n      \"Felicity Farseer\": {\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      \"Tiana Fortune\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"FuelScoop_Shielded\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Worn Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"7b71b0d6-e035-4526-91cf-b16a15d32594\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0.6,\n              1.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.4,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"1c367826-7b57-4beb-9d99-c9a598d29cf9\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"High Density Composites\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              1.2,\n              1.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.6,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"b61946ff-9e65-447b-9757-4c37789fc350\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Proprietary Composites\": 1,\n          \"Shielding Sensors\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              1.8,\n              2.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.8,\n              0.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"457e3d79-cdc8-44e6-b98c-c360821b0131\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Core Dynamics Composites\": 1,\n          \"Compound Shielding\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              2.4,\n              3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              1,\n              1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"91baeeeb-5459-11eb-a2cb-6805caa43529\"\n      }\n    },\n    \"id\": 30,\n    \"modulename\": [\n      \"Fuel scoop\"\n    ],\n    \"name\": \"Shielded\",\n    \"symbol\": \"FuelScoop_Shielded\",\n    \"engineers\": {\n      \"Bill Turner\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Lori Jameson\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"FuelTransferLimpet_LightWeight\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Phosphorus\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              0,\n              -0.45\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"b4abda7b-ac4c-4ddf-ac76-f3d9640e217b\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Manganese\": 1,\n          \"Salvaged Alloys\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.2,\n              -0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.45,\n              -0.55\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"7bae1015-d4b9-4c33-8286-79c93386cf33\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Manganese\": 1,\n          \"Salvaged Alloys\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.3,\n              -0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.55,\n              -0.65\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"b69e0eb2-67c4-402a-8b4d-69d64c899fdc\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Phase Alloys\": 1,\n          \"Proto Light Alloys\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.4,\n              -0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.65,\n              -0.75\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"36d13200-4c1d-4d49-9936-af8562a6fbce\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Proto Light Alloys\": 1,\n          \"Proto Radiolic Alloys\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.5,\n              -0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.75,\n              -0.85\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"e7ac0755-b319-4e35-b736-8235b68a1b09\"\n      }\n    },\n    \"id\": 31,\n    \"modulename\": [\n      \"Fuel transfer limpet controller\"\n    ],\n    \"name\": \"Lightweight\",\n    \"symbol\": \"FuelTransferLimpet_LightWeight\",\n    \"engineers\": {\n      \"Ram Tah\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\"\n        ]\n      },\n      \"The Sarge\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Tiana Fortune\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"FuelTransferLimpet_Reinforced\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.3,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"9d3c40c1-a35c-42a7-8756-68dba821bde1\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Nickel\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0.6,\n              1.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.6,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"c09e8d1b-e78e-43b8-bc8c-8ebf7bd84dc5\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Nickel\": 1,\n          \"Shield Emitters\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              1.2,\n              1.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.9,\n              0.9\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"51e5c01d-191c-446c-8ae1-d91e68da1013\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Molybdenum\": 1,\n          \"Tungsten\": 1,\n          \"Zinc\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              1.8,\n              2.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              1.2,\n              1.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"1a2e3498-d593-4420-ad66-01281648f8c7\"\n      },\n      \"5\": {\n        \"components\": {\n          \"High Density Composites\": 1,\n          \"Molybdenum\": 1,\n          \"Technetium\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              2.4,\n              3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              1.5,\n              1.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"9faf5a34-a93d-4bcb-873f-0d044b5bc1ba\"\n      }\n    },\n    \"id\": 32,\n    \"modulename\": [\n      \"Fuel transfer limpet controller\"\n    ],\n    \"name\": \"Reinforced\",\n    \"symbol\": \"FuelTransferLimpet_Reinforced\",\n    \"engineers\": {\n      \"Ram Tah\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\"\n        ]\n      },\n      \"The Sarge\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Tiana Fortune\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"FuelTransferLimpet_Shielded\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Worn Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"736aca61-1fd6-4e95-931c-9354434b52ce\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0.6,\n              1.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.4,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"60b7eeba-eaeb-4799-a7ab-c989afc9e74a\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"High Density Composites\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              1.2,\n              1.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.6,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"31f3e418-9020-4b01-94ec-cf9d62529f12\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Proprietary Composites\": 1,\n          \"Shielding Sensors\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              1.8,\n              2.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.8,\n              0.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"65e897c7-0bb2-426f-bed2-3162767a80d2\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Compound Shielding\": 1,\n          \"Core Dynamics Composites\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              2.4,\n              3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              1,\n              1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"800144e0-f708-4f40-b78a-6d1354712489\"\n      }\n    },\n    \"id\": 33,\n    \"modulename\": [\n      \"Fuel transfer limpet controller\"\n    ],\n    \"name\": \"Shielded\",\n    \"symbol\": \"FuelTransferLimpet_Shielded\",\n    \"engineers\": {\n      \"Ram Tah\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\"\n        ]\n      },\n      \"The Sarge\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Tiana Fortune\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"HatchBreakerLimpet_LightWeight\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Phosphorus\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              0,\n              -0.45\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"3434789e-7555-4bca-a901-09ddbae0d323\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Manganese\": 1,\n          \"Salvaged Alloys\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.2,\n              -0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.45,\n              -0.55\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"c62a09da-8157-474e-8b8f-04b43792a372\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Manganese\": 1,\n          \"Salvaged Alloys\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.3,\n              -0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.55,\n              -0.65\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"ad0166b8-9313-4c7a-a95c-5e4b0e53fc40\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Phase Alloys\": 1,\n          \"Proto Light Alloys\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.4,\n              -0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.65,\n              -0.75\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"cf482f0a-de37-4fec-8bcd-f087203e0f2d\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Proto Light Alloys\": 1,\n          \"Proto Radiolic Alloys\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.5,\n              -0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.75,\n              -0.85\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"80d2445b-47ef-4738-8729-152f45c732f9\"\n      }\n    },\n    \"id\": 34,\n    \"modulename\": [\n      \"Hatch breaker limpet controller\"\n    ],\n    \"name\": \"Lightweight\",\n    \"symbol\": \"HatchBreakerLimpet_LightWeight\",\n    \"engineers\": {\n      \"Ram Tah\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\"\n        ]\n      },\n      \"The Sarge\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Tiana Fortune\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"HatchBreakerLimpet_Reinforced\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.3,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"f75e88b4-7a5c-40da-9652-a7e91aa174e2\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Nickel\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0.6,\n              1.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.6,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"d794c46b-13e7-4136-b435-bdb96c87c657\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Nickel\": 1,\n          \"Shield Emitters\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              1.2,\n              1.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.9,\n              0.9\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"07acc4c6-724e-4c6b-be15-c9c49d4d95a6\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Molybdenum\": 1,\n          \"Tungsten\": 1,\n          \"Zinc\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              1.8,\n              2.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              1.2,\n              1.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"fe76b519-7695-4618-b71f-4e27f53f9eb4\"\n      },\n      \"5\": {\n        \"components\": {\n          \"High Density Composites\": 1,\n          \"Molybdenum\": 1,\n          \"Technetium\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              2.4,\n              3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              1.5,\n              1.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"eb38c498-6805-4ac5-8806-c81cc32123af\"\n      }\n    },\n    \"id\": 35,\n    \"modulename\": [\n      \"Hatch breaker limpet controller\"\n    ],\n    \"name\": \"Reinforced\",\n    \"symbol\": \"HatchBreakerLimpet_Reinforced\",\n    \"engineers\": {\n      \"Ram Tah\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\"\n        ]\n      },\n      \"The Sarge\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Tiana Fortune\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"HatchBreakerLimpet_Shielded\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Worn Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"952d56cc-0c1c-4a62-a8c4-a4c668181654\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0.6,\n              1.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.4,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"accfd35c-3172-455a-94b6-27be6409970a\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"High Density Composites\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              1.2,\n              1.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.6,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"0db2b6bd-df3f-48be-ac6b-a334b79757a1\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Proprietary Composites\": 1,\n          \"Shielding Sensors\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              1.8,\n              2.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.8,\n              0.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"a747942f-d354-4f0d-ad59-323e52823924\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Compound Shielding\": 1,\n          \"Core Dynamics Composites\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              2.4,\n              3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              1,\n              1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"acf4833c-1fe8-4aef-a396-33ca652793e2\"\n      }\n    },\n    \"id\": 36,\n    \"modulename\": [\n      \"Hatch breaker limpet controller\"\n    ],\n    \"name\": \"Shielded\",\n    \"symbol\": \"HatchBreakerLimpet_Shielded\",\n    \"engineers\": {\n      \"Ram Tah\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\"\n        ]\n      },\n      \"The Sarge\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Tiana Fortune\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"Misc_HeatSinkCapacity\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Mechanical Scrap\": 1,\n          \"Niobium\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"Ammo Maximum\": {\n            \"value\": [\n              0.5,\n              0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              1,\n              1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Reload Time\": {\n            \"value\": [\n              0.5,\n              0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"93c43a5d-106c-4481-b50b-c46311607209\"\n      }\n    },\n    \"id\": 37,\n    \"modulename\": [\n      \"Heat sink launcher\"\n    ],\n    \"name\": \"Ammo capacity\",\n    \"symbol\": \"Misc_HeatSinkCapacity\",\n    \"engineers\": {\n      \"Petra Olmanova\": {\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      \"Ram Tah\": {\n        \"grades\": [\n          \"1\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"HullReinforcement_Advanced\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"Hull Boost\": {\n            \"value\": [\n              0,\n              0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Hull Reinforcement\": {\n            \"value\": [\n              -0.04,\n              -0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              0,\n              -0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"8405c035-bf65-47d1-bdbe-5253b5c0a98b\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"Hull Boost\": {\n            \"value\": [\n              0.08,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Hull Reinforcement\": {\n            \"value\": [\n              -0.08,\n              -0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.08,\n              -0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"a8dad054-0392-460a-934e-27d40f65e1fc\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"High Density Composites\": 1,\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"Hull Boost\": {\n            \"value\": [\n              0.12,\n              0.16\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Hull Reinforcement\": {\n            \"value\": [\n              -0.12,\n              -0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.12,\n              -0.16\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"ee887ba1-c66f-4002-97cb-5169201324af\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Germanium\": 1,\n          \"Proprietary Composites\": 1\n        },\n        \"features\": {\n          \"Hull Boost\": {\n            \"value\": [\n              0.16,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Hull Reinforcement\": {\n            \"value\": [\n              -0.16,\n              -0.16\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.16,\n              -0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"8912615d-e711-4e5d-a08f-739cbf372963\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Military Grade Alloys\": 1,\n          \"Tin\": 1\n        },\n        \"features\": {\n          \"Hull Boost\": {\n            \"value\": [\n              0.2,\n              0.24\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Hull Reinforcement\": {\n            \"value\": [\n              -0.2,\n              -0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.2,\n              -0.24\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"371f79dc-6387-40eb-9d98-be915ae4413d\"\n      }\n    },\n    \"id\": 41,\n    \"modulename\": [\n      \"Hull reinforcement\",\n      \"Hull reinforcement package\",\n      \"HRP\"\n    ],\n    \"name\": \"Lightweight\",\n    \"symbol\": \"HullReinforcement_Advanced\",\n    \"engineers\": {\n      \"Liz Ryder\": {\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      \"Selene Jean\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"HullReinforcement_Explosive\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              0,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Hull Reinforcement\": {\n            \"value\": [\n              0,\n              0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              -0.02,\n              -0.02\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              -0.02,\n              -0.02\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"ed72014b-4033-413c-8a71-5eac18e085ce\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Zinc\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              0.12,\n              0.19\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Hull Reinforcement\": {\n            \"value\": [\n              0.03,\n              0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              -0.04,\n              -0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              -0.04,\n              -0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"7be2929b-0c89-4059-90d9-4631d90c053b\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Salvaged Alloys\": 1,\n          \"Vanadium\": 1,\n          \"Zirconium\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              0.19,\n              0.26\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Hull Reinforcement\": {\n            \"value\": [\n              0.06,\n              0.09\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              -0.06,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              -0.06,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"11742116-77d3-40ea-bd1f-71e0558a0ad1\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Galvanising Alloys\": 1,\n          \"Mercury\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              0.26,\n              0.33\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Hull Reinforcement\": {\n            \"value\": [\n              0.09,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              -0.08,\n              -0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              -0.08,\n              -0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"1f59b0aa-46ab-4eb5-bf07-fe4d8f968c1d\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Molybdenum\": 1,\n          \"Phase Alloys\": 1,\n          \"Ruthenium\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              0.33,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Hull Reinforcement\": {\n            \"value\": [\n              0.12,\n              0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"2251a73a-39da-4a50-b099-014c07378857\"\n      }\n    },\n    \"id\": 43,\n    \"modulename\": [\n      \"Hull reinforcement\",\n      \"Hull reinforcement package\",\n      \"HRP\"\n    ],\n    \"name\": \"Blast resistant\",\n    \"symbol\": \"HullReinforcement_Explosive\",\n    \"engineers\": {\n      \"Liz Ryder\": {\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      \"Selene Jean\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"HullReinforcement_HeavyDuty\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Carbon\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              0,\n              0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Hull Reinforcement\": {\n            \"value\": [\n              0,\n              0.24\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0,\n              0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.08,\n              0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0,\n              0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"e174a927-ab55-4691-be3e-832f6d68d679\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              0.03,\n              0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Hull Reinforcement\": {\n            \"value\": [\n              0.24,\n              0.36\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.03,\n              0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.16,\n              0.16\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.03,\n              0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"2cd3f87c-5ea3-4bd5-ab6d-70458f29de7e\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"High Density Composites\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              0.06,\n              0.09\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Hull Reinforcement\": {\n            \"value\": [\n              0.36,\n              0.48\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.06,\n              0.09\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.24,\n              0.24\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.06,\n              0.09\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"251e8773-d06a-4b0e-9e30-a5114a45a5c1\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Proprietary Composites\": 1,\n          \"Shielding Sensors\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              0.09,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Hull Reinforcement\": {\n            \"value\": [\n              0.48,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.09,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.32,\n              0.32\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.09,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"d6b14f0e-9a32-4838-b41f-986f4a5abd6d\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Compound Shielding\": 1,\n          \"Core Dynamics Composites\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              0.12,\n              0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Hull Reinforcement\": {\n            \"value\": [\n              0.6,\n              0.72\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.12,\n              0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.4,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.12,\n              0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"137a648d-394b-48ac-a4de-bfa145fa9cf0\"\n      }\n    },\n    \"id\": 42,\n    \"modulename\": [\n      \"Hull reinforcement\",\n      \"Hull reinforcement package\",\n      \"HRP\"\n    ],\n    \"name\": \"Heavy duty\",\n    \"symbol\": \"HullReinforcement_HeavyDuty\",\n    \"engineers\": {\n      \"Liz Ryder\": {\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      \"Selene Jean\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"HullReinforcement_Kinetic\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              -0.02,\n              -0.02\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Hull Reinforcement\": {\n            \"value\": [\n              0,\n              0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              -0.02,\n              -0.02\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"9d5338ab-031c-40e5-bd13-d3eb057540ab\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Nickel\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              -0.04,\n              -0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Hull Reinforcement\": {\n            \"value\": [\n              0.03,\n              0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.12,\n              0.19\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              -0.04,\n              -0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"238db8e4-99e2-4e70-b4e3-f918294110c7\"\n      },\n      \"3\": {\n        \"components\": {\n          \"High Density Composites\": 1,\n          \"Salvaged Alloys\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              -0.06,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Hull Reinforcement\": {\n            \"value\": [\n              0.06,\n              0.09\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.19,\n              0.26\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              -0.06,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"cb65ddfa-2fd9-4db5-9558-0770866ea8ee\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Galvanising Alloys\": 1,\n          \"Proprietary Composites\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              -0.08,\n              -0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Hull Reinforcement\": {\n            \"value\": [\n              0.09,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.26,\n              0.33\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              -0.08,\n              -0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"944cb78e-4da0-43a0-acc8-95c7d67eaf92\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Core Dynamics Composites\": 1,\n          \"Molybdenum\": 1,\n          \"Phase Alloys\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Hull Reinforcement\": {\n            \"value\": [\n              0.12,\n              0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.33,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"bd68edc4-6ed5-4704-9682-28b51a18591f\"\n      }\n    },\n    \"id\": 44,\n    \"modulename\": [\n      \"Hull reinforcement\",\n      \"Hull reinforcement package\",\n      \"HRP\"\n    ],\n    \"name\": \"Kinetic resistant\",\n    \"symbol\": \"HullReinforcement_Kinetic\",\n    \"engineers\": {\n      \"Liz Ryder\": {\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      \"Selene Jean\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"HullReinforcement_Thermic\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Heat Conduction Wiring\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              -0.02,\n              -0.02\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Hull Reinforcement\": {\n            \"value\": [\n              0,\n              0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              -0.02,\n              -0.02\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"cc3d62d5-9769-480d-9e37-620c61a276ab\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Heat Dispersion Plate\": 1,\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              -0.04,\n              -0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Hull Reinforcement\": {\n            \"value\": [\n              0.03,\n              0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              -0.04,\n              -0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.12,\n              0.19\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"e4aa2331-7dc5-479c-9959-d90f0e473da9\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Heat Exchangers\": 1,\n          \"Salvaged Alloys\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              -0.06,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Hull Reinforcement\": {\n            \"value\": [\n              0.06,\n              0.09\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              -0.06,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.19,\n              0.26\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"29f49ae9-e241-4791-a9e3-bfdccd6cdfbb\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Galvanising Alloys\": 1,\n          \"Heat Vanes\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              -0.08,\n              -0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Hull Reinforcement\": {\n            \"value\": [\n              0.09,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              -0.08,\n              -0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.26,\n              0.33\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"19e30f32-a789-4acf-8f69-f97677ace963\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Molybdenum\": 1,\n          \"Phase Alloys\": 1,\n          \"Proto Heat Radiators\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Hull Reinforcement\": {\n            \"value\": [\n              0.12,\n              0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.33,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"e6151657-1317-4aec-9e49-2d7e7a093d74\"\n      }\n    },\n    \"id\": 45,\n    \"modulename\": [\n      \"Hull reinforcement\",\n      \"Hull reinforcement package\",\n      \"HRP\"\n    ],\n    \"name\": \"Thermal resistant\",\n    \"symbol\": \"HullReinforcement_Thermic\",\n    \"engineers\": {\n      \"Liz Ryder\": {\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      \"Selene Jean\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"LifeSupport_LightWeight\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Phosphorus\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              0,\n              -0.45\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"e1e1bd93-3a3f-4454-bfe3-0e2b6840b43a\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Manganese\": 1,\n          \"Salvaged Alloys\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.2,\n              -0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.45,\n              -0.55\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"aaf29592-df21-4b4c-aeac-20252e75b8aa\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Manganese\": 1,\n          \"Salvaged Alloys\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.3,\n              -0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.55,\n              -0.65\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"8876b27a-2c31-49f0-8a47-c11acd801c2b\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Phase Alloys\": 1,\n          \"Proto Light Alloys\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.4,\n              -0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.65,\n              -0.75\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"b7672f07-e10e-4371-989c-dd49e28c4b79\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Proto Radiolic Alloys\": 1,\n          \"Proto Light Alloys\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.5,\n              -0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.75,\n              -0.85\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"ec9b7ac2-7a99-4f96-8bf1-061df58dba79\"\n      }\n    },\n    \"id\": 49,\n    \"modulename\": [\n      \"Life support\"\n    ],\n    \"name\": \"Lightweight\",\n    \"symbol\": \"LifeSupport_LightWeight\",\n    \"engineers\": {\n      \"Bill Turner\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Lori Jameson\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\"\n        ]\n      },\n      \"Etienne Dorn\": {\n        \"grades\": [\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"LifeSupport_Reinforced\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.3,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"b40b11a1-5f0f-440f-b77d-9abf9833d546\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Nickel\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0.6,\n              1.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.6,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"847b937b-ffa2-4418-9a48-0993a675d43f\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Nickel\": 1,\n          \"Shield Emitters\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              1.2,\n              1.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.9,\n              0.9\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"8303d5f6-da56-41d0-8af3-4620efcc561e\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Molybdenum\": 1,\n          \"Tungsten\": 1,\n          \"Zinc\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              1.8,\n              2.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              1.2,\n              1.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"6c37ca40-0ae6-48e0-a145-c3eea2bf7cce\"\n      },\n      \"5\": {\n        \"components\": {\n          \"High Density Composites\": 1,\n          \"Molybdenum\": 1,\n          \"Technetium\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              2.4,\n              3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              1.5,\n              1.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"d0ff95ad-123a-4fd0-ae88-c46209068e3a\"\n      }\n    },\n    \"id\": 50,\n    \"modulename\": [\n      \"Life support\"\n    ],\n    \"name\": \"Reinforced\",\n    \"symbol\": \"LifeSupport_Reinforced\",\n    \"engineers\": {\n      \"Bill Turner\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Lori Jameson\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\"\n        ]\n      },\n      \"Etienne Dorn\": {\n        \"grades\": [\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"LifeSupport_Shielded\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Worn Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"fcd12382-bbb3-431b-95c5-ae9539a02a54\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0.6,\n              1.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.4,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"9a62eb66-8231-4fa9-9047-284798892e93\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"High Density Composites\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              1.2,\n              1.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.6,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"c46b6c89-0a24-4586-865d-76ff5ae35209\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Proprietary Composites\": 1,\n          \"Shielding Sensors\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              1.8,\n              2.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.8,\n              0.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"89f25da8-029a-4f3e-828d-393b36f0d7b3\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Tungsten\": 1,\n          \"Compound Shielding\": 1,\n          \"Core Dynamics Composites\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              2.4,\n              3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              1.12,\n              1.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"89f25da8-029a-4f3e-828d-393b36f0d7b3\"\n      }\n    },\n    \"id\": 51,\n    \"modulename\": [\n      \"Life support\"\n    ],\n    \"name\": \"Shielded\",\n    \"symbol\": \"LifeSupport_Shielded\",\n    \"engineers\": {\n      \"Bill Turner\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Lori Jameson\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\"\n        ]\n      },\n      \"Etienne Dorn\": {\n        \"grades\": [\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"Misc_PointDefenseCapacity\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Mechanical Scrap\": 1,\n          \"Niobium\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"Ammo Maximum\": {\n            \"value\": [\n              0,\n              0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              1,\n              1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Reload Time\": {\n            \"value\": [\n              0.1,\n              0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"84b2fe9b-5c82-4b3c-8181-7c15aeb9ecf9\"\n      }\n    },\n    \"id\": 55,\n    \"modulename\": [\n      \"Point defence\"\n    ],\n    \"name\": \"Ammo capacity\",\n    \"symbol\": \"Misc_PointDefenseCapacity\",\n    \"engineers\": {\n      \"Petra Olmanova\": {\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      \"Ram Tah\": {\n        \"grades\": [\n          \"1\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"PowerDistributor_HighCapacity\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Sulphur\": 1\n        },\n        \"features\": {\n          \"Engines Capacity\": {\n            \"value\": [\n              0,\n              0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Engines Recharge\": {\n            \"value\": [\n              -0.02,\n              -0.02\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Integrity\": {\n            \"value\": [\n              0,\n              0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Systems Capacity\": {\n            \"value\": [\n              0,\n              0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Systems Recharge\": {\n            \"value\": [\n              -0.02,\n              -0.02\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Weapons Capacity\": {\n            \"value\": [\n              0,\n              0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Weapons Recharge\": {\n            \"value\": [\n              -0.02,\n              -0.02\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"e1ae5651-f688-46e2-a94a-9c3bc6e8665b\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Chromium\": 1,\n          \"Specialised Legacy Firmware\": 1\n        },\n        \"features\": {\n          \"Engines Capacity\": {\n            \"value\": [\n              0.1,\n              0.18\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Engines Recharge\": {\n            \"value\": [\n              -0.06,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Integrity\": {\n            \"value\": [\n              0.1,\n              0.18\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Systems Capacity\": {\n            \"value\": [\n              0.08,\n              0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Systems Recharge\": {\n            \"value\": [\n              -0.06,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Weapons Capacity\": {\n            \"value\": [\n              0.1,\n              0.18\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Weapons Recharge\": {\n            \"value\": [\n              -0.06,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"d5ea6b7b-31eb-44f4-b1f3-8126dd6ea7b5\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Chromium\": 1,\n          \"High Density Composites\": 1,\n          \"Specialised Legacy Firmware\": 1\n        },\n        \"features\": {\n          \"Engines Capacity\": {\n            \"value\": [\n              0.18,\n              0.26\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Engines Recharge\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Integrity\": {\n            \"value\": [\n              0.15,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Systems Capacity\": {\n            \"value\": [\n              0.18,\n              0.26\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Systems Recharge\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Weapons Capacity\": {\n            \"value\": [\n              0.18,\n              0.26\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Weapons Recharge\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"b959a87e-a231-46e7-a6a7-65fe6c0464bc\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Modified Consumer Firmware\": 1,\n          \"Proprietary Composites\": 1,\n          \"Selenium\": 1\n        },\n        \"features\": {\n          \"Engines Capacity\": {\n            \"value\": [\n              0.26,\n              0.34\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Engines Recharge\": {\n            \"value\": [\n              -0.14,\n              -0.14\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Integrity\": {\n            \"value\": [\n              0.2,\n              0.25\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Systems Capacity\": {\n            \"value\": [\n              0.26,\n              0.34\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Systems Recharge\": {\n            \"value\": [\n              -0.14,\n              -0.14\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Weapons Capacity\": {\n            \"value\": [\n              0.26,\n              0.34\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Weapons Recharge\": {\n            \"value\": [\n              -0.14,\n              -0.14\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"5f468c03-ed6d-474f-9e82-601b11d728c8\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Cracked Industrial Firmware\": 1,\n          \"Military Supercapacitors\": 1,\n          \"Proprietary Composites\": 1\n        },\n        \"features\": {\n          \"Engines Capacity\": {\n            \"value\": [\n              0.34,\n              0.42\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Engines Recharge\": {\n            \"value\": [\n              -0.18,\n              -0.18\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Integrity\": {\n            \"value\": [\n              0.25,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Systems Capacity\": {\n            \"value\": [\n              0.34,\n              0.42\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Systems Recharge\": {\n            \"value\": [\n              -0.18,\n              -0.18\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Weapons Capacity\": {\n            \"value\": [\n              0.34,\n              0.42\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Weapons Recharge\": {\n            \"value\": [\n              -0.18,\n              -0.18\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"50b4cbc5-9445-43e3-a9a8-b1320fc0b27e\"\n      }\n    },\n    \"id\": 56,\n    \"modulename\": [\n      \"Power distributor\",\n      \"Distributor\"\n    ],\n    \"name\": \"High charge capacity\",\n    \"symbol\": \"PowerDistributor_HighCapacity\",\n    \"engineers\": {\n      \"Hera Tani\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Marco Qwent\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"The Dweller\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"PowerDistributor_HighFrequency\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Specialised Legacy Firmware\": 1\n        },\n        \"features\": {\n          \"Engines Capacity\": {\n            \"value\": [\n              -0.01,\n              -0.01\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Engines Recharge\": {\n            \"value\": [\n              0,\n              0.09\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Systems Capacity\": {\n            \"value\": [\n              -0.01,\n              -0.01\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Systems Recharge\": {\n            \"value\": [\n              0,\n              0.09\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Weapons Capacity\": {\n            \"value\": [\n              -0.01,\n              -0.01\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Weapons Recharge\": {\n            \"value\": [\n              0,\n              0.09\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"e8ce47e1-c5d7-46bf-b31e-48dcfe9ab1a5\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Chemical Processors\": 1,\n          \"Specialised Legacy Firmware\": 1\n        },\n        \"features\": {\n          \"Engines Capacity\": {\n            \"value\": [\n              -0.02,\n              -0.02\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Engines Recharge\": {\n            \"value\": [\n              0.09,\n              0.18\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Systems Capacity\": {\n            \"value\": [\n              -0.02,\n              -0.02\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Systems Recharge\": {\n            \"value\": [\n              0.09,\n              0.18\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Weapons Capacity\": {\n            \"value\": [\n              -0.02,\n              -0.02\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Weapons Recharge\": {\n            \"value\": [\n              0.09,\n              0.18\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"528b87b2-157d-471e-9958-831a9962c595\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Chemical Distillery\": 1,\n          \"Grid Resistors\": 1,\n          \"Modified Consumer Firmware\": 1\n        },\n        \"features\": {\n          \"Engines Capacity\": {\n            \"value\": [\n              -0.03,\n              -0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Engines Recharge\": {\n            \"value\": [\n              0.18,\n              0.27\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Systems Capacity\": {\n            \"value\": [\n              -0.03,\n              -0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Systems Recharge\": {\n            \"value\": [\n              0.18,\n              0.27\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Weapons Capacity\": {\n            \"value\": [\n              -0.03,\n              -0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Weapons Recharge\": {\n            \"value\": [\n              0.18,\n              0.27\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"713b5e19-b7a5-447f-b450-248e771dcd72\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Chemical Manipulators\": 1,\n          \"Cracked Industrial Firmware\": 1,\n          \"Hybrid Capacitors\": 1\n        },\n        \"features\": {\n          \"Engines Capacity\": {\n            \"value\": [\n              -0.04,\n              -0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Engines Recharge\": {\n            \"value\": [\n              0.27,\n              0.36\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Systems Capacity\": {\n            \"value\": [\n              -0.04,\n              -0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Systems Recharge\": {\n            \"value\": [\n              0.27,\n              0.36\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Weapons Capacity\": {\n            \"value\": [\n              -0.04,\n              -0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Weapons Recharge\": {\n            \"value\": [\n              0.27,\n              0.36\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"1bfd4836-c69d-4adf-94dd-e7c41da96416\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Chemical Manipulators\": 1,\n          \"Cracked Industrial Firmware\": 1,\n          \"Exquisite Focus Crystals\": 1\n        },\n        \"features\": {\n          \"Engines Capacity\": {\n            \"value\": [\n              -0.05,\n              -0.05\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Engines Recharge\": {\n            \"value\": [\n              0.36,\n              0.45\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Systems Capacity\": {\n            \"value\": [\n              -0.05,\n              -0.05\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Systems Recharge\": {\n            \"value\": [\n              0.36,\n              0.45\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Weapons Capacity\": {\n            \"value\": [\n              -0.05,\n              -0.05\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Weapons Recharge\": {\n            \"value\": [\n              0.36,\n              0.45\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"5adf6ae2-0e1b-4b3e-9513-9b981213cdfd\"\n      }\n    },\n    \"id\": 57,\n    \"modulename\": [\n      \"Power distributor\",\n      \"Distributor\"\n    ],\n    \"name\": \"Charge enhanced\",\n    \"symbol\": \"PowerDistributor_HighFrequency\",\n    \"engineers\": {\n      \"Hera Tani\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Marco Qwent\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"The Dweller\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"PowerDistributor_PriorityEngines\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Sulphur\": 1\n        },\n        \"features\": {\n          \"Engines Capacity\": {\n            \"value\": [\n              0,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Engines Recharge\": {\n            \"value\": [\n              0,\n              0.16\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Systems Capacity\": {\n            \"value\": [\n              -0.03,\n              -0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Systems Recharge\": {\n            \"value\": [\n              -0.03,\n              -0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Weapons Capacity\": {\n            \"value\": [\n              -0.03,\n              -0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Weapons Recharge\": {\n            \"value\": [\n              -0.01,\n              -0.01\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"69f1b8a3-c868-452f-bdbd-cfc95e117ab5\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Sulphur\": 1\n        },\n        \"features\": {\n          \"Engines Capacity\": {\n            \"value\": [\n              0.2,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Engines Recharge\": {\n            \"value\": [\n              0.16,\n              0.23\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Systems Capacity\": {\n            \"value\": [\n              -0.06,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Systems Recharge\": {\n            \"value\": [\n              -0.06,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Weapons Capacity\": {\n            \"value\": [\n              -0.06,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Weapons Recharge\": {\n            \"value\": [\n              -0.02,\n              -0.02\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"5e91d652-7346-4a22-82c9-79853fdcdf91\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Anomalous Bulk Scan Data\": 1,\n          \"Chromium\": 1,\n          \"Electrochemical Arrays\": 1\n        },\n        \"features\": {\n          \"Engines Capacity\": {\n            \"value\": [\n              0.3,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Engines Recharge\": {\n            \"value\": [\n              0.23,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Systems Capacity\": {\n            \"value\": [\n              -0.09,\n              -0.09\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Systems Recharge\": {\n            \"value\": [\n              -0.09,\n              -0.09\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Weapons Capacity\": {\n            \"value\": [\n              -0.09,\n              -0.09\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Weapons Recharge\": {\n            \"value\": [\n              -0.03,\n              -0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"4185370a-c4e9-4f58-9b67-a7f46bb2d3c2\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Unidentified Scan Archives\": 1,\n          \"Selenium\": 1,\n          \"Polymer Capacitors\": 1\n        },\n        \"features\": {\n          \"Engines Capacity\": {\n            \"value\": [\n              0.4,\n              0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Engines Recharge\": {\n            \"value\": [\n              0.3,\n              0.37\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Systems Capacity\": {\n            \"value\": [\n              -0.12,\n              -0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Systems Recharge\": {\n            \"value\": [\n              -0.12,\n              -0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Weapons Capacity\": {\n            \"value\": [\n              -0.12,\n              -0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Weapons Recharge\": {\n            \"value\": [\n              -0.04,\n              -0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"6a6a497e-8261-4763-8a15-c78222a00443\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Classified Scan Databanks\": 1,\n          \"Cadmium\": 1,\n          \"Military Supercapacitors\": 1\n        },\n        \"features\": {\n          \"Engines Capacity\": {\n            \"value\": [\n              0.5,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Engines Recharge\": {\n            \"value\": [\n              0.37,\n              0.44\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Systems Capacity\": {\n            \"value\": [\n              -0.15,\n              -0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Systems Recharge\": {\n            \"value\": [\n              -0.15,\n              -0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Weapons Capacity\": {\n            \"value\": [\n              -0.15,\n              -0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Weapons Recharge\": {\n            \"value\": [\n              -0.05,\n              -0.05\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"ac618c54-ecfc-489a-98cb-e3f5789ad69f\"\n      }\n    },\n    \"id\": 58,\n    \"modulename\": [\n      \"Power distributor\",\n      \"Distributor\"\n    ],\n    \"name\": \"Engine focused\",\n    \"symbol\": \"PowerDistributor_PriorityEngines\",\n    \"engineers\": {\n      \"Hera Tani\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Marco Qwent\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"The Dweller\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"PowerDistributor_PrioritySystems\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Sulphur\": 1\n        },\n        \"features\": {\n          \"Engines Capacity\": {\n            \"value\": [\n              -0.03,\n              -0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Engines Recharge\": {\n            \"value\": [\n              -0.01,\n              -0.01\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Systems Capacity\": {\n            \"value\": [\n              0,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Systems Recharge\": {\n            \"value\": [\n              0,\n              0.16\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Weapons Capacity\": {\n            \"value\": [\n              -0.03,\n              -0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Weapons Recharge\": {\n            \"value\": [\n              -0.03,\n              -0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"8138ba35-155d-4b82-86ef-ad4600ab5e03\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Sulphur\": 1\n        },\n        \"features\": {\n          \"Engines Capacity\": {\n            \"value\": [\n              -0.06,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Engines Recharge\": {\n            \"value\": [\n              -0.02,\n              -0.02\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Systems Capacity\": {\n            \"value\": [\n              0.2,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Systems Recharge\": {\n            \"value\": [\n              0.16,\n              0.23\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Weapons Capacity\": {\n            \"value\": [\n              -0.06,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Weapons Recharge\": {\n            \"value\": [\n              -0.06,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"91c79b1b-b494-4dd9-98c4-10d58aa5509f\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Anomalous Bulk Scan Data\": 1,\n          \"Chromium\": 1,\n          \"Electrochemical Arrays\": 1\n        },\n        \"features\": {\n          \"Engines Capacity\": {\n            \"value\": [\n              -0.09,\n              -0.09\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Engines Recharge\": {\n            \"value\": [\n              -0.03,\n              -0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Systems Capacity\": {\n            \"value\": [\n              0.3,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Systems Recharge\": {\n            \"value\": [\n              0.23,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Weapons Capacity\": {\n            \"value\": [\n              -0.09,\n              -0.09\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Weapons Recharge\": {\n            \"value\": [\n              -0.09,\n              -0.09\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"13ab16c7-2456-4387-b536-b28fd2f57d2e\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Unidentified Scan Archives\": 1,\n          \"Selenium\": 1,\n          \"Polymer Capacitors\": 1\n        },\n        \"features\": {\n          \"Engines Capacity\": {\n            \"value\": [\n              -0.12,\n              -0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Engines Recharge\": {\n            \"value\": [\n              -0.04,\n              -0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Systems Capacity\": {\n            \"value\": [\n              0.4,\n              0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Systems Recharge\": {\n            \"value\": [\n              0.3,\n              0.37\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Weapons Capacity\": {\n            \"value\": [\n              -0.12,\n              -0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Weapons Recharge\": {\n            \"value\": [\n              -0.12,\n              -0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"544e6d6b-be89-478d-9b1b-62fae7599d30\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Classified Scan Databanks\": 1,\n          \"Cadmium\": 1,\n          \"Military Supercapacitors\": 1\n        },\n        \"features\": {\n          \"Engines Capacity\": {\n            \"value\": [\n              -0.15,\n              -0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Engines Recharge\": {\n            \"value\": [\n              -0.05,\n              -0.05\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Systems Capacity\": {\n            \"value\": [\n              0.5,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Systems Recharge\": {\n            \"value\": [\n              0.37,\n              0.44\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Weapons Capacity\": {\n            \"value\": [\n              -0.15,\n              -0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Weapons Recharge\": {\n            \"value\": [\n              -0.15,\n              -0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"892dcc86-a720-4fda-96cd-cb0245305764\"\n      }\n    },\n    \"id\": 59,\n    \"modulename\": [\n      \"Power distributor\",\n      \"Distributor\"\n    ],\n    \"name\": \"System focused\",\n    \"symbol\": \"PowerDistributor_PrioritySystems\",\n    \"engineers\": {\n      \"Hera Tani\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Marco Qwent\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"The Dweller\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"PowerDistributor_PriorityWeapons\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Sulphur\": 1\n        },\n        \"features\": {\n          \"Engines Capacity\": {\n            \"value\": [\n              -0.03,\n              -0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Engines Recharge\": {\n            \"value\": [\n              -0.03,\n              -0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Systems Capacity\": {\n            \"value\": [\n              -0.03,\n              -0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Systems Recharge\": {\n            \"value\": [\n              -0.01,\n              -0.01\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Weapons Capacity\": {\n            \"value\": [\n              0,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Weapons Recharge\": {\n            \"value\": [\n              0,\n              0.16\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"dd023cf4-0b4d-4d18-957f-4b1eecb71c0a\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Sulphur\": 1\n        },\n        \"features\": {\n          \"Engines Capacity\": {\n            \"value\": [\n              -0.06,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Engines Recharge\": {\n            \"value\": [\n              -0.06,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Systems Capacity\": {\n            \"value\": [\n              -0.06,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Systems Recharge\": {\n            \"value\": [\n              -0.02,\n              -0.02\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Weapons Capacity\": {\n            \"value\": [\n              0.2,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Weapons Recharge\": {\n            \"value\": [\n              0.16,\n              0.23\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"cac790f3-9852-4673-a219-0f5e4dc6a0ad\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Anomalous Bulk Scan Data\": 1,\n          \"Hybrid Capacitors\": 1,\n          \"Selenium\": 1\n        },\n        \"features\": {\n          \"Engines Capacity\": {\n            \"value\": [\n              -0.09,\n              -0.09\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Engines Recharge\": {\n            \"value\": [\n              -0.09,\n              -0.09\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Systems Capacity\": {\n            \"value\": [\n              -0.09,\n              -0.09\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Systems Recharge\": {\n            \"value\": [\n              -0.03,\n              -0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Weapons Capacity\": {\n            \"value\": [\n              0.3,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Weapons Recharge\": {\n            \"value\": [\n              0.23,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"cc5507e8-613b-4d43-a7fe-a874be963125\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Unidentified Scan Archives\": 1,\n          \"Electrochemical Arrays\": 1,\n          \"Cadmium\": 1\n        },\n        \"features\": {\n          \"Engines Capacity\": {\n            \"value\": [\n              -0.12,\n              -0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Engines Recharge\": {\n            \"value\": [\n              -0.12,\n              -0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Systems Capacity\": {\n            \"value\": [\n              -0.12,\n              -0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Systems Recharge\": {\n            \"value\": [\n              -0.04,\n              -0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Weapons Capacity\": {\n            \"value\": [\n              0.4,\n              0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Weapons Recharge\": {\n            \"value\": [\n              0.3,\n              0.37\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"34c9c5e5-8a42-4509-a22a-7313528263f2\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Classified Scan Databanks\": 1,\n          \"Polymer Capacitors\": 1,\n          \"Tellurium\": 1\n        },\n        \"features\": {\n          \"Engines Capacity\": {\n            \"value\": [\n              -0.15,\n              -0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Engines Recharge\": {\n            \"value\": [\n              -0.15,\n              -0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Systems Capacity\": {\n            \"value\": [\n              -0.15,\n              -0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Systems Recharge\": {\n            \"value\": [\n              -0.05,\n              -0.05\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Weapons Capacity\": {\n            \"value\": [\n              0.5,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Weapons Recharge\": {\n            \"value\": [\n              0.37,\n              0.44\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"23d55bbf-af1c-46ac-b77b-214e70628fe2\"\n      }\n    },\n    \"id\": 60,\n    \"modulename\": [\n      \"Power distributor\",\n      \"Distributor\"\n    ],\n    \"name\": \"Weapon focused\",\n    \"symbol\": \"PowerDistributor_PriorityWeapons\",\n    \"engineers\": {\n      \"Hera Tani\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Marco Qwent\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"The Dweller\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"PowerDistributor_Shielded\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Worn Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.03,\n              0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"05883145-2407-46a1-9eea-5a56ac549cfd\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0.4,\n              0.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.06,\n              0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Draw\": {\n            \"value\": [\n              -0.1,\n              -0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"5822ff0c-fa6c-4072-95be-e2534f37be00\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"High Density Composites\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0.8,\n              1.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.09,\n              0.09\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Draw\": {\n            \"value\": [\n              -0.15,\n              -0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"d5040eac-fa75-4613-828d-ea71aefd9051\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Proprietary Composites\": 1,\n          \"Shielding Sensors\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              1.2,\n              1.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.12,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Draw\": {\n            \"value\": [\n              -0.2,\n              -0.25\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"32c94fd6-71c3-461b-80ed-bfe1543f9651\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Compound Shielding\": 1,\n          \"Core Dynamics Composites\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              1.6,\n              2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.15,\n              0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Draw\": {\n            \"value\": [\n              -0.25,\n              -0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"1b073867-c10f-474b-88d7-5fb6c602b838\"\n      }\n    },\n    \"id\": 61,\n    \"modulename\": [\n      \"Power distributor\",\n      \"Distributor\"\n    ],\n    \"name\": \"Shielded\",\n    \"symbol\": \"PowerDistributor_Shielded\",\n    \"engineers\": {\n      \"Hera Tani\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Marco Qwent\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"The Dweller\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"PowerPlant_Armoured\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Worn Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Heat Efficiency\": {\n            \"value\": [\n              0,\n              -0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Integrity\": {\n            \"value\": [\n              0,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Generation\": {\n            \"value\": [\n              0,\n              0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.04,\n              0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"14be2e0d-417b-4cde-834f-b7e8ca14bb85\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Heat Efficiency\": {\n            \"value\": [\n              -0.04,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Integrity\": {\n            \"value\": [\n              0.3,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Generation\": {\n            \"value\": [\n              0,\n              0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.08,\n              0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"14ade730-2a1d-4f48-a619-46be865819ec\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"High Density Composites\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Heat Efficiency\": {\n            \"value\": [\n              -0.06,\n              -0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Integrity\": {\n            \"value\": [\n              0.6,\n              0.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Generation\": {\n            \"value\": [\n              0.06,\n              0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.12,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"aa9a05c9-f142-40db-b0bf-8f6ca29efba8\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Proprietary Composites\": 1,\n          \"Shielding Sensors\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"Heat Efficiency\": {\n            \"value\": [\n              -0.08,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Integrity\": {\n            \"value\": [\n              0.5,\n              1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Generation\": {\n            \"value\": [\n              0.08,\n              0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.16,\n              0.16\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"bfb0ccc8-389e-4df0-9acd-4df91680c5a3\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Compound Shielding\": 1,\n          \"Core Dynamics Composites\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"Heat Efficiency\": {\n            \"value\": [\n              -0.1,\n              -0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Integrity\": {\n            \"value\": [\n              1,\n              1.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Generation\": {\n            \"value\": [\n              0.1,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"5156badb-c1eb-49f4-923d-b9e6f862799f\"\n      }\n    },\n    \"id\": 62,\n    \"modulename\": [\n      \"Power plant\"\n    ],\n    \"name\": \"Armoured\",\n    \"symbol\": \"PowerPlant_Armoured\",\n    \"engineers\": {\n      \"Felicity Farseer\": {\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      \"Hera Tani\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Marco Qwent\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"PowerPlant_Boosted\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Sulphur\": 1\n        },\n        \"features\": {\n          \"Heat Efficiency\": {\n            \"value\": [\n              0.05,\n              0.05\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Integrity\": {\n            \"value\": [\n              -0.05,\n              -0.05\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Generation\": {\n            \"value\": [\n              0,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"06282764-2821-4604-ad2c-d9b148d562d0\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Heat Conduction Wiring\": 1\n        },\n        \"features\": {\n          \"Heat Efficiency\": {\n            \"value\": [\n              0.1,\n              0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Integrity\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Generation\": {\n            \"value\": [\n              0.12,\n              0.19\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"feb49620-2df8-4ec6-9a58-13f986aed81f\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Heat Conduction Wiring\": 1,\n          \"Selenium\": 1\n        },\n        \"features\": {\n          \"Heat Efficiency\": {\n            \"value\": [\n              0.15,\n              0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Integrity\": {\n            \"value\": [\n              -0.15,\n              -0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Generation\": {\n            \"value\": [\n              0.19,\n              0.26\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"9325c166-998d-4ea6-8dab-0aafcec76705\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Cadmium\": 1,\n          \"Conductive Ceramics\": 1,\n          \"Heat Dispersion Plate\": 1\n        },\n        \"features\": {\n          \"Heat Efficiency\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Integrity\": {\n            \"value\": [\n              -0.2,\n              -0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Generation\": {\n            \"value\": [\n              0.26,\n              0.33\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"6dd84c8d-1d21-4bf5-a747-f582ffe49a99\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Chemical Manipulators\": 1,\n          \"Conductive Ceramics\": 1,\n          \"Tellurium\": 1\n        },\n        \"features\": {\n          \"Heat Efficiency\": {\n            \"value\": [\n              0.25,\n              0.25\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Integrity\": {\n            \"value\": [\n              -0.25,\n              -0.25\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Generation\": {\n            \"value\": [\n              0.33,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"f8cee63e-9cdf-43e5-9584-a945d4c57aee\"\n      }\n    },\n    \"id\": 63,\n    \"modulename\": [\n      \"Power plant\"\n    ],\n    \"name\": \"Overcharged\",\n    \"symbol\": \"PowerPlant_Boosted\",\n    \"engineers\": {\n      \"Felicity Farseer\": {\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      \"Hera Tani\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Marco Qwent\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"PowerPlant_Stealth\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"Heat Efficiency\": {\n            \"value\": [\n              0,\n              -0.25\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.04,\n              0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Generation\": {\n            \"value\": [\n              -0.03,\n              -0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"92571059-8e76-4473-b3ee-1b50803c75ef\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Iron\": 1,\n          \"Irregular Emission Data\": 1\n        },\n        \"features\": {\n          \"Heat Efficiency\": {\n            \"value\": [\n              -0.25,\n              -0.35\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.08,\n              0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Generation\": {\n            \"value\": [\n              -0.06,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"5a20a4d0-2d5d-4380-b14d-6099928cd0a7\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Heat Exchangers\": 1,\n          \"Iron\": 1,\n          \"Irregular Emission Data\": 1\n        },\n        \"features\": {\n          \"Heat Efficiency\": {\n            \"value\": [\n              -0.35,\n              -0.45\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.12,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Generation\": {\n            \"value\": [\n              -0.09,\n              -0.09\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"a0283399-56cd-4013-8293-872ad44a1ffd\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Heat Vanes\": 1,\n          \"Germanium\": 1,\n          \"Unexpected Emission Data\": 1\n        },\n        \"features\": {\n          \"Heat Efficiency\": {\n            \"value\": [\n              -0.45,\n              -0.55\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.16,\n              0.16\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Generation\": {\n            \"value\": [\n              -0.12,\n              -0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"e87a55a5-ddf0-42fe-b919-9a3ef13a7bba\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Proto Heat Radiators\": 1,\n          \"Niobium\": 1,\n          \"Decoded Emission Data\": 1\n        },\n        \"features\": {\n          \"Heat Efficiency\": {\n            \"value\": [\n              -0.55,\n              -0.65\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Generation\": {\n            \"value\": [\n              -0.15,\n              -0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"83a93700-084e-4c4b-aed5-30dc99d1da0c\"\n      }\n    },\n    \"id\": 64,\n    \"modulename\": [\n      \"Power plant\"\n    ],\n    \"name\": \"Low emissions\",\n    \"symbol\": \"PowerPlant_Stealth\",\n    \"engineers\": {\n      \"Felicity Farseer\": {\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      \"Hera Tani\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Marco Qwent\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"ProspectingLimpet_LightWeight\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Phosphorus\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              0,\n              -0.45\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"bb27a6b6-5c10-41e8-a6b3-3abc8a4ed23e\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Manganese\": 1,\n          \"Salvaged Alloys\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.2,\n              -0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.45,\n              -0.55\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"95af3c55-ec45-4f5d-848d-1639307fee41\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Manganese\": 1,\n          \"Salvaged Alloys\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.3,\n              -0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.55,\n              -0.65\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"a3b84b26-d67e-4d8c-9653-f23181cce9f8\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Phase Alloys\": 1,\n          \"Proto Light Alloys\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.4,\n              -0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.65,\n              -0.75\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"363a9543-4072-4211-8c89-8e9477fa72eb\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Proto Light Alloys\": 1,\n          \"Proto Radiolic Alloys\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.5,\n              -0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.75,\n              -0.85\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"4de10a2c-e440-4b2e-95fb-e1121bff19a4\"\n      }\n    },\n    \"id\": 65,\n    \"modulename\": [\n      \"Prospector limpet controller\"\n    ],\n    \"name\": \"Lightweight\",\n    \"symbol\": \"ProspectingLimpet_LightWeight\",\n    \"engineers\": {\n      \"Ram Tah\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\"\n        ]\n      },\n      \"The Sarge\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Tiana Fortune\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"ProspectingLimpet_Reinforced\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.3,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"650fdb39-a2fa-4757-bac0-fcad6c7104f9\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Nickel\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0.6,\n              1.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.6,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"ee33e0d9-d8b2-4ac5-9370-7dac2f252570\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Nickel\": 1,\n          \"Shield Emitters\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              1.2,\n              1.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.9,\n              0.9\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"5c8c244e-2f93-4422-8fcb-ad4012020a8a\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Molybdenum\": 1,\n          \"Tungsten\": 1,\n          \"Zinc\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              1.8,\n              2.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              1.2,\n              1.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"31532d5f-6e3c-45a6-95b2-13fb0218aa7a\"\n      },\n      \"5\": {\n        \"components\": {\n          \"High Density Composites\": 1,\n          \"Molybdenum\": 1,\n          \"Technetium\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              2.4,\n              3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              1.5,\n              1.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"d98c0250-252f-4d48-9c98-e43b8c50b978\"\n      }\n    },\n    \"id\": 66,\n    \"modulename\": [\n      \"Prospector limpet controller\"\n    ],\n    \"name\": \"Reinforced\",\n    \"symbol\": \"ProspectingLimpet_Reinforced\",\n    \"engineers\": {\n      \"Ram Tah\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\"\n        ]\n      },\n      \"The Sarge\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Tiana Fortune\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"ProspectingLimpet_Shielded\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Worn Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"573d6e16-dc01-4093-a14d-420621279673\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0.6,\n              1.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.4,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"197d4759-f451-4b30-8051-08c5fde05421\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"High Density Composites\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              1.2,\n              1.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.6,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"633cafa0-a2c3-436c-867f-aba0205e55b8\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Proprietary Composites\": 1,\n          \"Shielding Sensors\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              1.8,\n              2.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.8,\n              0.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"6a396efb-3aa1-4022-b66d-dd299ff7e4d8\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Compound Shielding\": 1,\n          \"Core Dynamics Composites\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              2.4,\n              3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              1,\n              1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"85a8d27b-8f97-46fb-91b3-3f56553e1eef\"\n      }\n    },\n    \"id\": 67,\n    \"modulename\": [\n      \"Prospector limpet controller\"\n    ],\n    \"name\": \"Shielded\",\n    \"symbol\": \"ProspectingLimpet_Shielded\",\n    \"engineers\": {\n      \"Ram Tah\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\"\n        ]\n      },\n      \"The Sarge\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Tiana Fortune\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"Refineries_Shielded\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Worn Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"58578acb-b652-4a30-8ffe-e4e488325221\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0.6,\n              1.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.4,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"e33c7809-d6cd-4549-8596-9400baabc3cd\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"High Density Composites\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              1.2,\n              1.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.6,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"cffa4897-fa7a-44dd-8fe1-1b3702e82f9e\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Proprietary Composites\": 1,\n          \"Shielding Sensors\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              1.8,\n              2.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.8,\n              0.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"48d62ffb-b0ff-47bf-9e4a-a8a4cfbd22bc\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Core Dynamics Composites\": 1,\n          \"Compound Shielding\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              2.4,\n              3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              1,\n              1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"be6ba667-5458-11eb-a2cb-6805caa43529\"\n      }\n    },\n    \"id\": 92,\n    \"modulename\": [\n      \"Refinery\"\n    ],\n    \"name\": \"Shielded\",\n    \"symbol\": \"Refineries_Shielded\",\n    \"engineers\": {\n      \"Bill Turner\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Lori Jameson\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"Sensor_FastScan\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Phosphorus\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              -0.05,\n              -0.05\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Scan Time\": {\n            \"value\": [\n              0,\n              -0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"8e2046eb-06bf-44e4-8fad-981f24d68340\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Flawed Focus Crystals\": 1,\n          \"Phosphorus\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.2,\n              -0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Scan Time\": {\n            \"value\": [\n              -0.2,\n              -0.35\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"953bcfbf-a46d-45e2-90c7-f727e641edc3\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Flawed Focus Crystals\": 1,\n          \"Open Symmetric Keys\": 1,\n          \"Phosphorus\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.3,\n              -0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              -0.15,\n              -0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Scan Time\": {\n            \"value\": [\n              -0.35,\n              -0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"bed8bdc6-ef45-450e-aa7f-802cea642b2d\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Atypical Encryption Archives\": 1,\n          \"Focus Crystals\": 1,\n          \"Manganese\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.4,\n              -0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              -0.2,\n              -0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Scan Time\": {\n            \"value\": [\n              -0.5,\n              -0.65\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"610ba60e-d0e3-42c2-9269-c67bafb25546\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Adaptive Encryptors Capture\": 1,\n          \"Arsenic\": 1,\n          \"Refined Focus Crystals\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.5,\n              -0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              -0.25,\n              -0.25\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Scan Time\": {\n            \"value\": [\n              -0.8,\n              -0.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"64b8d29d-de5c-4b50-bd77-ae7cb3c78ed6\"\n      }\n    },\n    \"id\": 102,\n    \"modulename\": [\n      \"Wake scanner\",\n      \"Frame shift wake scanner\",\n      \"Kill warrant scanner\",\n      \"KWS\",\n      \"Cargo scanner\",\n      \"Manifest scanner\"\n    ],\n    \"name\": \"Fast scan\",\n    \"symbol\": \"Sensor_FastScan\",\n    \"engineers\": {\n      \"Bill Turner\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Lori Jameson\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Tiana Fortune\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Juri Ishmaak\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Etienne Dorn\": {\n        \"grades\": [\n          \"1\",\n          \"2\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"Scanner_LongRange\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"Power Draw\": {\n            \"value\": [\n              0.1,\n              0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Scan Angle\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              0,\n              0.24\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"1b566f8d-56ef-4b11-bb06-1fd9c603ab1c\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Hybrid Capacitors\": 1,\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"Power Draw\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Scan Angle\": {\n            \"value\": [\n              -0.15,\n              -0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              0.24,\n              0.48\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"9371ee9f-12a1-4859-9b97-e3c3c87ee0a0\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Hybrid Capacitors\": 1,\n          \"Iron\": 1,\n          \"Unexpected Emission Data\": 1\n        },\n        \"features\": {\n          \"Power Draw\": {\n            \"value\": [\n              0.3,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Scan Angle\": {\n            \"value\": [\n              -0.2,\n              -0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              0.48,\n              0.72\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"317bbfd2-7b05-4f7a-b6ca-55e0a7d3f147\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Decoded Emission Data\": 1,\n          \"Electrochemical Arrays\": 1,\n          \"Germanium\": 1\n        },\n        \"features\": {\n          \"Power Draw\": {\n            \"value\": [\n              0.4,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Scan Angle\": {\n            \"value\": [\n              -0.25,\n              -0.25\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              0.72,\n              0.96\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"5e3ac270-69ef-4301-9e86-8c9cbc5ada89\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Abnormal Compact Emissions Data\": 1,\n          \"Niobium\": 1,\n          \"Polymer Capacitors\": 1\n        },\n        \"features\": {\n          \"Power Draw\": {\n            \"value\": [\n              0.5,\n              0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Scan Angle\": {\n            \"value\": [\n              -0.3,\n              -0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              0.96,\n              1.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"993b050e-b308-4010-8ba6-58e08483793d\"\n      }\n    },\n    \"id\": 104,\n    \"modulename\": [\n      \"Wake scanner\",\n      \"Frame shift wake scanner\",\n      \"Kill warrant scanner\",\n      \"KWS\",\n      \"Cargo scanner\",\n      \"Manifest scanner\"\n    ],\n    \"name\": \"Long range\",\n    \"symbol\": \"Scanner_LongRange\",\n    \"engineers\": {\n      \"Bill Turner\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Lori Jameson\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Tiana Fortune\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Juri Ishmaak\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Etienne Dorn\": {\n        \"grades\": [\n          \"1\",\n          \"2\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"Scanner_WideAngle\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Mechanical Scrap\": 1\n        },\n        \"features\": {\n          \"Mass\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Scan Angle\": {\n            \"value\": [\n              0,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Scan Time\": {\n            \"value\": [\n              0.1,\n              0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"c034e952-985f-4b04-9d9e-bec4ddc50171\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Germanium\": 1,\n          \"Mechanical Scrap\": 1\n        },\n        \"features\": {\n          \"Mass\": {\n            \"value\": [\n              0.4,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Scan Angle\": {\n            \"value\": [\n              0.4,\n              0.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Scan Time\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"c2dee450-a617-4740-9af9-57cf2ea7de4f\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Classified Scan Databanks\": 1,\n          \"Germanium\": 1,\n          \"Mechanical Scrap\": 1\n        },\n        \"features\": {\n          \"Mass\": {\n            \"value\": [\n              0.6,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Scan Angle\": {\n            \"value\": [\n              0.8,\n              1.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Scan Time\": {\n            \"value\": [\n              0.3,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"181cd2e3-ef3c-4939-b5b9-f6b21090d920\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Divergent Scan Data\": 1,\n          \"Mechanical Equipment\": 1,\n          \"Niobium\": 1\n        },\n        \"features\": {\n          \"Mass\": {\n            \"value\": [\n              0.8,\n              0.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Scan Angle\": {\n            \"value\": [\n              1.2,\n              1.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Scan Time\": {\n            \"value\": [\n              0.4,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"a93247e8-cbce-4026-9640-6137934614c9\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Classified Scan Fragment\": 1,\n          \"Mechanical Components\": 1,\n          \"Tin\": 1\n        },\n        \"features\": {\n          \"Mass\": {\n            \"value\": [\n              1,\n              1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Scan Angle\": {\n            \"value\": [\n              1.6,\n              2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Scan Time\": {\n            \"value\": [\n              0.5,\n              0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"9f6b1226-d7b9-4bcd-b60d-9e8227be79f2\"\n      }\n    },\n    \"id\": 105,\n    \"modulename\": [\n      \"Wake scanner\",\n      \"Frame shift wake scanner\",\n      \"Kill warrant scanner\",\n      \"KWS\",\n      \"Cargo scanner\",\n      \"Manifest scanner\"\n    ],\n    \"name\": \"Wide angle\",\n    \"symbol\": \"Scanner_WideAngle\",\n    \"engineers\": {\n      \"Bill Turner\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Lori Jameson\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Tiana Fortune\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Juri Ishmaak\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Etienne Dorn\": {\n        \"grades\": [\n          \"1\",\n          \"2\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"Sensor_LightWeight\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Phosphorus\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              0,\n              -0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Scan Angle\": {\n            \"value\": [\n              -0.05,\n              -0.05\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"239cd942-3298-4be0-b032-143961c801a1\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Manganese\": 1,\n          \"Salvaged Alloys\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.2,\n              -0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.2,\n              -0.35\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Scan Angle\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"8dd41f78-c4f0-4107-a1fe-d1eee78bbd23\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Manganese\": 1,\n          \"Salvaged Alloys\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.3,\n              -0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.35,\n              -0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Scan Angle\": {\n            \"value\": [\n              -0.15,\n              -0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"d51697d0-c837-4c0d-a6af-f192ace27e9a\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Phase Alloys\": 1,\n          \"Proto Light Alloys\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.4,\n              -0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.5,\n              -0.65\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Scan Angle\": {\n            \"value\": [\n              -0.2,\n              -0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"01ccf913-c1cb-47a6-9515-1d2ee3e3b2ae\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Proto Light Alloys\": 1,\n          \"Proto Radiolic Alloys\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.5,\n              -0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.65,\n              -0.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Scan Angle\": {\n            \"value\": [\n              -0.25,\n              -0.25\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"93c0ae86-d3ac-40c5-9ef3-b65c14d53cf6\"\n      }\n    },\n    \"id\": 96,\n    \"modulename\": [\n      \"Sensors\"\n    ],\n    \"name\": \"Lightweight\",\n    \"symbol\": \"Sensor_LightWeight\",\n    \"engineers\": {\n      \"Bill Turner\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Juri Ishmaak\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Lei Cheung\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Lori Jameson\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Tiana Fortune\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Felicity Farseer\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Hera Tani\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Etienne Dorn\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"Sensor_LongRange\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"Mass\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Scan Angle\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              0,\n              0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"92c755ae-690b-442c-bacd-606575987f22\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Hybrid Capacitors\": 1,\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"Mass\": {\n            \"value\": [\n              0.4,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Scan Angle\": {\n            \"value\": [\n              -0.15,\n              -0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              0.15,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"40167259-2960-4072-a135-cba93c87709d\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Hybrid Capacitors\": 1,\n          \"Iron\": 1,\n          \"Unexpected Emission Data\": 1\n        },\n        \"features\": {\n          \"Mass\": {\n            \"value\": [\n              0.6,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Scan Angle\": {\n            \"value\": [\n              -0.2,\n              -0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              0.3,\n              0.45\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"6d422ca1-ebdd-4c87-b2b2-056e36c0cbfb\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Decoded Emission Data\": 1,\n          \"Electrochemical Arrays\": 1,\n          \"Germanium\": 1\n        },\n        \"features\": {\n          \"Mass\": {\n            \"value\": [\n              0.8,\n              0.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Scan Angle\": {\n            \"value\": [\n              -0.25,\n              -0.25\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              0.45,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"6b09d91f-919f-4a3a-9900-850b026ab01c\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Abnormal Compact Emissions Data\": 1,\n          \"Niobium\": 1,\n          \"Polymer Capacitors\": 1\n        },\n        \"features\": {\n          \"Mass\": {\n            \"value\": [\n              1,\n              1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Scan Angle\": {\n            \"value\": [\n              -0.3,\n              -0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              0.6,\n              0.75\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"c055cafb-3e8a-4415-8e9b-cfa8be809b75\"\n      }\n    },\n    \"id\": 97,\n    \"modulename\": [\n      \"Sensors\"\n    ],\n    \"name\": \"Long range\",\n    \"symbol\": \"Sensor_LongRange\",\n    \"engineers\": {\n      \"Bill Turner\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Juri Ishmaak\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Lei Cheung\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Lori Jameson\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Tiana Fortune\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Felicity Farseer\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Hera Tani\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Etienne Dorn\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"Sensor_WideAngle\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Mechanical Scrap\": 1\n        },\n        \"features\": {\n          \"Power Draw\": {\n            \"value\": [\n              0.1,\n              0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Scan Angle\": {\n            \"value\": [\n              0,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              -0.04,\n              -0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"996dc047-9f07-47a6-8b05-3283ce666fa7\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Germanium\": 1,\n          \"Mechanical Scrap\": 1\n        },\n        \"features\": {\n          \"Power Draw\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Scan Angle\": {\n            \"value\": [\n              0.4,\n              0.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              -0.08,\n              -0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"0855a023-3a25-44c1-84fa-c6e4e8ac3384\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Classified Scan Databanks\": 1,\n          \"Germanium\": 1,\n          \"Mechanical Scrap\": 1\n        },\n        \"features\": {\n          \"Power Draw\": {\n            \"value\": [\n              0.3,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Scan Angle\": {\n            \"value\": [\n              0.8,\n              1.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              -0.12,\n              -0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"06908f4d-30e8-448f-9652-5051a79713f3\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Divergent Scan Data\": 1,\n          \"Mechanical Equipment\": 1,\n          \"Niobium\": 1\n        },\n        \"features\": {\n          \"Power Draw\": {\n            \"value\": [\n              0.4,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Scan Angle\": {\n            \"value\": [\n              1.2,\n              1.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              -0.16,\n              -0.16\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"af874bae-07c3-457a-b525-baeb771b3d72\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Classified Scan Fragment\": 1,\n          \"Mechanical Components\": 1,\n          \"Tin\": 1\n        },\n        \"features\": {\n          \"Power Draw\": {\n            \"value\": [\n              0.5,\n              0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Scan Angle\": {\n            \"value\": [\n              1.6,\n              2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              -0.2,\n              -0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"1368129e-942e-452e-8228-8a3622dc72a1\"\n      }\n    },\n    \"id\": 98,\n    \"modulename\": [\n      \"Sensors\"\n    ],\n    \"name\": \"Wide angle\",\n    \"symbol\": \"Sensor_WideAngle\",\n    \"engineers\": {\n      \"Bill Turner\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Juri Ishmaak\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Lei Cheung\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Lori Jameson\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Tiana Fortune\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Felicity Farseer\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Hera Tani\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Etienne Dorn\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"Sensor_Expanded\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Mechanical Scrap\": 1\n        },\n        \"features\": {\n          \"Mass\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Probe Radius\": {\n            \"value\": [\n              0,\n              0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"d2f404d2-a8b9-4dfb-ae3c-43f0208123cb\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Mechanical Scrap\": 1,\n          \"Germanium\": 1\n        },\n        \"features\": {\n          \"Mass\": {\n            \"value\": [\n              0.4,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Probe Radius\": {\n            \"value\": [\n              0.1,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"2a077c82-5671-4c22-b3cb-caff4979c644\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Mechanical Scrap\": 1,\n          \"Germanium\": 1,\n          \"Phase Alloys\": 1\n        },\n        \"features\": {\n          \"Mass\": {\n            \"value\": [\n              0.6,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Probe Radius\": {\n            \"value\": [\n              0.2,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"081990f9-99d3-435a-9428-ad26471576de\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Mechanical Equipment\": 1,\n          \"Niobium\": 1,\n          \"Proto Light Alloys\": 1\n        },\n        \"features\": {\n          \"Mass\": {\n            \"value\": [\n              0.8,\n              0.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Probe Radius\": {\n            \"value\": [\n              0.3,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"aa10c84d-1409-48d5-ac02-d0a100d27555\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Mechanical Components\": 1,\n          \"Tin\": 1,\n          \"Proto Radiolic Alloys\": 1\n        },\n        \"features\": {\n          \"Mass\": {\n            \"value\": [\n              1,\n              1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Probe Radius\": {\n            \"value\": [\n              0.4,\n              0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"ea7dfe28-95d0-4939-bcf2-282dbed7d80f\\n\"\n      }\n    },\n    \"id\": 93,\n    \"modulename\": [\n      \"Detailed surface scanner\",\n      \"DSS\"\n    ],\n    \"name\": \"Expanded Probe Scanning Radius\",\n    \"symbol\": \"Sensor_Expanded\",\n    \"engineers\": {\n      \"Bill Turner\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Felicity Farseer\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Juri Ishmaak\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Lei Cheung\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Lori Jameson\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Tiana Fortune\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"ShieldBooster_Explosive\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              0,\n              0.07\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              -0.01,\n              -0.01\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              -0.01,\n              -0.01\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"b6dd19e6-60e4-4307-a34f-c7e0e6182d44\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              0.07,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              -0.0175,\n              -0.0175\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              -0.0175,\n              -0.0175\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"3dd5f8fb-8399-4c4c-96d7-87c3840cfdeb\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Focus Crystals\": 1,\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              0.12,\n              0.17\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              -0.025,\n              -0.025\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              -0.025,\n              -0.025\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"640409d8-6cb5-4624-b2b6-f435c9d8453b\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Germanium\": 1,\n          \"Refined Focus Crystals\": 1,\n          \"Untypical Shield Scans\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              0.17,\n              0.22\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              -0.0325,\n              -0.0325\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              -0.0325,\n              -0.0325\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"8a311709-54f6-4a5f-a1cc-94c109d947df\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Aberrant Shield Pattern Analysis\": 1,\n          \"Exquisite Focus Crystals\": 1,\n          \"Niobium\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              0.22,\n              0.27\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              -0.04,\n              -0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              -0.04,\n              -0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"4f120562-e421-4ed8-b0ed-0be8e27548bb\"\n      }\n    },\n    \"id\": 68,\n    \"modulename\": [\n      \"Shield booster\"\n    ],\n    \"name\": \"Blast resistant\",\n    \"symbol\": \"ShieldBooster_Explosive\",\n    \"engineers\": {\n      \"Didi Vatermann\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Felicity Farseer\": {\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      \"Lei Cheung\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"ShieldBooster_HeavyDuty\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Grid Resistors\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0,\n              0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              1,\n              1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.05,\n              0.05\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Shield Boost\": {\n            \"value\": [\n              0.03,\n              0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"350e7873-893a-49d2-9057-c00e060178eb\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Distorted Shield Cycle Recordings\": 1,\n          \"Hybrid Capacitors\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0.03,\n              0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              1.5,\n              1.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.1,\n              0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Shield Boost\": {\n            \"value\": [\n              0.1,\n              0.17\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"636ccc8d-cc59-4366-9934-8b235becc2d7\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Distorted Shield Cycle Recordings\": 1,\n          \"Hybrid Capacitors\": 1,\n          \"Niobium\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0.06,\n              0.09\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              2,\n              2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.15,\n              0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Shield Boost\": {\n            \"value\": [\n              0.17,\n              0.24\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"82a66c08-1205-4c1a-ab02-1889e8ebcdd8\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Electrochemical Arrays\": 1,\n          \"Inconsistent Shield Soak Analysis\": 1,\n          \"Tin\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0.09,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              2.5,\n              2.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Shield Boost\": {\n            \"value\": [\n              0.24,\n              0.31\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"c635934c-8d9d-4d1c-89e4-3a000a972bf2\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Antimony\": 1,\n          \"Polymer Capacitors\": 1,\n          \"Untypical Shield Scans\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0.12,\n              0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              3,\n              3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.25,\n              0.25\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Shield Boost\": {\n            \"value\": [\n              0.31,\n              0.38\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"933e238e-56e0-44d6-b114-49eaab02f033\"\n      }\n    },\n    \"id\": 69,\n    \"modulename\": [\n      \"Shield booster\"\n    ],\n    \"name\": \"Heavy duty\",\n    \"symbol\": \"ShieldBooster_HeavyDuty\",\n    \"engineers\": {\n      \"Didi Vatermann\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Felicity Farseer\": {\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      \"Lei Cheung\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"ShieldBooster_Kinetic\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              -0.01,\n              -0.01\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0,\n              0.07\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              -0.01,\n              -0.01\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"8252b4bb-3195-4f46-88e8-b79ed5b5ad43\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Germanium\": 1,\n          \"Grid Resistors\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              -0.0175,\n              -0.0175\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.07,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              -0.0175,\n              -0.0175\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"5f099a0e-0c37-447b-b552-f2e3d8dc1d19\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Focus Crystals\": 1,\n          \"Hybrid Capacitors\": 1,\n          \"Salvaged Alloys\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              -0.025,\n              -0.025\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.12,\n              0.17\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              -0.025,\n              -0.025\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"ab7f39b5-0b0e-45b2-a016-0916026e9633\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Galvanising Alloys\": 1,\n          \"Refined Focus Crystals\": 1,\n          \"Untypical Shield Scans\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              -0.0325,\n              -0.0325\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.17,\n              0.22\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              -0.0325,\n              -0.0325\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"59ddbb49-f4fc-466d-84b6-06f0529915a9\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Aberrant Shield Pattern Analysis\": 1,\n          \"Exquisite Focus Crystals\": 1,\n          \"Phase Alloys\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              -0.04,\n              -0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.22,\n              0.27\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              -0.04,\n              -0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"a224e524-7308-46a1-9a6b-a37a82bdc50b\"\n      }\n    },\n    \"id\": 70,\n    \"modulename\": [\n      \"Shield booster\"\n    ],\n    \"name\": \"Kinetic resistant\",\n    \"symbol\": \"ShieldBooster_Kinetic\",\n    \"engineers\": {\n      \"Didi Vatermann\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Felicity Farseer\": {\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      \"Lei Cheung\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"ShieldBooster_Resistive\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Phosphorus\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              0.05,\n              0.05\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Integrity\": {\n            \"value\": [\n              -0.04,\n              -0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.05,\n              0.05\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.05,\n              0.05\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.05,\n              0.05\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"54f9f0c6-b4e9-4861-86ab-730d800bea54\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Phosphorus\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              0.08,\n              0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Integrity\": {\n            \"value\": [\n              -0.06,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.08,\n              0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.1,\n              0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.08,\n              0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"f082652b-7778-4bce-a1f1-f2491b27eb1a\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Focus Crystals\": 1,\n          \"Phosphorus\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              0.11,\n              0.11\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Integrity\": {\n            \"value\": [\n              -0.08,\n              -0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.11,\n              0.11\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.15,\n              0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.11,\n              0.11\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"cfb01505-ea2b-4a33-aa6b-cbabeb60db7c\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Manganese\": 1,\n          \"Refined Focus Crystals\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              0.14,\n              0.14\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Integrity\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.14,\n              0.14\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.14,\n              0.14\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"1d11b8c8-9c16-4bdb-ba33-e52e79fa5999\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Imperial Shielding\": 1,\n          \"Refined Focus Crystals\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              0.17,\n              0.17\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Integrity\": {\n            \"value\": [\n              -0.12,\n              -0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.17,\n              0.17\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.25,\n              0.25\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.17,\n              0.17\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"00a2aefc-0698-4c16-a1f1-6a84907e42bc\"\n      }\n    },\n    \"id\": 71,\n    \"modulename\": [\n      \"Shield booster\"\n    ],\n    \"name\": \"Resistance augmented\",\n    \"symbol\": \"ShieldBooster_Resistive\",\n    \"engineers\": {\n      \"Didi Vatermann\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Felicity Farseer\": {\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      \"Lei Cheung\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"ShieldBooster_Thermic\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              -0.01,\n              -0.01\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              -0.01,\n              -0.01\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0,\n              0.07\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"9316e798-33cd-4ed2-8289-94eb82e41574\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Germanium\": 1,\n          \"Heat Conduction Wiring\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              -0.0175,\n              -0.0175\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              -0.0175,\n              -0.0175\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.07,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"62eaf453-a4dd-42e6-b404-dfb7569afec6\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Focus Crystals\": 1,\n          \"Heat Conduction Wiring\": 1,\n          \"Heat Dispersion Plate\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              -0.025,\n              -0.025\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              -0.025,\n              -0.025\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.12,\n              0.17\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"90cddf76-5636-46ae-8c41-b28c6831549b\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Heat Dispersion Plate\": 1,\n          \"Refined Focus Crystals\": 1,\n          \"Untypical Shield Scans\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              -0.0325,\n              -0.0325\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              -0.0325,\n              -0.0325\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.17,\n              0.22\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"3a922d38-e010-4874-97c9-7459dda8c184\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Aberrant Shield Pattern Analysis\": 1,\n          \"Exquisite Focus Crystals\": 1,\n          \"Heat Exchangers\": 1\n        },\n        \"features\": {\n          \"Explosive Resistance\": {\n            \"value\": [\n              -0.04,\n              -0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              -0.04,\n              -0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.22,\n              0.27\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"562f0d31-cefe-4631-939e-53168a9df2ab\"\n      }\n    },\n    \"id\": 72,\n    \"modulename\": [\n      \"Shield booster\"\n    ],\n    \"name\": \"Thermal resistant\",\n    \"symbol\": \"ShieldBooster_Thermic\",\n    \"engineers\": {\n      \"Didi Vatermann\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Felicity Farseer\": {\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      \"Lei Cheung\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"ShieldCellBank_Rapid\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Sulphur\": 1\n        },\n        \"features\": {\n          \"Boot time\": {\n            \"value\": [\n              0.1,\n              0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Duration\": {\n            \"value\": [\n              -0.06,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Shield Reinforcement\": {\n            \"value\": [\n              0,\n              0.05\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Spin Up Time\": {\n            \"value\": [\n              0,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"8f315143-e256-41c2-8833-f35d12e47dce\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Chromium\": 1,\n          \"Grid Resistors\": 1\n        },\n        \"features\": {\n          \"Boot time\": {\n            \"value\": [\n              0.15,\n              0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Duration\": {\n            \"value\": [\n              -0.12,\n              -0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Shield Reinforcement\": {\n            \"value\": [\n              0.05,\n              0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Spin Up Time\": {\n            \"value\": [\n              -0.1,\n              -0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"f983d8e1-9a38-425c-a5bb-3881c5e0f14d\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Hybrid Capacitors\": 1,\n          \"Precipitated Alloys\": 1,\n          \"Sulphur\": 1\n        },\n        \"features\": {\n          \"Boot time\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Duration\": {\n            \"value\": [\n              -0.18,\n              -0.18\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Shield Reinforcement\": {\n            \"value\": [\n              0.1,\n              0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Spin Up Time\": {\n            \"value\": [\n              -0.2,\n              -0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"f1cc436c-d2f0-4b79-a832-5fafd62ab5d8\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Hybrid Capacitors\": 1,\n          \"Precipitated Alloys\": 1,\n          \"Sulphur\": 1\n        },\n        \"features\": {\n          \"Boot time\": {\n            \"value\": [\n              0.25,\n              0.25\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Duration\": {\n            \"value\": [\n              -0.24,\n              -0.24\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Shield Reinforcement\": {\n            \"value\": [\n              0.15,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Spin Up Time\": {\n            \"value\": [\n              -0.3,\n              -0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"3f4ce660-9aea-4fe3-abe8-00b9408b4a66\"\n      }\n    },\n    \"id\": 73,\n    \"modulename\": [\n      \"Shield cell bank\",\n      \"SCB\"\n    ],\n    \"name\": \"Rapid charge\",\n    \"symbol\": \"ShieldCellBank_Rapid\",\n    \"engineers\": {\n      \"Elvira Martuuk\": {\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      \"Lori Jameson\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Mel Brandon\": {\n        \"grades\": [\n          \"4\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"ShieldCellBank_Specialised\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Specialised Legacy Firmware\": 1\n        },\n        \"features\": {\n          \"Boot time\": {\n            \"value\": [\n              0,\n              -0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Integrity\": {\n            \"value\": [\n              -0.05,\n              -0.05\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.1,\n              0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Shield Reinforcement\": {\n            \"value\": [\n              0,\n              0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              0,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"3aa962e3-48f8-4305-829a-717dbead2830\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Specialised Legacy Firmware\": 1\n        },\n        \"features\": {\n          \"Boot time\": {\n            \"value\": [\n              -0.08,\n              -0.16\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Integrity\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.15,\n              0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Shield Reinforcement\": {\n            \"value\": [\n              0.04,\n              0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              -0.06,\n              -0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"53d40533-967f-4792-b938-421f7a938540\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Cracked Industrial Firmware\": 1,\n          \"Exceptional Scrambled Emission Data\": 1\n        },\n        \"features\": {\n          \"Boot time\": {\n            \"value\": [\n              -0.16,\n              -0.24\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Integrity\": {\n            \"value\": [\n              -0.15,\n              -0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Shield Reinforcement\": {\n            \"value\": [\n              0.06,\n              0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              -0.12,\n              -0.18\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"0648b687-cf76-4953-a531-7eca944ec325\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Cracked Industrial Firmware\": 1,\n          \"Yttrium\": 1\n        },\n        \"features\": {\n          \"Boot time\": {\n            \"value\": [\n              -0.24,\n              -0.32\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Integrity\": {\n            \"value\": [\n              -0.2,\n              -0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.25,\n              0.25\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Shield Reinforcement\": {\n            \"value\": [\n              0.08,\n              0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              -0.18,\n              -0.24\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"4766533c-3dff-4871-8c5f-3a1338c88cd2\"\n      }\n    },\n    \"id\": 74,\n    \"modulename\": [\n      \"Shield cell bank\",\n      \"SCB\"\n    ],\n    \"name\": \"Specialised\",\n    \"symbol\": \"ShieldCellBank_Specialised\",\n    \"engineers\": {\n      \"Elvira Martuuk\": {\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      \"Lori Jameson\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Mel Brandon\": {\n        \"grades\": [\n          \"4\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"ShieldGenerator_Kinetic\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Distorted Shield Cycle Recordings\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0,\n              0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              -0.03,\n              -0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"df87f0c1-bd60-4e18-8a03-76063d635235\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Distorted Shield Cycle Recordings\": 1,\n          \"Modified Consumer Firmware\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0.2,\n              0.25\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.1,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              -0.06,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"b67f86a0-866c-4233-9cd3-f5ea87a572eb\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Distorted Shield Cycle Recordings\": 1,\n          \"Modified Consumer Firmware\": 1,\n          \"Selenium\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0.25,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.2,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              -0.09,\n              -0.09\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"93979fd6-d135-4221-9a60-c9354e02619f\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Focus Crystals\": 1,\n          \"Inconsistent Shield Soak Analysis\": 1,\n          \"Mercury\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0.3,\n              0.35\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.3,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              -0.12,\n              -0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"0e14c801-fd35-4bca-b97b-24da20d8c716\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Refined Focus Crystals\": 1,\n          \"Ruthenium\": 1,\n          \"Untypical Shield Scans\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0.35,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.4,\n              0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              -0.15,\n              -0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"dfdb4767-78e1-4e5f-ae1a-aeb6ae2748c9\"\n      }\n    },\n    \"id\": 75,\n    \"modulename\": [\n      \"Shield generator\",\n      \"Shields\"\n    ],\n    \"name\": \"Kinetic resistant\",\n    \"symbol\": \"ShieldGenerator_Kinetic\",\n    \"engineers\": {\n      \"Didi Vatermann\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Elvira Martuuk\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Lei Cheung\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"ShieldGenerator_Optimised\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Distorted Shield Cycle Recordings\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.05,\n              -0.05\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              0,\n              -0.18\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Optimal Mass\": {\n            \"value\": [\n              -0.02,\n              -0.02\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Multiplier\": {\n            \"value\": [\n              0,\n              0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0,\n              -0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"598e0c47-ecd2-4cfa-93d1-08bbda4cd765\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Distorted Shield Cycle Recordings\": 1,\n          \"Germanium\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.18,\n              -0.26\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Optimal Mass\": {\n            \"value\": [\n              -0.03,\n              -0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Multiplier\": {\n            \"value\": [\n              0.03,\n              0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              -0.2,\n              -0.25\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"605d6333-c544-425e-96c6-a76b6b839e2c\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Distorted Shield Cycle Recordings\": 1,\n          \"Germanium\": 1,\n          \"Precipitated Alloys\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.15,\n              -0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.26,\n              -0.34\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Optimal Mass\": {\n            \"value\": [\n              -0.04,\n              -0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Multiplier\": {\n            \"value\": [\n              0.06,\n              0.09\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              -0.25,\n              -0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"db5f0467-5bdc-433e-986d-031bbd48067b\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Inconsistent Shield Soak Analysis\": 1,\n          \"Niobium\": 1,\n          \"Thermic Alloys\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.2,\n              -0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.34,\n              -0.42\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Optimal Mass\": {\n            \"value\": [\n              -0.05,\n              -0.05\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Multiplier\": {\n            \"value\": [\n              0.09,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              -0.3,\n              -0.35\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"88987ab7-b759-4cda-acbb-726bd0ad17c7\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Military Grade Alloys\": 1,\n          \"Tin\": 1,\n          \"Untypical Shield Scans\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.25,\n              -0.25\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.42,\n              -0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Optimal Mass\": {\n            \"value\": [\n              -0.06,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Optimal Multiplier\": {\n            \"value\": [\n              0.12,\n              0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              -0.35,\n              -0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"cf878a5a-542b-46e8-8b56-4d179eac3f46\"\n      }\n    },\n    \"id\": 76,\n    \"modulename\": [\n      \"Shield generator\",\n      \"Shields\"\n    ],\n    \"name\": \"Enhanced low power\",\n    \"symbol\": \"ShieldGenerator_Optimised\",\n    \"engineers\": {\n      \"Didi Vatermann\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Elvira Martuuk\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Lei Cheung\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"ShieldGenerator_Reinforced\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Phosphorus\": 1\n        },\n        \"features\": {\n          \"Broken Regeneration Rate\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Distributer Draw\": {\n            \"value\": [\n              0.04,\n              0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Explosive Resistance\": {\n            \"value\": [\n              0,\n              0.045\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0,\n              0.045\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Optimal Multiplier\": {\n            \"value\": [\n              0,\n              0.14\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0,\n              0.045\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"47ad77c0-e49b-44e5-9824-4074b63db369\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Phosphorus\": 1\n        },\n        \"features\": {\n          \"Broken Regeneration Rate\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Distributer Draw\": {\n            \"value\": [\n              0.06,\n              0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Explosive Resistance\": {\n            \"value\": [\n              0.045,\n              0.075\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.045,\n              0.075\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Optimal Multiplier\": {\n            \"value\": [\n              0.14,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.045,\n              0.075\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"823f8f82-745d-4051-8f35-4e38a561932e\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Mechanical Components\": 1,\n          \"Phosphorus\": 1\n        },\n        \"features\": {\n          \"Broken Regeneration Rate\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Distributer Draw\": {\n            \"value\": [\n              0.08,\n              0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Explosive Resistance\": {\n            \"value\": [\n              0.075,\n              0.105\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.075,\n              0.105\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Optimal Multiplier\": {\n            \"value\": [\n              0.2,\n              0.26\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.075,\n              0.105\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"a1a29713-f2e5-4e15-a913-e01dc065f99f\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Configurable Components\": 1,\n          \"Manganese\": 1\n        },\n        \"features\": {\n          \"Broken Regeneration Rate\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Distributer Draw\": {\n            \"value\": [\n              0.1,\n              0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Explosive Resistance\": {\n            \"value\": [\n              0.105,\n              0.135\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.105,\n              0.135\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Optimal Multiplier\": {\n            \"value\": [\n              0.26,\n              0.32\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.105,\n              0.135\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"87ac1315-7904-48f6-a5fe-f044be546490\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Arsenic\": 1,\n          \"Conductive Polymers\": 1,\n          \"Improvised Components\": 1\n        },\n        \"features\": {\n          \"Broken Regeneration Rate\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Distributer Draw\": {\n            \"value\": [\n              0.12,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Explosive Resistance\": {\n            \"value\": [\n              0.135,\n              0.165\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              0.135,\n              0.165\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          },\n          \"Optimal Multiplier\": {\n            \"value\": [\n              0.32,\n              0.38\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.135,\n              0.165\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"1d9af376-c7c9-4b1a-9bc9-e77b4025e328\"\n      }\n    },\n    \"id\": 77,\n    \"modulename\": [\n      \"Shield generator\",\n      \"Shields\"\n    ],\n    \"name\": \"Reinforced\",\n    \"symbol\": \"ShieldGenerator_Reinforced\",\n    \"engineers\": {\n      \"Didi Vatermann\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Elvira Martuuk\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Lei Cheung\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"ShieldGenerator_Thermic\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Distorted Shield Cycle Recordings\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              -0.04,\n              -0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0,\n              0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"ef5a3026-0777-4715-a1f4-5c65eff85b12\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Distorted Shield Cycle Recordings\": 1,\n          \"Germanium\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0.2,\n              0.25\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              -0.08,\n              -0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.1,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"54e6e07a-3281-41aa-afa0-bbf292131c0f\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Distorted Shield Cycle Recordings\": 1,\n          \"Germanium\": 1,\n          \"Selenium\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0.25,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              -0.12,\n              -0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.2,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"307935bf-60d3-4887-b449-24d712518154\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Focus Crystals\": 1,\n          \"Inconsistent Shield Soak Analysis\": 1,\n          \"Mercury\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0.3,\n              0.35\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              -0.16,\n              -0.16\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.3,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"ef6a4d70-9996-4db8-ae22-7c61c3dcaf74\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Refined Focus Crystals\": 1,\n          \"Ruthenium\": 1,\n          \"Untypical Shield Scans\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0.35,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Kinetic Resistance\": {\n            \"value\": [\n              -0.2,\n              -0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Thermal Resistance\": {\n            \"value\": [\n              0.4,\n              0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"additive\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"f14e779f-d09a-47e4-8f4e-89c85b730f6b\"\n      }\n    },\n    \"id\": 78,\n    \"modulename\": [\n      \"Shield generator\",\n      \"Shields\"\n    ],\n    \"name\": \"Thermal resistant\",\n    \"symbol\": \"ShieldGenerator_Thermic\",\n    \"engineers\": {\n      \"Didi Vatermann\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Elvira Martuuk\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Lei Cheung\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"Weapon_DoubleShot\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Carbon\": 1\n        },\n        \"features\": {\n          \"Burst\": {\n            \"value\": [\n              2,\n              2\n            ],\n            \"type\": \"numeric\",\n            \"method\": \"overwrite\",\n            \"improvement\": true\n          },\n          \"Burst Rate Of Fire\": {\n            \"value\": [\n              0,\n              6\n            ],\n            \"type\": \"numeric\",\n            \"method\": \"overwrite\",\n            \"improvement\": true\n          },\n          \"Ammo Clip Size\": {\n            \"value\": [\n              0.34,\n              0.34\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              -0.02,\n              -0.02\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"0dad25c2-bbf3-4020-9af5-25f902ec7732\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Mechanical Equipment\": 1\n        },\n        \"features\": {\n          \"Burst\": {\n            \"value\": [\n              2,\n              2\n            ],\n            \"type\": \"numeric\",\n            \"method\": \"overwrite\",\n            \"improvement\": true\n          },\n          \"Burst Rate Of Fire\": {\n            \"value\": [\n              6,\n              8\n            ],\n            \"type\": \"numeric\",\n            \"method\": \"overwrite\",\n            \"improvement\": true\n          },\n          \"Ammo Clip Size\": {\n            \"value\": [\n              0.34,\n              0.34\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              -0.04,\n              -0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"5cdaf06c-5ecd-40f0-bb8b-54ce8847b4e6\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Carbon\": 1,\n          \"Cracked Industrial Firmware\": 1,\n          \"Mechanical Equipment\": 1\n        },\n        \"features\": {\n          \"Burst\": {\n            \"value\": [\n              2,\n              2\n            ],\n            \"type\": \"numeric\",\n            \"method\": \"overwrite\",\n            \"improvement\": true\n          },\n          \"Burst Rate Of Fire\": {\n            \"value\": [\n              8,\n              10\n            ],\n            \"type\": \"numeric\",\n            \"method\": \"overwrite\",\n            \"improvement\": true\n          },\n          \"Ammo Clip Size\": {\n            \"value\": [\n              0.34,\n              0.34\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              -0.06,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"fca184ef-5346-4f9a-8964-1e158763ab03\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Mechanical Components\": 1,\n          \"Security Firmware Patch\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"Burst\": {\n            \"value\": [\n              2,\n              2\n            ],\n            \"type\": \"numeric\",\n            \"method\": \"overwrite\",\n            \"improvement\": true\n          },\n          \"Burst Rate Of Fire\": {\n            \"value\": [\n              10,\n              12\n            ],\n            \"type\": \"numeric\",\n            \"method\": \"overwrite\",\n            \"improvement\": true\n          },\n          \"Ammo Clip Size\": {\n            \"value\": [\n              0.34,\n              0.34\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              -0.08,\n              -0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"93cc424a-f547-409e-8487-2f73c27d4e47\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Configurable Components\": 1,\n          \"High Density Composites\": 1,\n          \"Modified Embedded Firmware\": 1\n        },\n        \"features\": {\n          \"Burst\": {\n            \"value\": [\n              2,\n              2\n            ],\n            \"type\": \"numeric\",\n            \"method\": \"overwrite\",\n            \"improvement\": true\n          },\n          \"Burst Rate Of Fire\": {\n            \"value\": [\n              12,\n              14\n            ],\n            \"type\": \"numeric\",\n            \"method\": \"overwrite\",\n            \"improvement\": true\n          },\n          \"Ammo Clip Size\": {\n            \"value\": [\n              1,\n              1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"0d790580-fc41-4378-b8e9-4feceaebb618\"\n      }\n    },\n    \"id\": 82,\n    \"modulename\": [\n      \"Weapon\"\n    ],\n    \"name\": \"Double shot\",\n    \"symbol\": \"Weapon_DoubleShot\",\n    \"engineers\": {\n      \"Tod 'The Blaster' McQuinn\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Zacariah Nemo\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"Weapon_Efficient\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Sulphur\": 1\n        },\n        \"features\": {\n          \"Damage\": {\n            \"value\": [\n              0,\n              0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              0,\n              -0.38\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"3fbcc9dc-169a-4cd3-b945-cedc55882cd3\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Heat Dispersion Plate\": 1,\n          \"Sulphur\": 1\n        },\n        \"features\": {\n          \"Damage\": {\n            \"value\": [\n              0.08,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Distributer Draw\": {\n            \"value\": [\n              0,\n              -0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0,\n              -0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              -0.38,\n              -0.43\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"a35a0c80-784d-4125-b858-fdee45750269\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Chromium\": 1,\n          \"Exceptional Scrambled Emission Data\": 1,\n          \"Heat Exchangers\": 1\n        },\n        \"features\": {\n          \"Damage\": {\n            \"value\": [\n              0.12,\n              0.16\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Distributer Draw\": {\n            \"value\": [\n              -0.15,\n              -0.25\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              -0.12,\n              -0.24\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              -0.43,\n              -0.48\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"a429328b-11f4-402d-9909-2c6190505966\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Heat Vanes\": 1,\n          \"Irregular Emission Data\": 1,\n          \"Selenium\": 1\n        },\n        \"features\": {\n          \"Damage\": {\n            \"value\": [\n              0.16,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Distributer Draw\": {\n            \"value\": [\n              -0.25,\n              -0.35\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              -0.24,\n              -0.36\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              -0.48,\n              -0.52\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"8c364495-468c-4ab1-9baf-079917a6cf9a\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Cadmium\": 1,\n          \"Proto Heat Radiators\": 1,\n          \"Unexpected Emission Data\": 1\n        },\n        \"features\": {\n          \"Damage\": {\n            \"value\": [\n              0.2,\n              0.24\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Distributer Draw\": {\n            \"value\": [\n              -0.35,\n              -0.45\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              -0.36,\n              -0.48\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              -0.52,\n              -0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"5ac92753-1c19-4ae8-8b12-c6f130bda4a5\"\n      }\n    },\n    \"id\": 83,\n    \"modulename\": [\n      \"Weapon\"\n    ],\n    \"name\": \"Efficient\",\n    \"symbol\": \"Weapon_Efficient\",\n    \"engineers\": {\n      \"Broo Tarquin\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"The Dweller\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"Weapon_Focused\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"Damage Falloff\": {\n            \"value\": [\n              0,\n              0.36\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Armour Piercing\": {\n            \"value\": [\n              0,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              0,\n              0.36\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Shot Speed\": {\n            \"value\": [\n              0,\n              0.36\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              0.01,\n              0.01\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"fc3e4f2e-04fb-4509-a31f-1121940e1bc6\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"Damage Falloff\": {\n            \"value\": [\n              0.36,\n              0.52\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Armour Piercing\": {\n            \"value\": [\n              0.4,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              0.36,\n              0.52\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Shot Speed\": {\n            \"value\": [\n              0.36,\n              0.52\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              0.02,\n              0.02\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"437e00b1-a6fd-4d84-9242-075c3ce8adcb\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Chromium\": 1,\n          \"Conductive Ceramics\": 1,\n          \"Iron\": 1\n        },\n        \"features\": {\n          \"Damage Falloff\": {\n            \"value\": [\n              0.52,\n              0.68\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Armour Piercing\": {\n            \"value\": [\n              0.6,\n              0.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              0.52,\n              0.68\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Shot Speed\": {\n            \"value\": [\n              0.52,\n              0.68\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              0.03,\n              0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"bfbadc34-e11a-4cc4-80cc-83dde5731e6f\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Focus Crystals\": 1,\n          \"Germanium\": 1,\n          \"Polymer Capacitors\": 1\n        },\n        \"features\": {\n          \"Damage Falloff\": {\n            \"value\": [\n              0.68,\n              0.84\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Armour Piercing\": {\n            \"value\": [\n              0.8,\n              1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              0.68,\n              0.84\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Shot Speed\": {\n            \"value\": [\n              0.68,\n              0.84\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              0.04,\n              0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"7c41f9fc-90ec-435e-9d92-6024c32ac40d\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Military Supercapacitors\": 1,\n          \"Niobium\": 1,\n          \"Refined Focus Crystals\": 1\n        },\n        \"features\": {\n          \"Damage Falloff\": {\n            \"value\": [\n              0.84,\n              1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Armour Piercing\": {\n            \"value\": [\n              1,\n              1.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              0.84,\n              1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Shot Speed\": {\n            \"value\": [\n              0.84,\n              1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              0.05,\n              0.05\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"d9306721-43a4-45cd-b225-ac9174da4d13\"\n      }\n    },\n    \"id\": 84,\n    \"modulename\": [\n      \"Weapon\"\n    ],\n    \"name\": \"Focused\",\n    \"symbol\": \"Weapon_Focused\",\n    \"engineers\": {\n      \"Broo Tarquin\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"The Dweller\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"Weapon_HighCapacity\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Mechanical Scrap\": 1\n        },\n        \"features\": {\n          \"Ammo Maximum\": {\n            \"value\": [\n              0,\n              0.36\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Ammo Clip Size\": {\n            \"value\": [\n              0,\n              0.36\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.04,\n              0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Rate of Fire\": {\n            \"value\": [\n              0,\n              -0.02\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"f622da45-ef05-4a9f-bdcb-879b5933b869\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Mechanical Scrap\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"Ammo Maximum\": {\n            \"value\": [\n              0.36,\n              0.52\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Ammo Clip Size\": {\n            \"value\": [\n              0.36,\n              0.52\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.3,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.08,\n              0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Rate of Fire\": {\n            \"value\": [\n              -0.02,\n              -0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"c2cf2614-1a13-4b8d-81eb-d4eaf76257d0\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Mechanical Scrap\": 1,\n          \"Niobium\": 1,\n          \"Vanadium\": 1\n        },\n        \"features\": {\n          \"Ammo Maximum\": {\n            \"value\": [\n              0.52,\n              0.68\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Ammo Clip Size\": {\n            \"value\": [\n              0.52,\n              0.68\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.4,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.12,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Rate of Fire\": {\n            \"value\": [\n              -0.04,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"e37a6dba-669e-4ce6-bb3d-e831bdd656c0\"\n      },\n      \"4\": {\n        \"components\": {\n          \"High Density Composites\": 1,\n          \"Mechanical Equipment\": 1,\n          \"Tin\": 1\n        },\n        \"features\": {\n          \"Ammo Maximum\": {\n            \"value\": [\n              0.68,\n              0.84\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Ammo Clip Size\": {\n            \"value\": [\n              0.68,\n              0.84\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.5,\n              0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.16,\n              0.16\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Rate of Fire\": {\n            \"value\": [\n              -0.06,\n              -0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"8800433a-2061-4776-9821-5dc04772b963\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Mechanical Components\": 1,\n          \"Military Supercapacitors\": 1,\n          \"Proprietary Composites\": 1\n        },\n        \"features\": {\n          \"Ammo Maximum\": {\n            \"value\": [\n              0.84,\n              1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Ammo Clip Size\": {\n            \"value\": [\n              0.84,\n              1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.6,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Rate of Fire\": {\n            \"value\": [\n              -0.08,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"4b3f4f18-a517-4354-a02d-de46b3cd4efc\"\n      }\n    },\n    \"id\": 85,\n    \"modulename\": [\n      \"Weapon\"\n    ],\n    \"name\": \"High capacity\",\n    \"symbol\": \"Weapon_HighCapacity\",\n    \"engineers\": {\n      \"The Sarge\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      \"Tod 'The Blaster' McQuinn\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"Weapon_LightWeight\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Phosphorus\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              -0.2,\n              -0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              0,\n              -0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"d5a539c5-120a-450f-bb68-e10abbeca8a9\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Manganese\": 1,\n          \"Salvaged Alloys\": 1\n        },\n        \"features\": {\n          \"Distributer Draw\": {\n            \"value\": [\n              0,\n              -0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Integrity\": {\n            \"value\": [\n              -0.3,\n              -0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.3,\n              -0.45\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"b6a80556-c22a-466e-931c-239c208c9890\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Manganese\": 1,\n          \"Salvaged Alloys\": 1\n        },\n        \"features\": {\n          \"Distributer Draw\": {\n            \"value\": [\n              -0.2,\n              -0.25\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Integrity\": {\n            \"value\": [\n              -0.4,\n              -0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.45,\n              -0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              -0.1,\n              -0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"cbec8003-80e4-455a-84fe-257d2018386e\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Phase Alloys\": 1,\n          \"Proto Light Alloys\": 1\n        },\n        \"features\": {\n          \"Distributer Draw\": {\n            \"value\": [\n              -0.25,\n              -0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Integrity\": {\n            \"value\": [\n              -0.5,\n              -0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.6,\n              -0.75\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              -0.2,\n              -0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"3a57effa-ccac-448d-8d1c-3e0966042e24\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Proto Light Alloys\": 1,\n          \"Proto Radiolic Alloys\": 1\n        },\n        \"features\": {\n          \"Distributer Draw\": {\n            \"value\": [\n              -0.3,\n              -0.35\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Integrity\": {\n            \"value\": [\n              -0.6,\n              -0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Mass\": {\n            \"value\": [\n              -0.75,\n              -0.9\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Power Draw\": {\n            \"value\": [\n              -0.3,\n              -0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"89f5d8e2-4f4c-4ef0-9e74-9f0691244b22\"\n      }\n    },\n    \"id\": 86,\n    \"modulename\": [\n      \"Weapon\"\n    ],\n    \"name\": \"Lightweight\",\n    \"symbol\": \"Weapon_LightWeight\",\n    \"engineers\": {\n      \"Broo Tarquin\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"The Dweller\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"Weapon_LongRange\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Sulphur\": 1\n        },\n        \"features\": {\n          \"Damage Falloff Start\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"numeric\",\n            \"method\": \"overwrite\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.1,\n              0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.03,\n              0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              0,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Shot Speed\": {\n            \"value\": [\n              0,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"356d1457-e52f-4302-8af5-745e103b85e8\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Modified Consumer Firmware\": 1,\n          \"Sulphur\": 1\n        },\n        \"features\": {\n          \"Damage Falloff Start\": {\n            \"value\": [\n              0.2,\n              0.4\n            ],\n            \"type\": \"numeric\",\n            \"method\": \"overwrite\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.15,\n              0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.06,\n              0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              0.2,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Shot Speed\": {\n            \"value\": [\n              0.2,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"965e7108-73d5-4f26-95ab-2d261716a80c\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Focus Crystals\": 1,\n          \"Modified Consumer Firmware\": 1,\n          \"Sulphur\": 1\n        },\n        \"features\": {\n          \"Damage Falloff Start\": {\n            \"value\": [\n              0.4,\n              0.6\n            ],\n            \"type\": \"numeric\",\n            \"method\": \"overwrite\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.09,\n              0.09\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              0.4,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Shot Speed\": {\n            \"value\": [\n              0.4,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"9d56f79f-9077-4391-8719-67e96c9613dd\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Conductive Polymers\": 1,\n          \"Focus Crystals\": 1,\n          \"Modified Consumer Firmware\": 1\n        },\n        \"features\": {\n          \"Damage Falloff Start\": {\n            \"value\": [\n              0.6,\n              0.8\n            ],\n            \"type\": \"numeric\",\n            \"method\": \"overwrite\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.25,\n              0.25\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.12,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              0.6,\n              0.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Shot Speed\": {\n            \"value\": [\n              0.6,\n              0.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"fbd49a72-d117-4e01-8485-d69b2267c803\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Biotech Conductors\": 1,\n          \"Cracked Industrial Firmware\": 1,\n          \"Thermic Alloys\": 1\n        },\n        \"features\": {\n          \"Damage Falloff Start\": {\n            \"value\": [\n              0.8,\n              1\n            ],\n            \"type\": \"numeric\",\n            \"method\": \"overwrite\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.3,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Power Draw\": {\n            \"value\": [\n              0.15,\n              0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              0.8,\n              1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Shot Speed\": {\n            \"value\": [\n              0.8,\n              1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"0d08a432-cfcd-40a7-8000-74a0dee56812\"\n      }\n    },\n    \"id\": 87,\n    \"modulename\": [\n      \"Weapon\"\n    ],\n    \"name\": \"Long range\",\n    \"symbol\": \"Weapon_LongRange\",\n    \"engineers\": {\n      \"Broo Tarquin\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"The Dweller\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"MC_Overcharged\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"Ammo Clip Size\": {\n            \"value\": [\n              -0.03,\n              -0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Damage\": {\n            \"value\": [\n              0,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Distributer Draw\": {\n            \"value\": [\n              0.15,\n              0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              0.03,\n              0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"e917ebe3-d5f1-4016-b8a9-2c759e16a7d4\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"Ammo Clip Size\": {\n            \"value\": [\n              -0.06,\n              -0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Damage\": {\n            \"value\": [\n              0.3,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Distributer Draw\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              0.06,\n              0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"f5921fc1-fb10-4d2f-8e0a-cd8d8e9e3a84\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Electrochemical Arrays\": 1,\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"Ammo Clip Size\": {\n            \"value\": [\n              -0.09,\n              -0.09\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Damage\": {\n            \"value\": [\n              0.4,\n              0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Distributer Draw\": {\n            \"value\": [\n              0.25,\n              0.25\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              0.09,\n              0.09\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"4389883f-c2b3-4487-9b1a-b668a761057a\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Polymer Capacitors\": 1,\n          \"Zinc\": 1\n        },\n        \"features\": {\n          \"Ammo Clip Size\": {\n            \"value\": [\n              -0.12,\n              -0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Damage\": {\n            \"value\": [\n              0.5,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Distributer Draw\": {\n            \"value\": [\n              0.3,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              0.12,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"25ec26dd-63b8-4e83-9a6e-86e5b80c4771\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Conductive Polymers\": 1,\n          \"Modified Embedded Firmware\": 1,\n          \"Zirconium\": 1\n        },\n        \"features\": {\n          \"Ammo Clip Size\": {\n            \"value\": [\n              -0.15,\n              -0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Damage\": {\n            \"value\": [\n              0.6,\n              0.7\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Distributer Draw\": {\n            \"value\": [\n              0.35,\n              0.35\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              0.15,\n              0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"4dcf6bdc-bcff-448a-92a0-7612de548db7\"\n      }\n    },\n    \"id\": 88,\n    \"modulename\": [\n      \"Weapon\"\n    ],\n    \"name\": \"Overcharged\",\n    \"symbol\": \"MC_Overcharged\",\n    \"engineers\": {\n      \"Tod 'The Blaster' McQuinn\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"Zacariah Nemo\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"Weapon_Overcharged\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"Damage\": {\n            \"value\": [\n              0,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Distributer Draw\": {\n            \"value\": [\n              0.15,\n              0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              0.03,\n              0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"e917ebe3-d5f1-4016-b8a9-2c759e16a7d4\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"Damage\": {\n            \"value\": [\n              0.3,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Distributer Draw\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              0.06,\n              0.06\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"f5921fc1-fb10-4d2f-8e0a-cd8d8e9e3a84\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Conductive Components\": 1,\n          \"Electrochemical Arrays\": 1,\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"Damage\": {\n            \"value\": [\n              0.4,\n              0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Distributer Draw\": {\n            \"value\": [\n              0.25,\n              0.25\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              0.09,\n              0.09\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"4389883f-c2b3-4487-9b1a-b668a761057a\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Conductive Ceramics\": 1,\n          \"Polymer Capacitors\": 1,\n          \"Zinc\": 1\n        },\n        \"features\": {\n          \"Damage\": {\n            \"value\": [\n              0.5,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Distributer Draw\": {\n            \"value\": [\n              0.3,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              0.12,\n              0.12\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"25ec26dd-63b8-4e83-9a6e-86e5b80c4771\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Conductive Polymers\": 1,\n          \"Modified Embedded Firmware\": 1,\n          \"Zirconium\": 1\n        },\n        \"features\": {\n          \"Damage\": {\n            \"value\": [\n              0.6,\n              0.7\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Distributer Draw\": {\n            \"value\": [\n              0.35,\n              0.35\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              0.15,\n              0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"4dcf6bdc-bcff-448a-92a0-7612de548db7\"\n      }\n    },\n    \"id\": 103,\n    \"modulename\": [\n      \"Weapon\"\n    ],\n    \"name\": \"Overcharged\",\n    \"symbol\": \"Weapon_Overcharged\",\n    \"engineers\": {\n      \"Broo Tarquin\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"The Dweller\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"Weapon_RapidFire\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Mechanical Scrap\": 1\n        },\n        \"features\": {\n          \"Damage\": {\n            \"value\": [\n              -0.01,\n              -0.01\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Jitter\": {\n            \"value\": [\n              0.5,\n              0.5\n            ],\n            \"type\": \"numeric\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Reload Time\": {\n            \"value\": [\n              0,\n              -0.25\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Rate of Fire\": {\n            \"value\": [\n              0,\n              -0.08\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"a7ca2bf6-14be-41ed-8bfb-c7348fda7713\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Heat Dispersion Plate\": 1,\n          \"Mechanical Scrap\": 1\n        },\n        \"features\": {\n          \"Damage\": {\n            \"value\": [\n              -0.02,\n              -0.02\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Distributer Draw\": {\n            \"value\": [\n              0,\n              -0.05\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Jitter\": {\n            \"value\": [\n              0.5,\n              0.5\n            ],\n            \"type\": \"numeric\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Reload Time\": {\n            \"value\": [\n              -0.25,\n              -0.35\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Rate of Fire\": {\n            \"value\": [\n              -0.08,\n              -0.17\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"0008257b-ea33-48ea-a18e-56cc6cf98a77\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Mechanical Equipment\": 1,\n          \"Precipitated Alloys\": 1,\n          \"Specialised Legacy Firmware\": 1\n        },\n        \"features\": {\n          \"Damage\": {\n            \"value\": [\n              -0.03,\n              -0.03\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Distributer Draw\": {\n            \"value\": [\n              -0.05,\n              -0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Jitter\": {\n            \"value\": [\n              0.5,\n              0.5\n            ],\n            \"type\": \"numeric\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Reload Time\": {\n            \"value\": [\n              -0.35,\n              -0.45\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Rate of Fire\": {\n            \"value\": [\n              -0.17,\n              -0.26\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"f3338d38-f944-4841-b350-09755e1b615d\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Mechanical Components\": 1,\n          \"Modified Consumer Firmware\": 1,\n          \"Thermic Alloys\": 1\n        },\n        \"features\": {\n          \"Damage\": {\n            \"value\": [\n              -0.04,\n              -0.04\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Distributer Draw\": {\n            \"value\": [\n              -0.15,\n              -0.25\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Jitter\": {\n            \"value\": [\n              0.5,\n              0.5\n            ],\n            \"type\": \"numeric\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Reload Time\": {\n            \"value\": [\n              -0.45,\n              -0.55\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Rate of Fire\": {\n            \"value\": [\n              -0.26,\n              -0.35\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"d2bdb568-725a-44bf-9328-ba72d2988acd\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Configurable Components\": 1,\n          \"Precipitated Alloys\": 1,\n          \"Technetium\": 1\n        },\n        \"features\": {\n          \"Damage\": {\n            \"value\": [\n              -0.05,\n              -0.05\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Distributer Draw\": {\n            \"value\": [\n              -0.25,\n              -0.35\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Jitter\": {\n            \"value\": [\n              0.5,\n              0.5\n            ],\n            \"type\": \"numeric\",\n            \"method\": \"additive\",\n            \"improvement\": false\n          },\n          \"Reload Time\": {\n            \"value\": [\n              -0.55,\n              -0.65\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Rate of Fire\": {\n            \"value\": [\n              -0.35,\n              -0.44\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"b1792824-0e96-42a3-9d3a-0b41d5ef83e0\"\n      }\n    },\n    \"id\": 89,\n    \"modulename\": [\n      \"Weapon\"\n    ],\n    \"name\": \"Rapid fire\",\n    \"symbol\": \"Weapon_RapidFire\",\n    \"engineers\": {\n      \"Broo Tarquin\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"The Dweller\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"Weapon_ShortRange\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"Damage\": {\n            \"value\": [\n              0.15,\n              0.27\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              -0.1,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"81dca970-1fbf-4017-af46-0c6285c3a728\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Modified Consumer Firmware\": 1,\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"Damage\": {\n            \"value\": [\n              0.27,\n              0.39\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              -0.2,\n              -0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              0.1,\n              0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"cf07de84-b794-43fd-a8b6-57ee781e9247\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Electrochemical Arrays\": 1,\n          \"Modified Consumer Firmware\": 1,\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"Damage\": {\n            \"value\": [\n              0.39,\n              0.51\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              -0.3,\n              -0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"7cd60cfe-e406-4005-a912-a306a69067e0\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Conductive Polymers\": 1,\n          \"Electrochemical Arrays\": 1,\n          \"Modified Consumer Firmware\": 1\n        },\n        \"features\": {\n          \"Damage\": {\n            \"value\": [\n              0.51,\n              0.63\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              -0.4,\n              -0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              0.3,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"adae0f67-fd08-47d5-8870-f926cc63353f\"\n      },\n      \"5\": {\n        \"components\": {\n          \"Biotech Conductors\": 1,\n          \"Configurable Components\": 1,\n          \"Cracked Industrial Firmware\": 1\n        },\n        \"features\": {\n          \"Damage\": {\n            \"value\": [\n              0.63,\n              0.75\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Maximum Range\": {\n            \"value\": [\n              -0.5,\n              -0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              0.4,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          }\n        },\n        \"uuid\": \"ccf0cfd9-6da2-4975-95fa-ea7f0ccda991\"\n      }\n    },\n    \"id\": 90,\n    \"modulename\": [\n      \"Weapon\"\n    ],\n    \"name\": \"Short range\",\n    \"symbol\": \"Weapon_ShortRange\",\n    \"engineers\": {\n      \"Broo Tarquin\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"The Dweller\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      }\n    }\n  },\n  {\n    \"fdname\": \"Weapon_Sturdy\",\n    \"grades\": {\n      \"1\": {\n        \"components\": {\n          \"Nickel\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              0,\n              1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.2,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Armour Piercing\": {\n            \"value\": [\n              0,\n              0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              0,\n              -0.1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"3ac55eb7-0a45-440b-8c59-6ead43c7ef49\"\n      },\n      \"2\": {\n        \"components\": {\n          \"Nickel\": 1,\n          \"Shield Emitters\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              1.5,\n              1.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.4,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Armour Piercing\": {\n            \"value\": [\n              0.2,\n              0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              -0.1,\n              -0.15\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"53c131ab-cd66-4919-b49b-c1435362c8ff\"\n      },\n      \"3\": {\n        \"components\": {\n          \"Nickel\": 1,\n          \"Shield Emitters\": 1,\n          \"Tungsten\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              2,\n              2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.6,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Armour Piercing\": {\n            \"value\": [\n              0.3,\n              0.4\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              -0.15,\n              -0.2\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"2d1873d4-6d38-4d39-b4c5-ea199be2bd6a\"\n      },\n      \"4\": {\n        \"components\": {\n          \"Molybdenum\": 1,\n          \"Tungsten\": 1,\n          \"Zinc\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              2.5,\n              2.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              0.8,\n              0.8\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Armour Piercing\": {\n            \"value\": [\n              0.4,\n              0.5\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              -0.2,\n              -0.25\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"4ceeab9c-7a85-4553-9fa4-81ebc6e88d4f\"\n      },\n      \"5\": {\n        \"components\": {\n          \"High Density Composites\": 1,\n          \"Molybdenum\": 1,\n          \"Technetium\": 1\n        },\n        \"features\": {\n          \"Integrity\": {\n            \"value\": [\n              3,\n              3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Mass\": {\n            \"value\": [\n              1,\n              1\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": false\n          },\n          \"Armour Piercing\": {\n            \"value\": [\n              0.5,\n              0.6\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          },\n          \"Thermal Load\": {\n            \"value\": [\n              -0.25,\n              -0.3\n            ],\n            \"type\": \"percentage\",\n            \"method\": \"multiplicative\",\n            \"improvement\": true\n          }\n        },\n        \"uuid\": \"53ab027e-1c5f-404b-82e3-0bc4c55c71af\"\n      }\n    },\n    \"id\": 91,\n    \"modulename\": [\n      \"Weapon\"\n    ],\n    \"name\": \"Sturdy\",\n    \"symbol\": \"Weapon_Sturdy\",\n    \"engineers\": {\n      \"Broo Tarquin\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\",\n          \"4\",\n          \"5\"\n        ]\n      },\n      \"The Dweller\": {\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      }\n    }\n  }\n]"
  },
  {
    "path": "src/service/data/edcd/coriolis/modules.json",
    "content": "[\n  {\n    \"breachdmg\": 0.6,\n    \"breachmax\": 0.2,\n    \"breachmin\": 0.1,\n    \"class\": 1,\n    \"cost\": 9700,\n    \"chargetime\": 0,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128915458,\n    \"eddbID\": 823,\n    \"fireint\": 0.2,\n    \"grp\": \"abl\",\n    \"id\": \"3R\",\n    \"mount\": \"F\",\n    \"rating\": \"D\",\n    \"symbol\": \"Hpt_Mining_AbrBlstr_Fixed_Small\",\n    \"properties\": {\n      \"Shot Speed\": 667,\n      \"Damage\": 4,\n      \"Distributer Draw\": 2,\n      \"Damage Falloff\": 1000,\n      \"Ammo Clip Size\": 1,\n      \"Reload Time\": 2,\n      \"Integrity\": 40,\n      \"Mass\": 2,\n      \"Armour Piercing\": 18,\n      \"Power Draw\": 0.34,\n      \"Maximum Range\": 1000,\n      \"Thermal Load\": 1.8\n    }\n  },\n  {\n    \"breachdmg\": 0.6,\n    \"breachmax\": 0.2,\n    \"breachmin\": 0.1,\n    \"class\": 1,\n    \"cost\": 27480,\n    \"chargetime\": 0,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128915459,\n    \"eddbID\": 823,\n    \"fireint\": 0.2,\n    \"grp\": \"abl\",\n    \"id\": \"3S\",\n    \"mount\": \"T\",\n    \"rating\": \"D\",\n    \"symbol\": \"Hpt_Mining_Abrblstr_Turret_Small\",\n    \"properties\": {\n      \"Shot Speed\": 667,\n      \"Damage\": 4,\n      \"Distributer Draw\": 2,\n      \"Damage Falloff\": 1000,\n      \"Ammo Clip Size\": 1,\n      \"Reload Time\": 2,\n      \"Integrity\": 40,\n      \"Mass\": 2,\n      \"Armour Piercing\": 18,\n      \"Power Draw\": 0.47,\n      \"Maximum Range\": 1000,\n      \"Thermal Load\": 1.8\n    }\n  },\n  {\n    \"experimental\": true,\n    \"breachdmg\": 0.1,\n    \"breachmax\": 0.8,\n    \"breachmin\": 1,\n    \"class\": 2,\n    \"cost\": 540900,\n    \"damagedist\": {\n      \"X\": 1,\n      \"E\": 1\n    },\n    \"edID\": 128788699,\n    \"eddbID\": 1614,\n    \"fireint\": 2,\n    \"grp\": \"axmr\",\n    \"id\": \"x4\",\n    \"missile\": \"D\",\n    \"mount\": \"F\",\n    \"rating\": \"B\",\n    \"symbol\": \"Hpt_ATDumbfireMissile_Fixed_Medium\",\n    \"properties\": {\n      \"Ammo Maximum\": 64,\n      \"Ammo Clip Size\": 8,\n      \"Damage\": 64,\n      \"Distributer Draw\": 0.14,\n      \"Damage Falloff\": 10000,\n      \"Integrity\": 51,\n      \"Mass\": 4,\n      \"Armour Piercing\": 60,\n      \"Power Draw\": 1.2,\n      \"Reload Time\": 5,\n      \"Shot Speed\": 750,\n      \"Thermal Load\": 2.4\n    }\n  },\n  {\n    \"experimental\": true,\n    \"breachdmg\": 0.1,\n    \"breachmax\": 0.8,\n    \"breachmin\": 1,\n    \"class\": 2,\n    \"cost\": 2022700,\n    \"damagedist\": {\n      \"X\": 1,\n      \"E\": 1\n    },\n    \"edID\": 128788704,\n    \"eddbID\": 1615,\n    \"fireint\": 2,\n    \"grp\": \"axmr\",\n    \"id\": \"x5\",\n    \"missile\": \"D\",\n    \"mount\": \"T\",\n    \"rating\": \"B\",\n    \"symbol\": \"Hpt_ATDumbfireMissile_Turret_Medium\",\n    \"properties\": {\n      \"Ammo Maximum\": 64,\n      \"Ammo Clip Size\": 8,\n      \"Damage\": 50,\n      \"Distributer Draw\": 0.08,\n      \"Damage Falloff\": 10000,\n      \"Integrity\": 51,\n      \"Mass\": 4,\n      \"Armour Piercing\": 60,\n      \"Power Draw\": 1.2,\n      \"Reload Time\": 5,\n      \"Shot Speed\": 750,\n      \"Thermal Load\": 1.5\n    }\n  },\n  {\n    \"experimental\": true,\n    \"breachdmg\": 0.1,\n    \"breachmax\": 0.8,\n    \"breachmin\": 1,\n    \"class\": 3,\n    \"cost\": 1352250,\n    \"damagedist\": {\n      \"X\": 1,\n      \"E\": 1\n    },\n    \"edID\": 128788700,\n    \"eddbID\": 1623,\n    \"fireint\": 2,\n    \"grp\": \"axmr\",\n    \"id\": \"x6\",\n    \"missile\": \"D\",\n    \"mount\": \"F\",\n    \"rating\": \"A\",\n    \"symbol\": \"Hpt_ATDumbfireMissile_Fixed_Large\",\n    \"properties\": {\n      \"Ammo Maximum\": 128,\n      \"Ammo Clip Size\": 12,\n      \"Damage\": 64,\n      \"Distributer Draw\": 0.24,\n      \"Damage Falloff\": 10000,\n      \"Integrity\": 64,\n      \"Mass\": 8,\n      \"Armour Piercing\": 60,\n      \"Power Draw\": 1.62,\n      \"Reload Time\": 5,\n      \"Shot Speed\": 750,\n      \"Thermal Load\": 3.6\n    }\n  },\n  {\n    \"experimental\": true,\n    \"breachdmg\": 0.1,\n    \"breachmax\": 0.8,\n    \"breachmin\": 1,\n    \"class\": 3,\n    \"cost\": 4056750,\n    \"damagedist\": {\n      \"X\": 1,\n      \"E\": 1\n    },\n    \"edID\": 128788705,\n    \"eddbID\": 1624,\n    \"fireint\": 2,\n    \"grp\": \"axmr\",\n    \"id\": \"x7\",\n    \"missile\": \"D\",\n    \"mount\": \"T\",\n    \"rating\": \"A\",\n    \"symbol\": \"Hpt_ATDumbfireMissile_Turret_Large\",\n    \"properties\": {\n      \"Ammo Maximum\": 128,\n      \"Ammo Clip Size\": 12,\n      \"Damage\": 64,\n      \"Distributer Draw\": 0.14,\n      \"Damage Falloff\": 10000,\n      \"Integrity\": 64,\n      \"Mass\": 8,\n      \"Armour Piercing\": 60,\n      \"Power Draw\": 1.75,\n      \"Reload Time\": 5,\n      \"Shot Speed\": 750,\n      \"Thermal Load\": 1.9\n    }\n  },\n  {\n    \"experimental\": true,\n    \"breachdmg\": 2.8,\n    \"breachmax\": 0.5,\n    \"breachmin\": 0.8,\n    \"class\": 2,\n    \"cost\": 379000,\n    \"damagedist\": {\n      \"X\": 1,\n      \"K\": 1\n    },\n    \"edID\": 128788701,\n    \"eddbID\": 1618,\n    \"fireint\": 0.14,\n    \"grp\": \"axmc\",\n    \"id\": \"x0\",\n    \"mount\": \"F\",\n    \"rating\": \"E\",\n    \"symbol\": \"Hpt_ATMultiCannon_Fixed_Medium\",\n    \"properties\": {\n      \"Ammo Maximum\": 2100,\n      \"Ammo Clip Size\": 100,\n      \"Damage\": 3.3,\n      \"Distributer Draw\": 0.11,\n      \"Damage Falloff\": 2000,\n      \"Integrity\": 51,\n      \"Mass\": 4,\n      \"Armour Piercing\": 17,\n      \"Power Draw\": 0.46,\n      \"Maximum Range\": 4000,\n      \"Reload Time\": 4,\n      \"Shot Speed\": 1600,\n      \"Thermal Load\": 0.2\n    }\n  },\n  {\n    \"experimental\": true,\n    \"breachdmg\": 0.4,\n    \"breachmax\": 0.5,\n    \"breachmin\": 0.5,\n    \"class\": 2,\n    \"cost\": 1826500,\n    \"damagedist\": {\n      \"X\": 1,\n      \"K\": 1\n    },\n    \"edID\": 128793059,\n    \"eddbID\": 1619,\n    \"fireint\": 0.16,\n    \"grp\": \"axmc\",\n    \"id\": \"x1\",\n    \"mount\": \"T\",\n    \"rating\": \"F\",\n    \"symbol\": \"Hpt_ATMultiCannon_Turret_Medium\",\n    \"properties\": {\n      \"Ammo Maximum\": 2100,\n      \"Ammo Clip Size\": 90,\n      \"Damage\": 1.7,\n      \"Distributer Draw\": 0.06,\n      \"Damage Falloff\": 2000,\n      \"Integrity\": 51,\n      \"Mass\": 4,\n      \"Armour Piercing\": 17,\n      \"Power Draw\": 0.5,\n      \"Maximum Range\": 4000,\n      \"Reload Time\": 4,\n      \"Shot Speed\": 1600,\n      \"Thermal Load\": 0.1\n    }\n  },\n  {\n    \"experimental\": true,\n    \"breachdmg\": 5.2,\n    \"breachmax\": 0.5,\n    \"breachmin\": 0.8,\n    \"class\": 3,\n    \"cost\": 1181500,\n    \"damagedist\": {\n      \"X\": 1,\n      \"K\": 1\n    },\n    \"edID\": 128788702,\n    \"eddbID\": 1625,\n    \"fireint\": 0.17,\n    \"grp\": \"axmc\",\n    \"id\": \"x2\",\n    \"mount\": \"F\",\n    \"rating\": \"C\",\n    \"symbol\": \"Hpt_ATMultiCannon_Fixed_Large\",\n    \"properties\": {\n      \"Ammo Maximum\": 2100,\n      \"Ammo Clip Size\": 100,\n      \"Damage\": 6.1,\n      \"Distributer Draw\": 0.18,\n      \"Damage Falloff\": 2000,\n      \"Integrity\": 64,\n      \"Mass\": 8,\n      \"Armour Piercing\": 33,\n      \"Power Draw\": 0.64,\n      \"Maximum Range\": 4000,\n      \"Reload Time\": 4,\n      \"Shot Speed\": 1600,\n      \"Thermal Load\": 0.3\n    }\n  },\n  {\n    \"experimental\": true,\n    \"breachdmg\": 0.8,\n    \"breachmax\": 0.5,\n    \"breachmin\": 0.5,\n    \"class\": 3,\n    \"cost\": 3821600,\n    \"damagedist\": {\n      \"X\": 1,\n      \"K\": 1\n    },\n    \"edID\": 128793060,\n    \"eddbID\": 1626,\n    \"fireint\": 0.16,\n    \"grp\": \"axmc\",\n    \"id\": \"x3\",\n    \"mount\": \"T\",\n    \"rating\": \"E\",\n    \"symbol\": \"Hpt_ATMultiCannon_Turret_Large\",\n    \"properties\": {\n      \"Ammo Maximum\": 2100,\n      \"Ammo Clip Size\": 90,\n      \"Damage\": 3.3,\n      \"Distributer Draw\": 0.06,\n      \"Damage Falloff\": 2000,\n      \"Integrity\": 64,\n      \"Mass\": 8,\n      \"Armour Piercing\": 33,\n      \"Power Draw\": 0.64,\n      \"Maximum Range\": 4000,\n      \"Reload Time\": 4,\n      \"Shot Speed\": 1600,\n      \"Thermal Load\": 0.1\n    }\n  },\n  {\n    \"breachdmg\": 7.9,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 1,\n    \"cost\": 37430,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128049428,\n    \"eddbID\": 841,\n    \"grp\": \"bl\",\n    \"id\": \"10\",\n    \"mount\": \"F\",\n    \"rating\": \"E\",\n    \"symbol\": \"Hpt_BeamLaser_Fixed_Small\",\n    \"properties\": {\n      \"Damage\": 9.8,\n      \"Distributer Draw\": 1.94,\n      \"Damage Falloff\": 600,\n      \"Integrity\": 40,\n      \"Mass\": 2,\n      \"Armour Piercing\": 18,\n      \"Power Draw\": 0.62,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 3.5\n    }\n  },\n  {\n    \"breachdmg\": 6.1,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 1,\n    \"cost\": 74650,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128049432,\n    \"eddbID\": 844,\n    \"grp\": \"bl\",\n    \"id\": \"0p\",\n    \"mount\": \"G\",\n    \"rating\": \"E\",\n    \"symbol\": \"Hpt_BeamLaser_Gimbal_Small\",\n    \"properties\": {\n      \"Damage\": 7.66,\n      \"Distributer Draw\": 2.11,\n      \"Damage Falloff\": 600,\n      \"Integrity\": 40,\n      \"Mass\": 2,\n      \"Armour Piercing\": 18,\n      \"Power Draw\": 0.6,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 3.6\n    }\n  },\n  {\n    \"breachdmg\": 4.3,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 1,\n    \"cost\": 500000,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128049435,\n    \"eddbID\": 847,\n    \"eps\": 1.32,\n    \"grp\": \"bl\",\n    \"hps\": 2.4,\n    \"id\": \"0q\",\n    \"mount\": \"T\",\n    \"rating\": \"F\",\n    \"symbol\": \"Hpt_BeamLaser_Turret_Small\",\n    \"properties\": {\n      \"Damage\": 5.4,\n      \"Distributer Draw\": 1.32,\n      \"Damage Falloff\": 600,\n      \"Integrity\": 40,\n      \"Mass\": 2,\n      \"Armour Piercing\": 18,\n      \"Power Draw\": 0.57,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 2.4\n    }\n  },\n  {\n    \"breachdmg\": 3.9,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 1,\n    \"cost\": 56150,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128671346,\n    \"eddbID\": 1476,\n    \"grp\": \"bl\",\n    \"id\": \"b0\",\n    \"mount\": \"F\",\n    \"name\": \"Retributor\",\n    \"pp\": \"Edmund Mahon\",\n    \"rating\": \"E\",\n    \"symbol\": \"Hpt_BeamLaser_Fixed_Small_Heat\",\n    \"properties\": {\n      \"Damage\": 4.9,\n      \"Distributer Draw\": 2.52,\n      \"Damage Falloff\": 600,\n      \"Integrity\": 40,\n      \"Mass\": 2,\n      \"Armour Piercing\": 18,\n      \"Power Draw\": 0.62,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 2.7\n    }\n  },\n  {\n    \"breachdmg\": 12.8,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 2,\n    \"cost\": 299520,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128049429,\n    \"eddbID\": 842,\n    \"grp\": \"bl\",\n    \"id\": \"0r\",\n    \"mount\": \"F\",\n    \"rating\": \"D\",\n    \"symbol\": \"Hpt_BeamLaser_Fixed_Medium\",\n    \"properties\": {\n      \"Damage\": 15.96,\n      \"Distributer Draw\": 3.16,\n      \"Damage Falloff\": 600,\n      \"Integrity\": 51,\n      \"Mass\": 4,\n      \"Armour Piercing\": 35,\n      \"Power Draw\": 1.01,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 5.1\n    }\n  },\n  {\n    \"breachdmg\": 10,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 2,\n    \"cost\": 500600,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128049433,\n    \"eddbID\": 845,\n    \"grp\": \"bl\",\n    \"id\": \"0s\",\n    \"mount\": \"G\",\n    \"rating\": \"D\",\n    \"symbol\": \"Hpt_BeamLaser_Gimbal_Medium\",\n    \"properties\": {\n      \"Damage\": 12.52,\n      \"Distributer Draw\": 3.44,\n      \"Damage Falloff\": 600,\n      \"Integrity\": 51,\n      \"Mass\": 4,\n      \"Armour Piercing\": 35,\n      \"Power Draw\": 1,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 5.3\n    }\n  },\n  {\n    \"breachdmg\": 7.1,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 2,\n    \"cost\": 2099900,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128049436,\n    \"eddbID\": 848,\n    \"grp\": \"bl\",\n    \"id\": \"0t\",\n    \"mount\": \"T\",\n    \"rating\": \"E\",\n    \"symbol\": \"Hpt_BeamLaser_Turret_Medium\",\n    \"properties\": {\n      \"Damage\": 8.82,\n      \"Distributer Draw\": 2.16,\n      \"Damage Falloff\": 600,\n      \"Integrity\": 51,\n      \"Mass\": 4,\n      \"Armour Piercing\": 35,\n      \"Power Draw\": 0.93,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 3.5\n    }\n  },\n  {\n    \"breachdmg\": 20.6,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 3,\n    \"cost\": 1177600,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128049430,\n    \"eddbID\": 843,\n    \"grp\": \"bl\",\n    \"id\": \"0u\",\n    \"mount\": \"F\",\n    \"rating\": \"C\",\n    \"symbol\": \"Hpt_BeamLaser_Fixed_Large\",\n    \"properties\": {\n      \"Damage\": 25.78,\n      \"Distributer Draw\": 5.1,\n      \"Damage Falloff\": 600,\n      \"Integrity\": 64,\n      \"Mass\": 8,\n      \"Armour Piercing\": 50,\n      \"Power Draw\": 1.62,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 7.2\n    }\n  },\n  {\n    \"breachdmg\": 16.2,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 3,\n    \"cost\": 2396160,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128049434,\n    \"eddbID\": 846,\n    \"grp\": \"bl\",\n    \"id\": \"0v\",\n    \"mount\": \"G\",\n    \"rating\": \"C\",\n    \"symbol\": \"Hpt_BeamLaser_Gimbal_Large\",\n    \"properties\": {\n      \"Damage\": 20.28,\n      \"Distributer Draw\": 5.58,\n      \"Damage Falloff\": 600,\n      \"Integrity\": 64,\n      \"Mass\": 8,\n      \"Armour Piercing\": 50,\n      \"Power Draw\": 1.6,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 7.6\n    }\n  },\n  {\n    \"breachdmg\": 11.5,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 3,\n    \"cost\": 19399600,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128049437,\n    \"eddbID\": 849,\n    \"grp\": \"bl\",\n    \"id\": \"0o\",\n    \"mount\": \"T\",\n    \"rating\": \"D\",\n    \"symbol\": \"Hpt_BeamLaser_Turret_Large\",\n    \"properties\": {\n      \"Damage\": 14.34,\n      \"Distributer Draw\": 3.51,\n      \"Damage Falloff\": 600,\n      \"Integrity\": 64,\n      \"Mass\": 8,\n      \"Armour Piercing\": 50,\n      \"Power Draw\": 1.51,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 5.1\n    }\n  },\n  {\n    \"breachdmg\": 33.1,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 4,\n    \"cost\": 2396160,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128049431,\n    \"eddbID\": 1540,\n    \"grp\": \"bl\",\n    \"id\": \"0w\",\n    \"mount\": \"F\",\n    \"rating\": \"A\",\n    \"symbol\": \"Hpt_BeamLaser_Fixed_Huge\",\n    \"properties\": {\n      \"Damage\": 41.38,\n      \"Distributer Draw\": 8.19,\n      \"Damage Falloff\": 600,\n      \"Integrity\": 80,\n      \"Mass\": 16,\n      \"Armour Piercing\": 60,\n      \"Power Draw\": 2.61,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 9.9\n    }\n  },\n  {\n    \"breachdmg\": 26.1,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 4,\n    \"cost\": 8746160,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128681994,\n    \"eddbID\": 1544,\n    \"grp\": \"bl\",\n    \"id\": \"0x\",\n    \"mount\": \"G\",\n    \"rating\": \"A\",\n    \"symbol\": \"Hpt_BeamLaser_Gimbal_Huge\",\n    \"properties\": {\n      \"Damage\": 32.68,\n      \"Distributer Draw\": 8.99,\n      \"Damage Falloff\": 600,\n      \"Integrity\": 80,\n      \"Mass\": 16,\n      \"Armour Piercing\": 60,\n      \"Power Draw\": 2.57,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 10.6\n    }\n  },\n  {\n    \"breachdmg\": 1.5,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 1,\n    \"cost\": 4400,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128049400,\n    \"eddbID\": 832,\n    \"fireint\": 0.5,\n    \"grp\": \"ul\",\n    \"id\": \"11\",\n    \"mount\": \"F\",\n    \"rating\": \"F\",\n    \"symbol\": \"Hpt_PulseLaserBurst_Fixed_Small\",\n    \"properties\": {\n      \"Burst\": 3,\n      \"Burst Rate Of Fire\": 15,\n      \"Damage\": 1.72,\n      \"Distributer Draw\": 0.25,\n      \"Damage Falloff\": 500,\n      \"Integrity\": 40,\n      \"Mass\": 2,\n      \"Armour Piercing\": 20,\n      \"Power Draw\": 0.65,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 0.38\n    }\n  },\n  {\n    \"breachdmg\": 1,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 1,\n    \"cost\": 8600,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"fireint\": 0.45,\n    \"edID\": 128049404,\n    \"eddbID\": 835,\n    \"grp\": \"ul\",\n    \"id\": \"12\",\n    \"mount\": \"G\",\n    \"rating\": \"G\",\n    \"symbol\": \"Hpt_PulseLaserBurst_Gimbal_Small\",\n    \"properties\": {\n      \"Burst\": 3,\n      \"Burst Rate Of Fire\": 17,\n      \"Damage\": 1.22,\n      \"Distributer Draw\": 0.24,\n      \"Damage Falloff\": 500,\n      \"Integrity\": 40,\n      \"Mass\": 2,\n      \"Armour Piercing\": 20,\n      \"Power Draw\": 0.64,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 0.34\n    }\n  },\n  {\n    \"breachdmg\": 0.4,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.6,\n    \"class\": 1,\n    \"cost\": 52800,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128049407,\n    \"eddbID\": 838,\n    \"fireint\": 0.52,\n    \"grp\": \"ul\",\n    \"id\": \"13\",\n    \"mount\": \"T\",\n    \"rating\": \"G\",\n    \"symbol\": \"Hpt_PulseLaserBurst_Turret_Small\",\n    \"properties\": {\n      \"Burst\": 3,\n      \"Burst Rate Of Fire\": 19,\n      \"Damage\": 0.87,\n      \"Distributer Draw\": 0.14,\n      \"Damage Falloff\": 500,\n      \"Integrity\": 40,\n      \"Mass\": 2,\n      \"Armour Piercing\": 20,\n      \"Power Draw\": 0.6,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 0.19\n    }\n  },\n  {\n    \"breachdmg\": 3.1,\n    \"breachmax\": 0,\n    \"breachmin\": 0,\n    \"class\": 1,\n    \"cost\": 8800,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128671449,\n    \"eddbID\": 1477,\n    \"fireint\": 0.7,\n    \"grp\": \"ul\",\n    \"id\": \"cy\",\n    \"mount\": \"F\",\n    \"name\": \"Cytoscrambler\",\n    \"pp\": \"Archon Delaine\",\n    \"rating\": \"F\",\n    \"symbol\": \"Hpt_PulseLaserBurst_Fixed_Small_Scatter\",\n    \"properties\": {\n      \"Burst\": 8,\n      \"Burst Rate Of Fire\": 20,\n      \"Damage\": 3.6,\n      \"Distributer Draw\": 0.31,\n      \"Damage Falloff\": 600,\n      \"Integrity\": 40,\n      \"Jitter\": 1.7,\n      \"Mass\": 2,\n      \"Armour Piercing\": 1,\n      \"Power Draw\": 0.8,\n      \"Maximum Range\": 1000,\n      \"Thermal Load\": 0.3\n    }\n  },\n  {\n    \"breachdmg\": 3,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 2,\n    \"cost\": 23000,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128049401,\n    \"eddbID\": 833,\n    \"fireint\": 0.63,\n    \"grp\": \"ul\",\n    \"id\": \"7h\",\n    \"mount\": \"F\",\n    \"rating\": \"E\",\n    \"symbol\": \"Hpt_PulseLaserBurst_Fixed_Medium\",\n    \"properties\": {\n      \"Burst\": 3,\n      \"Burst Rate Of Fire\": 11,\n      \"Damage\": 3.53,\n      \"Distributer Draw\": 0.5,\n      \"Damage Falloff\": 500,\n      \"Integrity\": 40,\n      \"Mass\": 4,\n      \"Armour Piercing\": 35,\n      \"Power Draw\": 1.05,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 0.78\n    }\n  },\n  {\n    \"breachdmg\": 2.1,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 2,\n    \"cost\": 48500,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128049405,\n    \"eddbID\": 836,\n    \"fireint\": 0.56,\n    \"grp\": \"ul\",\n    \"id\": \"7i\",\n    \"mount\": \"G\",\n    \"rating\": \"F\",\n    \"symbol\": \"Hpt_PulseLaserBurst_Gimbal_Medium\",\n    \"properties\": {\n      \"Burst\": 3,\n      \"Burst Rate Of Fire\": 13,\n      \"Damage\": 2.45,\n      \"Distributer Draw\": 0.49,\n      \"Damage Falloff\": 500,\n      \"Integrity\": 40,\n      \"Mass\": 4,\n      \"Armour Piercing\": 35,\n      \"Power Draw\": 1.04,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 0.67\n    }\n  },\n  {\n    \"breachdmg\": 0.9,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.6,\n    \"class\": 2,\n    \"cost\": 162800,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128049408,\n    \"eddbID\": 839,\n    \"fireint\": 0.63,\n    \"grp\": \"ul\",\n    \"id\": \"7j\",\n    \"mount\": \"T\",\n    \"rating\": \"F\",\n    \"symbol\": \"Hpt_PulseLaserBurst_Turret_Medium\",\n    \"properties\": {\n      \"Burst\": 3,\n      \"Burst Rate Of Fire\": 15,\n      \"Damage\": 1.72,\n      \"Distributer Draw\": 0.28,\n      \"Damage Falloff\": 500,\n      \"Integrity\": 40,\n      \"Mass\": 4,\n      \"Armour Piercing\": 35,\n      \"Power Draw\": 0.98,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 0.38\n    }\n  },\n  {\n    \"breachdmg\": 3.9,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 3,\n    \"cost\": 140400,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128049402,\n    \"eddbID\": 834,\n    \"fireint\": 0.83,\n    \"grp\": \"ul\",\n    \"id\": \"14\",\n    \"mount\": \"F\",\n    \"rating\": \"D\",\n    \"symbol\": \"Hpt_PulseLaserBurst_Fixed_Large\",\n    \"properties\": {\n      \"Burst\": 3,\n      \"Burst Rate Of Fire\": 7,\n      \"Damage\": 7.73,\n      \"Distributer Draw\": 1.11,\n      \"Damage Falloff\": 500,\n      \"Integrity\": 64,\n      \"Mass\": 8,\n      \"Armour Piercing\": 52,\n      \"Power Draw\": 1.66,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 1.7\n    }\n  },\n  {\n    \"breachdmg\": 4.4,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 3,\n    \"cost\": 281600,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128049406,\n    \"eddbID\": 837,\n    \"fireint\": 0.71,\n    \"grp\": \"ul\",\n    \"id\": \"15\",\n    \"mount\": \"G\",\n    \"rating\": \"E\",\n    \"symbol\": \"Hpt_PulseLaserBurst_Gimbal_Large\",\n    \"properties\": {\n      \"Burst\": 3,\n      \"Burst Rate Of Fire\": 9,\n      \"Damage\": 5.16,\n      \"Distributer Draw\": 1.03,\n      \"Damage Falloff\": 500,\n      \"Integrity\": 64,\n      \"Mass\": 8,\n      \"Armour Piercing\": 52,\n      \"Power Draw\": 1.65,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 1.42\n    }\n  },\n  {\n    \"breachdmg\": 1.8,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.6,\n    \"class\": 3,\n    \"cost\": 800400,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128049409,\n    \"eddbID\": 840,\n    \"fireint\": 0.78,\n    \"grp\": \"ul\",\n    \"id\": \"16\",\n    \"mount\": \"T\",\n    \"rating\": \"E\",\n    \"symbol\": \"Hpt_PulseLaserBurst_Turret_Large\",\n    \"properties\": {\n      \"Burst\": 3,\n      \"Burst Rate Of Fire\": 11,\n      \"Damage\": 3.53,\n      \"Distributer Draw\": 0.56,\n      \"Damage Falloff\": 500,\n      \"Integrity\": 64,\n      \"Mass\": 8,\n      \"Armour Piercing\": 52,\n      \"Power Draw\": 1.57,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 0.78\n    }\n  },\n  {\n    \"breachdmg\": 17.5,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 4,\n    \"cost\": 281600,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128049403,\n    \"eddbID\": 1549,\n    \"fireint\": 1.25,\n    \"grp\": \"ul\",\n    \"id\": \"7s\",\n    \"mount\": \"F\",\n    \"rating\": \"E\",\n    \"symbol\": \"Hpt_PulseLaserBurst_Fixed_Huge\",\n    \"properties\": {\n      \"Burst\": 3,\n      \"Burst Rate Of Fire\": 3,\n      \"Damage\": 20.61,\n      \"Distributer Draw\": 2.98,\n      \"Damage Falloff\": 500,\n      \"Integrity\": 80,\n      \"Mass\": 16,\n      \"Armour Piercing\": 65,\n      \"Power Draw\": 2.58,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 4.53\n    }\n  },\n  {\n    \"breachdmg\": 10.3,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 4,\n    \"cost\": 1245600,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128727920,\n    \"eddbID\": 1550,\n    \"fireint\": 1,\n    \"grp\": \"ul\",\n    \"id\": \"7t\",\n    \"mount\": \"G\",\n    \"rating\": \"E\",\n    \"symbol\": \"Hpt_PulseLaserBurst_Gimbal_Huge\",\n    \"properties\": {\n      \"Burst\": 3,\n      \"Burst Rate Of Fire\": 5,\n      \"Damage\": 12.09,\n      \"Distributer Draw\": 2.41,\n      \"Damage Falloff\": 500,\n      \"Integrity\": 80,\n      \"Mass\": 16,\n      \"Armour Piercing\": 65,\n      \"Power Draw\": 2.59,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 3.33\n    }\n  },\n  {\n    \"breachdmg\": 17.1,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.6,\n    \"class\": 1,\n    \"cost\": 21100,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"edID\": 128049438,\n    \"eddbID\": 850,\n    \"fireint\": 2,\n    \"grp\": \"c\",\n    \"id\": \"1h\",\n    \"mount\": \"F\",\n    \"rating\": \"D\",\n    \"symbol\": \"Hpt_Cannon_Fixed_Small\",\n    \"properties\": {\n      \"Ammo Maximum\": 120,\n      \"Ammo Clip Size\": 6,\n      \"Damage\": 22.5,\n      \"Distributer Draw\": 0.46,\n      \"Damage Falloff\": 3000,\n      \"Integrity\": 40,\n      \"Mass\": 2,\n      \"Armour Piercing\": 35,\n      \"Power Draw\": 0.34,\n      \"Maximum Range\": 3000,\n      \"Reload Time\": 3,\n      \"Shot Speed\": 1200,\n      \"Thermal Load\": 1.4\n    }\n  },\n  {\n    \"breachdmg\": 13.2,\n    \"breachmax\": 0.9,\n    \"breachmin\": 0.6,\n    \"class\": 1,\n    \"cost\": 42200,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"edID\": 128049442,\n    \"eddbID\": 854,\n    \"fireint\": 1.92,\n    \"grp\": \"c\",\n    \"id\": \"1i\",\n    \"mount\": \"G\",\n    \"rating\": \"E\",\n    \"symbol\": \"Hpt_Cannon_Gimbal_Small\",\n    \"properties\": {\n      \"Ammo Maximum\": 100,\n      \"Ammo Clip Size\": 5,\n      \"Damage\": 16,\n      \"Distributer Draw\": 0.48,\n      \"Damage Falloff\": 3000,\n      \"Integrity\": 40,\n      \"Mass\": 2,\n      \"Armour Piercing\": 35,\n      \"Power Draw\": 0.38,\n      \"Maximum Range\": 3000,\n      \"Reload Time\": 4,\n      \"Shot Speed\": 1000,\n      \"Thermal Load\": 1.3\n    }\n  },\n  {\n    \"breachdmg\": 10.6,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.6,\n    \"class\": 1,\n    \"cost\": 506400,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"edID\": 128049445,\n    \"eddbID\": 857,\n    \"fireint\": 2.31,\n    \"grp\": \"c\",\n    \"id\": \"1j\",\n    \"mount\": \"T\",\n    \"rating\": \"F\",\n    \"symbol\": \"Hpt_Cannon_Turret_Small\",\n    \"properties\": {\n      \"Ammo Maximum\": 100,\n      \"Ammo Clip Size\": 5,\n      \"Damage\": 12.75,\n      \"Distributer Draw\": 0.22,\n      \"Damage Falloff\": 3000,\n      \"Integrity\": 40,\n      \"Mass\": 2,\n      \"Armour Piercing\": 35,\n      \"Power Draw\": 0.32,\n      \"Maximum Range\": 3000,\n      \"Reload Time\": 4,\n      \"Shot Speed\": 1000,\n      \"Thermal Load\": 0.7\n    }\n  },\n  {\n    \"breachdmg\": 28,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.6,\n    \"class\": 2,\n    \"cost\": 168430,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"edID\": 128049439,\n    \"eddbID\": 851,\n    \"fireint\": 2.17,\n    \"grp\": \"c\",\n    \"id\": \"1k\",\n    \"mount\": \"F\",\n    \"rating\": \"D\",\n    \"symbol\": \"Hpt_Cannon_Fixed_Medium\",\n    \"properties\": {\n      \"Ammo Maximum\": 120,\n      \"Ammo Clip Size\": 6,\n      \"Damage\": 36.5,\n      \"Distributer Draw\": 0.7,\n      \"Damage Falloff\": 3500,\n      \"Integrity\": 51,\n      \"Mass\": 4,\n      \"Armour Piercing\": 50,\n      \"Power Draw\": 0.49,\n      \"Maximum Range\": 3500,\n      \"Reload Time\": 3,\n      \"Shot Speed\": 1051.051025,\n      \"Thermal Load\": 2.1\n    }\n  },\n  {\n    \"breachdmg\": 20.3,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.6,\n    \"class\": 2,\n    \"cost\": 337600,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"edID\": 128049443,\n    \"eddbID\": 855,\n    \"fireint\": 2.08,\n    \"grp\": \"c\",\n    \"id\": \"1l\",\n    \"mount\": \"G\",\n    \"rating\": \"D\",\n    \"symbol\": \"Hpt_Cannon_Gimbal_Medium\",\n    \"properties\": {\n      \"Ammo Maximum\": 100,\n      \"Ammo Clip Size\": 5,\n      \"Damage\": 24.5,\n      \"Distributer Draw\": 0.75,\n      \"Damage Falloff\": 3500,\n      \"Integrity\": 51,\n      \"Mass\": 4,\n      \"Armour Piercing\": 50,\n      \"Power Draw\": 0.54,\n      \"Maximum Range\": 3500,\n      \"Reload Time\": 4,\n      \"Shot Speed\": 875,\n      \"Thermal Load\": 1.9\n    }\n  },\n  {\n    \"breachdmg\": 16.3,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.6,\n    \"class\": 2,\n    \"cost\": 4051200,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"edID\": 128049446,\n    \"eddbID\": 858,\n    \"fireint\": 2.5,\n    \"grp\": \"c\",\n    \"id\": \"1m\",\n    \"mount\": \"T\",\n    \"rating\": \"E\",\n    \"symbol\": \"Hpt_Cannon_Turret_Medium\",\n    \"properties\": {\n      \"Ammo Maximum\": 100,\n      \"Ammo Clip Size\": 5,\n      \"Damage\": 19.77,\n      \"Distributer Draw\": 0.34,\n      \"Damage Falloff\": 3500,\n      \"Integrity\": 51,\n      \"Mass\": 4,\n      \"Armour Piercing\": 50,\n      \"Power Draw\": 0.45,\n      \"Maximum Range\": 3500,\n      \"Reload Time\": 4,\n      \"Shot Speed\": 875,\n      \"Thermal Load\": 1\n    }\n  },\n  {\n    \"breachdmg\": 42.3,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.6,\n    \"class\": 3,\n    \"cost\": 675200,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"edID\": 128049440,\n    \"eddbID\": 852,\n    \"fireint\": 2.38,\n    \"grp\": \"c\",\n    \"id\": \"1n\",\n    \"mount\": \"F\",\n    \"rating\": \"C\",\n    \"symbol\": \"Hpt_Cannon_Fixed_Large\",\n    \"properties\": {\n      \"Ammo Maximum\": 120,\n      \"Ammo Clip Size\": 6,\n      \"Damage\": 54.94,\n      \"Distributer Draw\": 1.07,\n      \"Damage Falloff\": 4000,\n      \"Integrity\": 64,\n      \"Mass\": 8,\n      \"Armour Piercing\": 70,\n      \"Power Draw\": 0.67,\n      \"Maximum Range\": 4000,\n      \"Reload Time\": 3,\n      \"Shot Speed\": 959.232605,\n      \"Thermal Load\": 3.2\n    }\n  },\n  {\n    \"breachdmg\": 30.9,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.6,\n    \"class\": 3,\n    \"cost\": 1350400,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"edID\": 128671120,\n    \"eddbID\": 1383,\n    \"fireint\": 2.27,\n    \"eps\": 0.456,\n    \"grp\": \"c\",\n    \"hps\": 1.16,\n    \"id\": \"1o\",\n    \"mount\": \"G\",\n    \"rating\": \"C\",\n    \"symbol\": \"Hpt_Cannon_Gimbal_Large\",\n    \"properties\": {\n      \"Ammo Maximum\": 100,\n      \"Ammo Clip Size\": 5,\n      \"Damage\": 37.39,\n      \"Distributer Draw\": 1.14,\n      \"Damage Falloff\": 4000,\n      \"Integrity\": 64,\n      \"Mass\": 8,\n      \"Armour Piercing\": 70,\n      \"Power Draw\": 0.75,\n      \"Maximum Range\": 4000,\n      \"Reload Time\": 4,\n      \"Shot Speed\": 800,\n      \"Thermal Load\": 2.9\n    }\n  },\n  {\n    \"breachdmg\": 25.14,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.6,\n    \"class\": 3,\n    \"cost\": 16204800,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"edID\": 128049447,\n    \"eddbID\": 859,\n    \"fireint\": 2.72,\n    \"grp\": \"c\",\n    \"id\": \"1p\",\n    \"mount\": \"T\",\n    \"rating\": \"D\",\n    \"symbol\": \"Hpt_Cannon_Turret_Large\",\n    \"properties\": {\n      \"Ammo Maximum\": 100,\n      \"Ammo Clip Size\": 5,\n      \"Damage\": 30.4,\n      \"Distributer Draw\": 0.53,\n      \"Damage Falloff\": 4000,\n      \"Integrity\": 64,\n      \"Mass\": 8,\n      \"Armour Piercing\": 70,\n      \"Power Draw\": 0.64,\n      \"Maximum Range\": 4000,\n      \"Reload Time\": 4,\n      \"Shot Speed\": 800,\n      \"Thermal Load\": 1.6\n    }\n  },\n  {\n    \"breachdmg\": 63.2,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.6,\n    \"class\": 4,\n    \"cost\": 2700800,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"edID\": 128049441,\n    \"eddbID\": 853,\n    \"fireint\": 2.63,\n    \"eps\": 0.644,\n    \"grp\": \"c\",\n    \"hps\": 1.92,\n    \"id\": \"1q\",\n    \"mount\": \"F\",\n    \"rating\": \"B\",\n    \"symbol\": \"Hpt_Cannon_Fixed_Huge\",\n    \"properties\": {\n      \"Ammo Maximum\": 120,\n      \"Ammo Clip Size\": 6,\n      \"Damage\": 82.1,\n      \"Distributer Draw\": 1.61,\n      \"Damage Falloff\": 4500,\n      \"Integrity\": 80,\n      \"Mass\": 16,\n      \"Armour Piercing\": 90,\n      \"Power Draw\": 0.92,\n      \"Maximum Range\": 4500,\n      \"Reload Time\": 3,\n      \"Shot Speed\": 900,\n      \"Thermal Load\": 4.8\n    }\n  },\n  {\n    \"breachdmg\": 46.7,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.6,\n    \"class\": 4,\n    \"cost\": 5401600,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"edID\": 128049444,\n    \"eddbID\": 856,\n    \"fireint\": 2.5,\n    \"eps\": 0.688,\n    \"grp\": \"c\",\n    \"hps\": 1.76,\n    \"id\": \"1r\",\n    \"mount\": \"G\",\n    \"rating\": \"B\",\n    \"symbol\": \"Hpt_Cannon_Gimbal_Huge\",\n    \"properties\": {\n      \"Ammo Maximum\": 100,\n      \"Ammo Clip Size\": 5,\n      \"Damage\": 56.58,\n      \"Distributer Draw\": 1.72,\n      \"Damage Falloff\": 4500,\n      \"Integrity\": 80,\n      \"Mass\": 16,\n      \"Armour Piercing\": 90,\n      \"Power Draw\": 1.03,\n      \"Maximum Range\": 4500,\n      \"Reload Time\": 4,\n      \"Shot Speed\": 750,\n      \"Thermal Load\": 4.4\n    }\n  },\n  {\n    \"class\": 0,\n    \"cost\": 13540,\n    \"edID\": 128662520,\n    \"eddbID\": 1227,\n    \"grp\": \"cs\",\n    \"id\": \"0d\",\n    \"rating\": \"E\",\n    \"symbol\": \"Hpt_CargoScanner_Size0_Class1\",\n    \"properties\": {\n      \"Scan Angle\": 15,\n      \"Integrity\": 32,\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.2,\n      \"Maximum Range\": 2000,\n      \"Scan Time\": 10\n    }\n  },\n  {\n    \"class\": 0,\n    \"cost\": 40630,\n    \"edID\": 128662521,\n    \"eddbID\": 1228,\n    \"grp\": \"cs\",\n    \"id\": \"0c\",\n    \"rating\": \"D\",\n    \"symbol\": \"Hpt_CargoScanner_Size0_Class2\",\n    \"properties\": {\n      \"Scan Angle\": 15,\n      \"Integrity\": 24,\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.4,\n      \"Maximum Range\": 2500,\n      \"Scan Time\": 10\n    }\n  },\n  {\n    \"class\": 0,\n    \"cost\": 121900,\n    \"edID\": 128662522,\n    \"eddbID\": 1229,\n    \"grp\": \"cs\",\n    \"id\": \"0b\",\n    \"rating\": \"C\",\n    \"symbol\": \"Hpt_CargoScanner_Size0_Class3\",\n    \"properties\": {\n      \"Scan Angle\": 15,\n      \"Integrity\": 40,\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.8,\n      \"Maximum Range\": 3000,\n      \"Scan Time\": 10\n    }\n  },\n  {\n    \"class\": 0,\n    \"cost\": 365700,\n    \"edID\": 128662523,\n    \"eddbID\": 1230,\n    \"grp\": \"cs\",\n    \"id\": \"0a\",\n    \"rating\": \"B\",\n    \"symbol\": \"Hpt_CargoScanner_Size0_Class4\",\n    \"properties\": {\n      \"Scan Angle\": 15,\n      \"Integrity\": 56,\n      \"Mass\": 1.3,\n      \"Power Draw\": 1.6,\n      \"Maximum Range\": 3500,\n      \"Scan Time\": 10\n    }\n  },\n  {\n    \"class\": 0,\n    \"cost\": 1097100,\n    \"edID\": 128662524,\n    \"eddbID\": 1231,\n    \"grp\": \"cs\",\n    \"id\": \"09\",\n    \"rating\": \"A\",\n    \"symbol\": \"Hpt_CargoScanner_Size0_Class5\",\n    \"properties\": {\n      \"Scan Angle\": 15,\n      \"Integrity\": 48,\n      \"Mass\": 1.3,\n      \"Power Draw\": 3.2,\n      \"Maximum Range\": 4000,\n      \"Scan Time\": 10\n    }\n  },\n  {\n    \"ammocost\": 100,\n    \"class\": 0,\n    \"cost\": 8500,\n    \"edID\": 128049513,\n    \"eddbID\": 884,\n    \"fireint\": 1,\n    \"grp\": \"ch\",\n    \"id\": \"00\",\n    \"name\": \"Chaff Launcher\",\n    \"passive\": 1,\n    \"rating\": \"I\",\n    \"symbol\": \"Hpt_ChaffLauncher_Tiny\",\n    \"properties\": {\n      \"Ammo Maximum\": 10,\n      \"Ammo Clip Size\": 1,\n      \"Distributer Draw\": 4,\n      \"Duration\": 20,\n      \"Integrity\": 20,\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.2,\n      \"Reload Time\": 10,\n      \"Thermal Load\": 4\n    }\n  },\n  {\n    \"activepower\": 4,\n    \"chargeup\": 3,\n    \"class\": 0,\n    \"cooldown\": 10,\n    \"cost\": 12500,\n    \"edID\": 128049516,\n    \"eddbID\": 885,\n    \"grp\": \"ec\",\n    \"id\": \"01\",\n    \"name\": \"Electronic Countermeasure\",\n    \"rating\": \"F\",\n    \"symbol\": \"Hpt_ElectronicCountermeasure_Tiny\",\n    \"properties\": {\n      \"Integrity\": 20,\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.2,\n      \"Maximum Range\": 3000,\n      \"Reload Time\": 10,\n      \"Thermal Load\": 4\n    }\n  },\n  {\n    \"experimental\": true,\n    \"rating\": \"B\",\n    \"class\": 2,\n    \"grp\": \"tbem\",\n    \"id\": \"xt\",\n    \"eddbID\": 0,\n    \"edID\": 128833995,\n    \"fireint\": 2,\n    \"mount\": \"F\",\n    \"cost\": 480501,\n    \"breachdmg\": 0,\n    \"breachmin\": 0.8,\n    \"breachmax\": 1,\n    \"symbol\": \"Hpt_CausticMissile_Fixed_Medium\",\n    \"damagedist\": {\n      \"E\": 1\n    },\n    \"properties\": {\n      \"Mass\": 4,\n      \"Integrity\": 51,\n      \"Power Draw\": 1.2,\n      \"Damage\": 5,\n      \"Distributer Draw\": 0.08,\n      \"Thermal Load\": 1.5,\n      \"Armour Piercing\": 60,\n      \"Shot Speed\": 750,\n      \"Ammo Clip Size\": 8,\n      \"Ammo Maximum\": 64,\n      \"Reload Time\": 5\n    }\n  },\n  {\n    \"breachdmg\": 1.3,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 1,\n    \"cost\": 36000,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"edID\": 128049448,\n    \"eddbID\": 860,\n    \"fireint\": 0.18,\n    \"grp\": \"fc\",\n    \"id\": \"20\",\n    \"mount\": \"F\",\n    \"rating\": \"E\",\n    \"roundspershot\": 12,\n    \"symbol\": \"Hpt_Slugshot_Fixed_Small\",\n    \"properties\": {\n      \"Ammo Maximum\": 180,\n      \"Ammo Clip Size\": 3,\n      \"Damage\": 1.43,\n      \"Distributer Draw\": 0.21,\n      \"Damage Falloff\": 1800,\n      \"Integrity\": 40,\n      \"Jitter\": 5,\n      \"Mass\": 2,\n      \"Armour Piercing\": 20,\n      \"Power Draw\": 0.45,\n      \"Maximum Range\": 2000,\n      \"Reload Time\": 5,\n      \"Shot Speed\": 667,\n      \"Thermal Load\": 0.4\n    }\n  },\n  {\n    \"breachdmg\": 0.9,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 1,\n    \"cost\": 54720,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"edID\": 128049451,\n    \"eddbID\": 863,\n    \"fireint\": 0.17,\n    \"grp\": \"fc\",\n    \"id\": \"21\",\n    \"mount\": \"G\",\n    \"rating\": \"E\",\n    \"roundspershot\": 12,\n    \"symbol\": \"Hpt_Slugshot_Gimbal_Small\",\n    \"properties\": {\n      \"Ammo Maximum\": 180,\n      \"Ammo Clip Size\": 3,\n      \"Damage\": 1.01,\n      \"Distributer Draw\": 0.26,\n      \"Damage Falloff\": 1800,\n      \"Integrity\": 40,\n      \"Jitter\": 5,\n      \"Mass\": 2,\n      \"Armour Piercing\": 20,\n      \"Power Draw\": 0.59,\n      \"Maximum Range\": 2000,\n      \"Reload Time\": 5,\n      \"Shot Speed\": 667,\n      \"Thermal Load\": 0.4\n    }\n  },\n  {\n    \"breachdmg\": 0.5,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 1,\n    \"cost\": 182400,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"edID\": 128049453,\n    \"eddbID\": 865,\n    \"fireint\": 0.21,\n    \"grp\": \"fc\",\n    \"id\": \"22\",\n    \"mount\": \"T\",\n    \"rating\": \"E\",\n    \"roundspershot\": 12,\n    \"symbol\": \"Hpt_Slugshot_Turret_Small\",\n    \"properties\": {\n      \"Ammo Maximum\": 180,\n      \"Ammo Clip Size\": 3,\n      \"Damage\": 0.69,\n      \"Distributer Draw\": 0.1,\n      \"Damage Falloff\": 1800,\n      \"Integrity\": 40,\n      \"Jitter\": 5,\n      \"Mass\": 2,\n      \"Armour Piercing\": 20,\n      \"Power Draw\": 0.42,\n      \"Maximum Range\": 2000,\n      \"Reload Time\": 5,\n      \"Shot Speed\": 667,\n      \"Thermal Load\": 0.2\n    }\n  },\n  {\n    \"breachdmg\": 2.3,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 2,\n    \"cost\": 291840,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"edID\": 128049449,\n    \"eddbID\": 861,\n    \"fireint\": 0.2,\n    \"grp\": \"fc\",\n    \"id\": \"1s\",\n    \"mount\": \"F\",\n    \"rating\": \"A\",\n    \"roundspershot\": 12,\n    \"symbol\": \"Hpt_Slugshot_Fixed_Medium\",\n    \"properties\": {\n      \"Ammo Maximum\": 180,\n      \"Ammo Clip Size\": 3,\n      \"Damage\": 3,\n      \"Distributer Draw\": 0.37,\n      \"Damage Falloff\": 1800,\n      \"Integrity\": 80,\n      \"Jitter\": 5,\n      \"Mass\": 4,\n      \"Armour Piercing\": 30,\n      \"Power Draw\": 0.74,\n      \"Maximum Range\": 2000,\n      \"Reload Time\": 5,\n      \"Shot Speed\": 667,\n      \"Thermal Load\": 0.7\n    }\n  },\n  {\n    \"breachdmg\": 1.8,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 2,\n    \"cost\": 437761,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"edID\": 128049452,\n    \"eddbID\": 864,\n    \"fireint\": 0.19,\n    \"grp\": \"fc\",\n    \"id\": \"7e\",\n    \"mount\": \"G\",\n    \"rating\": \"D\",\n    \"roundspershot\": 12,\n    \"symbol\": \"Hpt_Slugshot_Gimbal_Medium\",\n    \"properties\": {\n      \"Ammo Maximum\": 180,\n      \"Ammo Clip Size\": 3,\n      \"Damage\": 2.275,\n      \"Distributer Draw\": 0.49,\n      \"Damage Falloff\": 1800,\n      \"Integrity\": 80,\n      \"Jitter\": 5,\n      \"Mass\": 4,\n      \"Armour Piercing\": 30,\n      \"Power Draw\": 1.03,\n      \"Maximum Range\": 2000,\n      \"Reload Time\": 5,\n      \"Shot Speed\": 667,\n      \"Thermal Load\": 0.8\n    }\n  },\n  {\n    \"breachdmg\": 1.3,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 2,\n    \"cost\": 1459200,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"edID\": 128049454,\n    \"eddbID\": 866,\n    \"fireint\": 0.23,\n    \"grp\": \"fc\",\n    \"id\": \"7f\",\n    \"mount\": \"T\",\n    \"rating\": \"D\",\n    \"roundspershot\": 12,\n    \"symbol\": \"Hpt_Slugshot_Turret_Medium\",\n    \"properties\": {\n      \"Ammo Maximum\": 180,\n      \"Ammo Clip Size\": 3,\n      \"Damage\": 1.7,\n      \"Distributer Draw\": 0.21,\n      \"Damage Falloff\": 1800,\n      \"Integrity\": 80,\n      \"Jitter\": 5,\n      \"Mass\": 4,\n      \"Armour Piercing\": 30,\n      \"Power Draw\": 0.79,\n      \"Maximum Range\": 2000,\n      \"Reload Time\": 5,\n      \"Shot Speed\": 667,\n      \"Thermal Load\": 0.4\n    }\n  },\n  {\n    \"breachdmg\": 3.5,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 3,\n    \"cost\": 1167360,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"edID\": 128049450,\n    \"eddbID\": 862,\n    \"fireint\": 0.22,\n    \"grp\": \"fc\",\n    \"id\": \"1t\",\n    \"mount\": \"F\",\n    \"rating\": \"C\",\n    \"roundspershot\": 12,\n    \"symbol\": \"Hpt_Slugshot_Fixed_Large\",\n    \"properties\": {\n      \"Ammo Maximum\": 180,\n      \"Ammo Clip Size\": 3,\n      \"Damage\": 4.57,\n      \"Distributer Draw\": 0.57,\n      \"Damage Falloff\": 1800,\n      \"Integrity\": 80,\n      \"Jitter\": 5,\n      \"Mass\": 8,\n      \"Armour Piercing\": 45,\n      \"Power Draw\": 1.02,\n      \"Maximum Range\": 2000,\n      \"Reload Time\": 5,\n      \"Shot Speed\": 667,\n      \"Thermal Load\": 1.1\n    }\n  },\n  {\n    \"breachdmg\": 2.9,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 3,\n    \"cost\": 1751040,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"edID\": 128671321,\n    \"eddbID\": 1454,\n    \"fireint\": 0.21,\n    \"grp\": \"fc\",\n    \"id\": \"1u\",\n    \"mount\": \"G\",\n    \"rating\": \"C\",\n    \"roundspershot\": 12,\n    \"symbol\": \"Hpt_Slugshot_Gimbal_Large\",\n    \"properties\": {\n      \"Ammo Maximum\": 180,\n      \"Ammo Clip Size\": 3,\n      \"Damage\": 3.77,\n      \"Distributer Draw\": 0.81,\n      \"Damage Falloff\": 1800,\n      \"Integrity\": 80,\n      \"Jitter\": 5,\n      \"Mass\": 8,\n      \"Armour Piercing\": 45,\n      \"Power Draw\": 1.55,\n      \"Maximum Range\": 2000,\n      \"Reload Time\": 5,\n      \"Shot Speed\": 667,\n      \"Thermal Load\": 1.4\n    }\n  },\n  {\n    \"breachdmg\": 2.3,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 3,\n    \"cost\": 5836800,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"edID\": 128671322,\n    \"eddbID\": 1455,\n    \"fireint\": 0.25,\n    \"grp\": \"fc\",\n    \"id\": \"1v\",\n    \"mount\": \"T\",\n    \"rating\": \"C\",\n    \"roundspershot\": 12,\n    \"symbol\": \"Hpt_Slugshot_Turret_Large\",\n    \"properties\": {\n      \"Ammo Maximum\": 180,\n      \"Ammo Clip Size\": 3,\n      \"Damage\": 2.98,\n      \"Distributer Draw\": 0.37,\n      \"Damage Falloff\": 1800,\n      \"Integrity\": 80,\n      \"Jitter\": 5,\n      \"Mass\": 8,\n      \"Armour Piercing\": 45,\n      \"Power Draw\": 1.29,\n      \"Maximum Range\": 2000,\n      \"Reload Time\": 5,\n      \"Shot Speed\": 667,\n      \"Thermal Load\": 0.7\n    }\n  },\n  {\n    \"breachdmg\": 3.1,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 3,\n    \"cost\": 1400830,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"edID\": 128671343,\n    \"eddbID\": 1478,\n    \"fireint\": 0.22,\n    \"grp\": \"fc\",\n    \"id\": \"pa\",\n    \"mount\": \"F\",\n    \"name\": \"Pacifier\",\n    \"pp\": \"Zachary Hudson\",\n    \"rating\": \"C\",\n    \"roundspershot\": 12,\n    \"symbol\": \"Hpt_Slugshot_Fixed_Large_Range\",\n    \"properties\": {\n      \"Ammo Maximum\": 180,\n      \"Ammo Clip Size\": 3,\n      \"Damage\": 3.96,\n      \"Distributer Draw\": 0.57,\n      \"Damage Falloff\": 2800,\n      \"Integrity\": 64,\n      \"Jitter\": 1.7,\n      \"Mass\": 8,\n      \"Armour Piercing\": 45,\n      \"Power Draw\": 1.02,\n      \"Reload Time\": 5,\n      \"Shot Speed\": 1000,\n      \"Thermal Load\": 1.1\n    }\n  },\n  {\n    \"class\": 0,\n    \"cost\": 13540,\n    \"edID\": 128662525,\n    \"eddbID\": 1232,\n    \"grp\": \"ws\",\n    \"id\": \"0i\",\n    \"rating\": \"E\",\n    \"symbol\": \"Hpt_CloudScanner_Size0_Class1\",\n    \"properties\": {\n      \"Integrity\": 32,\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.2,\n      \"Maximum Range\": 2000,\n      \"Scan Time\": 10\n    }\n  },\n  {\n    \"class\": 0,\n    \"cost\": 40630,\n    \"edID\": 128662526,\n    \"eddbID\": 1233,\n    \"grp\": \"ws\",\n    \"id\": \"0h\",\n    \"rating\": \"D\",\n    \"symbol\": \"Hpt_CloudScanner_Size0_Class2\",\n    \"properties\": {\n      \"Integrity\": 24,\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.4,\n      \"Maximum Range\": 2500,\n      \"Scan Time\": 10\n    }\n  },\n  {\n    \"class\": 0,\n    \"cost\": 121900,\n    \"edID\": 128662527,\n    \"eddbID\": 1234,\n    \"grp\": \"ws\",\n    \"id\": \"0g\",\n    \"rating\": \"C\",\n    \"symbol\": \"Hpt_CloudScanner_Size0_Class3\",\n    \"properties\": {\n      \"Integrity\": 40,\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.8,\n      \"Maximum Range\": 3000,\n      \"Scan Time\": 10\n    }\n  },\n  {\n    \"class\": 0,\n    \"cost\": 365700,\n    \"edID\": 128662528,\n    \"eddbID\": 1235,\n    \"grp\": \"ws\",\n    \"id\": \"0f\",\n    \"rating\": \"B\",\n    \"symbol\": \"Hpt_CloudScanner_Size0_Class4\",\n    \"properties\": {\n      \"Integrity\": 56,\n      \"Mass\": 1.3,\n      \"Power Draw\": 1.6,\n      \"Maximum Range\": 3500,\n      \"Scan Time\": 10\n    }\n  },\n  {\n    \"class\": 0,\n    \"cost\": 1097100,\n    \"edID\": 128662529,\n    \"eddbID\": 1236,\n    \"grp\": \"ws\",\n    \"id\": \"0e\",\n    \"rating\": \"A\",\n    \"symbol\": \"Hpt_CloudScanner_Size0_Class5\",\n    \"properties\": {\n      \"Integrity\": 48,\n      \"Mass\": 1.3,\n      \"Power Draw\": 3.2,\n      \"Maximum Range\": 4000,\n      \"Scan Time\": 10\n    }\n  },\n  {\n    \"experimental\": true,\n    \"breachdmg\": 11,\n    \"breachmax\": 0.4,\n    \"breachmin\": 0.2,\n    \"class\": 1,\n    \"cost\": 167250,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128891610,\n    \"eddbID\": 0,\n    \"fireint\": 0.83,\n    \"grp\": \"ggc\",\n    \"id\": \"yL\",\n    \"mount\": \"F\",\n    \"rating\": \"D\",\n    \"symbol\": \"Hpt_Guardian_GaussCannon_Fixed_Small\",\n    \"requirements\": {\n      \"horizons\": true\n    },\n    \"properties\": {\n      \"Ammo Maximum\": 80,\n      \"Ammo Clip Size\": 1,\n      \"Damage\": 22,\n      \"Distributer Draw\": 3.8,\n      \"Damage Falloff\": 1500,\n      \"Integrity\": 40,\n      \"Mass\": 2,\n      \"Armour Piercing\": 140,\n      \"Power Draw\": 1.91,\n      \"Maximum Range\": 3000,\n      \"Reload Time\": 1,\n      \"Thermal Load\": 15\n    }\n  },\n  {\n    \"experimental\": true,\n    \"breachdmg\": 35,\n    \"breachmax\": 0.4,\n    \"breachmin\": 0.2,\n    \"class\": 2,\n    \"cost\": 543801,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128833687,\n    \"eddbID\": 876,\n    \"fireint\": 0.83,\n    \"grp\": \"ggc\",\n    \"id\": \"0H\",\n    \"mount\": \"F\",\n    \"rating\": \"B\",\n    \"symbol\": \"Hpt_Guardian_GaussCannon_Fixed_Medium\",\n    \"requirements\": {\n      \"horizons\": true\n    },\n    \"properties\": {\n      \"Ammo Maximum\": 80,\n      \"Burst\": 1,\n      \"Ammo Clip Size\": 1,\n      \"Damage\": 38.5,\n      \"Distributer Draw\": 7.2,\n      \"Damage Falloff\": 1500,\n      \"Integrity\": 42,\n      \"Mass\": 4,\n      \"Armour Piercing\": 140,\n      \"Power Draw\": 2.61,\n      \"Maximum Range\": 3000,\n      \"Reload Time\": 1,\n      \"Thermal Load\": 25\n    }\n  },\n  {\n    \"experimental\": true,\n    \"breachdmg\": 0.4,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.5,\n    \"class\": 1,\n    \"cost\": 176500,\n    \"damagedist\": {\n      \"A\": 1\n    },\n    \"edID\": 128891607,\n    \"eddbID\": 0,\n    \"fireint\": 0.2,\n    \"grp\": \"gpc\",\n    \"id\": \"yN\",\n    \"mount\": \"F\",\n    \"rating\": \"D\",\n    \"symbol\": \"Hpt_Guardian_PlasmaLauncher_Fixed_Small\",\n    \"properties\": {\n      \"Ammo Maximum\": 200,\n      \"Ammo Clip Size\": 15,\n      \"Damage\": 1.7,\n      \"Distributer Draw\": 0.68,\n      \"Damage Falloff\": 1000,\n      \"Integrity\": 34,\n      \"Mass\": 2,\n      \"Armour Piercing\": 65,\n      \"Power Draw\": 1.4,\n      \"Maximum Range\": 3000,\n      \"Reload Time\": 3,\n      \"Shot Speed\": 1200,\n      \"Thermal Load\": 4.2\n    }\n  },\n  {\n    \"experimental\": true,\n    \"breachdmg\": 0.3,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.5,\n    \"class\": 1,\n    \"cost\": 484050,\n    \"damagedist\": {\n      \"A\": 1\n    },\n    \"edID\": 128891606,\n    \"eddbID\": 0,\n    \"fireint\": 0.2,\n    \"grp\": \"gpc\",\n    \"id\": \"yM\",\n    \"mount\": \"T\",\n    \"rating\": \"F\",\n    \"symbol\": \"Hpt_Guardian_PlasmaLauncher_Turret_Small\",\n    \"properties\": {\n      \"Ammo Maximum\": 200,\n      \"Ammo Clip Size\": 15,\n      \"Damage\": 1.1,\n      \"Distributer Draw\": 0.8,\n      \"Damage Falloff\": 1000,\n      \"Integrity\": 34,\n      \"Mass\": 2,\n      \"Armour Piercing\": 65,\n      \"Power Draw\": 1.6,\n      \"Maximum Range\": 3000,\n      \"Reload Time\": 3,\n      \"Shot Speed\": 1200,\n      \"Thermal Load\": 5\n    }\n  },\n  {\n    \"experimental\": true,\n    \"breachdmg\": 0.7,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.5,\n    \"class\": 2,\n    \"cost\": 567761,\n    \"damagedist\": {\n      \"A\": 1\n    },\n    \"edID\": 128833998,\n    \"eddbID\": 874,\n    \"fireint\": 0.2,\n    \"grp\": \"gpc\",\n    \"id\": \"0J\",\n    \"mount\": \"F\",\n    \"rating\": \"B\",\n    \"symbol\": \"Hpt_Guardian_PlasmaLauncher_Fixed_Medium\",\n    \"properties\": {\n      \"Ammo Maximum\": 200,\n      \"Ammo Clip Size\": 15,\n      \"Damage\": 5,\n      \"Distributer Draw\": 1.25,\n      \"Damage Falloff\": 1000,\n      \"Integrity\": 42,\n      \"Mass\": 4,\n      \"Armour Piercing\": 80,\n      \"Power Draw\": 2.13,\n      \"Maximum Range\": 3500,\n      \"Reload Time\": 3,\n      \"Shot Speed\": 1200,\n      \"Thermal Load\": 5.2\n    }\n  },\n  {\n    \"experimental\": true,\n    \"breachdmg\": 1,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.5,\n    \"class\": 2,\n    \"cost\": 1659200,\n    \"damagedist\": {\n      \"A\": 1\n    },\n    \"edID\": 128833999,\n    \"eddbID\": 874,\n    \"fireint\": 0.2,\n    \"grp\": \"gpc\",\n    \"id\": \"0I\",\n    \"mount\": \"T\",\n    \"rating\": \"E\",\n    \"symbol\": \"Hpt_Guardian_PlasmaLauncher_Turret_Medium\",\n    \"properties\": {\n      \"Ammo Maximum\": 200,\n      \"Ammo Clip Size\": 15,\n      \"Damage\": 4,\n      \"Distributer Draw\": 1.4,\n      \"Damage Falloff\": 1000,\n      \"Integrity\": 42,\n      \"Mass\": 4,\n      \"Armour Piercing\": 80,\n      \"Power Draw\": 2.01,\n      \"Maximum Range\": 3500,\n      \"Reload Time\": 3,\n      \"Shot Speed\": 1200,\n      \"Thermal Load\": 5.8\n    }\n  },\n  {\n    \"experimental\": true,\n    \"rating\": \"C\",\n    \"class\": 3,\n    \"grp\": \"gpc\",\n    \"id\": \"xu\",\n    \"eddbID\": 0,\n    \"edID\": 128834783,\n    \"mount\": \"F\",\n    \"cost\": 1423301,\n    \"fireint\": 0.2,\n    \"breachdmg\": 1,\n    \"breachmin\": 0.5,\n    \"breachmax\": 0.8,\n    \"symbol\": \"Hpt_Guardian_PlasmaLauncher_Fixed_Large\",\n    \"damagedist\": {\n      \"A\": 1\n    },\n    \"properties\": {\n      \"Mass\": 8,\n      \"Integrity\": 51,\n      \"Power Draw\": 3.1,\n      \"Damage\": 3.4,\n      \"Distributer Draw\": 2.42,\n      \"Thermal Load\": 6.2,\n      \"Armour Piercing\": 95,\n      \"Maximum Range\": 3000,\n      \"Shot Speed\": 1200,\n      \"Ammo Clip Size\": 15,\n      \"Ammo Maximum\": 200,\n      \"Reload Time\": 3,\n      \"Damage Falloff\": 1000\n    }\n  },\n  {\n    \"experimental\": true,\n    \"breachdmg\": 0.8,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.5,\n    \"class\": 3,\n    \"cost\": 5495200,\n    \"damagedist\": {\n      \"A\": 1\n    },\n    \"edID\": 128834784,\n    \"eddbID\": 0,\n    \"fireint\": 0.2,\n    \"grp\": \"gpc\",\n    \"id\": \"xv\",\n    \"mount\": \"T\",\n    \"rating\": \"D\",\n    \"symbol\": \"Hpt_Guardian_PlasmaLauncher_Turret_Large\",\n    \"properties\": {\n      \"Ammo Maximum\": 200,\n      \"Ammo Clip Size\": 15,\n      \"Damage\": 3.3,\n      \"Distributer Draw\": 2.6,\n      \"Damage Falloff\": 1000,\n      \"Integrity\": 51,\n      \"Mass\": 8,\n      \"Armour Piercing\": 95,\n      \"Power Draw\": 2.53,\n      \"Maximum Range\": 3000,\n      \"Reload Time\": 3,\n      \"Shot Speed\": 1200,\n      \"Thermal Load\": 6.4\n    }\n  },\n  {\n    \"experimental\": true,\n    \"rating\": \"D\",\n    \"class\": 1,\n    \"grp\": \"gsc\",\n    \"id\": \"yO\",\n    \"eddbID\": 0,\n    \"edID\": 128891609,\n    \"mount\": \"F\",\n    \"cost\": 151650,\n    \"fireint\": 0.6,\n    \"roundspershot\": 12,\n    \"breachdmg\": 1.6,\n    \"breachmin\": 0.6,\n    \"breachmax\": 0.8,\n    \"symbol\": \"Hpt_Guardian_ShardCannon_Fixed_Small\",\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"properties\": {\n      \"Mass\": 2,\n      \"Integrity\": 34,\n      \"Power Draw\": 0.87,\n      \"Damage\": 2,\n      \"Distributer Draw\": 0.42,\n      \"Thermal Load\": 0.7,\n      \"Armour Piercing\": 30,\n      \"Maximum Range\": 1700,\n      \"Shot Speed\": 1133,\n      \"Ammo Clip Size\": 5,\n      \"Ammo Maximum\": 180,\n      \"Reload Time\": 5,\n      \"Jitter\": 5,\n      \"Damage Falloff\": 1700\n    }\n  },\n  {\n    \"experimental\": true,\n    \"rating\": \"F\",\n    \"class\": 1,\n    \"grp\": \"gsc\",\n    \"id\": \"yP\",\n    \"eddbID\": 0,\n    \"edID\": 128891608,\n    \"mount\": \"T\",\n    \"cost\": 502000,\n    \"fireint\": 0.6,\n    \"roundspershot\": 12,\n    \"breachdmg\": 0.9,\n    \"breachmin\": 0.6,\n    \"breachmax\": 0.8,\n    \"symbol\": \"Hpt_Guardian_ShardCannon_Turret_Small\",\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"properties\": {\n      \"Mass\": 2,\n      \"Integrity\": 34,\n      \"Power Draw\": 0.72,\n      \"Damage\": 1.1,\n      \"Distributer Draw\": 0.36,\n      \"Thermal Load\": 0.6,\n      \"Armour Piercing\": 30,\n      \"Maximum Range\": 1700,\n      \"Shot Speed\": 1133,\n      \"Ammo Clip Size\": 5,\n      \"Ammo Maximum\": 180,\n      \"Reload Time\": 5,\n      \"Jitter\": 5,\n      \"Damage Falloff\": 1700\n    }\n  },\n  {\n    \"experimental\": true,\n    \"rating\": \"A\",\n    \"class\": 2,\n    \"grp\": \"gsc\",\n    \"id\": \"2P\",\n    \"eddbID\": 0,\n    \"edID\": 128834000,\n    \"mount\": \"F\",\n    \"cost\": 507761,\n    \"fireint\": 0.6,\n    \"roundspershot\": 12,\n    \"breachdmg\": 3,\n    \"breachmin\": 0.6,\n    \"breachmax\": 0.8,\n    \"symbol\": \"Hpt_Guardian_ShardCannon_Fixed_Medium\",\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"properties\": {\n      \"Mass\": 4,\n      \"Integrity\": 42,\n      \"Power Draw\": 1.21,\n      \"Damage\": 3.7,\n      \"Distributer Draw\": 0.65,\n      \"Thermal Load\": 1.2,\n      \"Armour Piercing\": 45,\n      \"Maximum Range\": 1700,\n      \"Shot Speed\": 1133,\n      \"Ammo Clip Size\": 5,\n      \"Ammo Maximum\": 180,\n      \"Reload Time\": 5,\n      \"Jitter\": 5,\n      \"Damage Falloff\": 1700\n    }\n  },\n  {\n    \"experimental\": true,\n    \"rating\": \"D\",\n    \"class\": 2,\n    \"grp\": \"gsc\",\n    \"id\": \"xw\",\n    \"eddbID\": 0,\n    \"edID\": 128834001,\n    \"mount\": \"T\",\n    \"cost\": 1767001,\n    \"fireint\": 0.6,\n    \"roundspershot\": 12,\n    \"breachdmg\": 1.9,\n    \"breachmin\": 0.6,\n    \"breachmax\": 0.8,\n    \"symbol\": \"Hpt_Guardian_ShardCannon_Turret_medium\",\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"properties\": {\n      \"Mass\": 4,\n      \"Integrity\": 42,\n      \"Power Draw\": 1.16,\n      \"Damage\": 2.4,\n      \"Distributer Draw\": 0.57,\n      \"Thermal Load\": 1.1,\n      \"Armour Piercing\": 45,\n      \"Maximum Range\": 1700,\n      \"Shot Speed\": 1133,\n      \"Ammo Clip Size\": 5,\n      \"Ammo Maximum\": 180,\n      \"Reload Time\": 5,\n      \"Jitter\": 5,\n      \"Damage Falloff\": 1700\n    }\n  },\n  {\n    \"experimental\": true,\n    \"rating\": \"C\",\n    \"class\": 3,\n    \"grp\": \"gsc\",\n    \"id\": \"2Q\",\n    \"eddbID\": 0,\n    \"edID\": 128834778,\n    \"mount\": \"F\",\n    \"cost\": 1461350,\n    \"fireint\": 0.6,\n    \"roundspershot\": 12,\n    \"breachdmg\": 4.2,\n    \"breachmin\": 0.6,\n    \"breachmax\": 0.8,\n    \"symbol\": \"Hpt_Guardian_ShardCannon_Fixed_Large\",\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"properties\": {\n      \"Mass\": 8,\n      \"Integrity\": 51,\n      \"Power Draw\": 1.68,\n      \"Damage\": 5.2,\n      \"Distributer Draw\": 1.4,\n      \"Thermal Load\": 2.2,\n      \"Armour Piercing\": 60,\n      \"Maximum Range\": 1700,\n      \"Shot Speed\": 1133,\n      \"Ammo Clip Size\": 5,\n      \"Ammo Maximum\": 180,\n      \"Reload Time\": 5,\n      \"Jitter\": 5,\n      \"Damage Falloff\": 1700\n    }\n  },\n  {\n    \"experimental\": true,\n    \"rating\": \"D\",\n    \"class\": 3,\n    \"grp\": \"gsc\",\n    \"id\": \"xx\",\n    \"eddbID\": 0,\n    \"edID\": 128834779,\n    \"mount\": \"T\",\n    \"cost\": 5865026,\n    \"fireint\": 0.6,\n    \"roundspershot\": 12,\n    \"breachdmg\": 2.7,\n    \"breachmin\": 0.6,\n    \"breachmax\": 0.8,\n    \"symbol\": \"Hpt_Guardian_ShardCannon_Turret_Large\",\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"properties\": {\n      \"Mass\": 8,\n      \"Integrity\": 51,\n      \"Power Draw\": 1.39,\n      \"Damage\": 3.4,\n      \"Distributer Draw\": 1.2,\n      \"Thermal Load\": 2,\n      \"Armour Piercing\": 60,\n      \"Maximum Range\": 1700,\n      \"Shot Speed\": 1133,\n      \"Ammo Clip Size\": 5,\n      \"Ammo Maximum\": 180,\n      \"Reload Time\": 5,\n      \"Jitter\": 5,\n      \"Damage Falloff\": 1700\n    }\n  },\n  {\n    \"ammocost\": 25,\n    \"class\": 0,\n    \"cost\": 3500,\n    \"drain\": 100,\n    \"edID\": 128049519,\n    \"eddbID\": 886,\n    \"eps\": 0.4,\n    \"fireint\": 5,\n    \"grp\": \"hs\",\n    \"id\": \"02\",\n    \"name\": \"Heat Sink Launcher\",\n    \"passive\": 1,\n    \"rating\": \"I\",\n    \"symbol\": \"Hpt_HeatSinkLauncher_Turret_Tiny\",\n    \"properties\": {\n      \"Ammo Maximum\": 2,\n      \"Ammo Clip Size\": 1,\n      \"Distributer Draw\": 2,\n      \"Duration\": 10,\n      \"Integrity\": 20,\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.2,\n      \"Reload Time\": 10\n    }\n  },\n  {\n    \"class\": 0,\n    \"cost\": 13540,\n    \"edID\": 128662530,\n    \"eddbID\": 1237,\n    \"grp\": \"kw\",\n    \"id\": \"0n\",\n    \"rating\": \"E\",\n    \"symbol\": \"Hpt_CrimeScanner_Size0_Class1\",\n    \"properties\": {\n      \"Integrity\": 32,\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.2,\n      \"Maximum Range\": 2000,\n      \"Scan Time\": 10\n    }\n  },\n  {\n    \"class\": 0,\n    \"cost\": 40630,\n    \"edID\": 128662531,\n    \"eddbID\": 1238,\n    \"grp\": \"kw\",\n    \"id\": \"0m\",\n    \"rating\": \"D\",\n    \"symbol\": \"Hpt_CrimeScanner_Size0_Class2\",\n    \"properties\": {\n      \"Integrity\": 24,\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.4,\n      \"Maximum Range\": 2500,\n      \"Scan Time\": 10\n    }\n  },\n  {\n    \"class\": 0,\n    \"cost\": 121900,\n    \"edID\": 128662532,\n    \"eddbID\": 1239,\n    \"grp\": \"kw\",\n    \"id\": \"0l\",\n    \"rating\": \"C\",\n    \"symbol\": \"Hpt_CrimeScanner_Size0_Class3\",\n    \"properties\": {\n      \"Integrity\": 40,\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.8,\n      \"Maximum Range\": 3000,\n      \"Scan Time\": 10\n    }\n  },\n  {\n    \"class\": 0,\n    \"cost\": 365700,\n    \"edID\": 128662533,\n    \"eddbID\": 1240,\n    \"grp\": \"kw\",\n    \"id\": \"0k\",\n    \"rating\": \"B\",\n    \"symbol\": \"Hpt_CrimeScanner_Size0_Class4\",\n    \"properties\": {\n      \"Integrity\": 56,\n      \"Mass\": 1.3,\n      \"Power Draw\": 1.6,\n      \"Maximum Range\": 3500,\n      \"Scan Time\": 10\n    }\n  },\n  {\n    \"class\": 0,\n    \"cost\": 1097100,\n    \"edID\": 128662534,\n    \"eddbID\": 1241,\n    \"grp\": \"kw\",\n    \"id\": \"0j\",\n    \"rating\": \"A\",\n    \"symbol\": \"Hpt_CrimeScanner_Size0_Class5\",\n    \"properties\": {\n      \"Integrity\": 48,\n      \"Mass\": 1.3,\n      \"Power Draw\": 3.2,\n      \"Maximum Range\": 4000,\n      \"Scan Time\": 10\n    }\n  },\n  {\n    \"breachdmg\": 0,\n    \"breachmax\": 0,\n    \"breachmin\": 0,\n    \"class\": 1,\n    \"cost\": 24260,\n    \"damagedist\": {\n      \"E\": 0.5,\n      \"T\": 0.5\n    },\n    \"edID\": 128049500,\n    \"eddbID\": 880,\n    \"fireint\": 1,\n    \"grp\": \"nl\",\n    \"id\": \"2j\",\n    \"mount\": \"F\",\n    \"rating\": \"I\",\n    \"symbol\": \"Hpt_MineLauncher_Fixed_Small\",\n    \"properties\": {\n      \"Ammo Maximum\": 36,\n      \"Ammo Clip Size\": 1,\n      \"Damage\": 44,\n      \"Distributer Draw\": 0,\n      \"Integrity\": 40,\n      \"Mass\": 2,\n      \"Armour Piercing\": 60,\n      \"Power Draw\": 0.4,\n      \"Reload Time\": 2,\n      \"Thermal Load\": 5\n    }\n  },\n  {\n    \"breachdmg\": 0,\n    \"breachmax\": 0,\n    \"breachmin\": 0,\n    \"class\": 1,\n    \"cost\": 36400,\n    \"damagedist\": {\n      \"E\": 0.5,\n      \"T\": 0.5\n    },\n    \"edID\": 128671448,\n    \"eddbID\": 1523,\n    \"fireint\": 1,\n    \"grp\": \"nl\",\n    \"id\": \"kp\",\n    \"mount\": \"F\",\n    \"name\": \"Shock Mine Launcher\",\n    \"rating\": \"I\",\n    \"symbol\": \"Hpt_MineLauncher_Fixed_Small_Impulse\",\n    \"properties\": {\n      \"Ammo Maximum\": 36,\n      \"Ammo Clip Size\": 1,\n      \"Damage\": 32,\n      \"Distributer Draw\": 0,\n      \"Integrity\": 40,\n      \"Mass\": 2,\n      \"Armour Piercing\": 60,\n      \"Power Draw\": 0.4,\n      \"Reload Time\": 2,\n      \"Thermal Load\": 5\n    }\n  },\n  {\n    \"breachdmg\": 0,\n    \"breachmax\": 0,\n    \"breachmin\": 0,\n    \"class\": 2,\n    \"cost\": 294080,\n    \"damagedist\": {\n      \"E\": 0.5,\n      \"T\": 0.5\n    },\n    \"edID\": 128049501,\n    \"eddbID\": 881,\n    \"fireint\": 1,\n    \"grp\": \"nl\",\n    \"id\": \"2k\",\n    \"mount\": \"F\",\n    \"rating\": \"I\",\n    \"symbol\": \"Hpt_MineLauncher_Fixed_Medium\",\n    \"properties\": {\n      \"Ammo Maximum\": 72,\n      \"Ammo Clip Size\": 3,\n      \"Damage\": 44,\n      \"Distributer Draw\": 0,\n      \"Integrity\": 51,\n      \"Mass\": 4,\n      \"Armour Piercing\": 60,\n      \"Power Draw\": 0.4,\n      \"Reload Time\": 6.6,\n      \"Thermal Load\": 7.5\n    }\n  },\n  {\n    \"breachdmg\": 0.3,\n    \"breachmax\": 0.2,\n    \"breachmin\": 0.1,\n    \"class\": 1,\n    \"cost\": 6800,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128049525,\n    \"eddbID\": 888,\n    \"grp\": \"ml\",\n    \"id\": \"2l\",\n    \"mount\": \"F\",\n    \"rating\": \"D\",\n    \"symbol\": \"Hpt_MiningLaser_Fixed_Small\",\n    \"properties\": {\n      \"Damage\": 2,\n      \"Distributer Draw\": 1.5,\n      \"Damage Falloff\": 300,\n      \"Integrity\": 40,\n      \"Mass\": 2,\n      \"Armour Piercing\": 18,\n      \"Power Draw\": 0.5,\n      \"Maximum Range\": 500,\n      \"Thermal Load\": 2\n    }\n  },\n  {\n    \"breachdmg\": 0.3,\n    \"breachmax\": 0.2,\n    \"breachmin\": 0.1,\n    \"class\": 1,\n    \"cost\": 9400,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128740819,\n    \"eddbID\": 1587,\n    \"grp\": \"ml\",\n    \"id\": \"w0\",\n    \"mount\": \"T\",\n    \"rating\": \"D\",\n    \"symbol\": \"Hpt_MiningLaser_Turret_Small\",\n    \"properties\": {\n      \"Damage\": 2,\n      \"Distributer Draw\": 1.5,\n      \"Damage Falloff\": 300,\n      \"Integrity\": 40,\n      \"Mass\": 2,\n      \"Armour Piercing\": 18,\n      \"Power Draw\": 0.5,\n      \"Maximum Range\": 500,\n      \"Thermal Load\": 2\n    }\n  },\n  {\n    \"breachdmg\": 1.2,\n    \"breachmax\": 0.2,\n    \"breachmin\": 0.1,\n    \"class\": 1,\n    \"cost\": 13600,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128671340,\n    \"eddbID\": 1479,\n    \"grp\": \"ml\",\n    \"id\": \"ml\",\n    \"mount\": \"F\",\n    \"name\": \"Mining Lance\",\n    \"pp\": \"Zemina Torval\",\n    \"rating\": \"D\",\n    \"symbol\": \"Hpt_MiningLaser_Fixed_Small_Advanced\",\n    \"properties\": {\n      \"Damage\": 8,\n      \"Distributer Draw\": 1.75,\n      \"Damage Falloff\": 400,\n      \"Integrity\": 40,\n      \"Mass\": 2,\n      \"Armour Piercing\": 18,\n      \"Power Draw\": 0.7,\n      \"Maximum Range\": 2000,\n      \"Thermal Load\": 6\n    }\n  },\n  {\n    \"breachdmg\": 0.6,\n    \"breachmax\": 0.2,\n    \"breachmin\": 0.1,\n    \"class\": 2,\n    \"cost\": 22580,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128049526,\n    \"eddbID\": 889,\n    \"grp\": \"ml\",\n    \"id\": \"2m\",\n    \"mount\": \"F\",\n    \"rating\": \"D\",\n    \"symbol\": \"Hpt_MiningLaser_Fixed_Medium\",\n    \"properties\": {\n      \"Damage\": 4,\n      \"Distributer Draw\": 3,\n      \"Damage Falloff\": 300,\n      \"Integrity\": 51,\n      \"Mass\": 2,\n      \"Armour Piercing\": 18,\n      \"Power Draw\": 0.75,\n      \"Maximum Range\": 500,\n      \"Thermal Load\": 4\n    }\n  },\n  {\n    \"breachdmg\": 0.6,\n    \"breachmax\": 0.2,\n    \"breachmin\": 0.1,\n    \"class\": 2,\n    \"cost\": 32578,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128740820,\n    \"eddbID\": 1588,\n    \"grp\": \"ml\",\n    \"id\": \"w1\",\n    \"mount\": \"T\",\n    \"rating\": \"D\",\n    \"symbol\": \"Hpt_MiningLaser_Turret_Medium\",\n    \"properties\": {\n      \"Damage\": 4,\n      \"Distributer Draw\": 3,\n      \"Damage Falloff\": 300,\n      \"Integrity\": 51,\n      \"Mass\": 2,\n      \"Armour Piercing\": 18,\n      \"Power Draw\": 0.75,\n      \"Maximum Range\": 500,\n      \"Thermal Load\": 4\n    }\n  },\n  {\n    \"breachdmg\": 20,\n    \"breachmax\": 1,\n    \"breachmin\": 1,\n    \"class\": 1,\n    \"cost\": 32180,\n    \"damagedist\": {\n      \"E\": 1\n    },\n    \"edID\": 128666724,\n    \"eddbID\": 1326,\n    \"fireint\": 2,\n    \"grp\": \"mr\",\n    \"id\": \"2d\",\n    \"missile\": \"D\",\n    \"mount\": \"F\",\n    \"rating\": \"B\",\n    \"symbol\": \"Hpt_DumbfireMissileRack_Fixed_Small\",\n    \"properties\": {\n      \"Ammo Maximum\": 16,\n      \"Ammo Clip Size\": 8,\n      \"Damage\": 50,\n      \"Distributer Draw\": 0.24,\n      \"Integrity\": 40,\n      \"Mass\": 2,\n      \"Armour Piercing\": 60,\n      \"Power Draw\": 0.4,\n      \"Reload Time\": 5,\n      \"Shot Speed\": 750,\n      \"Thermal Load\": 3.6\n    }\n  },\n  {\n    \"breachdmg\": 16,\n    \"breachmax\": 0,\n    \"breachmin\": 0,\n    \"class\": 1,\n    \"cost\": 72600,\n    \"damagedist\": {\n      \"E\": 1\n    },\n    \"edID\": 128049492,\n    \"eddbID\": 878,\n    \"fireint\": 3,\n    \"grp\": \"mr\",\n    \"id\": \"2e\",\n    \"missile\": \"S\",\n    \"mount\": \"F\",\n    \"rating\": \"B\",\n    \"symbol\": \"Hpt_BasicMissileRack_Fixed_Small\",\n    \"properties\": {\n      \"Ammo Maximum\": 6,\n      \"Ammo Clip Size\": 6,\n      \"Damage\": 40,\n      \"Distributer Draw\": 0.24,\n      \"Integrity\": 40,\n      \"Mass\": 2,\n      \"Armour Piercing\": 60,\n      \"Power Draw\": 0.6,\n      \"Reload Time\": 12,\n      \"Shot Speed\": 625,\n      \"Thermal Load\": 3.6\n    }\n  },\n  {\n    \"breachdmg\": 20,\n    \"breachmax\": 1,\n    \"breachmin\": 1,\n    \"class\": 2,\n    \"cost\": 240400,\n    \"damagedist\": {\n      \"E\": 1\n    },\n    \"edID\": 128666725,\n    \"eddbID\": 1327,\n    \"eps\": 0.12,\n    \"fireint\": 2,\n    \"grp\": \"mr\",\n    \"hps\": 1.8,\n    \"id\": \"2f\",\n    \"missile\": \"D\",\n    \"mount\": \"F\",\n    \"rating\": \"B\",\n    \"symbol\": \"Hpt_DumbfireMissileRack_Fixed_Medium\",\n    \"properties\": {\n      \"Ammo Maximum\": 48,\n      \"Ammo Clip Size\": 12,\n      \"Damage\": 50,\n      \"Distributer Draw\": 0.24,\n      \"Integrity\": 51,\n      \"Mass\": 4,\n      \"Armour Piercing\": 60,\n      \"Power Draw\": 1.2,\n      \"Reload Time\": 5,\n      \"Shot Speed\": 750,\n      \"Thermal Load\": 3.6\n    }\n  },\n  {\n    \"breachdmg\": 16,\n    \"breachmax\": 0,\n    \"breachmin\": 0,\n    \"class\": 2,\n    \"cost\": 512400,\n    \"damagedist\": {\n      \"E\": 1\n    },\n    \"edID\": 128049493,\n    \"eddbID\": 879,\n    \"eps\": 0.07,\n    \"fireint\": 3,\n    \"grp\": \"mr\",\n    \"hps\": 1.08,\n    \"id\": \"2g\",\n    \"missile\": \"S\",\n    \"mount\": \"F\",\n    \"rating\": \"B\",\n    \"symbol\": \"Hpt_BasicMissileRack_Fixed_Medium\",\n    \"properties\": {\n      \"Ammo Maximum\": 18,\n      \"Ammo Clip Size\": 6,\n      \"Damage\": 40,\n      \"Distributer Draw\": 0.24,\n      \"Integrity\": 51,\n      \"Mass\": 4,\n      \"Armour Piercing\": 60,\n      \"Power Draw\": 1.2,\n      \"Reload Time\": 12,\n      \"Shot Speed\": 625,\n      \"Thermal Load\": 3.6\n    }\n  },\n  {\n    \"breachdmg\": 16,\n    \"breachmax\": 1,\n    \"breachmin\": 1,\n    \"class\": 2,\n    \"cost\": 1951040,\n    \"damagedist\": {\n      \"E\": 1\n    },\n    \"eddbID\": 1559,\n    \"grp\": \"mr\",\n    \"edID\": 128732552,\n    \"fireint\": 3,\n    \"id\": \"1z\",\n    \"missile\": \"D\",\n    \"mount\": \"F\",\n    \"name\": \"Rocket Propelled FSD Disruptor\",\n    \"pp\": \"Yuri Grom\",\n    \"rating\": \"B\",\n    \"symbol\": \"Hpt_DumbfireMissileRack_Fixed_Medium_Lasso\",\n    \"properties\": {\n      \"Ammo Maximum\": 48,\n      \"Ammo Clip Size\": 12,\n      \"Damage\": 40,\n      \"Distributer Draw\": 0.24,\n      \"Integrity\": 51,\n      \"Mass\": 4,\n      \"Armour Piercing\": 60,\n      \"Power Draw\": 1.2,\n      \"Reload Time\": 5,\n      \"Shot Speed\": 750,\n      \"Thermal Load\": 3.6\n    }\n  },\n  {\n    \"breachdmg\": 3,\n    \"breachmax\": 0,\n    \"breachmin\": 0,\n    \"class\": 2,\n    \"cost\": 768600,\n    \"damagedist\": {\n      \"E\": 1\n    },\n    \"edID\": 128671344,\n    \"eddbID\": 1480,\n    \"eps\": 1.92,\n    \"fireint\": 0.5,\n    \"grp\": \"mr\",\n    \"hps\": 28.8,\n    \"id\": \"Ph\",\n    \"missile\": \"S\",\n    \"mount\": \"F\",\n    \"name\": \"Pack-Hound\",\n    \"pp\": \"Li Yong-Rui\",\n    \"rating\": \"B\",\n    \"roundspershot\": 4,\n    \"symbol\": \"Hpt_DrunkMissileRack_Fixed_Medium\",\n    \"properties\": {\n      \"Ammo Maximum\": 120,\n      \"Ammo Clip Size\": 12,\n      \"Damage\": 7.5,\n      \"Distributer Draw\": 0.24,\n      \"Integrity\": 51,\n      \"Mass\": 4,\n      \"Armour Piercing\": 60,\n      \"Power Draw\": 1.2,\n      \"Reload Time\": 5,\n      \"Shot Speed\": 600,\n      \"Thermal Load\": 3.6\n    }\n  },\n  {\n    \"breachdmg\": 20,\n    \"breachmax\": 1,\n    \"breachmin\": 1,\n    \"class\": 3,\n    \"cost\": 1021501,\n    \"damagedist\": {\n      \"E\": 1\n    },\n    \"edID\": 128891602,\n    \"eddbID\": 1657,\n    \"fireint\": 2,\n    \"grp\": \"mr\",\n    \"id\": \"yI\",\n    \"missile\": \"D\",\n    \"mount\": \"F\",\n    \"rating\": \"A\",\n    \"symbol\": \"Hpt_DumbfireMissileRack_Fixed_Large\",\n    \"properties\": {\n      \"Ammo Maximum\": 96,\n      \"Ammo Clip Size\": 12,\n      \"Damage\": 50,\n      \"Distributer Draw\": 0.24,\n      \"Integrity\": 64,\n      \"Mass\": 8,\n      \"Armour Piercing\": 60,\n      \"Power Draw\": 1.62,\n      \"Reload Time\": 5,\n      \"Shot Speed\": 750,\n      \"Thermal Load\": 3.6\n    }\n  },\n  {\n    \"breachdmg\": 16,\n    \"breachmax\": 0,\n    \"breachmin\": 0,\n    \"class\": 3,\n    \"cost\": 1471030,\n    \"damagedist\": {\n      \"E\": 1\n    },\n    \"edID\": 128049494,\n    \"eddbID\": 1656,\n    \"fireint\": 3,\n    \"grp\": \"mr\",\n    \"id\": \"yJ\",\n    \"missile\": \"S\",\n    \"mount\": \"F\",\n    \"rating\": \"A\",\n    \"symbol\": \"Hpt_BasicMissileRack_Fixed_Large\",\n    \"properties\": {\n      \"Ammo Maximum\": 36,\n      \"Ammo Clip Size\": 6,\n      \"Damage\": 40,\n      \"Distributer Draw\": 0.24,\n      \"Integrity\": 64,\n      \"Mass\": 8,\n      \"Armour Piercing\": 60,\n      \"Power Draw\": 1.62,\n      \"Reload Time\": 12,\n      \"Shot Speed\": 625,\n      \"Thermal Load\": 3.6\n    }\n  },\n  {\n    \"breachdmg\": 1,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 1,\n    \"cost\": 9500,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"edID\": 128049455,\n    \"eddbID\": 867,\n    \"fireint\": 0.13,\n    \"grp\": \"mc\",\n    \"id\": \"23\",\n    \"mount\": \"F\",\n    \"rating\": \"F\",\n    \"symbol\": \"Hpt_MultiCannon_Fixed_Small\",\n    \"properties\": {\n      \"Ammo Maximum\": 2100,\n      \"Ammo Clip Size\": 100,\n      \"Damage\": 1.12,\n      \"Distributer Draw\": 0.06,\n      \"Damage Falloff\": 1800,\n      \"Integrity\": 40,\n      \"Mass\": 2,\n      \"Armour Piercing\": 22,\n      \"Power Draw\": 0.28,\n      \"Maximum Range\": 4000,\n      \"Reload Time\": 4,\n      \"Shot Speed\": 1600,\n      \"Thermal Load\": 0.09\n    }\n  },\n  {\n    \"breachdmg\": 0.7,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 1,\n    \"cost\": 14250,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"edID\": 128049459,\n    \"eddbID\": 869,\n    \"fireint\": 0.12,\n    \"grp\": \"mc\",\n    \"id\": \"24\",\n    \"mount\": \"G\",\n    \"rating\": \"G\",\n    \"symbol\": \"Hpt_MultiCannon_Gimbal_Small\",\n    \"properties\": {\n      \"Ammo Maximum\": 2100,\n      \"Ammo Clip Size\": 90,\n      \"Damage\": 0.82,\n      \"Distributer Draw\": 0.07,\n      \"Damage Falloff\": 1800,\n      \"Integrity\": 40,\n      \"Mass\": 2,\n      \"Armour Piercing\": 22,\n      \"Power Draw\": 0.37,\n      \"Maximum Range\": 4000,\n      \"Reload Time\": 5,\n      \"Shot Speed\": 1600,\n      \"Thermal Load\": 0.1\n    }\n  },\n  {\n    \"breachdmg\": 0.5,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 1,\n    \"cost\": 81600,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"edID\": 128049462,\n    \"eddbID\": 871,\n    \"fireint\": 0.14,\n    \"grp\": \"mc\",\n    \"id\": \"25\",\n    \"mount\": \"T\",\n    \"rating\": \"G\",\n    \"symbol\": \"Hpt_MultiCannon_Turret_Small\",\n    \"properties\": {\n      \"Ammo Maximum\": 2100,\n      \"Ammo Clip Size\": 90,\n      \"Damage\": 0.56,\n      \"Distributer Draw\": 0.03,\n      \"Damage Falloff\": 1800,\n      \"Integrity\": 40,\n      \"Mass\": 2,\n      \"Armour Piercing\": 22,\n      \"Power Draw\": 0.26,\n      \"Maximum Range\": 4000,\n      \"Reload Time\": 4,\n      \"Shot Speed\": 1600,\n      \"Thermal Load\": 0.04\n    }\n  },\n  {\n    \"breachdmg\": 2.6,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 1,\n    \"cost\": 13980,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"edID\": 128671345,\n    \"eddbID\": 1481,\n    \"fireint\": 0.23,\n    \"grp\": \"mc\",\n    \"id\": \"e0\",\n    \"mount\": \"F\",\n    \"name\": \"Enforcer\",\n    \"pp\": \"Pranav Antal\",\n    \"rating\": \"F\",\n    \"symbol\": \"Hpt_MultiCannon_Fixed_Small_Strong\",\n    \"properties\": {\n      \"Ammo Maximum\": 1000,\n      \"Ammo Clip Size\": 60,\n      \"Damage\": 2.9,\n      \"Distributer Draw\": 0.12,\n      \"Damage Falloff\": 1800,\n      \"Integrity\": 40,\n      \"Mass\": 2,\n      \"Armour Piercing\": 30,\n      \"Power Draw\": 0.28,\n      \"Maximum Range\": 4500,\n      \"Reload Time\": 4,\n      \"Shot Speed\": 1800,\n      \"Thermal Load\": 0.2\n    }\n  },\n  {\n    \"breachdmg\": 2,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 2,\n    \"cost\": 38000,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"edID\": 128049456,\n    \"eddbID\": 868,\n    \"fireint\": 0.14,\n    \"grp\": \"mc\",\n    \"id\": \"26\",\n    \"mount\": \"F\",\n    \"rating\": \"E\",\n    \"symbol\": \"Hpt_MultiCannon_Fixed_Medium\",\n    \"properties\": {\n      \"Ammo Maximum\": 2100,\n      \"Ammo Clip Size\": 100,\n      \"Damage\": 2.19,\n      \"Distributer Draw\": 0.11,\n      \"Damage Falloff\": 1800,\n      \"Integrity\": 51,\n      \"Mass\": 4,\n      \"Armour Piercing\": 37,\n      \"Power Draw\": 0.46,\n      \"Maximum Range\": 4000,\n      \"Reload Time\": 4,\n      \"Shot Speed\": 1600,\n      \"Thermal Load\": 0.18\n    }\n  },\n  {\n    \"breachdmg\": 1.5,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 2,\n    \"cost\": 57000,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"edID\": 128049460,\n    \"eddbID\": 870,\n    \"fireint\": 0.13,\n    \"grp\": \"mc\",\n    \"id\": \"27\",\n    \"mount\": \"G\",\n    \"rating\": \"F\",\n    \"symbol\": \"Hpt_MultiCannon_Gimbal_Medium\",\n    \"properties\": {\n      \"Ammo Maximum\": 2100,\n      \"Ammo Clip Size\": 90,\n      \"Damage\": 1.64,\n      \"Distributer Draw\": 0.14,\n      \"Damage Falloff\": 1800,\n      \"Integrity\": 51,\n      \"Mass\": 4,\n      \"Armour Piercing\": 37,\n      \"Power Draw\": 0.64,\n      \"Maximum Range\": 4000,\n      \"Reload Time\": 5,\n      \"Shot Speed\": 1600,\n      \"Thermal Load\": 0.2\n    }\n  },\n  {\n    \"breachdmg\": 1.1,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 2,\n    \"cost\": 1292800,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"edID\": 128049463,\n    \"eddbID\": 872,\n    \"fireint\": 0.16,\n    \"grp\": \"mc\",\n    \"id\": \"28\",\n    \"mount\": \"T\",\n    \"rating\": \"F\",\n    \"symbol\": \"Hpt_MultiCannon_Turret_Medium\",\n    \"properties\": {\n      \"Ammo Maximum\": 2100,\n      \"Ammo Clip Size\": 90,\n      \"Damage\": 1.17,\n      \"Distributer Draw\": 0.06,\n      \"Damage Falloff\": 1800,\n      \"Integrity\": 51,\n      \"Mass\": 4,\n      \"Armour Piercing\": 37,\n      \"Power Draw\": 0.5,\n      \"Maximum Range\": 4000,\n      \"Reload Time\": 4,\n      \"Shot Speed\": 1600,\n      \"Thermal Load\": 0.09\n    }\n  },\n  {\n    \"breachdmg\": 3.5,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 3,\n    \"cost\": 140400,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"edID\": 128049457,\n    \"eddbID\": 1541,\n    \"fireint\": 0.17,\n    \"grp\": \"mc\",\n    \"id\": \"7k\",\n    \"mount\": \"F\",\n    \"rating\": \"C\",\n    \"symbol\": \"Hpt_MultiCannon_Fixed_Large\",\n    \"properties\": {\n      \"Ammo Maximum\": 2100,\n      \"Ammo Clip Size\": 100,\n      \"Damage\": 3.925,\n      \"Distributer Draw\": 0.18,\n      \"Damage Falloff\": 1800,\n      \"Integrity\": 64,\n      \"Mass\": 8,\n      \"Armour Piercing\": 54,\n      \"Power Draw\": 0.64,\n      \"Maximum Range\": 4000,\n      \"Reload Time\": 4,\n      \"Shot Speed\": 1600,\n      \"Thermal Load\": 0.28\n    }\n  },\n  {\n    \"breachdmg\": 2.6,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 3,\n    \"cost\": 578436,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"edID\": 128049461,\n    \"eddbID\": 1543,\n    \"fireint\": 0.15,\n    \"grp\": \"mc\",\n    \"id\": \"7l\",\n    \"mount\": \"G\",\n    \"rating\": \"C\",\n    \"symbol\": \"Hpt_MultiCannon_Gimbal_Large\",\n    \"properties\": {\n      \"Ammo Maximum\": 2100,\n      \"Ammo Clip Size\": 90,\n      \"Damage\": 2.84,\n      \"Distributer Draw\": 0.25,\n      \"Damage Falloff\": 1800,\n      \"Integrity\": 64,\n      \"Mass\": 8,\n      \"Armour Piercing\": 54,\n      \"Power Draw\": 0.97,\n      \"Maximum Range\": 4000,\n      \"Reload Time\": 5,\n      \"Shot Speed\": 1600,\n      \"Thermal Load\": 0.34\n    }\n  },\n  {\n    \"breachdmg\": 2,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 3,\n    \"cost\": 3794601,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"edID\": 128049464,\n    \"eddbID\": 1658,\n    \"fireint\": 0.19,\n    \"grp\": \"mc\",\n    \"id\": \"yH\",\n    \"mount\": \"T\",\n    \"rating\": \"E\",\n    \"symbol\": \"Hpt_MultiCannon_Turret_Large\",\n    \"properties\": {\n      \"Ammo Maximum\": 2100,\n      \"Ammo Clip Size\": 90,\n      \"Damage\": 2.2,\n      \"Distributer Draw\": 0.16,\n      \"Damage Falloff\": 2000,\n      \"Integrity\": 64,\n      \"Mass\": 8,\n      \"Armour Piercing\": 54,\n      \"Power Draw\": 0.86,\n      \"Maximum Range\": 4000,\n      \"Reload Time\": 4,\n      \"Shot Speed\": 1600,\n      \"Thermal Load\": 0.2\n    }\n  },\n  {\n    \"breachdmg\": 4.2,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 4,\n    \"cost\": 1177600,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"edID\": 128049458,\n    \"eddbID\": 1542,\n    \"fireint\": 0.33,\n    \"grp\": \"mc\",\n    \"id\": \"7n\",\n    \"mount\": \"F\",\n    \"rating\": \"A\",\n    \"roundspershot\": 2,\n    \"symbol\": \"Hpt_MultiCannon_Fixed_Huge\",\n    \"properties\": {\n      \"Ammo Maximum\": 2100,\n      \"Ammo Clip Size\": 100,\n      \"Damage\": 4.625,\n      \"Distributer Draw\": 0.24,\n      \"Damage Falloff\": 1800,\n      \"Integrity\": 80,\n      \"Mass\": 16,\n      \"Armour Piercing\": 68,\n      \"Power Draw\": 0.73,\n      \"Maximum Range\": 4000,\n      \"Reload Time\": 4,\n      \"Shot Speed\": 1600,\n      \"Thermal Load\": 0.39\n    }\n  },\n  {\n    \"breachdmg\": 3.1,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 4,\n    \"cost\": 6377600,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"edID\": 128681996,\n    \"eddbID\": 1546,\n    \"fireint\": 0.297,\n    \"grp\": \"mc\",\n    \"id\": \"7o\",\n    \"mount\": \"G\",\n    \"rating\": \"A\",\n    \"roundspershot\": 2,\n    \"symbol\": \"Hpt_MultiCannon_Gimbal_Huge\",\n    \"properties\": {\n      \"Ammo Maximum\": 2100,\n      \"Ammo Clip Size\": 90,\n      \"Damage\": 3.46,\n      \"Distributer Draw\": 0.37,\n      \"Damage Falloff\": 1800,\n      \"Integrity\": 80,\n      \"Mass\": 16,\n      \"Armour Piercing\": 68,\n      \"Power Draw\": 1.22,\n      \"Maximum Range\": 4000,\n      \"Reload Time\": 5,\n      \"Shot Speed\": 1600,\n      \"Thermal Load\": 0.51\n    }\n  },\n  {\n    \"breachdmg\": 44.2,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 2,\n    \"cost\": 834200,\n    \"damagedist\": {\n      \"A\": 0.6,\n      \"K\": 0.2,\n      \"T\": 0.2\n    },\n    \"edID\": 128049465,\n    \"eddbID\": 873,\n    \"fireint\": 3.03,\n    \"grp\": \"pa\",\n    \"id\": \"1g\",\n    \"mount\": \"F\",\n    \"rating\": \"C\",\n    \"symbol\": \"Hpt_PlasmaAccelerator_Fixed_Medium\",\n    \"properties\": {\n      \"Ammo Maximum\": 100,\n      \"Ammo Clip Size\": 5,\n      \"Damage\": 54.3,\n      \"Distributer Draw\": 8.65,\n      \"Damage Falloff\": 2000,\n      \"Integrity\": 51,\n      \"Mass\": 4,\n      \"Armour Piercing\": 100,\n      \"Power Draw\": 1.43,\n      \"Maximum Range\": 3500,\n      \"Reload Time\": 6,\n      \"Shot Speed\": 875,\n      \"Thermal Load\": 15.6\n    }\n  },\n  {\n    \"breachdmg\": 68,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 3,\n    \"cost\": 3051200,\n    \"damagedist\": {\n      \"A\": 0.6,\n      \"K\": 0.2,\n      \"T\": 0.2\n    },\n    \"edID\": 128049466,\n    \"eddbID\": 874,\n    \"fireint\": 3.45,\n    \"grp\": \"pa\",\n    \"id\": \"2b\",\n    \"mount\": \"F\",\n    \"rating\": \"B\",\n    \"symbol\": \"Hpt_PlasmaAccelerator_Fixed_Large\",\n    \"properties\": {\n      \"Ammo Maximum\": 100,\n      \"Ammo Clip Size\": 5,\n      \"Damage\": 83.4,\n      \"Distributer Draw\": 13.6,\n      \"Damage Falloff\": 2000,\n      \"Integrity\": 64,\n      \"Mass\": 8,\n      \"Armour Piercing\": 100,\n      \"Power Draw\": 1.97,\n      \"Maximum Range\": 3500,\n      \"Reload Time\": 6,\n      \"Shot Speed\": 875,\n      \"Thermal Load\": 21.75\n    }\n  },\n  {\n    \"breachdmg\": 30.9,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 3,\n    \"cost\": 4119120,\n    \"damagedist\": {\n      \"A\": 0.6,\n      \"K\": 0.2,\n      \"T\": 0.2\n    },\n    \"edID\": 128671339,\n    \"eddbID\": 1482,\n    \"fireint\": 1.25,\n    \"grp\": \"pa\",\n    \"id\": \"Ap\",\n    \"mount\": \"F\",\n    \"name\": \"Advanced Plasma Accelerator\",\n    \"pp\": \"Denton Patreus\",\n    \"rating\": \"B\",\n    \"symbol\": \"Hpt_PlasmaAccelerator_Fixed_Large_Advanced\",\n    \"properties\": {\n      \"Ammo Maximum\": 300,\n      \"Ammo Clip Size\": 20,\n      \"Damage\": 34.5,\n      \"Distributer Draw\": 5.5,\n      \"Damage Falloff\": 2000,\n      \"Integrity\": 64,\n      \"Mass\": 8,\n      \"Armour Piercing\": 100,\n      \"Power Draw\": 1.97,\n      \"Maximum Range\": 3500,\n      \"Reload Time\": 6,\n      \"Shot Speed\": 875,\n      \"Thermal Load\": 11\n    }\n  },\n  {\n    \"breachdmg\": 102,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 4,\n    \"cost\": 13793600,\n    \"damagedist\": {\n      \"A\": 0.6,\n      \"K\": 0.2,\n      \"T\": 0.2\n    },\n    \"edID\": 128049467,\n    \"eddbID\": 875,\n    \"fireint\": 4,\n    \"grp\": \"pa\",\n    \"id\": \"2c\",\n    \"mount\": \"F\",\n    \"rating\": \"A\",\n    \"symbol\": \"Hpt_PlasmaAccelerator_Fixed_Huge\",\n    \"properties\": {\n      \"Ammo Maximum\": 100,\n      \"Ammo Clip Size\": 5,\n      \"Damage\": 125.2,\n      \"Distributer Draw\": 21.04,\n      \"Damage Falloff\": 2000,\n      \"Integrity\": 80,\n      \"Mass\": 16,\n      \"Armour Piercing\": 100,\n      \"Power Draw\": 2.63,\n      \"Maximum Range\": 3500,\n      \"Reload Time\": 6,\n      \"Shot Speed\": 875,\n      \"Thermal Load\": 29.5\n    }\n  },\n  {\n    \"class\": 0,\n    \"cost\": 18550,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"edID\": 128049522,\n    \"eddbID\": 887,\n    \"fireint\": 0.2,\n    \"grp\": \"po\",\n    \"id\": \"03\",\n    \"name\": \"Point Defence\",\n    \"passive\": 1,\n    \"rating\": \"I\",\n    \"symbol\": \"Hpt_PlasmaPointDefence_Turret_Tiny\",\n    \"properties\": {\n      \"Ammo Maximum\": 10000,\n      \"Burst\": 4,\n      \"Burst Rate Of Fire\": 15,\n      \"Ammo Clip Size\": 12,\n      \"Damage\": 0.2,\n      \"Integrity\": 30,\n      \"Jitter\": 0.75,\n      \"Mass\": 0.5,\n      \"Power Draw\": 0.2,\n      \"Maximum Range\": 2500,\n      \"Reload Time\": 0.4,\n      \"Shot Speed\": 1000,\n      \"Thermal Load\": 0.1\n    }\n  },\n  {\n    \"breachdmg\": 1.7,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 1,\n    \"cost\": 2200,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128049381,\n    \"eddbID\": 823,\n    \"fireint\": 0.26,\n    \"grp\": \"pl\",\n    \"id\": \"17\",\n    \"mount\": \"F\",\n    \"rating\": \"F\",\n    \"symbol\": \"Hpt_PulseLaser_Fixed_Small\",\n    \"properties\": {\n      \"Damage\": 2.05,\n      \"Distributer Draw\": 0.3,\n      \"Damage Falloff\": 500,\n      \"Integrity\": 40,\n      \"Mass\": 2,\n      \"Armour Piercing\": 20,\n      \"Power Draw\": 0.39,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 0.33\n    }\n  },\n  {\n    \"breachdmg\": 1.3,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 1,\n    \"cost\": 6600,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128049385,\n    \"eddbID\": 826,\n    \"fireint\": 0.25,\n    \"grp\": \"pl\",\n    \"id\": \"18\",\n    \"mount\": \"G\",\n    \"rating\": \"G\",\n    \"symbol\": \"Hpt_PulseLaser_Gimbal_Small\",\n    \"properties\": {\n      \"Damage\": 1.56,\n      \"Distributer Draw\": 0.31,\n      \"Damage Falloff\": 500,\n      \"Integrity\": 40,\n      \"Mass\": 2,\n      \"Armour Piercing\": 20,\n      \"Power Draw\": 0.39,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 0.31\n    }\n  },\n  {\n    \"breachdmg\": 1,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 1,\n    \"cost\": 26000,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128049388,\n    \"eddbID\": 829,\n    \"fireint\": 0.3,\n    \"grp\": \"pl\",\n    \"id\": \"19\",\n    \"mount\": \"T\",\n    \"rating\": \"G\",\n    \"symbol\": \"Hpt_PulseLaser_Turret_Small\",\n    \"properties\": {\n      \"Damage\": 1.19,\n      \"Distributer Draw\": 0.19,\n      \"Damage Falloff\": 500,\n      \"Integrity\": 40,\n      \"Mass\": 2,\n      \"Armour Piercing\": 20,\n      \"Power Draw\": 0.38,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 0.19\n    }\n  },\n  {\n    \"breachdmg\": 3,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 2,\n    \"cost\": 17600,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128049382,\n    \"eddbID\": 824,\n    \"fireint\": 0.29,\n    \"grp\": \"pl\",\n    \"id\": \"1a\",\n    \"mount\": \"F\",\n    \"rating\": \"E\",\n    \"symbol\": \"Hpt_PulseLaser_Fixed_Medium\",\n    \"properties\": {\n      \"Damage\": 3.5,\n      \"Distributer Draw\": 0.5,\n      \"Damage Falloff\": 500,\n      \"Integrity\": 51,\n      \"Mass\": 4,\n      \"Armour Piercing\": 35,\n      \"Power Draw\": 0.6,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 0.56\n    }\n  },\n  {\n    \"breachdmg\": 2.3,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 2,\n    \"cost\": 35400,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128049386,\n    \"eddbID\": 827,\n    \"fireint\": 0.28,\n    \"grp\": \"pl\",\n    \"id\": \"1b\",\n    \"mount\": \"G\",\n    \"rating\": \"F\",\n    \"symbol\": \"Hpt_PulseLaser_Gimbal_Medium\",\n    \"properties\": {\n      \"Damage\": 2.68,\n      \"Distributer Draw\": 0.54,\n      \"Damage Falloff\": 500,\n      \"Integrity\": 51,\n      \"Mass\": 4,\n      \"Armour Piercing\": 35,\n      \"Power Draw\": 0.6,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 0.54\n    }\n  },\n  {\n    \"breachdmg\": 1.7,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 2,\n    \"cost\": 132800,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128049389,\n    \"eddbID\": 830,\n    \"fireint\": 0.33,\n    \"grp\": \"pl\",\n    \"id\": \"1c\",\n    \"mount\": \"T\",\n    \"rating\": \"F\",\n    \"symbol\": \"Hpt_PulseLaser_Turret_Medium\",\n    \"properties\": {\n      \"Damage\": 2.05,\n      \"Distributer Draw\": 0.33,\n      \"Damage Falloff\": 500,\n      \"Integrity\": 51,\n      \"Mass\": 4,\n      \"Armour Piercing\": 35,\n      \"Power Draw\": 0.58,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 0.33\n    }\n  },\n  {\n    \"breachdmg\": 2.4,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 2,\n    \"cost\": 26400,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128671342,\n    \"eddbID\": 1483,\n    \"fireint\": 0.6,\n    \"grp\": \"pl\",\n    \"id\": \"PL\",\n    \"mount\": \"F\",\n    \"name\": \"Disruptor\",\n    \"pp\": \"Felicia Winters\",\n    \"rating\": \"E\",\n    \"symbol\": \"Hpt_PulseLaser_Fixed_Medium_Disruptor\",\n    \"properties\": {\n      \"Damage\": 2.8,\n      \"Distributer Draw\": 0.9,\n      \"Damage Falloff\": 500,\n      \"Integrity\": 51,\n      \"Mass\": 4,\n      \"Armour Piercing\": 35,\n      \"Power Draw\": 0.7,\n      \"Thermal Load\": 1\n    }\n  },\n  {\n    \"breachdmg\": 5.1,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 3,\n    \"cost\": 70400,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128049383,\n    \"eddbID\": 825,\n    \"fireint\": 0.33,\n    \"grp\": \"pl\",\n    \"id\": \"1d\",\n    \"mount\": \"F\",\n    \"rating\": \"D\",\n    \"symbol\": \"Hpt_PulseLaser_Fixed_Large\",\n    \"properties\": {\n      \"Damage\": 5.98,\n      \"Distributer Draw\": 0.86,\n      \"Damage Falloff\": 500,\n      \"Integrity\": 64,\n      \"Mass\": 8,\n      \"Armour Piercing\": 52,\n      \"Power Draw\": 0.9,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 0.96\n    }\n  },\n  {\n    \"breachdmg\": 3.9,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 3,\n    \"cost\": 140600,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128049387,\n    \"eddbID\": 828,\n    \"fireint\": 0.31,\n    \"grp\": \"pl\",\n    \"id\": \"1e\",\n    \"mount\": \"G\",\n    \"rating\": \"E\",\n    \"symbol\": \"Hpt_PulseLaser_Gimbal_Large\",\n    \"properties\": {\n      \"Damage\": 4.58,\n      \"Distributer Draw\": 0.92,\n      \"Damage Falloff\": 500,\n      \"Integrity\": 64,\n      \"Mass\": 8,\n      \"Armour Piercing\": 52,\n      \"Power Draw\": 0.92,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 0.92\n    }\n  },\n  {\n    \"breachdmg\": 3,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 3,\n    \"cost\": 400400,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128049390,\n    \"eddbID\": 831,\n    \"fireint\": 0.37,\n    \"grp\": \"pl\",\n    \"id\": \"1f\",\n    \"mount\": \"T\",\n    \"rating\": \"F\",\n    \"symbol\": \"Hpt_PulseLaser_Turret_Large\",\n    \"properties\": {\n      \"Damage\": 3.5,\n      \"Distributer Draw\": 0.56,\n      \"Damage Falloff\": 500,\n      \"Integrity\": 64,\n      \"Mass\": 8,\n      \"Armour Piercing\": 52,\n      \"Power Draw\": 0.89,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 0.56\n    }\n  },\n  {\n    \"breachdmg\": 8.7,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 4,\n    \"cost\": 177600,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128049384,\n    \"eddbID\": 1539,\n    \"fireint\": 0.38,\n    \"grp\": \"pl\",\n    \"id\": \"7q\",\n    \"mount\": \"F\",\n    \"rating\": \"A\",\n    \"symbol\": \"Hpt_PulseLaser_Fixed_Huge\",\n    \"properties\": {\n      \"Damage\": 10.24,\n      \"Distributer Draw\": 1.48,\n      \"Damage Falloff\": 500,\n      \"Integrity\": 80,\n      \"Mass\": 16,\n      \"Armour Piercing\": 65,\n      \"Power Draw\": 1.33,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 1.64\n    }\n  },\n  {\n    \"breachdmg\": 6.6,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 4,\n    \"cost\": 877600,\n    \"damagedist\": {\n      \"T\": 1\n    },\n    \"edID\": 128681995,\n    \"eddbID\": 1545,\n    \"fireint\": 0.36,\n    \"grp\": \"pl\",\n    \"id\": \"7r\",\n    \"mount\": \"G\",\n    \"rating\": \"A\",\n    \"symbol\": \"Hpt_PulseLaser_Gimbal_Huge\",\n    \"properties\": {\n      \"Damage\": 7.82,\n      \"Distributer Draw\": 1.56,\n      \"Damage Falloff\": 500,\n      \"Integrity\": 80,\n      \"Mass\": 16,\n      \"Armour Piercing\": 65,\n      \"Power Draw\": 1.37,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 1.56\n    }\n  },\n  {\n    \"rating\": \"A\",\n    \"class\": 0,\n    \"eddbID\": 0,\n    \"cost\": 1097096,\n    \"id\": \"2x\",\n    \"maxangle\": 15,\n    \"scanrange\": 24000,\n    \"grp\": \"pwa\",\n    \"edID\": 128915722,\n    \"symbol\": \"Hpt_MRAScanner_Size0_Class5\",\n    \"properties\": {\n      \"Mass\": 1.3,\n      \"Power Draw\": 3.2,\n      \"Integrity\": 48,\n      \"Scan Time\": 3,\n      \"Boot time\": 3\n    }\n  },\n  {\n    \"rating\": \"B\",\n    \"class\": 0,\n    \"eddbID\": 0,\n    \"cost\": 406332,\n    \"id\": \"2y\",\n    \"maxangle\": 15,\n    \"scanrange\": 21000,\n    \"grp\": \"pwa\",\n    \"edID\": 128915721,\n    \"symbol\": \"hpt_mrascanner_size0_class4\",\n    \"properties\": {\n      \"Mass\": 1.3,\n      \"Power Draw\": 1.6,\n      \"Integrity\": 56,\n      \"Boot time\": 3,\n      \"Scan Time\": 3.08\n    }\n  },\n  {\n    \"rating\": \"C\",\n    \"class\": 0,\n    \"eddbID\": 0,\n    \"cost\": 121901,\n    \"id\": \"2z\",\n    \"maxangle\": 15,\n    \"scanrange\": 18000,\n    \"grp\": \"pwa\",\n    \"edID\": 128915720,\n    \"symbol\": \"hpt_mrascanner_size0_class3\",\n    \"properties\": {\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.8,\n      \"Integrity\": 40,\n      \"Boot time\": 3,\n      \"Scan Time\": 3\n    }\n  },\n  {\n    \"rating\": \"D\",\n    \"class\": 0,\n    \"eddbID\": 0,\n    \"cost\": 40634,\n    \"id\": \"3J\",\n    \"maxangle\": 15,\n    \"scanrange\": 15000,\n    \"grp\": \"pwa\",\n    \"edID\": 128915719,\n    \"symbol\": \"hpt_mrascanner_size0_class2\",\n    \"properties\": {\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.4,\n      \"Integrity\": 24,\n      \"Boot time\": 3,\n      \"Scan Time\": 3\n    }\n  },\n  {\n    \"rating\": \"E\",\n    \"class\": 0,\n    \"eddbID\": 0,\n    \"cost\": 13545,\n    \"id\": \"3K\",\n    \"maxangle\": 15,\n    \"scanrange\": 12000,\n    \"grp\": \"pwa\",\n    \"edID\": 128915718,\n    \"symbol\": \"hpt_mrascanner_size0_class1\",\n    \"properties\": {\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.2,\n      \"Integrity\": 24,\n      \"Boot time\": 3,\n      \"Scan Time\": 3\n    }\n  },\n  {\n    \"breachdmg\": 22.2,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 1,\n    \"cost\": 51600,\n    \"damagedist\": {\n      \"T\": 0.6666666666666666,\n      \"K\": 0.3333333333333333\n    },\n    \"edID\": 128049488,\n    \"eddbID\": 876,\n    \"fireint\": 0.63,\n    \"grp\": \"rg\",\n    \"id\": \"29\",\n    \"mount\": \"F\",\n    \"rating\": \"D\",\n    \"symbol\": \"Hpt_Railgun_Fixed_Small\",\n    \"properties\": {\n      \"Ammo Maximum\": 80,\n      \"Ammo Clip Size\": 1,\n      \"Damage\": 23.25,\n      \"Distributer Draw\": 2.69,\n      \"Damage Falloff\": 1000,\n      \"Integrity\": 40,\n      \"Mass\": 2,\n      \"Armour Piercing\": 100,\n      \"Power Draw\": 1.15,\n      \"Maximum Range\": 3000,\n      \"Reload Time\": 1,\n      \"Thermal Load\": 12\n    }\n  },\n  {\n    \"breachdmg\": 39.5,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 2,\n    \"cost\": 412800,\n    \"damagedist\": {\n      \"T\": 0.6666666666666666,\n      \"K\": 0.3333333333333333\n    },\n    \"edID\": 128049489,\n    \"eddbID\": 877,\n    \"fireint\": 0.83,\n    \"grp\": \"rg\",\n    \"id\": \"2a\",\n    \"mount\": \"F\",\n    \"rating\": \"B\",\n    \"symbol\": \"Hpt_Railgun_Fixed_Medium\",\n    \"properties\": {\n      \"Ammo Maximum\": 80,\n      \"Ammo Clip Size\": 1,\n      \"Damage\": 41.5,\n      \"Distributer Draw\": 5.11,\n      \"Damage Falloff\": 1000,\n      \"Integrity\": 51,\n      \"Mass\": 4,\n      \"Armour Piercing\": 100,\n      \"Power Draw\": 1.63,\n      \"Maximum Range\": 3000,\n      \"Reload Time\": 1,\n      \"Thermal Load\": 20\n    }\n  },\n  {\n    \"breachdmg\": 14.3,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"class\": 2,\n    \"cost\": 619200,\n    \"damagedist\": {\n      \"T\": 0.6666666666666666,\n      \"K\": 0.3333333333333333\n    },\n    \"edID\": 128671341,\n    \"eddbID\": 1484,\n    \"fireint\": 0.4,\n    \"grp\": \"rg\",\n    \"id\": \"ih\",\n    \"mount\": \"F\",\n    \"name\": \"Imperial Hammer\",\n    \"pp\": \"Arissa Lavigny-Duval\",\n    \"rating\": \"B\",\n    \"symbol\": \"Hpt_Railgun_Fixed_Medium_Burst\",\n    \"properties\": {\n      \"Ammo Maximum\": 240,\n      \"Burst\": 3,\n      \"Burst Rate Of Fire\": 6,\n      \"Ammo Clip Size\": 3,\n      \"Damage\": 15,\n      \"Distributer Draw\": 2,\n      \"Damage Falloff\": 1000,\n      \"Integrity\": 51,\n      \"Mass\": 4,\n      \"Armour Piercing\": 100,\n      \"Power Draw\": 1.63,\n      \"Maximum Range\": 3000,\n      \"Reload Time\": 1,\n      \"Thermal Load\": 11\n    }\n  },\n  {\n    \"breachdmg\": 1.7,\n    \"breachmax\": 1,\n    \"breachmin\": 1,\n    \"class\": 2,\n    \"cost\": 261800,\n    \"damagedist\": {\n      \"E\": 1\n    },\n    \"edID\": 128785626,\n    \"eddbID\": 1620,\n    \"fireint\": 2,\n    \"grp\": \"rfl\",\n    \"id\": \"x8\",\n    \"mount\": \"F\",\n    \"rating\": \"B\",\n    \"symbol\": \"Hpt_FlakMortar_Fixed_Medium\",\n    \"properties\": {\n      \"Ammo Maximum\": 32,\n      \"Ammo Clip Size\": 1,\n      \"Damage\": 34,\n      \"Distributer Draw\": 0.24,\n      \"Damage Falloff\": 100000,\n      \"Integrity\": 51,\n      \"Mass\": 4,\n      \"Armour Piercing\": 60,\n      \"Power Draw\": 1.2,\n      \"Reload Time\": 2,\n      \"Shot Speed\": 550,\n      \"Thermal Load\": 3.6\n    }\n  },\n  {\n    \"breachdmg\": 1.7,\n    \"breachmax\": 1,\n    \"breachmin\": 1,\n    \"class\": 2,\n    \"cost\": 1259200,\n    \"damagedist\": {\n      \"E\": 1\n    },\n    \"edID\": 128793058,\n    \"eddbID\": 1621,\n    \"fireint\": 2,\n    \"grp\": \"rfl\",\n    \"id\": \"x9\",\n    \"mount\": \"T\",\n    \"rating\": \"B\",\n    \"symbol\": \"Hpt_FlakMortar_Turret_Medium\",\n    \"properties\": {\n      \"Ammo Maximum\": 32,\n      \"Ammo Clip Size\": 1,\n      \"Damage\": 34,\n      \"Distributer Draw\": 0.24,\n      \"Damage Falloff\": 100000,\n      \"Integrity\": 51,\n      \"Mass\": 4,\n      \"Armour Piercing\": 60,\n      \"Power Draw\": 1.2,\n      \"Reload Time\": 2,\n      \"Shot Speed\": 550,\n      \"Thermal Load\": 3.6\n    }\n  },\n  {\n    \"rating\": \"B\",\n    \"class\": 2,\n    \"grp\": \"tbrfl\",\n    \"id\": \"xy\",\n    \"eddbID\": 0,\n    \"edID\": 128833996,\n    \"mount\": \"F\",\n    \"cost\": 353761,\n    \"fireint\": 2,\n    \"breachdmg\": 6.5,\n    \"breachmin\": 1,\n    \"breachmax\": 1,\n    \"symbol\": \"Hpt_FlechetteLauncher_Fixed_Medium\",\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"properties\": {\n      \"Mass\": 4,\n      \"Integrity\": 51,\n      \"Power Draw\": 1.2,\n      \"Damage\": 13,\n      \"Distributer Draw\": 0.24,\n      \"Thermal Load\": 3.6,\n      \"Armour Piercing\": 80,\n      \"Shot Speed\": 550,\n      \"Ammo Clip Size\": 1,\n      \"Ammo Maximum\": 72,\n      \"Reload Time\": 2\n    }\n  },\n  {\n    \"rating\": \"B\",\n    \"class\": 2,\n    \"grp\": \"tbrfl\",\n    \"id\": \"yF\",\n    \"eddbID\": 0,\n    \"edID\": 128833997,\n    \"mount\": \"T\",\n    \"cost\": 1279200,\n    \"fireint\": 2,\n    \"breachdmg\": 6.5,\n    \"breachmin\": 1,\n    \"breachmax\": 1,\n    \"symbol\": \"Hpt_FlechetteLauncher_Turret_Medium\",\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"properties\": {\n      \"Mass\": 4,\n      \"Integrity\": 51,\n      \"Power Draw\": 1.2,\n      \"Damage\": 13,\n      \"Distributer Draw\": 0.24,\n      \"Thermal Load\": 3.6,\n      \"Armour Piercing\": 70,\n      \"Shot Speed\": 550,\n      \"Ammo Clip Size\": 1,\n      \"Ammo Maximum\": 72,\n      \"Reload Time\": 2\n    }\n  },\n  {\n    \"breachdmg\": 3,\n    \"breachmax\": 0,\n    \"breachmin\": 0,\n    \"class\": 2,\n    \"cost\": 445570,\n    \"chargetime\": 2,\n    \"damagedist\": {\n      \"E\": 1\n    },\n    \"edID\": 128915461,\n    \"eddbID\": 823,\n    \"fireint\": 1,\n    \"grp\": \"scl\",\n    \"id\": \"3L\",\n    \"mount\": \"T\",\n    \"rating\": \"B\",\n    \"symbol\": \"Hpt_Mining_SeismChrgWarhd_Turret_Medium\",\n    \"properties\": {\n      \"Shot Speed\": 350,\n      \"Damage\": 15,\n      \"Distributer Draw\": 0.24,\n      \"Damage Falloff\": 500,\n      \"Ammo Maximum\": 72,\n      \"Ammo Clip Size\": 1,\n      \"Integrity\": 51,\n      \"Mass\": 4,\n      \"Armour Piercing\": 35,\n      \"Power Draw\": 1.2,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 3.6\n    }\n  },\n  {\n    \"breachdmg\": 3,\n    \"breachmax\": 0,\n    \"breachmin\": 0,\n    \"class\": 2,\n    \"cost\": 170123,\n    \"chargetime\": 2,\n    \"damagedist\": {\n      \"E\": 1\n    },\n    \"edID\": 128049381,\n    \"eddbID\": 823,\n    \"fireint\": 1,\n    \"grp\": \"scl\",\n    \"id\": \"3M\",\n    \"mount\": \"F\",\n    \"rating\": \"B\",\n    \"symbol\": \"Hpt_Mining_SeismChrgWarhd_Fixed_Medium\",\n    \"properties\": {\n      \"Shot Speed\": 350,\n      \"Damage\": 15,\n      \"Distributer Draw\": 0.24,\n      \"Damage Falloff\": 500,\n      \"Ammo Maximum\": 72,\n      \"Ammo Clip Size\": 1,\n      \"Integrity\": 51,\n      \"Mass\": 4,\n      \"Armour Piercing\": 35,\n      \"Power Draw\": 1.2,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 3.6\n    }\n  },\n  {\n    \"class\": 0,\n    \"cost\": 10000,\n    \"edID\": 128668532,\n    \"eddbID\": 1368,\n    \"grp\": \"sb\",\n    \"id\": \"08\",\n    \"passive\": 1,\n    \"rating\": \"E\",\n    \"symbol\": \"Hpt_ShieldBooster_Size0_Class1\",\n    \"properties\": {\n      \"Integrity\": 25,\n      \"Mass\": 0.5,\n      \"Power Draw\": 0.2,\n      \"Shield Boost\": 0.04,\n      \"Explosive Resistance\": 0,\n      \"Kinetic Resistance\": 0,\n      \"Thermal Resistance\": 0\n    }\n  },\n  {\n    \"class\": 0,\n    \"cost\": 23000,\n    \"edID\": 128668533,\n    \"eddbID\": 1369,\n    \"grp\": \"sb\",\n    \"id\": \"07\",\n    \"passive\": 1,\n    \"rating\": \"D\",\n    \"symbol\": \"Hpt_ShieldBooster_Size0_Class2\",\n    \"properties\": {\n      \"Integrity\": 35,\n      \"Mass\": 1,\n      \"Power Draw\": 0.5,\n      \"Shield Boost\": 0.08,\n      \"Explosive Resistance\": 0,\n      \"Kinetic Resistance\": 0,\n      \"Thermal Resistance\": 0\n    }\n  },\n  {\n    \"class\": 0,\n    \"cost\": 53000,\n    \"edID\": 128668534,\n    \"eddbID\": 1370,\n    \"grp\": \"sb\",\n    \"id\": \"06\",\n    \"passive\": 1,\n    \"rating\": \"C\",\n    \"symbol\": \"Hpt_ShieldBooster_Size0_Class3\",\n    \"properties\": {\n      \"Integrity\": 40,\n      \"Mass\": 2,\n      \"Power Draw\": 0.7,\n      \"Shield Boost\": 0.12,\n      \"Explosive Resistance\": 0,\n      \"Kinetic Resistance\": 0,\n      \"Thermal Resistance\": 0\n    }\n  },\n  {\n    \"class\": 0,\n    \"cost\": 122000,\n    \"edID\": 128668535,\n    \"eddbID\": 1371,\n    \"grp\": \"sb\",\n    \"id\": \"05\",\n    \"passive\": 1,\n    \"rating\": \"B\",\n    \"symbol\": \"Hpt_ShieldBooster_Size0_Class4\",\n    \"properties\": {\n      \"Integrity\": 45,\n      \"Mass\": 3,\n      \"Power Draw\": 1,\n      \"Shield Boost\": 0.16,\n      \"Explosive Resistance\": 0,\n      \"Kinetic Resistance\": 0,\n      \"Thermal Resistance\": 0\n    }\n  },\n  {\n    \"class\": 0,\n    \"cost\": 281000,\n    \"edID\": 128668536,\n    \"eddbID\": 1372,\n    \"grp\": \"sb\",\n    \"id\": \"04\",\n    \"passive\": 1,\n    \"rating\": \"A\",\n    \"symbol\": \"Hpt_ShieldBooster_Size0_Class5\",\n    \"properties\": {\n      \"Integrity\": 48,\n      \"Mass\": 3.5,\n      \"Power Draw\": 1.2,\n      \"Shield Boost\": 0.2,\n      \"Explosive Resistance\": 0,\n      \"Kinetic Resistance\": 0,\n      \"Thermal Resistance\": 0\n    }\n  },\n  {\n    \"rating\": \"C\",\n    \"class\": 3,\n    \"grp\": \"tbsc\",\n    \"id\": \"yG\",\n    \"eddbID\": 0,\n    \"edID\": 128834780,\n    \"mount\": \"F\",\n    \"cost\": 1015750,\n    \"fireint\": 0.1,\n    \"roundspershot\": 0,\n    \"breachdmg\": 12.7,\n    \"breachmin\": 0.4,\n    \"breachmax\": 0.8,\n    \"symbol\": \"Hpt_PlasmaShockCannon_Fixed_Large\",\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"properties\": {\n      \"Mass\": 8,\n      \"Integrity\": 64,\n      \"Power Draw\": 0.89,\n      \"Damage\": 18.1,\n      \"Distributer Draw\": 0.92,\n      \"Thermal Load\": 2.7,\n      \"Armour Piercing\": 60,\n      \"Maximum Range\": 3000,\n      \"Shot Speed\": 1200,\n      \"Ammo Clip Size\": 16,\n      \"Ammo Maximum\": 240,\n      \"Reload Time\": 6,\n      \"Jitter\": 0,\n      \"Damage Falloff\": 2500\n    }\n  },\n  {\n    \"rating\": \"C\",\n    \"class\": 3,\n    \"grp\": \"tbsc\",\n    \"eddbID\": 0,\n    \"breachdmg\": 10.4,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"fireint\": 0.1,\n    \"mount\": \"G\",\n    \"cost\": 2249050,\n    \"id\": \"2N\",\n    \"edID\": 128834781,\n    \"symbol\": \"Hpt_PlasmaShockCannon_Gimbal_Large\",\n    \"properties\": {\n      \"Ammo Maximum\": 240,\n      \"Mass\": 8,\n      \"Ammo Clip Size\": 16,\n      \"Damage\": 14.9,\n      \"Distributer Draw\": 1.07,\n      \"Damage Falloff\": 2500,\n      \"Integrity\": 64,\n      \"Armour Piercing\": 60,\n      \"Power Draw\": 0.89,\n      \"Maximum Range\": 3000,\n      \"Shot Speed\": 1200,\n      \"Thermal Load\": 3.1,\n      \"Reload Time\": 6\n    }\n  },\n  {\n    \"rating\": \"D\",\n    \"class\": 3,\n    \"grp\": \"tbsc\",\n    \"symbol\": \"Hpt_PlasmaShockCannon_Turret_Large\",\n    \"id\": \"xz\",\n    \"eddbID\": 0,\n    \"edID\": 128834782,\n    \"mount\": \"T\",\n    \"cost\": 6050201,\n    \"fireint\": 0.1,\n    \"breachdmg\": 8.6,\n    \"breachmin\": 0.4,\n    \"breachmax\": 0.8,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"properties\": {\n      \"Mass\": 8,\n      \"Integrity\": 64,\n      \"Power Draw\": 0.64,\n      \"Damage\": 12.32,\n      \"Distributer Draw\": 0.79,\n      \"Thermal Load\": 2.2,\n      \"Armour Piercing\": 60,\n      \"Maximum Range\": 3000,\n      \"Shot Speed\": 1200,\n      \"Ammo Clip Size\": 16,\n      \"Ammo Maximum\": 240,\n      \"Reload Time\": 6,\n      \"Damage Falloff\": 2500\n    }\n  },\n  {\n    \"rating\": \"D\",\n    \"class\": 2,\n    \"grp\": \"tbsc\",\n    \"eddbID\": 0,\n    \"breachdmg\": 7.1,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"fireint\": 0.1,\n    \"mount\": \"G\",\n    \"cost\": 565200,\n    \"id\": \"2O\",\n    \"edID\": 128834003,\n    \"symbol\": \"Hpt_PlasmaShockCannon_Gimbal_Medium\",\n    \"properties\": {\n      \"Ammo Maximum\": 240,\n      \"Mass\": 4,\n      \"Ammo Clip Size\": 16,\n      \"Damage\": 10.2,\n      \"Distributer Draw\": 0.58,\n      \"Damage Falloff\": 2500,\n      \"Integrity\": 51,\n      \"Armour Piercing\": 40,\n      \"Power Draw\": 0.61,\n      \"Maximum Range\": 3000,\n      \"Reload Time\": 6,\n      \"Shot Speed\": 1200,\n      \"Thermal Load\": 2.1\n    }\n  },\n  {\n    \"grp\": \"tbsc\",\n    \"symbol\": \"Hpt_PlasmaShockCannon_Fixed_Medium\",\n    \"id\": \"y0\",\n    \"eddbID\": 0,\n    \"edID\": 128834002,\n    \"class\": 2,\n    \"rating\": \"D\",\n    \"mount\": \"F\",\n    \"cost\": 367501,\n    \"fireint\": 0.1,\n    \"breachdmg\": 9.1,\n    \"breachmin\": 0.4,\n    \"breachmax\": 0.6,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"properties\": {\n      \"Mass\": 4,\n      \"Integrity\": 51,\n      \"Power Draw\": 0.57,\n      \"Damage\": 13,\n      \"Distributer Draw\": 0.47,\n      \"Thermal Load\": 1.8,\n      \"Armour Piercing\": 40,\n      \"Maximum Range\": 3000,\n      \"Shot Speed\": 1200,\n      \"Ammo Clip Size\": 16,\n      \"Ammo Maximum\": 240,\n      \"Reload Time\": 6,\n      \"Damage Falloff\": 2500\n    }\n  },\n  {\n    \"rating\": \"E\",\n    \"class\": 2,\n    \"grp\": \"tbsc\",\n    \"id\": \"0\",\n    \"eddbID\": 0,\n    \"edID\": 128834004,\n    \"mount\": \"T\",\n    \"cost\": 1359200,\n    \"fireint\": 0.1,\n    \"roundspershot\": 0,\n    \"breachdmg\": 6.3,\n    \"breachmin\": 0.4,\n    \"breachmax\": 0.8,\n    \"symbol\": \"Hpt_PlasmaShockCannon_Turret_Medium\",\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"properties\": {\n      \"Mass\": 4,\n      \"Integrity\": 51,\n      \"Power Draw\": 0.5,\n      \"Damage\": 9,\n      \"Distributer Draw\": 0.39,\n      \"Thermal Load\": 1.2,\n      \"Armour Piercing\": 40,\n      \"Maximum Range\": 3000,\n      \"Shot Speed\": 1200,\n      \"Ammo Clip Size\": 16,\n      \"Ammo Maximum\": 240,\n      \"Reload Time\": 6,\n      \"Jitter\": 0,\n      \"Damage Falloff\": 2500\n    }\n  },\n  {\n    \"rating\": \"D\",\n    \"class\": 1,\n    \"grp\": \"tbsc\",\n    \"id\": \"yQ\",\n    \"eddbID\": 0,\n    \"edID\": 128891605,\n    \"mount\": \"F\",\n    \"cost\": 65941,\n    \"fireint\": 0.1,\n    \"breachdmg\": 6,\n    \"breachmin\": 0.4,\n    \"breachmax\": 0.6,\n    \"symbol\": \"Hpt_PlasmaShockCannon_Fixed_Small\",\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"properties\": {\n      \"Mass\": 2,\n      \"Integrity\": 40,\n      \"Power Draw\": 0.41,\n      \"Damage\": 8.6,\n      \"Distributer Draw\": 0.27,\n      \"Thermal Load\": 1.1,\n      \"Armour Piercing\": 25,\n      \"Maximum Range\": 3000,\n      \"Shot Speed\": 1200,\n      \"Ammo Clip Size\": 16,\n      \"Ammo Maximum\": 240,\n      \"Reload Time\": 6,\n      \"Damage Falloff\": 2500\n    }\n  },\n  {\n    \"rating\": \"E\",\n    \"class\": 1,\n    \"grp\": \"tbsc\",\n    \"eddbID\": 0,\n    \"breachdmg\": 4.8,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.4,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"fireint\": 0.1,\n    \"mount\": \"G\",\n    \"cost\": 137501,\n    \"id\": \"yR\",\n    \"edID\": 128891604,\n    \"symbol\": \"Hpt_PlasmaShockCannon_Gimbal_Small\",\n    \"properties\": {\n      \"Ammo Maximum\": 240,\n      \"Mass\": 2,\n      \"Ammo Clip Size\": 16,\n      \"Damage\": 6.9,\n      \"Distributer Draw\": 0.39,\n      \"Damage Falloff\": 2500,\n      \"Integrity\": 40,\n      \"Armour Piercing\": 25,\n      \"Power Draw\": 0.47,\n      \"Maximum Range\": 3000,\n      \"Shot Speed\": 1200,\n      \"Thermal Load\": 1.5,\n      \"Reload Time\": 6\n    }\n  },\n  {\n    \"rating\": \"F\",\n    \"class\": 1,\n    \"grp\": \"tbsc\",\n    \"symbol\": \"Hpt_PlasmaShockCannon_Turret_Small\",\n    \"id\": \"yS\",\n    \"eddbID\": 0,\n    \"edID\": 128891603,\n    \"mount\": \"T\",\n    \"cost\": 364000,\n    \"fireint\": 0.1,\n    \"breachdmg\": 3.1,\n    \"breachmin\": 0.4,\n    \"breachmax\": 0.8,\n    \"damagedist\": {\n      \"K\": 1\n    },\n    \"properties\": {\n      \"Mass\": 2,\n      \"Integrity\": 40,\n      \"Power Draw\": 0.54,\n      \"Damage\": 4.5,\n      \"Distributer Draw\": 0.21,\n      \"Thermal Load\": 0.7,\n      \"Armour Piercing\": 25,\n      \"Maximum Range\": 3000,\n      \"Shot Speed\": 1200,\n      \"Ammo Clip Size\": 16,\n      \"Ammo Maximum\": 240,\n      \"Reload Time\": 6,\n      \"Damage Falloff\": 2500\n    }\n  },\n  {\n    \"class\": 0,\n    \"cost\": 63000,\n    \"edID\": 128771884,\n    \"eddbID\": 1622,\n    \"grp\": \"sfn\",\n    \"id\": \"Sn\",\n    \"name\": \"Shutdown Field Neutraliser\",\n    \"passive\": 1,\n    \"activepower\": 0.25,\n    \"rating\": \"F\",\n    \"cooldown\": 10,\n    \"symbol\": \"Hpt_AntiUnknownShutdown_Tiny\",\n    \"properties\": {\n      \"Integrity\": 35,\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.2,\n      \"Duration\": 1,\n      \"Maximum Range\": 3000\n    }\n  },\n  {\n    \"breachdmg\": 0.5,\n    \"breachmax\": 0.2,\n    \"breachmin\": 0.1,\n    \"class\": 2,\n    \"cost\": 381750,\n    \"chargetime\": 2,\n    \"damagedist\": {\n      \"E\": 1\n    },\n    \"edID\": 128915457,\n    \"eddbID\": 823,\n    \"fireint\": 2,\n    \"grp\": \"sdm\",\n    \"id\": \"3N\",\n    \"mount\": \"F\",\n    \"rating\": \"B\",\n    \"symbol\": \"Hpt_Mining_SubSurfDispMisle_Fixed_Medium\",\n    \"properties\": {\n      \"Shot Speed\": 550,\n      \"Damage\": 5,\n      \"Distributer Draw\": 0.18,\n      \"Damage Falloff\": 500,\n      \"Ammo Maximum\": 96,\n      \"Ammo Clip Size\": 1,\n      \"Reload Time\": 2,\n      \"Integrity\": 51,\n      \"Mass\": 4,\n      \"Armour Piercing\": 25,\n      \"Power Draw\": 1.01,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 2.9\n    }\n  },\n  {\n    \"breachdmg\": 0.5,\n    \"breachmax\": 0.2,\n    \"breachmin\": 0.1,\n    \"class\": 2,\n    \"cost\": 381750,\n    \"chargetime\": 2,\n    \"damagedist\": {\n      \"E\": 1\n    },\n    \"edID\": 128049381,\n    \"eddbID\": 823,\n    \"fireint\": 2,\n    \"grp\": \"sdm\",\n    \"id\": \"3Q\",\n    \"mount\": \"T\",\n    \"rating\": \"B\",\n    \"symbol\": \"Hpt_Mining_Subsurfdispmisle_Turret_Medium\",\n    \"properties\": {\n      \"Shot Speed\": 550,\n      \"Damage\": 5,\n      \"Distributer Draw\": 0.24,\n      \"Damage Falloff\": 500,\n      \"Ammo Maximum\": 96,\n      \"Ammo Clip Size\": 1,\n      \"Reload Time\": 2,\n      \"Integrity\": 51,\n      \"Mass\": 4,\n      \"Armour Piercing\": 25,\n      \"Power Draw\": 0.93,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 2.9\n    }\n  },\n  {\n    \"breachdmg\": 0.5,\n    \"breachmax\": 0.2,\n    \"breachmin\": 0.1,\n    \"class\": 1,\n    \"cost\": 12601,\n    \"chargetime\": 2,\n    \"damagedist\": {\n      \"E\": 1\n    },\n    \"edID\": 128915455,\n    \"eddbID\": 823,\n    \"fireint\": 2,\n    \"grp\": \"sdm\",\n    \"id\": \"3O\",\n    \"mount\": \"F\",\n    \"rating\": \"B\",\n    \"symbol\": \"Hpt_Mining_SubSurfDispMisle_Fixed_Small\",\n    \"properties\": {\n      \"Shot Speed\": 550,\n      \"Damage\": 5,\n      \"Distributer Draw\": 0.18,\n      \"Damage Falloff\": 500,\n      \"Ammo Maximum\": 32,\n      \"Ammo Clip Size\": 1,\n      \"Reload Time\": 2,\n      \"Integrity\": 40,\n      \"Mass\": 2,\n      \"Armour Piercing\": 25,\n      \"Power Draw\": 0.42,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 2.2\n    }\n  },\n  {\n    \"breachdmg\": 0.5,\n    \"breachmax\": 0.2,\n    \"breachmin\": 0.1,\n    \"class\": 1,\n    \"cost\": 38751,\n    \"chargetime\": 2,\n    \"damagedist\": {\n      \"E\": 1\n    },\n    \"edID\": 128049381,\n    \"eddbID\": 823,\n    \"fireint\": 2,\n    \"grp\": \"sdm\",\n    \"id\": \"3P\",\n    \"mount\": \"T\",\n    \"rating\": \"B\",\n    \"symbol\": \"Hpt_Mining_Subsurfdispmisle_Turret_Small\",\n    \"properties\": {\n      \"Shot Speed\": 550,\n      \"Damage\": 5,\n      \"Distributer Draw\": 0.16,\n      \"Damage Falloff\": 500,\n      \"Ammo Maximum\": 32,\n      \"Ammo Clip Size\": 1,\n      \"Reload Time\": 2,\n      \"Integrity\": 40,\n      \"Mass\": 2,\n      \"Armour Piercing\": 25,\n      \"Power Draw\": 0.42,\n      \"Maximum Range\": 3000,\n      \"Thermal Load\": 2.2\n    }\n  },\n  {\n    \"breachdmg\": 60,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.6,\n    \"class\": 1,\n    \"cost\": 11200,\n    \"damagedist\": {\n      \"E\": 1\n    },\n    \"edID\": 128049509,\n    \"eddbID\": 882,\n    \"fireint\": 1,\n    \"grp\": \"tp\",\n    \"id\": \"2h\",\n    \"missile\": \"S\",\n    \"mount\": \"F\",\n    \"rating\": \"I\",\n    \"symbol\": \"Hpt_AdvancedTorpPylon_Fixed_Small\",\n    \"properties\": {\n      \"Ammo Maximum\": 1,\n      \"Ammo Clip Size\": 1,\n      \"Damage\": 120,\n      \"Distributer Draw\": 0,\n      \"Integrity\": 40,\n      \"Mass\": 2,\n      \"Armour Piercing\": 10000,\n      \"Power Draw\": 0.4,\n      \"Reload Time\": 5,\n      \"Shot Speed\": 250,\n      \"Thermal Load\": 45\n    }\n  },\n  {\n    \"breachdmg\": 60,\n    \"breachmax\": 0.8,\n    \"breachmin\": 0.6,\n    \"class\": 2,\n    \"cost\": 44800,\n    \"damagedist\": {\n      \"E\": 1\n    },\n    \"edID\": 128049510,\n    \"eddbID\": 883,\n    \"fireint\": 1,\n    \"grp\": \"tp\",\n    \"id\": \"2i\",\n    \"missile\": \"S\",\n    \"mount\": \"F\",\n    \"rating\": \"I\",\n    \"symbol\": \"Hpt_AdvancedTorpPylon_Fixed_Medium\",\n    \"properties\": {\n      \"Ammo Maximum\": 2,\n      \"Ammo Clip Size\": 1,\n      \"Damage\": 120,\n      \"Distributer Draw\": 0,\n      \"Integrity\": 51,\n      \"Mass\": 4,\n      \"Armour Piercing\": 10000,\n      \"Power Draw\": 0.4,\n      \"Reload Time\": 5,\n      \"Shot Speed\": 250,\n      \"Thermal Load\": 50\n    }\n  },\n  {\n    \"breachdmg\": 60,\n    \"breachmax\": 1,\n    \"breachmin\": 1,\n    \"class\": 3,\n    \"cost\": 157960,\n    \"damagedist\": {\n      \"E\": 1\n    },\n    \"edID\": 128049511,\n    \"eddbID\": 1655,\n    \"fireint\": 1,\n    \"grp\": \"tp\",\n    \"id\": \"yK\",\n    \"missile\": \"S\",\n    \"mount\": \"F\",\n    \"rating\": \"I\",\n    \"symbol\": \"Hpt_AdvancedTorpPylon_Fixed_Large\",\n    \"properties\": {\n      \"Ammo Maximum\": 4,\n      \"Ammo Clip Size\": 4,\n      \"Damage\": 120,\n      \"Distributer Draw\": 0,\n      \"Integrity\": 64,\n      \"Mass\": 8,\n      \"Armour Piercing\": 10000,\n      \"Power Draw\": 0.6,\n      \"Reload Time\": 5,\n      \"Shot Speed\": 250,\n      \"Thermal Load\": 55\n    }\n  },\n  {\n    \"class\": 0,\n    \"cost\": 365698,\n    \"edID\": 128793115,\n    \"eddbID\": 1616,\n    \"grp\": \"xs\",\n    \"id\": \"xs\",\n    \"name\": \"Xeno Scanner\",\n    \"rating\": \"E\",\n    \"symbol\": \"Hpt_XenoScanner_Basic_Tiny\",\n    \"properties\": {\n      \"Integrity\": 56,\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.2,\n      \"Maximum Range\": 500,\n      \"Boot time\": 2,\n      \"Scan Time\": 10,\n      \"Scan Angle\": 23\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 1,\n    \"cost\": 10000,\n    \"edID\": 128667598,\n    \"eddbID\": 1328,\n    \"grp\": \"am\",\n    \"id\": \"0c\",\n    \"rating\": \"E\",\n    \"repair\": 12,\n    \"symbol\": \"Int_Repairer_Size1_Class1\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 1000,\n      \"Power Draw\": 0.54\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 1,\n    \"cost\": 30000,\n    \"edID\": 128667606,\n    \"eddbID\": 1336,\n    \"grp\": \"am\",\n    \"id\": \"0b\",\n    \"rating\": \"D\",\n    \"repair\": 14.4,\n    \"symbol\": \"Int_Repairer_Size1_Class2\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 900,\n      \"Power Draw\": 0.72\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 1,\n    \"cost\": 90000,\n    \"edID\": 128667614,\n    \"eddbID\": 1344,\n    \"grp\": \"am\",\n    \"id\": \"0a\",\n    \"rating\": \"C\",\n    \"repair\": 20,\n    \"symbol\": \"Int_Repairer_Size1_Class3\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 1000,\n      \"Power Draw\": 0.9\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 1,\n    \"cost\": 270000,\n    \"edID\": 128667622,\n    \"eddbID\": 1352,\n    \"grp\": \"am\",\n    \"id\": \"09\",\n    \"rating\": \"B\",\n    \"repair\": 27.6,\n    \"symbol\": \"Int_Repairer_Size1_Class4\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 1200,\n      \"Power Draw\": 1.04\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 1,\n    \"cost\": 810000,\n    \"edID\": 128667630,\n    \"eddbID\": 1360,\n    \"grp\": \"am\",\n    \"id\": \"08\",\n    \"rating\": \"A\",\n    \"repair\": 30.8,\n    \"symbol\": \"Int_Repairer_Size1_Class5\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 1100,\n      \"Power Draw\": 1.26\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 2,\n    \"cost\": 18000,\n    \"edID\": 128667599,\n    \"eddbID\": 1329,\n    \"grp\": \"am\",\n    \"id\": \"0h\",\n    \"rating\": \"E\",\n    \"repair\": 27.6,\n    \"symbol\": \"Int_Repairer_Size2_Class1\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 2300,\n      \"Power Draw\": 0.68\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 2,\n    \"cost\": 54000,\n    \"edID\": 128667607,\n    \"eddbID\": 1337,\n    \"grp\": \"am\",\n    \"id\": \"0g\",\n    \"rating\": \"D\",\n    \"repair\": 33.6,\n    \"symbol\": \"Int_Repairer_Size2_Class2\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 2100,\n      \"Power Draw\": 0.9\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 2,\n    \"cost\": 162000,\n    \"edID\": 128667615,\n    \"eddbID\": 1345,\n    \"grp\": \"am\",\n    \"id\": \"0f\",\n    \"rating\": \"C\",\n    \"repair\": 46,\n    \"symbol\": \"Int_Repairer_Size2_Class3\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 2300,\n      \"Power Draw\": 1.13\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 2,\n    \"cost\": 486000,\n    \"edID\": 128667623,\n    \"eddbID\": 1353,\n    \"grp\": \"am\",\n    \"id\": \"0e\",\n    \"rating\": \"B\",\n    \"repair\": 64.4,\n    \"symbol\": \"Int_Repairer_Size2_Class4\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 2800,\n      \"Power Draw\": 1.29\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 2,\n    \"cost\": 1458000,\n    \"edID\": 128667631,\n    \"eddbID\": 1361,\n    \"grp\": \"am\",\n    \"id\": \"0d\",\n    \"rating\": \"A\",\n    \"repair\": 70,\n    \"symbol\": \"Int_Repairer_Size2_Class5\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 2500,\n      \"Power Draw\": 1.58\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 3,\n    \"cost\": 32400,\n    \"edID\": 128667600,\n    \"eddbID\": 1330,\n    \"grp\": \"am\",\n    \"id\": \"0m\",\n    \"rating\": \"E\",\n    \"repair\": 43.2,\n    \"symbol\": \"Int_Repairer_Size3_Class1\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 3600,\n      \"Power Draw\": 0.81\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 3,\n    \"cost\": 97200,\n    \"edID\": 128667608,\n    \"eddbID\": 1338,\n    \"grp\": \"am\",\n    \"id\": \"0l\",\n    \"rating\": \"D\",\n    \"repair\": 51.2,\n    \"symbol\": \"Int_Repairer_Size3_Class2\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 3200,\n      \"Power Draw\": 1.08\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 3,\n    \"cost\": 291600,\n    \"edID\": 128667616,\n    \"eddbID\": 1346,\n    \"grp\": \"am\",\n    \"id\": \"0k\",\n    \"rating\": \"C\",\n    \"repair\": 72,\n    \"symbol\": \"Int_Repairer_Size3_Class3\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 3600,\n      \"Power Draw\": 1.35\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 3,\n    \"cost\": 874800,\n    \"edID\": 128667624,\n    \"eddbID\": 1354,\n    \"grp\": \"am\",\n    \"id\": \"0j\",\n    \"rating\": \"B\",\n    \"repair\": 98.9,\n    \"symbol\": \"Int_Repairer_Size3_Class4\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 4300,\n      \"Power Draw\": 1.55\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 3,\n    \"cost\": 2624400,\n    \"edID\": 128667632,\n    \"eddbID\": 1362,\n    \"grp\": \"am\",\n    \"id\": \"0i\",\n    \"rating\": \"A\",\n    \"repair\": 112,\n    \"symbol\": \"Int_Repairer_Size3_Class5\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 4000,\n      \"Power Draw\": 1.89\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 4,\n    \"cost\": 58320,\n    \"edID\": 128667601,\n    \"eddbID\": 1331,\n    \"grp\": \"am\",\n    \"id\": \"0r\",\n    \"rating\": \"E\",\n    \"repair\": 58.8,\n    \"symbol\": \"Int_Repairer_Size4_Class1\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 4900,\n      \"Power Draw\": 0.99\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 4,\n    \"cost\": 174960,\n    \"edID\": 128667609,\n    \"eddbID\": 1339,\n    \"grp\": \"am\",\n    \"id\": \"0q\",\n    \"rating\": \"D\",\n    \"repair\": 70.4,\n    \"symbol\": \"Int_Repairer_Size4_Class2\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 4400,\n      \"Power Draw\": 1.32\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 4,\n    \"cost\": 524880,\n    \"edID\": 128667617,\n    \"eddbID\": 1347,\n    \"grp\": \"am\",\n    \"id\": \"0p\",\n    \"rating\": \"C\",\n    \"repair\": 98,\n    \"symbol\": \"Int_Repairer_Size4_Class3\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 4900,\n      \"Power Draw\": 1.65\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 4,\n    \"cost\": 1574640,\n    \"edID\": 128667625,\n    \"eddbID\": 1355,\n    \"grp\": \"am\",\n    \"id\": \"0o\",\n    \"rating\": \"B\",\n    \"repair\": 135.7,\n    \"symbol\": \"Int_Repairer_Size4_Class4\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 5900,\n      \"Power Draw\": 1.9\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 4,\n    \"cost\": 4723920,\n    \"edID\": 128667633,\n    \"eddbID\": 1363,\n    \"grp\": \"am\",\n    \"id\": \"0n\",\n    \"rating\": \"A\",\n    \"repair\": 151.2,\n    \"symbol\": \"Int_Repairer_Size4_Class5\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 5400,\n      \"Power Draw\": 2.31\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 5,\n    \"cost\": 104980,\n    \"edID\": 128667602,\n    \"eddbID\": 1332,\n    \"grp\": \"am\",\n    \"id\": \"10\",\n    \"rating\": \"E\",\n    \"repair\": 73.2,\n    \"symbol\": \"Int_Repairer_Size5_Class1\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 6100,\n      \"Power Draw\": 1.17\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 5,\n    \"cost\": 314930,\n    \"edID\": 128667610,\n    \"eddbID\": 1340,\n    \"grp\": \"am\",\n    \"id\": \"0v\",\n    \"rating\": \"D\",\n    \"repair\": 88,\n    \"symbol\": \"Int_Repairer_Size5_Class2\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 5500,\n      \"Power Draw\": 1.56\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 5,\n    \"cost\": 944780,\n    \"edID\": 128667618,\n    \"eddbID\": 1348,\n    \"grp\": \"am\",\n    \"id\": \"0u\",\n    \"rating\": \"C\",\n    \"repair\": 122,\n    \"symbol\": \"Int_Repairer_Size5_Class3\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 6100,\n      \"Power Draw\": 1.95\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 5,\n    \"cost\": 2834350,\n    \"edID\": 128667626,\n    \"eddbID\": 1356,\n    \"grp\": \"am\",\n    \"id\": \"0t\",\n    \"rating\": \"B\",\n    \"repair\": 167.9,\n    \"symbol\": \"Int_Repairer_Size5_Class4\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 7300,\n      \"Power Draw\": 2.24\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 5,\n    \"cost\": 8503060,\n    \"edID\": 128667634,\n    \"eddbID\": 1364,\n    \"grp\": \"am\",\n    \"id\": \"0s\",\n    \"rating\": \"A\",\n    \"repair\": 187.6,\n    \"symbol\": \"Int_Repairer_Size5_Class5\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 6700,\n      \"Power Draw\": 2.73\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 6,\n    \"cost\": 188960,\n    \"edID\": 128667603,\n    \"eddbID\": 1333,\n    \"grp\": \"am\",\n    \"id\": \"15\",\n    \"rating\": \"E\",\n    \"repair\": 88.8,\n    \"symbol\": \"Int_Repairer_Size6_Class1\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 7400,\n      \"Power Draw\": 1.4\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 6,\n    \"cost\": 566870,\n    \"edID\": 128667611,\n    \"eddbID\": 1341,\n    \"grp\": \"am\",\n    \"id\": \"14\",\n    \"rating\": \"D\",\n    \"repair\": 107.2,\n    \"symbol\": \"Int_Repairer_Size6_Class2\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 6700,\n      \"Power Draw\": 1.86\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 6,\n    \"cost\": 1700610,\n    \"edID\": 128667619,\n    \"eddbID\": 1349,\n    \"grp\": \"am\",\n    \"id\": \"13\",\n    \"rating\": \"C\",\n    \"repair\": 148,\n    \"symbol\": \"Int_Repairer_Size6_Class3\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 7400,\n      \"Power Draw\": 2.33\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 6,\n    \"cost\": 5101830,\n    \"edID\": 128667627,\n    \"eddbID\": 1357,\n    \"grp\": \"am\",\n    \"id\": \"12\",\n    \"rating\": \"B\",\n    \"repair\": 204.7,\n    \"symbol\": \"Int_Repairer_Size6_Class4\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 8900,\n      \"Power Draw\": 2.67\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 6,\n    \"cost\": 15305500,\n    \"edID\": 128667635,\n    \"eddbID\": 1365,\n    \"grp\": \"am\",\n    \"id\": \"11\",\n    \"rating\": \"A\",\n    \"repair\": 226.8,\n    \"symbol\": \"Int_Repairer_Size6_Class5\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 8100,\n      \"Power Draw\": 3.26\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 7,\n    \"cost\": 340120,\n    \"edID\": 128667604,\n    \"eddbID\": 1334,\n    \"grp\": \"am\",\n    \"id\": \"1a\",\n    \"rating\": \"E\",\n    \"repair\": 104.4,\n    \"symbol\": \"Int_Repairer_Size7_Class1\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 8700,\n      \"Power Draw\": 1.58\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 7,\n    \"cost\": 1020370,\n    \"edID\": 128667612,\n    \"eddbID\": 1342,\n    \"grp\": \"am\",\n    \"id\": \"19\",\n    \"rating\": \"D\",\n    \"repair\": 124.8,\n    \"symbol\": \"Int_Repairer_Size7_Class2\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 7800,\n      \"Power Draw\": 2.1\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 7,\n    \"cost\": 3061100,\n    \"edID\": 128667620,\n    \"eddbID\": 1350,\n    \"grp\": \"am\",\n    \"id\": \"18\",\n    \"rating\": \"C\",\n    \"repair\": 174,\n    \"symbol\": \"Int_Repairer_Size7_Class3\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 8700,\n      \"Power Draw\": 2.63\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 7,\n    \"cost\": 9183300,\n    \"edID\": 128667628,\n    \"eddbID\": 1358,\n    \"grp\": \"am\",\n    \"id\": \"17\",\n    \"rating\": \"B\",\n    \"repair\": 239.2,\n    \"symbol\": \"Int_Repairer_Size7_Class4\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 10400,\n      \"Power Draw\": 3.02\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 7,\n    \"cost\": 27549900,\n    \"edID\": 128667636,\n    \"eddbID\": 1366,\n    \"grp\": \"am\",\n    \"id\": \"16\",\n    \"rating\": \"A\",\n    \"repair\": 268.8,\n    \"symbol\": \"Int_Repairer_Size7_Class5\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 9600,\n      \"Power Draw\": 3.68\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 8,\n    \"cost\": 612220,\n    \"edID\": 128667605,\n    \"eddbID\": 1335,\n    \"grp\": \"am\",\n    \"id\": \"1f\",\n    \"rating\": \"E\",\n    \"repair\": 120,\n    \"symbol\": \"Int_Repairer_Size8_Class1\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 10000,\n      \"Power Draw\": 1.8\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 8,\n    \"cost\": 1836660,\n    \"edID\": 128667613,\n    \"eddbID\": 1343,\n    \"grp\": \"am\",\n    \"id\": \"1e\",\n    \"rating\": \"D\",\n    \"repair\": 144,\n    \"symbol\": \"Int_Repairer_Size8_Class2\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 9000,\n      \"Power Draw\": 2.4\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 8,\n    \"cost\": 5509980,\n    \"edID\": 128667621,\n    \"eddbID\": 1351,\n    \"grp\": \"am\",\n    \"id\": \"1d\",\n    \"rating\": \"C\",\n    \"repair\": 200,\n    \"symbol\": \"Int_Repairer_Size8_Class3\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 10000,\n      \"Power Draw\": 3\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 8,\n    \"cost\": 16529940,\n    \"edID\": 128667629,\n    \"eddbID\": 1359,\n    \"grp\": \"am\",\n    \"id\": \"1c\",\n    \"rating\": \"B\",\n    \"repair\": 276,\n    \"symbol\": \"Int_Repairer_Size8_Class4\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 12000,\n      \"Power Draw\": 3.45\n    }\n  },\n  {\n    \"ammocost\": 1,\n    \"class\": 8,\n    \"cost\": 49589820,\n    \"edID\": 128667637,\n    \"eddbID\": 1367,\n    \"grp\": \"am\",\n    \"id\": \"1b\",\n    \"rating\": \"A\",\n    \"repair\": 308,\n    \"symbol\": \"Int_Repairer_Size8_Class5\",\n    \"ukName\": \"AFM Unit\",\n    \"description\": \"Allows in-flight repair of internal ship modules. Can restore broken modules. Requires ammunition.\",\n    \"properties\": {\n      \"Ammo Maximum\": 11000,\n      \"Power Draw\": 4.2\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 7710,\n    \"edID\": 128671331,\n    \"eddbID\": 1530,\n    \"grp\": \"bsg\",\n    \"id\": \"B6\",\n    \"rating\": \"C\",\n    \"regen\": 1.8,\n    \"symbol\": \"Int_ShieldGenerator_Size1_Class3_Fast\",\n    \"ukName\": \"Bi-Weave Shield\",\n    \"description\": \"An alternative shield generator that sacrifices overall shield strength for a much faster recharge rate.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 2.4,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 40,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 1.3,\n      \"Maximum Mass\": 63,\n      \"Maximum Multipler\": 1.4,\n      \"Minimum Mass\": 13,\n      \"Minimum Multiplier\": 0.4,\n      \"Optimal Mass\": 25,\n      \"Optimal Multiplier\": 0.9,\n      \"Power Draw\": 1.2,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 26710,\n    \"edID\": 128671332,\n    \"eddbID\": 1531,\n    \"grp\": \"bsg\",\n    \"id\": \"B5\",\n    \"rating\": \"C\",\n    \"regen\": 1.8,\n    \"symbol\": \"Int_ShieldGenerator_Size2_Class3_Fast\",\n    \"ukName\": \"Bi-Weave Shield\",\n    \"description\": \"An alternative shield generator that sacrifices overall shield strength for a much faster recharge rate.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 2.4,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 51,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 2.5,\n      \"Maximum Mass\": 138,\n      \"Maximum Multipler\": 1.4,\n      \"Minimum Mass\": 28,\n      \"Minimum Multiplier\": 0.4,\n      \"Optimal Mass\": 55,\n      \"Optimal Multiplier\": 0.9,\n      \"Power Draw\": 1.5,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 84650,\n    \"edID\": 128671333,\n    \"eddbID\": 1532,\n    \"grp\": \"bsg\",\n    \"id\": \"B4\",\n    \"rating\": \"C\",\n    \"regen\": 1.8,\n    \"symbol\": \"Int_ShieldGenerator_Size3_Class3_Fast\",\n    \"ukName\": \"Bi-Weave Shield\",\n    \"description\": \"An alternative shield generator that sacrifices overall shield strength for a much faster recharge rate.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 2.8,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 64,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 5,\n      \"Maximum Mass\": 413,\n      \"Maximum Multipler\": 1.4,\n      \"Minimum Mass\": 83,\n      \"Minimum Multiplier\": 0.4,\n      \"Optimal Mass\": 165,\n      \"Optimal Multiplier\": 0.9,\n      \"Power Draw\": 1.8,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 268350,\n    \"edID\": 128671334,\n    \"eddbID\": 1533,\n    \"grp\": \"bsg\",\n    \"id\": \"B3\",\n    \"rating\": \"C\",\n    \"regen\": 1.8,\n    \"symbol\": \"Int_ShieldGenerator_Size4_Class3_Fast\",\n    \"ukName\": \"Bi-Weave Shield\",\n    \"description\": \"An alternative shield generator that sacrifices overall shield strength for a much faster recharge rate.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 3.8,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 80,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 10,\n      \"Maximum Mass\": 713,\n      \"Maximum Multipler\": 1.4,\n      \"Minimum Mass\": 143,\n      \"Minimum Multiplier\": 0.4,\n      \"Optimal Mass\": 285,\n      \"Optimal Multiplier\": 0.9,\n      \"Power Draw\": 2.2,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 850660,\n    \"edID\": 128671335,\n    \"eddbID\": 1534,\n    \"grp\": \"bsg\",\n    \"id\": \"B2\",\n    \"rating\": \"C\",\n    \"regen\": 2.2,\n    \"symbol\": \"Int_ShieldGenerator_Size5_Class3_Fast\",\n    \"ukName\": \"Bi-Weave Shield\",\n    \"description\": \"An alternative shield generator that sacrifices overall shield strength for a much faster recharge rate.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 5.6,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 96,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 20,\n      \"Maximum Mass\": 1013,\n      \"Maximum Multipler\": 1.4,\n      \"Minimum Mass\": 203,\n      \"Minimum Multiplier\": 0.4,\n      \"Optimal Mass\": 405,\n      \"Optimal Multiplier\": 0.9,\n      \"Power Draw\": 2.6,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 2696600,\n    \"edID\": 128671336,\n    \"eddbID\": 1535,\n    \"grp\": \"bsg\",\n    \"id\": \"B1\",\n    \"rating\": \"C\",\n    \"regen\": 3.2,\n    \"symbol\": \"Int_ShieldGenerator_Size6_Class3_Fast\",\n    \"ukName\": \"Bi-Weave Shield\",\n    \"description\": \"An alternative shield generator that sacrifices overall shield strength for a much faster recharge rate.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 8,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 113,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 40,\n      \"Maximum Mass\": 1350,\n      \"Maximum Multipler\": 1.4,\n      \"Minimum Mass\": 270,\n      \"Minimum Multiplier\": 0.4,\n      \"Optimal Mass\": 540,\n      \"Optimal Multiplier\": 0.9,\n      \"Power Draw\": 3.1,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 8548186,\n    \"edID\": 128671337,\n    \"eddbID\": 1536,\n    \"grp\": \"bsg\",\n    \"id\": \"B0\",\n    \"rating\": \"C\",\n    \"regen\": 4.4,\n    \"symbol\": \"Int_ShieldGenerator_Size7_Class3_Fast\",\n    \"ukName\": \"Bi-Weave Shield\",\n    \"description\": \"An alternative shield generator that sacrifices overall shield strength for a much faster recharge rate.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 11,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 131,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 80,\n      \"Maximum Mass\": 2650,\n      \"Maximum Multipler\": 1.4,\n      \"Minimum Mass\": 530,\n      \"Minimum Multiplier\": 0.4,\n      \"Optimal Mass\": 1060,\n      \"Optimal Multiplier\": 0.9,\n      \"Power Draw\": 3.5,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 27097750,\n    \"edID\": 128671338,\n    \"eddbID\": 1537,\n    \"grp\": \"bsg\",\n    \"id\": \"B7\",\n    \"rating\": \"C\",\n    \"regen\": 5.8,\n    \"symbol\": \"Int_ShieldGenerator_Size8_Class3_Fast\",\n    \"ukName\": \"Bi-Weave Shield\",\n    \"description\": \"An alternative shield generator that sacrifices overall shield strength for a much faster recharge rate.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 14.4,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 150,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 160,\n      \"Maximum Mass\": 4500,\n      \"Maximum Multipler\": 1.4,\n      \"Minimum Mass\": 900,\n      \"Minimum Multiplier\": 0.4,\n      \"Optimal Mass\": 1800,\n      \"Optimal Multiplier\": 0.9,\n      \"Power Draw\": 4,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 26707,\n    \"edID\": 128734692,\n    \"eddbID\": 1568,\n    \"grp\": \"pci\",\n    \"id\": \"mf\",\n    \"passengers\": 3,\n    \"rating\": \"D\",\n    \"symbol\": \"Int_PassengerCabin_Size3_Class2\",\n    \"ukName\": \"BC Passenger Cabin\",\n    \"description\": \"Business Class Passenger Cabin.\",\n    \"properties\": {\n      \"Mass\": 5\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 56870,\n    \"edID\": 128727923,\n    \"eddbID\": 1569,\n    \"grp\": \"pci\",\n    \"id\": \"mg\",\n    \"passengers\": 6,\n    \"rating\": \"D\",\n    \"symbol\": \"Int_PassengerCabin_Size4_Class2\",\n    \"ukName\": \"BC Passenger Cabin\",\n    \"description\": \"Business Class Passenger Cabin.\",\n    \"properties\": {\n      \"Mass\": 10\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 92370,\n    \"edID\": 128734694,\n    \"eddbID\": 1570,\n    \"grp\": \"pci\",\n    \"id\": \"mh\",\n    \"passengers\": 10,\n    \"rating\": \"D\",\n    \"symbol\": \"Int_PassengerCabin_Size5_Class2\",\n    \"ukName\": \"BC Passenger Cabin\",\n    \"description\": \"Business Class Passenger Cabin.\",\n    \"properties\": {\n      \"Mass\": 20\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 184240,\n    \"edID\": 128727927,\n    \"eddbID\": 1571,\n    \"grp\": \"pci\",\n    \"id\": \"mi\",\n    \"passengers\": 16,\n    \"rating\": \"D\",\n    \"symbol\": \"Int_PassengerCabin_Size6_Class2\",\n    \"ukName\": \"BC Passenger Cabin\",\n    \"description\": \"Business Class Passenger Cabin.\",\n    \"properties\": {\n      \"Mass\": 40\n    }\n  },\n  {\n    \"cargo\": 2,\n    \"class\": 1,\n    \"cost\": 1000,\n    \"edID\": 128064338,\n    \"eddbID\": 1191,\n    \"grp\": \"cr\",\n    \"id\": \"00\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_CargoRack_Size1_Class1\",\n    \"ukName\": \"Cargo Rack\",\n    \"description\": \"Standardised storage rack for use in automated cargo transfer system.\",\n    \"properties\": {\n      \"Mass\": 0\n    }\n  },\n  {\n    \"cargo\": 4,\n    \"class\": 2,\n    \"cost\": 3250,\n    \"edID\": 128064339,\n    \"eddbID\": 1192,\n    \"grp\": \"cr\",\n    \"id\": \"01\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_CargoRack_Size2_Class1\",\n    \"ukName\": \"Cargo Rack\",\n    \"description\": \"Standardised storage rack for use in automated cargo transfer system.\",\n    \"properties\": {\n      \"Mass\": 0\n    }\n  },\n  {\n    \"cargo\": 8,\n    \"class\": 3,\n    \"cost\": 10560,\n    \"edID\": 128064340,\n    \"eddbID\": 1193,\n    \"grp\": \"cr\",\n    \"id\": \"02\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_CargoRack_Size3_Class1\",\n    \"ukName\": \"Cargo Rack\",\n    \"description\": \"Standardised storage rack for use in automated cargo transfer system.\",\n    \"properties\": {\n      \"Mass\": 0\n    }\n  },\n  {\n    \"cargo\": 16,\n    \"class\": 4,\n    \"cost\": 34330,\n    \"edID\": 128064341,\n    \"eddbID\": 1194,\n    \"grp\": \"cr\",\n    \"id\": \"03\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_CargoRack_Size4_Class1\",\n    \"ukName\": \"Cargo Rack\",\n    \"description\": \"Standardised storage rack for use in automated cargo transfer system.\",\n    \"properties\": {\n      \"Mass\": 0\n    }\n  },\n  {\n    \"cargo\": 32,\n    \"class\": 5,\n    \"cost\": 111570,\n    \"edID\": 128064342,\n    \"eddbID\": 1195,\n    \"grp\": \"cr\",\n    \"id\": \"04\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_CargoRack_Size5_Class1\",\n    \"ukName\": \"Cargo Rack\",\n    \"description\": \"Standardised storage rack for use in automated cargo transfer system.\",\n    \"properties\": {\n      \"Mass\": 0\n    }\n  },\n  {\n    \"cargo\": 64,\n    \"class\": 6,\n    \"cost\": 362590,\n    \"edID\": 128064343,\n    \"eddbID\": 1196,\n    \"grp\": \"cr\",\n    \"id\": \"05\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_CargoRack_Size6_Class1\",\n    \"ukName\": \"Cargo Rack\",\n    \"description\": \"Standardised storage rack for use in automated cargo transfer system.\",\n    \"properties\": {\n      \"Mass\": 0\n    }\n  },\n  {\n    \"cargo\": 128,\n    \"class\": 7,\n    \"cost\": 1178420,\n    \"edID\": 128064344,\n    \"eddbID\": 1197,\n    \"grp\": \"cr\",\n    \"id\": \"06\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_CargoRack_Size7_Class1\",\n    \"ukName\": \"Cargo Rack\",\n    \"description\": \"Standardised storage rack for use in automated cargo transfer system.\",\n    \"properties\": {\n      \"Mass\": 0\n    }\n  },\n  {\n    \"cargo\": 256,\n    \"class\": 8,\n    \"cost\": 3829870,\n    \"edID\": 128064345,\n    \"eddbID\": 1198,\n    \"grp\": \"cr\",\n    \"id\": \"07\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_CargoRack_Size8_Class1\",\n    \"ukName\": \"Cargo Rack\",\n    \"description\": \"Standardised storage rack for use in automated cargo transfer system.\",\n    \"properties\": {\n      \"Mass\": 0\n    }\n  },\n  {\n    \"cargo\": 1,\n    \"class\": 1,\n    \"cost\": 6250,\n    \"edID\": 128681641,\n    \"eddbID\": 1553,\n    \"grp\": \"cr\",\n    \"id\": \"1w\",\n    \"name\": \"Corrosion Resistant\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_CorrosionProofCargoRack_Size1_Class1\",\n    \"ukName\": \"Corrosion Resistant Cargo Rack\",\n    \"description\": \"Specialised storage rack for use in automated cargo transfer system that can resist the effects of corrosive cargo.\",\n    \"properties\": {\n      \"Mass\": 0\n    }\n  },\n  {\n    \"cargo\": 2,\n    \"class\": 1,\n    \"cost\": 12563,\n    \"edID\": 128681992,\n    \"eddbID\": 1552,\n    \"grp\": \"cr\",\n    \"id\": \"1y\",\n    \"name\": \"Corrosion Resistant\",\n    \"rating\": \"F\",\n    \"symbol\": \"Int_CorrosionProofCargoRack_Size1_Class2\",\n    \"ukName\": \"Corrosion Resistant Cargo Rack\",\n    \"description\": \"Specialised storage rack for use in automated cargo transfer system that can resist the effects of corrosive cargo.\",\n    \"properties\": {\n      \"Mass\": 0\n    }\n  },\n  {\n    \"cargo\": 16,\n    \"class\": 4,\n    \"cost\": 94330,\n    \"edID\": 128833944,\n    \"eddbID\": 1699,\n    \"grp\": \"cr\",\n    \"id\": \"0W\",\n    \"name\": \"Corrosion Resistant\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_CorrosionProofCargoRack_Size4_Class1\",\n    \"ukName\": \"Corrosion Resistant Cargo Rack\",\n    \"description\": \"Specialised storage rack for use in automated cargo transfer system that can resist the effects of corrosive cargo.\",\n    \"properties\": {\n      \"Mass\": 0\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 600,\n    \"edID\": 128671229,\n    \"eddbID\": 1394,\n    \"grp\": \"cc\",\n    \"id\": \"C1\",\n    \"maximum\": 1,\n    \"rating\": \"E\",\n    \"time\": 300,\n    \"symbol\": \"Int_DroneControl_Collection_Size1_Class1\",\n    \"ukName\": \"Collector\",\n    \"description\": \"Controls limpets to collect canisters and asteroid chunks automatically.\",\n    \"properties\": {\n      \"Mass\": 0.5,\n      \"Power Draw\": 0.14,\n      \"Maximum Range\": 0.8\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 1200,\n    \"edID\": 128671230,\n    \"eddbID\": 1395,\n    \"grp\": \"cc\",\n    \"id\": \"C2\",\n    \"maximum\": 1,\n    \"rating\": \"D\",\n    \"time\": 600,\n    \"symbol\": \"Int_DroneControl_Collection_Size1_Class2\",\n    \"ukName\": \"Collector\",\n    \"description\": \"Controls limpets to collect canisters and asteroid chunks automatically.\",\n    \"properties\": {\n      \"Mass\": 0.5,\n      \"Power Draw\": 0.18,\n      \"Maximum Range\": 0.6\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 2400,\n    \"edID\": 128671231,\n    \"eddbID\": 1396,\n    \"grp\": \"cc\",\n    \"id\": \"C3\",\n    \"maximum\": 1,\n    \"rating\": \"C\",\n    \"time\": 510,\n    \"symbol\": \"Int_DroneControl_Collection_Size1_Class3\",\n    \"ukName\": \"Collector\",\n    \"description\": \"Controls limpets to collect canisters and asteroid chunks automatically.\",\n    \"properties\": {\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.23,\n      \"Maximum Range\": 1\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 4800,\n    \"edID\": 128671232,\n    \"eddbID\": 1397,\n    \"grp\": \"cc\",\n    \"id\": \"C4\",\n    \"maximum\": 1,\n    \"rating\": \"B\",\n    \"time\": 420,\n    \"symbol\": \"Int_DroneControl_Collection_Size1_Class4\",\n    \"ukName\": \"Collector\",\n    \"description\": \"Controls limpets to collect canisters and asteroid chunks automatically.\",\n    \"properties\": {\n      \"Mass\": 2,\n      \"Power Draw\": 0.28,\n      \"Maximum Range\": 1.4\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 9600,\n    \"edID\": 128671233,\n    \"eddbID\": 1398,\n    \"grp\": \"cc\",\n    \"id\": \"C5\",\n    \"maximum\": 1,\n    \"rating\": \"A\",\n    \"time\": 720,\n    \"symbol\": \"Int_DroneControl_Collection_Size1_Class5\",\n    \"ukName\": \"Collector\",\n    \"description\": \"Controls limpets to collect canisters and asteroid chunks automatically.\",\n    \"properties\": {\n      \"Mass\": 2,\n      \"Power Draw\": 0.32,\n      \"Maximum Range\": 1.2\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 5400,\n    \"edID\": 128671234,\n    \"eddbID\": 1399,\n    \"grp\": \"cc\",\n    \"id\": \"C6\",\n    \"maximum\": 2,\n    \"rating\": \"E\",\n    \"time\": 300,\n    \"symbol\": \"Int_DroneControl_Collection_Size3_Class1\",\n    \"ukName\": \"Collector\",\n    \"description\": \"Controls limpets to collect canisters and asteroid chunks automatically.\",\n    \"properties\": {\n      \"Mass\": 2,\n      \"Power Draw\": 0.2,\n      \"Maximum Range\": 0.88\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 10800,\n    \"edID\": 128671235,\n    \"eddbID\": 1400,\n    \"grp\": \"cc\",\n    \"id\": \"C7\",\n    \"maximum\": 2,\n    \"rating\": \"D\",\n    \"time\": 600,\n    \"symbol\": \"Int_DroneControl_Collection_Size3_Class2\",\n    \"ukName\": \"Collector\",\n    \"description\": \"Controls limpets to collect canisters and asteroid chunks automatically.\",\n    \"properties\": {\n      \"Mass\": 2,\n      \"Power Draw\": 0.27,\n      \"Maximum Range\": 0.66\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 21600,\n    \"edID\": 128671236,\n    \"eddbID\": 1401,\n    \"grp\": \"cc\",\n    \"id\": \"C8\",\n    \"maximum\": 2,\n    \"rating\": \"C\",\n    \"time\": 510,\n    \"symbol\": \"Int_DroneControl_Collection_Size3_Class3\",\n    \"ukName\": \"Collector\",\n    \"description\": \"Controls limpets to collect canisters and asteroid chunks automatically.\",\n    \"properties\": {\n      \"Mass\": 5,\n      \"Power Draw\": 0.34,\n      \"Maximum Range\": 1.1\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 43200,\n    \"edID\": 128671237,\n    \"eddbID\": 1402,\n    \"grp\": \"cc\",\n    \"id\": \"C9\",\n    \"maximum\": 2,\n    \"rating\": \"B\",\n    \"time\": 420,\n    \"symbol\": \"Int_DroneControl_Collection_Size3_Class4\",\n    \"ukName\": \"Collector\",\n    \"description\": \"Controls limpets to collect canisters and asteroid chunks automatically.\",\n    \"properties\": {\n      \"Mass\": 8,\n      \"Power Draw\": 0.41,\n      \"Maximum Range\": 1.54\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 86400,\n    \"edID\": 128671238,\n    \"eddbID\": 1403,\n    \"grp\": \"cc\",\n    \"id\": \"C0\",\n    \"maximum\": 2,\n    \"rating\": \"A\",\n    \"time\": 720,\n    \"symbol\": \"Int_DroneControl_Collection_Size3_Class5\",\n    \"ukName\": \"Collector\",\n    \"description\": \"Controls limpets to collect canisters and asteroid chunks automatically.\",\n    \"properties\": {\n      \"Mass\": 8,\n      \"Power Draw\": 0.48,\n      \"Maximum Range\": 1.32\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 48600,\n    \"edID\": 128671239,\n    \"eddbID\": 1404,\n    \"grp\": \"cc\",\n    \"id\": \"Ca\",\n    \"maximum\": 3,\n    \"rating\": \"E\",\n    \"time\": 300,\n    \"symbol\": \"Int_DroneControl_Collection_Size5_Class1\",\n    \"ukName\": \"Collector\",\n    \"description\": \"Controls limpets to collect canisters and asteroid chunks automatically.\",\n    \"properties\": {\n      \"Mass\": 8,\n      \"Power Draw\": 0.3,\n      \"Maximum Range\": 1.04\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 97200,\n    \"edID\": 128671240,\n    \"eddbID\": 1405,\n    \"grp\": \"cc\",\n    \"id\": \"Cb\",\n    \"maximum\": 3,\n    \"rating\": \"D\",\n    \"time\": 600,\n    \"symbol\": \"Int_DroneControl_Collection_Size5_Class2\",\n    \"ukName\": \"Collector\",\n    \"description\": \"Controls limpets to collect canisters and asteroid chunks automatically.\",\n    \"properties\": {\n      \"Mass\": 8,\n      \"Power Draw\": 0.4,\n      \"Maximum Range\": 0.78\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 194400,\n    \"edID\": 128671241,\n    \"eddbID\": 1406,\n    \"grp\": \"cc\",\n    \"id\": \"Cc\",\n    \"maximum\": 3,\n    \"rating\": \"C\",\n    \"time\": 510,\n    \"symbol\": \"Int_DroneControl_Collection_Size5_Class3\",\n    \"ukName\": \"Collector\",\n    \"description\": \"Controls limpets to collect canisters and asteroid chunks automatically.\",\n    \"properties\": {\n      \"Mass\": 20,\n      \"Power Draw\": 0.5,\n      \"Maximum Range\": 1.3\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 388800,\n    \"edID\": 128671242,\n    \"eddbID\": 1407,\n    \"grp\": \"cc\",\n    \"id\": \"Cd\",\n    \"maximum\": 3,\n    \"rating\": \"B\",\n    \"time\": 420,\n    \"symbol\": \"Int_DroneControl_Collection_Size5_Class4\",\n    \"ukName\": \"Collector\",\n    \"description\": \"Controls limpets to collect canisters and asteroid chunks automatically.\",\n    \"properties\": {\n      \"Mass\": 32,\n      \"Power Draw\": 0.6,\n      \"Maximum Range\": 1.82\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 777600,\n    \"edID\": 128671243,\n    \"eddbID\": 1408,\n    \"grp\": \"cc\",\n    \"id\": \"Ce\",\n    \"maximum\": 3,\n    \"rating\": \"A\",\n    \"time\": 720,\n    \"symbol\": \"Int_DroneControl_Collection_Size5_Class5\",\n    \"ukName\": \"Collector\",\n    \"description\": \"Controls limpets to collect canisters and asteroid chunks automatically.\",\n    \"properties\": {\n      \"Mass\": 32,\n      \"Power Draw\": 0.7,\n      \"Maximum Range\": 1.56\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 437400,\n    \"edID\": 128671244,\n    \"eddbID\": 1409,\n    \"grp\": \"cc\",\n    \"id\": \"Cf\",\n    \"maximum\": 4,\n    \"rating\": \"E\",\n    \"time\": 300,\n    \"symbol\": \"Int_DroneControl_Collection_Size7_Class1\",\n    \"ukName\": \"Collector\",\n    \"description\": \"Controls limpets to collect canisters and asteroid chunks automatically.\",\n    \"properties\": {\n      \"Mass\": 32,\n      \"Power Draw\": 0.41,\n      \"Maximum Range\": 1.36\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 874800,\n    \"edID\": 128671245,\n    \"eddbID\": 1410,\n    \"grp\": \"cc\",\n    \"id\": \"Cg\",\n    \"maximum\": 4,\n    \"rating\": \"D\",\n    \"time\": 600,\n    \"symbol\": \"Int_DroneControl_Collection_Size7_Class2\",\n    \"ukName\": \"Collector\",\n    \"description\": \"Controls limpets to collect canisters and asteroid chunks automatically.\",\n    \"properties\": {\n      \"Mass\": 32,\n      \"Power Draw\": 0.55,\n      \"Maximum Range\": 1.02\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 1749600,\n    \"edID\": 128671246,\n    \"eddbID\": 1411,\n    \"grp\": \"cc\",\n    \"id\": \"Ch\",\n    \"maximum\": 4,\n    \"rating\": \"C\",\n    \"time\": 510,\n    \"symbol\": \"Int_DroneControl_Collection_Size7_Class3\",\n    \"ukName\": \"Collector\",\n    \"description\": \"Controls limpets to collect canisters and asteroid chunks automatically.\",\n    \"properties\": {\n      \"Mass\": 80,\n      \"Power Draw\": 0.69,\n      \"Maximum Range\": 1.7\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 3499200,\n    \"edID\": 128671247,\n    \"eddbID\": 1412,\n    \"grp\": \"cc\",\n    \"id\": \"Ci\",\n    \"maximum\": 4,\n    \"rating\": \"B\",\n    \"time\": 420,\n    \"symbol\": \"Int_DroneControl_Collection_Size7_Class4\",\n    \"ukName\": \"Collector\",\n    \"description\": \"Controls limpets to collect canisters and asteroid chunks automatically.\",\n    \"properties\": {\n      \"Mass\": 128,\n      \"Power Draw\": 0.83,\n      \"Maximum Range\": 2.38\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 6998400,\n    \"edID\": 128671248,\n    \"eddbID\": 1413,\n    \"grp\": \"cc\",\n    \"id\": \"Cj\",\n    \"maximum\": 4,\n    \"rating\": \"A\",\n    \"time\": 720,\n    \"symbol\": \"Int_DroneControl_Collection_Size7_Class5\",\n    \"ukName\": \"Collector\",\n    \"description\": \"Controls limpets to collect canisters and asteroid chunks automatically.\",\n    \"properties\": {\n      \"Mass\": 128,\n      \"Power Draw\": 0.97,\n      \"Maximum Range\": 2.04\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 3600,\n    \"edID\": 128793941,\n    \"eddbID\": 1632,\n    \"grp\": \"dtl\",\n    \"id\": \"y1\",\n    \"maximum\": 1,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_DroneControl_Decontamination_Size1_Class1\",\n    \"ukName\": \"Decontamination\",\n    \"description\": \"Controls a limpet that removes caustic chemicals affecting a ship's hull, as well as applying a small amount of hull repair.\",\n    \"properties\": {\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.18,\n      \"Maximum Range\": 0.6\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 16201,\n    \"edID\": 128793942,\n    \"eddbID\": 1633,\n    \"grp\": \"dtl\",\n    \"id\": \"y2\",\n    \"maximum\": 2,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_DroneControl_Decontamination_Size3_Class1\",\n    \"ukName\": \"Decontamination\",\n    \"description\": \"Controls a limpet that removes caustic chemicals affecting a ship's hull, as well as applying a small amount of hull repair.\",\n    \"properties\": {\n      \"Mass\": 2,\n      \"Power Draw\": 0.2,\n      \"Maximum Range\": 0.88\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 145801,\n    \"edID\": 128793943,\n    \"eddbID\": 1634,\n    \"grp\": \"dtl\",\n    \"id\": \"y3\",\n    \"maximum\": 3,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_DroneControl_Decontamination_Size5_Class1\",\n    \"ukName\": \"Decontamination\",\n    \"description\": \"Controls a limpet that removes caustic chemicals affecting a ship's hull, as well as applying a small amount of hull repair.\",\n    \"properties\": {\n      \"Mass\": 20,\n      \"Power Draw\": 0.5,\n      \"Maximum Range\": 1.3\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 1312201,\n    \"edID\": 128793944,\n    \"eddbID\": 1635,\n    \"grp\": \"dtl\",\n    \"id\": \"y4\",\n    \"maximum\": 4,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_DroneControl_Decontamination_Size7_Class1\",\n    \"ukName\": \"Decontamination\",\n    \"description\": \"Controls a limpet that removes caustic chemicals affecting a ship's hull, as well as applying a small amount of hull repair.\",\n    \"properties\": {\n      \"Mass\": 128,\n      \"Power Draw\": 0.97,\n      \"Maximum Range\": 2.04\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 4500,\n    \"edID\": 128049549,\n    \"eddbID\": 890,\n    \"grp\": \"dc\",\n    \"id\": \"24\",\n    \"name\": \"Standard Docking Computer\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_DockingComputer_Standard\",\n    \"ukName\": \"Docking Computer\",\n    \"description\": \"Allows assisted docking sequence at all starports and outposts.\",\n    \"properties\": {\n      \"Integrity\": 10,\n      \"Power Draw\": 0.39\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 13509,\n    \"edID\": 128935155,\n    \"eddbID\": 890,\n    \"grp\": \"dc\",\n    \"id\": \"3x\",\n    \"name\": \"Advanced Docking Computer\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_DockingComputer_Advanced\",\n    \"ukName\": \"Advanced Docking Computer\",\n    \"description\": \"Allows assisted docking and launch at all starports and outposts.\",\n    \"properties\": {\n      \"Integrity\": 10,\n      \"Power Draw\": 0.45\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 4320,\n    \"edID\": 128734690,\n    \"eddbID\": 1563,\n    \"grp\": \"pce\",\n    \"id\": \"ma\",\n    \"passengers\": 2,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_PassengerCabin_Size2_Class1\",\n    \"ukName\": \"EC Passenger Cabin\",\n    \"description\": \"Economy Class Passenger Cabin.\",\n    \"properties\": {\n      \"Mass\": 2.5\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 8659,\n    \"edID\": 128734691,\n    \"eddbID\": 1564,\n    \"grp\": \"pce\",\n    \"id\": \"mb\",\n    \"passengers\": 4,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_PassengerCabin_Size3_Class1\",\n    \"ukName\": \"EC Passenger Cabin\",\n    \"description\": \"Economy Class Passenger Cabin.\",\n    \"properties\": {\n      \"Mass\": 5\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 18960,\n    \"edID\": 128727922,\n    \"eddbID\": 1565,\n    \"grp\": \"pce\",\n    \"id\": \"mc\",\n    \"passengers\": 8,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_PassengerCabin_Size4_Class1\",\n    \"ukName\": \"EC Passenger Cabin\",\n    \"description\": \"Economy Class Passenger Cabin.\",\n    \"properties\": {\n      \"Mass\": 10\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 34960,\n    \"edID\": 128734693,\n    \"eddbID\": 1566,\n    \"grp\": \"pce\",\n    \"id\": \"md\",\n    \"passengers\": 16,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_PassengerCabin_Size5_Class1\",\n    \"ukName\": \"EC Passenger Cabin\",\n    \"description\": \"Economy Class Passenger Cabin.\",\n    \"properties\": {\n      \"Mass\": 20\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 61420,\n    \"edID\": 128727926,\n    \"eddbID\": 1567,\n    \"grp\": \"pce\",\n    \"id\": \"me\",\n    \"passengers\": 32,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_PassengerCabin_Size6_Class1\",\n    \"ukName\": \"EC Passenger Cabin\",\n    \"description\": \"Economy Class Passenger Cabin.\",\n    \"properties\": {\n      \"Mass\": 40\n    }\n  },\n  {\n    \"bays\": 1,\n    \"class\": 5,\n    \"cost\": 575644,\n    \"edID\": 128727930,\n    \"eddbID\": 1562,\n    \"fightercost\": 1030,\n    \"grp\": \"fh\",\n    \"id\": \"fr\",\n    \"rating\": \"D\",\n    \"rebuildsperbay\": 6,\n    \"symbol\": \"Int_FighterBay_Size5_Class1\",\n    \"ukName\": \"Fighter Hangar\",\n    \"description\": \"A module designed to house ship launched vehicles.\",\n    \"properties\": {\n      \"Integrity\": 60,\n      \"Mass\": 20,\n      \"Power Draw\": 0.25\n    }\n  },\n  {\n    \"bays\": 2,\n    \"class\": 6,\n    \"cost\": 1869350,\n    \"edID\": 128727931,\n    \"eddbID\": 1561,\n    \"fightercost\": 1030,\n    \"grp\": \"fh\",\n    \"id\": \"fm\",\n    \"rating\": \"D\",\n    \"rebuildsperbay\": 8,\n    \"symbol\": \"Int_FighterBay_Size6_Class1\",\n    \"ukName\": \"Fighter Hangar\",\n    \"description\": \"A module designed to house ship launched vehicles.\",\n    \"properties\": {\n      \"Integrity\": 80,\n      \"Mass\": 40,\n      \"Power Draw\": 0.35\n    }\n  },\n  {\n    \"bays\": 2,\n    \"class\": 7,\n    \"edID\": 128727932,\n    \"cost\": 2369330,\n    \"eddbID\": 1560,\n    \"fightercost\": 1030,\n    \"grp\": \"fh\",\n    \"id\": \"fh\",\n    \"rating\": \"D\",\n    \"rebuildsperbay\": 15,\n    \"symbol\": \"Int_FighterBay_Size7_Class1\",\n    \"ukName\": \"Fighter Hangar\",\n    \"description\": \"A module designed to house ship launched vehicles.\",\n    \"properties\": {\n      \"Integrity\": 120,\n      \"Mass\": 60,\n      \"Power Draw\": 0.35\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 170587,\n    \"edID\": 128727924,\n    \"eddbID\": 1572,\n    \"grp\": \"pcm\",\n    \"id\": \"mj\",\n    \"passengers\": 3,\n    \"rating\": \"C\",\n    \"symbol\": \"Int_PassengerCabin_Size4_Class3\",\n    \"ukName\": \"FC Passenger Cabin\",\n    \"description\": \"First Class Passenger Cabin.\",\n    \"properties\": {\n      \"Mass\": 10\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 340528,\n    \"edID\": 128734695,\n    \"eddbID\": 1573,\n    \"grp\": \"pcm\",\n    \"id\": \"mk\",\n    \"passengers\": 6,\n    \"rating\": \"C\",\n    \"symbol\": \"Int_PassengerCabin_Size5_Class3\",\n    \"ukName\": \"FC Passenger Cabin\",\n    \"description\": \"First Class Passenger Cabin.\",\n    \"properties\": {\n      \"Mass\": 20\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 552700,\n    \"edID\": 128727928,\n    \"eddbID\": 1574,\n    \"grp\": \"pcm\",\n    \"id\": \"ml\",\n    \"passengers\": 12,\n    \"rating\": \"C\",\n    \"symbol\": \"Int_PassengerCabin_Size6_Class3\",\n    \"ukName\": \"FC Passenger Cabin\",\n    \"description\": \"First Class Passenger Cabin.\",\n    \"properties\": {\n      \"Mass\": 40\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 12000,\n    \"edID\": 128666704,\n    \"eddbID\": 1306,\n    \"grp\": \"fi\",\n    \"id\": \"6a\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_FSDInterdictor_Size1_Class1\",\n    \"ukName\": \"FSD Interdictor\",\n    \"description\": \"Used to pull targets out of supercruise.\",\n    \"properties\": {\n      \"Boot time\": 15,\n      \"Facing Limit\": 50,\n      \"Integrity\": 32,\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.14,\n      \"Range\": 3\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 36000,\n    \"edID\": 128666708,\n    \"eddbID\": 1310,\n    \"grp\": \"fi\",\n    \"id\": \"69\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_FSDInterdictor_Size1_Class2\",\n    \"ukName\": \"FSD Interdictor\",\n    \"description\": \"Used to pull targets out of supercruise.\",\n    \"properties\": {\n      \"Boot time\": 15,\n      \"Facing Limit\": 50,\n      \"Integrity\": 24,\n      \"Mass\": 0.5,\n      \"Power Draw\": 0.18,\n      \"Range\": 4\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 108000,\n    \"edID\": 128666712,\n    \"eddbID\": 1314,\n    \"grp\": \"fi\",\n    \"id\": \"68\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_FSDInterdictor_Size1_Class3\",\n    \"ukName\": \"FSD Interdictor\",\n    \"description\": \"Used to pull targets out of supercruise.\",\n    \"properties\": {\n      \"Boot time\": 15,\n      \"Facing Limit\": 50,\n      \"Integrity\": 40,\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.23,\n      \"Range\": 5\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 324000,\n    \"edID\": 128666716,\n    \"eddbID\": 1318,\n    \"grp\": \"fi\",\n    \"id\": \"67\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_FSDInterdictor_Size1_Class4\",\n    \"ukName\": \"FSD Interdictor\",\n    \"description\": \"Used to pull targets out of supercruise.\",\n    \"properties\": {\n      \"Boot time\": 15,\n      \"Facing Limit\": 50,\n      \"Integrity\": 56,\n      \"Mass\": 2,\n      \"Power Draw\": 0.28,\n      \"Range\": 6\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 972000,\n    \"edID\": 128666720,\n    \"eddbID\": 1322,\n    \"grp\": \"fi\",\n    \"id\": \"66\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_FSDInterdictor_Size1_Class5\",\n    \"ukName\": \"FSD Interdictor\",\n    \"description\": \"Used to pull targets out of supercruise.\",\n    \"properties\": {\n      \"Boot time\": 15,\n      \"Facing Limit\": 50,\n      \"Integrity\": 48,\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.32,\n      \"Range\": 7\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 33600,\n    \"edID\": 128666705,\n    \"eddbID\": 1307,\n    \"grp\": \"fi\",\n    \"id\": \"6f\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_FSDInterdictor_Size2_Class1\",\n    \"ukName\": \"FSD Interdictor\",\n    \"description\": \"Used to pull targets out of supercruise.\",\n    \"properties\": {\n      \"Boot time\": 15,\n      \"Facing Limit\": 50,\n      \"Integrity\": 41,\n      \"Mass\": 2.5,\n      \"Power Draw\": 0.17,\n      \"Range\": 6\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 100800,\n    \"edID\": 128666709,\n    \"eddbID\": 1311,\n    \"grp\": \"fi\",\n    \"id\": \"6e\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_FSDInterdictor_Size2_Class2\",\n    \"ukName\": \"FSD Interdictor\",\n    \"description\": \"Used to pull targets out of supercruise.\",\n    \"properties\": {\n      \"Boot time\": 15,\n      \"Facing Limit\": 50,\n      \"Integrity\": 51,\n      \"Mass\": 1,\n      \"Power Draw\": 0.22,\n      \"Range\": 7\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 302400,\n    \"edID\": 128666713,\n    \"eddbID\": 1315,\n    \"grp\": \"fi\",\n    \"id\": \"6d\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_FSDInterdictor_Size2_Class3\",\n    \"ukName\": \"FSD Interdictor\",\n    \"description\": \"Used to pull targets out of supercruise.\",\n    \"properties\": {\n      \"Boot time\": 15,\n      \"Facing Limit\": 50,\n      \"Integrity\": 51,\n      \"Mass\": 2.5,\n      \"Power Draw\": 0.28,\n      \"Range\": 8\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 907200,\n    \"edID\": 128666717,\n    \"eddbID\": 1319,\n    \"grp\": \"fi\",\n    \"id\": \"6c\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_FSDInterdictor_Size2_Class4\",\n    \"ukName\": \"FSD Interdictor\",\n    \"description\": \"Used to pull targets out of supercruise.\",\n    \"properties\": {\n      \"Boot time\": 15,\n      \"Facing Limit\": 50,\n      \"Integrity\": 71,\n      \"Mass\": 4,\n      \"Power Draw\": 0.34,\n      \"Range\": 9\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 2721600,\n    \"edID\": 128666721,\n    \"eddbID\": 1323,\n    \"grp\": \"fi\",\n    \"id\": \"6b\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_FSDInterdictor_Size2_Class5\",\n    \"ukName\": \"FSD Interdictor\",\n    \"description\": \"Used to pull targets out of supercruise.\",\n    \"properties\": {\n      \"Boot time\": 15,\n      \"Facing Limit\": 50,\n      \"Integrity\": 61,\n      \"Mass\": 2.5,\n      \"Power Draw\": 0.39,\n      \"Range\": 10\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 94080,\n    \"edID\": 128666706,\n    \"eddbID\": 1308,\n    \"grp\": \"fi\",\n    \"id\": \"6k\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_FSDInterdictor_Size3_Class1\",\n    \"ukName\": \"FSD Interdictor\",\n    \"description\": \"Used to pull targets out of supercruise.\",\n    \"properties\": {\n      \"Boot time\": 15,\n      \"Facing Limit\": 50,\n      \"Integrity\": 51,\n      \"Mass\": 5,\n      \"Power Draw\": 0.2,\n      \"Range\": 9\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 282240,\n    \"edID\": 128666710,\n    \"eddbID\": 1312,\n    \"grp\": \"fi\",\n    \"id\": \"6j\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_FSDInterdictor_Size3_Class2\",\n    \"ukName\": \"FSD Interdictor\",\n    \"description\": \"Used to pull targets out of supercruise.\",\n    \"properties\": {\n      \"Boot time\": 15,\n      \"Facing Limit\": 50,\n      \"Integrity\": 38,\n      \"Mass\": 2,\n      \"Power Draw\": 0.27,\n      \"Range\": 10\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 846720,\n    \"edID\": 128666714,\n    \"eddbID\": 1316,\n    \"grp\": \"fi\",\n    \"id\": \"6i\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_FSDInterdictor_Size3_Class3\",\n    \"ukName\": \"FSD Interdictor\",\n    \"description\": \"Used to pull targets out of supercruise.\",\n    \"properties\": {\n      \"Boot time\": 15,\n      \"Facing Limit\": 50,\n      \"Integrity\": 64,\n      \"Mass\": 5,\n      \"Power Draw\": 0.34,\n      \"Range\": 11\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 2540160,\n    \"edID\": 128666718,\n    \"eddbID\": 1320,\n    \"grp\": \"fi\",\n    \"id\": \"6h\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_FSDInterdictor_Size3_Class4\",\n    \"ukName\": \"FSD Interdictor\",\n    \"description\": \"Used to pull targets out of supercruise.\",\n    \"properties\": {\n      \"Boot time\": 15,\n      \"Facing Limit\": 50,\n      \"Integrity\": 90,\n      \"Mass\": 8,\n      \"Power Draw\": 0.41,\n      \"Range\": 12\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 7620480,\n    \"edID\": 128666722,\n    \"eddbID\": 1324,\n    \"grp\": \"fi\",\n    \"id\": \"6g\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_FSDInterdictor_Size3_Class5\",\n    \"ukName\": \"FSD Interdictor\",\n    \"description\": \"Used to pull targets out of supercruise.\",\n    \"properties\": {\n      \"Boot time\": 15,\n      \"Facing Limit\": 50,\n      \"Integrity\": 77,\n      \"Mass\": 5,\n      \"Power Draw\": 0.48,\n      \"Range\": 13\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 263420,\n    \"edID\": 128666707,\n    \"eddbID\": 1309,\n    \"grp\": \"fi\",\n    \"id\": \"6p\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_FSDInterdictor_Size4_Class1\",\n    \"ukName\": \"FSD Interdictor\",\n    \"description\": \"Used to pull targets out of supercruise.\",\n    \"properties\": {\n      \"Boot time\": 15,\n      \"Facing Limit\": 50,\n      \"Integrity\": 64,\n      \"Mass\": 10,\n      \"Power Draw\": 0.25,\n      \"Range\": 12\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 790270,\n    \"edID\": 128666711,\n    \"eddbID\": 1313,\n    \"grp\": \"fi\",\n    \"id\": \"6o\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_FSDInterdictor_Size4_Class2\",\n    \"ukName\": \"FSD Interdictor\",\n    \"description\": \"Used to pull targets out of supercruise.\",\n    \"properties\": {\n      \"Boot time\": 15,\n      \"Facing Limit\": 50,\n      \"Integrity\": 48,\n      \"Mass\": 4,\n      \"Power Draw\": 0.33,\n      \"Range\": 13\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 2370820,\n    \"edID\": 128666715,\n    \"eddbID\": 1317,\n    \"grp\": \"fi\",\n    \"id\": \"6n\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_FSDInterdictor_Size4_Class3\",\n    \"ukName\": \"FSD Interdictor\",\n    \"description\": \"Used to pull targets out of supercruise.\",\n    \"properties\": {\n      \"Boot time\": 15,\n      \"Facing Limit\": 50,\n      \"Integrity\": 80,\n      \"Mass\": 10,\n      \"Power Draw\": 0.41,\n      \"Range\": 14\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 7112450,\n    \"edID\": 128666719,\n    \"eddbID\": 1321,\n    \"grp\": \"fi\",\n    \"id\": \"6m\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_FSDInterdictor_Size4_Class4\",\n    \"ukName\": \"FSD Interdictor\",\n    \"description\": \"Used to pull targets out of supercruise.\",\n    \"properties\": {\n      \"Boot time\": 15,\n      \"Facing Limit\": 50,\n      \"Integrity\": 112,\n      \"Mass\": 16,\n      \"Power Draw\": 0.49,\n      \"Range\": 15\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 21337340,\n    \"edID\": 128666723,\n    \"eddbID\": 1325,\n    \"grp\": \"fi\",\n    \"id\": \"6l\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_FSDInterdictor_Size4_Class5\",\n    \"ukName\": \"FSD Interdictor\",\n    \"description\": \"Used to pull targets out of supercruise.\",\n    \"properties\": {\n      \"Boot time\": 15,\n      \"Facing Limit\": 50,\n      \"Integrity\": 96,\n      \"Mass\": 10,\n      \"Power Draw\": 0.57,\n      \"Range\": 16\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 310,\n    \"edID\": 128666644,\n    \"eddbID\": 1246,\n    \"grp\": \"fs\",\n    \"id\": \"2n\",\n    \"rate\": 18,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_FuelScoop_Size1_Class1\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.14\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 1290,\n    \"edID\": 128666652,\n    \"eddbID\": 1254,\n    \"grp\": \"fs\",\n    \"id\": \"2m\",\n    \"rate\": 24,\n    \"rating\": \"D\",\n    \"symbol\": \"Int_FuelScoop_Size1_Class2\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.18\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 5140,\n    \"edID\": 128666660,\n    \"eddbID\": 1262,\n    \"grp\": \"fs\",\n    \"id\": \"2l\",\n    \"rate\": 30,\n    \"rating\": \"C\",\n    \"symbol\": \"Int_FuelScoop_Size1_Class3\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.23\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 20570,\n    \"edID\": 128666668,\n    \"eddbID\": 1270,\n    \"grp\": \"fs\",\n    \"id\": \"2k\",\n    \"rate\": 36,\n    \"rating\": \"B\",\n    \"symbol\": \"Int_FuelScoop_Size1_Class4\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.28\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 82270,\n    \"edID\": 128666676,\n    \"eddbID\": 1278,\n    \"grp\": \"fs\",\n    \"id\": \"2j\",\n    \"rate\": 42,\n    \"rating\": \"A\",\n    \"symbol\": \"Int_FuelScoop_Size1_Class5\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.32\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 1070,\n    \"edID\": 128666645,\n    \"eddbID\": 1247,\n    \"grp\": \"fs\",\n    \"id\": \"2s\",\n    \"rate\": 32,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_FuelScoop_Size2_Class1\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.17\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 4450,\n    \"edID\": 128666653,\n    \"eddbID\": 1255,\n    \"grp\": \"fs\",\n    \"id\": \"2r\",\n    \"rate\": 43,\n    \"rating\": \"D\",\n    \"symbol\": \"Int_FuelScoop_Size2_Class2\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.22\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 17800,\n    \"edID\": 128666661,\n    \"eddbID\": 1263,\n    \"grp\": \"fs\",\n    \"id\": \"2q\",\n    \"rate\": 54,\n    \"rating\": \"C\",\n    \"symbol\": \"Int_FuelScoop_Size2_Class3\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.28\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 71210,\n    \"edID\": 128666669,\n    \"eddbID\": 1271,\n    \"grp\": \"fs\",\n    \"id\": \"2p\",\n    \"rate\": 65,\n    \"rating\": \"B\",\n    \"symbol\": \"Int_FuelScoop_Size2_Class4\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.34\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 284840,\n    \"edID\": 128666677,\n    \"eddbID\": 1279,\n    \"grp\": \"fs\",\n    \"id\": \"2o\",\n    \"rate\": 75,\n    \"rating\": \"A\",\n    \"symbol\": \"Int_FuelScoop_Size2_Class5\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.39\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 3390,\n    \"edID\": 128666646,\n    \"eddbID\": 1248,\n    \"grp\": \"fs\",\n    \"id\": \"31\",\n    \"rate\": 75,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_FuelScoop_Size3_Class1\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.2\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 14110,\n    \"edID\": 128666654,\n    \"eddbID\": 1256,\n    \"grp\": \"fs\",\n    \"id\": \"30\",\n    \"rate\": 100,\n    \"rating\": \"D\",\n    \"symbol\": \"Int_FuelScoop_Size3_Class2\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.27\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 56440,\n    \"edID\": 128666662,\n    \"eddbID\": 1264,\n    \"grp\": \"fs\",\n    \"id\": \"2v\",\n    \"rate\": 126,\n    \"rating\": \"C\",\n    \"symbol\": \"Int_FuelScoop_Size3_Class3\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.34\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 225740,\n    \"edID\": 128666670,\n    \"eddbID\": 1272,\n    \"grp\": \"fs\",\n    \"id\": \"2u\",\n    \"rate\": 151,\n    \"rating\": \"B\",\n    \"symbol\": \"Int_FuelScoop_Size3_Class4\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.41\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 902950,\n    \"edID\": 128666678,\n    \"eddbID\": 1280,\n    \"grp\": \"fs\",\n    \"id\": \"2t\",\n    \"rate\": 176,\n    \"rating\": \"A\",\n    \"symbol\": \"Int_FuelScoop_Size3_Class5\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.48\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 10730,\n    \"edID\": 128666647,\n    \"eddbID\": 1249,\n    \"grp\": \"fs\",\n    \"id\": \"36\",\n    \"rate\": 147,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_FuelScoop_Size4_Class1\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.25\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 44720,\n    \"edID\": 128666655,\n    \"eddbID\": 1257,\n    \"grp\": \"fs\",\n    \"id\": \"35\",\n    \"rate\": 196,\n    \"rating\": \"D\",\n    \"symbol\": \"Int_FuelScoop_Size4_Class2\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.33\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 178900,\n    \"edID\": 128666663,\n    \"eddbID\": 1265,\n    \"grp\": \"fs\",\n    \"id\": \"34\",\n    \"rate\": 245,\n    \"rating\": \"C\",\n    \"symbol\": \"Int_FuelScoop_Size4_Class3\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.41\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 715590,\n    \"edID\": 128666671,\n    \"eddbID\": 1273,\n    \"grp\": \"fs\",\n    \"id\": \"33\",\n    \"rate\": 294,\n    \"rating\": \"B\",\n    \"symbol\": \"Int_FuelScoop_Size4_Class4\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.49\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 2862360,\n    \"edID\": 128666679,\n    \"eddbID\": 1281,\n    \"grp\": \"fs\",\n    \"id\": \"32\",\n    \"rate\": 342,\n    \"rating\": \"A\",\n    \"symbol\": \"Int_FuelScoop_Size4_Class5\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.57\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 34030,\n    \"edID\": 128666648,\n    \"eddbID\": 1250,\n    \"grp\": \"fs\",\n    \"id\": \"3b\",\n    \"rate\": 247,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_FuelScoop_Size5_Class1\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.3\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 141780,\n    \"edID\": 128666656,\n    \"eddbID\": 1258,\n    \"grp\": \"fs\",\n    \"id\": \"3a\",\n    \"rate\": 330,\n    \"rating\": \"D\",\n    \"symbol\": \"Int_FuelScoop_Size5_Class2\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.4\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 567110,\n    \"edID\": 128666664,\n    \"eddbID\": 1266,\n    \"grp\": \"fs\",\n    \"id\": \"39\",\n    \"rate\": 412,\n    \"rating\": \"C\",\n    \"symbol\": \"Int_FuelScoop_Size5_Class3\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.5\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 2268420,\n    \"edID\": 128666672,\n    \"eddbID\": 1274,\n    \"grp\": \"fs\",\n    \"id\": \"38\",\n    \"rate\": 494,\n    \"rating\": \"B\",\n    \"symbol\": \"Int_FuelScoop_Size5_Class4\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.6\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 9073690,\n    \"edID\": 128666680,\n    \"eddbID\": 1282,\n    \"grp\": \"fs\",\n    \"id\": \"37\",\n    \"rate\": 577,\n    \"rating\": \"A\",\n    \"symbol\": \"Int_FuelScoop_Size5_Class5\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.7\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 107860,\n    \"edID\": 128666649,\n    \"eddbID\": 1251,\n    \"grp\": \"fs\",\n    \"id\": \"3g\",\n    \"rate\": 376,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_FuelScoop_Size6_Class1\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.35\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 449430,\n    \"edID\": 128666657,\n    \"eddbID\": 1259,\n    \"grp\": \"fs\",\n    \"id\": \"3f\",\n    \"rate\": 502,\n    \"rating\": \"D\",\n    \"symbol\": \"Int_FuelScoop_Size6_Class2\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.47\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 1797730,\n    \"edID\": 128666665,\n    \"eddbID\": 1267,\n    \"grp\": \"fs\",\n    \"id\": \"3e\",\n    \"rate\": 627,\n    \"rating\": \"C\",\n    \"symbol\": \"Int_FuelScoop_Size6_Class3\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.59\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 7190900,\n    \"edID\": 128666673,\n    \"eddbID\": 1275,\n    \"grp\": \"fs\",\n    \"id\": \"3d\",\n    \"rate\": 752,\n    \"rating\": \"B\",\n    \"symbol\": \"Int_FuelScoop_Size6_Class4\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.71\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 28763610,\n    \"edID\": 128666681,\n    \"eddbID\": 1283,\n    \"grp\": \"fs\",\n    \"id\": \"3c\",\n    \"rate\": 878,\n    \"rating\": \"A\",\n    \"symbol\": \"Int_FuelScoop_Size6_Class5\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.83\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 341930,\n    \"edID\": 128666650,\n    \"eddbID\": 1252,\n    \"grp\": \"fs\",\n    \"id\": \"3l\",\n    \"rate\": 534,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_FuelScoop_Size7_Class1\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.41\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 1424700,\n    \"edID\": 128666658,\n    \"eddbID\": 1260,\n    \"grp\": \"fs\",\n    \"id\": \"3k\",\n    \"rate\": 712,\n    \"rating\": \"D\",\n    \"symbol\": \"Int_FuelScoop_Size7_Class2\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.55\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 5698790,\n    \"edID\": 128666666,\n    \"eddbID\": 1268,\n    \"grp\": \"fs\",\n    \"id\": \"3j\",\n    \"rate\": 890,\n    \"rating\": \"C\",\n    \"symbol\": \"Int_FuelScoop_Size7_Class3\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.69\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 22795160,\n    \"edID\": 128666674,\n    \"eddbID\": 1276,\n    \"grp\": \"fs\",\n    \"id\": \"3i\",\n    \"rate\": 1068,\n    \"rating\": \"B\",\n    \"symbol\": \"Int_FuelScoop_Size7_Class4\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.83\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 91180640,\n    \"edID\": 128666682,\n    \"eddbID\": 1284,\n    \"grp\": \"fs\",\n    \"id\": \"3h\",\n    \"rate\": 1245,\n    \"rating\": \"A\",\n    \"symbol\": \"Int_FuelScoop_Size7_Class5\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.97\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 1083910,\n    \"edID\": 128666651,\n    \"eddbID\": 1253,\n    \"grp\": \"fs\",\n    \"id\": \"3q\",\n    \"rate\": 720,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_FuelScoop_Size8_Class1\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.48\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 4516290,\n    \"edID\": 128666659,\n    \"eddbID\": 1261,\n    \"grp\": \"fs\",\n    \"id\": \"3p\",\n    \"rate\": 960,\n    \"rating\": \"D\",\n    \"symbol\": \"Int_FuelScoop_Size8_Class2\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.64\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 18065160,\n    \"edID\": 128666667,\n    \"eddbID\": 1269,\n    \"grp\": \"fs\",\n    \"id\": \"3o\",\n    \"rate\": 1200,\n    \"rating\": \"C\",\n    \"symbol\": \"Int_FuelScoop_Size8_Class3\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.8\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 72260660,\n    \"edID\": 128666675,\n    \"eddbID\": 1277,\n    \"grp\": \"fs\",\n    \"id\": \"3n\",\n    \"rate\": 1440,\n    \"rating\": \"B\",\n    \"symbol\": \"Int_FuelScoop_Size8_Class4\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 0.96\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 289042642,\n    \"edID\": 128666683,\n    \"eddbID\": 1285,\n    \"grp\": \"fs\",\n    \"id\": \"3m\",\n    \"rate\": 1680,\n    \"rating\": \"A\",\n    \"symbol\": \"Int_FuelScoop_Size8_Class5\",\n    \"ukName\": \"Fuel Scoop\",\n    \"description\": \"Fly close to the sun with an active fuel scoop to collect fuel.\",\n    \"properties\": {\n      \"Power Draw\": 1.12\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 600,\n    \"edID\": 128671249,\n    \"eddbID\": 1414,\n    \"grp\": \"fx\",\n    \"id\": \"F0\",\n    \"maximum\": 1,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size1_Class1\",\n    \"ukName\": \"Fuel Transfer\",\n    \"description\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.18,\n      \"Maximum Range\": 0.6\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 1200,\n    \"edID\": 128671250,\n    \"eddbID\": 1415,\n    \"grp\": \"fx\",\n    \"id\": \"F1\",\n    \"maximum\": 1,\n    \"rating\": \"D\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size1_Class2\",\n    \"ukName\": \"Fuel Transfer\",\n    \"description\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 0.5,\n      \"Power Draw\": 0.14,\n      \"Maximum Range\": 0.8\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 2400,\n    \"edID\": 128671251,\n    \"eddbID\": 1416,\n    \"grp\": \"fx\",\n    \"id\": \"F2\",\n    \"maximum\": 1,\n    \"rating\": \"C\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size1_Class3\",\n    \"ukName\": \"Fuel Transfer\",\n    \"description\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.23,\n      \"Maximum Range\": 1\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 4800,\n    \"edID\": 128671252,\n    \"eddbID\": 1417,\n    \"grp\": \"fx\",\n    \"id\": \"F3\",\n    \"maximum\": 1,\n    \"rating\": \"B\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size1_Class4\",\n    \"ukName\": \"Fuel Transfer\",\n    \"description\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 2,\n      \"Power Draw\": 0.32,\n      \"Maximum Range\": 1.2\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 9600,\n    \"edID\": 128671253,\n    \"eddbID\": 1418,\n    \"grp\": \"fx\",\n    \"id\": \"F4\",\n    \"maximum\": 1,\n    \"rating\": \"A\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size1_Class5\",\n    \"ukName\": \"Fuel Transfer\",\n    \"description\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.28,\n      \"Maximum Range\": 1.4\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 5400,\n    \"edID\": 128671254,\n    \"eddbID\": 1419,\n    \"grp\": \"fx\",\n    \"id\": \"F5\",\n    \"maximum\": 2,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size3_Class1\",\n    \"ukName\": \"Fuel Transfer\",\n    \"description\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 5,\n      \"Power Draw\": 0.27,\n      \"Maximum Range\": 0.66\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 10800,\n    \"edID\": 128671255,\n    \"eddbID\": 1420,\n    \"grp\": \"fx\",\n    \"id\": \"F6\",\n    \"maximum\": 2,\n    \"rating\": \"D\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size3_Class2\",\n    \"ukName\": \"Fuel Transfer\",\n    \"description\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 2,\n      \"Power Draw\": 0.2,\n      \"Maximum Range\": 0.88\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 21600,\n    \"edID\": 128671256,\n    \"eddbID\": 1421,\n    \"grp\": \"fx\",\n    \"id\": \"F7\",\n    \"maximum\": 2,\n    \"rating\": \"C\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size3_Class3\",\n    \"ukName\": \"Fuel Transfer\",\n    \"description\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 5,\n      \"Power Draw\": 0.34,\n      \"Maximum Range\": 1.1\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 43200,\n    \"edID\": 128671257,\n    \"eddbID\": 1422,\n    \"grp\": \"fx\",\n    \"id\": \"F8\",\n    \"maximum\": 2,\n    \"rating\": \"B\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size3_Class4\",\n    \"ukName\": \"Fuel Transfer\",\n    \"description\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 8,\n      \"Power Draw\": 0.48,\n      \"Maximum Range\": 1.32\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 86400,\n    \"edID\": 128671258,\n    \"eddbID\": 1423,\n    \"grp\": \"fx\",\n    \"id\": \"F9\",\n    \"maximum\": 2,\n    \"rating\": \"A\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size3_Class5\",\n    \"ukName\": \"Fuel Transfer\",\n    \"description\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 5,\n      \"Power Draw\": 0.41,\n      \"Maximum Range\": 1.54\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 48600,\n    \"edID\": 128671259,\n    \"eddbID\": 1424,\n    \"grp\": \"fx\",\n    \"id\": \"Fa\",\n    \"maximum\": 4,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size5_Class1\",\n    \"ukName\": \"Fuel Transfer\",\n    \"description\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 20,\n      \"Power Draw\": 0.4,\n      \"Maximum Range\": 0.78\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 97200,\n    \"edID\": 128671260,\n    \"eddbID\": 1425,\n    \"grp\": \"fx\",\n    \"id\": \"Fb\",\n    \"maximum\": 4,\n    \"rating\": \"D\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size5_Class2\",\n    \"ukName\": \"Fuel Transfer\",\n    \"description\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 8,\n      \"Power Draw\": 0.3,\n      \"Maximum Range\": 1.04\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 194400,\n    \"edID\": 128671261,\n    \"eddbID\": 1426,\n    \"grp\": \"fx\",\n    \"id\": \"Fc\",\n    \"maximum\": 4,\n    \"rating\": \"C\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size5_Class3\",\n    \"ukName\": \"Fuel Transfer\",\n    \"description\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 20,\n      \"Power Draw\": 0.5,\n      \"Maximum Range\": 1.3\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 388800,\n    \"edID\": 128671262,\n    \"eddbID\": 1427,\n    \"grp\": \"fx\",\n    \"id\": \"Fd\",\n    \"maximum\": 4,\n    \"rating\": \"B\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size5_Class4\",\n    \"ukName\": \"Fuel Transfer\",\n    \"description\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 32,\n      \"Power Draw\": 0.97,\n      \"Maximum Range\": 1.56\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 777600,\n    \"edID\": 128671263,\n    \"eddbID\": 1428,\n    \"grp\": \"fx\",\n    \"id\": \"Fe\",\n    \"maximum\": 4,\n    \"rating\": \"A\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size5_Class5\",\n    \"ukName\": \"Fuel Transfer\",\n    \"description\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 20,\n      \"Power Draw\": 0.6,\n      \"Maximum Range\": 1.82\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 437400,\n    \"edID\": 128671264,\n    \"eddbID\": 1429,\n    \"grp\": \"fx\",\n    \"id\": \"Ff\",\n    \"maximum\": 8,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size7_Class1\",\n    \"ukName\": \"Fuel Transfer\",\n    \"description\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 80,\n      \"Power Draw\": 0.55,\n      \"Maximum Range\": 1.02\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 874800,\n    \"edID\": 128671265,\n    \"eddbID\": 1430,\n    \"grp\": \"fx\",\n    \"id\": \"Fg\",\n    \"maximum\": 8,\n    \"rating\": \"D\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size7_Class2\",\n    \"ukName\": \"Fuel Transfer\",\n    \"description\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 32,\n      \"Power Draw\": 0.41,\n      \"Maximum Range\": 1.36\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 1749600,\n    \"edID\": 128671266,\n    \"eddbID\": 1431,\n    \"grp\": \"fx\",\n    \"id\": \"Fh\",\n    \"maximum\": 8,\n    \"rating\": \"C\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size7_Class3\",\n    \"ukName\": \"Fuel Transfer\",\n    \"description\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 80,\n      \"Power Draw\": 0.69,\n      \"Maximum Range\": 1.7\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 3499200,\n    \"edID\": 128671267,\n    \"eddbID\": 1432,\n    \"grp\": \"fx\",\n    \"id\": \"Fi\",\n    \"maximum\": 8,\n    \"rating\": \"B\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size7_Class4\",\n    \"ukName\": \"Fuel Transfer\",\n    \"description\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 128,\n      \"Power Draw\": 0.97,\n      \"Maximum Range\": 2.04\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 6998400,\n    \"edID\": 128671268,\n    \"eddbID\": 1433,\n    \"grp\": \"fx\",\n    \"id\": \"Fj\",\n    \"maximum\": 8,\n    \"rating\": \"A\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size7_Class5\",\n    \"ukName\": \"Fuel Transfer\",\n    \"description\": \"Controls a limpet to transfer 1 ton of fuel to a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 80,\n      \"Power Draw\": 0.83,\n      \"Maximum Range\": 2.38\n    }\n  },\n  {\n    \"jumpboost\": 4,\n    \"class\": 1,\n    \"cost\": 405022,\n    \"edID\": 128833975,\n    \"eddbID\": 1730,\n    \"grp\": \"gfsb\",\n    \"id\": \"1H\",\n    \"rating\": \"H\",\n    \"symbol\": \"Int_GuardianFSDBooster_Size1\",\n    \"ukName\": \"Guardian FSD Booster\",\n    \"description\": \"Used to boost the output of Frame Shift Drives, but at the cost of overall fuel efficiency.\",\n    \"properties\": {\n      \"Integrity\": 32,\n      \"Power Draw\": 0.75,\n      \"Mass\": 1.3\n    }\n  },\n  {\n    \"jumpboost\": 6,\n    \"class\": 2,\n    \"cost\": 810521,\n    \"edID\": 128833976,\n    \"eddbID\": 1731,\n    \"grp\": \"gfsb\",\n    \"id\": \"1M\",\n    \"rating\": \"H\",\n    \"symbol\": \"Int_GuardianFSDBooster_Size2\",\n    \"ukName\": \"Guardian FSD Booster\",\n    \"description\": \"Used to boost the output of Frame Shift Drives, but at the cost of overall fuel efficiency.\",\n    \"properties\": {\n      \"Integrity\": 32,\n      \"Power Draw\": 0.98,\n      \"Mass\": 1.3\n    }\n  },\n  {\n    \"jumpboost\": 7.75,\n    \"class\": 3,\n    \"cost\": 1620431,\n    \"edID\": 128833977,\n    \"eddbID\": 1732,\n    \"grp\": \"gfsb\",\n    \"id\": \"1N\",\n    \"rating\": \"H\",\n    \"symbol\": \"Int_GuardianFSDBooster_Size3\",\n    \"ukName\": \"Guardian FSD Booster\",\n    \"description\": \"Used to boost the output of Frame Shift Drives, but at the cost of overall fuel efficiency.\",\n    \"properties\": {\n      \"Integrity\": 32,\n      \"Power Draw\": 1.27,\n      \"Mass\": 1.3\n    }\n  },\n  {\n    \"jumpboost\": 9.25,\n    \"class\": 4,\n    \"cost\": 3245013,\n    \"edID\": 128833978,\n    \"eddbID\": 1733,\n    \"grp\": \"gfsb\",\n    \"id\": \"1P\",\n    \"rating\": \"H\",\n    \"symbol\": \"Int_GuardianFSDBooster_Size4\",\n    \"ukName\": \"Guardian FSD Booster\",\n    \"description\": \"Used to boost the output of Frame Shift Drives, but at the cost of overall fuel efficiency.\",\n    \"properties\": {\n      \"Integrity\": 32,\n      \"Power Draw\": 1.65,\n      \"Mass\": 1.3\n    }\n  },\n  {\n    \"jumpboost\": 10.5,\n    \"class\": 5,\n    \"cost\": 6483101,\n    \"edID\": 128833979,\n    \"eddbID\": 1734,\n    \"grp\": \"gfsb\",\n    \"id\": \"1O\",\n    \"rating\": \"H\",\n    \"symbol\": \"Int_GuardianFSDBooster_Size5\",\n    \"ukName\": \"Guardian FSD Booster\",\n    \"description\": \"Used to boost the output of Frame Shift Drives, but at the cost of overall fuel efficiency.\",\n    \"properties\": {\n      \"Integrity\": 32,\n      \"Power Draw\": 2.14,\n      \"Mass\": 1.3\n    }\n  },\n  {\n    \"rating\": \"D\",\n    \"class\": 1,\n    \"id\": \"1V\",\n    \"edID\": 128833946,\n    \"eddbID\": 1701,\n    \"causres\": 0.05,\n    \"cost\": 30000,\n    \"symbol\": \"Int_GuardianHullReinforcement_Size1_Class2\",\n    \"grp\": \"ghrp\",\n    \"ukName\": \"Guardian Hull Reinforcement\",\n    \"description\": \"Powered module that increases the ship's hull integrity and resistance to Thargoid, caustic and thermic damage.\",\n    \"properties\": {\n      \"Mass\": 1,\n      \"Power Draw\": 0.56,\n      \"Hull Reinforcement\": 138,\n      \"Explosive Resistance\": 0,\n      \"Kinetic Resistance\": 0,\n      \"Thermal Resistance\": 0.02\n    }\n  },\n  {\n    \"rating\": \"E\",\n    \"class\": 1,\n    \"id\": \"1W\",\n    \"edID\": 128833945,\n    \"eddbID\": 1700,\n    \"causres\": 0.05,\n    \"cost\": 10000,\n    \"symbol\": \"Int_GuardianHullReinforcement_Size1_Class1\",\n    \"grp\": \"ghrp\",\n    \"ukName\": \"Guardian Hull Reinforcement\",\n    \"description\": \"Powered module that increases the ship's hull integrity and resistance to Thargoid, caustic and thermic damage.\",\n    \"properties\": {\n      \"Mass\": 2,\n      \"Power Draw\": 0.45,\n      \"Hull Reinforcement\": 100,\n      \"Explosive Resistance\": 0,\n      \"Kinetic Resistance\": 0,\n      \"Thermal Resistance\": 0.02\n    }\n  },\n  {\n    \"rating\": \"D\",\n    \"class\": 2,\n    \"id\": \"1X\",\n    \"edID\": 128833948,\n    \"eddbID\": 1703,\n    \"causres\": 0.05,\n    \"cost\": 72000,\n    \"symbol\": \"Int_GuardianHullReinforcement_Size2_Class2\",\n    \"grp\": \"ghrp\",\n    \"ukName\": \"Guardian Hull Reinforcement\",\n    \"description\": \"Powered module that increases the ship's hull integrity and resistance to Thargoid, caustic and thermic damage.\",\n    \"properties\": {\n      \"Mass\": 2,\n      \"Power Draw\": 0.79,\n      \"Hull Reinforcement\": 238,\n      \"Explosive Resistance\": 0,\n      \"Kinetic Resistance\": 0,\n      \"Thermal Resistance\": 0.02\n    }\n  },\n  {\n    \"rating\": \"E\",\n    \"class\": 2,\n    \"id\": \"1Y\",\n    \"edID\": 128833947,\n    \"eddbID\": 1702,\n    \"causres\": 0.05,\n    \"cost\": 24000,\n    \"symbol\": \"Int_GuardianHullReinforcement_Size2_Class1\",\n    \"grp\": \"ghrp\",\n    \"ukName\": \"Guardian Hull Reinforcement\",\n    \"description\": \"Powered module that increases the ship's hull integrity and resistance to Thargoid, caustic and thermic damage.\",\n    \"properties\": {\n      \"Mass\": 4,\n      \"Power Draw\": 0.68,\n      \"Hull Reinforcement\": 188,\n      \"Explosive Resistance\": 0,\n      \"Kinetic Resistance\": 0,\n      \"Thermal Resistance\": 0.02\n    }\n  },\n  {\n    \"rating\": \"D\",\n    \"class\": 3,\n    \"id\": \"1Z\",\n    \"edID\": 128833950,\n    \"eddbID\": 1705,\n    \"causres\": 0.05,\n    \"cost\": 172800,\n    \"symbol\": \"Int_GuardianHullReinforcement_Size3_Class2\",\n    \"grp\": \"ghrp\",\n    \"ukName\": \"Guardian Hull Reinforcement\",\n    \"description\": \"Powered module that increases the ship's hull integrity and resistance to Thargoid, caustic and thermic damage.\",\n    \"properties\": {\n      \"Mass\": 4,\n      \"Power Draw\": 1.01,\n      \"Hull Reinforcement\": 325,\n      \"Explosive Resistance\": 0,\n      \"Kinetic Resistance\": 0,\n      \"Thermal Resistance\": 0.02\n    }\n  },\n  {\n    \"rating\": \"E\",\n    \"class\": 3,\n    \"id\": \"2A\",\n    \"edID\": 128833949,\n    \"eddbID\": 1704,\n    \"causres\": 0.05,\n    \"cost\": 57600,\n    \"symbol\": \"Int_GuardianHullReinforcement_Size3_Class1\",\n    \"grp\": \"ghrp\",\n    \"ukName\": \"Guardian Hull Reinforcement\",\n    \"description\": \"Powered module that increases the ship's hull integrity and resistance to Thargoid, caustic and thermic damage.\",\n    \"properties\": {\n      \"Mass\": 8,\n      \"Power Draw\": 0.9,\n      \"Hull Reinforcement\": 288,\n      \"Explosive Resistance\": 0,\n      \"Kinetic Resistance\": 0,\n      \"Thermal Resistance\": 0.02\n    }\n  },\n  {\n    \"rating\": \"D\",\n    \"class\": 4,\n    \"edID\": 128833952,\n    \"eddbID\": 1707,\n    \"causres\": 0.05,\n    \"cost\": 414720,\n    \"id\": \"2R\",\n    \"symbol\": \"Int_GuardianHullReinforcement_Size4_Class2\",\n    \"grp\": \"ghrp\",\n    \"ukName\": \"Guardian Hull Reinforcement\",\n    \"description\": \"Powered module that increases the ship's hull integrity and resistance to Thargoid, caustic and thermic damage.\",\n    \"properties\": {\n      \"Mass\": 8,\n      \"Power Draw\": 1.24,\n      \"Hull Reinforcement\": 413,\n      \"Explosive Resistance\": 0,\n      \"Kinetic Resistance\": 0,\n      \"Thermal Resistance\": 0.02\n    }\n  },\n  {\n    \"rating\": \"E\",\n    \"class\": 4,\n    \"edID\": 128833951,\n    \"eddbID\": 1706,\n    \"causres\": 0.05,\n    \"cost\": 138240,\n    \"id\": \"2B\",\n    \"symbol\": \"Int_GuardianHullReinforcement_Size4_Class1\",\n    \"grp\": \"ghrp\",\n    \"ukName\": \"Guardian Hull Reinforcement\",\n    \"description\": \"Powered module that increases the ship's hull integrity and resistance to Thargoid, caustic and thermic damage.\",\n    \"properties\": {\n      \"Mass\": 16,\n      \"Power Draw\": 1.13,\n      \"Hull Reinforcement\": 375,\n      \"Explosive Resistance\": 0,\n      \"Kinetic Resistance\": 0,\n      \"Thermal Resistance\": 0.02\n    }\n  },\n  {\n    \"rating\": \"D\",\n    \"class\": 5,\n    \"edID\": 128833954,\n    \"eddbID\": 1709,\n    \"causres\": 0.05,\n    \"cost\": 995330,\n    \"id\": \"2C\",\n    \"symbol\": \"Int_GuardianHullReinforcement_Size5_Class2\",\n    \"grp\": \"ghrp\",\n    \"ukName\": \"Guardian Hull Reinforcement\",\n    \"description\": \"Powered module that increases the ship's hull integrity and resistance to Thargoid, caustic and thermic damage.\",\n    \"properties\": {\n      \"Mass\": 16,\n      \"Power Draw\": 1.46,\n      \"Hull Reinforcement\": 488,\n      \"Explosive Resistance\": 0,\n      \"Kinetic Resistance\": 0,\n      \"Thermal Resistance\": 0.02\n    }\n  },\n  {\n    \"rating\": \"E\",\n    \"class\": 5,\n    \"edID\": 128833953,\n    \"eddbID\": 1708,\n    \"causres\": 0.05,\n    \"cost\": 331778,\n    \"id\": \"2D\",\n    \"symbol\": \"Int_GuardianHullReinforcement_Size5_Class1\",\n    \"grp\": \"ghrp\",\n    \"ukName\": \"Guardian Hull Reinforcement\",\n    \"description\": \"Powered module that increases the ship's hull integrity and resistance to Thargoid, caustic and thermic damage.\",\n    \"properties\": {\n      \"Mass\": 32,\n      \"Power Draw\": 1.35,\n      \"Hull Reinforcement\": 450,\n      \"Explosive Resistance\": 0,\n      \"Kinetic Resistance\": 0,\n      \"Thermal Resistance\": 0.02\n    }\n  },\n  {\n    \"rating\": \"D\",\n    \"class\": 1,\n    \"eddbID\": 1711,\n    \"protection\": 0.6,\n    \"cost\": 30000,\n    \"id\": \"2E\",\n    \"edID\": 128833956,\n    \"symbol\": \"Int_GuardianModuleReinforcement_Size1_Class2\",\n    \"grp\": \"gmrp\",\n    \"ukName\": \"Guardian Module Reinforcement\",\n    \"description\": \"Powered module that protects a ships modules from any weapons fire penetrating the hull. It utilises it's own damage capacity to absorb a proportion of the damage applied to modules, eventually burning out when it's capacity reaches zero. This version is based on Guardian research and has resistances to Thargoid specific disruption technology.\",\n    \"properties\": {\n      \"Mass\": 1,\n      \"Power Draw\": 0.34,\n      \"Integrity\": 77\n    }\n  },\n  {\n    \"rating\": \"E\",\n    \"class\": 1,\n    \"eddbID\": 1710,\n    \"protection\": 0.3,\n    \"cost\": 10000,\n    \"id\": \"2F\",\n    \"edID\": 128833955,\n    \"symbol\": \"Int_GuardianModuleReinforcement_Size1_Class1\",\n    \"grp\": \"gmrp\",\n    \"ukName\": \"Guardian Module Reinforcement\",\n    \"description\": \"Powered module that protects a ships modules from any weapons fire penetrating the hull. It utilises it's own damage capacity to absorb a proportion of the damage applied to modules, eventually burning out when it's capacity reaches zero. This version is based on Guardian research and has resistances to Thargoid specific disruption technology.\",\n    \"properties\": {\n      \"Mass\": 2,\n      \"Power Draw\": 0.27,\n      \"Integrity\": 85\n    }\n  },\n  {\n    \"rating\": \"D\",\n    \"class\": 2,\n    \"eddbID\": 1713,\n    \"protection\": 0.6,\n    \"cost\": 72000,\n    \"id\": \"2G\",\n    \"edID\": 128833958,\n    \"symbol\": \"Int_GuardianModuleReinforcement_Size2_Class2\",\n    \"grp\": \"gmrp\",\n    \"ukName\": \"Guardian Module Reinforcement\",\n    \"description\": \"Powered module that protects a ships modules from any weapons fire penetrating the hull. It utilises it's own damage capacity to absorb a proportion of the damage applied to modules, eventually burning out when it's capacity reaches zero. This version is based on Guardian research and has resistances to Thargoid specific disruption technology.\",\n    \"properties\": {\n      \"Mass\": 2,\n      \"Power Draw\": 0.47,\n      \"Integrity\": 116\n    }\n  },\n  {\n    \"rating\": \"E\",\n    \"class\": 2,\n    \"eddbID\": 1712,\n    \"protection\": 0.3,\n    \"cost\": 24000,\n    \"id\": \"2S\",\n    \"edID\": 128833957,\n    \"symbol\": \"Int_GuardianModuleReinforcement_Size2_Class1\",\n    \"grp\": \"gmrp\",\n    \"ukName\": \"Guardian Module Reinforcement\",\n    \"description\": \"Powered module that protects a ships modules from any weapons fire penetrating the hull. It utilises it's own damage capacity to absorb a proportion of the damage applied to modules, eventually burning out when it's capacity reaches zero. This version is based on Guardian research and has resistances to Thargoid specific disruption technology.\",\n    \"properties\": {\n      \"Mass\": 4,\n      \"Power Draw\": 0.41,\n      \"Integrity\": 127\n    }\n  },\n  {\n    \"rating\": \"D\",\n    \"class\": 3,\n    \"eddbID\": 1715,\n    \"protection\": 0.6,\n    \"cost\": 172800,\n    \"id\": \"2H\",\n    \"edID\": 128833960,\n    \"symbol\": \"Int_GuardianModuleReinforcement_Size3_Class2\",\n    \"grp\": \"gmrp\",\n    \"ukName\": \"Guardian Module Reinforcement\",\n    \"description\": \"Powered module that protects a ships modules from any weapons fire penetrating the hull. It utilises it's own damage capacity to absorb a proportion of the damage applied to modules, eventually burning out when it's capacity reaches zero. This version is based on Guardian research and has resistances to Thargoid specific disruption technology.\",\n    \"properties\": {\n      \"Mass\": 4,\n      \"Power Draw\": 0.61,\n      \"Integrity\": 171\n    }\n  },\n  {\n    \"rating\": \"E\",\n    \"class\": 3,\n    \"eddbID\": 1714,\n    \"protection\": 0.3,\n    \"cost\": 57600,\n    \"id\": \"2I\",\n    \"edID\": 128833959,\n    \"symbol\": \"Int_GuardianModuleReinforcement_Size3_Class1\",\n    \"grp\": \"gmrp\",\n    \"ukName\": \"Guardian Module Reinforcement\",\n    \"description\": \"Powered module that protects a ships modules from any weapons fire penetrating the hull. It utilises it's own damage capacity to absorb a proportion of the damage applied to modules, eventually burning out when it's capacity reaches zero. This version is based on Guardian research and has resistances to Thargoid specific disruption technology.\",\n    \"properties\": {\n      \"Mass\": 8,\n      \"Power Draw\": 0.54,\n      \"Integrity\": 187\n    }\n  },\n  {\n    \"rating\": \"D\",\n    \"class\": 4,\n    \"eddbID\": 1717,\n    \"protection\": 0.6,\n    \"cost\": 414720,\n    \"id\": \"2J\",\n    \"edID\": 128833962,\n    \"symbol\": \"Int_GuardianModuleReinforcement_Size4_Class2\",\n    \"grp\": \"gmrp\",\n    \"ukName\": \"Guardian Module Reinforcement\",\n    \"description\": \"Powered module that protects a ships modules from any weapons fire penetrating the hull. It utilises it's own damage capacity to absorb a proportion of the damage applied to modules, eventually burning out when it's capacity reaches zero. This version is based on Guardian research and has resistances to Thargoid specific disruption technology.\",\n    \"properties\": {\n      \"Mass\": 8,\n      \"Power Draw\": 0.74,\n      \"Integrity\": 259\n    }\n  },\n  {\n    \"rating\": \"E\",\n    \"class\": 4,\n    \"eddbID\": 1716,\n    \"protection\": 0.3,\n    \"cost\": 138240,\n    \"id\": \"2K\",\n    \"edID\": 128833961,\n    \"symbol\": \"Int_GuardianModuleReinforcement_Size4_Class1\",\n    \"grp\": \"gmrp\",\n    \"ukName\": \"Guardian Module Reinforcement\",\n    \"description\": \"Powered module that protects a ships modules from any weapons fire penetrating the hull. It utilises it's own damage capacity to absorb a proportion of the damage applied to modules, eventually burning out when it's capacity reaches zero. This version is based on Guardian research and has resistances to Thargoid specific disruption technology.\",\n    \"properties\": {\n      \"Mass\": 16,\n      \"Power Draw\": 0.68,\n      \"Integrity\": 286\n    }\n  },\n  {\n    \"rating\": \"D\",\n    \"class\": 5,\n    \"eddbID\": 1719,\n    \"protection\": 0.6,\n    \"cost\": 995330,\n    \"id\": \"2L\",\n    \"edID\": 128833964,\n    \"symbol\": \"Int_GuardianModuleReinforcement_Size5_Class2\",\n    \"grp\": \"gmrp\",\n    \"ukName\": \"Guardian Module Reinforcement\",\n    \"description\": \"Powered module that protects a ships modules from any weapons fire penetrating the hull. It utilises it's own damage capacity to absorb a proportion of the damage applied to modules, eventually burning out when it's capacity reaches zero. This version is based on Guardian research and has resistances to Thargoid specific disruption technology.\",\n    \"properties\": {\n      \"Mass\": 16,\n      \"Power Draw\": 0.88,\n      \"Integrity\": 385\n    }\n  },\n  {\n    \"rating\": \"E\",\n    \"class\": 5,\n    \"eddbID\": 1718,\n    \"protection\": 0.3,\n    \"cost\": 331778,\n    \"id\": \"2M\",\n    \"edID\": 128833963,\n    \"symbol\": \"Int_GuardianModuleReinforcement_Size5_Class1\",\n    \"grp\": \"gmrp\",\n    \"ukName\": \"Guardian Module Reinforcement\",\n    \"description\": \"Powered module that protects a ships modules from any weapons fire penetrating the hull. It utilises it's own damage capacity to absorb a proportion of the damage applied to modules, eventually burning out when it's capacity reaches zero. This version is based on Guardian research and has resistances to Thargoid specific disruption technology.\",\n    \"properties\": {\n      \"Mass\": 32,\n      \"Power Draw\": 0.81,\n      \"Integrity\": 424\n    }\n  },\n  {\n    \"shieldaddition\": 44,\n    \"class\": 1,\n    \"cost\": 10000,\n    \"edID\": 128833965,\n    \"eddbID\": 1720,\n    \"grp\": \"gsrp\",\n    \"id\": \"0Z\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_GuardianShieldReinforcement_Size1_Class1\",\n    \"ukName\": \"Guardian Shield Reinforcement\",\n    \"ukDiscript\": \"\",\n    \"properties\": {\n      \"Integrity\": 36,\n      \"Power Draw\": 0.35,\n      \"Mass\": 2\n    }\n  },\n  {\n    \"shieldaddition\": 61,\n    \"class\": 1,\n    \"cost\": 30000,\n    \"edID\": 128833966,\n    \"eddbID\": 1721,\n    \"grp\": \"gsrp\",\n    \"id\": \"0y\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_GuardianShieldReinforcement_Size1_Class2\",\n    \"ukName\": \"Guardian Shield Reinforcement\",\n    \"ukDiscript\": \"\",\n    \"properties\": {\n      \"Integrity\": 36,\n      \"Power Draw\": 0.46,\n      \"Mass\": 1\n    }\n  },\n  {\n    \"shieldaddition\": 83,\n    \"class\": 2,\n    \"cost\": 24000,\n    \"edID\": 128833967,\n    \"eddbID\": 1722,\n    \"grp\": \"gsrp\",\n    \"id\": \"0z\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_GuardianShieldReinforcement_Size2_Class1\",\n    \"ukName\": \"Guardian Shield Reinforcement\",\n    \"ukDiscript\": \"\",\n    \"properties\": {\n      \"Integrity\": 36,\n      \"Power Draw\": 0.56,\n      \"Mass\": 4\n    }\n  },\n  {\n    \"shieldaddition\": 105,\n    \"class\": 2,\n    \"cost\": 72000,\n    \"edID\": 128833968,\n    \"eddbID\": 1723,\n    \"grp\": \"gsrp\",\n    \"id\": \"1E\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_GuardianShieldReinforcement_Size2_Class2\",\n    \"ukName\": \"Guardian Shield Reinforcement\",\n    \"ukDiscript\": \"\",\n    \"properties\": {\n      \"Integrity\": 36,\n      \"Power Draw\": 0.67,\n      \"Mass\": 2\n    }\n  },\n  {\n    \"shieldaddition\": 143,\n    \"class\": 3,\n    \"cost\": 172800,\n    \"edID\": 128833970,\n    \"eddbID\": 1725,\n    \"grp\": \"gsrp\",\n    \"id\": \"1F\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_GuardianShieldReinforcement_Size3_Class2\",\n    \"ukName\": \"Guardian Shield Reinforcement\",\n    \"ukDiscript\": \"\",\n    \"properties\": {\n      \"Integrity\": 36,\n      \"Power Draw\": 0.84,\n      \"Mass\": 4\n    }\n  },\n  {\n    \"shieldaddition\": 127,\n    \"class\": 3,\n    \"cost\": 57600,\n    \"edID\": 128833969,\n    \"eddbID\": 1724,\n    \"grp\": \"gsrp\",\n    \"id\": \"1G\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_GuardianShieldReinforcement_Size3_Class1\",\n    \"ukName\": \"Guardian Shield Reinforcement\",\n    \"ukDiscript\": \"\",\n    \"properties\": {\n      \"Integrity\": 36,\n      \"Power Draw\": 0.74,\n      \"Mass\": 8\n    }\n  },\n  {\n    \"shieldaddition\": 165,\n    \"class\": 4,\n    \"cost\": 138240,\n    \"edID\": 128833971,\n    \"eddbID\": 1726,\n    \"grp\": \"gsrp\",\n    \"id\": \"1I\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_GuardianShieldReinforcement_Size4_Class1\",\n    \"ukName\": \"Guardian Shield Reinforcement\",\n    \"ukDiscript\": \"\",\n    \"properties\": {\n      \"Integrity\": 36,\n      \"Power Draw\": 0.95,\n      \"Mass\": 16\n    }\n  },\n  {\n    \"shieldaddition\": 182,\n    \"class\": 4,\n    \"cost\": 414720,\n    \"edID\": 128833972,\n    \"eddbID\": 1727,\n    \"grp\": \"gsrp\",\n    \"id\": \"1J\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_GuardianShieldReinforcement_Size4_Class2\",\n    \"ukName\": \"Guardian Shield Reinforcement\",\n    \"ukDiscript\": \"\",\n    \"properties\": {\n      \"Integrity\": 36,\n      \"Power Draw\": 1.05,\n      \"Mass\": 8\n    }\n  },\n  {\n    \"shieldaddition\": 215,\n    \"class\": 5,\n    \"cost\": 995330,\n    \"edID\": 128833974,\n    \"eddbID\": 1729,\n    \"grp\": \"gsrp\",\n    \"id\": \"1K\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_GuardianShieldReinforcement_Size5_Class2\",\n    \"ukName\": \"Guardian Shield Reinforcement\",\n    \"ukDiscript\": \"\",\n    \"properties\": {\n      \"Integrity\": 36,\n      \"Power Draw\": 1.26,\n      \"Mass\": 16\n    }\n  },\n  {\n    \"shieldaddition\": 198,\n    \"class\": 5,\n    \"cost\": 331778,\n    \"edID\": 128833973,\n    \"eddbID\": 1728,\n    \"grp\": \"gsrp\",\n    \"id\": \"1L\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_GuardianShieldReinforcement_Size5_Class1\",\n    \"ukName\": \"Guardian Shield Reinforcement\",\n    \"ukDiscript\": \"\",\n    \"properties\": {\n      \"Integrity\": 36,\n      \"Power Draw\": 1.16,\n      \"Mass\": 32\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 600,\n    \"edID\": 128066532,\n    \"eddbID\": 1207,\n    \"grp\": \"hb\",\n    \"id\": \"6u\",\n    \"maximum\": 2,\n    \"rating\": \"E\",\n    \"time\": 42,\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size1_Class1\",\n    \"ukName\": \"Hatch Breaker\",\n    \"description\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\",\n    \"properties\": {\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.12,\n      \"Maximum Range\": 1.5\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 1200,\n    \"edID\": 128066533,\n    \"eddbID\": 1208,\n    \"grp\": \"hb\",\n    \"id\": \"6t\",\n    \"maximum\": 1,\n    \"rating\": \"D\",\n    \"time\": 36,\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size1_Class2\",\n    \"ukName\": \"Hatch Breaker\",\n    \"description\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\",\n    \"properties\": {\n      \"Mass\": 0.5,\n      \"Power Draw\": 0.16,\n      \"Maximum Range\": 2\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 2400,\n    \"edID\": 128066534,\n    \"eddbID\": 1209,\n    \"grp\": \"hb\",\n    \"id\": \"6s\",\n    \"maximum\": 1,\n    \"rating\": \"C\",\n    \"time\": 30,\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size1_Class3\",\n    \"ukName\": \"Hatch Breaker\",\n    \"description\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\",\n    \"properties\": {\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.2,\n      \"Maximum Range\": 2.5\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 4800,\n    \"edID\": 128066535,\n    \"eddbID\": 1210,\n    \"grp\": \"hb\",\n    \"id\": \"6r\",\n    \"maximum\": 2,\n    \"rating\": \"B\",\n    \"time\": 24,\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size1_Class4\",\n    \"ukName\": \"Hatch Breaker\",\n    \"description\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\",\n    \"properties\": {\n      \"Mass\": 2,\n      \"Power Draw\": 0.24,\n      \"Maximum Range\": 3\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 9600,\n    \"edID\": 128066536,\n    \"eddbID\": 1211,\n    \"grp\": \"hb\",\n    \"id\": \"6q\",\n    \"maximum\": 1,\n    \"rating\": \"A\",\n    \"time\": 18,\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size1_Class5\",\n    \"ukName\": \"Hatch Breaker\",\n    \"description\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\",\n    \"properties\": {\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.28,\n      \"Maximum Range\": 3.5\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 5400,\n    \"edID\": 128066537,\n    \"eddbID\": 1212,\n    \"grp\": \"hb\",\n    \"id\": \"73\",\n    \"maximum\": 4,\n    \"rating\": \"E\",\n    \"time\": 36,\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size3_Class1\",\n    \"ukName\": \"Hatch Breaker\",\n    \"description\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\",\n    \"properties\": {\n      \"Mass\": 5,\n      \"Power Draw\": 0.18,\n      \"Maximum Range\": 1.62\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 10800,\n    \"edID\": 128066538,\n    \"eddbID\": 1213,\n    \"grp\": \"hb\",\n    \"id\": \"72\",\n    \"maximum\": 3,\n    \"rating\": \"D\",\n    \"time\": 31,\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size3_Class2\",\n    \"ukName\": \"Hatch Breaker\",\n    \"description\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\",\n    \"properties\": {\n      \"Mass\": 2,\n      \"Power Draw\": 0.24,\n      \"Maximum Range\": 2.16\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 21600,\n    \"edID\": 128066539,\n    \"eddbID\": 1214,\n    \"grp\": \"hb\",\n    \"id\": \"71\",\n    \"maximum\": 3,\n    \"rating\": \"C\",\n    \"time\": 26,\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size3_Class3\",\n    \"ukName\": \"Hatch Breaker\",\n    \"description\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\",\n    \"properties\": {\n      \"Mass\": 5,\n      \"Power Draw\": 0.3,\n      \"Maximum Range\": 2.7\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 43200,\n    \"edID\": 128066540,\n    \"eddbID\": 1215,\n    \"grp\": \"hb\",\n    \"id\": \"70\",\n    \"maximum\": 4,\n    \"rating\": \"B\",\n    \"time\": 21,\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size3_Class4\",\n    \"ukName\": \"Hatch Breaker\",\n    \"description\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\",\n    \"properties\": {\n      \"Mass\": 8,\n      \"Power Draw\": 0.36,\n      \"Maximum Range\": 3.24\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 86400,\n    \"edID\": 128066541,\n    \"eddbID\": 1216,\n    \"grp\": \"hb\",\n    \"id\": \"6v\",\n    \"maximum\": 3,\n    \"rating\": \"A\",\n    \"time\": 16,\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size3_Class5\",\n    \"ukName\": \"Hatch Breaker\",\n    \"description\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\",\n    \"properties\": {\n      \"Mass\": 5,\n      \"Power Draw\": 0.42,\n      \"Maximum Range\": 3.78\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 48600,\n    \"edID\": 128066542,\n    \"eddbID\": 1217,\n    \"grp\": \"hb\",\n    \"id\": \"78\",\n    \"maximum\": 9,\n    \"rating\": \"E\",\n    \"time\": 31,\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size5_Class1\",\n    \"ukName\": \"Hatch Breaker\",\n    \"description\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\",\n    \"properties\": {\n      \"Mass\": 20,\n      \"Power Draw\": 0.3,\n      \"Maximum Range\": 1.98\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 97200,\n    \"edID\": 128066543,\n    \"eddbID\": 1218,\n    \"grp\": \"hb\",\n    \"id\": \"77\",\n    \"maximum\": 6,\n    \"rating\": \"D\",\n    \"time\": 26,\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size5_Class2\",\n    \"ukName\": \"Hatch Breaker\",\n    \"description\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\",\n    \"properties\": {\n      \"Mass\": 8,\n      \"Power Draw\": 0.4,\n      \"Maximum Range\": 2.64\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 194400,\n    \"edID\": 128066544,\n    \"eddbID\": 1219,\n    \"grp\": \"hb\",\n    \"id\": \"76\",\n    \"maximum\": 7,\n    \"rating\": \"C\",\n    \"time\": 22,\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size5_Class3\",\n    \"ukName\": \"Hatch Breaker\",\n    \"description\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\",\n    \"properties\": {\n      \"Mass\": 20,\n      \"Power Draw\": 0.5,\n      \"Maximum Range\": 3.3\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 388800,\n    \"edID\": 128066545,\n    \"eddbID\": 1220,\n    \"grp\": \"hb\",\n    \"id\": \"75\",\n    \"maximum\": 9,\n    \"rating\": \"B\",\n    \"time\": 18,\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size5_Class4\",\n    \"ukName\": \"Hatch Breaker\",\n    \"description\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\",\n    \"properties\": {\n      \"Mass\": 32,\n      \"Power Draw\": 0.6,\n      \"Maximum Range\": 3.96\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 777600,\n    \"edID\": 128066546,\n    \"eddbID\": 1221,\n    \"grp\": \"hb\",\n    \"id\": \"74\",\n    \"maximum\": 6,\n    \"rating\": \"A\",\n    \"time\": 13,\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size5_Class5\",\n    \"ukName\": \"Hatch Breaker\",\n    \"description\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\",\n    \"properties\": {\n      \"Mass\": 20,\n      \"Power Draw\": 0.7,\n      \"Maximum Range\": 4.62\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 437400,\n    \"edID\": 128066547,\n    \"eddbID\": 1222,\n    \"grp\": \"hb\",\n    \"id\": \"7d\",\n    \"maximum\": 18,\n    \"rating\": \"E\",\n    \"time\": 25,\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size7_Class1\",\n    \"ukName\": \"Hatch Breaker\",\n    \"description\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\",\n    \"properties\": {\n      \"Mass\": 80,\n      \"Power Draw\": 0.42,\n      \"Maximum Range\": 2.58\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 874800,\n    \"edID\": 128066548,\n    \"eddbID\": 1223,\n    \"grp\": \"hb\",\n    \"id\": \"7c\",\n    \"maximum\": 12,\n    \"rating\": \"D\",\n    \"time\": 22,\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size7_Class2\",\n    \"ukName\": \"Hatch Breaker\",\n    \"description\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\",\n    \"properties\": {\n      \"Mass\": 32,\n      \"Power Draw\": 0.56,\n      \"Maximum Range\": 3.44\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 1749600,\n    \"edID\": 128066549,\n    \"eddbID\": 1224,\n    \"grp\": \"hb\",\n    \"id\": \"7b\",\n    \"maximum\": 15,\n    \"rating\": \"C\",\n    \"time\": 18,\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size7_Class3\",\n    \"ukName\": \"Hatch Breaker\",\n    \"description\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\",\n    \"properties\": {\n      \"Mass\": 80,\n      \"Power Draw\": 0.7,\n      \"Maximum Range\": 4.3\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 3499200,\n    \"edID\": 128066550,\n    \"eddbID\": 1225,\n    \"grp\": \"hb\",\n    \"id\": \"7a\",\n    \"maximum\": 18,\n    \"rating\": \"B\",\n    \"time\": 14,\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size7_Class4\",\n    \"ukName\": \"Hatch Breaker\",\n    \"description\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\",\n    \"properties\": {\n      \"Mass\": 128,\n      \"Power Draw\": 0.84,\n      \"Maximum Range\": 5.16\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 6998400,\n    \"edID\": 128066551,\n    \"eddbID\": 1226,\n    \"grp\": \"hb\",\n    \"id\": \"79\",\n    \"maximum\": 12,\n    \"rating\": \"A\",\n    \"time\": 11,\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size7_Class5\",\n    \"ukName\": \"Hatch Breaker\",\n    \"description\": \"Control unit that can program a blank limpet to hack a target's hold, causing cargo ejection.\",\n    \"properties\": {\n      \"Mass\": 80,\n      \"Power Draw\": 0.98,\n      \"Maximum Range\": 6.02\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 5000,\n    \"edID\": 128668537,\n    \"eddbID\": 1373,\n    \"causres\": 0,\n    \"grp\": \"hr\",\n    \"id\": \"26\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_HullReinforcement_Size1_Class1\",\n    \"ukName\": \"Hull Reinforcement\",\n    \"description\": \"Increases the ship's hull integrity and resistance to damage.\",\n    \"properties\": {\n      \"Hull Reinforcement\": 80,\n      \"Explosive Resistance\": 0.005,\n      \"Kinetic Resistance\": 0.005,\n      \"Mass\": 2,\n      \"Thermal Resistance\": 0.005\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 15000,\n    \"edID\": 128668538,\n    \"eddbID\": 1374,\n    \"causres\": 0,\n    \"grp\": \"hr\",\n    \"id\": \"25\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_HullReinforcement_Size1_Class2\",\n    \"ukName\": \"Hull Reinforcement\",\n    \"description\": \"Increases the ship's hull integrity and resistance to damage.\",\n    \"properties\": {\n      \"Hull Reinforcement\": 110,\n      \"Explosive Resistance\": 0.005,\n      \"Kinetic Resistance\": 0.005,\n      \"Mass\": 1,\n      \"Thermal Resistance\": 0.005\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 12000,\n    \"edID\": 128668539,\n    \"eddbID\": 1375,\n    \"causres\": 0,\n    \"grp\": \"hr\",\n    \"id\": \"28\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_HullReinforcement_Size2_Class1\",\n    \"ukName\": \"Hull Reinforcement\",\n    \"description\": \"Increases the ship's hull integrity and resistance to damage.\",\n    \"properties\": {\n      \"Hull Reinforcement\": 150,\n      \"Explosive Resistance\": 0.01,\n      \"Kinetic Resistance\": 0.01,\n      \"Mass\": 4,\n      \"Thermal Resistance\": 0.01\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 36000,\n    \"edID\": 128668540,\n    \"eddbID\": 1376,\n    \"causres\": 0,\n    \"grp\": \"hr\",\n    \"id\": \"27\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_HullReinforcement_Size2_Class2\",\n    \"ukName\": \"Hull Reinforcement\",\n    \"description\": \"Increases the ship's hull integrity and resistance to damage.\",\n    \"properties\": {\n      \"Hull Reinforcement\": 190,\n      \"Explosive Resistance\": 0.01,\n      \"Kinetic Resistance\": 0.01,\n      \"Mass\": 2,\n      \"Thermal Resistance\": 0.01\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 28000,\n    \"edID\": 128668541,\n    \"eddbID\": 1377,\n    \"causres\": 0,\n    \"grp\": \"hr\",\n    \"id\": \"2a\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_HullReinforcement_Size3_Class1\",\n    \"ukName\": \"Hull Reinforcement\",\n    \"description\": \"Increases the ship's hull integrity and resistance to damage.\",\n    \"properties\": {\n      \"Hull Reinforcement\": 230,\n      \"Explosive Resistance\": 0.015,\n      \"Kinetic Resistance\": 0.015,\n      \"Mass\": 8,\n      \"Thermal Resistance\": 0.015\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 84000,\n    \"edID\": 128668542,\n    \"eddbID\": 1378,\n    \"causres\": 0,\n    \"grp\": \"hr\",\n    \"id\": \"29\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_HullReinforcement_Size3_Class2\",\n    \"ukName\": \"Hull Reinforcement\",\n    \"description\": \"Increases the ship's hull integrity and resistance to damage.\",\n    \"properties\": {\n      \"Hull Reinforcement\": 260,\n      \"Explosive Resistance\": 0.015,\n      \"Kinetic Resistance\": 0.015,\n      \"Mass\": 4,\n      \"Thermal Resistance\": 0.015\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 65000,\n    \"edID\": 128668543,\n    \"eddbID\": 1379,\n    \"causres\": 0,\n    \"grp\": \"hr\",\n    \"id\": \"2c\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_HullReinforcement_Size4_Class1\",\n    \"ukName\": \"Hull Reinforcement\",\n    \"description\": \"Increases the ship's hull integrity and resistance to damage.\",\n    \"properties\": {\n      \"Hull Reinforcement\": 300,\n      \"Explosive Resistance\": 0.02,\n      \"Kinetic Resistance\": 0.02,\n      \"Mass\": 16,\n      \"Thermal Resistance\": 0.02\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 195000,\n    \"edID\": 128668544,\n    \"eddbID\": 1380,\n    \"causres\": 0,\n    \"grp\": \"hr\",\n    \"id\": \"2b\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_HullReinforcement_Size4_Class2\",\n    \"ukName\": \"Hull Reinforcement\",\n    \"description\": \"Increases the ship's hull integrity and resistance to damage.\",\n    \"properties\": {\n      \"Hull Reinforcement\": 330,\n      \"Explosive Resistance\": 0.02,\n      \"Kinetic Resistance\": 0.02,\n      \"Mass\": 8,\n      \"Thermal Resistance\": 0.02\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 150000,\n    \"edID\": 128668545,\n    \"eddbID\": 1381,\n    \"causres\": 0,\n    \"grp\": \"hr\",\n    \"id\": \"2e\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_HullReinforcement_Size5_Class1\",\n    \"ukName\": \"Hull Reinforcement\",\n    \"description\": \"Increases the ship's hull integrity and resistance to damage.\",\n    \"properties\": {\n      \"Hull Reinforcement\": 360,\n      \"Explosive Resistance\": 0.025,\n      \"Kinetic Resistance\": 0.025,\n      \"Mass\": 32,\n      \"Thermal Resistance\": 0.025\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 450000,\n    \"edID\": 128668546,\n    \"eddbID\": 1382,\n    \"causres\": 0,\n    \"grp\": \"hr\",\n    \"id\": \"2d\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_HullReinforcement_Size5_Class2\",\n    \"ukName\": \"Hull Reinforcement\",\n    \"description\": \"Increases the ship's hull integrity and resistance to damage.\",\n    \"properties\": {\n      \"Hull Reinforcement\": 390,\n      \"Explosive Resistance\": 0.025,\n      \"Kinetic Resistance\": 0.025,\n      \"Mass\": 16,\n      \"Thermal Resistance\": 0.025\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 1000,\n    \"edID\": 128064346,\n    \"eddbID\": 1199,\n    \"fuel\": 2,\n    \"grp\": \"ft\",\n    \"id\": \"f1\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_FuelTank_Size1_Class3\",\n    \"ukName\": \"Fuel Tank\",\n    \"description\": \"Storage container for fuel used by ship's power plant.\",\n    \"properties\": {}\n  },\n  {\n    \"class\": 2,\n    \"cost\": 3750,\n    \"edID\": 128064347,\n    \"eddbID\": 1200,\n    \"fuel\": 4,\n    \"grp\": \"ft\",\n    \"id\": \"f2\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_FuelTank_Size2_Class3\",\n    \"ukName\": \"Fuel Tank\",\n    \"description\": \"Storage container for fuel used by ship's power plant.\",\n    \"properties\": {}\n  },\n  {\n    \"class\": 3,\n    \"cost\": 7060,\n    \"edID\": 128064348,\n    \"eddbID\": 1201,\n    \"fuel\": 8,\n    \"grp\": \"ft\",\n    \"id\": \"f3\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_FuelTank_Size3_Class3\",\n    \"ukName\": \"Fuel Tank\",\n    \"description\": \"Storage container for fuel used by ship's power plant.\",\n    \"properties\": {}\n  },\n  {\n    \"class\": 4,\n    \"cost\": 24730,\n    \"edID\": 128064349,\n    \"eddbID\": 1202,\n    \"fuel\": 16,\n    \"grp\": \"ft\",\n    \"id\": \"f4\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_FuelTank_Size4_Class3\",\n    \"ukName\": \"Fuel Tank\",\n    \"description\": \"Storage container for fuel used by ship's power plant.\",\n    \"properties\": {}\n  },\n  {\n    \"class\": 5,\n    \"cost\": 97750,\n    \"edID\": 128064350,\n    \"eddbID\": 1203,\n    \"fuel\": 32,\n    \"grp\": \"ft\",\n    \"id\": \"f5\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_FuelTank_Size5_Class3\",\n    \"ukName\": \"Fuel Tank\",\n    \"description\": \"Storage container for fuel used by ship's power plant.\",\n    \"properties\": {}\n  },\n  {\n    \"class\": 6,\n    \"cost\": 341580,\n    \"edID\": 128064351,\n    \"eddbID\": 1204,\n    \"fuel\": 64,\n    \"grp\": \"ft\",\n    \"id\": \"f6\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_FuelTank_Size6_Class3\",\n    \"ukName\": \"Fuel Tank\",\n    \"description\": \"Storage container for fuel used by ship's power plant.\",\n    \"properties\": {}\n  },\n  {\n    \"class\": 7,\n    \"cost\": 1780910,\n    \"edID\": 128064352,\n    \"eddbID\": 1205,\n    \"fuel\": 128,\n    \"grp\": \"ft\",\n    \"id\": \"f7\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_FuelTank_Size7_Class3\",\n    \"ukName\": \"Fuel Tank\",\n    \"description\": \"Storage container for fuel used by ship's power plant.\",\n    \"properties\": {}\n  },\n  {\n    \"class\": 8,\n    \"cost\": 5428431,\n    \"edID\": 128064353,\n    \"eddbID\": 1206,\n    \"fuel\": 256,\n    \"grp\": \"ft\",\n    \"id\": \"f8\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_FuelTank_Size8_Class3\",\n    \"ukName\": \"Fuel Tank\",\n    \"description\": \"Storage container for fuel used by ship's power plant.\",\n    \"properties\": {}\n  },\n  {\n    \"class\": 5,\n    \"cost\": 1658100,\n    \"edID\": 128727925,\n    \"eddbID\": 1575,\n    \"grp\": \"pcq\",\n    \"id\": \"mm\",\n    \"passengers\": 4,\n    \"rating\": \"B\",\n    \"symbol\": \"Int_PassengerCabin_Size5_Class4\",\n    \"ukName\": \"LC Passenger Cabin\",\n    \"description\": \"Luxury Class Passenger Cabin.\",\n    \"properties\": {\n      \"Mass\": 20\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 4974288,\n    \"edID\": 128727929,\n    \"eddbID\": 1576,\n    \"grp\": \"pcq\",\n    \"id\": \"mn\",\n    \"passengers\": 8,\n    \"rating\": \"B\",\n    \"symbol\": \"Int_PassengerCabin_Size6_Class4\",\n    \"ukName\": \"LC Passenger Cabin\",\n    \"description\": \"Luxury Class Passenger Cabin.\",\n    \"properties\": {\n      \"Mass\": 40\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 7501,\n    \"edID\": 128793117,\n    \"eddbID\": 0,\n    \"grp\": \"mahr\",\n    \"id\": \"y5\",\n    \"rating\": \"E\",\n    \"causres\": 0.03,\n    \"symbol\": \"Int_MetaAlloyHullReinforcement_Size1_Class1\",\n    \"ukName\": \"Meta Alloy Hull Reinforcement\",\n    \"description\": \"Increases the ship's hull integrity and resistance to caustic damage.\",\n    \"properties\": {\n      \"Hull Reinforcement\": 72,\n      \"Explosive Resistance\": 0,\n      \"Kinetic Resistance\": 0,\n      \"Mass\": 2,\n      \"Thermal Resistance\": 0\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 22501,\n    \"edID\": 128793118,\n    \"eddbID\": 0,\n    \"grp\": \"mahr\",\n    \"id\": \"y6\",\n    \"rating\": \"D\",\n    \"causres\": 0.03,\n    \"symbol\": \"Int_MetaAlloyHullReinforcement_Size1_Class2\",\n    \"ukName\": \"Meta Alloy Hull Reinforcement\",\n    \"description\": \"Increases the ship's hull integrity and resistance to caustic damage.\",\n    \"properties\": {\n      \"Hull Reinforcement\": 99,\n      \"Explosive Resistance\": 0,\n      \"Kinetic Resistance\": 0,\n      \"Mass\": 2,\n      \"Thermal Resistance\": 0\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 18000,\n    \"edID\": 128793119,\n    \"eddbID\": 0,\n    \"grp\": \"mahr\",\n    \"id\": \"y7\",\n    \"rating\": \"E\",\n    \"causres\": 0.03,\n    \"symbol\": \"Int_MetaAlloyHullReinforcement_Size2_Class1\",\n    \"ukName\": \"Meta Alloy Hull Reinforcement\",\n    \"description\": \"Increases the ship's hull integrity and resistance to caustic damage.\",\n    \"properties\": {\n      \"Hull Reinforcement\": 135,\n      \"Explosive Resistance\": 0,\n      \"Kinetic Resistance\": 0,\n      \"Mass\": 4,\n      \"Thermal Resistance\": 0\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 54000,\n    \"edID\": 128793120,\n    \"eddbID\": 0,\n    \"grp\": \"mahr\",\n    \"id\": \"y8\",\n    \"rating\": \"D\",\n    \"causres\": 0.03,\n    \"symbol\": \"Int_MetaAlloyHullReinforcement_Size2_Class2\",\n    \"ukName\": \"Meta Alloy Hull Reinforcement\",\n    \"description\": \"Increases the ship's hull integrity and resistance to caustic damage.\",\n    \"properties\": {\n      \"Hull Reinforcement\": 171,\n      \"Explosive Resistance\": 0,\n      \"Kinetic Resistance\": 0,\n      \"Mass\": 2,\n      \"Thermal Resistance\": 0\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 42000,\n    \"edID\": 128793121,\n    \"eddbID\": 0,\n    \"grp\": \"mahr\",\n    \"id\": \"y9\",\n    \"rating\": \"E\",\n    \"causres\": 0.03,\n    \"symbol\": \"Int_MetaAlloyHullReinforcement_Size3_Class1\",\n    \"ukName\": \"Meta Alloy Hull Reinforcement\",\n    \"description\": \"Increases the ship's hull integrity and resistance to caustic damage.\",\n    \"properties\": {\n      \"Hull Reinforcement\": 207,\n      \"Explosive Resistance\": 0,\n      \"Kinetic Resistance\": 0,\n      \"Mass\": 8,\n      \"Thermal Resistance\": 0\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 126000,\n    \"edID\": 128793122,\n    \"eddbID\": 0,\n    \"grp\": \"mahr\",\n    \"id\": \"yA\",\n    \"rating\": \"D\",\n    \"causres\": 0.03,\n    \"symbol\": \"Int_MetaAlloyHullReinforcement_Size3_Class2\",\n    \"ukName\": \"Meta Alloy Hull Reinforcement\",\n    \"description\": \"Increases the ship's hull integrity and resistance to caustic damage.\",\n    \"properties\": {\n      \"Hull Reinforcement\": 234,\n      \"Explosive Resistance\": 0,\n      \"Kinetic Resistance\": 0,\n      \"Mass\": 4,\n      \"Thermal Resistance\": 0\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 97501,\n    \"edID\": 128793123,\n    \"eddbID\": 0,\n    \"grp\": \"mahr\",\n    \"id\": \"yB\",\n    \"rating\": \"E\",\n    \"causres\": 0.03,\n    \"symbol\": \"Int_MetaAlloyHullReinforcement_Size4_Class1\",\n    \"ukName\": \"Meta Alloy Hull Reinforcement\",\n    \"description\": \"Increases the ship's hull integrity and resistance to caustic damage.\",\n    \"properties\": {\n      \"Hull Reinforcement\": 270,\n      \"Explosive Resistance\": 0,\n      \"Kinetic Resistance\": 0,\n      \"Mass\": 16,\n      \"Thermal Resistance\": 0\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 292501,\n    \"edID\": 128793124,\n    \"eddbID\": 0,\n    \"grp\": \"mahr\",\n    \"id\": \"yC\",\n    \"rating\": \"D\",\n    \"causres\": 0.03,\n    \"symbol\": \"Int_MetaAlloyHullReinforcement_Size4_Class2\",\n    \"ukName\": \"Meta Alloy Hull Reinforcement\",\n    \"description\": \"Increases the ship's hull integrity and resistance to caustic damage.\",\n    \"properties\": {\n      \"Hull Reinforcement\": 297,\n      \"Explosive Resistance\": 0,\n      \"Kinetic Resistance\": 0,\n      \"Mass\": 8,\n      \"Thermal Resistance\": 0\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 225001,\n    \"edID\": 128793125,\n    \"eddbID\": 0,\n    \"grp\": \"mahr\",\n    \"id\": \"yD\",\n    \"rating\": \"E\",\n    \"causres\": 0.03,\n    \"symbol\": \"Int_MetaAlloyHullReinforcement_Size5_Class1\",\n    \"ukName\": \"Meta Alloy Hull Reinforcement\",\n    \"description\": \"Increases the ship's hull integrity and resistance to caustic damage.\",\n    \"properties\": {\n      \"Hull Reinforcement\": 324,\n      \"Explosive Resistance\": 0,\n      \"Kinetic Resistance\": 0,\n      \"Mass\": 32,\n      \"Thermal Resistance\": 0\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 675001,\n    \"edID\": 128793126,\n    \"eddbID\": 0,\n    \"grp\": \"mahr\",\n    \"id\": \"yE\",\n    \"rating\": \"D\",\n    \"causres\": 0.03,\n    \"symbol\": \"Int_MetaAlloyHullReinforcement_Size5_Class2\",\n    \"ukName\": \"Meta Alloy Hull Reinforcement\",\n    \"description\": \"Increases the ship's hull integrity and resistance to caustic damage.\",\n    \"properties\": {\n      \"Hull Reinforcement\": 351,\n      \"Explosive Resistance\": 0,\n      \"Kinetic Resistance\": 0,\n      \"Mass\": 16,\n      \"Thermal Resistance\": 0\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 5000,\n    \"eddbID\": 1577,\n    \"edID\": 128737270,\n    \"grp\": \"mrp\",\n    \"id\": \"m0\",\n    \"protection\": 0.3,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_ModuleReinforcement_Size1_Class1\",\n    \"ukName\": \"Module Reinforcement\",\n    \"description\": \"Protects modules against weapons fire that penetrates the hull. This version of the module has high damage capacity but low absorption of module damage. I.e. it can absorb a small proportion of module damage each time over a long period before running out of damage capacity.\",\n    \"properties\": {\n      \"Integrity\": 77,\n      \"Mass\": 2\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 15000,\n    \"eddbID\": 1578,\n    \"edID\": 128737271,\n    \"grp\": \"mrp\",\n    \"id\": \"m1\",\n    \"protection\": 0.6,\n    \"rating\": \"D\",\n    \"symbol\": \"Int_ModuleReinforcement_Size1_Class2\",\n    \"ukName\": \"Module Reinforcement\",\n    \"description\": \"Protects modules against weapons fire that penetrates the hull. This version of the module has low damage capacity but high absorption of module damage. I.e. it can absorb a large proportion of module damage each time over a short period before running out of damage capacity.\",\n    \"properties\": {\n      \"Integrity\": 70,\n      \"Mass\": 1\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 12000,\n    \"eddbID\": 1579,\n    \"edID\": 128737272,\n    \"grp\": \"mrp\",\n    \"id\": \"m2\",\n    \"protection\": 0.3,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_ModuleReinforcement_Size2_Class1\",\n    \"ukName\": \"Module Reinforcement\",\n    \"description\": \"Protects modules against weapons fire that penetrates the hull. This version of the module has high damage capacity but low absorption of module damage. I.e. it can absorb a small proportion of module damage each time over a long period before running out of damage capacity.\",\n    \"properties\": {\n      \"Integrity\": 115,\n      \"Mass\": 4\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 36000,\n    \"eddbID\": 1580,\n    \"edID\": 128737273,\n    \"grp\": \"mrp\",\n    \"id\": \"m3\",\n    \"protection\": 0.6,\n    \"rating\": \"D\",\n    \"symbol\": \"Int_ModuleReinforcement_Size2_Class2\",\n    \"ukName\": \"Module Reinforcement\",\n    \"description\": \"Protects modules against weapons fire that penetrates the hull. This version of the module has low damage capacity but high absorption of module damage. I.e. it can absorb a large proportion of module damage each time over a short period before running out of damage capacity.\",\n    \"properties\": {\n      \"Integrity\": 105,\n      \"Mass\": 2\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 28000,\n    \"eddbID\": 1581,\n    \"edID\": 128737274,\n    \"grp\": \"mrp\",\n    \"id\": \"m4\",\n    \"protection\": 0.3,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_ModuleReinforcement_Size3_Class1\",\n    \"ukName\": \"Module Reinforcement\",\n    \"description\": \"Protects modules against weapons fire that penetrates the hull. This version of the module has high damage capacity but low absorption of module damage. I.e. it can absorb a small proportion of module damage each time over a long period before running out of damage capacity.\",\n    \"properties\": {\n      \"Integrity\": 170,\n      \"Mass\": 8\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 84000,\n    \"eddbID\": 1582,\n    \"edID\": 128737275,\n    \"grp\": \"mrp\",\n    \"id\": \"m5\",\n    \"protection\": 0.6,\n    \"rating\": \"D\",\n    \"symbol\": \"Int_ModuleReinforcement_Size3_Class2\",\n    \"ukName\": \"Module Reinforcement\",\n    \"description\": \"Protects modules against weapons fire that penetrates the hull. This version of the module has low damage capacity but high absorption of module damage. I.e. it can absorb a large proportion of module damage each time over a short period before running out of damage capacity.\",\n    \"properties\": {\n      \"Integrity\": 155,\n      \"Mass\": 4\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 65000,\n    \"eddbID\": 1583,\n    \"edID\": 128737276,\n    \"grp\": \"mrp\",\n    \"id\": \"m6\",\n    \"protection\": 0.3,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_ModuleReinforcement_Size4_Class1\",\n    \"ukName\": \"Module Reinforcement\",\n    \"description\": \"Protects modules against weapons fire that penetrates the hull. This version of the module has high damage capacity but low absorption of module damage. I.e. it can absorb a small proportion of module damage each time over a long period before running out of damage capacity.\",\n    \"properties\": {\n      \"Integrity\": 260,\n      \"Mass\": 16\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 195000,\n    \"eddbID\": 1584,\n    \"edID\": 128737277,\n    \"grp\": \"mrp\",\n    \"id\": \"m7\",\n    \"protection\": 0.6,\n    \"rating\": \"D\",\n    \"symbol\": \"Int_ModuleReinforcement_Size4_Class2\",\n    \"ukName\": \"Module Reinforcement\",\n    \"description\": \"Protects modules against weapons fire that penetrates the hull. This version of the module has low damage capacity but high absorption of module damage. I.e. it can absorb a large proportion of module damage each time over a short period before running out of damage capacity.\",\n    \"properties\": {\n      \"Integrity\": 235,\n      \"Mass\": 8\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 150000,\n    \"eddbID\": 1585,\n    \"edID\": 128737278,\n    \"grp\": \"mrp\",\n    \"id\": \"m8\",\n    \"protection\": 0.3,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_ModuleReinforcement_Size5_Class1\",\n    \"ukName\": \"Module Reinforcement\",\n    \"description\": \"Protects modules against weapons fire that penetrates the hull. This version of the module has high damage capacity but low absorption of module damage. I.e. it can absorb a small proportion of module damage each time over a long period before running out of damage capacity.\",\n    \"properties\": {\n      \"Integrity\": 385,\n      \"Mass\": 32\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 450000,\n    \"eddbID\": 1586,\n    \"edID\": 128737279,\n    \"grp\": \"mrp\",\n    \"id\": \"m9\",\n    \"protection\": 0.6,\n    \"rating\": \"D\",\n    \"symbol\": \"Int_ModuleReinforcement_Size5_Class2\",\n    \"ukName\": \"Module Reinforcement\",\n    \"description\": \"Protects modules against weapons fire that penetrates the hull. This version of the module has low damage capacity but high absorption of module damage. I.e. it can absorb a large proportion of module damage each time over a short period before running out of damage capacity.\",\n    \"properties\": {\n      \"Integrity\": 350,\n      \"Mass\": 16\n    }\n  },\n  {\n    \"bays\": 1,\n    \"class\": 2,\n    \"cost\": 18000,\n    \"edID\": 128672288,\n    \"eddbID\": 1528,\n    \"grp\": \"pv\",\n    \"id\": \"v5\",\n    \"rating\": \"H\",\n    \"symbol\": \"Int_BuggyBay_Size2_Class1\",\n    \"ukName\": \"Planetary Vehicle Hangar\",\n    \"description\": \"A module designed to house ground-based vehicles.\",\n    \"properties\": {\n      \"Integrity\": 30,\n      \"Mass\": 12,\n      \"Power Draw\": 0.25\n    }\n  },\n  {\n    \"bays\": 1,\n    \"class\": 2,\n    \"cost\": 21600,\n    \"edID\": 128672289,\n    \"eddbID\": 1529,\n    \"grp\": \"pv\",\n    \"id\": \"v6\",\n    \"rating\": \"G\",\n    \"symbol\": \"Int_BuggyBay_Size2_Class2\",\n    \"ukName\": \"Planetary Vehicle Hangar\",\n    \"description\": \"A module designed to house ground-based vehicles.\",\n    \"properties\": {\n      \"Integrity\": 30,\n      \"Mass\": 6,\n      \"Power Draw\": 0.75\n    }\n  },\n  {\n    \"bays\": 2,\n    \"class\": 4,\n    \"cost\": 72000,\n    \"edID\": 128672290,\n    \"eddbID\": 1526,\n    \"grp\": \"pv\",\n    \"id\": \"v3\",\n    \"rating\": \"H\",\n    \"symbol\": \"Int_BuggyBay_Size4_Class1\",\n    \"ukName\": \"Planetary Vehicle Hangar\",\n    \"description\": \"A module designed to house ground-based vehicles.\",\n    \"properties\": {\n      \"Integrity\": 30,\n      \"Mass\": 20,\n      \"Power Draw\": 0.4\n    }\n  },\n  {\n    \"bays\": 2,\n    \"class\": 4,\n    \"cost\": 86400,\n    \"edID\": 128672291,\n    \"eddbID\": 1527,\n    \"grp\": \"pv\",\n    \"id\": \"v4\",\n    \"rating\": \"G\",\n    \"symbol\": \"Int_BuggyBay_Size4_Class2\",\n    \"ukName\": \"Planetary Vehicle Hangar\",\n    \"description\": \"A module designed to house ground-based vehicles.\",\n    \"properties\": {\n      \"Integrity\": 30,\n      \"Mass\": 10,\n      \"Power Draw\": 1.2\n    }\n  },\n  {\n    \"bays\": 4,\n    \"class\": 6,\n    \"cost\": 576000,\n    \"edID\": 128672292,\n    \"eddbID\": 1524,\n    \"grp\": \"pv\",\n    \"id\": \"v1\",\n    \"rating\": \"H\",\n    \"symbol\": \"Int_BuggyBay_Size6_Class1\",\n    \"ukName\": \"Planetary Vehicle Hangar\",\n    \"description\": \"A module designed to house ground-based vehicles.\",\n    \"properties\": {\n      \"Integrity\": 30,\n      \"Mass\": 34,\n      \"Power Draw\": 0.6\n    }\n  },\n  {\n    \"bays\": 4,\n    \"class\": 6,\n    \"cost\": 691200,\n    \"edID\": 128672293,\n    \"eddbID\": 1525,\n    \"grp\": \"pv\",\n    \"id\": \"v2\",\n    \"rating\": \"G\",\n    \"symbol\": \"Int_BuggyBay_Size6_Class2\",\n    \"ukName\": \"Planetary Vehicle Hangar\",\n    \"description\": \"A module designed to house ground-based vehicles.\",\n    \"properties\": {\n      \"Integrity\": 30,\n      \"Mass\": 17,\n      \"Power Draw\": 1.8\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 132200,\n    \"edID\": 128671323,\n    \"eddbID\": 1485,\n    \"grp\": \"psg\",\n    \"id\": \"p6\",\n    \"pp\": \"Aisling Duval\",\n    \"rating\": \"A\",\n    \"regen\": 1,\n    \"symbol\": \"Int_ShieldGenerator_Size1_Class5_Strong\",\n    \"ukName\": \"Prismatic Shield\",\n    \"description\": \"An alternative shield generator that has higher than normal strength but requires a higher power draw and weight allowance.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 1.2,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 48,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 2.5,\n      \"Maximum Mass\": 63,\n      \"Maximum Multipler\": 2,\n      \"Minimum Mass\": 13,\n      \"Minimum Multiplier\": 1,\n      \"Optimal Mass\": 25,\n      \"Optimal Multiplier\": 1.5,\n      \"Power Draw\": 2.52,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 240340,\n    \"edID\": 128671324,\n    \"eddbID\": 1486,\n    \"grp\": \"psg\",\n    \"id\": \"p5\",\n    \"pp\": \"Aisling Duval\",\n    \"rating\": \"A\",\n    \"regen\": 1,\n    \"symbol\": \"Int_ShieldGenerator_Size2_Class5_Strong\",\n    \"ukName\": \"Prismatic Shield\",\n    \"description\": \"An alternative shield generator that has higher than normal strength but requires a higher power draw and weight allowance.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 1.2,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 61,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 5,\n      \"Maximum Mass\": 138,\n      \"Maximum Multipler\": 2,\n      \"Minimum Mass\": 23,\n      \"Minimum Multiplier\": 1,\n      \"Optimal Mass\": 55,\n      \"Optimal Multiplier\": 1.5,\n      \"Power Draw\": 3.15,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 761870,\n    \"edID\": 128671325,\n    \"eddbID\": 1487,\n    \"grp\": \"psg\",\n    \"id\": \"p4\",\n    \"pp\": \"Aisling Duval\",\n    \"rating\": \"A\",\n    \"regen\": 1,\n    \"symbol\": \"Int_ShieldGenerator_Size3_Class5_Strong\",\n    \"ukName\": \"Prismatic Shield\",\n    \"description\": \"An alternative shield generator that has higher than normal strength but requires a higher power draw and weight allowance.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 1.3,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 77,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 10,\n      \"Maximum Mass\": 413,\n      \"Maximum Multipler\": 2,\n      \"Minimum Mass\": 83,\n      \"Minimum Multiplier\": 1,\n      \"Optimal Mass\": 165,\n      \"Optimal Multiplier\": 1.5,\n      \"Power Draw\": 3.78,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 2415120,\n    \"edID\": 128671326,\n    \"eddbID\": 1488,\n    \"grp\": \"psg\",\n    \"id\": \"p3\",\n    \"pp\": \"Aisling Duval\",\n    \"rating\": \"A\",\n    \"regen\": 1,\n    \"symbol\": \"Int_ShieldGenerator_Size4_Class5_Strong\",\n    \"ukName\": \"Prismatic Shield\",\n    \"description\": \"An alternative shield generator that has higher than normal strength but requires a higher power draw and weight allowance.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 1.7,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 96,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 20,\n      \"Maximum Mass\": 713,\n      \"Maximum Multipler\": 2,\n      \"Minimum Mass\": 143,\n      \"Minimum Multiplier\": 1,\n      \"Optimal Mass\": 285,\n      \"Optimal Multiplier\": 1.5,\n      \"Power Draw\": 4.62,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 7655930,\n    \"edID\": 128671327,\n    \"eddbID\": 1489,\n    \"grp\": \"psg\",\n    \"id\": \"p2\",\n    \"pp\": \"Aisling Duval\",\n    \"rating\": \"A\",\n    \"regen\": 1,\n    \"symbol\": \"Int_ShieldGenerator_Size5_Class5_Strong\",\n    \"ukName\": \"Prismatic Shield\",\n    \"description\": \"An alternative shield generator that has higher than normal strength but requires a higher power draw and weight allowance.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 2.3,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 115,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 40,\n      \"Maximum Mass\": 1013,\n      \"Maximum Multipler\": 2,\n      \"Minimum Mass\": 203,\n      \"Minimum Multiplier\": 1,\n      \"Optimal Mass\": 405,\n      \"Optimal Multiplier\": 1.5,\n      \"Power Draw\": 5.46,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 24269300,\n    \"edID\": 128671328,\n    \"eddbID\": 1490,\n    \"grp\": \"psg\",\n    \"id\": \"p1\",\n    \"pp\": \"Aisling Duval\",\n    \"rating\": \"A\",\n    \"regen\": 1,\n    \"symbol\": \"Int_ShieldGenerator_Size6_Class5_Strong\",\n    \"ukName\": \"Prismatic Shield\",\n    \"description\": \"An alternative shield generator that has higher than normal strength but requires a higher power draw and weight allowance.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 3.2,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 136,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 80,\n      \"Maximum Mass\": 1350,\n      \"Maximum Multipler\": 2,\n      \"Minimum Mass\": 270,\n      \"Minimum Multiplier\": 1,\n      \"Optimal Mass\": 540,\n      \"Optimal Multiplier\": 1.5,\n      \"Power Draw\": 6.51,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 76933670,\n    \"edID\": 128671329,\n    \"eddbID\": 1491,\n    \"grp\": \"psg\",\n    \"id\": \"p0\",\n    \"pp\": \"Aisling Duval\",\n    \"rating\": \"A\",\n    \"regen\": 1.1,\n    \"symbol\": \"Int_ShieldGenerator_Size7_Class5_Strong\",\n    \"ukName\": \"Prismatic Shield\",\n    \"description\": \"An alternative shield generator that has higher than normal strength but requires a higher power draw and weight allowance.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 4.2,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 157,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 160,\n      \"Maximum Mass\": 2650,\n      \"Maximum Multipler\": 2,\n      \"Minimum Mass\": 530,\n      \"Minimum Multiplier\": 1,\n      \"Optimal Mass\": 1060,\n      \"Optimal Multiplier\": 1.5,\n      \"Power Draw\": 7.35,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 243879730,\n    \"edID\": 128671330,\n    \"eddbID\": 1492,\n    \"grp\": \"psg\",\n    \"id\": \"p7\",\n    \"pp\": \"Aisling Duval\",\n    \"rating\": \"A\",\n    \"regen\": 1.4,\n    \"symbol\": \"Int_ShieldGenerator_Size8_Class5_Strong\",\n    \"ukName\": \"Prismatic Shield\",\n    \"description\": \"An alternative shield generator that has higher than normal strength but requires a higher power draw and weight allowance.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 5.4,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 180,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 320,\n      \"Maximum Mass\": 4500,\n      \"Maximum Multipler\": 2,\n      \"Minimum Mass\": 900,\n      \"Minimum Multiplier\": 1,\n      \"Optimal Mass\": 1800,\n      \"Optimal Multiplier\": 1.5,\n      \"Power Draw\": 8.4,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 600,\n    \"edID\": 128671269,\n    \"eddbID\": 1434,\n    \"grp\": \"pc\",\n    \"id\": \"P0\",\n    \"maximum\": 1,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size1_Class1\",\n    \"ukName\": \"Prospector\",\n    \"description\": \"Controls a limpet to prospect an asteroid to discover its composition.\",\n    \"properties\": {\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.18,\n      \"Maximum Range\": 3\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 1200,\n    \"edID\": 128671270,\n    \"eddbID\": 1435,\n    \"grp\": \"pc\",\n    \"id\": \"P1\",\n    \"maximum\": 1,\n    \"rating\": \"D\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size1_Class2\",\n    \"ukName\": \"Prospector\",\n    \"description\": \"Controls a limpet to prospect an asteroid to discover its composition.\",\n    \"properties\": {\n      \"Mass\": 0.5,\n      \"Power Draw\": 0.14,\n      \"Maximum Range\": 4\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 2400,\n    \"edID\": 128671271,\n    \"eddbID\": 1436,\n    \"grp\": \"pc\",\n    \"id\": \"P2\",\n    \"maximum\": 1,\n    \"rating\": \"C\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size1_Class3\",\n    \"ukName\": \"Prospector\",\n    \"description\": \"Controls a limpet to prospect an asteroid to discover its composition.\",\n    \"properties\": {\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.23,\n      \"Maximum Range\": 5\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 4800,\n    \"edID\": 128671272,\n    \"eddbID\": 1437,\n    \"grp\": \"pc\",\n    \"id\": \"P3\",\n    \"maximum\": 1,\n    \"rating\": \"B\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size1_Class4\",\n    \"ukName\": \"Prospector\",\n    \"description\": \"Controls a limpet to prospect an asteroid to discover its composition.\",\n    \"properties\": {\n      \"Mass\": 2,\n      \"Power Draw\": 0.32,\n      \"Maximum Range\": 6\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 9600,\n    \"edID\": 128671273,\n    \"eddbID\": 1438,\n    \"grp\": \"pc\",\n    \"id\": \"P4\",\n    \"maximum\": 1,\n    \"rating\": \"A\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size1_Class5\",\n    \"ukName\": \"Prospector\",\n    \"description\": \"Controls a limpet to prospect an asteroid to discover its composition.\",\n    \"properties\": {\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.28,\n      \"Maximum Range\": 7\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 5400,\n    \"edID\": 128671274,\n    \"eddbID\": 1439,\n    \"grp\": \"pc\",\n    \"id\": \"P5\",\n    \"maximum\": 2,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size3_Class1\",\n    \"ukName\": \"Prospector\",\n    \"description\": \"Controls a limpet to prospect an asteroid to discover its composition.\",\n    \"properties\": {\n      \"Mass\": 5,\n      \"Power Draw\": 0.27,\n      \"Maximum Range\": 3.3\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 10800,\n    \"edID\": 128671275,\n    \"eddbID\": 1440,\n    \"grp\": \"pc\",\n    \"id\": \"P6\",\n    \"maximum\": 2,\n    \"rating\": \"D\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size3_Class2\",\n    \"ukName\": \"Prospector\",\n    \"description\": \"Controls a limpet to prospect an asteroid to discover its composition.\",\n    \"properties\": {\n      \"Mass\": 2,\n      \"Power Draw\": 0.2,\n      \"Maximum Range\": 4.4\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 21600,\n    \"edID\": 128671276,\n    \"eddbID\": 1441,\n    \"grp\": \"pc\",\n    \"id\": \"P7\",\n    \"maximum\": 2,\n    \"rating\": \"C\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size3_Class3\",\n    \"ukName\": \"Prospector\",\n    \"description\": \"Controls a limpet to prospect an asteroid to discover its composition.\",\n    \"properties\": {\n      \"Mass\": 5,\n      \"Power Draw\": 0.34,\n      \"Maximum Range\": 5.5\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 43200,\n    \"edID\": 128671277,\n    \"eddbID\": 1442,\n    \"grp\": \"pc\",\n    \"id\": \"P8\",\n    \"maximum\": 2,\n    \"rating\": \"B\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size3_Class4\",\n    \"ukName\": \"Prospector\",\n    \"description\": \"Controls a limpet to prospect an asteroid to discover its composition.\",\n    \"properties\": {\n      \"Mass\": 8,\n      \"Power Draw\": 0.48,\n      \"Maximum Range\": 6.6\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 86400,\n    \"edID\": 128671278,\n    \"eddbID\": 1443,\n    \"grp\": \"pc\",\n    \"id\": \"P9\",\n    \"maximum\": 2,\n    \"rating\": \"A\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size3_Class5\",\n    \"ukName\": \"Prospector\",\n    \"description\": \"Controls a limpet to prospect an asteroid to discover its composition.\",\n    \"properties\": {\n      \"Mass\": 5,\n      \"Power Draw\": 0.41,\n      \"Maximum Range\": 7.7\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 48600,\n    \"edID\": 128671279,\n    \"eddbID\": 1444,\n    \"grp\": \"pc\",\n    \"id\": \"Pa\",\n    \"maximum\": 4,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size5_Class1\",\n    \"ukName\": \"Prospector\",\n    \"description\": \"Controls a limpet to prospect an asteroid to discover its composition.\",\n    \"properties\": {\n      \"Mass\": 20,\n      \"Power Draw\": 0.4,\n      \"Maximum Range\": 3.9\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 97200,\n    \"edID\": 128671280,\n    \"eddbID\": 1445,\n    \"grp\": \"pc\",\n    \"id\": \"Pb\",\n    \"maximum\": 4,\n    \"rating\": \"D\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size5_Class2\",\n    \"ukName\": \"Prospector\",\n    \"description\": \"Controls a limpet to prospect an asteroid to discover its composition.\",\n    \"properties\": {\n      \"Mass\": 8,\n      \"Power Draw\": 0.3,\n      \"Maximum Range\": 5.2\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 194400,\n    \"edID\": 128671281,\n    \"eddbID\": 1446,\n    \"grp\": \"pc\",\n    \"id\": \"Pc\",\n    \"maximum\": 4,\n    \"rating\": \"C\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size5_Class3\",\n    \"ukName\": \"Prospector\",\n    \"description\": \"Controls a limpet to prospect an asteroid to discover its composition.\",\n    \"properties\": {\n      \"Mass\": 20,\n      \"Power Draw\": 0.5,\n      \"Maximum Range\": 6.5\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 388800,\n    \"edID\": 128671282,\n    \"eddbID\": 1447,\n    \"grp\": \"pc\",\n    \"id\": \"Pd\",\n    \"maximum\": 4,\n    \"rating\": \"B\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size5_Class4\",\n    \"ukName\": \"Prospector\",\n    \"description\": \"Controls a limpet to prospect an asteroid to discover its composition.\",\n    \"properties\": {\n      \"Mass\": 32,\n      \"Power Draw\": 0.97,\n      \"Maximum Range\": 7.8\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 777600,\n    \"edID\": 128671283,\n    \"eddbID\": 1448,\n    \"grp\": \"pc\",\n    \"id\": \"Pe\",\n    \"maximum\": 4,\n    \"rating\": \"A\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size5_Class5\",\n    \"ukName\": \"Prospector\",\n    \"description\": \"Controls a limpet to prospect an asteroid to discover its composition.\",\n    \"properties\": {\n      \"Mass\": 20,\n      \"Power Draw\": 0.6,\n      \"Maximum Range\": 9.1\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 437400,\n    \"edID\": 128671284,\n    \"eddbID\": 1449,\n    \"grp\": \"pc\",\n    \"id\": \"Pf\",\n    \"maximum\": 8,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size7_Class1\",\n    \"ukName\": \"Prospector\",\n    \"description\": \"Controls a limpet to prospect an asteroid to discover its composition.\",\n    \"properties\": {\n      \"Mass\": 80,\n      \"Power Draw\": 0.55,\n      \"Maximum Range\": 5.1\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 874800,\n    \"edID\": 128671285,\n    \"eddbID\": 1450,\n    \"grp\": \"pc\",\n    \"id\": \"Pg\",\n    \"maximum\": 8,\n    \"rating\": \"D\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size7_Class2\",\n    \"ukName\": \"Prospector\",\n    \"description\": \"Controls a limpet to prospect an asteroid to discover its composition.\",\n    \"properties\": {\n      \"Mass\": 32,\n      \"Power Draw\": 0.41,\n      \"Maximum Range\": 6.8\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 1749600,\n    \"edID\": 128671286,\n    \"eddbID\": 1451,\n    \"grp\": \"pc\",\n    \"id\": \"Ph\",\n    \"maximum\": 8,\n    \"rating\": \"C\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size7_Class3\",\n    \"ukName\": \"Prospector\",\n    \"description\": \"Controls a limpet to prospect an asteroid to discover its composition.\",\n    \"properties\": {\n      \"Mass\": 80,\n      \"Power Draw\": 0.69,\n      \"Maximum Range\": 8.5\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 3499200,\n    \"edID\": 128671287,\n    \"eddbID\": 1452,\n    \"grp\": \"pc\",\n    \"id\": \"Pi\",\n    \"maximum\": 8,\n    \"rating\": \"B\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size7_Class4\",\n    \"ukName\": \"Prospector\",\n    \"description\": \"Controls a limpet to prospect an asteroid to discover its composition.\",\n    \"properties\": {\n      \"Mass\": 128,\n      \"Power Draw\": 0.97,\n      \"Maximum Range\": 10.2\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 6998400,\n    \"edID\": 128671288,\n    \"eddbID\": 1453,\n    \"grp\": \"pc\",\n    \"id\": \"Pj\",\n    \"maximum\": 8,\n    \"rating\": \"A\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size7_Class5\",\n    \"ukName\": \"Prospector\",\n    \"description\": \"Controls a limpet to prospect an asteroid to discover its composition.\",\n    \"properties\": {\n      \"Mass\": 80,\n      \"Power Draw\": 0.83,\n      \"Maximum Range\": 11.9\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 2600,\n    \"edID\": 128837858,\n    \"eddbID\": 1636,\n    \"grp\": \"rcpl\",\n    \"id\": \"0L\",\n    \"maximum\": 1,\n    \"rating\": \"E\",\n    \"hacktime\": 22,\n    \"symbol\": \"Int_DroneControl_Recon_Size1_Class1\",\n    \"ukName\": \"Recon\",\n    \"description\": \"Controls a limpet that can hack into data points.\",\n    \"properties\": {\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.18,\n      \"Maximum Range\": 1.2,\n      \"Integrity\": 24\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 8200,\n    \"edID\": 128841592,\n    \"eddbID\": 1637,\n    \"grp\": \"rcpl\",\n    \"id\": \"0M\",\n    \"maximum\": 1,\n    \"rating\": \"E\",\n    \"hacktime\": 17,\n    \"symbol\": \"Int_DroneControl_Recon_Size3_Class1\",\n    \"ukName\": \"Recon\",\n    \"description\": \"Controls a limpet that can hack into data points.\",\n    \"properties\": {\n      \"Mass\": 2,\n      \"Power Draw\": 0.2,\n      \"Maximum Range\": 1.4,\n      \"Integrity\": 51\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 75800,\n    \"edID\": 128841593,\n    \"eddbID\": 1638,\n    \"grp\": \"rcpl\",\n    \"id\": \"0N\",\n    \"maximum\": 1,\n    \"rating\": \"E\",\n    \"hacktime\": 13,\n    \"symbol\": \"Int_DroneControl_Recon_Size5_Class1\",\n    \"ukName\": \"Recon\",\n    \"description\": \"Controls a limpet that can hack into data points.\",\n    \"properties\": {\n      \"Mass\": 20,\n      \"Power Draw\": 0.5,\n      \"Maximum Range\": 1.7,\n      \"Integrity\": 96\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 612200,\n    \"edID\": 128841594,\n    \"eddbID\": 1639,\n    \"grp\": \"rcpl\",\n    \"id\": \"0O\",\n    \"maximum\": 1,\n    \"rating\": \"E\",\n    \"hacktime\": 10,\n    \"symbol\": \"Int_DroneControl_Recon_Size7_Class1\",\n    \"ukName\": \"Recon\",\n    \"description\": \"Controls a limpet that can hack into data points.\",\n    \"properties\": {\n      \"Mass\": 128,\n      \"Power Draw\": 0.97,\n      \"Maximum Range\": 2,\n      \"Integrity\": 157\n    }\n  },\n  {\n    \"bins\": 1,\n    \"class\": 1,\n    \"cost\": 6000,\n    \"edID\": 128666684,\n    \"eddbID\": 1286,\n    \"grp\": \"rf\",\n    \"id\": \"1k\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_Refinery_Size1_Class1\",\n    \"ukName\": \"Refinery\",\n    \"description\": \"Converts scooped fragments into usable resources (requires mining laser).\",\n    \"properties\": {\n      \"Power Draw\": 0.14\n    }\n  },\n  {\n    \"bins\": 1,\n    \"class\": 1,\n    \"cost\": 18000,\n    \"edID\": 128666688,\n    \"eddbID\": 1290,\n    \"grp\": \"rf\",\n    \"id\": \"1j\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_Refinery_Size1_Class2\",\n    \"ukName\": \"Refinery\",\n    \"description\": \"Converts scooped fragments into usable resources (requires mining laser).\",\n    \"properties\": {\n      \"Power Draw\": 0.18\n    }\n  },\n  {\n    \"bins\": 2,\n    \"class\": 1,\n    \"cost\": 54000,\n    \"edID\": 128666692,\n    \"eddbID\": 1294,\n    \"grp\": \"rf\",\n    \"id\": \"1i\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_Refinery_Size1_Class3\",\n    \"ukName\": \"Refinery\",\n    \"description\": \"Converts scooped fragments into usable resources (requires mining laser).\",\n    \"properties\": {\n      \"Power Draw\": 0.23\n    }\n  },\n  {\n    \"bins\": 3,\n    \"class\": 1,\n    \"cost\": 162000,\n    \"edID\": 128666696,\n    \"eddbID\": 1298,\n    \"grp\": \"rf\",\n    \"id\": \"1h\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_Refinery_Size1_Class4\",\n    \"ukName\": \"Refinery\",\n    \"description\": \"Converts scooped fragments into usable resources (requires mining laser).\",\n    \"properties\": {\n      \"Power Draw\": 0.28\n    }\n  },\n  {\n    \"bins\": 4,\n    \"class\": 1,\n    \"cost\": 486000,\n    \"edID\": 128666700,\n    \"eddbID\": 1302,\n    \"grp\": \"rf\",\n    \"id\": \"1g\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_Refinery_Size1_Class5\",\n    \"ukName\": \"Refinery\",\n    \"description\": \"Converts scooped fragments into usable resources (requires mining laser).\",\n    \"properties\": {\n      \"Power Draw\": 0.32\n    }\n  },\n  {\n    \"bins\": 2,\n    \"class\": 2,\n    \"cost\": 12600,\n    \"edID\": 128666685,\n    \"eddbID\": 1287,\n    \"grp\": \"rf\",\n    \"id\": \"1p\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_Refinery_Size2_Class1\",\n    \"ukName\": \"Refinery\",\n    \"description\": \"Converts scooped fragments into usable resources (requires mining laser).\",\n    \"properties\": {\n      \"Power Draw\": 0.17\n    }\n  },\n  {\n    \"bins\": 3,\n    \"class\": 2,\n    \"cost\": 37800,\n    \"edID\": 128666689,\n    \"eddbID\": 1291,\n    \"grp\": \"rf\",\n    \"id\": \"1o\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_Refinery_Size2_Class2\",\n    \"ukName\": \"Refinery\",\n    \"description\": \"Converts scooped fragments into usable resources (requires mining laser).\",\n    \"properties\": {\n      \"Power Draw\": 0.22\n    }\n  },\n  {\n    \"bins\": 4,\n    \"class\": 2,\n    \"cost\": 113400,\n    \"edID\": 128666693,\n    \"eddbID\": 1295,\n    \"grp\": \"rf\",\n    \"id\": \"1n\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_Refinery_Size2_Class3\",\n    \"ukName\": \"Refinery\",\n    \"description\": \"Converts scooped fragments into usable resources (requires mining laser).\",\n    \"properties\": {\n      \"Power Draw\": 0.28\n    }\n  },\n  {\n    \"bins\": 5,\n    \"class\": 2,\n    \"cost\": 340200,\n    \"edID\": 128666697,\n    \"eddbID\": 1299,\n    \"grp\": \"rf\",\n    \"id\": \"1m\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_Refinery_Size2_Class4\",\n    \"ukName\": \"Refinery\",\n    \"description\": \"Converts scooped fragments into usable resources (requires mining laser).\",\n    \"properties\": {\n      \"Power Draw\": 0.34\n    }\n  },\n  {\n    \"bins\": 6,\n    \"class\": 2,\n    \"cost\": 1020600,\n    \"edID\": 128666701,\n    \"eddbID\": 1303,\n    \"grp\": \"rf\",\n    \"id\": \"1l\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_Refinery_Size2_Class5\",\n    \"ukName\": \"Refinery\",\n    \"description\": \"Converts scooped fragments into usable resources (requires mining laser).\",\n    \"properties\": {\n      \"Power Draw\": 0.39\n    }\n  },\n  {\n    \"bins\": 3,\n    \"class\": 3,\n    \"cost\": 26460,\n    \"edID\": 128666686,\n    \"eddbID\": 1288,\n    \"grp\": \"rf\",\n    \"id\": \"1u\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_Refinery_Size3_Class1\",\n    \"ukName\": \"Refinery\",\n    \"description\": \"Converts scooped fragments into usable resources (requires mining laser).\",\n    \"properties\": {\n      \"Power Draw\": 0.2\n    }\n  },\n  {\n    \"bins\": 4,\n    \"class\": 3,\n    \"cost\": 79380,\n    \"edID\": 128666690,\n    \"eddbID\": 1292,\n    \"grp\": \"rf\",\n    \"id\": \"1t\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_Refinery_Size3_Class2\",\n    \"ukName\": \"Refinery\",\n    \"description\": \"Converts scooped fragments into usable resources (requires mining laser).\",\n    \"properties\": {\n      \"Power Draw\": 0.27\n    }\n  },\n  {\n    \"bins\": 6,\n    \"class\": 3,\n    \"cost\": 238140,\n    \"edID\": 128666694,\n    \"eddbID\": 1296,\n    \"grp\": \"rf\",\n    \"id\": \"1s\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_Refinery_Size3_Class3\",\n    \"ukName\": \"Refinery\",\n    \"description\": \"Converts scooped fragments into usable resources (requires mining laser).\",\n    \"properties\": {\n      \"Power Draw\": 0.34\n    }\n  },\n  {\n    \"bins\": 7,\n    \"class\": 3,\n    \"cost\": 714420,\n    \"edID\": 128666698,\n    \"eddbID\": 1300,\n    \"grp\": \"rf\",\n    \"id\": \"1r\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_Refinery_Size3_Class4\",\n    \"ukName\": \"Refinery\",\n    \"description\": \"Converts scooped fragments into usable resources (requires mining laser).\",\n    \"properties\": {\n      \"Power Draw\": 0.41\n    }\n  },\n  {\n    \"bins\": 8,\n    \"class\": 3,\n    \"cost\": 2143260,\n    \"edID\": 128666702,\n    \"eddbID\": 1304,\n    \"grp\": \"rf\",\n    \"id\": \"1q\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_Refinery_Size3_Class5\",\n    \"ukName\": \"Refinery\",\n    \"description\": \"Converts scooped fragments into usable resources (requires mining laser).\",\n    \"properties\": {\n      \"Power Draw\": 0.48\n    }\n  },\n  {\n    \"bins\": 4,\n    \"class\": 4,\n    \"cost\": 55570,\n    \"edID\": 128666687,\n    \"eddbID\": 1289,\n    \"grp\": \"rf\",\n    \"id\": \"23\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_Refinery_Size4_Class1\",\n    \"ukName\": \"Refinery\",\n    \"description\": \"Converts scooped fragments into usable resources (requires mining laser).\",\n    \"properties\": {\n      \"Power Draw\": 0.25\n    }\n  },\n  {\n    \"bins\": 5,\n    \"class\": 4,\n    \"cost\": 166700,\n    \"edID\": 128666691,\n    \"eddbID\": 1293,\n    \"grp\": \"rf\",\n    \"id\": \"22\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_Refinery_Size4_Class2\",\n    \"ukName\": \"Refinery\",\n    \"description\": \"Converts scooped fragments into usable resources (requires mining laser).\",\n    \"properties\": {\n      \"Power Draw\": 0.33\n    }\n  },\n  {\n    \"bins\": 7,\n    \"class\": 4,\n    \"cost\": 500090,\n    \"edID\": 128666695,\n    \"eddbID\": 1297,\n    \"grp\": \"rf\",\n    \"id\": \"21\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_Refinery_Size4_Class3\",\n    \"ukName\": \"Refinery\",\n    \"description\": \"Converts scooped fragments into usable resources (requires mining laser).\",\n    \"properties\": {\n      \"Power Draw\": 0.41\n    }\n  },\n  {\n    \"bins\": 9,\n    \"class\": 4,\n    \"cost\": 1500280,\n    \"edID\": 128666699,\n    \"eddbID\": 1301,\n    \"grp\": \"rf\",\n    \"id\": \"20\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_Refinery_Size4_Class4\",\n    \"ukName\": \"Refinery\",\n    \"description\": \"Converts scooped fragments into usable resources (requires mining laser).\",\n    \"properties\": {\n      \"Power Draw\": 0.49\n    }\n  },\n  {\n    \"bins\": 10,\n    \"class\": 4,\n    \"cost\": 4500850,\n    \"edID\": 128666703,\n    \"eddbID\": 1305,\n    \"grp\": \"rf\",\n    \"id\": \"1v\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_Refinery_Size4_Class5\",\n    \"ukName\": \"Refinery\",\n    \"description\": \"Converts scooped fragments into usable resources (requires mining laser).\",\n    \"properties\": {\n      \"Power Draw\": 0.57\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 600,\n    \"edID\": 128777327,\n    \"eddbID\": 1594,\n    \"grp\": \"rpl\",\n    \"id\": \"9z\",\n    \"maximum\": 1,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_DroneControl_Repair_Size1_Class1\",\n    \"ukName\": \"Repair\",\n    \"description\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.18,\n      \"Maximum Range\": 0.6\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 1200,\n    \"edID\": 128777328,\n    \"eddbID\": 1595,\n    \"grp\": \"rpl\",\n    \"id\": \"9q\",\n    \"maximum\": 1,\n    \"rating\": \"D\",\n    \"symbol\": \"Int_DroneControl_Repair_Size1_Class2\",\n    \"ukName\": \"Repair\",\n    \"description\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 0.5,\n      \"Power Draw\": 0.14,\n      \"Maximum Range\": 0.8\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 2400,\n    \"edID\": 128777329,\n    \"eddbID\": 1596,\n    \"grp\": \"rpl\",\n    \"id\": \"9a\",\n    \"maximum\": 1,\n    \"rating\": \"C\",\n    \"symbol\": \"Int_DroneControl_Repair_Size1_Class3\",\n    \"ukName\": \"Repair\",\n    \"description\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.23,\n      \"Maximum Range\": 1\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 4800,\n    \"edID\": 128777330,\n    \"eddbID\": 1597,\n    \"grp\": \"rpl\",\n    \"id\": \"9w\",\n    \"maximum\": 1,\n    \"rating\": \"B\",\n    \"symbol\": \"Int_DroneControl_Repair_Size1_Class4\",\n    \"ukName\": \"Repair\",\n    \"description\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 2,\n      \"Power Draw\": 0.32,\n      \"Maximum Range\": 1.2\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 9600,\n    \"edID\": 128777331,\n    \"eddbID\": 1598,\n    \"grp\": \"rpl\",\n    \"id\": \"9s\",\n    \"maximum\": 1,\n    \"rating\": \"A\",\n    \"symbol\": \"Int_DroneControl_Repair_Size1_Class5\",\n    \"ukName\": \"Repair\",\n    \"description\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.28,\n      \"Maximum Range\": 1.4\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 5400,\n    \"edID\": 128777332,\n    \"eddbID\": 1599,\n    \"grp\": \"rpl\",\n    \"id\": \"9x\",\n    \"maximum\": 2,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_DroneControl_Repair_Size3_Class1\",\n    \"ukName\": \"Repair\",\n    \"description\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 5,\n      \"Power Draw\": 0.27,\n      \"Maximum Range\": 0.66\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 10800,\n    \"edID\": 128777333,\n    \"eddbID\": 1600,\n    \"grp\": \"rpl\",\n    \"id\": \"9e\",\n    \"maximum\": 2,\n    \"rating\": \"D\",\n    \"symbol\": \"Int_DroneControl_Repair_Size3_Class2\",\n    \"ukName\": \"Repair\",\n    \"description\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 2,\n      \"Power Draw\": 0.2,\n      \"Maximum Range\": 0.88\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 21600,\n    \"edID\": 128777334,\n    \"eddbID\": 1601,\n    \"grp\": \"rpl\",\n    \"id\": \"9d\",\n    \"maximum\": 2,\n    \"rating\": \"C\",\n    \"symbol\": \"Int_DroneControl_Repair_Size3_Class3\",\n    \"ukName\": \"Repair\",\n    \"description\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 5,\n      \"Power Draw\": 0.34,\n      \"Maximum Range\": 1.1\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 43200,\n    \"edID\": 128777335,\n    \"eddbID\": 1602,\n    \"grp\": \"rpl\",\n    \"id\": \"9c\",\n    \"maximum\": 2,\n    \"rating\": \"B\",\n    \"symbol\": \"Int_DroneControl_Repair_Size3_Class4\",\n    \"ukName\": \"Repair\",\n    \"description\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 8,\n      \"Power Draw\": 0.48,\n      \"Maximum Range\": 1.32\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 86400,\n    \"edID\": 128777336,\n    \"eddbID\": 1603,\n    \"grp\": \"rpl\",\n    \"id\": \"9r\",\n    \"maximum\": 2,\n    \"rating\": \"A\",\n    \"symbol\": \"Int_DroneControl_Repair_Size3_Class5\",\n    \"ukName\": \"Repair\",\n    \"description\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 5,\n      \"Power Draw\": 0.41,\n      \"Maximum Range\": 1.54\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 48600,\n    \"edID\": 128777337,\n    \"eddbID\": 1604,\n    \"grp\": \"rpl\",\n    \"id\": \"9f\",\n    \"maximum\": 3,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_DroneControl_Repair_Size5_Class1\",\n    \"ukName\": \"Repair\",\n    \"description\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 20,\n      \"Power Draw\": 0.4,\n      \"Maximum Range\": 0.78\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 97200,\n    \"edID\": 128777338,\n    \"eddbID\": 1605,\n    \"grp\": \"rpl\",\n    \"id\": \"9v\",\n    \"maximum\": 3,\n    \"rating\": \"D\",\n    \"symbol\": \"Int_DroneControl_Repair_Size5_Class2\",\n    \"ukName\": \"Repair\",\n    \"description\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 8,\n      \"Power Draw\": 0.3,\n      \"Maximum Range\": 1.04\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 194400,\n    \"edID\": 128777339,\n    \"eddbID\": 1606,\n    \"grp\": \"rpl\",\n    \"id\": \"9t\",\n    \"maximum\": 3,\n    \"rating\": \"C\",\n    \"symbol\": \"Int_DroneControl_Repair_Size5_Class3\",\n    \"ukName\": \"Repair\",\n    \"description\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 20,\n      \"Power Draw\": 0.5,\n      \"Maximum Range\": 1.3\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 388800,\n    \"edID\": 128777340,\n    \"eddbID\": 1607,\n    \"grp\": \"rpl\",\n    \"id\": \"9g\",\n    \"maximum\": 3,\n    \"rating\": \"B\",\n    \"symbol\": \"Int_DroneControl_Repair_Size5_Class4\",\n    \"ukName\": \"Repair\",\n    \"description\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 32,\n      \"Power Draw\": 0.97,\n      \"Maximum Range\": 1.56\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 777600,\n    \"edID\": 128777341,\n    \"eddbID\": 1608,\n    \"grp\": \"rpl\",\n    \"id\": \"9b\",\n    \"maximum\": 3,\n    \"rating\": \"A\",\n    \"symbol\": \"Int_DroneControl_Repair_Size5_Class5\",\n    \"ukName\": \"Repair\",\n    \"description\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 20,\n      \"Power Draw\": 0.6,\n      \"Maximum Range\": 1.82\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 437400,\n    \"edID\": 128777342,\n    \"eddbID\": 1609,\n    \"grp\": \"rpl\",\n    \"id\": \"9y\",\n    \"maximum\": 4,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_DroneControl_Repair_Size7_Class1\",\n    \"ukName\": \"Repair\",\n    \"description\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 80,\n      \"Power Draw\": 0.55,\n      \"Maximum Range\": 1.02\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 874800,\n    \"edID\": 128777343,\n    \"eddbID\": 1610,\n    \"grp\": \"rpl\",\n    \"id\": \"9h\",\n    \"maximum\": 4,\n    \"rating\": \"D\",\n    \"symbol\": \"Int_DroneControl_Repair_Size7_Class2\",\n    \"ukName\": \"Repair\",\n    \"description\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 32,\n      \"Power Draw\": 0.41,\n      \"Maximum Range\": 1.36\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 1749600,\n    \"edID\": 128777344,\n    \"eddbID\": 1611,\n    \"grp\": \"rpl\",\n    \"id\": \"9n\",\n    \"maximum\": 4,\n    \"rating\": \"C\",\n    \"symbol\": \"Int_DroneControl_Repair_Size7_Class3\",\n    \"ukName\": \"Repair\",\n    \"description\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 80,\n      \"Power Draw\": 0.69,\n      \"Maximum Range\": 1.7\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 3499200,\n    \"edID\": 128777345,\n    \"eddbID\": 1612,\n    \"grp\": \"rpl\",\n    \"id\": \"9u\",\n    \"maximum\": 4,\n    \"rating\": \"B\",\n    \"symbol\": \"Int_DroneControl_Repair_Size7_Class4\",\n    \"ukName\": \"Repair\",\n    \"description\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 128,\n      \"Power Draw\": 0.97,\n      \"Maximum Range\": 2.04\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 6998400,\n    \"edID\": 128777346,\n    \"eddbID\": 1613,\n    \"grp\": \"rpl\",\n    \"id\": \"9j\",\n    \"maximum\": 4,\n    \"rating\": \"A\",\n    \"symbol\": \"Int_DroneControl_Repair_Size7_Class5\",\n    \"ukName\": \"Repair\",\n    \"description\": \"Controls a limpet that repairs an amount of damage to the hull of a targeted ship.\",\n    \"properties\": {\n      \"Mass\": 80,\n      \"Power Draw\": 0.83,\n      \"Maximum Range\": 2.38\n    }\n  },\n  {\n    \"rating\": \"E\",\n    \"class\": 1,\n    \"grp\": \"rsl\",\n    \"id\": \"2w\",\n    \"eddbID\": 1617,\n    \"edID\": 128793116,\n    \"cost\": 1749600,\n    \"maximum\": 1,\n    \"symbol\": \"Int_DroneControl_UnkVesselResearch\",\n    \"time\": 300,\n    \"properties\": {\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.4,\n      \"Maximum Range\": 2,\n      \"Integrity\": 20\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 1,\n    \"cost\": 517,\n    \"edID\": 128064298,\n    \"eddbID\": 1151,\n    \"grp\": \"scb\",\n    \"id\": \"52\",\n    \"rating\": \"E\",\n    \"rechargerating\": \"E\",\n    \"symbol\": \"Int_ShieldCellBank_Size1_Class1\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 3,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 1,\n      \"Integrity\": 32,\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.41,\n      \"Shield Reinforcement\": 12,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 170\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 1,\n    \"cost\": 1293,\n    \"edID\": 128064299,\n    \"eddbID\": 1152,\n    \"grp\": \"scb\",\n    \"id\": \"51\",\n    \"rating\": \"D\",\n    \"rechargerating\": \"D\",\n    \"symbol\": \"Int_ShieldCellBank_Size1_Class2\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 0,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 1,\n      \"Integrity\": 24,\n      \"Mass\": 0.5,\n      \"Power Draw\": 0.55,\n      \"Shield Reinforcement\": 12.5,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 170\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 1,\n    \"cost\": 3231,\n    \"edID\": 128064300,\n    \"eddbID\": 1153,\n    \"grp\": \"scb\",\n    \"id\": \"50\",\n    \"rating\": \"C\",\n    \"rechargerating\": \"C\",\n    \"symbol\": \"Int_ShieldCellBank_Size1_Class3\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 2,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 1,\n      \"Integrity\": 40,\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.69,\n      \"Shield Reinforcement\": 20,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 170\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 1,\n    \"cost\": 8078,\n    \"edID\": 128064301,\n    \"eddbID\": 1154,\n    \"grp\": \"scb\",\n    \"id\": \"4v\",\n    \"rating\": \"B\",\n    \"rechargerating\": \"B\",\n    \"symbol\": \"Int_ShieldCellBank_Size1_Class4\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 3,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 1,\n      \"Integrity\": 56,\n      \"Mass\": 2,\n      \"Power Draw\": 0.83,\n      \"Shield Reinforcement\": 24,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 170\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 1,\n    \"cost\": 20195,\n    \"edID\": 128064302,\n    \"eddbID\": 1155,\n    \"grp\": \"scb\",\n    \"id\": \"4u\",\n    \"rating\": \"A\",\n    \"rechargerating\": \"A\",\n    \"symbol\": \"Int_ShieldCellBank_Size1_Class5\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 2,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 1,\n      \"Integrity\": 48,\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.97,\n      \"Shield Reinforcement\": 28,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 170\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 2,\n    \"cost\": 1448,\n    \"edID\": 128064303,\n    \"eddbID\": 1156,\n    \"grp\": \"scb\",\n    \"id\": \"57\",\n    \"rating\": \"E\",\n    \"rechargerating\": \"E\",\n    \"symbol\": \"Int_ShieldCellBank_Size2_Class1\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 4,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 2,\n      \"Integrity\": 41,\n      \"Mass\": 2.5,\n      \"Power Draw\": 0.5,\n      \"Shield Reinforcement\": 14,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 240\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 2,\n    \"cost\": 3619,\n    \"edID\": 128064304,\n    \"eddbID\": 1157,\n    \"grp\": \"scb\",\n    \"id\": \"56\",\n    \"rating\": \"D\",\n    \"rechargerating\": \"D\",\n    \"symbol\": \"Int_ShieldCellBank_Size2_Class2\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 2,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 2,\n      \"Integrity\": 31,\n      \"Mass\": 1,\n      \"Power Draw\": 0.67,\n      \"Shield Reinforcement\": 18,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 240\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 2,\n    \"cost\": 9048,\n    \"edID\": 128064305,\n    \"eddbID\": 1158,\n    \"grp\": \"scb\",\n    \"id\": \"55\",\n    \"rating\": \"C\",\n    \"rechargerating\": \"C\",\n    \"symbol\": \"Int_ShieldCellBank_Size2_Class3\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 3,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 2,\n      \"Integrity\": 51,\n      \"Mass\": 2.5,\n      \"Power Draw\": 0.84,\n      \"Shield Reinforcement\": 23,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 240\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 2,\n    \"cost\": 22619,\n    \"edID\": 128064306,\n    \"eddbID\": 1159,\n    \"grp\": \"scb\",\n    \"id\": \"54\",\n    \"rating\": \"B\",\n    \"rechargerating\": \"B\",\n    \"symbol\": \"Int_ShieldCellBank_Size2_Class4\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 4,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 2,\n      \"Integrity\": 71,\n      \"Mass\": 4,\n      \"Power Draw\": 1.01,\n      \"Shield Reinforcement\": 28,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 240\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 2,\n    \"cost\": 56547,\n    \"edID\": 128064307,\n    \"eddbID\": 1160,\n    \"grp\": \"scb\",\n    \"id\": \"53\",\n    \"rating\": \"A\",\n    \"rechargerating\": \"A\",\n    \"symbol\": \"Int_ShieldCellBank_Size2_Class5\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 3,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 2,\n      \"Integrity\": 61,\n      \"Mass\": 2.5,\n      \"Power Draw\": 1.18,\n      \"Shield Reinforcement\": 32,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 240\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 3,\n    \"cost\": 4053,\n    \"edID\": 128064308,\n    \"eddbID\": 1161,\n    \"grp\": \"scb\",\n    \"id\": \"5c\",\n    \"rating\": \"E\",\n    \"rechargerating\": \"E\",\n    \"symbol\": \"Int_ShieldCellBank_Size3_Class1\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 4,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 2,\n      \"Integrity\": 51,\n      \"Mass\": 5,\n      \"Power Draw\": 0.61,\n      \"Shield Reinforcement\": 17,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 340\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 3,\n    \"cost\": 10133,\n    \"edID\": 128064309,\n    \"eddbID\": 1162,\n    \"grp\": \"scb\",\n    \"id\": \"5b\",\n    \"rating\": \"D\",\n    \"rechargerating\": \"D\",\n    \"symbol\": \"Int_ShieldCellBank_Size3_Class2\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 2,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 2,\n      \"Integrity\": 38,\n      \"Mass\": 2,\n      \"Power Draw\": 0.82,\n      \"Shield Reinforcement\": 23,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 340\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 3,\n    \"cost\": 25333,\n    \"edID\": 128064310,\n    \"eddbID\": 1163,\n    \"grp\": \"scb\",\n    \"id\": \"5a\",\n    \"rating\": \"C\",\n    \"rechargerating\": \"C\",\n    \"symbol\": \"Int_ShieldCellBank_Size3_Class3\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 3,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 2,\n      \"Integrity\": 64,\n      \"Mass\": 5,\n      \"Power Draw\": 1.02,\n      \"Shield Reinforcement\": 29,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 340\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 3,\n    \"cost\": 63333,\n    \"edID\": 128064311,\n    \"eddbID\": 1164,\n    \"grp\": \"scb\",\n    \"id\": \"59\",\n    \"rating\": \"B\",\n    \"rechargerating\": \"B\",\n    \"symbol\": \"Int_ShieldCellBank_Size3_Class4\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 4,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 2,\n      \"Integrity\": 90,\n      \"Mass\": 8,\n      \"Power Draw\": 1.22,\n      \"Shield Reinforcement\": 35,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 340\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 3,\n    \"cost\": 158331,\n    \"edID\": 128064312,\n    \"eddbID\": 1165,\n    \"grp\": \"scb\",\n    \"id\": \"58\",\n    \"rating\": \"A\",\n    \"rechargerating\": \"A\",\n    \"symbol\": \"Int_ShieldCellBank_Size3_Class5\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 3,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 2,\n      \"Integrity\": 77,\n      \"Mass\": 5,\n      \"Power Draw\": 1.43,\n      \"Shield Reinforcement\": 41,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 340\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 4,\n    \"cost\": 11349,\n    \"edID\": 128064313,\n    \"eddbID\": 1166,\n    \"grp\": \"scb\",\n    \"id\": \"5h\",\n    \"rating\": \"E\",\n    \"rechargerating\": \"E\",\n    \"symbol\": \"Int_ShieldCellBank_Size4_Class1\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 4,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 3,\n      \"Integrity\": 64,\n      \"Mass\": 10,\n      \"Power Draw\": 0.74,\n      \"Shield Reinforcement\": 20,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 410\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 4,\n    \"cost\": 28373,\n    \"edID\": 128064314,\n    \"eddbID\": 1167,\n    \"grp\": \"scb\",\n    \"id\": \"5g\",\n    \"rating\": \"D\",\n    \"rechargerating\": \"D\",\n    \"symbol\": \"Int_ShieldCellBank_Size4_Class2\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 2,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 3,\n      \"Integrity\": 48,\n      \"Mass\": 4,\n      \"Power Draw\": 0.98,\n      \"Shield Reinforcement\": 26,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 410\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 4,\n    \"cost\": 70932,\n    \"edID\": 128064315,\n    \"eddbID\": 1168,\n    \"grp\": \"scb\",\n    \"id\": \"5f\",\n    \"rating\": \"C\",\n    \"rechargerating\": \"C\",\n    \"symbol\": \"Int_ShieldCellBank_Size4_Class3\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 3,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 3,\n      \"Integrity\": 80,\n      \"Mass\": 10,\n      \"Power Draw\": 1.23,\n      \"Shield Reinforcement\": 33,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 410\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 4,\n    \"cost\": 177331,\n    \"edID\": 128064316,\n    \"eddbID\": 1169,\n    \"grp\": \"scb\",\n    \"id\": \"5e\",\n    \"rating\": \"B\",\n    \"rechargerating\": \"B\",\n    \"symbol\": \"Int_ShieldCellBank_Size4_Class4\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 4,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 3,\n      \"Integrity\": 112,\n      \"Mass\": 16,\n      \"Power Draw\": 1.48,\n      \"Shield Reinforcement\": 39,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 410\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 4,\n    \"cost\": 443328,\n    \"edID\": 128064317,\n    \"eddbID\": 1170,\n    \"grp\": \"scb\",\n    \"id\": \"5d\",\n    \"rating\": \"A\",\n    \"rechargerating\": \"A\",\n    \"symbol\": \"Int_ShieldCellBank_Size4_Class5\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 3,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 3,\n      \"Integrity\": 96,\n      \"Mass\": 10,\n      \"Power Draw\": 1.72,\n      \"Shield Reinforcement\": 46,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 410\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 5,\n    \"cost\": 31778,\n    \"edID\": 128064318,\n    \"eddbID\": 1171,\n    \"grp\": \"scb\",\n    \"id\": \"5m\",\n    \"rating\": \"E\",\n    \"rechargerating\": \"E\",\n    \"symbol\": \"Int_ShieldCellBank_Size5_Class1\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 4,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 5,\n      \"Integrity\": 77,\n      \"Mass\": 20,\n      \"Power Draw\": 0.9,\n      \"Shield Reinforcement\": 21,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 540\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 5,\n    \"cost\": 79444,\n    \"edID\": 128064319,\n    \"eddbID\": 1172,\n    \"grp\": \"scb\",\n    \"id\": \"5l\",\n    \"rating\": \"D\",\n    \"rechargerating\": \"D\",\n    \"symbol\": \"Int_ShieldCellBank_Size5_Class2\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 2,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 5,\n      \"Integrity\": 58,\n      \"Mass\": 8,\n      \"Power Draw\": 1.2,\n      \"Shield Reinforcement\": 28,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 540\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 5,\n    \"cost\": 198612,\n    \"edID\": 128064320,\n    \"eddbID\": 1173,\n    \"grp\": \"scb\",\n    \"id\": \"5k\",\n    \"rating\": \"C\",\n    \"rechargerating\": \"C\",\n    \"symbol\": \"Int_ShieldCellBank_Size5_Class3\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 3,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 5,\n      \"Integrity\": 96,\n      \"Mass\": 20,\n      \"Power Draw\": 1.5,\n      \"Shield Reinforcement\": 35,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 540\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 5,\n    \"cost\": 496527,\n    \"edID\": 128064321,\n    \"eddbID\": 1174,\n    \"grp\": \"scb\",\n    \"id\": \"5j\",\n    \"rating\": \"B\",\n    \"rechargerating\": \"B\",\n    \"symbol\": \"Int_ShieldCellBank_Size5_Class4\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 4,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 5,\n      \"Integrity\": 134,\n      \"Mass\": 32,\n      \"Power Draw\": 1.8,\n      \"Shield Reinforcement\": 41,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 540\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 5,\n    \"cost\": 1241319,\n    \"edID\": 128064322,\n    \"eddbID\": 1175,\n    \"grp\": \"scb\",\n    \"id\": \"5i\",\n    \"rating\": \"A\",\n    \"rechargerating\": \"A\",\n    \"symbol\": \"Int_ShieldCellBank_Size5_Class5\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 3,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 5,\n      \"Integrity\": 115,\n      \"Mass\": 20,\n      \"Power Draw\": 2.1,\n      \"Shield Reinforcement\": 48,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 540\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 6,\n    \"cost\": 88987,\n    \"edID\": 128064323,\n    \"eddbID\": 1176,\n    \"grp\": \"scb\",\n    \"id\": \"5r\",\n    \"rating\": \"E\",\n    \"rechargerating\": \"E\",\n    \"symbol\": \"Int_ShieldCellBank_Size6_Class1\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 5,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 8,\n      \"Integrity\": 90,\n      \"Mass\": 40,\n      \"Power Draw\": 1.06,\n      \"Shield Reinforcement\": 20,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 640\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 6,\n    \"cost\": 222444,\n    \"edID\": 128064324,\n    \"eddbID\": 1177,\n    \"grp\": \"scb\",\n    \"id\": \"5q\",\n    \"rating\": \"D\",\n    \"rechargerating\": \"D\",\n    \"symbol\": \"Int_ShieldCellBank_Size6_Class2\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 3,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 8,\n      \"Integrity\": 68,\n      \"Mass\": 16,\n      \"Power Draw\": 1.42,\n      \"Shield Reinforcement\": 26,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 640\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 6,\n    \"cost\": 556110,\n    \"edID\": 128064325,\n    \"eddbID\": 1178,\n    \"grp\": \"scb\",\n    \"id\": \"5p\",\n    \"rating\": \"C\",\n    \"rechargerating\": \"C\",\n    \"symbol\": \"Int_ShieldCellBank_Size6_Class3\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 4,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 8,\n      \"Integrity\": 113,\n      \"Mass\": 40,\n      \"Power Draw\": 1.77,\n      \"Shield Reinforcement\": 33,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 640\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 6,\n    \"cost\": 1390275,\n    \"edID\": 128064326,\n    \"eddbID\": 1179,\n    \"grp\": \"scb\",\n    \"id\": \"5o\",\n    \"rating\": \"B\",\n    \"rechargerating\": \"B\",\n    \"symbol\": \"Int_ShieldCellBank_Size6_Class4\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 5,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 8,\n      \"Integrity\": 158,\n      \"Mass\": 64,\n      \"Power Draw\": 2.12,\n      \"Shield Reinforcement\": 39,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 640\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 6,\n    \"cost\": 3475688,\n    \"edID\": 128064327,\n    \"eddbID\": 1180,\n    \"grp\": \"scb\",\n    \"id\": \"5n\",\n    \"rating\": \"A\",\n    \"rechargerating\": \"A\",\n    \"symbol\": \"Int_ShieldCellBank_Size6_Class5\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 4,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 8,\n      \"Integrity\": 136,\n      \"Mass\": 40,\n      \"Power Draw\": 2.48,\n      \"Shield Reinforcement\": 46,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 640\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 7,\n    \"cost\": 249137,\n    \"edID\": 128064328,\n    \"eddbID\": 1181,\n    \"grp\": \"scb\",\n    \"id\": \"60\",\n    \"rating\": \"E\",\n    \"rechargerating\": \"E\",\n    \"symbol\": \"Int_ShieldCellBank_Size7_Class1\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 5,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 11,\n      \"Integrity\": 105,\n      \"Mass\": 80,\n      \"Power Draw\": 1.24,\n      \"Shield Reinforcement\": 24,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 720\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 7,\n    \"cost\": 622843,\n    \"edID\": 128064329,\n    \"eddbID\": 1182,\n    \"grp\": \"scb\",\n    \"id\": \"5v\",\n    \"rating\": \"D\",\n    \"rechargerating\": \"D\",\n    \"symbol\": \"Int_ShieldCellBank_Size7_Class2\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 3,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 11,\n      \"Integrity\": 79,\n      \"Mass\": 32,\n      \"Power Draw\": 1.66,\n      \"Shield Reinforcement\": 32,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 720\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 7,\n    \"cost\": 1557108,\n    \"edID\": 128064330,\n    \"eddbID\": 1183,\n    \"grp\": \"scb\",\n    \"id\": \"5u\",\n    \"rating\": \"C\",\n    \"rechargerating\": \"C\",\n    \"symbol\": \"Int_ShieldCellBank_Size7_Class3\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 4,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 11,\n      \"Integrity\": 131,\n      \"Mass\": 80,\n      \"Power Draw\": 2.07,\n      \"Shield Reinforcement\": 41,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 720\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 7,\n    \"cost\": 3892770,\n    \"edID\": 128064331,\n    \"eddbID\": 1184,\n    \"grp\": \"scb\",\n    \"id\": \"5t\",\n    \"rating\": \"B\",\n    \"rechargerating\": \"B\",\n    \"symbol\": \"Int_ShieldCellBank_Size7_Class4\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 5,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 11,\n      \"Integrity\": 183,\n      \"Mass\": 128,\n      \"Power Draw\": 2.48,\n      \"Shield Reinforcement\": 49,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 720\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 7,\n    \"cost\": 9731925,\n    \"edID\": 128064332,\n    \"eddbID\": 1185,\n    \"grp\": \"scb\",\n    \"id\": \"5s\",\n    \"rating\": \"A\",\n    \"rechargerating\": \"A\",\n    \"symbol\": \"Int_ShieldCellBank_Size7_Class5\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 4,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 11,\n      \"Integrity\": 157,\n      \"Mass\": 80,\n      \"Power Draw\": 2.9,\n      \"Shield Reinforcement\": 57,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 720\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 8,\n    \"cost\": 697584,\n    \"edID\": 128064333,\n    \"eddbID\": 1186,\n    \"grp\": \"scb\",\n    \"id\": \"65\",\n    \"rating\": \"E\",\n    \"rechargerating\": \"C\",\n    \"symbol\": \"Int_ShieldCellBank_Size8_Class1\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 5,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 17,\n      \"Integrity\": 120,\n      \"Mass\": 160,\n      \"Power Draw\": 1.44,\n      \"Shield Reinforcement\": 28,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 800\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 8,\n    \"cost\": 1743961,\n    \"edID\": 128064334,\n    \"eddbID\": 1187,\n    \"grp\": \"scb\",\n    \"id\": \"64\",\n    \"rating\": \"D\",\n    \"rechargerating\": \"D\",\n    \"symbol\": \"Int_ShieldCellBank_Size8_Class2\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 3,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 17,\n      \"Integrity\": 90,\n      \"Mass\": 64,\n      \"Power Draw\": 1.92,\n      \"Shield Reinforcement\": 37,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 800\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 8,\n    \"cost\": 4359903,\n    \"edID\": 128064335,\n    \"eddbID\": 1188,\n    \"grp\": \"scb\",\n    \"id\": \"63\",\n    \"rating\": \"C\",\n    \"rechargerating\": \"C\",\n    \"symbol\": \"Int_ShieldCellBank_Size8_Class3\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 4,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 17,\n      \"Integrity\": 150,\n      \"Mass\": 160,\n      \"Power Draw\": 2.4,\n      \"Shield Reinforcement\": 47,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 800\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 8,\n    \"cost\": 10899756,\n    \"edID\": 128064336,\n    \"eddbID\": 1189,\n    \"grp\": \"scb\",\n    \"id\": \"62\",\n    \"rating\": \"B\",\n    \"rechargerating\": \"B\",\n    \"symbol\": \"Int_ShieldCellBank_Size8_Class4\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 5,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 17,\n      \"Integrity\": 210,\n      \"Mass\": 256,\n      \"Power Draw\": 2.88,\n      \"Shield Reinforcement\": 56,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 800\n    }\n  },\n  {\n    \"ammocost\": 300,\n    \"class\": 8,\n    \"cost\": 27249391,\n    \"edID\": 128064337,\n    \"eddbID\": 1190,\n    \"grp\": \"scb\",\n    \"id\": \"61\",\n    \"rating\": \"A\",\n    \"rechargerating\": \"A\",\n    \"symbol\": \"Int_ShieldCellBank_Size8_Class5\",\n    \"ukName\": \"Shield Cell Bank\",\n    \"description\": \"Device that uses pre-charged cells to rapidly repair active shields. No effect on collapsed shields.\",\n    \"properties\": {\n      \"Ammo Maximum\": 4,\n      \"Boot time\": 25,\n      \"Ammo Clip Size\": 1,\n      \"Duration\": 17,\n      \"Integrity\": 180,\n      \"Mass\": 160,\n      \"Power Draw\": 3.36,\n      \"Shield Reinforcement\": 65,\n      \"Spin Up Time\": 5,\n      \"Thermal Load\": 800\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 88075,\n    \"edID\": 128064262,\n    \"eddbID\": 1551,\n    \"grp\": \"sg\",\n    \"id\": \"1x\",\n    \"rating\": \"A\",\n    \"regen\": 1,\n    \"symbol\": \"Int_ShieldGenerator_Size1_Class5\",\n    \"ukName\": \"Shield Generator\",\n    \"description\": \"Forms a continually regenerating protective energy shield around the vessel.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 1.6,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 48,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 1.3,\n      \"Maximum Mass\": 63,\n      \"Maximum Multipler\": 1.7,\n      \"Minimum Mass\": 13,\n      \"Minimum Multiplier\": 0.7,\n      \"Optimal Mass\": 25,\n      \"Optimal Multiplier\": 1.2,\n      \"Power Draw\": 1.68,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 1980,\n    \"edID\": 128064263,\n    \"eddbID\": 1116,\n    \"grp\": \"sg\",\n    \"id\": \"3v\",\n    \"rating\": \"E\",\n    \"regen\": 1,\n    \"symbol\": \"Int_ShieldGenerator_Size2_Class1\",\n    \"ukName\": \"Shield Generator\",\n    \"description\": \"Forms a continually regenerating protective energy shield around the vessel.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 1.6,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 41,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 2.5,\n      \"Maximum Mass\": 138,\n      \"Maximum Multipler\": 1.3,\n      \"Minimum Mass\": 28,\n      \"Minimum Multiplier\": 0.3,\n      \"Optimal Mass\": 55,\n      \"Optimal Multiplier\": 0.8,\n      \"Power Draw\": 0.9,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 5930,\n    \"edID\": 128064264,\n    \"eddbID\": 1117,\n    \"grp\": \"sg\",\n    \"id\": \"3u\",\n    \"rating\": \"D\",\n    \"regen\": 1,\n    \"symbol\": \"Int_ShieldGenerator_Size2_Class2\",\n    \"ukName\": \"Shield Generator\",\n    \"description\": \"Forms a continually regenerating protective energy shield around the vessel.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 1.6,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 31,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 1,\n      \"Maximum Mass\": 138,\n      \"Maximum Multipler\": 1.4,\n      \"Minimum Mass\": 28,\n      \"Minimum Multiplier\": 0.4,\n      \"Optimal Mass\": 55,\n      \"Optimal Multiplier\": 0.9,\n      \"Power Draw\": 1.2,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 17800,\n    \"edID\": 128064265,\n    \"eddbID\": 1118,\n    \"grp\": \"sg\",\n    \"id\": \"3t\",\n    \"rating\": \"C\",\n    \"regen\": 1,\n    \"symbol\": \"Int_ShieldGenerator_Size2_Class3\",\n    \"ukName\": \"Shield Generator\",\n    \"description\": \"Forms a continually regenerating protective energy shield around the vessel.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 1.6,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 51,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 2.5,\n      \"Maximum Mass\": 138,\n      \"Maximum Multipler\": 1.5,\n      \"Minimum Mass\": 28,\n      \"Minimum Multiplier\": 0.5,\n      \"Optimal Mass\": 55,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 1.5,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 53410,\n    \"edID\": 128064266,\n    \"eddbID\": 1119,\n    \"grp\": \"sg\",\n    \"id\": \"3s\",\n    \"rating\": \"B\",\n    \"regen\": 1,\n    \"symbol\": \"Int_ShieldGenerator_Size2_Class4\",\n    \"ukName\": \"Shield Generator\",\n    \"description\": \"Forms a continually regenerating protective energy shield around the vessel.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 1.6,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 71,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 4,\n      \"Maximum Mass\": 138,\n      \"Maximum Multipler\": 1.6,\n      \"Minimum Mass\": 28,\n      \"Minimum Multiplier\": 0.6,\n      \"Optimal Mass\": 55,\n      \"Optimal Multiplier\": 1.1,\n      \"Power Draw\": 1.8,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 160220,\n    \"edID\": 128064267,\n    \"eddbID\": 1120,\n    \"grp\": \"sg\",\n    \"id\": \"3r\",\n    \"rating\": \"A\",\n    \"regen\": 1,\n    \"symbol\": \"Int_ShieldGenerator_Size2_Class5\",\n    \"ukName\": \"Shield Generator\",\n    \"description\": \"Forms a continually regenerating protective energy shield around the vessel.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 1.6,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 61,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 2.5,\n      \"Maximum Mass\": 138,\n      \"Maximum Multipler\": 1.7,\n      \"Minimum Mass\": 28,\n      \"Minimum Multiplier\": 0.7,\n      \"Optimal Mass\": 55,\n      \"Optimal Multiplier\": 1.2,\n      \"Power Draw\": 2.1,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 6270,\n    \"edID\": 128064268,\n    \"eddbID\": 1121,\n    \"grp\": \"sg\",\n    \"id\": \"44\",\n    \"rating\": \"E\",\n    \"regen\": 1,\n    \"symbol\": \"Int_ShieldGenerator_Size3_Class1\",\n    \"ukName\": \"Shield Generator\",\n    \"description\": \"Forms a continually regenerating protective energy shield around the vessel.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 1.87,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 51,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 5,\n      \"Maximum Mass\": 413,\n      \"Maximum Multipler\": 1.3,\n      \"Minimum Mass\": 83,\n      \"Minimum Multiplier\": 0.3,\n      \"Optimal Mass\": 165,\n      \"Optimal Multiplier\": 0.8,\n      \"Power Draw\": 1.08,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 18810,\n    \"edID\": 128064269,\n    \"eddbID\": 1122,\n    \"grp\": \"sg\",\n    \"id\": \"43\",\n    \"rating\": \"D\",\n    \"regen\": 1,\n    \"symbol\": \"Int_ShieldGenerator_Size3_Class2\",\n    \"ukName\": \"Shield Generator\",\n    \"description\": \"Forms a continually regenerating protective energy shield around the vessel.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 1.87,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 38,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 2,\n      \"Maximum Mass\": 413,\n      \"Maximum Multipler\": 1.4,\n      \"Minimum Mass\": 83,\n      \"Minimum Multiplier\": 0.4,\n      \"Optimal Mass\": 165,\n      \"Optimal Multiplier\": 0.9,\n      \"Power Draw\": 1.44,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 56440,\n    \"edID\": 128064270,\n    \"eddbID\": 1123,\n    \"grp\": \"sg\",\n    \"id\": \"42\",\n    \"rating\": \"C\",\n    \"regen\": 1,\n    \"symbol\": \"Int_ShieldGenerator_Size3_Class3\",\n    \"ukName\": \"Shield Generator\",\n    \"description\": \"Forms a continually regenerating protective energy shield around the vessel.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 1.87,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 64,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 5,\n      \"Maximum Mass\": 413,\n      \"Maximum Multipler\": 1.5,\n      \"Minimum Mass\": 83,\n      \"Minimum Multiplier\": 0.5,\n      \"Optimal Mass\": 165,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 1.8,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 169300,\n    \"edID\": 128064271,\n    \"eddbID\": 1124,\n    \"grp\": \"sg\",\n    \"id\": \"41\",\n    \"rating\": \"B\",\n    \"regen\": 1,\n    \"symbol\": \"Int_ShieldGenerator_Size3_Class4\",\n    \"ukName\": \"Shield Generator\",\n    \"description\": \"Forms a continually regenerating protective energy shield around the vessel.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 1.87,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 90,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 8,\n      \"Maximum Mass\": 413,\n      \"Maximum Multipler\": 1.6,\n      \"Minimum Mass\": 83,\n      \"Minimum Multiplier\": 0.6,\n      \"Optimal Mass\": 165,\n      \"Optimal Multiplier\": 1.1,\n      \"Power Draw\": 2.16,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 507910,\n    \"edID\": 128064272,\n    \"eddbID\": 1125,\n    \"grp\": \"sg\",\n    \"id\": \"40\",\n    \"rating\": \"A\",\n    \"regen\": 1,\n    \"symbol\": \"Int_ShieldGenerator_Size3_Class5\",\n    \"ukName\": \"Shield Generator\",\n    \"description\": \"Forms a continually regenerating protective energy shield around the vessel.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 1.87,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 77,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 5,\n      \"Maximum Mass\": 413,\n      \"Maximum Multipler\": 1.7,\n      \"Minimum Mass\": 83,\n      \"Minimum Multiplier\": 0.7,\n      \"Optimal Mass\": 165,\n      \"Optimal Multiplier\": 1.2,\n      \"Power Draw\": 2.52,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 19880,\n    \"edID\": 128064273,\n    \"eddbID\": 1126,\n    \"grp\": \"sg\",\n    \"id\": \"49\",\n    \"rating\": \"E\",\n    \"regen\": 1,\n    \"symbol\": \"Int_ShieldGenerator_Size4_Class1\",\n    \"ukName\": \"Shield Generator\",\n    \"description\": \"Forms a continually regenerating protective energy shield around the vessel.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 2.53,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 64,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 10,\n      \"Maximum Mass\": 713,\n      \"Maximum Multipler\": 1.3,\n      \"Minimum Mass\": 143,\n      \"Minimum Multiplier\": 0.3,\n      \"Optimal Mass\": 285,\n      \"Optimal Multiplier\": 0.8,\n      \"Power Draw\": 1.32,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 59630,\n    \"edID\": 128064274,\n    \"eddbID\": 1127,\n    \"grp\": \"sg\",\n    \"id\": \"48\",\n    \"rating\": \"D\",\n    \"regen\": 1,\n    \"symbol\": \"Int_ShieldGenerator_Size4_Class2\",\n    \"ukName\": \"Shield Generator\",\n    \"description\": \"Forms a continually regenerating protective energy shield around the vessel.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 2.53,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 48,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 4,\n      \"Maximum Mass\": 713,\n      \"Maximum Multipler\": 1.4,\n      \"Minimum Mass\": 143,\n      \"Minimum Multiplier\": 0.4,\n      \"Optimal Mass\": 285,\n      \"Optimal Multiplier\": 0.9,\n      \"Power Draw\": 1.76,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 178900,\n    \"edID\": 128064275,\n    \"eddbID\": 1128,\n    \"grp\": \"sg\",\n    \"id\": \"47\",\n    \"rating\": \"C\",\n    \"regen\": 1,\n    \"symbol\": \"Int_ShieldGenerator_Size4_Class3\",\n    \"ukName\": \"Shield Generator\",\n    \"description\": \"Forms a continually regenerating protective energy shield around the vessel.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 2.53,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 80,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 10,\n      \"Maximum Mass\": 713,\n      \"Maximum Multipler\": 1.5,\n      \"Minimum Mass\": 143,\n      \"Minimum Multiplier\": 0.5,\n      \"Optimal Mass\": 285,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 2.2,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 536690,\n    \"edID\": 128064276,\n    \"eddbID\": 1129,\n    \"grp\": \"sg\",\n    \"id\": \"46\",\n    \"rating\": \"B\",\n    \"regen\": 1,\n    \"symbol\": \"Int_ShieldGenerator_Size4_Class4\",\n    \"ukName\": \"Shield Generator\",\n    \"description\": \"Forms a continually regenerating protective energy shield around the vessel.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 2.53,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 112,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 16,\n      \"Maximum Mass\": 713,\n      \"Maximum Multipler\": 1.6,\n      \"Minimum Mass\": 143,\n      \"Minimum Multiplier\": 0.6,\n      \"Optimal Mass\": 285,\n      \"Optimal Multiplier\": 1.1,\n      \"Power Draw\": 2.64,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 1610080,\n    \"edID\": 128064277,\n    \"eddbID\": 1130,\n    \"grp\": \"sg\",\n    \"id\": \"45\",\n    \"rating\": \"A\",\n    \"regen\": 1,\n    \"symbol\": \"Int_ShieldGenerator_Size4_Class5\",\n    \"ukName\": \"Shield Generator\",\n    \"description\": \"Forms a continually regenerating protective energy shield around the vessel.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 2.53,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 96,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 10,\n      \"Maximum Mass\": 713,\n      \"Maximum Multipler\": 1.7,\n      \"Minimum Mass\": 143,\n      \"Minimum Multiplier\": 0.7,\n      \"Optimal Mass\": 285,\n      \"Optimal Multiplier\": 1.2,\n      \"Power Draw\": 3.08,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 63010,\n    \"edID\": 128064278,\n    \"eddbID\": 1131,\n    \"grp\": \"sg\",\n    \"id\": \"4e\",\n    \"rating\": \"E\",\n    \"regen\": 1,\n    \"symbol\": \"Int_ShieldGenerator_Size5_Class1\",\n    \"ukName\": \"Shield Generator\",\n    \"description\": \"Forms a continually regenerating protective energy shield around the vessel.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 3.75,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 77,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 20,\n      \"Maximum Mass\": 1013,\n      \"Maximum Multipler\": 1.3,\n      \"Minimum Mass\": 203,\n      \"Minimum Multiplier\": 0.3,\n      \"Optimal Mass\": 405,\n      \"Optimal Multiplier\": 0.8,\n      \"Power Draw\": 1.56,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 189040,\n    \"edID\": 128064279,\n    \"eddbID\": 1132,\n    \"grp\": \"sg\",\n    \"id\": \"4d\",\n    \"rating\": \"D\",\n    \"regen\": 1,\n    \"symbol\": \"Int_ShieldGenerator_Size5_Class2\",\n    \"ukName\": \"Shield Generator\",\n    \"description\": \"Forms a continually regenerating protective energy shield around the vessel.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 3.75,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 58,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 8,\n      \"Maximum Mass\": 1013,\n      \"Maximum Multipler\": 1.4,\n      \"Minimum Mass\": 203,\n      \"Minimum Multiplier\": 0.4,\n      \"Optimal Mass\": 405,\n      \"Optimal Multiplier\": 0.9,\n      \"Power Draw\": 2.08,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 567110,\n    \"edID\": 128064280,\n    \"eddbID\": 1133,\n    \"grp\": \"sg\",\n    \"id\": \"4c\",\n    \"rating\": \"C\",\n    \"regen\": 1,\n    \"symbol\": \"Int_ShieldGenerator_Size5_Class3\",\n    \"ukName\": \"Shield Generator\",\n    \"description\": \"Forms a continually regenerating protective energy shield around the vessel.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 3.75,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 96,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 20,\n      \"Maximum Mass\": 1013,\n      \"Maximum Multipler\": 1.5,\n      \"Minimum Mass\": 203,\n      \"Minimum Multiplier\": 0.5,\n      \"Optimal Mass\": 405,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 2.6,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 1701320,\n    \"edID\": 128064281,\n    \"eddbID\": 1134,\n    \"grp\": \"sg\",\n    \"id\": \"4b\",\n    \"rating\": \"B\",\n    \"regen\": 1,\n    \"symbol\": \"Int_ShieldGenerator_Size5_Class4\",\n    \"ukName\": \"Shield Generator\",\n    \"description\": \"Forms a continually regenerating protective energy shield around the vessel.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 3.75,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 134,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 32,\n      \"Maximum Mass\": 1013,\n      \"Maximum Multipler\": 1.6,\n      \"Minimum Mass\": 203,\n      \"Minimum Multiplier\": 0.6,\n      \"Optimal Mass\": 405,\n      \"Optimal Multiplier\": 1.1,\n      \"Power Draw\": 3.12,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 5103950,\n    \"edID\": 128064282,\n    \"eddbID\": 1135,\n    \"grp\": \"sg\",\n    \"id\": \"4a\",\n    \"rating\": \"A\",\n    \"regen\": 1,\n    \"symbol\": \"Int_ShieldGenerator_Size5_Class5\",\n    \"ukName\": \"Shield Generator\",\n    \"description\": \"Forms a continually regenerating protective energy shield around the vessel.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 3.75,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 115,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 20,\n      \"Maximum Mass\": 1013,\n      \"Maximum Multipler\": 1.7,\n      \"Minimum Mass\": 203,\n      \"Minimum Multiplier\": 0.7,\n      \"Optimal Mass\": 405,\n      \"Optimal Multiplier\": 1.2,\n      \"Power Draw\": 3.64,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 199750,\n    \"edID\": 128064283,\n    \"eddbID\": 1136,\n    \"grp\": \"sg\",\n    \"id\": \"4j\",\n    \"rating\": \"E\",\n    \"regen\": 1.3,\n    \"symbol\": \"Int_ShieldGenerator_Size6_Class1\",\n    \"ukName\": \"Shield Generator\",\n    \"description\": \"Forms a continually regenerating protective energy shield around the vessel.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 5.33,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 90,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 40,\n      \"Maximum Mass\": 1350,\n      \"Maximum Multipler\": 1.3,\n      \"Minimum Mass\": 270,\n      \"Minimum Multiplier\": 0.3,\n      \"Optimal Mass\": 540,\n      \"Optimal Multiplier\": 0.8,\n      \"Power Draw\": 1.86,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 599240,\n    \"edID\": 128064284,\n    \"eddbID\": 1137,\n    \"grp\": \"sg\",\n    \"id\": \"4i\",\n    \"rating\": \"D\",\n    \"regen\": 1.3,\n    \"symbol\": \"Int_ShieldGenerator_Size6_Class2\",\n    \"ukName\": \"Shield Generator\",\n    \"description\": \"Forms a continually regenerating protective energy shield around the vessel.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 5.33,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 68,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 16,\n      \"Maximum Mass\": 1350,\n      \"Maximum Multipler\": 1.4,\n      \"Minimum Mass\": 270,\n      \"Minimum Multiplier\": 0.4,\n      \"Optimal Mass\": 540,\n      \"Optimal Multiplier\": 0.9,\n      \"Power Draw\": 2.48,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 1797730,\n    \"edID\": 128064285,\n    \"eddbID\": 1138,\n    \"grp\": \"sg\",\n    \"id\": \"4h\",\n    \"rating\": \"C\",\n    \"regen\": 1.3,\n    \"symbol\": \"Int_ShieldGenerator_Size6_Class3\",\n    \"ukName\": \"Shield Generator\",\n    \"description\": \"Forms a continually regenerating protective energy shield around the vessel.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 5.33,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 113,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 40,\n      \"Maximum Mass\": 1350,\n      \"Maximum Multipler\": 1.5,\n      \"Minimum Mass\": 270,\n      \"Minimum Multiplier\": 0.5,\n      \"Optimal Mass\": 540,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 3.1,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 5393180,\n    \"edID\": 128064286,\n    \"eddbID\": 1139,\n    \"grp\": \"sg\",\n    \"id\": \"4g\",\n    \"rating\": \"B\",\n    \"regen\": 1.3,\n    \"symbol\": \"Int_ShieldGenerator_Size6_Class4\",\n    \"ukName\": \"Shield Generator\",\n    \"description\": \"Forms a continually regenerating protective energy shield around the vessel.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 5.33,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 158,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 64,\n      \"Maximum Mass\": 1350,\n      \"Maximum Multipler\": 1.6,\n      \"Minimum Mass\": 270,\n      \"Minimum Multiplier\": 0.6,\n      \"Optimal Mass\": 540,\n      \"Optimal Multiplier\": 1.1,\n      \"Power Draw\": 3.72,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 16179530,\n    \"edID\": 128064287,\n    \"eddbID\": 1140,\n    \"grp\": \"sg\",\n    \"id\": \"4f\",\n    \"rating\": \"A\",\n    \"regen\": 1.3,\n    \"symbol\": \"Int_ShieldGenerator_Size6_Class5\",\n    \"ukName\": \"Shield Generator\",\n    \"description\": \"Forms a continually regenerating protective energy shield around the vessel.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 5.33,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 136,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 40,\n      \"Maximum Mass\": 1350,\n      \"Maximum Multipler\": 1.7,\n      \"Minimum Mass\": 270,\n      \"Minimum Multiplier\": 0.7,\n      \"Optimal Mass\": 540,\n      \"Optimal Multiplier\": 1.2,\n      \"Power Draw\": 4.34,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 633200,\n    \"edID\": 128064288,\n    \"eddbID\": 1141,\n    \"grp\": \"sg\",\n    \"id\": \"4o\",\n    \"rating\": \"E\",\n    \"regen\": 1.8,\n    \"symbol\": \"Int_ShieldGenerator_Size7_Class1\",\n    \"ukName\": \"Shield Generator\",\n    \"description\": \"Forms a continually regenerating protective energy shield around the vessel.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 7.33,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 105,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 80,\n      \"Maximum Mass\": 2650,\n      \"Maximum Multipler\": 1.3,\n      \"Minimum Mass\": 530,\n      \"Minimum Multiplier\": 0.3,\n      \"Optimal Mass\": 1060,\n      \"Optimal Multiplier\": 0.8,\n      \"Power Draw\": 2.1,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 1899600,\n    \"edID\": 128064289,\n    \"eddbID\": 1142,\n    \"grp\": \"sg\",\n    \"id\": \"4n\",\n    \"rating\": \"D\",\n    \"regen\": 1.8,\n    \"symbol\": \"Int_ShieldGenerator_Size7_Class2\",\n    \"ukName\": \"Shield Generator\",\n    \"description\": \"Forms a continually regenerating protective energy shield around the vessel.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 7.33,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 79,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 32,\n      \"Maximum Mass\": 2650,\n      \"Maximum Multipler\": 1.4,\n      \"Minimum Mass\": 530,\n      \"Minimum Multiplier\": 0.4,\n      \"Optimal Mass\": 1060,\n      \"Optimal Multiplier\": 0.9,\n      \"Power Draw\": 2.8,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 5698790,\n    \"edID\": 128064290,\n    \"eddbID\": 1143,\n    \"grp\": \"sg\",\n    \"id\": \"4m\",\n    \"rating\": \"C\",\n    \"regen\": 1.8,\n    \"symbol\": \"Int_ShieldGenerator_Size7_Class3\",\n    \"ukName\": \"Shield Generator\",\n    \"description\": \"Forms a continually regenerating protective energy shield around the vessel.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 7.33,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 131,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 80,\n      \"Maximum Mass\": 2650,\n      \"Maximum Multipler\": 1.5,\n      \"Minimum Mass\": 530,\n      \"Minimum Multiplier\": 0.5,\n      \"Optimal Mass\": 1060,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 3.5,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 17096370,\n    \"edID\": 128064291,\n    \"eddbID\": 1144,\n    \"grp\": \"sg\",\n    \"id\": \"4l\",\n    \"rating\": \"B\",\n    \"regen\": 1.8,\n    \"symbol\": \"Int_ShieldGenerator_Size7_Class4\",\n    \"ukName\": \"Shield Generator\",\n    \"description\": \"Forms a continually regenerating protective energy shield around the vessel.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 7.33,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 183,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 128,\n      \"Maximum Mass\": 2650,\n      \"Maximum Multipler\": 1.6,\n      \"Minimum Mass\": 530,\n      \"Minimum Multiplier\": 0.6,\n      \"Optimal Mass\": 1060,\n      \"Optimal Multiplier\": 1.1,\n      \"Power Draw\": 4.2,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 51289110,\n    \"edID\": 128064292,\n    \"eddbID\": 1145,\n    \"grp\": \"sg\",\n    \"id\": \"4k\",\n    \"rating\": \"A\",\n    \"regen\": 1.8,\n    \"symbol\": \"Int_ShieldGenerator_Size7_Class5\",\n    \"ukName\": \"Shield Generator\",\n    \"description\": \"Forms a continually regenerating protective energy shield around the vessel.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 7.33,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 157,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 80,\n      \"Maximum Mass\": 2650,\n      \"Maximum Multipler\": 1.7,\n      \"Minimum Mass\": 530,\n      \"Minimum Multiplier\": 0.7,\n      \"Optimal Mass\": 1060,\n      \"Optimal Multiplier\": 1.2,\n      \"Power Draw\": 4.9,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 2007240,\n    \"edID\": 128064293,\n    \"eddbID\": 1146,\n    \"grp\": \"sg\",\n    \"id\": \"4t\",\n    \"rating\": \"E\",\n    \"regen\": 2.4,\n    \"symbol\": \"Int_ShieldGenerator_Size8_Class1\",\n    \"ukName\": \"Shield Generator\",\n    \"description\": \"Forms a continually regenerating protective energy shield around the vessel.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 9.6,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 120,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 160,\n      \"Maximum Mass\": 4500,\n      \"Maximum Multipler\": 1.3,\n      \"Minimum Mass\": 900,\n      \"Minimum Multiplier\": 0.3,\n      \"Optimal Mass\": 1800,\n      \"Optimal Multiplier\": 0.8,\n      \"Power Draw\": 2.4,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 6021720,\n    \"edID\": 128064294,\n    \"eddbID\": 1147,\n    \"grp\": \"sg\",\n    \"id\": \"4s\",\n    \"rating\": \"D\",\n    \"regen\": 2.4,\n    \"symbol\": \"Int_ShieldGenerator_Size8_Class2\",\n    \"ukName\": \"Shield Generator\",\n    \"description\": \"Forms a continually regenerating protective energy shield around the vessel.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 9.6,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 90,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 64,\n      \"Maximum Mass\": 4500,\n      \"Maximum Multipler\": 1.4,\n      \"Minimum Mass\": 900,\n      \"Minimum Multiplier\": 0.4,\n      \"Optimal Mass\": 1800,\n      \"Optimal Multiplier\": 0.9,\n      \"Power Draw\": 3.2,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 18065170,\n    \"edID\": 128064295,\n    \"eddbID\": 1148,\n    \"grp\": \"sg\",\n    \"id\": \"4r\",\n    \"rating\": \"C\",\n    \"regen\": 2.4,\n    \"symbol\": \"Int_ShieldGenerator_Size8_Class3\",\n    \"ukName\": \"Shield Generator\",\n    \"description\": \"Forms a continually regenerating protective energy shield around the vessel.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 9.6,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 150,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 160,\n      \"Maximum Mass\": 4500,\n      \"Maximum Multipler\": 1.5,\n      \"Minimum Mass\": 900,\n      \"Minimum Multiplier\": 0.5,\n      \"Optimal Mass\": 1800,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 4,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 54195500,\n    \"edID\": 128064296,\n    \"eddbID\": 1149,\n    \"grp\": \"sg\",\n    \"id\": \"4q\",\n    \"rating\": \"B\",\n    \"regen\": 2.4,\n    \"symbol\": \"Int_ShieldGenerator_Size8_Class4\",\n    \"ukName\": \"Shield Generator\",\n    \"description\": \"Forms a continually regenerating protective energy shield around the vessel.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 9.6,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 210,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 256,\n      \"Maximum Mass\": 4500,\n      \"Maximum Multipler\": 1.6,\n      \"Minimum Mass\": 900,\n      \"Minimum Multiplier\": 0.6,\n      \"Optimal Mass\": 1800,\n      \"Optimal Multiplier\": 1.1,\n      \"Power Draw\": 4.8,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 162586490,\n    \"edID\": 128064297,\n    \"eddbID\": 1150,\n    \"grp\": \"sg\",\n    \"id\": \"4p\",\n    \"rating\": \"A\",\n    \"regen\": 2.4,\n    \"symbol\": \"Int_ShieldGenerator_Size8_Class5\",\n    \"ukName\": \"Shield Generator\",\n    \"description\": \"Forms a continually regenerating protective energy shield around the vessel.\",\n    \"properties\": {\n      \"Broken Regeneration Rate\": 9.6,\n      \"Distributer Draw\": 0.6,\n      \"Explosive Resistance\": 0.5,\n      \"Integrity\": 180,\n      \"Kinetic Resistance\": 0.4,\n      \"Mass\": 160,\n      \"Maximum Mass\": 4500,\n      \"Maximum Multipler\": 1.7,\n      \"Minimum Mass\": 900,\n      \"Minimum Multiplier\": 0.7,\n      \"Optimal Mass\": 1800,\n      \"Optimal Multiplier\": 1.2,\n      \"Power Draw\": 5.6,\n      \"Thermal Resistance\": -0.2\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 9121,\n    \"edID\": 128932273,\n    \"eddbID\": 1538,\n    \"grp\": \"sua\",\n    \"id\": \"3w\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_SupercruiseAssist\",\n    \"name\": \"Supercruise Assist\",\n    \"ukName\": \"Supercruise Assist\",\n    \"description\": \"Provides additional supercruise guidance to a predetermined destination.\",\n    \"properties\": {\n      \"Mass\": 0,\n      \"Power Draw\": 0.3\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 250000,\n    \"edID\": 128666634,\n    \"eddbID\": 1245,\n    \"grp\": \"ss\",\n    \"id\": \"2i\",\n    \"name\": \"Detailed Surface Scanner\",\n    \"rating\": \"I\",\n    \"symbol\": \"Int_DetailedSurfaceScanner_Tiny\",\n    \"ukName\": \"Surface Scanner\",\n    \"description\": \"Advanced stellar body scanner used during exploration.\",\n    \"properties\": {\n      \"Mass\": 0,\n      \"Power Draw\": 0,\n      \"Probe Radius\": 0.2\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 2007242,\n    \"edID\": 128064133,\n    \"eddbID\": 991,\n    \"fuelmul\": 0.011,\n    \"fuelpower\": 2.9,\n    \"grp\": \"fsd\",\n    \"id\": \"Fy\",\n    \"maxfuel\": 0,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_Hyperdrive_Size8_Class1\",\n    \"ukName\": \"FSD\",\n    \"description\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\",\n    \"properties\": {\n      \"Integrity\": 135,\n      \"Mass\": 160,\n      \"Optimal Mass\": 0,\n      \"Power Draw\": 0.56\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 6021723,\n    \"edID\": 128064134,\n    \"eddbID\": 992,\n    \"fuelmul\": 0.01,\n    \"fuelpower\": 2.9,\n    \"grp\": \"fsd\",\n    \"id\": \"Fx\",\n    \"maxfuel\": 0,\n    \"rating\": \"D\",\n    \"symbol\": \"Int_Hyperdrive_Size8_Class2\",\n    \"ukName\": \"FSD\",\n    \"description\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\",\n    \"properties\": {\n      \"Integrity\": 120,\n      \"Mass\": 64,\n      \"Optimal Mass\": 0,\n      \"Power Draw\": 0.63\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 18065166,\n    \"edID\": 128064135,\n    \"eddbID\": 993,\n    \"fuelmul\": 0.008,\n    \"fuelpower\": 2.9,\n    \"grp\": \"fsd\",\n    \"id\": \"Fw\",\n    \"maxfuel\": 0,\n    \"rating\": \"C\",\n    \"symbol\": \"Int_Hyperdrive_Size8_Class3\",\n    \"ukName\": \"FSD\",\n    \"description\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\",\n    \"properties\": {\n      \"Integrity\": 150,\n      \"Mass\": 160,\n      \"Optimal Mass\": 0,\n      \"Power Draw\": 0.7\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 54195496,\n    \"edID\": 128064136,\n    \"eddbID\": 994,\n    \"fuelmul\": 0.01,\n    \"fuelpower\": 2.9,\n    \"grp\": \"fsd\",\n    \"id\": \"Fv\",\n    \"maxfuel\": 0,\n    \"rating\": \"B\",\n    \"symbol\": \"Int_Hyperdrive_Size8_Class4\",\n    \"ukName\": \"FSD\",\n    \"description\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\",\n    \"properties\": {\n      \"Integrity\": 225,\n      \"Mass\": 256,\n      \"Optimal Mass\": 0,\n      \"Power Draw\": 0.88\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 162586488,\n    \"edID\": 128064137,\n    \"eddbID\": 995,\n    \"fuelmul\": 0.012,\n    \"fuelpower\": 2.9,\n    \"grp\": \"fsd\",\n    \"id\": \"Fu\",\n    \"maxfuel\": 0,\n    \"rating\": \"A\",\n    \"symbol\": \"Int_Hyperdrive_Size8_Class5\",\n    \"ukName\": \"FSD\",\n    \"description\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\",\n    \"properties\": {\n      \"Integrity\": 188,\n      \"Mass\": 160,\n      \"Optimal Mass\": 0,\n      \"Power Draw\": 1.05\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 633200,\n    \"edID\": 128064128,\n    \"eddbID\": 986,\n    \"fuelmul\": 0.011,\n    \"fuelpower\": 2.75,\n    \"grp\": \"fsd\",\n    \"id\": \"Ft\",\n    \"maxfuel\": 8.5,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_Hyperdrive_Size7_Class1\",\n    \"ukName\": \"FSD\",\n    \"description\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\",\n    \"properties\": {\n      \"Integrity\": 118,\n      \"Mass\": 80,\n      \"Optimal Mass\": 1440,\n      \"Power Draw\": 0.48\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 1899600,\n    \"edID\": 128064129,\n    \"eddbID\": 987,\n    \"fuelmul\": 0.01,\n    \"fuelpower\": 2.75,\n    \"grp\": \"fsd\",\n    \"id\": \"Fs\",\n    \"maxfuel\": 8.5,\n    \"rating\": \"D\",\n    \"symbol\": \"Int_Hyperdrive_Size7_Class2\",\n    \"ukName\": \"FSD\",\n    \"description\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\",\n    \"properties\": {\n      \"Integrity\": 105,\n      \"Mass\": 32,\n      \"Optimal Mass\": 1620,\n      \"Power Draw\": 0.54\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 5698790,\n    \"edID\": 128064130,\n    \"eddbID\": 988,\n    \"fuelmul\": 0.008,\n    \"fuelpower\": 2.75,\n    \"grp\": \"fsd\",\n    \"id\": \"Fr\",\n    \"maxfuel\": 8.5,\n    \"rating\": \"C\",\n    \"symbol\": \"Int_Hyperdrive_Size7_Class3\",\n    \"ukName\": \"FSD\",\n    \"description\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\",\n    \"properties\": {\n      \"Integrity\": 131,\n      \"Mass\": 80,\n      \"Optimal Mass\": 1800,\n      \"Power Draw\": 0.6\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 17096370,\n    \"edID\": 128064131,\n    \"eddbID\": 989,\n    \"fuelmul\": 0.01,\n    \"fuelpower\": 2.75,\n    \"grp\": \"fsd\",\n    \"id\": \"Fq\",\n    \"maxfuel\": 10.6,\n    \"rating\": \"B\",\n    \"symbol\": \"Int_Hyperdrive_Size7_Class4\",\n    \"ukName\": \"FSD\",\n    \"description\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\",\n    \"properties\": {\n      \"Integrity\": 197,\n      \"Mass\": 128,\n      \"Optimal Mass\": 2250,\n      \"Power Draw\": 0.75\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 51289110,\n    \"edID\": 128064132,\n    \"eddbID\": 990,\n    \"fuelmul\": 0.012,\n    \"fuelpower\": 2.75,\n    \"grp\": \"fsd\",\n    \"id\": \"Fp\",\n    \"maxfuel\": 12.8,\n    \"rating\": \"A\",\n    \"symbol\": \"Int_Hyperdrive_Size7_Class5\",\n    \"ukName\": \"FSD\",\n    \"description\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\",\n    \"properties\": {\n      \"Integrity\": 164,\n      \"Mass\": 80,\n      \"Optimal Mass\": 2700,\n      \"Power Draw\": 0.9\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 199750,\n    \"edID\": 128064123,\n    \"eddbID\": 981,\n    \"fuelmul\": 0.011,\n    \"fuelpower\": 2.6,\n    \"grp\": \"fsd\",\n    \"id\": \"Fo\",\n    \"maxfuel\": 5.3,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_Hyperdrive_Size6_Class1\",\n    \"ukName\": \"FSD\",\n    \"description\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\",\n    \"properties\": {\n      \"Integrity\": 102,\n      \"Mass\": 40,\n      \"Optimal Mass\": 960,\n      \"Power Draw\": 0.4\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 599240,\n    \"edID\": 128064124,\n    \"eddbID\": 982,\n    \"fuelmul\": 0.01,\n    \"fuelpower\": 2.6,\n    \"grp\": \"fsd\",\n    \"id\": \"Fn\",\n    \"maxfuel\": 5.3,\n    \"rating\": \"D\",\n    \"symbol\": \"Int_Hyperdrive_Size6_Class2\",\n    \"ukName\": \"FSD\",\n    \"description\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\",\n    \"properties\": {\n      \"Integrity\": 90,\n      \"Mass\": 16,\n      \"Optimal Mass\": 1080,\n      \"Power Draw\": 0.45\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 1797730,\n    \"edID\": 128064125,\n    \"eddbID\": 983,\n    \"fuelmul\": 0.008,\n    \"fuelpower\": 2.6,\n    \"grp\": \"fsd\",\n    \"id\": \"Fm\",\n    \"maxfuel\": 5.3,\n    \"rating\": \"C\",\n    \"symbol\": \"Int_Hyperdrive_Size6_Class3\",\n    \"ukName\": \"FSD\",\n    \"description\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\",\n    \"properties\": {\n      \"Integrity\": 113,\n      \"Mass\": 40,\n      \"Optimal Mass\": 1200,\n      \"Power Draw\": 0.5\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 5393180,\n    \"edID\": 128064126,\n    \"eddbID\": 984,\n    \"fuelmul\": 0.01,\n    \"fuelpower\": 2.6,\n    \"grp\": \"fsd\",\n    \"id\": \"Fl\",\n    \"maxfuel\": 6.6,\n    \"rating\": \"B\",\n    \"symbol\": \"Int_Hyperdrive_Size6_Class4\",\n    \"ukName\": \"FSD\",\n    \"description\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\",\n    \"properties\": {\n      \"Integrity\": 170,\n      \"Mass\": 64,\n      \"Optimal Mass\": 1500,\n      \"Power Draw\": 0.63\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 16179530,\n    \"edID\": 128064127,\n    \"eddbID\": 985,\n    \"fuelmul\": 0.012,\n    \"fuelpower\": 2.6,\n    \"grp\": \"fsd\",\n    \"id\": \"Fk\",\n    \"maxfuel\": 8,\n    \"rating\": \"A\",\n    \"symbol\": \"Int_Hyperdrive_Size6_Class5\",\n    \"ukName\": \"FSD\",\n    \"description\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\",\n    \"properties\": {\n      \"Integrity\": 141,\n      \"Mass\": 40,\n      \"Optimal Mass\": 1800,\n      \"Power Draw\": 0.75\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 63010,\n    \"edID\": 128064118,\n    \"eddbID\": 976,\n    \"fuelmul\": 0.011,\n    \"fuelpower\": 2.45,\n    \"grp\": \"fsd\",\n    \"id\": \"Fj\",\n    \"maxfuel\": 3.3,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_Hyperdrive_Size5_Class1\",\n    \"ukName\": \"FSD\",\n    \"description\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\",\n    \"properties\": {\n      \"Integrity\": 86,\n      \"Mass\": 20,\n      \"Optimal Mass\": 560,\n      \"Power Draw\": 0.32\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 189040,\n    \"edID\": 128064119,\n    \"eddbID\": 977,\n    \"fuelmul\": 0.01,\n    \"fuelpower\": 2.45,\n    \"grp\": \"fsd\",\n    \"id\": \"Fi\",\n    \"maxfuel\": 3.3,\n    \"rating\": \"D\",\n    \"symbol\": \"Int_Hyperdrive_Size5_Class2\",\n    \"ukName\": \"FSD\",\n    \"description\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\",\n    \"properties\": {\n      \"Integrity\": 77,\n      \"Mass\": 8,\n      \"Optimal Mass\": 630,\n      \"Power Draw\": 0.36\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 567110,\n    \"edID\": 128064120,\n    \"eddbID\": 978,\n    \"fuelmul\": 0.008,\n    \"fuelpower\": 2.45,\n    \"grp\": \"fsd\",\n    \"id\": \"Fh\",\n    \"maxfuel\": 3.3,\n    \"rating\": \"C\",\n    \"symbol\": \"Int_Hyperdrive_Size5_Class3\",\n    \"ukName\": \"FSD\",\n    \"description\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\",\n    \"properties\": {\n      \"Integrity\": 96,\n      \"Mass\": 20,\n      \"Optimal Mass\": 700,\n      \"Power Draw\": 0.4\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 1701320,\n    \"edID\": 128064121,\n    \"eddbID\": 979,\n    \"fuelmul\": 0.01,\n    \"fuelpower\": 2.45,\n    \"grp\": \"fsd\",\n    \"id\": \"Fg\",\n    \"maxfuel\": 4.1,\n    \"rating\": \"B\",\n    \"symbol\": \"Int_Hyperdrive_Size5_Class4\",\n    \"ukName\": \"FSD\",\n    \"description\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\",\n    \"properties\": {\n      \"Integrity\": 144,\n      \"Mass\": 32,\n      \"Optimal Mass\": 875,\n      \"Power Draw\": 0.5\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 5103950,\n    \"edID\": 128064122,\n    \"eddbID\": 980,\n    \"fuelmul\": 0.012,\n    \"fuelpower\": 2.45,\n    \"grp\": \"fsd\",\n    \"id\": \"Ff\",\n    \"maxfuel\": 5,\n    \"rating\": \"A\",\n    \"symbol\": \"Int_Hyperdrive_Size5_Class5\",\n    \"ukName\": \"FSD\",\n    \"description\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\",\n    \"properties\": {\n      \"Integrity\": 120,\n      \"Mass\": 20,\n      \"Optimal Mass\": 1050,\n      \"Power Draw\": 0.6\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 19880,\n    \"edID\": 128064113,\n    \"eddbID\": 971,\n    \"fuelmul\": 0.011,\n    \"fuelpower\": 2.3,\n    \"grp\": \"fsd\",\n    \"id\": \"Fe\",\n    \"maxfuel\": 2,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_Hyperdrive_Size4_Class1\",\n    \"ukName\": \"FSD\",\n    \"description\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\",\n    \"properties\": {\n      \"Integrity\": 72,\n      \"Mass\": 10,\n      \"Optimal Mass\": 280,\n      \"Power Draw\": 0.24\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 59630,\n    \"edID\": 128064114,\n    \"eddbID\": 972,\n    \"fuelmul\": 0.01,\n    \"fuelpower\": 2.3,\n    \"grp\": \"fsd\",\n    \"id\": \"Fd\",\n    \"maxfuel\": 2,\n    \"rating\": \"D\",\n    \"symbol\": \"Int_Hyperdrive_Size4_Class2\",\n    \"ukName\": \"FSD\",\n    \"description\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\",\n    \"properties\": {\n      \"Integrity\": 64,\n      \"Mass\": 4,\n      \"Optimal Mass\": 315,\n      \"Power Draw\": 0.27\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 178900,\n    \"edID\": 128064115,\n    \"eddbID\": 973,\n    \"fuelmul\": 0.008,\n    \"fuelpower\": 2.3,\n    \"grp\": \"fsd\",\n    \"id\": \"Fc\",\n    \"maxfuel\": 2,\n    \"rating\": \"C\",\n    \"symbol\": \"Int_Hyperdrive_Size4_Class3\",\n    \"ukName\": \"FSD\",\n    \"description\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\",\n    \"properties\": {\n      \"Integrity\": 80,\n      \"Mass\": 10,\n      \"Optimal Mass\": 350,\n      \"Power Draw\": 0.3\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 536690,\n    \"edID\": 128064116,\n    \"eddbID\": 974,\n    \"fuelmul\": 0.01,\n    \"fuelpower\": 2.3,\n    \"grp\": \"fsd\",\n    \"id\": \"Fb\",\n    \"maxfuel\": 2.5,\n    \"rating\": \"B\",\n    \"symbol\": \"Int_Hyperdrive_Size4_Class4\",\n    \"ukName\": \"FSD\",\n    \"description\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\",\n    \"properties\": {\n      \"Integrity\": 120,\n      \"Mass\": 16,\n      \"Optimal Mass\": 437.5,\n      \"Power Draw\": 0.38\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 1610080,\n    \"edID\": 128064117,\n    \"eddbID\": 975,\n    \"fuelmul\": 0.012,\n    \"fuelpower\": 2.3,\n    \"grp\": \"fsd\",\n    \"id\": \"Fa\",\n    \"maxfuel\": 3,\n    \"rating\": \"A\",\n    \"symbol\": \"Int_Hyperdrive_Size4_Class5\",\n    \"ukName\": \"FSD\",\n    \"description\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\",\n    \"properties\": {\n      \"Integrity\": 100,\n      \"Mass\": 10,\n      \"Optimal Mass\": 525,\n      \"Power Draw\": 0.45\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 6270,\n    \"edID\": 128064108,\n    \"eddbID\": 966,\n    \"fuelmul\": 0.011,\n    \"fuelpower\": 2.15,\n    \"grp\": \"fsd\",\n    \"id\": \"F9\",\n    \"maxfuel\": 1.2,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_Hyperdrive_Size3_Class1\",\n    \"ukName\": \"FSD\",\n    \"description\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\",\n    \"properties\": {\n      \"Integrity\": 58,\n      \"Mass\": 5,\n      \"Optimal Mass\": 80,\n      \"Power Draw\": 0.24\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 18810,\n    \"edID\": 128064109,\n    \"eddbID\": 967,\n    \"fuelmul\": 0.01,\n    \"fuelpower\": 2.15,\n    \"grp\": \"fsd\",\n    \"id\": \"F8\",\n    \"maxfuel\": 1.2,\n    \"rating\": \"D\",\n    \"symbol\": \"Int_Hyperdrive_Size3_Class2\",\n    \"ukName\": \"FSD\",\n    \"description\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\",\n    \"properties\": {\n      \"Integrity\": 51,\n      \"Mass\": 2,\n      \"Optimal Mass\": 90,\n      \"Power Draw\": 0.27\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 56440,\n    \"edID\": 128064110,\n    \"eddbID\": 968,\n    \"fuelmul\": 0.008,\n    \"fuelpower\": 2.15,\n    \"grp\": \"fsd\",\n    \"id\": \"F7\",\n    \"maxfuel\": 1.2,\n    \"rating\": \"C\",\n    \"symbol\": \"Int_Hyperdrive_Size3_Class3\",\n    \"ukName\": \"FSD\",\n    \"description\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\",\n    \"properties\": {\n      \"Integrity\": 64,\n      \"Mass\": 5,\n      \"Optimal Mass\": 100,\n      \"Power Draw\": 0.3\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 169300,\n    \"edID\": 128064111,\n    \"eddbID\": 969,\n    \"fuelmul\": 0.01,\n    \"fuelpower\": 2.15,\n    \"grp\": \"fsd\",\n    \"id\": \"F6\",\n    \"maxfuel\": 1.5,\n    \"rating\": \"B\",\n    \"symbol\": \"Int_Hyperdrive_Size3_Class4\",\n    \"ukName\": \"FSD\",\n    \"description\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\",\n    \"properties\": {\n      \"Integrity\": 96,\n      \"Mass\": 8,\n      \"Optimal Mass\": 125,\n      \"Power Draw\": 0.38\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 507910,\n    \"edID\": 128064112,\n    \"eddbID\": 970,\n    \"fuelmul\": 0.012,\n    \"fuelpower\": 2.15,\n    \"grp\": \"fsd\",\n    \"id\": \"F5\",\n    \"maxfuel\": 1.8,\n    \"rating\": \"A\",\n    \"symbol\": \"Int_Hyperdrive_Size3_Class5\",\n    \"ukName\": \"FSD\",\n    \"description\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\",\n    \"properties\": {\n      \"Integrity\": 80,\n      \"Mass\": 5,\n      \"Optimal Mass\": 150,\n      \"Power Draw\": 0.45\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 1980,\n    \"edID\": 128064103,\n    \"eddbID\": 961,\n    \"fuelmul\": 0.011,\n    \"fuelpower\": 2,\n    \"grp\": \"fsd\",\n    \"id\": \"F4\",\n    \"maxfuel\": 0.6,\n    \"rating\": \"E\",\n    \"symbol\": \"Int_Hyperdrive_Size2_Class1\",\n    \"ukName\": \"FSD\",\n    \"description\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\",\n    \"properties\": {\n      \"Integrity\": 46,\n      \"Mass\": 2.5,\n      \"Optimal Mass\": 48,\n      \"Power Draw\": 0.16\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 5930,\n    \"edID\": 128064104,\n    \"eddbID\": 962,\n    \"fuelmul\": 0.01,\n    \"fuelpower\": 2,\n    \"grp\": \"fsd\",\n    \"id\": \"F3\",\n    \"maxfuel\": 0.6,\n    \"rating\": \"D\",\n    \"symbol\": \"Int_Hyperdrive_Size2_Class2\",\n    \"ukName\": \"FSD\",\n    \"description\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\",\n    \"properties\": {\n      \"Integrity\": 41,\n      \"Mass\": 1,\n      \"Optimal Mass\": 54,\n      \"Power Draw\": 0.18\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 17800,\n    \"edID\": 128064105,\n    \"eddbID\": 963,\n    \"fuelmul\": 0.008,\n    \"fuelpower\": 2,\n    \"grp\": \"fsd\",\n    \"id\": \"F2\",\n    \"maxfuel\": 0.6,\n    \"rating\": \"C\",\n    \"symbol\": \"Int_Hyperdrive_Size2_Class3\",\n    \"ukName\": \"FSD\",\n    \"description\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\",\n    \"properties\": {\n      \"Integrity\": 51,\n      \"Mass\": 2.5,\n      \"Optimal Mass\": 60,\n      \"Power Draw\": 0.2\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 53410,\n    \"edID\": 128064106,\n    \"eddbID\": 964,\n    \"fuelmul\": 0.01,\n    \"fuelpower\": 2,\n    \"grp\": \"fsd\",\n    \"id\": \"F1\",\n    \"maxfuel\": 0.8,\n    \"rating\": \"B\",\n    \"symbol\": \"Int_Hyperdrive_Size2_Class4\",\n    \"ukName\": \"FSD\",\n    \"description\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\",\n    \"properties\": {\n      \"Integrity\": 77,\n      \"Mass\": 4,\n      \"Optimal Mass\": 75,\n      \"Power Draw\": 0.25\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 160220,\n    \"edID\": 128064107,\n    \"eddbID\": 965,\n    \"fuelmul\": 0.012,\n    \"fuelpower\": 2,\n    \"grp\": \"fsd\",\n    \"id\": \"F0\",\n    \"maxfuel\": 0.9,\n    \"rating\": \"A\",\n    \"symbol\": \"Int_Hyperdrive_Size2_Class5\",\n    \"ukName\": \"FSD\",\n    \"description\": \"Device that allows supercruise travel and hyperspace jumps between star systems.\",\n    \"properties\": {\n      \"Integrity\": 64,\n      \"Mass\": 2.5,\n      \"Optimal Mass\": 90,\n      \"Power Draw\": 0.3\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 1000,\n    \"edID\": 128064346,\n    \"eddbID\": 1199,\n    \"fuel\": 2,\n    \"grp\": \"ft\",\n    \"id\": \"f1\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_FuelTank_Size1_Class3\",\n    \"ukName\": \"Fuel Tank\",\n    \"description\": \"Storage container for fuel used by ship's power plant.\",\n    \"properties\": {\n      \"Mass\": 0\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 3750,\n    \"edID\": 128064347,\n    \"eddbID\": 1200,\n    \"fuel\": 4,\n    \"grp\": \"ft\",\n    \"id\": \"f2\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_FuelTank_Size2_Class3\",\n    \"ukName\": \"Fuel Tank\",\n    \"description\": \"Storage container for fuel used by ship's power plant.\",\n    \"properties\": {\n      \"Mass\": 0\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 7060,\n    \"edID\": 128064348,\n    \"eddbID\": 1201,\n    \"fuel\": 8,\n    \"grp\": \"ft\",\n    \"id\": \"f3\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_FuelTank_Size3_Class3\",\n    \"ukName\": \"Fuel Tank\",\n    \"description\": \"Storage container for fuel used by ship's power plant.\",\n    \"properties\": {\n      \"Mass\": 0\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 24730,\n    \"edID\": 128064349,\n    \"eddbID\": 1202,\n    \"fuel\": 16,\n    \"grp\": \"ft\",\n    \"id\": \"f4\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_FuelTank_Size4_Class3\",\n    \"ukName\": \"Fuel Tank\",\n    \"description\": \"Storage container for fuel used by ship's power plant.\",\n    \"properties\": {\n      \"Mass\": 0\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 97750,\n    \"edID\": 128064350,\n    \"eddbID\": 1203,\n    \"fuel\": 32,\n    \"grp\": \"ft\",\n    \"id\": \"f5\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_FuelTank_Size5_Class3\",\n    \"ukName\": \"Fuel Tank\",\n    \"description\": \"Storage container for fuel used by ship's power plant.\",\n    \"properties\": {\n      \"Mass\": 0\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 341580,\n    \"edID\": 128064351,\n    \"eddbID\": 1204,\n    \"fuel\": 64,\n    \"grp\": \"ft\",\n    \"id\": \"f6\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_FuelTank_Size6_Class3\",\n    \"ukName\": \"Fuel Tank\",\n    \"description\": \"Storage container for fuel used by ship's power plant.\",\n    \"properties\": {\n      \"Mass\": 0\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 1780910,\n    \"edID\": 128064352,\n    \"eddbID\": 1205,\n    \"fuel\": 128,\n    \"grp\": \"ft\",\n    \"id\": \"f7\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_FuelTank_Size7_Class3\",\n    \"ukName\": \"Fuel Tank\",\n    \"description\": \"Storage container for fuel used by ship's power plant.\",\n    \"properties\": {\n      \"Mass\": 0\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 5428431,\n    \"edID\": 128064353,\n    \"eddbID\": 1206,\n    \"fuel\": 256,\n    \"grp\": \"ft\",\n    \"id\": \"f8\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_FuelTank_Size8_Class3\",\n    \"ukName\": \"Fuel Tank\",\n    \"description\": \"Storage container for fuel used by ship's power plant.\",\n    \"properties\": {\n      \"Mass\": 0\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 697590,\n    \"edID\": 128064173,\n    \"eddbID\": 1031,\n    \"grp\": \"ls\",\n    \"id\": \"lD\",\n    \"rating\": \"E\",\n    \"time\": 300,\n    \"symbol\": \"Int_LifeSupport_Size8_Class1\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 120,\n      \"Mass\": 160,\n      \"Power Draw\": 0.8\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 1743970,\n    \"edID\": 128064174,\n    \"eddbID\": 1032,\n    \"grp\": \"ls\",\n    \"id\": \"lC\",\n    \"rating\": \"D\",\n    \"time\": 450,\n    \"symbol\": \"Int_LifeSupport_Size8_Class2\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 135,\n      \"Mass\": 64,\n      \"Power Draw\": 0.9\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 4359900,\n    \"edID\": 128064175,\n    \"eddbID\": 1033,\n    \"grp\": \"ls\",\n    \"id\": \"lB\",\n    \"rating\": \"C\",\n    \"time\": 600,\n    \"symbol\": \"Int_LifeSupport_Size8_Class3\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 150,\n      \"Mass\": 160,\n      \"Power Draw\": 1\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 10899757,\n    \"edID\": 128064176,\n    \"eddbID\": 1034,\n    \"grp\": \"ls\",\n    \"id\": \"lA\",\n    \"rating\": \"B\",\n    \"time\": 900,\n    \"symbol\": \"Int_LifeSupport_Size8_Class4\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 165,\n      \"Mass\": 256,\n      \"Power Draw\": 1.1\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 27249400,\n    \"edID\": 128064177,\n    \"eddbID\": 1035,\n    \"grp\": \"ls\",\n    \"id\": \"lz\",\n    \"rating\": \"A\",\n    \"time\": 1500,\n    \"symbol\": \"Int_LifeSupport_Size8_Class5\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 180,\n      \"Mass\": 160,\n      \"Power Draw\": 1.2\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 249140,\n    \"edID\": 128064168,\n    \"eddbID\": 1026,\n    \"grp\": \"ls\",\n    \"id\": \"ly\",\n    \"rating\": \"E\",\n    \"time\": 300,\n    \"symbol\": \"Int_LifeSupport_Size7_Class1\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 105,\n      \"Mass\": 80,\n      \"Power Draw\": 0.72\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 622840,\n    \"edID\": 128064169,\n    \"eddbID\": 1027,\n    \"grp\": \"ls\",\n    \"id\": \"lx\",\n    \"rating\": \"D\",\n    \"time\": 450,\n    \"symbol\": \"Int_LifeSupport_Size7_Class2\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 118,\n      \"Mass\": 32,\n      \"Power Draw\": 0.81\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 1557110,\n    \"edID\": 128064170,\n    \"eddbID\": 1028,\n    \"grp\": \"ls\",\n    \"id\": \"lw\",\n    \"rating\": \"C\",\n    \"time\": 600,\n    \"symbol\": \"Int_LifeSupport_Size7_Class3\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 131,\n      \"Mass\": 80,\n      \"Power Draw\": 0.9\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 3892770,\n    \"edID\": 128064171,\n    \"eddbID\": 1029,\n    \"grp\": \"ls\",\n    \"id\": \"lv\",\n    \"rating\": \"B\",\n    \"time\": 900,\n    \"symbol\": \"Int_LifeSupport_Size7_Class4\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 144,\n      \"Mass\": 128,\n      \"Power Draw\": 0.99\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 9731930,\n    \"edID\": 128064172,\n    \"eddbID\": 1030,\n    \"grp\": \"ls\",\n    \"id\": \"lu\",\n    \"rating\": \"A\",\n    \"time\": 1500,\n    \"symbol\": \"Int_LifeSupport_Size7_Class5\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 157,\n      \"Mass\": 80,\n      \"Power Draw\": 1.08\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 88980,\n    \"edID\": 128064163,\n    \"eddbID\": 1021,\n    \"grp\": \"ls\",\n    \"id\": \"lt\",\n    \"rating\": \"E\",\n    \"time\": 300,\n    \"symbol\": \"Int_LifeSupport_Size6_Class1\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 90,\n      \"Mass\": 40,\n      \"Power Draw\": 0.64\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 222440,\n    \"edID\": 128064164,\n    \"eddbID\": 1022,\n    \"grp\": \"ls\",\n    \"id\": \"ls\",\n    \"rating\": \"D\",\n    \"time\": 450,\n    \"symbol\": \"Int_LifeSupport_Size6_Class2\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 102,\n      \"Mass\": 16,\n      \"Power Draw\": 0.72\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 556110,\n    \"edID\": 128064165,\n    \"eddbID\": 1023,\n    \"grp\": \"ls\",\n    \"id\": \"lr\",\n    \"rating\": \"C\",\n    \"time\": 600,\n    \"symbol\": \"Int_LifeSupport_Size6_Class3\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 113,\n      \"Mass\": 40,\n      \"Power Draw\": 0.8\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 1390280,\n    \"edID\": 128064166,\n    \"eddbID\": 1024,\n    \"grp\": \"ls\",\n    \"id\": \"lq\",\n    \"rating\": \"B\",\n    \"time\": 900,\n    \"symbol\": \"Int_LifeSupport_Size6_Class4\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 124,\n      \"Mass\": 64,\n      \"Power Draw\": 0.88\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 3475690,\n    \"edID\": 128064167,\n    \"eddbID\": 1025,\n    \"grp\": \"ls\",\n    \"id\": \"lp\",\n    \"rating\": \"A\",\n    \"time\": 1500,\n    \"symbol\": \"Int_LifeSupport_Size6_Class5\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 136,\n      \"Mass\": 40,\n      \"Power Draw\": 0.96\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 31780,\n    \"edID\": 128064158,\n    \"eddbID\": 1016,\n    \"grp\": \"ls\",\n    \"id\": \"lo\",\n    \"rating\": \"E\",\n    \"time\": 300,\n    \"symbol\": \"Int_LifeSupport_Size5_Class1\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 77,\n      \"Mass\": 20,\n      \"Power Draw\": 0.57\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 79440,\n    \"edID\": 128064159,\n    \"eddbID\": 1017,\n    \"grp\": \"ls\",\n    \"id\": \"ln\",\n    \"rating\": \"D\",\n    \"time\": 450,\n    \"symbol\": \"Int_LifeSupport_Size5_Class2\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 86,\n      \"Mass\": 8,\n      \"Power Draw\": 0.64\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 198610,\n    \"edID\": 128064160,\n    \"eddbID\": 1018,\n    \"grp\": \"ls\",\n    \"id\": \"lm\",\n    \"rating\": \"C\",\n    \"time\": 600,\n    \"symbol\": \"Int_LifeSupport_Size5_Class3\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 96,\n      \"Mass\": 20,\n      \"Power Draw\": 0.71\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 496530,\n    \"edID\": 128064161,\n    \"eddbID\": 1019,\n    \"grp\": \"ls\",\n    \"id\": \"ll\",\n    \"rating\": \"B\",\n    \"time\": 900,\n    \"symbol\": \"Int_LifeSupport_Size5_Class4\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 106,\n      \"Mass\": 32,\n      \"Power Draw\": 0.78\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 1241320,\n    \"edID\": 128064162,\n    \"eddbID\": 1020,\n    \"grp\": \"ls\",\n    \"id\": \"lk\",\n    \"rating\": \"A\",\n    \"time\": 1500,\n    \"symbol\": \"Int_LifeSupport_Size5_Class5\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 115,\n      \"Mass\": 20,\n      \"Power Draw\": 0.85\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 11350,\n    \"edID\": 128064153,\n    \"eddbID\": 1011,\n    \"grp\": \"ls\",\n    \"id\": \"lj\",\n    \"rating\": \"E\",\n    \"time\": 300,\n    \"symbol\": \"Int_LifeSupport_Size4_Class1\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 64,\n      \"Mass\": 10,\n      \"Power Draw\": 0.5\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 28370,\n    \"edID\": 128064154,\n    \"eddbID\": 1012,\n    \"grp\": \"ls\",\n    \"id\": \"li\",\n    \"rating\": \"D\",\n    \"time\": 450,\n    \"symbol\": \"Int_LifeSupport_Size4_Class2\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 72,\n      \"Mass\": 4,\n      \"Power Draw\": 0.56\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 70930,\n    \"edID\": 128064155,\n    \"eddbID\": 1013,\n    \"grp\": \"ls\",\n    \"id\": \"lh\",\n    \"rating\": \"C\",\n    \"time\": 600,\n    \"symbol\": \"Int_LifeSupport_Size4_Class3\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 80,\n      \"Mass\": 10,\n      \"Power Draw\": 0.62\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 177330,\n    \"edID\": 128064156,\n    \"eddbID\": 1014,\n    \"grp\": \"ls\",\n    \"id\": \"lg\",\n    \"rating\": \"B\",\n    \"time\": 900,\n    \"symbol\": \"Int_LifeSupport_Size4_Class4\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 88,\n      \"Mass\": 16,\n      \"Power Draw\": 0.68\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 443330,\n    \"edID\": 128064157,\n    \"eddbID\": 1015,\n    \"grp\": \"ls\",\n    \"id\": \"lf\",\n    \"rating\": \"A\",\n    \"time\": 1500,\n    \"symbol\": \"Int_LifeSupport_Size4_Class5\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 96,\n      \"Mass\": 10,\n      \"Power Draw\": 0.74\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 4050,\n    \"edID\": 128064148,\n    \"eddbID\": 1006,\n    \"grp\": \"ls\",\n    \"id\": \"le\",\n    \"rating\": \"E\",\n    \"time\": 300,\n    \"symbol\": \"Int_LifeSupport_Size3_Class1\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 51,\n      \"Mass\": 5,\n      \"Power Draw\": 0.42\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 10130,\n    \"edID\": 128064149,\n    \"eddbID\": 1007,\n    \"grp\": \"ls\",\n    \"id\": \"ld\",\n    \"rating\": \"D\",\n    \"time\": 450,\n    \"symbol\": \"Int_LifeSupport_Size3_Class2\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 58,\n      \"Mass\": 2,\n      \"Power Draw\": 0.48\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 25330,\n    \"edID\": 128064150,\n    \"eddbID\": 1008,\n    \"grp\": \"ls\",\n    \"id\": \"lc\",\n    \"rating\": \"C\",\n    \"time\": 600,\n    \"symbol\": \"Int_LifeSupport_Size3_Class3\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 64,\n      \"Mass\": 5,\n      \"Power Draw\": 0.53\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 63330,\n    \"edID\": 128064151,\n    \"eddbID\": 1009,\n    \"grp\": \"ls\",\n    \"id\": \"lb\",\n    \"rating\": \"B\",\n    \"time\": 900,\n    \"symbol\": \"Int_LifeSupport_Size3_Class4\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 70,\n      \"Mass\": 8,\n      \"Power Draw\": 0.58\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 158330,\n    \"edID\": 128064152,\n    \"eddbID\": 1010,\n    \"grp\": \"ls\",\n    \"id\": \"la\",\n    \"rating\": \"A\",\n    \"time\": 1500,\n    \"symbol\": \"Int_LifeSupport_Size3_Class5\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 77,\n      \"Mass\": 5,\n      \"Power Draw\": 0.64\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 1450,\n    \"edID\": 128064143,\n    \"eddbID\": 1001,\n    \"grp\": \"ls\",\n    \"id\": \"l9\",\n    \"rating\": \"E\",\n    \"time\": 300,\n    \"symbol\": \"Int_LifeSupport_Size2_Class1\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 41,\n      \"Mass\": 2.5,\n      \"Power Draw\": 0.37\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 3620,\n    \"edID\": 128064144,\n    \"eddbID\": 1002,\n    \"grp\": \"ls\",\n    \"id\": \"l8\",\n    \"rating\": \"D\",\n    \"time\": 450,\n    \"symbol\": \"Int_LifeSupport_Size2_Class2\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 46,\n      \"Mass\": 1,\n      \"Power Draw\": 0.41\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 9050,\n    \"edID\": 128064145,\n    \"eddbID\": 1003,\n    \"grp\": \"ls\",\n    \"id\": \"l7\",\n    \"rating\": \"C\",\n    \"time\": 600,\n    \"symbol\": \"Int_LifeSupport_Size2_Class3\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 51,\n      \"Mass\": 2.5,\n      \"Power Draw\": 0.46\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 22620,\n    \"edID\": 128064146,\n    \"eddbID\": 1004,\n    \"grp\": \"ls\",\n    \"id\": \"l6\",\n    \"rating\": \"B\",\n    \"time\": 900,\n    \"symbol\": \"Int_LifeSupport_Size2_Class4\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 56,\n      \"Mass\": 4,\n      \"Power Draw\": 0.51\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 56550,\n    \"edID\": 128064147,\n    \"eddbID\": 1005,\n    \"grp\": \"ls\",\n    \"id\": \"l5\",\n    \"rating\": \"A\",\n    \"time\": 1500,\n    \"symbol\": \"Int_LifeSupport_Size2_Class5\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 61,\n      \"Mass\": 2.5,\n      \"Power Draw\": 0.55\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 520,\n    \"edID\": 128064138,\n    \"eddbID\": 996,\n    \"grp\": \"ls\",\n    \"id\": \"l4\",\n    \"rating\": \"E\",\n    \"time\": 300,\n    \"symbol\": \"Int_LifeSupport_Size1_Class1\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 32,\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.32\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 1290,\n    \"edID\": 128064139,\n    \"eddbID\": 997,\n    \"grp\": \"ls\",\n    \"id\": \"l3\",\n    \"rating\": \"D\",\n    \"time\": 450,\n    \"symbol\": \"Int_LifeSupport_Size1_Class2\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 36,\n      \"Mass\": 0.5,\n      \"Power Draw\": 0.36\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 3230,\n    \"edID\": 128064140,\n    \"eddbID\": 998,\n    \"grp\": \"ls\",\n    \"id\": \"l2\",\n    \"rating\": \"C\",\n    \"time\": 600,\n    \"symbol\": \"Int_LifeSupport_Size1_Class3\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 40,\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.4\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 8080,\n    \"edID\": 128064141,\n    \"eddbID\": 999,\n    \"grp\": \"ls\",\n    \"id\": \"l1\",\n    \"rating\": \"B\",\n    \"time\": 900,\n    \"symbol\": \"Int_LifeSupport_Size1_Class4\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 44,\n      \"Mass\": 2,\n      \"Power Draw\": 0.44\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 20200,\n    \"edID\": 128064142,\n    \"eddbID\": 1000,\n    \"grp\": \"ls\",\n    \"id\": \"l0\",\n    \"rating\": \"A\",\n    \"time\": 1500,\n    \"symbol\": \"Int_LifeSupport_Size1_Class5\",\n    \"ukName\": \"Life Support\",\n    \"description\": \"Regulates habitable ship atmosphere and provides emergency reservoir for pilot's Remlock system. \",\n    \"properties\": {\n      \"Boot time\": 1,\n      \"Integrity\": 48,\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.48\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 500,\n    \"edID\": 128672317,\n    \"eddbID\": 1538,\n    \"grp\": \"pas\",\n    \"id\": \"PA\",\n    \"rating\": \"I\",\n    \"symbol\": \"Int_PlanetApproachSuite\",\n    \"ukName\": \"Planetary Approach Suite\",\n    \"description\": \"The required Thruster modifications, sensor package and avionics to allow a ship to fly effectively in close proximity to planets.\",\n    \"properties\": {\n      \"Mass\": 0,\n      \"Power Draw\": 0\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 697580,\n    \"edID\": 128064213,\n    \"eddbID\": 1071,\n    \"grp\": \"pd\",\n    \"id\": \"dD\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_PowerDistributor_Size8_Class1\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 32,\n      \"Engines Recharge\": 3.2,\n      \"Integrity\": 135,\n      \"Mass\": 160,\n      \"Power Draw\": 0.64,\n      \"Systems Capacity\": 32,\n      \"Systems Recharge\": 3.2,\n      \"Weapons Capacity\": 48,\n      \"Weapons Recharge\": 4.8\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 1743960,\n    \"edID\": 128064214,\n    \"eddbID\": 1072,\n    \"grp\": \"pd\",\n    \"id\": \"dC\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_PowerDistributor_Size8_Class2\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 36,\n      \"Engines Recharge\": 3.6,\n      \"Integrity\": 120,\n      \"Mass\": 64,\n      \"Power Draw\": 0.72,\n      \"Systems Capacity\": 36,\n      \"Systems Recharge\": 3.6,\n      \"Weapons Capacity\": 54,\n      \"Weapons Recharge\": 5.4\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 4359900,\n    \"edID\": 128064215,\n    \"eddbID\": 1073,\n    \"grp\": \"pd\",\n    \"id\": \"dB\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_PowerDistributor_Size8_Class3\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 40,\n      \"Engines Recharge\": 4,\n      \"Integrity\": 150,\n      \"Mass\": 160,\n      \"Power Draw\": 0.8,\n      \"Systems Capacity\": 40,\n      \"Systems Recharge\": 4,\n      \"Weapons Capacity\": 60,\n      \"Weapons Recharge\": 6\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 10899760,\n    \"edID\": 128064216,\n    \"eddbID\": 1074,\n    \"grp\": \"pd\",\n    \"id\": \"dA\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_PowerDistributor_Size8_Class4\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 44,\n      \"Engines Recharge\": 4.4,\n      \"Integrity\": 180,\n      \"Mass\": 256,\n      \"Power Draw\": 0.88,\n      \"Systems Capacity\": 44,\n      \"Systems Recharge\": 4.4,\n      \"Weapons Capacity\": 66,\n      \"Weapons Recharge\": 6.6\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 27249390,\n    \"edID\": 128064217,\n    \"eddbID\": 1075,\n    \"grp\": \"pd\",\n    \"id\": \"dz\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_PowerDistributor_Size8_Class5\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 48,\n      \"Engines Recharge\": 4.8,\n      \"Integrity\": 165,\n      \"Mass\": 160,\n      \"Power Draw\": 0.96,\n      \"Systems Capacity\": 48,\n      \"Systems Recharge\": 4.8,\n      \"Weapons Capacity\": 72,\n      \"Weapons Recharge\": 7.2\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 249140,\n    \"edID\": 128064208,\n    \"eddbID\": 1066,\n    \"grp\": \"pd\",\n    \"id\": \"dy\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_PowerDistributor_Size7_Class1\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 27,\n      \"Engines Recharge\": 2.6,\n      \"Integrity\": 118,\n      \"Mass\": 80,\n      \"Power Draw\": 0.59,\n      \"Systems Capacity\": 27,\n      \"Systems Recharge\": 2.6,\n      \"Weapons Capacity\": 41,\n      \"Weapons Recharge\": 4.1\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 622840,\n    \"edID\": 128064209,\n    \"eddbID\": 1067,\n    \"grp\": \"pd\",\n    \"id\": \"dx\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_PowerDistributor_Size7_Class2\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 31,\n      \"Engines Recharge\": 3,\n      \"Integrity\": 105,\n      \"Mass\": 32,\n      \"Power Draw\": 0.67,\n      \"Systems Capacity\": 31,\n      \"Systems Recharge\": 3,\n      \"Weapons Capacity\": 46,\n      \"Weapons Recharge\": 4.6\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 1557110,\n    \"edID\": 128064210,\n    \"eddbID\": 1068,\n    \"grp\": \"pd\",\n    \"id\": \"dw\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_PowerDistributor_Size7_Class3\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 34,\n      \"Engines Recharge\": 3.3,\n      \"Integrity\": 131,\n      \"Mass\": 80,\n      \"Power Draw\": 0.74,\n      \"Systems Capacity\": 34,\n      \"Systems Recharge\": 3.3,\n      \"Weapons Capacity\": 51,\n      \"Weapons Recharge\": 5.1\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 3892770,\n    \"edID\": 128064211,\n    \"eddbID\": 1069,\n    \"grp\": \"pd\",\n    \"id\": \"dv\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_PowerDistributor_Size7_Class4\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 37,\n      \"Engines Recharge\": 3.6,\n      \"Integrity\": 157,\n      \"Mass\": 128,\n      \"Power Draw\": 0.81,\n      \"Systems Capacity\": 37,\n      \"Systems Recharge\": 3.6,\n      \"Weapons Capacity\": 56,\n      \"Weapons Recharge\": 5.6\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 9731930,\n    \"edID\": 128064212,\n    \"eddbID\": 1070,\n    \"grp\": \"pd\",\n    \"id\": \"du\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_PowerDistributor_Size7_Class5\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 41,\n      \"Engines Recharge\": 4,\n      \"Integrity\": 144,\n      \"Mass\": 80,\n      \"Power Draw\": 0.89,\n      \"Systems Capacity\": 41,\n      \"Systems Recharge\": 4,\n      \"Weapons Capacity\": 61,\n      \"Weapons Recharge\": 6.1\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 88980,\n    \"edID\": 128064203,\n    \"eddbID\": 1061,\n    \"grp\": \"pd\",\n    \"id\": \"dt\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_PowerDistributor_Size6_Class1\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 23,\n      \"Engines Recharge\": 2.2,\n      \"Integrity\": 102,\n      \"Mass\": 40,\n      \"Power Draw\": 0.54,\n      \"Systems Capacity\": 23,\n      \"Systems Recharge\": 2.2,\n      \"Weapons Capacity\": 34,\n      \"Weapons Recharge\": 3.4\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 222440,\n    \"edID\": 128064204,\n    \"eddbID\": 1062,\n    \"grp\": \"pd\",\n    \"id\": \"ds\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_PowerDistributor_Size6_Class2\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 26,\n      \"Engines Recharge\": 2.4,\n      \"Integrity\": 90,\n      \"Mass\": 16,\n      \"Power Draw\": 0.61,\n      \"Systems Capacity\": 26,\n      \"Systems Recharge\": 2.4,\n      \"Weapons Capacity\": 38,\n      \"Weapons Recharge\": 3.9\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 556110,\n    \"edID\": 128064205,\n    \"eddbID\": 1063,\n    \"grp\": \"pd\",\n    \"id\": \"dr\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_PowerDistributor_Size6_Class3\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 29,\n      \"Engines Recharge\": 2.7,\n      \"Integrity\": 113,\n      \"Mass\": 40,\n      \"Power Draw\": 0.68,\n      \"Systems Capacity\": 29,\n      \"Systems Recharge\": 2.7,\n      \"Weapons Capacity\": 42,\n      \"Weapons Recharge\": 4.3\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 1390280,\n    \"edID\": 128064206,\n    \"eddbID\": 1064,\n    \"grp\": \"pd\",\n    \"id\": \"dq\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_PowerDistributor_Size6_Class4\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 32,\n      \"Engines Recharge\": 3,\n      \"Integrity\": 136,\n      \"Mass\": 64,\n      \"Power Draw\": 0.75,\n      \"Systems Capacity\": 32,\n      \"Systems Recharge\": 3,\n      \"Weapons Capacity\": 46,\n      \"Weapons Recharge\": 4.7\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 3475690,\n    \"edID\": 128064207,\n    \"eddbID\": 1065,\n    \"grp\": \"pd\",\n    \"id\": \"dp\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_PowerDistributor_Size6_Class5\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 35,\n      \"Engines Recharge\": 3.2,\n      \"Integrity\": 124,\n      \"Mass\": 40,\n      \"Power Draw\": 0.82,\n      \"Systems Capacity\": 35,\n      \"Systems Recharge\": 3.2,\n      \"Weapons Capacity\": 50,\n      \"Weapons Recharge\": 5.2\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 31780,\n    \"edID\": 128064198,\n    \"eddbID\": 1056,\n    \"grp\": \"pd\",\n    \"id\": \"do\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_PowerDistributor_Size5_Class1\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 19,\n      \"Engines Recharge\": 1.7,\n      \"Integrity\": 86,\n      \"Mass\": 20,\n      \"Power Draw\": 0.5,\n      \"Systems Capacity\": 19,\n      \"Systems Recharge\": 1.7,\n      \"Weapons Capacity\": 27,\n      \"Weapons Recharge\": 2.9\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 79440,\n    \"edID\": 128064199,\n    \"eddbID\": 1057,\n    \"grp\": \"pd\",\n    \"id\": \"dn\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_PowerDistributor_Size5_Class2\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 22,\n      \"Engines Recharge\": 1.9,\n      \"Integrity\": 77,\n      \"Mass\": 8,\n      \"Power Draw\": 0.56,\n      \"Systems Capacity\": 22,\n      \"Systems Recharge\": 1.9,\n      \"Weapons Capacity\": 31,\n      \"Weapons Recharge\": 3.2\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 198610,\n    \"edID\": 128064200,\n    \"eddbID\": 1058,\n    \"grp\": \"pd\",\n    \"id\": \"dm\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_PowerDistributor_Size5_Class3\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 24,\n      \"Engines Recharge\": 2.1,\n      \"Integrity\": 96,\n      \"Mass\": 20,\n      \"Power Draw\": 0.62,\n      \"Systems Capacity\": 24,\n      \"Systems Recharge\": 2.1,\n      \"Weapons Capacity\": 34,\n      \"Weapons Recharge\": 3.6\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 496530,\n    \"edID\": 128064201,\n    \"eddbID\": 1059,\n    \"grp\": \"pd\",\n    \"id\": \"dl\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_PowerDistributor_Size5_Class4\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 26,\n      \"Engines Recharge\": 2.3,\n      \"Integrity\": 115,\n      \"Mass\": 32,\n      \"Power Draw\": 0.68,\n      \"Systems Capacity\": 26,\n      \"Systems Recharge\": 2.3,\n      \"Weapons Capacity\": 37,\n      \"Weapons Recharge\": 4\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 1241320,\n    \"edID\": 128064202,\n    \"eddbID\": 1060,\n    \"grp\": \"pd\",\n    \"id\": \"dk\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_PowerDistributor_Size5_Class5\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 29,\n      \"Engines Recharge\": 2.5,\n      \"Integrity\": 106,\n      \"Mass\": 20,\n      \"Power Draw\": 0.74,\n      \"Systems Capacity\": 29,\n      \"Systems Recharge\": 2.5,\n      \"Weapons Capacity\": 41,\n      \"Weapons Recharge\": 4.3\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 11350,\n    \"edID\": 128064193,\n    \"eddbID\": 1051,\n    \"grp\": \"pd\",\n    \"id\": \"dj\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_PowerDistributor_Size4_Class1\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 15,\n      \"Engines Recharge\": 1.3,\n      \"Integrity\": 72,\n      \"Mass\": 10,\n      \"Power Draw\": 0.45,\n      \"Systems Capacity\": 15,\n      \"Systems Recharge\": 1.3,\n      \"Weapons Capacity\": 22,\n      \"Weapons Recharge\": 2.3\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 28370,\n    \"edID\": 128064194,\n    \"eddbID\": 1052,\n    \"grp\": \"pd\",\n    \"id\": \"di\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_PowerDistributor_Size4_Class2\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 17,\n      \"Engines Recharge\": 1.4,\n      \"Integrity\": 64,\n      \"Mass\": 4,\n      \"Power Draw\": 0.5,\n      \"Systems Capacity\": 17,\n      \"Systems Recharge\": 1.4,\n      \"Weapons Capacity\": 24,\n      \"Weapons Recharge\": 2.6\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 70930,\n    \"edID\": 128064195,\n    \"eddbID\": 1053,\n    \"grp\": \"pd\",\n    \"id\": \"dh\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_PowerDistributor_Size4_Class3\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 19,\n      \"Engines Recharge\": 1.6,\n      \"Integrity\": 80,\n      \"Mass\": 10,\n      \"Power Draw\": 0.56,\n      \"Systems Capacity\": 19,\n      \"Systems Recharge\": 1.6,\n      \"Weapons Capacity\": 27,\n      \"Weapons Recharge\": 2.9\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 177330,\n    \"edID\": 128064196,\n    \"eddbID\": 1054,\n    \"grp\": \"pd\",\n    \"id\": \"dg\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_PowerDistributor_Size4_Class4\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 21,\n      \"Engines Recharge\": 1.8,\n      \"Integrity\": 96,\n      \"Mass\": 16,\n      \"Power Draw\": 0.62,\n      \"Systems Capacity\": 21,\n      \"Systems Recharge\": 1.8,\n      \"Weapons Capacity\": 30,\n      \"Weapons Recharge\": 3.2\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 443330,\n    \"edID\": 128064197,\n    \"eddbID\": 1055,\n    \"grp\": \"pd\",\n    \"id\": \"df\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_PowerDistributor_Size4_Class5\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 23,\n      \"Engines Recharge\": 1.9,\n      \"Integrity\": 88,\n      \"Mass\": 10,\n      \"Power Draw\": 0.67,\n      \"Systems Capacity\": 23,\n      \"Systems Recharge\": 1.9,\n      \"Weapons Capacity\": 32,\n      \"Weapons Recharge\": 3.5\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 4050,\n    \"edID\": 128064188,\n    \"eddbID\": 1046,\n    \"grp\": \"pd\",\n    \"id\": \"de\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_PowerDistributor_Size3_Class1\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 12,\n      \"Engines Recharge\": 0.9,\n      \"Integrity\": 58,\n      \"Mass\": 5,\n      \"Power Draw\": 0.4,\n      \"Systems Capacity\": 12,\n      \"Systems Recharge\": 0.9,\n      \"Weapons Capacity\": 16,\n      \"Weapons Recharge\": 1.8\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 10130,\n    \"edID\": 128064189,\n    \"eddbID\": 1047,\n    \"grp\": \"pd\",\n    \"id\": \"dd\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_PowerDistributor_Size3_Class2\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 14,\n      \"Engines Recharge\": 1,\n      \"Integrity\": 51,\n      \"Mass\": 2,\n      \"Power Draw\": 0.45,\n      \"Systems Capacity\": 14,\n      \"Systems Recharge\": 1,\n      \"Weapons Capacity\": 18,\n      \"Weapons Recharge\": 2.1\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 25330,\n    \"edID\": 128064190,\n    \"eddbID\": 1048,\n    \"grp\": \"pd\",\n    \"id\": \"dc\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_PowerDistributor_Size3_Class3\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 15,\n      \"Engines Recharge\": 1.1,\n      \"Integrity\": 64,\n      \"Mass\": 5,\n      \"Power Draw\": 0.5,\n      \"Systems Capacity\": 15,\n      \"Systems Recharge\": 1.1,\n      \"Weapons Capacity\": 20,\n      \"Weapons Recharge\": 2.3\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 63330,\n    \"edID\": 128064191,\n    \"eddbID\": 1049,\n    \"grp\": \"pd\",\n    \"id\": \"db\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_PowerDistributor_Size3_Class4\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 17,\n      \"Engines Recharge\": 1.2,\n      \"Integrity\": 77,\n      \"Mass\": 8,\n      \"Power Draw\": 0.55,\n      \"Systems Capacity\": 17,\n      \"Systems Recharge\": 1.2,\n      \"Weapons Capacity\": 22,\n      \"Weapons Recharge\": 2.5\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 158330,\n    \"edID\": 128064192,\n    \"eddbID\": 1050,\n    \"grp\": \"pd\",\n    \"id\": \"da\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_PowerDistributor_Size3_Class5\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 18,\n      \"Engines Recharge\": 1.3,\n      \"Integrity\": 70,\n      \"Mass\": 5,\n      \"Power Draw\": 0.6,\n      \"Systems Capacity\": 18,\n      \"Systems Recharge\": 1.3,\n      \"Weapons Capacity\": 24,\n      \"Weapons Recharge\": 2.8\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 1450,\n    \"edID\": 128064183,\n    \"eddbID\": 1041,\n    \"grp\": \"pd\",\n    \"id\": \"d9\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_PowerDistributor_Size2_Class1\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 10,\n      \"Engines Recharge\": 0.6,\n      \"Integrity\": 46,\n      \"Mass\": 2.5,\n      \"Power Draw\": 0.36,\n      \"Systems Capacity\": 10,\n      \"Systems Recharge\": 0.6,\n      \"Weapons Capacity\": 12,\n      \"Weapons Recharge\": 1.4\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 3620,\n    \"edID\": 128064184,\n    \"eddbID\": 1042,\n    \"grp\": \"pd\",\n    \"id\": \"d8\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_PowerDistributor_Size2_Class2\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 11,\n      \"Engines Recharge\": 0.6,\n      \"Integrity\": 41,\n      \"Mass\": 1,\n      \"Power Draw\": 0.41,\n      \"Systems Capacity\": 11,\n      \"Systems Recharge\": 0.6,\n      \"Weapons Capacity\": 14,\n      \"Weapons Recharge\": 1.6\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 9050,\n    \"edID\": 128064185,\n    \"eddbID\": 1043,\n    \"grp\": \"pd\",\n    \"id\": \"d7\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_PowerDistributor_Size2_Class3\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 12,\n      \"Engines Recharge\": 0.7,\n      \"Integrity\": 51,\n      \"Mass\": 2.5,\n      \"Power Draw\": 0.45,\n      \"Systems Capacity\": 12,\n      \"Systems Recharge\": 0.7,\n      \"Weapons Capacity\": 15,\n      \"Weapons Recharge\": 1.8\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 22620,\n    \"edID\": 128064186,\n    \"eddbID\": 1044,\n    \"grp\": \"pd\",\n    \"id\": \"d6\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_PowerDistributor_Size2_Class4\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 13,\n      \"Engines Recharge\": 0.8,\n      \"Integrity\": 61,\n      \"Mass\": 4,\n      \"Power Draw\": 0.5,\n      \"Systems Capacity\": 13,\n      \"Systems Recharge\": 0.8,\n      \"Weapons Capacity\": 17,\n      \"Weapons Recharge\": 2\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 56550,\n    \"edID\": 128064187,\n    \"eddbID\": 1045,\n    \"grp\": \"pd\",\n    \"id\": \"d5\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_PowerDistributor_Size2_Class5\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 14,\n      \"Engines Recharge\": 0.8,\n      \"Integrity\": 56,\n      \"Mass\": 2.5,\n      \"Power Draw\": 0.54,\n      \"Systems Capacity\": 14,\n      \"Systems Recharge\": 0.8,\n      \"Weapons Capacity\": 18,\n      \"Weapons Recharge\": 2.2\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 520,\n    \"edID\": 128064178,\n    \"eddbID\": 1036,\n    \"grp\": \"pd\",\n    \"id\": \"d4\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_PowerDistributor_Size1_Class1\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 8,\n      \"Engines Recharge\": 0.4,\n      \"Integrity\": 46,\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.32,\n      \"Systems Capacity\": 8,\n      \"Systems Recharge\": 0.4,\n      \"Weapons Capacity\": 10,\n      \"Weapons Recharge\": 1.2\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 1290,\n    \"edID\": 128064179,\n    \"eddbID\": 1037,\n    \"grp\": \"pd\",\n    \"id\": \"d3\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_PowerDistributor_Size1_Class2\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 9,\n      \"Engines Recharge\": 0.5,\n      \"Integrity\": 41,\n      \"Mass\": 0.5,\n      \"Power Draw\": 0.36,\n      \"Systems Capacity\": 9,\n      \"Systems Recharge\": 0.5,\n      \"Weapons Capacity\": 11,\n      \"Weapons Recharge\": 1.4\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 3230,\n    \"edID\": 128064180,\n    \"eddbID\": 1038,\n    \"grp\": \"pd\",\n    \"id\": \"d2\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_PowerDistributor_Size1_Class3\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 10,\n      \"Engines Recharge\": 0.5,\n      \"Integrity\": 51,\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.4,\n      \"Systems Capacity\": 10,\n      \"Systems Recharge\": 0.5,\n      \"Weapons Capacity\": 12,\n      \"Weapons Recharge\": 1.5\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 8080,\n    \"edID\": 128064181,\n    \"eddbID\": 1039,\n    \"grp\": \"pd\",\n    \"id\": \"d1\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_PowerDistributor_Size1_Class4\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 11,\n      \"Engines Recharge\": 0.6,\n      \"Integrity\": 61,\n      \"Mass\": 2,\n      \"Power Draw\": 0.44,\n      \"Systems Capacity\": 11,\n      \"Systems Recharge\": 0.6,\n      \"Weapons Capacity\": 13,\n      \"Weapons Recharge\": 1.7\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 20200,\n    \"edID\": 128064182,\n    \"eddbID\": 1040,\n    \"grp\": \"pd\",\n    \"id\": \"d0\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_PowerDistributor_Size1_Class5\",\n    \"ukName\": \"Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors.\",\n    \"properties\": {\n      \"Engines Capacity\": 12,\n      \"Engines Recharge\": 0.6,\n      \"Integrity\": 56,\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.48,\n      \"Systems Capacity\": 12,\n      \"Systems Recharge\": 0.6,\n      \"Weapons Capacity\": 14,\n      \"Weapons Recharge\": 1.8\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 40957,\n    \"edID\": 128833980,\n    \"eddbID\": 1040,\n    \"grp\": \"pd\",\n    \"id\": \"0T\",\n    \"rating\": \"A\",\n    \"name\": \"Guardian Power Distributor\",\n    \"symbol\": \"Int_GuardianPowerDistributor_Size1\",\n    \"ukName\": \"Guardian Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors. Enhanced with Guardian technology to speed up capacitor recharge rates, at the cost of smaller capacitors and increased heat generation. Also boosts overall power output of any power plant it is hooked into.\",\n    \"properties\": {\n      \"Engines Capacity\": 9,\n      \"Engines Recharge\": 0.8,\n      \"Integrity\": 56,\n      \"Mass\": 1.4,\n      \"Power Draw\": 0.62,\n      \"Systems Capacity\": 10,\n      \"Systems Recharge\": 0.8,\n      \"Weapons Capacity\": 10,\n      \"Weapons Recharge\": 2.5\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 111600,\n    \"edID\": 128833981,\n    \"eddbID\": 1040,\n    \"grp\": \"pd\",\n    \"id\": \"0U\",\n    \"rating\": \"A\",\n    \"name\": \"Guardian Power Distributor\",\n    \"symbol\": \"Int_GuardianPowerDistributor_Size2\",\n    \"ukName\": \"Guardian Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors. Enhanced with Guardian technology to speed up capacitor recharge rates, at the cost of smaller capacitors and increased heat generation. Also boosts overall power output of any power plant it is hooked into.\",\n    \"properties\": {\n      \"Engines Capacity\": 9,\n      \"Engines Recharge\": 0.8,\n      \"Integrity\": 56,\n      \"Mass\": 2.6,\n      \"Power Draw\": 0.73,\n      \"Systems Capacity\": 10,\n      \"Systems Recharge\": 0.8,\n      \"Weapons Capacity\": 10,\n      \"Weapons Recharge\": 2.5\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 311365,\n    \"edID\": 128833982,\n    \"eddbID\": 1040,\n    \"grp\": \"pd\",\n    \"id\": \"0X\",\n    \"rating\": \"A\",\n    \"name\": \"Guardian Power Distributor\",\n    \"symbol\": \"Int_GuardianPowerDistributor_Size3\",\n    \"ukName\": \"Guardian Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors. Enhanced with Guardian technology to speed up capacitor recharge rates, at the cost of smaller capacitors and increased heat generation. Also boosts overall power output of any power plant it is hooked into.\",\n    \"properties\": {\n      \"Engines Capacity\": 14,\n      \"Engines Recharge\": 1.7,\n      \"Integrity\": 56,\n      \"Mass\": 5.25,\n      \"Power Draw\": 0.78,\n      \"Systems Capacity\": 14,\n      \"Systems Recharge\": 1.7,\n      \"Weapons Capacity\": 13,\n      \"Weapons Recharge\": 3.1\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 868708,\n    \"edID\": 128833983,\n    \"eddbID\": 1040,\n    \"grp\": \"pd\",\n    \"id\": \"3I\",\n    \"rating\": \"A\",\n    \"name\": \"Guardian Power Distributor\",\n    \"symbol\": \"Int_GuardianPowerDistributor_Size4\",\n    \"ukName\": \"Guardian Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors. Enhanced with Guardian technology to speed up capacitor recharge rates, at the cost of smaller capacitors and increased heat generation. Also boosts overall power output of any power plant it is hooked into.\",\n    \"properties\": {\n      \"Engines Capacity\": 17,\n      \"Engines Recharge\": 2.5,\n      \"Integrity\": 56,\n      \"Mass\": 10.5,\n      \"Power Draw\": 0.87,\n      \"Systems Capacity\": 14,\n      \"Systems Recharge\": 1.7,\n      \"Weapons Capacity\": 22,\n      \"Weapons Recharge\": 4.9\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 2423690,\n    \"edID\": 128833984,\n    \"eddbID\": 1040,\n    \"grp\": \"pd\",\n    \"id\": \"2Z\",\n    \"rating\": \"A\",\n    \"name\": \"Guardian Power Distributor\",\n    \"symbol\": \"Int_GuardianPowerDistributor_Size5\",\n    \"ukName\": \"Guardian Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors. Enhanced with Guardian technology to speed up capacitor recharge rates, at the cost of smaller capacitors and increased heat generation. Also boosts overall power output of any power plant it is hooked into.\",\n    \"properties\": {\n      \"Engines Capacity\": 22,\n      \"Engines Recharge\": 3.3,\n      \"Integrity\": 56,\n      \"Mass\": 21,\n      \"Power Draw\": 0.96,\n      \"Systems Capacity\": 22,\n      \"Systems Recharge\": 3.3,\n      \"Weapons Capacity\": 29,\n      \"Weapons Recharge\": 6\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 6762091,\n    \"edID\": 128833985,\n    \"eddbID\": 1040,\n    \"grp\": \"pd\",\n    \"id\": \"3T\",\n    \"rating\": \"A\",\n    \"name\": \"Guardian Power Distributor\",\n    \"symbol\": \"Int_GuardianPowerDistributor_Size6\",\n    \"ukName\": \"Guardian Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors. Enhanced with Guardian technology to speed up capacitor recharge rates, at the cost of smaller capacitors and increased heat generation. Also boosts overall power output of any power plant it is hooked into.\",\n    \"properties\": {\n      \"Engines Capacity\": 26,\n      \"Engines Recharge\": 4.2,\n      \"Integrity\": 56,\n      \"Mass\": 42,\n      \"Power Draw\": 1.07,\n      \"Systems Capacity\": 26,\n      \"Systems Recharge\": 4.2,\n      \"Weapons Capacity\": 35,\n      \"Weapons Recharge\": 7.3\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 18866235,\n    \"edID\": 128833986,\n    \"eddbID\": 1040,\n    \"grp\": \"pd\",\n    \"id\": \"3H\",\n    \"rating\": \"A\",\n    \"name\": \"Guardian Power Distributor\",\n    \"symbol\": \"Int_GuardianPowerDistributor_Size7\",\n    \"ukName\": \"Guardian Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors. Enhanced with Guardian technology to speed up capacitor recharge rates, at the cost of smaller capacitors and increased heat generation. Also boosts overall power output of any power plant it is hooked into.\",\n    \"properties\": {\n      \"Engines Capacity\": 31,\n      \"Engines Recharge\": 5.2,\n      \"Integrity\": 56,\n      \"Mass\": 84,\n      \"Power Draw\": 1.16,\n      \"Systems Capacity\": 31,\n      \"Systems Recharge\": 5.2,\n      \"Weapons Capacity\": 43,\n      \"Weapons Recharge\": 8.5\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 52636793,\n    \"edID\": 128833987,\n    \"eddbID\": 1040,\n    \"grp\": \"pd\",\n    \"id\": \"3G\",\n    \"rating\": \"A\",\n    \"name\": \"Guardian Power Distributor\",\n    \"symbol\": \"Int_GuardianPowerDistributor_Size8\",\n    \"ukName\": \"Guardian Power Distributor\",\n    \"description\": \"Distribution system for ENG, SYS and WEP capacitors. Enhanced with Guardian technology to speed up capacitor recharge rates, at the cost of smaller capacitors and increased heat generation. Also boosts overall power output of any power plant it is hooked into.\",\n    \"properties\": {\n      \"Engines Capacity\": 36,\n      \"Engines Recharge\": 6.2,\n      \"Integrity\": 56,\n      \"Mass\": 168,\n      \"Power Draw\": 1.25,\n      \"Systems Capacity\": 36,\n      \"Systems Recharge\": 6.2,\n      \"Weapons Capacity\": 50,\n      \"Weapons Recharge\": 10.1\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 2007240,\n    \"edID\": 128064063,\n    \"eddbID\": 921,\n    \"grp\": \"pp\",\n    \"id\": \"py\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_Powerplant_Size8_Class1\",\n    \"ukName\": \"Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules.\",\n    \"properties\": {\n      \"Heat Efficiency\": 1,\n      \"Integrity\": 135,\n      \"Mass\": 160,\n      \"Power Generation\": 24\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 6021720,\n    \"edID\": 128064064,\n    \"eddbID\": 922,\n    \"grp\": \"pp\",\n    \"id\": \"px\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_Powerplant_Size8_Class2\",\n    \"ukName\": \"Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules.\",\n    \"properties\": {\n      \"Heat Efficiency\": 0.75,\n      \"Integrity\": 120,\n      \"Mass\": 64,\n      \"Power Generation\": 27\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 18065170,\n    \"edID\": 128064065,\n    \"eddbID\": 923,\n    \"grp\": \"pp\",\n    \"id\": \"pw\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_Powerplant_Size8_Class3\",\n    \"ukName\": \"Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules.\",\n    \"properties\": {\n      \"Heat Efficiency\": 0.5,\n      \"Integrity\": 150,\n      \"Mass\": 80,\n      \"Power Generation\": 30\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 54195500,\n    \"edID\": 128064066,\n    \"eddbID\": 924,\n    \"grp\": \"pp\",\n    \"id\": \"pv\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_Powerplant_Size8_Class4\",\n    \"ukName\": \"Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules.\",\n    \"properties\": {\n      \"Heat Efficiency\": 0.45,\n      \"Integrity\": 180,\n      \"Mass\": 128,\n      \"Power Generation\": 33\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 162586490,\n    \"edID\": 128064067,\n    \"eddbID\": 925,\n    \"grp\": \"pp\",\n    \"id\": \"pu\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_Powerplant_Size8_Class5\",\n    \"ukName\": \"Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules.\",\n    \"properties\": {\n      \"Heat Efficiency\": 0.4,\n      \"Integrity\": 165,\n      \"Mass\": 80,\n      \"Power Generation\": 36\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 633200,\n    \"edID\": 128064058,\n    \"eddbID\": 916,\n    \"grp\": \"pp\",\n    \"id\": \"pt\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_Powerplant_Size7_Class1\",\n    \"ukName\": \"Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules.\",\n    \"properties\": {\n      \"Heat Efficiency\": 1,\n      \"Integrity\": 118,\n      \"Mass\": 80,\n      \"Power Generation\": 20\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 1899600,\n    \"edID\": 128064059,\n    \"eddbID\": 917,\n    \"grp\": \"pp\",\n    \"id\": \"ps\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_Powerplant_Size7_Class2\",\n    \"ukName\": \"Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules.\",\n    \"properties\": {\n      \"Heat Efficiency\": 0.75,\n      \"Integrity\": 105,\n      \"Mass\": 32,\n      \"Power Generation\": 22.5\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 5698790,\n    \"edID\": 128064060,\n    \"eddbID\": 918,\n    \"grp\": \"pp\",\n    \"id\": \"pr\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_Powerplant_Size7_Class3\",\n    \"ukName\": \"Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules.\",\n    \"properties\": {\n      \"Heat Efficiency\": 0.5,\n      \"Integrity\": 131,\n      \"Mass\": 40,\n      \"Power Generation\": 25\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 17096370,\n    \"edID\": 128064061,\n    \"eddbID\": 919,\n    \"grp\": \"pp\",\n    \"id\": \"pq\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_Powerplant_Size7_Class4\",\n    \"ukName\": \"Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules.\",\n    \"properties\": {\n      \"Heat Efficiency\": 0.45,\n      \"Integrity\": 157,\n      \"Mass\": 64,\n      \"Power Generation\": 27.5\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 51289110,\n    \"edID\": 128064062,\n    \"eddbID\": 920,\n    \"grp\": \"pp\",\n    \"id\": \"pp\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_Powerplant_Size7_Class5\",\n    \"ukName\": \"Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules.\",\n    \"properties\": {\n      \"Heat Efficiency\": 0.4,\n      \"Integrity\": 144,\n      \"Mass\": 40,\n      \"Power Generation\": 30\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 199750,\n    \"edID\": 128064053,\n    \"eddbID\": 911,\n    \"grp\": \"pp\",\n    \"id\": \"po\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_Powerplant_Size6_Class1\",\n    \"ukName\": \"Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules.\",\n    \"properties\": {\n      \"Heat Efficiency\": 1,\n      \"Integrity\": 102,\n      \"Mass\": 40,\n      \"Power Generation\": 16.8\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 599240,\n    \"edID\": 128064054,\n    \"eddbID\": 912,\n    \"grp\": \"pp\",\n    \"id\": \"pn\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_Powerplant_Size6_Class2\",\n    \"ukName\": \"Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules.\",\n    \"properties\": {\n      \"Heat Efficiency\": 0.75,\n      \"Integrity\": 90,\n      \"Mass\": 16,\n      \"Power Generation\": 18.9\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 1797730,\n    \"edID\": 128064055,\n    \"eddbID\": 913,\n    \"grp\": \"pp\",\n    \"id\": \"pm\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_Powerplant_Size6_Class3\",\n    \"ukName\": \"Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules.\",\n    \"properties\": {\n      \"Heat Efficiency\": 0.5,\n      \"Integrity\": 113,\n      \"Mass\": 20,\n      \"Power Generation\": 21\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 5393180,\n    \"edID\": 128064056,\n    \"eddbID\": 914,\n    \"grp\": \"pp\",\n    \"id\": \"pl\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_Powerplant_Size6_Class4\",\n    \"ukName\": \"Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules.\",\n    \"properties\": {\n      \"Heat Efficiency\": 0.45,\n      \"Integrity\": 136,\n      \"Mass\": 32,\n      \"Power Generation\": 23.1\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 16179530,\n    \"edID\": 128064057,\n    \"eddbID\": 915,\n    \"grp\": \"pp\",\n    \"id\": \"pk\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_Powerplant_Size6_Class5\",\n    \"ukName\": \"Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules.\",\n    \"properties\": {\n      \"Heat Efficiency\": 0.4,\n      \"Integrity\": 124,\n      \"Mass\": 20,\n      \"Power Generation\": 25.2\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 63010,\n    \"edID\": 128064048,\n    \"eddbID\": 906,\n    \"grp\": \"pp\",\n    \"id\": \"pj\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_Powerplant_Size5_Class1\",\n    \"ukName\": \"Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules.\",\n    \"properties\": {\n      \"Heat Efficiency\": 1,\n      \"Integrity\": 86,\n      \"Mass\": 20,\n      \"Power Generation\": 13.6\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 189040,\n    \"edID\": 128064049,\n    \"eddbID\": 907,\n    \"grp\": \"pp\",\n    \"id\": \"pi\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_Powerplant_Size5_Class2\",\n    \"ukName\": \"Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules.\",\n    \"properties\": {\n      \"Heat Efficiency\": 0.75,\n      \"Integrity\": 77,\n      \"Mass\": 8,\n      \"Power Generation\": 15.3\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 567110,\n    \"edID\": 128064050,\n    \"eddbID\": 908,\n    \"grp\": \"pp\",\n    \"id\": \"ph\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_Powerplant_Size5_Class3\",\n    \"ukName\": \"Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules.\",\n    \"properties\": {\n      \"Heat Efficiency\": 0.5,\n      \"Integrity\": 96,\n      \"Mass\": 10,\n      \"Power Generation\": 17\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 1701320,\n    \"edID\": 128064051,\n    \"eddbID\": 909,\n    \"grp\": \"pp\",\n    \"id\": \"pg\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_Powerplant_Size5_Class4\",\n    \"ukName\": \"Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules.\",\n    \"properties\": {\n      \"Heat Efficiency\": 0.45,\n      \"Integrity\": 114,\n      \"Mass\": 16,\n      \"Power Generation\": 18.7\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 5103950,\n    \"edID\": 128064052,\n    \"eddbID\": 910,\n    \"grp\": \"pp\",\n    \"id\": \"pf\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_Powerplant_Size5_Class5\",\n    \"ukName\": \"Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules.\",\n    \"properties\": {\n      \"Heat Efficiency\": 0.4,\n      \"Integrity\": 106,\n      \"Mass\": 10,\n      \"Power Generation\": 20.4\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 19880,\n    \"edID\": 128064043,\n    \"eddbID\": 901,\n    \"grp\": \"pp\",\n    \"id\": \"pe\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_Powerplant_Size4_Class1\",\n    \"ukName\": \"Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules.\",\n    \"properties\": {\n      \"Heat Efficiency\": 1,\n      \"Integrity\": 72,\n      \"Mass\": 10,\n      \"Power Generation\": 10.4\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 59630,\n    \"edID\": 128064044,\n    \"eddbID\": 902,\n    \"grp\": \"pp\",\n    \"id\": \"pd\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_Powerplant_Size4_Class2\",\n    \"ukName\": \"Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules.\",\n    \"properties\": {\n      \"Heat Efficiency\": 0.75,\n      \"Integrity\": 64,\n      \"Mass\": 4,\n      \"Power Generation\": 11.7\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 178900,\n    \"edID\": 128064045,\n    \"eddbID\": 903,\n    \"grp\": \"pp\",\n    \"id\": \"pc\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_Powerplant_Size4_Class3\",\n    \"ukName\": \"Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules.\",\n    \"properties\": {\n      \"Heat Efficiency\": 0.5,\n      \"Integrity\": 80,\n      \"Mass\": 5,\n      \"Power Generation\": 13\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 536690,\n    \"edID\": 128064046,\n    \"eddbID\": 904,\n    \"grp\": \"pp\",\n    \"id\": \"pb\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_Powerplant_Size4_Class4\",\n    \"ukName\": \"Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules.\",\n    \"properties\": {\n      \"Heat Efficiency\": 0.45,\n      \"Integrity\": 96,\n      \"Mass\": 8,\n      \"Power Generation\": 14.3\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 1610080,\n    \"edID\": 128064047,\n    \"eddbID\": 905,\n    \"grp\": \"pp\",\n    \"id\": \"pa\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_Powerplant_Size4_Class5\",\n    \"ukName\": \"Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules.\",\n    \"properties\": {\n      \"Heat Efficiency\": 0.4,\n      \"Integrity\": 88,\n      \"Mass\": 5,\n      \"Power Generation\": 15.6\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 6270,\n    \"edID\": 128064038,\n    \"eddbID\": 896,\n    \"grp\": \"pp\",\n    \"id\": \"p9\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_Powerplant_Size3_Class1\",\n    \"ukName\": \"Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules.\",\n    \"properties\": {\n      \"Heat Efficiency\": 1,\n      \"Integrity\": 58,\n      \"Mass\": 5,\n      \"Power Generation\": 8\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 18810,\n    \"edID\": 128064039,\n    \"eddbID\": 897,\n    \"grp\": \"pp\",\n    \"id\": \"p8\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_Powerplant_Size3_Class2\",\n    \"ukName\": \"Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules.\",\n    \"properties\": {\n      \"Heat Efficiency\": 0.75,\n      \"Integrity\": 51,\n      \"Mass\": 2,\n      \"Power Generation\": 9\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 56440,\n    \"edID\": 128064040,\n    \"eddbID\": 898,\n    \"grp\": \"pp\",\n    \"id\": \"p7\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_Powerplant_Size3_Class3\",\n    \"ukName\": \"Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules.\",\n    \"properties\": {\n      \"Heat Efficiency\": 0.5,\n      \"Integrity\": 64,\n      \"Mass\": 2.5,\n      \"Power Generation\": 10\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 169300,\n    \"edID\": 128064041,\n    \"eddbID\": 899,\n    \"grp\": \"pp\",\n    \"id\": \"p6\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_Powerplant_Size3_Class4\",\n    \"ukName\": \"Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules.\",\n    \"properties\": {\n      \"Heat Efficiency\": 0.45,\n      \"Integrity\": 77,\n      \"Mass\": 4,\n      \"Power Generation\": 11\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 507910,\n    \"edID\": 128064042,\n    \"eddbID\": 900,\n    \"grp\": \"pp\",\n    \"id\": \"p5\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_Powerplant_Size3_Class5\",\n    \"ukName\": \"Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules.\",\n    \"properties\": {\n      \"Heat Efficiency\": 0.4,\n      \"Integrity\": 70,\n      \"Mass\": 2.5,\n      \"Power Generation\": 12\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 1980,\n    \"edID\": 128064033,\n    \"eddbID\": 891,\n    \"grp\": \"pp\",\n    \"id\": \"p4\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_Powerplant_Size2_Class1\",\n    \"ukName\": \"Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules.\",\n    \"properties\": {\n      \"Heat Efficiency\": 1,\n      \"Integrity\": 46,\n      \"Mass\": 2.5,\n      \"Power Generation\": 6.4\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 5930,\n    \"edID\": 128064034,\n    \"eddbID\": 892,\n    \"grp\": \"pp\",\n    \"id\": \"p3\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_Powerplant_Size2_Class2\",\n    \"ukName\": \"Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules.\",\n    \"properties\": {\n      \"Heat Efficiency\": 0.75,\n      \"Integrity\": 41,\n      \"Mass\": 1,\n      \"Power Generation\": 7.2\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 17800,\n    \"edID\": 128064035,\n    \"eddbID\": 893,\n    \"grp\": \"pp\",\n    \"id\": \"p2\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_Powerplant_Size2_Class3\",\n    \"ukName\": \"Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules.\",\n    \"properties\": {\n      \"Heat Efficiency\": 0.5,\n      \"Integrity\": 51,\n      \"Mass\": 1.3,\n      \"Power Generation\": 8\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 53410,\n    \"edID\": 128064036,\n    \"eddbID\": 894,\n    \"grp\": \"pp\",\n    \"id\": \"p1\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_Powerplant_Size2_Class4\",\n    \"ukName\": \"Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules.\",\n    \"properties\": {\n      \"Heat Efficiency\": 0.45,\n      \"Integrity\": 61,\n      \"Mass\": 2,\n      \"Power Generation\": 8.8\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 160220,\n    \"edID\": 128064037,\n    \"eddbID\": 895,\n    \"grp\": \"pp\",\n    \"id\": \"p0\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_Powerplant_Size2_Class5\",\n    \"ukName\": \"Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules.\",\n    \"properties\": {\n      \"Heat Efficiency\": 0.4,\n      \"Integrity\": 56,\n      \"Mass\": 1.3,\n      \"Power Generation\": 9.6\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 192165,\n    \"edID\": 128833988,\n    \"eddbID\": 895,\n    \"grp\": \"pp\",\n    \"id\": \"0A\",\n    \"rating\": \"A\",\n    \"name\": \"Guardian Hybrid Power Plant\",\n    \"symbol\": \"Int_GuardianPowerplant_Size2\",\n    \"ukName\": \"Guardian Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules. Enhanced with Guardian technology to produce greater power output, at the cost of heat generated and mass.\",\n    \"properties\": {\n      \"Heat Efficiency\": 0.5,\n      \"Integrity\": 56,\n      \"Mass\": 1.5,\n      \"Power Generation\": 12.7\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 576493,\n    \"edID\": 128833989,\n    \"eddbID\": 895,\n    \"grp\": \"pp\",\n    \"id\": \"0B\",\n    \"rating\": \"A\",\n    \"name\": \"Guardian Hybrid Power Plant\",\n    \"symbol\": \"Int_GuardianPowerplant_Size3\",\n    \"ukName\": \"Guardian Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules. Enhanced with Guardian technology to produce greater power output, at the cost of heat generated and mass.\",\n    \"properties\": {\n      \"Heat Efficiency\": 0.5,\n      \"Integrity\": 70,\n      \"Mass\": 2.9,\n      \"Power Generation\": 15.8\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 1729480,\n    \"edID\": 128833990,\n    \"eddbID\": 895,\n    \"grp\": \"pp\",\n    \"id\": \"0C\",\n    \"rating\": \"A\",\n    \"name\": \"Guardian Hybrid Power Plant\",\n    \"symbol\": \"Int_GuardianPowerplant_Size4\",\n    \"ukName\": \"Guardian Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules. Enhanced with Guardian technology to produce greater power output, at the cost of heat generated and mass.\",\n    \"properties\": {\n      \"Heat Efficiency\": 0.5,\n      \"Integrity\": 88,\n      \"Mass\": 5.9,\n      \"Power Generation\": 20.6\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 5188441,\n    \"edID\": 128833991,\n    \"eddbID\": 895,\n    \"grp\": \"pp\",\n    \"id\": \"0D\",\n    \"rating\": \"A\",\n    \"name\": \"Guardian Hybrid Power Plant\",\n    \"symbol\": \"Int_GuardianPowerplant_Size5\",\n    \"ukName\": \"Guardian Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules. Enhanced with Guardian technology to produce greater power output, at the cost of heat generated and mass.\",\n    \"properties\": {\n      \"Heat Efficiency\": 0.5,\n      \"Integrity\": 106,\n      \"Mass\": 11.7,\n      \"Power Generation\": 26.9\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 15565317,\n    \"edID\": 128833992,\n    \"eddbID\": 895,\n    \"grp\": \"pp\",\n    \"id\": \"0E\",\n    \"rating\": \"A\",\n    \"name\": \"Guardian Hybrid Power Plant\",\n    \"symbol\": \"Int_GuardianPowerplant_Size6\",\n    \"ukName\": \"Guardian Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules. Enhanced with Guardian technology to produce greater power output, at the cost of heat generated and mass.\",\n    \"properties\": {\n      \"Heat Efficiency\": 0.5,\n      \"Integrity\": 124,\n      \"Mass\": 23.4,\n      \"Power Generation\": 33.3\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 46695951,\n    \"edID\": 128833993,\n    \"eddbID\": 895,\n    \"grp\": \"pp\",\n    \"id\": \"0F\",\n    \"rating\": \"A\",\n    \"name\": \"Guardian Hybrid Power Plant\",\n    \"symbol\": \"Int_GuardianPowerplant_Size7\",\n    \"ukName\": \"Guardian Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules. Enhanced with Guardian technology to produce greater power output, at the cost of heat generated and mass.\",\n    \"properties\": {\n      \"Heat Efficiency\": 0.5,\n      \"Integrity\": 144,\n      \"Mass\": 46.8,\n      \"Power Generation\": 39.6\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 140087850,\n    \"edID\": 128833994,\n    \"eddbID\": 895,\n    \"grp\": \"pp\",\n    \"id\": \"0G\",\n    \"rating\": \"A\",\n    \"name\": \"Guardian Hybrid Power Plant\",\n    \"symbol\": \"Int_GuardianPowerplant_Size8\",\n    \"ukName\": \"Guardian Power Plant\",\n    \"description\": \"Consumes fuel to power all ship modules. Enhanced with Guardian technology to produce greater power output, at the cost of heat generated and mass.\",\n    \"properties\": {\n      \"Heat Efficiency\": 0.5,\n      \"Integrity\": 165,\n      \"Mass\": 93.6,\n      \"Power Generation\": 47.5\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 697580,\n    \"edID\": 128064253,\n    \"eddbID\": 1111,\n    \"grp\": \"s\",\n    \"id\": \"sy\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_Sensors_Size8_Class1\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 135,\n      \"Mass\": 160,\n      \"Power Draw\": 0.55,\n      \"Maximum Range\": 5.12\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 1743960,\n    \"edID\": 128064254,\n    \"eddbID\": 1112,\n    \"grp\": \"s\",\n    \"id\": \"sx\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_Sensors_Size8_Class2\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 120,\n      \"Mass\": 64,\n      \"Power Draw\": 0.62,\n      \"Maximum Range\": 5.76\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 4359900,\n    \"edID\": 128064255,\n    \"eddbID\": 1113,\n    \"grp\": \"s\",\n    \"id\": \"sw\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_Sensors_Size8_Class3\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 150,\n      \"Mass\": 160,\n      \"Power Draw\": 0.69,\n      \"Maximum Range\": 6.4\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 10899760,\n    \"edID\": 128064256,\n    \"eddbID\": 1114,\n    \"grp\": \"s\",\n    \"id\": \"sv\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_Sensors_Size8_Class4\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 180,\n      \"Mass\": 256,\n      \"Power Draw\": 1.14,\n      \"Maximum Range\": 7.04\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 27249390,\n    \"edID\": 128064257,\n    \"eddbID\": 1115,\n    \"grp\": \"s\",\n    \"id\": \"su\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_Sensors_Size8_Class5\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 165,\n      \"Mass\": 160,\n      \"Power Draw\": 2.07,\n      \"Maximum Range\": 7.68\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 249140,\n    \"edID\": 128064248,\n    \"eddbID\": 1106,\n    \"grp\": \"s\",\n    \"id\": \"sD\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_Sensors_Size7_Class1\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 118,\n      \"Mass\": 80,\n      \"Power Draw\": 0.47,\n      \"Maximum Range\": 4.96\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 622840,\n    \"edID\": 128064249,\n    \"eddbID\": 1107,\n    \"grp\": \"s\",\n    \"id\": \"sC\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_Sensors_Size7_Class2\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 105,\n      \"Mass\": 32,\n      \"Power Draw\": 0.53,\n      \"Maximum Range\": 5.58\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 1557110,\n    \"edID\": 128064250,\n    \"eddbID\": 1108,\n    \"grp\": \"s\",\n    \"id\": \"sB\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_Sensors_Size7_Class3\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 131,\n      \"Mass\": 80,\n      \"Power Draw\": 0.59,\n      \"Maximum Range\": 6.2\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 3892770,\n    \"edID\": 128064251,\n    \"eddbID\": 1109,\n    \"grp\": \"s\",\n    \"id\": \"sA\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_Sensors_Size7_Class4\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 157,\n      \"Mass\": 128,\n      \"Power Draw\": 0.97,\n      \"Maximum Range\": 6.82\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 9731930,\n    \"edID\": 128064252,\n    \"eddbID\": 1110,\n    \"grp\": \"s\",\n    \"id\": \"sz\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_Sensors_Size7_Class5\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 144,\n      \"Mass\": 80,\n      \"Power Draw\": 1.77,\n      \"Maximum Range\": 7.44\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 88980,\n    \"edID\": 128064243,\n    \"eddbID\": 1101,\n    \"grp\": \"s\",\n    \"id\": \"st\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_Sensors_Size6_Class1\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 102,\n      \"Mass\": 40,\n      \"Power Draw\": 0.4,\n      \"Maximum Range\": 4.8\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 222440,\n    \"edID\": 128064244,\n    \"eddbID\": 1102,\n    \"grp\": \"s\",\n    \"id\": \"ss\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_Sensors_Size6_Class2\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 90,\n      \"Mass\": 16,\n      \"Power Draw\": 0.45,\n      \"Maximum Range\": 5.4\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 556110,\n    \"edID\": 128064245,\n    \"eddbID\": 1103,\n    \"grp\": \"s\",\n    \"id\": \"sr\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_Sensors_Size6_Class3\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 113,\n      \"Mass\": 40,\n      \"Power Draw\": 0.5,\n      \"Maximum Range\": 6\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 1390280,\n    \"edID\": 128064246,\n    \"eddbID\": 1104,\n    \"grp\": \"s\",\n    \"id\": \"sq\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_Sensors_Size6_Class4\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 136,\n      \"Mass\": 64,\n      \"Power Draw\": 0.83,\n      \"Maximum Range\": 6.6\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 3475690,\n    \"edID\": 128064247,\n    \"eddbID\": 1105,\n    \"grp\": \"s\",\n    \"id\": \"sp\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_Sensors_Size6_Class5\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 124,\n      \"Mass\": 40,\n      \"Power Draw\": 1.5,\n      \"Maximum Range\": 7.2\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 31780,\n    \"edID\": 128064238,\n    \"eddbID\": 1096,\n    \"grp\": \"s\",\n    \"id\": \"so\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_Sensors_Size5_Class1\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 86,\n      \"Mass\": 20,\n      \"Power Draw\": 0.33,\n      \"Maximum Range\": 4.64\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 79440,\n    \"edID\": 128064239,\n    \"eddbID\": 1097,\n    \"grp\": \"s\",\n    \"id\": \"sn\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_Sensors_Size5_Class2\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 77,\n      \"Mass\": 8,\n      \"Power Draw\": 0.37,\n      \"Maximum Range\": 5.22\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 198610,\n    \"edID\": 128064240,\n    \"eddbID\": 1098,\n    \"grp\": \"s\",\n    \"id\": \"sm\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_Sensors_Size5_Class3\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 96,\n      \"Mass\": 20,\n      \"Power Draw\": 0.41,\n      \"Maximum Range\": 5.8\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 496530,\n    \"edID\": 128064241,\n    \"eddbID\": 1099,\n    \"grp\": \"s\",\n    \"id\": \"sl\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_Sensors_Size5_Class4\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 115,\n      \"Mass\": 32,\n      \"Power Draw\": 0.68,\n      \"Maximum Range\": 6.38\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 1241320,\n    \"edID\": 128064242,\n    \"eddbID\": 1100,\n    \"grp\": \"s\",\n    \"id\": \"sk\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_Sensors_Size5_Class5\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 106,\n      \"Mass\": 20,\n      \"Power Draw\": 1.23,\n      \"Maximum Range\": 6.96\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 11350,\n    \"edID\": 128064233,\n    \"eddbID\": 1091,\n    \"grp\": \"s\",\n    \"id\": \"sj\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_Sensors_Size4_Class1\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 72,\n      \"Mass\": 10,\n      \"Power Draw\": 0.27,\n      \"Maximum Range\": 4.48\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 28370,\n    \"edID\": 128064234,\n    \"eddbID\": 1092,\n    \"grp\": \"s\",\n    \"id\": \"si\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_Sensors_Size4_Class2\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 64,\n      \"Mass\": 4,\n      \"Power Draw\": 0.31,\n      \"Maximum Range\": 5.04\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 70930,\n    \"edID\": 128064235,\n    \"eddbID\": 1093,\n    \"grp\": \"s\",\n    \"id\": \"sh\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_Sensors_Size4_Class3\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 80,\n      \"Mass\": 10,\n      \"Power Draw\": 0.34,\n      \"Maximum Range\": 5.6\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 177330,\n    \"edID\": 128064236,\n    \"eddbID\": 1094,\n    \"grp\": \"s\",\n    \"id\": \"sg\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_Sensors_Size4_Class4\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 96,\n      \"Mass\": 16,\n      \"Power Draw\": 0.56,\n      \"Maximum Range\": 6.16\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 443330,\n    \"edID\": 128064237,\n    \"eddbID\": 1095,\n    \"grp\": \"s\",\n    \"id\": \"sf\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_Sensors_Size4_Class5\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 88,\n      \"Mass\": 10,\n      \"Power Draw\": 1.02,\n      \"Maximum Range\": 6.72\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 4050,\n    \"edID\": 128064228,\n    \"eddbID\": 1086,\n    \"grp\": \"s\",\n    \"id\": \"se\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_Sensors_Size3_Class1\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 58,\n      \"Mass\": 5,\n      \"Power Draw\": 0.22,\n      \"Maximum Range\": 4.32\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 10130,\n    \"edID\": 128064229,\n    \"eddbID\": 1087,\n    \"grp\": \"s\",\n    \"id\": \"sd\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_Sensors_Size3_Class2\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 51,\n      \"Mass\": 2,\n      \"Power Draw\": 0.25,\n      \"Maximum Range\": 4.86\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 25330,\n    \"edID\": 128064230,\n    \"eddbID\": 1088,\n    \"grp\": \"s\",\n    \"id\": \"sc\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_Sensors_Size3_Class3\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 64,\n      \"Mass\": 5,\n      \"Power Draw\": 0.28,\n      \"Maximum Range\": 5.4\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 63330,\n    \"edID\": 128064231,\n    \"eddbID\": 1089,\n    \"grp\": \"s\",\n    \"id\": \"sb\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_Sensors_Size3_Class4\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 77,\n      \"Mass\": 8,\n      \"Power Draw\": 0.46,\n      \"Maximum Range\": 5.94\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 158330,\n    \"edID\": 128064232,\n    \"eddbID\": 1090,\n    \"grp\": \"s\",\n    \"id\": \"sa\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_Sensors_Size3_Class5\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 70,\n      \"Mass\": 5,\n      \"Power Draw\": 0.84,\n      \"Maximum Range\": 6.48\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 1450,\n    \"edID\": 128064223,\n    \"eddbID\": 1081,\n    \"grp\": \"s\",\n    \"id\": \"s9\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_Sensors_Size2_Class1\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 46,\n      \"Mass\": 2.5,\n      \"Power Draw\": 0.18,\n      \"Maximum Range\": 4.16\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 3620,\n    \"edID\": 128064224,\n    \"eddbID\": 1082,\n    \"grp\": \"s\",\n    \"id\": \"s8\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_Sensors_Size2_Class2\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 41,\n      \"Mass\": 1,\n      \"Power Draw\": 0.21,\n      \"Maximum Range\": 4.68\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 9050,\n    \"edID\": 128064225,\n    \"eddbID\": 1083,\n    \"grp\": \"s\",\n    \"id\": \"s7\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_Sensors_Size2_Class3\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 51,\n      \"Mass\": 2.5,\n      \"Power Draw\": 0.23,\n      \"Maximum Range\": 5.2\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 22620,\n    \"edID\": 128064226,\n    \"eddbID\": 1084,\n    \"grp\": \"s\",\n    \"id\": \"s6\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_Sensors_Size2_Class4\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 61,\n      \"Mass\": 4,\n      \"Power Draw\": 0.38,\n      \"Maximum Range\": 5.72\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 56550,\n    \"edID\": 128064227,\n    \"eddbID\": 1085,\n    \"grp\": \"s\",\n    \"id\": \"s5\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_Sensors_Size2_Class5\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 56,\n      \"Mass\": 2.5,\n      \"Power Draw\": 0.69,\n      \"Maximum Range\": 6.24\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 520,\n    \"edID\": 128064218,\n    \"eddbID\": 1076,\n    \"grp\": \"s\",\n    \"id\": \"s4\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_Sensors_Size1_Class1\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 46,\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.16,\n      \"Maximum Range\": 4\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 1290,\n    \"edID\": 128064219,\n    \"eddbID\": 1077,\n    \"grp\": \"s\",\n    \"id\": \"s3\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_Sensors_Size1_Class2\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 41,\n      \"Mass\": 0.5,\n      \"Power Draw\": 0.18,\n      \"Maximum Range\": 4.5\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 3230,\n    \"edID\": 128064220,\n    \"eddbID\": 1078,\n    \"grp\": \"s\",\n    \"id\": \"s2\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_Sensors_Size1_Class3\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 51,\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.2,\n      \"Maximum Range\": 5\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 8080,\n    \"edID\": 128064221,\n    \"eddbID\": 1079,\n    \"grp\": \"s\",\n    \"id\": \"s1\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_Sensors_Size1_Class4\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 61,\n      \"Mass\": 2,\n      \"Power Draw\": 0.33,\n      \"Maximum Range\": 5.5\n    }\n  },\n  {\n    \"class\": 1,\n    \"cost\": 20200,\n    \"edID\": 128064222,\n    \"eddbID\": 1080,\n    \"grp\": \"s\",\n    \"id\": \"s0\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_Sensors_Size1_Class5\",\n    \"ukName\": \"Sensors\",\n    \"description\": \"Standard suite providing basic detection, identification and targeting capabilities.\",\n    \"properties\": {\n      \"Scan Angle\": 30,\n      \"Integrity\": 56,\n      \"Mass\": 1.3,\n      \"Power Draw\": 0.6,\n      \"Maximum Range\": 6\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 2007240,\n    \"edID\": 128064098,\n    \"eddbID\": 956,\n    \"grp\": \"t\",\n    \"id\": \"ty\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_Engine_Size8_Class1\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Normal-space propulsion system. \",\n    \"properties\": {\n      \"Integrity\": 135,\n      \"Mass\": 160,\n      \"Maximum Mass\": 3360,\n      \"Maximum Multipler\": 1.03,\n      \"Minimum Mass\": 1120,\n      \"Minimum Multiplier\": 0.83,\n      \"Optimal Mass\": 2240,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 7.2\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 6021720,\n    \"edID\": 128064099,\n    \"eddbID\": 957,\n    \"grp\": \"t\",\n    \"id\": \"tx\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_Engine_Size8_Class2\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Normal-space propulsion system. \",\n    \"properties\": {\n      \"Integrity\": 120,\n      \"Mass\": 64,\n      \"Maximum Mass\": 3780,\n      \"Maximum Multipler\": 1.06,\n      \"Minimum Mass\": 1260,\n      \"Minimum Multiplier\": 0.86,\n      \"Optimal Mass\": 2520,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 8.1\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 18065170,\n    \"edID\": 128064100,\n    \"eddbID\": 958,\n    \"grp\": \"t\",\n    \"id\": \"tw\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_Engine_Size8_Class3\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Normal-space propulsion system. \",\n    \"properties\": {\n      \"Integrity\": 150,\n      \"Mass\": 160,\n      \"Maximum Mass\": 4200,\n      \"Maximum Multipler\": 1.1,\n      \"Minimum Mass\": 1400,\n      \"Minimum Multiplier\": 0.9,\n      \"Optimal Mass\": 2800,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 9\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 54195500,\n    \"edID\": 128064101,\n    \"eddbID\": 959,\n    \"grp\": \"t\",\n    \"id\": \"tv\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_Engine_Size8_Class4\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Normal-space propulsion system. \",\n    \"properties\": {\n      \"Integrity\": 180,\n      \"Mass\": 256,\n      \"Maximum Mass\": 4620,\n      \"Maximum Multipler\": 1.13,\n      \"Minimum Mass\": 1540,\n      \"Minimum Multiplier\": 0.93,\n      \"Optimal Mass\": 3080,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 9.9\n    }\n  },\n  {\n    \"class\": 8,\n    \"cost\": 162586490,\n    \"edID\": 128064102,\n    \"eddbID\": 960,\n    \"grp\": \"t\",\n    \"id\": \"tu\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_Engine_Size8_Class5\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Normal-space propulsion system. \",\n    \"properties\": {\n      \"Integrity\": 165,\n      \"Mass\": 160,\n      \"Maximum Mass\": 5040,\n      \"Maximum Multipler\": 1.16,\n      \"Minimum Mass\": 1680,\n      \"Minimum Multiplier\": 0.96,\n      \"Optimal Mass\": 3360,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 10.8\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 633200,\n    \"edID\": 128064093,\n    \"eddbID\": 951,\n    \"grp\": \"t\",\n    \"id\": \"tt\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_Engine_Size7_Class1\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Normal-space propulsion system. \",\n    \"properties\": {\n      \"Integrity\": 118,\n      \"Mass\": 80,\n      \"Maximum Mass\": 2160,\n      \"Maximum Multipler\": 1.03,\n      \"Minimum Mass\": 720,\n      \"Minimum Multiplier\": 0.83,\n      \"Optimal Mass\": 1440,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 6.08\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 1899600,\n    \"edID\": 128064094,\n    \"eddbID\": 952,\n    \"grp\": \"t\",\n    \"id\": \"ts\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_Engine_Size7_Class2\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Normal-space propulsion system. \",\n    \"properties\": {\n      \"Integrity\": 105,\n      \"Mass\": 32,\n      \"Maximum Mass\": 2430,\n      \"Maximum Multipler\": 1.06,\n      \"Minimum Mass\": 810,\n      \"Minimum Multiplier\": 0.86,\n      \"Optimal Mass\": 1620,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 6.84\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 5698790,\n    \"edID\": 128064095,\n    \"eddbID\": 953,\n    \"grp\": \"t\",\n    \"id\": \"tr\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_Engine_Size7_Class3\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Normal-space propulsion system. \",\n    \"properties\": {\n      \"Integrity\": 131,\n      \"Mass\": 80,\n      \"Maximum Mass\": 2700,\n      \"Maximum Multipler\": 1.1,\n      \"Minimum Mass\": 900,\n      \"Minimum Multiplier\": 0.9,\n      \"Optimal Mass\": 1800,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 7.6\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 17096370,\n    \"edID\": 128064096,\n    \"eddbID\": 954,\n    \"grp\": \"t\",\n    \"id\": \"tq\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_Engine_Size7_Class4\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Normal-space propulsion system. \",\n    \"properties\": {\n      \"Integrity\": 157,\n      \"Mass\": 128,\n      \"Maximum Mass\": 2970,\n      \"Maximum Multipler\": 1.13,\n      \"Minimum Mass\": 990,\n      \"Minimum Multiplier\": 0.93,\n      \"Optimal Mass\": 1980,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 8.36\n    }\n  },\n  {\n    \"class\": 7,\n    \"cost\": 51289110,\n    \"edID\": 128064097,\n    \"eddbID\": 955,\n    \"grp\": \"t\",\n    \"id\": \"tp\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_Engine_Size7_Class5\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Normal-space propulsion system. \",\n    \"properties\": {\n      \"Integrity\": 144,\n      \"Mass\": 80,\n      \"Maximum Mass\": 3240,\n      \"Maximum Multipler\": 1.16,\n      \"Minimum Mass\": 1080,\n      \"Minimum Multiplier\": 0.96,\n      \"Optimal Mass\": 2160,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 9.12\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 199750,\n    \"edID\": 128064088,\n    \"eddbID\": 946,\n    \"grp\": \"t\",\n    \"id\": \"to\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_Engine_Size6_Class1\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Normal-space propulsion system. \",\n    \"properties\": {\n      \"Integrity\": 102,\n      \"Mass\": 40,\n      \"Maximum Mass\": 1440,\n      \"Maximum Multipler\": 1.03,\n      \"Minimum Mass\": 480,\n      \"Minimum Multiplier\": 0.83,\n      \"Optimal Mass\": 960,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 5.04\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 599240,\n    \"edID\": 128064089,\n    \"eddbID\": 947,\n    \"grp\": \"t\",\n    \"id\": \"tn\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_Engine_Size6_Class2\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Normal-space propulsion system. \",\n    \"properties\": {\n      \"Integrity\": 90,\n      \"Mass\": 16,\n      \"Maximum Mass\": 1620,\n      \"Maximum Multipler\": 1.06,\n      \"Minimum Mass\": 540,\n      \"Minimum Multiplier\": 0.86,\n      \"Optimal Mass\": 1080,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 5.67\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 1797730,\n    \"edID\": 128064090,\n    \"eddbID\": 948,\n    \"grp\": \"t\",\n    \"id\": \"tm\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_Engine_Size6_Class3\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Normal-space propulsion system. \",\n    \"properties\": {\n      \"Integrity\": 113,\n      \"Mass\": 40,\n      \"Maximum Mass\": 1800,\n      \"Maximum Multipler\": 1.1,\n      \"Minimum Mass\": 600,\n      \"Minimum Multiplier\": 0.9,\n      \"Optimal Mass\": 1200,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 6.3\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 5393180,\n    \"edID\": 128064091,\n    \"eddbID\": 949,\n    \"grp\": \"t\",\n    \"id\": \"tl\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_Engine_Size6_Class4\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Normal-space propulsion system. \",\n    \"properties\": {\n      \"Integrity\": 136,\n      \"Mass\": 64,\n      \"Maximum Mass\": 1980,\n      \"Maximum Multipler\": 1.13,\n      \"Minimum Mass\": 660,\n      \"Minimum Multiplier\": 0.93,\n      \"Optimal Mass\": 1320,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 6.93\n    }\n  },\n  {\n    \"class\": 6,\n    \"cost\": 16179530,\n    \"edID\": 128064092,\n    \"eddbID\": 950,\n    \"grp\": \"t\",\n    \"id\": \"tk\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_Engine_Size6_Class5\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Normal-space propulsion system. \",\n    \"properties\": {\n      \"Integrity\": 124,\n      \"Mass\": 40,\n      \"Maximum Mass\": 2160,\n      \"Maximum Multipler\": 1.16,\n      \"Minimum Mass\": 720,\n      \"Minimum Multiplier\": 0.96,\n      \"Optimal Mass\": 1440,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 7.56\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 63010,\n    \"edID\": 128064083,\n    \"eddbID\": 941,\n    \"grp\": \"t\",\n    \"id\": \"tj\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_Engine_Size5_Class1\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Normal-space propulsion system. \",\n    \"properties\": {\n      \"Integrity\": 86,\n      \"Mass\": 20,\n      \"Maximum Mass\": 840,\n      \"Maximum Multipler\": 1.03,\n      \"Minimum Mass\": 280,\n      \"Minimum Multiplier\": 0.83,\n      \"Optimal Mass\": 560,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 4.08\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 189040,\n    \"edID\": 128064084,\n    \"eddbID\": 942,\n    \"grp\": \"t\",\n    \"id\": \"ti\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_Engine_Size5_Class2\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Normal-space propulsion system. \",\n    \"properties\": {\n      \"Integrity\": 77,\n      \"Mass\": 8,\n      \"Maximum Mass\": 945,\n      \"Maximum Multipler\": 1.06,\n      \"Minimum Mass\": 315,\n      \"Minimum Multiplier\": 0.86,\n      \"Optimal Mass\": 630,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 4.59\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 567110,\n    \"edID\": 128064085,\n    \"eddbID\": 943,\n    \"grp\": \"t\",\n    \"id\": \"th\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_Engine_Size5_Class3\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Normal-space propulsion system. \",\n    \"properties\": {\n      \"Integrity\": 96,\n      \"Mass\": 20,\n      \"Maximum Mass\": 1050,\n      \"Maximum Multipler\": 1.1,\n      \"Minimum Mass\": 350,\n      \"Minimum Multiplier\": 0.9,\n      \"Optimal Mass\": 700,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 5.1\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 1701320,\n    \"edID\": 128064086,\n    \"eddbID\": 944,\n    \"grp\": \"t\",\n    \"id\": \"tg\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_Engine_Size5_Class4\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Normal-space propulsion system. \",\n    \"properties\": {\n      \"Integrity\": 115,\n      \"Mass\": 32,\n      \"Maximum Mass\": 1155,\n      \"Maximum Multipler\": 1.13,\n      \"Minimum Mass\": 385,\n      \"Minimum Multiplier\": 0.93,\n      \"Optimal Mass\": 770,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 5.61\n    }\n  },\n  {\n    \"class\": 5,\n    \"cost\": 5103950,\n    \"edID\": 128064087,\n    \"eddbID\": 945,\n    \"grp\": \"t\",\n    \"id\": \"tf\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_Engine_Size5_Class5\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Normal-space propulsion system. \",\n    \"properties\": {\n      \"Integrity\": 106,\n      \"Mass\": 20,\n      \"Maximum Mass\": 1260,\n      \"Maximum Multipler\": 1.16,\n      \"Minimum Mass\": 420,\n      \"Minimum Multiplier\": 0.96,\n      \"Optimal Mass\": 840,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 6.12\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 19880,\n    \"edID\": 128064078,\n    \"eddbID\": 936,\n    \"grp\": \"t\",\n    \"id\": \"te\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_Engine_Size4_Class1\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Normal-space propulsion system. \",\n    \"properties\": {\n      \"Integrity\": 72,\n      \"Mass\": 10,\n      \"Maximum Mass\": 420,\n      \"Maximum Multipler\": 1.03,\n      \"Minimum Mass\": 140,\n      \"Minimum Multiplier\": 0.83,\n      \"Optimal Mass\": 280,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 3.28\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 59630,\n    \"edID\": 128064079,\n    \"eddbID\": 937,\n    \"grp\": \"t\",\n    \"id\": \"td\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_Engine_Size4_Class2\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Normal-space propulsion system. \",\n    \"properties\": {\n      \"Integrity\": 64,\n      \"Mass\": 4,\n      \"Maximum Mass\": 472.5,\n      \"Maximum Multipler\": 1.06,\n      \"Minimum Mass\": 157.5,\n      \"Minimum Multiplier\": 0.86,\n      \"Optimal Mass\": 315,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 3.69\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 178900,\n    \"edID\": 128064080,\n    \"eddbID\": 938,\n    \"grp\": \"t\",\n    \"id\": \"tc\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_Engine_Size4_Class3\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Normal-space propulsion system. \",\n    \"properties\": {\n      \"Integrity\": 80,\n      \"Mass\": 10,\n      \"Maximum Mass\": 525,\n      \"Maximum Multipler\": 1.1,\n      \"Minimum Mass\": 175,\n      \"Minimum Multiplier\": 0.9,\n      \"Optimal Mass\": 350,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 4.1\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 536690,\n    \"edID\": 128064081,\n    \"eddbID\": 939,\n    \"grp\": \"t\",\n    \"id\": \"tb\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_Engine_Size4_Class4\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Normal-space propulsion system. \",\n    \"properties\": {\n      \"Integrity\": 96,\n      \"Mass\": 16,\n      \"Maximum Mass\": 577.5,\n      \"Maximum Multipler\": 1.13,\n      \"Minimum Mass\": 192.5,\n      \"Minimum Multiplier\": 0.93,\n      \"Optimal Mass\": 385,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 4.51\n    }\n  },\n  {\n    \"class\": 4,\n    \"cost\": 1610080,\n    \"edID\": 128064082,\n    \"eddbID\": 940,\n    \"grp\": \"t\",\n    \"id\": \"ta\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_Engine_Size4_Class5\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Normal-space propulsion system. \",\n    \"properties\": {\n      \"Integrity\": 88,\n      \"Mass\": 10,\n      \"Maximum Mass\": 630,\n      \"Maximum Multipler\": 1.16,\n      \"Minimum Mass\": 210,\n      \"Minimum Multiplier\": 0.96,\n      \"Optimal Mass\": 420,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 4.92\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 6270,\n    \"edID\": 128064073,\n    \"eddbID\": 931,\n    \"grp\": \"t\",\n    \"id\": \"t9\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_Engine_Size3_Class1\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Normal-space propulsion system. \",\n    \"properties\": {\n      \"Integrity\": 58,\n      \"Mass\": 5,\n      \"Maximum Mass\": 120,\n      \"Maximum Multipler\": 1.03,\n      \"Minimum Mass\": 40,\n      \"Minimum Multiplier\": 0.83,\n      \"Optimal Mass\": 80,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 2.48\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 18810,\n    \"edID\": 128064074,\n    \"eddbID\": 932,\n    \"grp\": \"t\",\n    \"id\": \"t8\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_Engine_Size3_Class2\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Normal-space propulsion system. \",\n    \"properties\": {\n      \"Integrity\": 51,\n      \"Mass\": 2,\n      \"Maximum Mass\": 135,\n      \"Maximum Multipler\": 1.06,\n      \"Minimum Mass\": 45,\n      \"Minimum Multiplier\": 0.86,\n      \"Optimal Mass\": 90,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 2.79\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 56440,\n    \"edID\": 128064075,\n    \"eddbID\": 933,\n    \"grp\": \"t\",\n    \"id\": \"t7\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_Engine_Size3_Class3\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Normal-space propulsion system. \",\n    \"properties\": {\n      \"Integrity\": 64,\n      \"Mass\": 5,\n      \"Maximum Mass\": 150,\n      \"Maximum Multipler\": 1.1,\n      \"Minimum Mass\": 50,\n      \"Minimum Multiplier\": 0.9,\n      \"Optimal Mass\": 100,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 3.1\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 169300,\n    \"edID\": 128064076,\n    \"eddbID\": 934,\n    \"grp\": \"t\",\n    \"id\": \"t6\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_Engine_Size3_Class4\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Normal-space propulsion system. \",\n    \"properties\": {\n      \"Integrity\": 77,\n      \"Mass\": 8,\n      \"Maximum Mass\": 165,\n      \"Maximum Multipler\": 1.13,\n      \"Minimum Mass\": 55,\n      \"Minimum Multiplier\": 0.93,\n      \"Optimal Mass\": 110,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 3.41\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 507910,\n    \"edID\": 128064077,\n    \"eddbID\": 935,\n    \"grp\": \"t\",\n    \"id\": \"t5\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_Engine_Size3_Class5\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Normal-space propulsion system. \",\n    \"properties\": {\n      \"Integrity\": 72,\n      \"Mass\": 5,\n      \"Maximum Mass\": 180,\n      \"Maximum Multipler\": 1.16,\n      \"Minimum Mass\": 60,\n      \"Minimum Multiplier\": 0.96,\n      \"Optimal Mass\": 120,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 3.72\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 1980,\n    \"edID\": 128064068,\n    \"eddbID\": 926,\n    \"grp\": \"t\",\n    \"id\": \"t4\",\n    \"rating\": \"E\",\n    \"symbol\": \"Int_Engine_Size2_Class1\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Normal-space propulsion system. \",\n    \"properties\": {\n      \"Integrity\": 46,\n      \"Mass\": 2.5,\n      \"Maximum Mass\": 72,\n      \"Maximum Multipler\": 1.03,\n      \"Minimum Mass\": 24,\n      \"Minimum Multiplier\": 0.83,\n      \"Optimal Mass\": 48,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 2\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 5930,\n    \"edID\": 128064069,\n    \"eddbID\": 927,\n    \"grp\": \"t\",\n    \"id\": \"t3\",\n    \"rating\": \"D\",\n    \"symbol\": \"Int_Engine_Size2_Class2\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Normal-space propulsion system. \",\n    \"properties\": {\n      \"Integrity\": 41,\n      \"Mass\": 1,\n      \"Maximum Mass\": 81,\n      \"Maximum Multipler\": 1.06,\n      \"Minimum Mass\": 27,\n      \"Minimum Multiplier\": 0.86,\n      \"Optimal Mass\": 54,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 2.25\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 17800,\n    \"edID\": 128064070,\n    \"eddbID\": 928,\n    \"grp\": \"t\",\n    \"id\": \"t2\",\n    \"rating\": \"C\",\n    \"symbol\": \"Int_Engine_Size2_Class3\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Normal-space propulsion system. \",\n    \"properties\": {\n      \"Integrity\": 51,\n      \"Mass\": 2.5,\n      \"Maximum Mass\": 90,\n      \"Maximum Multipler\": 1.1,\n      \"Minimum Mass\": 30,\n      \"Minimum Multiplier\": 0.9,\n      \"Optimal Mass\": 60,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 2.5\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 53410,\n    \"edID\": 128064071,\n    \"eddbID\": 929,\n    \"grp\": \"t\",\n    \"id\": \"t1\",\n    \"rating\": \"B\",\n    \"symbol\": \"Int_Engine_Size2_Class4\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Normal-space propulsion system. \",\n    \"properties\": {\n      \"Integrity\": 61,\n      \"Mass\": 4,\n      \"Maximum Mass\": 99,\n      \"Maximum Multipler\": 1.13,\n      \"Minimum Mass\": 33,\n      \"Minimum Multiplier\": 0.93,\n      \"Optimal Mass\": 66,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 2.75\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 160220,\n    \"edID\": 128064072,\n    \"eddbID\": 930,\n    \"grp\": \"t\",\n    \"id\": \"t0\",\n    \"rating\": \"A\",\n    \"symbol\": \"Int_Engine_Size2_Class5\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Normal-space propulsion system. \",\n    \"properties\": {\n      \"Integrity\": 56,\n      \"Mass\": 2.5,\n      \"Maximum Mass\": 108,\n      \"Maximum Multipler\": 1.16,\n      \"Minimum Mass\": 36,\n      \"Minimum Multiplier\": 0.96,\n      \"Optimal Mass\": 72,\n      \"Optimal Multiplier\": 1,\n      \"Power Draw\": 3\n    }\n  },\n  {\n    \"class\": 3,\n    \"cost\": 5103950,\n    \"edID\": 128682013,\n    \"eddbID\": 1548,\n    \"grp\": \"t\",\n    \"id\": \"tz\",\n    \"name\": \"Enhanced Performance\",\n    \"optmulspeed\": 1.25,\n    \"rating\": \"A\",\n    \"symbol\": \"Int_Engine_Size3_Class5_Fast\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Enhanced performance normal-space propulsion system.\",\n    \"properties\": {\n      \"Integrity\": 55,\n      \"Mass\": 5,\n      \"Maximum Mass\": 200,\n      \"Maximum Multipler\": 1.367,\n      \"Maximum Acceleration Multiplier\": 1.2,\n      \"Maximum Rotation Multiplier\": 1.3,\n      \"Maximum Speed Multiplier\": 1.6,\n      \"Minimum Mass\": 70,\n      \"Minimum Multiplier\": 0.9,\n      \"Minimum Accelleration Multiplier\": 0.9,\n      \"Minimum Rotation Multiplier\": 0.9,\n      \"Minimum Speed Multiplier\": 0.9,\n      \"Optimal Mass\": 90,\n      \"Optimal Multiplier\": 1.15,\n      \"Optimal Accelleration Multiplier\": 1.1,\n      \"Optimal Rotation Multiplier\": 1.1,\n      \"Power Draw\": 5\n    }\n  },\n  {\n    \"class\": 2,\n    \"cost\": 1610080,\n    \"edID\": 128682014,\n    \"eddbID\": 1547,\n    \"grp\": \"t\",\n    \"id\": \"u0\",\n    \"name\": \"Enhanced Performance\",\n    \"optmulspeed\": 1.25,\n    \"rating\": \"A\",\n    \"symbol\": \"Int_Engine_Size2_Class5_Fast\",\n    \"ukName\": \"Thrusters\",\n    \"description\": \"Enhanced performance normal-space propulsion system.\",\n    \"properties\": {\n      \"Integrity\": 40,\n      \"Mass\": 2.5,\n      \"Maximum Mass\": 120,\n      \"Maximum Multipler\": 1.367,\n      \"Maximum Acceleration Multiplier\": 1.2,\n      \"Maximum Rotation Multiplier\": 1.3,\n      \"Maximum Speed Multiplier\": 1.6,\n      \"Minimum Mass\": 50,\n      \"Minimum Multiplier\": 0.9,\n      \"Minimum Accelleration Multiplier\": 0.9,\n      \"Minimum Rotation Multiplier\": 0.9,\n      \"Minimum Speed Multiplier\": 0.9,\n      \"Optimal Mass\": 60,\n      \"Optimal Multiplier\": 1.15,\n      \"Optimal Accelleration Multiplier\": 1.1,\n      \"Optimal Rotation Multiplier\": 1.1,\n      \"Power Draw\": 4\n    }\n  }\n]"
  },
  {
    "path": "src/service/data/edcd/fdevids/commodity.json",
    "content": "[\n  {\n    \"id\": \"128049152\",\n    \"symbol\": \"Platinum\",\n    \"category\": \"Metals\",\n    \"name\": \"Platinum\"\n  },\n  {\n    \"id\": \"128049153\",\n    \"symbol\": \"Palladium\",\n    \"category\": \"Metals\",\n    \"name\": \"Palladium\"\n  },\n  {\n    \"id\": \"128049154\",\n    \"symbol\": \"Gold\",\n    \"category\": \"Metals\",\n    \"name\": \"Gold\"\n  },\n  {\n    \"id\": \"128049155\",\n    \"symbol\": \"Silver\",\n    \"category\": \"Metals\",\n    \"name\": \"Silver\"\n  },\n  {\n    \"id\": \"128049156\",\n    \"symbol\": \"Bertrandite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Bertrandite\"\n  },\n  {\n    \"id\": \"128049157\",\n    \"symbol\": \"Indite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Indite\"\n  },\n  {\n    \"id\": \"128049158\",\n    \"symbol\": \"Gallite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Gallite\"\n  },\n  {\n    \"id\": \"128049159\",\n    \"symbol\": \"Coltan\",\n    \"category\": \"Minerals\",\n    \"name\": \"Coltan\"\n  },\n  {\n    \"id\": \"128049160\",\n    \"symbol\": \"Uraninite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Uraninite\"\n  },\n  {\n    \"id\": \"128049161\",\n    \"symbol\": \"Lepidolite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Lepidolite\"\n  },\n  {\n    \"id\": \"128049162\",\n    \"symbol\": \"Cobalt\",\n    \"category\": \"Metals\",\n    \"name\": \"Cobalt\"\n  },\n  {\n    \"id\": \"128049163\",\n    \"symbol\": \"Rutile\",\n    \"category\": \"Minerals\",\n    \"name\": \"Rutile\"\n  },\n  {\n    \"id\": \"128049165\",\n    \"symbol\": \"Bauxite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Bauxite\"\n  },\n  {\n    \"id\": \"128049166\",\n    \"symbol\": \"Water\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Water\"\n  },\n  {\n    \"id\": \"128049168\",\n    \"symbol\": \"Beryllium\",\n    \"category\": \"Metals\",\n    \"name\": \"Beryllium\"\n  },\n  {\n    \"id\": \"128049169\",\n    \"symbol\": \"Indium\",\n    \"category\": \"Metals\",\n    \"name\": \"Indium\"\n  },\n  {\n    \"id\": \"128049170\",\n    \"symbol\": \"Gallium\",\n    \"category\": \"Metals\",\n    \"name\": \"Gallium\"\n  },\n  {\n    \"id\": \"128049171\",\n    \"symbol\": \"Tantalum\",\n    \"category\": \"Metals\",\n    \"name\": \"Tantalum\"\n  },\n  {\n    \"id\": \"128049172\",\n    \"symbol\": \"Uranium\",\n    \"category\": \"Metals\",\n    \"name\": \"Uranium\"\n  },\n  {\n    \"id\": \"128049173\",\n    \"symbol\": \"Lithium\",\n    \"category\": \"Metals\",\n    \"name\": \"Lithium\"\n  },\n  {\n    \"id\": \"128049174\",\n    \"symbol\": \"Titanium\",\n    \"category\": \"Metals\",\n    \"name\": \"Titanium\"\n  },\n  {\n    \"id\": \"128049175\",\n    \"symbol\": \"Copper\",\n    \"category\": \"Metals\",\n    \"name\": \"Copper\"\n  },\n  {\n    \"id\": \"128049176\",\n    \"symbol\": \"Aluminium\",\n    \"category\": \"Metals\",\n    \"name\": \"Aluminium\"\n  },\n  {\n    \"id\": \"128049177\",\n    \"symbol\": \"Algae\",\n    \"category\": \"Foods\",\n    \"name\": \"Algae\"\n  },\n  {\n    \"id\": \"128049178\",\n    \"symbol\": \"FruitAndVegetables\",\n    \"category\": \"Foods\",\n    \"name\": \"Fruit and Vegetables\"\n  },\n  {\n    \"id\": \"128049180\",\n    \"symbol\": \"Grain\",\n    \"category\": \"Foods\",\n    \"name\": \"Grain\"\n  },\n  {\n    \"id\": \"128049182\",\n    \"symbol\": \"Animalmeat\",\n    \"category\": \"Foods\",\n    \"name\": \"Animal Meat\"\n  },\n  {\n    \"id\": \"128049183\",\n    \"symbol\": \"Fish\",\n    \"category\": \"Foods\",\n    \"name\": \"Fish\"\n  },\n  {\n    \"id\": \"128049184\",\n    \"symbol\": \"FoodCartridges\",\n    \"category\": \"Foods\",\n    \"name\": \"Food Cartridges\"\n  },\n  {\n    \"id\": \"128049185\",\n    \"symbol\": \"SyntheticMeat\",\n    \"category\": \"Foods\",\n    \"name\": \"Synthetic Meat\"\n  },\n  {\n    \"id\": \"128049188\",\n    \"symbol\": \"Tea\",\n    \"category\": \"Foods\",\n    \"name\": \"Tea\"\n  },\n  {\n    \"id\": \"128049189\",\n    \"symbol\": \"Coffee\",\n    \"category\": \"Foods\",\n    \"name\": \"Coffee\"\n  },\n  {\n    \"id\": \"128049190\",\n    \"symbol\": \"Leather\",\n    \"category\": \"Textiles\",\n    \"name\": \"Leather\"\n  },\n  {\n    \"id\": \"128049191\",\n    \"symbol\": \"NaturalFabrics\",\n    \"category\": \"Textiles\",\n    \"name\": \"Natural Fabrics\"\n  },\n  {\n    \"id\": \"128049193\",\n    \"symbol\": \"SyntheticFabrics\",\n    \"category\": \"Textiles\",\n    \"name\": \"Synthetic Fabrics\"\n  },\n  {\n    \"id\": \"128049197\",\n    \"symbol\": \"Polymers\",\n    \"category\": \"Industrial Materials\",\n    \"name\": \"Polymers\"\n  },\n  {\n    \"id\": \"128049199\",\n    \"symbol\": \"Semiconductors\",\n    \"category\": \"Industrial Materials\",\n    \"name\": \"Semiconductors\"\n  },\n  {\n    \"id\": \"128049200\",\n    \"symbol\": \"Superconductors\",\n    \"category\": \"Industrial Materials\",\n    \"name\": \"Superconductors\"\n  },\n  {\n    \"id\": \"128049202\",\n    \"symbol\": \"HydrogenFuel\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Hydrogen Fuel\"\n  },\n  {\n    \"id\": \"128049203\",\n    \"symbol\": \"MineralOil\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Mineral Oil\"\n  },\n  {\n    \"id\": \"128049204\",\n    \"symbol\": \"Explosives\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Explosives\"\n  },\n  {\n    \"id\": \"128049205\",\n    \"symbol\": \"Pesticides\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Pesticides\"\n  },\n  {\n    \"id\": \"128049208\",\n    \"symbol\": \"AgriculturalMedicines\",\n    \"category\": \"Medicines\",\n    \"name\": \"Agri-Medicines\"\n  },\n  {\n    \"id\": \"128049209\",\n    \"symbol\": \"PerformanceEnhancers\",\n    \"category\": \"Medicines\",\n    \"name\": \"Performance Enhancers\"\n  },\n  {\n    \"id\": \"128049210\",\n    \"symbol\": \"BasicMedicines\",\n    \"category\": \"Medicines\",\n    \"name\": \"Basic Medicines\"\n  },\n  {\n    \"id\": \"128049212\",\n    \"symbol\": \"BasicNarcotics\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Narcotics\"\n  },\n  {\n    \"id\": \"128049213\",\n    \"symbol\": \"Tobacco\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Tobacco\"\n  },\n  {\n    \"id\": \"128049214\",\n    \"symbol\": \"Beer\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Beer\"\n  },\n  {\n    \"id\": \"128049215\",\n    \"symbol\": \"Wine\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Wine\"\n  },\n  {\n    \"id\": \"128049216\",\n    \"symbol\": \"Liquor\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Liquor\"\n  },\n  {\n    \"id\": \"128049217\",\n    \"symbol\": \"PowerGenerators\",\n    \"category\": \"Machinery\",\n    \"name\": \"Power Generators\"\n  },\n  {\n    \"id\": \"128049218\",\n    \"symbol\": \"WaterPurifiers\",\n    \"category\": \"Machinery\",\n    \"name\": \"Water Purifiers\"\n  },\n  {\n    \"id\": \"128049220\",\n    \"symbol\": \"HeliostaticFurnaces\",\n    \"category\": \"Machinery\",\n    \"name\": \"Microbial Furnaces\"\n  },\n  {\n    \"id\": \"128049221\",\n    \"symbol\": \"MineralExtractors\",\n    \"category\": \"Machinery\",\n    \"name\": \"Mineral Extractors\"\n  },\n  {\n    \"id\": \"128049222\",\n    \"symbol\": \"CropHarvesters\",\n    \"category\": \"Machinery\",\n    \"name\": \"Crop Harvesters\"\n  },\n  {\n    \"id\": \"128049223\",\n    \"symbol\": \"MarineSupplies\",\n    \"category\": \"Machinery\",\n    \"name\": \"Marine Equipment\"\n  },\n  {\n    \"id\": \"128049225\",\n    \"symbol\": \"ComputerComponents\",\n    \"category\": \"Technology\",\n    \"name\": \"Computer Components\"\n  },\n  {\n    \"id\": \"128049226\",\n    \"symbol\": \"HazardousEnvironmentSuits\",\n    \"category\": \"Technology\",\n    \"name\": \"H.E. Suits\"\n  },\n  {\n    \"id\": \"128049227\",\n    \"symbol\": \"Robotics\",\n    \"category\": \"Technology\",\n    \"name\": \"Robotics\"\n  },\n  {\n    \"id\": \"128049228\",\n    \"symbol\": \"AutoFabricators\",\n    \"category\": \"Technology\",\n    \"name\": \"Auto-Fabricators\"\n  },\n  {\n    \"id\": \"128049229\",\n    \"symbol\": \"AnimalMonitors\",\n    \"category\": \"Technology\",\n    \"name\": \"Animal Monitors\"\n  },\n  {\n    \"id\": \"128049230\",\n    \"symbol\": \"AquaponicSystems\",\n    \"category\": \"Technology\",\n    \"name\": \"Aquaponic Systems\"\n  },\n  {\n    \"id\": \"128049231\",\n    \"symbol\": \"AdvancedCatalysers\",\n    \"category\": \"Technology\",\n    \"name\": \"Advanced Catalysers\"\n  },\n  {\n    \"id\": \"128049232\",\n    \"symbol\": \"TerrainEnrichmentSystems\",\n    \"category\": \"Technology\",\n    \"name\": \"Land Enrichment Systems\"\n  },\n  {\n    \"id\": \"128049233\",\n    \"symbol\": \"PersonalWeapons\",\n    \"category\": \"Weapons\",\n    \"name\": \"Personal Weapons\"\n  },\n  {\n    \"id\": \"128049234\",\n    \"symbol\": \"BattleWeapons\",\n    \"category\": \"Weapons\",\n    \"name\": \"Battle Weapons\"\n  },\n  {\n    \"id\": \"128049235\",\n    \"symbol\": \"ReactiveArmour\",\n    \"category\": \"Weapons\",\n    \"name\": \"Reactive Armour\"\n  },\n  {\n    \"id\": \"128049236\",\n    \"symbol\": \"NonLethalWeapons\",\n    \"category\": \"Weapons\",\n    \"name\": \"Non-Lethal Weapons\"\n  },\n  {\n    \"id\": \"128049238\",\n    \"symbol\": \"DomesticAppliances\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Domestic Appliances\"\n  },\n  {\n    \"id\": \"128049240\",\n    \"symbol\": \"ConsumerTechnology\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Consumer Technology\"\n  },\n  {\n    \"id\": \"128049241\",\n    \"symbol\": \"Clothing\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Clothing\"\n  },\n  {\n    \"id\": \"128049243\",\n    \"symbol\": \"Slaves\",\n    \"category\": \"Slavery\",\n    \"name\": \"Slaves\"\n  },\n  {\n    \"id\": \"128049244\",\n    \"symbol\": \"Biowaste\",\n    \"category\": \"Waste\",\n    \"name\": \"Biowaste\"\n  },\n  {\n    \"id\": \"128049245\",\n    \"symbol\": \"ToxicWaste\",\n    \"category\": \"Waste\",\n    \"name\": \"Toxic Waste\"\n  },\n  {\n    \"id\": \"128049246\",\n    \"symbol\": \"ChemicalWaste\",\n    \"category\": \"Waste\",\n    \"name\": \"Chemical Waste\"\n  },\n  {\n    \"id\": \"128049248\",\n    \"symbol\": \"Scrap\",\n    \"category\": \"Waste\",\n    \"name\": \"Scrap\"\n  },\n  {\n    \"id\": \"128049669\",\n    \"symbol\": \"ProgenitorCells\",\n    \"category\": \"Medicines\",\n    \"name\": \"Progenitor Cells\"\n  },\n  {\n    \"id\": \"128049670\",\n    \"symbol\": \"CombatStabilisers\",\n    \"category\": \"Medicines\",\n    \"name\": \"Combat Stabilisers\"\n  },\n  {\n    \"id\": \"128049671\",\n    \"symbol\": \"ResonatingSeparators\",\n    \"category\": \"Technology\",\n    \"name\": \"Resonating Separators\"\n  },\n  {\n    \"id\": \"128049672\",\n    \"symbol\": \"BioReducingLichen\",\n    \"category\": \"Technology\",\n    \"name\": \"Bioreducing Lichen\"\n  },\n  {\n    \"id\": \"128064028\",\n    \"symbol\": \"AtmosphericExtractors\",\n    \"category\": \"Machinery\",\n    \"name\": \"Atmospheric Processors\"\n  },\n  {\n    \"id\": \"128066403\",\n    \"symbol\": \"Drones\",\n    \"category\": \"NonMarketable\",\n    \"name\": \"Limpets\"\n  },\n  {\n    \"id\": \"128666752\",\n    \"symbol\": \"USSCargoBlackBox\",\n    \"category\": \"Salvage\",\n    \"name\": \"Black Box\"\n  },\n  {\n    \"id\": \"128666754\",\n    \"symbol\": \"USSCargoTradeData\",\n    \"category\": \"Salvage\",\n    \"name\": \"Trade Data\"\n  },\n  {\n    \"id\": \"128666755\",\n    \"symbol\": \"USSCargoMilitaryPlans\",\n    \"category\": \"Salvage\",\n    \"name\": \"Military Plans\"\n  },\n  {\n    \"id\": \"128666756\",\n    \"symbol\": \"USSCargoAncientArtefact\",\n    \"category\": \"Salvage\",\n    \"name\": \"Ancient Artefact\"\n  },\n  {\n    \"id\": \"128666757\",\n    \"symbol\": \"USSCargoRareArtwork\",\n    \"category\": \"Salvage\",\n    \"name\": \"Rare Artwork\"\n  },\n  {\n    \"id\": \"128666758\",\n    \"symbol\": \"USSCargoExperimentalChemicals\",\n    \"category\": \"Salvage\",\n    \"name\": \"Experimental Chemicals\"\n  },\n  {\n    \"id\": \"128666759\",\n    \"symbol\": \"USSCargoRebelTransmissions\",\n    \"category\": \"Salvage\",\n    \"name\": \"Rebel Transmissions\"\n  },\n  {\n    \"id\": \"128666760\",\n    \"symbol\": \"USSCargoPrototypeTech\",\n    \"category\": \"Salvage\",\n    \"name\": \"Prototype Tech\"\n  },\n  {\n    \"id\": \"128666761\",\n    \"symbol\": \"USSCargoTechnicalBlueprints\",\n    \"category\": \"Salvage\",\n    \"name\": \"Technical Blueprints\"\n  },\n  {\n    \"id\": \"128667728\",\n    \"symbol\": \"ImperialSlaves\",\n    \"category\": \"Slavery\",\n    \"name\": \"Imperial Slaves\"\n  },\n  {\n    \"id\": \"128668547\",\n    \"symbol\": \"UnknownArtifact\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Sensor\"\n  },\n  {\n    \"id\": \"128668548\",\n    \"symbol\": \"AiRelics\",\n    \"category\": \"Salvage\",\n    \"name\": \"AI Relics\"\n  },\n  {\n    \"id\": \"128668549\",\n    \"symbol\": \"Hafnium178\",\n    \"category\": \"Metals\",\n    \"name\": \"Hafnium 178\"\n  },\n  {\n    \"id\": \"128668550\",\n    \"symbol\": \"Painite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Painite\"\n  },\n  {\n    \"id\": \"128668551\",\n    \"symbol\": \"Antiquities\",\n    \"category\": \"Salvage\",\n    \"name\": \"Antiquities\"\n  },\n  {\n    \"id\": \"128668552\",\n    \"symbol\": \"MilitaryIntelligence\",\n    \"category\": \"Salvage\",\n    \"name\": \"Military Intelligence\"\n  },\n  {\n    \"id\": \"128671118\",\n    \"symbol\": \"Osmium\",\n    \"category\": \"Metals\",\n    \"name\": \"Osmium\"\n  },\n  {\n    \"id\": \"128671443\",\n    \"symbol\": \"SAP8CoreContainer\",\n    \"category\": \"Salvage\",\n    \"name\": \"SAP 8 Core Container\"\n  },\n  {\n    \"id\": \"128671444\",\n    \"symbol\": \"TrinketsOfFortune\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Trinkets of Hidden Fortune\"\n  },\n  {\n    \"id\": \"128672123\",\n    \"symbol\": \"WreckageComponents\",\n    \"category\": \"Salvage\",\n    \"name\": \"Wreckage Components\"\n  },\n  {\n    \"id\": \"128672124\",\n    \"symbol\": \"EncriptedDataStorage\",\n    \"category\": \"Salvage\",\n    \"name\": \"Encrypted Data Storage\"\n  },\n  {\n    \"id\": \"128672125\",\n    \"symbol\": \"OccupiedCryoPod\",\n    \"category\": \"Salvage\",\n    \"name\": \"Occupied Escape Pod\"\n  },\n  {\n    \"id\": \"128672126\",\n    \"symbol\": \"PersonalEffects\",\n    \"category\": \"Salvage\",\n    \"name\": \"Personal Effects\"\n  },\n  {\n    \"id\": \"128672127\",\n    \"symbol\": \"ComercialSamples\",\n    \"category\": \"Salvage\",\n    \"name\": \"Commercial Samples\"\n  },\n  {\n    \"id\": \"128672128\",\n    \"symbol\": \"TacticalData\",\n    \"category\": \"Salvage\",\n    \"name\": \"Tactical Data\"\n  },\n  {\n    \"id\": \"128672129\",\n    \"symbol\": \"AssaultPlans\",\n    \"category\": \"Salvage\",\n    \"name\": \"Assault Plans\"\n  },\n  {\n    \"id\": \"128672130\",\n    \"symbol\": \"EncryptedCorrespondence\",\n    \"category\": \"Salvage\",\n    \"name\": \"Encrypted Correspondence\"\n  },\n  {\n    \"id\": \"128672131\",\n    \"symbol\": \"DiplomaticBag\",\n    \"category\": \"Salvage\",\n    \"name\": \"Diplomatic Bag\"\n  },\n  {\n    \"id\": \"128672132\",\n    \"symbol\": \"ScientificResearch\",\n    \"category\": \"Salvage\",\n    \"name\": \"Scientific Research\"\n  },\n  {\n    \"id\": \"128672133\",\n    \"symbol\": \"ScientificSamples\",\n    \"category\": \"Salvage\",\n    \"name\": \"Scientific Samples\"\n  },\n  {\n    \"id\": \"128672134\",\n    \"symbol\": \"PoliticalPrisoner\",\n    \"category\": \"Salvage\",\n    \"name\": \"Political Prisoners\"\n  },\n  {\n    \"id\": \"128672135\",\n    \"symbol\": \"Hostage\",\n    \"category\": \"Salvage\",\n    \"name\": \"Hostages\"\n  },\n  {\n    \"id\": \"128672136\",\n    \"symbol\": \"LargeExplorationDataCash\",\n    \"category\": \"Salvage\",\n    \"name\": \"Large Survey Data Cache\"\n  },\n  {\n    \"id\": \"128672137\",\n    \"symbol\": \"SmallExplorationDataCash\",\n    \"category\": \"Salvage\",\n    \"name\": \"Small Survey Data Cache\"\n  },\n  {\n    \"id\": \"128672159\",\n    \"symbol\": \"AntiqueJewellery\",\n    \"category\": \"Salvage\",\n    \"name\": \"Antique Jewellery\"\n  },\n  {\n    \"id\": \"128672160\",\n    \"symbol\": \"PreciousGems\",\n    \"category\": \"Salvage\",\n    \"name\": \"Precious Gems\"\n  },\n  {\n    \"id\": \"128672161\",\n    \"symbol\": \"EarthRelics\",\n    \"category\": \"Salvage\",\n    \"name\": \"Earth Relics\"\n  },\n  {\n    \"id\": \"128672162\",\n    \"symbol\": \"GeneBank\",\n    \"category\": \"Salvage\",\n    \"name\": \"Gene Bank\"\n  },\n  {\n    \"id\": \"128672163\",\n    \"symbol\": \"TimeCapsule\",\n    \"category\": \"Salvage\",\n    \"name\": \"Time Capsule\"\n  },\n  {\n    \"id\": \"128672294\",\n    \"symbol\": \"Cryolite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Cryolite\"\n  },\n  {\n    \"id\": \"128672295\",\n    \"symbol\": \"Goslarite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Goslarite\"\n  },\n  {\n    \"id\": \"128672296\",\n    \"symbol\": \"Moissanite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Moissanite\"\n  },\n  {\n    \"id\": \"128672297\",\n    \"symbol\": \"Pyrophyllite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Pyrophyllite\"\n  },\n  {\n    \"id\": \"128672298\",\n    \"symbol\": \"Lanthanum\",\n    \"category\": \"Metals\",\n    \"name\": \"Lanthanum\"\n  },\n  {\n    \"id\": \"128672299\",\n    \"symbol\": \"Thallium\",\n    \"category\": \"Metals\",\n    \"name\": \"Thallium\"\n  },\n  {\n    \"id\": \"128672300\",\n    \"symbol\": \"Bismuth\",\n    \"category\": \"Metals\",\n    \"name\": \"Bismuth\"\n  },\n  {\n    \"id\": \"128672301\",\n    \"symbol\": \"Thorium\",\n    \"category\": \"Metals\",\n    \"name\": \"Thorium\"\n  },\n  {\n    \"id\": \"128672302\",\n    \"symbol\": \"CeramicComposites\",\n    \"category\": \"Industrial Materials\",\n    \"name\": \"Ceramic Composites\"\n  },\n  {\n    \"id\": \"128672303\",\n    \"symbol\": \"SyntheticReagents\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Synthetic Reagents\"\n  },\n  {\n    \"id\": \"128672304\",\n    \"symbol\": \"NerveAgents\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Nerve Agents\"\n  },\n  {\n    \"id\": \"128672305\",\n    \"symbol\": \"SurfaceStabilisers\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Surface Stabilisers\"\n  },\n  {\n    \"id\": \"128672306\",\n    \"symbol\": \"BootlegLiquor\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Bootleg Liquor\"\n  },\n  {\n    \"id\": \"128672307\",\n    \"symbol\": \"GeologicalEquipment\",\n    \"category\": \"Machinery\",\n    \"name\": \"Geological Equipment\"\n  },\n  {\n    \"id\": \"128672308\",\n    \"symbol\": \"ThermalCoolingUnits\",\n    \"category\": \"Machinery\",\n    \"name\": \"Thermal Cooling Units\"\n  },\n  {\n    \"id\": \"128672309\",\n    \"symbol\": \"BuildingFabricators\",\n    \"category\": \"Machinery\",\n    \"name\": \"Building Fabricators\"\n  },\n  {\n    \"id\": \"128672310\",\n    \"symbol\": \"MuTomImager\",\n    \"category\": \"Technology\",\n    \"name\": \"Muon Imager\"\n  },\n  {\n    \"id\": \"128672311\",\n    \"symbol\": \"StructuralRegulators\",\n    \"category\": \"Technology\",\n    \"name\": \"Structural Regulators\"\n  },\n  {\n    \"id\": \"128672312\",\n    \"symbol\": \"Landmines\",\n    \"category\": \"Weapons\",\n    \"name\": \"Landmines\"\n  },\n  {\n    \"id\": \"128672313\",\n    \"symbol\": \"SkimerComponents\",\n    \"category\": \"Machinery\",\n    \"name\": \"Skimmer Components\"\n  },\n  {\n    \"id\": \"128672314\",\n    \"symbol\": \"EvacuationShelter\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Evacuation Shelter\"\n  },\n  {\n    \"id\": \"128672315\",\n    \"symbol\": \"GeologicalSamples\",\n    \"category\": \"Salvage\",\n    \"name\": \"Geological Samples\"\n  },\n  {\n    \"id\": \"128672701\",\n    \"symbol\": \"MetaAlloys\",\n    \"category\": \"Industrial Materials\",\n    \"name\": \"Meta-Alloys\"\n  },\n  {\n    \"id\": \"128672775\",\n    \"symbol\": \"Taaffeite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Taaffeite\"\n  },\n  {\n    \"id\": \"128672776\",\n    \"symbol\": \"Jadeite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Jadeite\"\n  },\n  {\n    \"id\": \"128672810\",\n    \"symbol\": \"UnstableDataCore\",\n    \"category\": \"Salvage\",\n    \"name\": \"Unstable Data Core\"\n  },\n  {\n    \"id\": \"128672811\",\n    \"symbol\": \"DamagedEscapePod\",\n    \"category\": \"Salvage\",\n    \"name\": \"Damaged Escape Pod\"\n  },\n  {\n    \"id\": \"128673845\",\n    \"symbol\": \"Praseodymium\",\n    \"category\": \"Metals\",\n    \"name\": \"Praseodymium\"\n  },\n  {\n    \"id\": \"128673846\",\n    \"symbol\": \"Bromellite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Bromellite\"\n  },\n  {\n    \"id\": \"128673847\",\n    \"symbol\": \"Samarium\",\n    \"category\": \"Metals\",\n    \"name\": \"Samarium\"\n  },\n  {\n    \"id\": \"128673848\",\n    \"symbol\": \"LowTemperatureDiamond\",\n    \"category\": \"Minerals\",\n    \"name\": \"Low Temperature Diamonds\"\n  },\n  {\n    \"id\": \"128673850\",\n    \"symbol\": \"HydrogenPeroxide\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Hydrogen Peroxide\"\n  },\n  {\n    \"id\": \"128673851\",\n    \"symbol\": \"LiquidOxygen\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Liquid oxygen\"\n  },\n  {\n    \"id\": \"128673852\",\n    \"symbol\": \"MethanolMonohydrateCrystals\",\n    \"category\": \"Minerals\",\n    \"name\": \"Methanol Monohydrate Crystals\"\n  },\n  {\n    \"id\": \"128673853\",\n    \"symbol\": \"LithiumHydroxide\",\n    \"category\": \"Minerals\",\n    \"name\": \"Lithium Hydroxide\"\n  },\n  {\n    \"id\": \"128673854\",\n    \"symbol\": \"MethaneClathrate\",\n    \"category\": \"Minerals\",\n    \"name\": \"Methane Clathrate\"\n  },\n  {\n    \"id\": \"128673855\",\n    \"symbol\": \"InsulatingMembrane\",\n    \"category\": \"Industrial Materials\",\n    \"name\": \"Insulating Membrane\"\n  },\n  {\n    \"id\": \"128673856\",\n    \"symbol\": \"CMMComposite\",\n    \"category\": \"Industrial Materials\",\n    \"name\": \"CMM Composite\"\n  },\n  {\n    \"id\": \"128673857\",\n    \"symbol\": \"CoolingHoses\",\n    \"category\": \"Industrial Materials\",\n    \"name\": \"Micro-weave Cooling Hoses\"\n  },\n  {\n    \"id\": \"128673858\",\n    \"symbol\": \"NeofabricInsulation\",\n    \"category\": \"Industrial Materials\",\n    \"name\": \"Neofabric Insulation\"\n  },\n  {\n    \"id\": \"128673859\",\n    \"symbol\": \"ArticulationMotors\",\n    \"category\": \"Machinery\",\n    \"name\": \"Articulation Motors\"\n  },\n  {\n    \"id\": \"128673860\",\n    \"symbol\": \"HNShockMount\",\n    \"category\": \"Machinery\",\n    \"name\": \"HN Shock Mount\"\n  },\n  {\n    \"id\": \"128673861\",\n    \"symbol\": \"EmergencyPowerCells\",\n    \"category\": \"Machinery\",\n    \"name\": \"Emergency Power Cells\"\n  },\n  {\n    \"id\": \"128673862\",\n    \"symbol\": \"PowerConverter\",\n    \"category\": \"Machinery\",\n    \"name\": \"Power Converter\"\n  },\n  {\n    \"id\": \"128673863\",\n    \"symbol\": \"PowerGridAssembly\",\n    \"category\": \"Machinery\",\n    \"name\": \"Energy Grid Assembly\"\n  },\n  {\n    \"id\": \"128673864\",\n    \"symbol\": \"PowerTransferConduits\",\n    \"category\": \"Machinery\",\n    \"name\": \"Power Transfer Bus\"\n  },\n  {\n    \"id\": \"128673865\",\n    \"symbol\": \"RadiationBaffle\",\n    \"category\": \"Machinery\",\n    \"name\": \"Radiation Baffle\"\n  },\n  {\n    \"id\": \"128673866\",\n    \"symbol\": \"ExhaustManifold\",\n    \"category\": \"Machinery\",\n    \"name\": \"Exhaust Manifold\"\n  },\n  {\n    \"id\": \"128673867\",\n    \"symbol\": \"ReinforcedMountingPlate\",\n    \"category\": \"Machinery\",\n    \"name\": \"Reinforced Mounting Plate\"\n  },\n  {\n    \"id\": \"128673868\",\n    \"symbol\": \"HeatsinkInterlink\",\n    \"category\": \"Machinery\",\n    \"name\": \"Heatsink Interlink\"\n  },\n  {\n    \"id\": \"128673869\",\n    \"symbol\": \"MagneticEmitterCoil\",\n    \"category\": \"Machinery\",\n    \"name\": \"Magnetic Emitter Coil\"\n  },\n  {\n    \"id\": \"128673870\",\n    \"symbol\": \"ModularTerminals\",\n    \"category\": \"Machinery\",\n    \"name\": \"Modular Terminals\"\n  },\n  {\n    \"id\": \"128673871\",\n    \"symbol\": \"Nanobreakers\",\n    \"category\": \"Technology\",\n    \"name\": \"Nanobreakers\"\n  },\n  {\n    \"id\": \"128673872\",\n    \"symbol\": \"TelemetrySuite\",\n    \"category\": \"Technology\",\n    \"name\": \"Telemetry Suite\"\n  },\n  {\n    \"id\": \"128673873\",\n    \"symbol\": \"MicroControllers\",\n    \"category\": \"Technology\",\n    \"name\": \"Micro Controllers\"\n  },\n  {\n    \"id\": \"128673874\",\n    \"symbol\": \"IonDistributor\",\n    \"category\": \"Machinery\",\n    \"name\": \"Ion Distributor\"\n  },\n  {\n    \"id\": \"128673875\",\n    \"symbol\": \"DiagnosticSensor\",\n    \"category\": \"Technology\",\n    \"name\": \"Hardware Diagnostic Sensor\"\n  },\n  {\n    \"id\": \"128673876\",\n    \"symbol\": \"UnknownArtifact2\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Probe\"\n  },\n  {\n    \"id\": \"128682044\",\n    \"symbol\": \"ConductiveFabrics\",\n    \"category\": \"Textiles\",\n    \"name\": \"Conductive Fabrics\"\n  },\n  {\n    \"id\": \"128682045\",\n    \"symbol\": \"MilitaryGradeFabrics\",\n    \"category\": \"Textiles\",\n    \"name\": \"Military Grade Fabrics\"\n  },\n  {\n    \"id\": \"128682046\",\n    \"symbol\": \"AdvancedMedicines\",\n    \"category\": \"Medicines\",\n    \"name\": \"Advanced Medicines\"\n  },\n  {\n    \"id\": \"128682047\",\n    \"symbol\": \"MedicalDiagnosticEquipment\",\n    \"category\": \"Technology\",\n    \"name\": \"Medical Diagnostic Equipment\"\n  },\n  {\n    \"id\": \"128682048\",\n    \"symbol\": \"SurvivalEquipment\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Survival Equipment\"\n  },\n  {\n    \"id\": \"128682049\",\n    \"symbol\": \"DataCore\",\n    \"category\": \"Salvage\",\n    \"name\": \"Data Core\"\n  },\n  {\n    \"id\": \"128682051\",\n    \"symbol\": \"MysteriousIdol\",\n    \"category\": \"Salvage\",\n    \"name\": \"Mysterious Idol\"\n  },\n  {\n    \"id\": \"128682052\",\n    \"symbol\": \"ProhibitedResearchMaterials\",\n    \"category\": \"Salvage\",\n    \"name\": \"Prohibited Research Materials\"\n  },\n  {\n    \"id\": \"128682053\",\n    \"symbol\": \"AntimatterContainmentUnit\",\n    \"category\": \"Salvage\",\n    \"name\": \"Antimatter Containment Unit\"\n  },\n  {\n    \"id\": \"128682054\",\n    \"symbol\": \"SpacePioneerRelics\",\n    \"category\": \"Salvage\",\n    \"name\": \"Space Pioneer Relics\"\n  },\n  {\n    \"id\": \"128682055\",\n    \"symbol\": \"FossilRemnants\",\n    \"category\": \"Salvage\",\n    \"name\": \"Fossil Remnants\"\n  },\n  {\n    \"id\": \"128732183\",\n    \"symbol\": \"AncientRelic\",\n    \"category\": \"Salvage\",\n    \"name\": \"Guardian Relic\"\n  },\n  {\n    \"id\": \"128732184\",\n    \"symbol\": \"AncientOrb\",\n    \"category\": \"Salvage\",\n    \"name\": \"Guardian Orb\"\n  },\n  {\n    \"id\": \"128732185\",\n    \"symbol\": \"AncientCasket\",\n    \"category\": \"Salvage\",\n    \"name\": \"Guardian Casket\"\n  },\n  {\n    \"id\": \"128732186\",\n    \"symbol\": \"AncientTablet\",\n    \"category\": \"Salvage\",\n    \"name\": \"Guardian Tablet\"\n  },\n  {\n    \"id\": \"128732187\",\n    \"symbol\": \"AncientUrn\",\n    \"category\": \"Salvage\",\n    \"name\": \"Guardian Urn\"\n  },\n  {\n    \"id\": \"128732188\",\n    \"symbol\": \"AncientTotem\",\n    \"category\": \"Salvage\",\n    \"name\": \"Guardian Totem\"\n  },\n  {\n    \"id\": \"128737287\",\n    \"symbol\": \"UnknownResin\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Resin\"\n  },\n  {\n    \"id\": \"128737288\",\n    \"symbol\": \"UnknownBiologicalMatter\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Biological Matter\"\n  },\n  {\n    \"id\": \"128737289\",\n    \"symbol\": \"UnknownTechnologySamples\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Technology Samples\"\n  },\n  {\n    \"id\": \"128740752\",\n    \"symbol\": \"UnknownArtifact3\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Link\"\n  },\n  {\n    \"id\": \"128793127\",\n    \"symbol\": \"ThargoidHeart\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Heart\"\n  },\n  {\n    \"id\": \"128793128\",\n    \"symbol\": \"ThargoidTissueSampleType1\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Cyclops Tissue Sample\"\n  },\n  {\n    \"id\": \"128793129\",\n    \"symbol\": \"ThargoidTissueSampleType2\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Basilisk Tissue Sample\"\n  },\n  {\n    \"id\": \"128793130\",\n    \"symbol\": \"ThargoidTissueSampleType3\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Medusa Tissue Sample\"\n  },\n  {\n    \"id\": \"128824468\",\n    \"symbol\": \"ThargoidScoutTissueSample\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Scout Tissue Sample\"\n  },\n  {\n    \"id\": \"128888499\",\n    \"symbol\": \"AncientKey\",\n    \"category\": \"Salvage\",\n    \"name\": \"Ancient Key\"\n  },\n  {\n    \"id\": \"128902652\",\n    \"symbol\": \"ThargoidTissueSampleType4\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Hydra Tissue Sample\"\n  },\n  {\n    \"id\": \"128922517\",\n    \"symbol\": \"M_TissueSample_Fluid\",\n    \"category\": \"Salvage\",\n    \"name\": \"Mollusc Fluid\"\n  },\n  {\n    \"id\": \"128922518\",\n    \"symbol\": \"M_TissueSample_Soft\",\n    \"category\": \"Salvage\",\n    \"name\": \"Mollusc Soft Tissue\"\n  },\n  {\n    \"id\": \"128922519\",\n    \"symbol\": \"M_TissueSample_Nerves\",\n    \"category\": \"Salvage\",\n    \"name\": \"Mollusc Brain Tissue\"\n  },\n  {\n    \"id\": \"128922520\",\n    \"symbol\": \"S_TissueSample_Cells\",\n    \"category\": \"Salvage\",\n    \"name\": \"Pod Core Tissue\"\n  },\n  {\n    \"id\": \"128922521\",\n    \"symbol\": \"S_TissueSample_Surface\",\n    \"category\": \"Salvage\",\n    \"name\": \"Pod Dead Tissue\"\n  },\n  {\n    \"id\": \"128922522\",\n    \"symbol\": \"S_TissueSample_Core\",\n    \"category\": \"Salvage\",\n    \"name\": \"Pod Surface Tissue\"\n  },\n  {\n    \"id\": \"128922523\",\n    \"symbol\": \"P_ParticulateSample\",\n    \"category\": \"Salvage\",\n    \"name\": \"Anomaly Particles\"\n  },\n  {\n    \"id\": \"128922781\",\n    \"symbol\": \"S9_TissueSample_Shell\",\n    \"category\": \"Salvage\",\n    \"name\": \"Pod Tissue\"\n  },\n  {\n    \"id\": \"128922782\",\n    \"symbol\": \"M3_TissueSample_Membrane\",\n    \"category\": \"Salvage\",\n    \"name\": \"Mollusc Membrane\"\n  },\n  {\n    \"id\": \"128922783\",\n    \"symbol\": \"M3_TissueSample_Mycelium\",\n    \"category\": \"Salvage\",\n    \"name\": \"Mollusc Mycelium\"\n  },\n  {\n    \"id\": \"128922784\",\n    \"symbol\": \"M3_TissueSample_Spores\",\n    \"category\": \"Salvage\",\n    \"name\": \"Mollusc Spores\"\n  },\n  {\n    \"id\": \"128922785\",\n    \"symbol\": \"S6_TissueSample_Mesoglea\",\n    \"category\": \"Salvage\",\n    \"name\": \"Pod Mesoglea\"\n  },\n  {\n    \"id\": \"128922786\",\n    \"symbol\": \"S6_TissueSample_Cells\",\n    \"category\": \"Salvage\",\n    \"name\": \"Pod Outer Tissue\"\n  },\n  {\n    \"id\": \"128922787\",\n    \"symbol\": \"S6_TissueSample_Coenosarc\",\n    \"category\": \"Salvage\",\n    \"name\": \"Pod Shell Tissue\"\n  },\n  {\n    \"id\": \"128924325\",\n    \"symbol\": \"Rhodplumsite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Rhodplumsite\"\n  },\n  {\n    \"id\": \"128924326\",\n    \"symbol\": \"Serendibite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Serendibite\"\n  },\n  {\n    \"id\": \"128924327\",\n    \"symbol\": \"Monazite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Monazite\"\n  },\n  {\n    \"id\": \"128924328\",\n    \"symbol\": \"Musgravite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Musgravite\"\n  },\n  {\n    \"id\": \"128924329\",\n    \"symbol\": \"Benitoite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Benitoite\"\n  },\n  {\n    \"id\": \"128924330\",\n    \"symbol\": \"Grandidierite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Grandidierite\"\n  },\n  {\n    \"id\": \"128924331\",\n    \"symbol\": \"Alexandrite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Alexandrite\"\n  },\n  {\n    \"id\": \"128924332\",\n    \"symbol\": \"Opal\",\n    \"category\": \"Minerals\",\n    \"name\": \"Void Opals\"\n  },\n  {\n    \"id\": \"128924333\",\n    \"symbol\": \"RockforthFertiliser\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Rockforth Fertiliser\"\n  },\n  {\n    \"id\": \"128924334\",\n    \"symbol\": \"AgronomicTreatment\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Agronomic Treatment\"\n  },\n  {\n    \"id\": \"128961249\",\n    \"symbol\": \"Tritium\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Tritium\"\n  },\n  {\n    \"id\": \"128983059\",\n    \"symbol\": \"OnionHeadC\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Onionhead Gamma Strain\"\n  },\n  {\n    \"id\": \"129015433\",\n    \"symbol\": \"AncientRelicTG\",\n    \"category\": \"Salvage\",\n    \"name\": \"Unclassified Relic\"\n  },\n  {\n    \"id\": \"129019258\",\n    \"symbol\": \"ThargoidTissueSampleType5\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Orthrus Tissue Sample\"\n  },\n  {\n    \"id\": \"129019259\",\n    \"symbol\": \"ThargoidGeneratorTissueSample\",\n    \"category\": \"Salvage\",\n    \"name\": \"Caustic Tissue Sample\"\n  },\n  {\n    \"id\": \"129022087\",\n    \"symbol\": \"UnocuppiedEscapePod\",\n    \"category\": \"Salvage\",\n    \"name\": \"Unoccupied Escape Pod\"\n  },\n  {\n    \"id\": \"129022395\",\n    \"symbol\": \"ThargoidTissueSampleType6\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Glaive Tissue Sample\"\n  },\n  {\n    \"id\": \"129022396\",\n    \"symbol\": \"ThargoidTissueSampleType7\",\n    \"category\": \"Salvage\",\n    \"name\": \"Thargoid Scythe Tissue Sample\"\n  },\n  {\n    \"id\": \"129022398\",\n    \"symbol\": \"ThargoidTissueSampleType9a\",\n    \"category\": \"Salvage\",\n    \"name\": \"Titan Deep Tissue Sample\"\n  },\n  {\n    \"id\": \"129022399\",\n    \"symbol\": \"ThargoidTissueSampleType9b\",\n    \"category\": \"Salvage\",\n    \"name\": \"Titan Tissue Sample\"\n  },\n  {\n    \"id\": \"129022400\",\n    \"symbol\": \"ThargoidTissueSampleType9c\",\n    \"category\": \"Salvage\",\n    \"name\": \"Titan Partial Tissue Sample\"\n  },\n  {\n    \"id\": \"129022402\",\n    \"symbol\": \"ThargoidTissueSampleType10a\",\n    \"category\": \"Salvage\",\n    \"name\": \"Titan Maw Deep Tissue Sample\"\n  },\n  {\n    \"id\": \"129022403\",\n    \"symbol\": \"ThargoidTissueSampleType10b\",\n    \"category\": \"Salvage\",\n    \"name\": \"Titan Maw Tissue Sample\"\n  },\n  {\n    \"id\": \"129022404\",\n    \"symbol\": \"ThargoidTissueSampleType10c\",\n    \"category\": \"Salvage\",\n    \"name\": \"Titan Maw Partial Tissue Sample\"\n  },\n  {\n    \"id\": \"129022405\",\n    \"symbol\": \"UnknownSack\",\n    \"category\": \"Salvage\",\n    \"name\": \"Protective Membrane Scrap\"\n  },\n  {\n    \"id\": \"129022406\",\n    \"symbol\": \"ThargoidPod\",\n    \"category\": \"Salvage\",\n    \"name\": \"Xenobiological Prison Pod\"\n  },\n  {\n    \"id\": \"129022407\",\n    \"symbol\": \"CoralSap\",\n    \"category\": \"Salvage\",\n    \"name\": \"Coral Sap\"\n  },\n  {\n    \"id\": \"129022408\",\n    \"symbol\": \"UnknownMineral\",\n    \"category\": \"Salvage\",\n    \"name\": \"Impure Spire Mineral\"\n  },\n  {\n    \"id\": \"129022409\",\n    \"symbol\": \"UnknownRefinedMineral\",\n    \"category\": \"Salvage\",\n    \"name\": \"Semi-Refined Spire Mineral\"\n  },\n  {\n    \"id\": \"129030459\",\n    \"symbol\": \"ThargoidTitanDriveComponent\",\n    \"category\": \"Salvage\",\n    \"name\": \"Titan Drive Component\"\n  },\n  {\n    \"id\": \"129030460\",\n    \"symbol\": \"ThargoidCystSpecimen\",\n    \"category\": \"Salvage\",\n    \"name\": \"Cyst Specimen\"\n  },\n  {\n    \"id\": \"129030461\",\n    \"symbol\": \"ThargoidBoneFragments\",\n    \"category\": \"Salvage\",\n    \"name\": \"Bone Fragments\"\n  },\n  {\n    \"id\": \"129030462\",\n    \"symbol\": \"ThargoidOrganSample\",\n    \"category\": \"Salvage\",\n    \"name\": \"Organ Sample\"\n  },\n  {\n    \"id\": \"129031238\",\n    \"symbol\": \"Steel\",\n    \"category\": \"Metals\",\n    \"name\": \"Steel\"\n  },\n  {\n    \"id\": \"129031327\",\n    \"symbol\": \"Haematite\",\n    \"category\": \"Minerals\",\n    \"name\": \"Haematite\"\n  }\n]"
  },
  {
    "path": "src/service/data/edcd/fdevids/crimes.json",
    "content": "[\n  {\n    \"id\": \"assault\"\n  },\n  {\n    \"id\": \"collidedAtSpeedInNoFireZone\"\n  },\n  {\n    \"id\": \"collidedAtSpeedInNoFireZone_hulldamage\"\n  },\n  {\n    \"id\": \"dockingMajorBlockingAirlock\"\n  },\n  {\n    \"id\": \"dockingMajorTresspass\"\n  },\n  {\n    \"id\": \"dockingMinorBlockingAirlock\"\n  },\n  {\n    \"id\": \"dockingMinorBlockingLandingPad\"\n  },\n  {\n    \"id\": \"dockingMinorTresspass\"\n  },\n  {\n    \"id\": \"dumpingNearStation\"\n  },\n  {\n    \"id\": \"fireInNoFireZone\"\n  },\n  {\n    \"id\": \"murder\"\n  }\n]"
  },
  {
    "path": "src/service/data/edcd/fdevids/dockingdeniedreasons.json",
    "content": "[\n  {\n    \"id\": \"ActiveFighter\"\n  },\n  {\n    \"id\": \"Distance\"\n  },\n  {\n    \"id\": \"Hostile\"\n  },\n  {\n    \"id\": \"NoSpace\"\n  },\n  {\n    \"id\": \"Offences\"\n  },\n  {\n    \"id\": \"TooLarge\"\n  }\n]"
  },
  {
    "path": "src/service/data/edcd/fdevids/economy.json",
    "content": "[\n  {\n    \"id\": \"$economy_Agri;\",\n    \"name\": \"Agriculture\"\n  },\n  {\n    \"id\": \"$economy_Colony;\",\n    \"name\": \"Colony\"\n  },\n  {\n    \"id\": \"$economy_Extraction;\",\n    \"name\": \"Extraction\"\n  },\n  {\n    \"id\": \"$economy_HighTech;\",\n    \"name\": \"High Tech\"\n  },\n  {\n    \"id\": \"$economy_Industrial;\",\n    \"name\": \"Industrial\"\n  },\n  {\n    \"id\": \"$economy_Military;\",\n    \"name\": \"Military\"\n  },\n  {\n    \"id\": \"$economy_None;\",\n    \"name\": \"None\"\n  },\n  {\n    \"id\": \"$economy_Refinery;\",\n    \"name\": \"Refinery\"\n  },\n  {\n    \"id\": \"$economy_Service;\",\n    \"name\": \"Service\"\n  },\n  {\n    \"id\": \"$economy_Terraforming;\",\n    \"name\": \"Terraforming\"\n  },\n  {\n    \"id\": \"$economy_Tourism;\",\n    \"name\": \"Tourism\"\n  },\n  {\n    \"id\": \"$economy_Prison;\",\n    \"name\": \"Prison\"\n  },\n  {\n    \"id\": \"$economy_Damaged;\",\n    \"name\": \"Damaged\"\n  },\n  {\n    \"id\": \"$economy_Rescue;\",\n    \"name\": \"Rescue\"\n  },\n  {\n    \"id\": \"$economy_Repair;\",\n    \"name\": \"Repair\"\n  },\n  {\n    \"id\": \"$economy_Carrier;\",\n    \"name\": \"Private Enterprise\"\n  }\n]"
  },
  {
    "path": "src/service/data/edcd/fdevids/engineers.json",
    "content": "[\n  {\n    \"id\": \"300000\",\n    \"system_address\": \"3932277478114\",\n    \"market_id\": \"128673927\",\n    \"name\": \"Didi Vatermann\"\n  },\n  {\n    \"id\": \"300010\",\n    \"system_address\": \"1109989017963\",\n    \"market_id\": \"128674183\",\n    \"name\": \"Bill Turner\"\n  },\n  {\n    \"id\": \"300030\",\n    \"system_address\": \"4481966019282\",\n    \"market_id\": \"128674695\",\n    \"name\": \"Broo Tarquin\"\n  },\n  {\n    \"id\": \"300040\",\n    \"system_address\": \"2827992680811\",\n    \"market_id\": \"128674951\",\n    \"name\": \"The Sarge\"\n  },\n  {\n    \"id\": \"300050\",\n    \"system_address\": \"6131367744226\",\n    \"market_id\": \"128675207\",\n    \"name\": \"Zacariah Nemo\"\n  },\n  {\n    \"id\": \"300080\",\n    \"system_address\": \"1458309141194\",\n    \"market_id\": \"128675975\",\n    \"name\": \"Liz Ryder\"\n  },\n  {\n    \"id\": \"300090\",\n    \"system_address\": \"1733321102034\",\n    \"market_id\": \"128676231\",\n    \"name\": \"Hera Tani\"\n  },\n  {\n    \"id\": \"300100\",\n    \"system_address\": \"6681123623626\",\n    \"market_id\": \"128676487\",\n    \"name\": \"Felicity Farseer\"\n  },\n  {\n    \"id\": \"300110\",\n    \"system_address\": \"3790082132323\",\n    \"market_id\": \"128676743\",\n    \"name\": \"Ram Tah\"\n  },\n  {\n    \"id\": \"300120\",\n    \"system_address\": \"4305444669811\",\n    \"market_id\": \"128676999\",\n    \"name\": \"Lei Cheung\"\n  },\n  {\n    \"id\": \"300130\",\n    \"system_address\": \"12274907287851\",\n    \"market_id\": \"128677255\",\n    \"name\": \"Petra Olmanova\"\n  },\n  {\n    \"id\": \"300140\",\n    \"system_address\": \"10477373803\",\n    \"market_id\": \"128677511\",\n    \"name\": \"Colonel Bris Dekker\"\n  },\n  {\n    \"id\": \"300150\",\n    \"system_address\": \"48996147307082\",\n    \"market_id\": \"128677767\",\n    \"name\": \"Marsha Hicks\"\n  },\n  {\n    \"id\": \"300160\",\n    \"system_address\": \"3107241104074\",\n    \"market_id\": \"128678023\",\n    \"name\": \"Elvira Martuuk\"\n  },\n  {\n    \"id\": \"300180\",\n    \"system_address\": \"5031654888146\",\n    \"market_id\": \"128678535\",\n    \"name\": \"The Dweller\"\n  },\n  {\n    \"id\": \"300200\",\n    \"system_address\": \"121569805492\",\n    \"market_id\": \"128679047\",\n    \"name\": \"Marco Qwent\"\n  },\n  {\n    \"id\": \"300210\",\n    \"system_address\": \"24859942069665\",\n    \"market_id\": \"128679303\",\n    \"name\": \"Selene Jean\"\n  },\n  {\n    \"id\": \"300220\",\n    \"system_address\": \"113573366131\",\n    \"market_id\": \"128679559\",\n    \"name\": \"Professor Palin\"\n  },\n  {\n    \"id\": \"300230\",\n    \"system_address\": \"3932277478106\",\n    \"market_id\": \"128679815\",\n    \"name\": \"Lori Jameson\"\n  },\n  {\n    \"id\": \"300250\",\n    \"system_address\": \"4481899074282\",\n    \"market_id\": \"128680327\",\n    \"name\": \"Juri Ishmaak\"\n  },\n  {\n    \"id\": \"300260\",\n    \"system_address\": \"3107576681170\",\n    \"market_id\": \"128680583\",\n    \"name\": \"Tod 'The Blaster' McQuinn\"\n  },\n  {\n    \"id\": \"300270\",\n    \"system_address\": \"164098653\",\n    \"market_id\": \"128680839\",\n    \"name\": \"Tiana Fortune\"\n  },\n  {\n    \"id\": \"300280\",\n    \"system_address\": \"66038577537618\",\n    \"market_id\": \"128681095\",\n    \"name\": \"Mel Brandon\"\n  },\n  {\n    \"id\": \"300290\",\n    \"system_address\": \"11887629902418\",\n    \"market_id\": \"128681351\",\n    \"name\": \"Etienne Dorn\"\n  },\n  {\n    \"id\": \"300300\",\n    \"system_address\": \"594676730147\",\n    \"market_id\": \"128954244\",\n    \"name\": \"Chloe Sedesi\"\n  },\n  {\n    \"id\": \"400001\",\n    \"system_address\": \"7268024067513\",\n    \"market_id\": \"128972903\",\n    \"name\": \"Jude Navarro\"\n  },\n  {\n    \"id\": \"400002\",\n    \"system_address\": \"5068464399785\",\n    \"market_id\": \"128973159\",\n    \"name\": \"Domino Green\"\n  },\n  {\n    \"id\": \"400003\",\n    \"system_address\": \"7269634614689\",\n    \"market_id\": \"128973415\",\n    \"name\": \"Hero Ferrari\"\n  },\n  {\n    \"id\": \"400004\",\n    \"system_address\": \"2827975936355\",\n    \"market_id\": \"128973671\",\n    \"name\": \"Kit Fowler\"\n  },\n  {\n    \"id\": \"400005\",\n    \"system_address\": \"2832832893634\",\n    \"market_id\": \"128973927\",\n    \"name\": \"Wellington Beck\"\n  },\n  {\n    \"id\": \"400006\",\n    \"system_address\": \"3721329101171\",\n    \"market_id\": \"128974183\",\n    \"name\": \"Terra Velasquez\"\n  },\n  {\n    \"id\": \"400007\",\n    \"system_address\": \"16065190962585\",\n    \"market_id\": \"128974439\",\n    \"name\": \"Uma Laszlo\"\n  },\n  {\n    \"id\": \"400008\",\n    \"system_address\": \"8879744226018\",\n    \"market_id\": \"128974695\",\n    \"name\": \"Oden Geiger\"\n  },\n  {\n    \"id\": \"400009\",\n    \"system_address\": \"670686455169\",\n    \"market_id\": \"128974951\",\n    \"name\": \"Yarden Bond\"\n  },\n  {\n    \"id\": \"400010\",\n    \"system_address\": \"71536135676490\",\n    \"market_id\": \"128986843\",\n    \"name\": \"Baltanos\"\n  },\n  {\n    \"id\": \"400011\",\n    \"system_address\": \"38001031029322\",\n    \"market_id\": \"128987099\",\n    \"name\": \"Eleanor Bresa\"\n  },\n  {\n    \"id\": \"400012\",\n    \"system_address\": \"59166629864010\",\n    \"market_id\": \"128986587\",\n    \"name\": \"Rosa Dayette\"\n  },\n  {\n    \"id\": \"400013\",\n    \"system_address\": \"13736779007129\",\n    \"market_id\": \"128987355\",\n    \"name\": \"Yi Shen\"\n  }\n]"
  },
  {
    "path": "src/service/data/edcd/fdevids/factionstate.json",
    "content": "[\n  {\n    \"id\": \"None\",\n    \"name\": \"None\"\n  },\n  {\n    \"id\": \"Boom\",\n    \"name\": \"Boom\"\n  },\n  {\n    \"id\": \"Bust\",\n    \"name\": \"Bust\"\n  },\n  {\n    \"id\": \"CivilUnrest\",\n    \"name\": \"Civil Unrest\"\n  },\n  {\n    \"id\": \"CivilWar\",\n    \"name\": \"Civil War\"\n  },\n  {\n    \"id\": \"Election\",\n    \"name\": \"Election\"\n  },\n  {\n    \"id\": \"Expansion\",\n    \"name\": \"Expansion\"\n  },\n  {\n    \"id\": \"Famine\",\n    \"name\": \"Famine\"\n  },\n  {\n    \"id\": \"Investment\",\n    \"name\": \"Investment\"\n  },\n  {\n    \"id\": \"Lockdown\",\n    \"name\": \"Lockdown\"\n  },\n  {\n    \"id\": \"Outbreak\",\n    \"name\": \"Outbreak\"\n  },\n  {\n    \"id\": \"Retreat\",\n    \"name\": \"Retreat\"\n  },\n  {\n    \"id\": \"War\",\n    \"name\": \"War\"\n  },\n  {\n    \"id\": \"CivilLiberty\",\n    \"name\": \"Civil Liberty\"\n  },\n  {\n    \"id\": \"PirateAttack\",\n    \"name\": \"Pirate Attack\"\n  },\n  {\n    \"id\": \"Blight\",\n    \"name\": \"Blight\"\n  },\n  {\n    \"id\": \"Drought\",\n    \"name\": \"Drought\"\n  },\n  {\n    \"id\": \"InfrastructureFailure\",\n    \"name\": \"Infrastructure Failure\"\n  },\n  {\n    \"id\": \"NaturalDisaster\",\n    \"name\": \"Natural Disaster\"\n  },\n  {\n    \"id\": \"PublicHoliday\",\n    \"name\": \"Public Holiday\"\n  },\n  {\n    \"id\": \"Terrorism\",\n    \"name\": \"Terrorist Attack\"\n  },\n  {\n    \"id\": \"ColdWar\",\n    \"name\": \"Cold War\"\n  },\n  {\n    \"id\": \"Colonisation\",\n    \"name\": \"Colonisation\"\n  },\n  {\n    \"id\": \"HistoricEvent\",\n    \"name\": \"Historic Event\"\n  },\n  {\n    \"id\": \"Revolution\",\n    \"name\": \"Revolution\"\n  },\n  {\n    \"id\": \"TechnologicalLeap\",\n    \"name\": \"Technological Leap\"\n  },\n  {\n    \"id\": \"TradeWar\",\n    \"name\": \"Trade War\"\n  }\n]"
  },
  {
    "path": "src/service/data/edcd/fdevids/government.json",
    "content": "[\n  {\n    \"id\": \"$government_Anarchy;\",\n    \"name\": \"Anarchy\"\n  },\n  {\n    \"id\": \"$government_Communism;\",\n    \"name\": \"Communism\"\n  },\n  {\n    \"id\": \"$government_Confederacy;\",\n    \"name\": \"Confederacy\"\n  },\n  {\n    \"id\": \"$government_Cooperative;\",\n    \"name\": \"Cooperative\"\n  },\n  {\n    \"id\": \"$government_Corporate;\",\n    \"name\": \"Corporate\"\n  },\n  {\n    \"id\": \"$government_Democracy;\",\n    \"name\": \"Democracy\"\n  },\n  {\n    \"id\": \"$government_Dictatorship;\",\n    \"name\": \"Dictatorship\"\n  },\n  {\n    \"id\": \"$government_Feudal;\",\n    \"name\": \"Feudal\"\n  },\n  {\n    \"id\": \"$government_Imperial;\",\n    \"name\": \"Imperial\"\n  },\n  {\n    \"id\": \"$government_None;\",\n    \"name\": \"None\"\n  },\n  {\n    \"id\": \"$government_Patronage;\",\n    \"name\": \"Patronage\"\n  },\n  {\n    \"id\": \"$government_PrisonColony;\",\n    \"name\": \"Prison Colony\"\n  },\n  {\n    \"id\": \"$government_Theocracy;\",\n    \"name\": \"Theocracy\"\n  },\n  {\n    \"id\": \"$government_Engineer;\",\n    \"name\": \"Engineer\"\n  },\n  {\n    \"id\": \"$government_Carrier;\",\n    \"name\": \"Private Ownership\"\n  }\n]"
  },
  {
    "path": "src/service/data/edcd/fdevids/happiness.json",
    "content": "[\n  {\n    \"id\": \"$Faction_HappinessBand1;\",\n    \"name\": \"Elated\"\n  },\n  {\n    \"id\": \"$Faction_HappinessBand2;\",\n    \"name\": \"Happy\"\n  },\n  {\n    \"id\": \"$Faction_HappinessBand3;\",\n    \"name\": \"Discontented\"\n  },\n  {\n    \"id\": \"$Faction_HappinessBand4;\",\n    \"name\": \"Unhappy\"\n  },\n  {\n    \"id\": \"$Faction_HappinessBand5;\",\n    \"name\": \"Despondent\"\n  }\n]"
  },
  {
    "path": "src/service/data/edcd/fdevids/material.json",
    "content": "[\n  {\n    \"id\": \"128672318\",\n    \"symbol\": \"Iron\",\n    \"rarity\": \"1\",\n    \"type\": \"Raw\",\n    \"category\": \"4\",\n    \"name\": \"Iron\"\n  },\n  {\n    \"id\": \"128672319\",\n    \"symbol\": \"Nickel\",\n    \"rarity\": \"1\",\n    \"type\": \"Raw\",\n    \"category\": \"5\",\n    \"name\": \"Nickel\"\n  },\n  {\n    \"id\": \"128672320\",\n    \"symbol\": \"Tin\",\n    \"rarity\": \"3\",\n    \"type\": \"Raw\",\n    \"category\": \"4\",\n    \"name\": \"Tin\"\n  },\n  {\n    \"id\": \"128672321\",\n    \"symbol\": \"Zinc\",\n    \"rarity\": \"2\",\n    \"type\": \"Raw\",\n    \"category\": \"4\",\n    \"name\": \"Zinc\"\n  },\n  {\n    \"id\": \"128672322\",\n    \"symbol\": \"Carbon\",\n    \"rarity\": \"1\",\n    \"type\": \"Raw\",\n    \"category\": \"1\",\n    \"name\": \"Carbon\"\n  },\n  {\n    \"id\": \"128672323\",\n    \"symbol\": \"Sulphur\",\n    \"rarity\": \"1\",\n    \"type\": \"Raw\",\n    \"category\": \"3\",\n    \"name\": \"Sulphur\"\n  },\n  {\n    \"id\": \"128672324\",\n    \"symbol\": \"Phosphorus\",\n    \"rarity\": \"1\",\n    \"type\": \"Raw\",\n    \"category\": \"2\",\n    \"name\": \"Phosphorus\"\n  },\n  {\n    \"id\": \"128672325\",\n    \"symbol\": \"Manganese\",\n    \"rarity\": \"2\",\n    \"type\": \"Raw\",\n    \"category\": \"3\",\n    \"name\": \"Manganese\"\n  },\n  {\n    \"id\": \"128672326\",\n    \"symbol\": \"Selenium\",\n    \"rarity\": \"4\",\n    \"type\": \"Raw\",\n    \"category\": \"4\",\n    \"name\": \"Selenium\"\n  },\n  {\n    \"id\": \"128672327\",\n    \"symbol\": \"Chromium\",\n    \"rarity\": \"2\",\n    \"type\": \"Raw\",\n    \"category\": \"2\",\n    \"name\": \"Chromium\"\n  },\n  {\n    \"id\": \"128672328\",\n    \"symbol\": \"Vanadium\",\n    \"rarity\": \"2\",\n    \"type\": \"Raw\",\n    \"category\": \"1\",\n    \"name\": \"Vanadium\"\n  },\n  {\n    \"id\": \"128672329\",\n    \"symbol\": \"Germanium\",\n    \"rarity\": \"2\",\n    \"type\": \"Raw\",\n    \"category\": \"5\",\n    \"name\": \"Germanium\"\n  },\n  {\n    \"id\": \"128672330\",\n    \"symbol\": \"Cadmium\",\n    \"rarity\": \"3\",\n    \"type\": \"Raw\",\n    \"category\": \"3\",\n    \"name\": \"Cadmium\"\n  },\n  {\n    \"id\": \"128672331\",\n    \"symbol\": \"Tungsten\",\n    \"rarity\": \"3\",\n    \"type\": \"Raw\",\n    \"category\": \"5\",\n    \"name\": \"Tungsten\"\n  },\n  {\n    \"id\": \"128672332\",\n    \"symbol\": \"Arsenic\",\n    \"rarity\": \"2\",\n    \"type\": \"Raw\",\n    \"category\": \"6\",\n    \"name\": \"Arsenic\"\n  },\n  {\n    \"id\": \"128672333\",\n    \"symbol\": \"Molybdenum\",\n    \"rarity\": \"3\",\n    \"type\": \"Raw\",\n    \"category\": \"2\",\n    \"name\": \"Molybdenum\"\n  },\n  {\n    \"id\": \"128672334\",\n    \"symbol\": \"Niobium\",\n    \"rarity\": \"3\",\n    \"type\": \"Raw\",\n    \"category\": \"1\",\n    \"name\": \"Niobium\"\n  },\n  {\n    \"id\": \"128672335\",\n    \"symbol\": \"Zirconium\",\n    \"rarity\": \"2\",\n    \"type\": \"Raw\",\n    \"category\": \"7\",\n    \"name\": \"Zirconium\"\n  },\n  {\n    \"id\": \"128672336\",\n    \"symbol\": \"Mercury\",\n    \"rarity\": \"3\",\n    \"type\": \"Raw\",\n    \"category\": \"6\",\n    \"name\": \"Mercury\"\n  },\n  {\n    \"id\": \"128672337\",\n    \"symbol\": \"Yttrium\",\n    \"rarity\": \"4\",\n    \"type\": \"Raw\",\n    \"category\": \"1\",\n    \"name\": \"Yttrium\"\n  },\n  {\n    \"id\": \"128672338\",\n    \"symbol\": \"Tellurium\",\n    \"rarity\": \"4\",\n    \"type\": \"Raw\",\n    \"category\": \"5\",\n    \"name\": \"Tellurium\"\n  },\n  {\n    \"id\": \"128672339\",\n    \"symbol\": \"Polonium\",\n    \"rarity\": \"4\",\n    \"type\": \"Raw\",\n    \"category\": \"6\",\n    \"name\": \"Polonium\"\n  },\n  {\n    \"id\": \"128672340\",\n    \"symbol\": \"Technetium\",\n    \"rarity\": \"4\",\n    \"type\": \"Raw\",\n    \"category\": \"2\",\n    \"name\": \"Technetium\"\n  },\n  {\n    \"id\": \"128672341\",\n    \"symbol\": \"Ruthenium\",\n    \"rarity\": \"4\",\n    \"type\": \"Raw\",\n    \"category\": \"3\",\n    \"name\": \"Ruthenium\"\n  },\n  {\n    \"id\": \"128672342\",\n    \"symbol\": \"Antimony\",\n    \"rarity\": \"4\",\n    \"type\": \"Raw\",\n    \"category\": \"7\",\n    \"name\": \"Antimony\"\n  },\n  {\n    \"id\": \"128673877\",\n    \"symbol\": \"GridResistors\",\n    \"rarity\": \"1\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Capacitors\",\n    \"name\": \"Grid Resistors\"\n  },\n  {\n    \"id\": \"128673878\",\n    \"symbol\": \"CrystalShards\",\n    \"rarity\": \"1\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Crystals\",\n    \"name\": \"Crystal Shards\"\n  },\n  {\n    \"id\": \"128673879\",\n    \"symbol\": \"TemperedAlloys\",\n    \"rarity\": \"1\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Thermic\",\n    \"name\": \"Tempered Alloys\"\n  },\n  {\n    \"id\": \"128673880\",\n    \"symbol\": \"BasicConductors\",\n    \"rarity\": \"1\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Conductive\",\n    \"name\": \"Basic Conductors\"\n  },\n  {\n    \"id\": \"128673881\",\n    \"symbol\": \"MechanicalScrap\",\n    \"rarity\": \"1\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Mechanical Components\",\n    \"name\": \"Mechanical Scrap\"\n  },\n  {\n    \"id\": \"128673882\",\n    \"symbol\": \"HeatConductionWiring\",\n    \"rarity\": \"1\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Heat\",\n    \"name\": \"Heat Conduction Wiring\"\n  },\n  {\n    \"id\": \"128673883\",\n    \"symbol\": \"WornShieldEmitters\",\n    \"rarity\": \"1\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Shielding\",\n    \"name\": \"Worn Shield Emitters\"\n  },\n  {\n    \"id\": \"128673884\",\n    \"symbol\": \"CompactComposites\",\n    \"rarity\": \"1\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Composite\",\n    \"name\": \"Compact Composites\"\n  },\n  {\n    \"id\": \"128673885\",\n    \"symbol\": \"SalvagedAlloys\",\n    \"rarity\": \"1\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Alloys\",\n    \"name\": \"Salvaged Alloys\"\n  },\n  {\n    \"id\": \"128673886\",\n    \"symbol\": \"ChemicalStorageUnits\",\n    \"rarity\": \"1\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Chemical\",\n    \"name\": \"Chemical Storage Units\"\n  },\n  {\n    \"id\": \"128673887\",\n    \"symbol\": \"HybridCapacitors\",\n    \"rarity\": \"2\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Capacitors\",\n    \"name\": \"Hybrid Capacitors\"\n  },\n  {\n    \"id\": \"128673888\",\n    \"symbol\": \"UncutFocusCrystals\",\n    \"rarity\": \"2\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Crystals\",\n    \"name\": \"Flawed Focus Crystals\"\n  },\n  {\n    \"id\": \"128673889\",\n    \"symbol\": \"HeatResistantCeramics\",\n    \"rarity\": \"2\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Thermic\",\n    \"name\": \"Heat Resistant Ceramics\"\n  },\n  {\n    \"id\": \"128673890\",\n    \"symbol\": \"ConductiveComponents\",\n    \"rarity\": \"2\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Conductive\",\n    \"name\": \"Conductive Components\"\n  },\n  {\n    \"id\": \"128673891\",\n    \"symbol\": \"MechanicalEquipment\",\n    \"rarity\": \"2\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Mechanical Components\",\n    \"name\": \"Mechanical Equipment\"\n  },\n  {\n    \"id\": \"128673892\",\n    \"symbol\": \"HeatDispersionPlate\",\n    \"rarity\": \"2\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Heat\",\n    \"name\": \"Heat Dispersion Plate\"\n  },\n  {\n    \"id\": \"128673893\",\n    \"symbol\": \"ShieldEmitters\",\n    \"rarity\": \"2\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Shielding\",\n    \"name\": \"Shield Emitters\"\n  },\n  {\n    \"id\": \"128673894\",\n    \"symbol\": \"FilamentComposites\",\n    \"rarity\": \"2\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Composite\",\n    \"name\": \"Filament Composites\"\n  },\n  {\n    \"id\": \"128673895\",\n    \"symbol\": \"GalvanisingAlloys\",\n    \"rarity\": \"2\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Alloys\",\n    \"name\": \"Galvanising Alloys\"\n  },\n  {\n    \"id\": \"128673896\",\n    \"symbol\": \"ChemicalProcessors\",\n    \"rarity\": \"2\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Chemical\",\n    \"name\": \"Chemical Processors\"\n  },\n  {\n    \"id\": \"128673897\",\n    \"symbol\": \"ElectrochemicalArrays\",\n    \"rarity\": \"3\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Capacitors\",\n    \"name\": \"Electrochemical Arrays\"\n  },\n  {\n    \"id\": \"128673898\",\n    \"symbol\": \"FocusCrystals\",\n    \"rarity\": \"3\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Crystals\",\n    \"name\": \"Focus Crystals\"\n  },\n  {\n    \"id\": \"128673899\",\n    \"symbol\": \"PrecipitatedAlloys\",\n    \"rarity\": \"3\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Thermic\",\n    \"name\": \"Precipitated Alloys\"\n  },\n  {\n    \"id\": \"128673900\",\n    \"symbol\": \"ConductiveCeramics\",\n    \"rarity\": \"3\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Conductive\",\n    \"name\": \"Conductive Ceramics\"\n  },\n  {\n    \"id\": \"128673901\",\n    \"symbol\": \"MechanicalComponents\",\n    \"rarity\": \"3\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Mechanical Components\",\n    \"name\": \"Mechanical Components\"\n  },\n  {\n    \"id\": \"128673902\",\n    \"symbol\": \"HeatExchangers\",\n    \"rarity\": \"3\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Heat\",\n    \"name\": \"Heat Exchangers\"\n  },\n  {\n    \"id\": \"128673903\",\n    \"symbol\": \"ShieldingSensors\",\n    \"rarity\": \"3\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Shielding\",\n    \"name\": \"Shielding Sensors\"\n  },\n  {\n    \"id\": \"128673904\",\n    \"symbol\": \"HighDensityComposites\",\n    \"rarity\": \"3\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Composite\",\n    \"name\": \"High Density Composites\"\n  },\n  {\n    \"id\": \"128673905\",\n    \"symbol\": \"PhaseAlloys\",\n    \"rarity\": \"3\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Alloys\",\n    \"name\": \"Phase Alloys\"\n  },\n  {\n    \"id\": \"128673906\",\n    \"symbol\": \"ChemicalDistillery\",\n    \"rarity\": \"3\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Chemical\",\n    \"name\": \"Chemical Distillery\"\n  },\n  {\n    \"id\": \"128673907\",\n    \"symbol\": \"PolymerCapacitors\",\n    \"rarity\": \"4\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Capacitors\",\n    \"name\": \"Polymer Capacitors\"\n  },\n  {\n    \"id\": \"128673908\",\n    \"symbol\": \"RefinedFocusCrystals\",\n    \"rarity\": \"4\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Crystals\",\n    \"name\": \"Refined Focus Crystals\"\n  },\n  {\n    \"id\": \"128673909\",\n    \"symbol\": \"ThermicAlloys\",\n    \"rarity\": \"4\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Thermic\",\n    \"name\": \"Thermic Alloys\"\n  },\n  {\n    \"id\": \"128673910\",\n    \"symbol\": \"ConductivePolymers\",\n    \"rarity\": \"4\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Conductive\",\n    \"name\": \"Conductive Polymers\"\n  },\n  {\n    \"id\": \"128673911\",\n    \"symbol\": \"ConfigurableComponents\",\n    \"rarity\": \"4\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Mechanical Components\",\n    \"name\": \"Configurable Components\"\n  },\n  {\n    \"id\": \"128673912\",\n    \"symbol\": \"HeatVanes\",\n    \"rarity\": \"4\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Heat\",\n    \"name\": \"Heat Vanes\"\n  },\n  {\n    \"id\": \"128673913\",\n    \"symbol\": \"CompoundShielding\",\n    \"rarity\": \"4\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Shielding\",\n    \"name\": \"Compound Shielding\"\n  },\n  {\n    \"id\": \"128673914\",\n    \"symbol\": \"FedProprietaryComposites\",\n    \"rarity\": \"4\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Composite\",\n    \"name\": \"Proprietary Composites\"\n  },\n  {\n    \"id\": \"128673915\",\n    \"symbol\": \"ProtoLightAlloys\",\n    \"rarity\": \"4\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Alloys\",\n    \"name\": \"Proto Light Alloys\"\n  },\n  {\n    \"id\": \"128673916\",\n    \"symbol\": \"ChemicalManipulators\",\n    \"rarity\": \"4\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Chemical\",\n    \"name\": \"Chemical Manipulators\"\n  },\n  {\n    \"id\": \"128673917\",\n    \"symbol\": \"MilitarySupercapacitors\",\n    \"rarity\": \"5\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Capacitors\",\n    \"name\": \"Military Supercapacitors\"\n  },\n  {\n    \"id\": \"128673918\",\n    \"symbol\": \"ExquisiteFocusCrystals\",\n    \"rarity\": \"5\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Crystals\",\n    \"name\": \"Exquisite Focus Crystals\"\n  },\n  {\n    \"id\": \"128673919\",\n    \"symbol\": \"MilitaryGradeAlloys\",\n    \"rarity\": \"5\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Thermic\",\n    \"name\": \"Military Grade Alloys\"\n  },\n  {\n    \"id\": \"128673920\",\n    \"symbol\": \"BiotechConductors\",\n    \"rarity\": \"5\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Conductive\",\n    \"name\": \"Biotech Conductors\"\n  },\n  {\n    \"id\": \"128673921\",\n    \"symbol\": \"ImprovisedComponents\",\n    \"rarity\": \"5\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Mechanical Components\",\n    \"name\": \"Improvised Components\"\n  },\n  {\n    \"id\": \"128673922\",\n    \"symbol\": \"ProtoHeatRadiators\",\n    \"rarity\": \"5\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Heat\",\n    \"name\": \"Proto Heat Radiators\"\n  },\n  {\n    \"id\": \"128673923\",\n    \"symbol\": \"ImperialShielding\",\n    \"rarity\": \"5\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Shielding\",\n    \"name\": \"Imperial Shielding\"\n  },\n  {\n    \"id\": \"128673924\",\n    \"symbol\": \"FedCoreComposites\",\n    \"rarity\": \"5\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Composite\",\n    \"name\": \"Core Dynamics Composites\"\n  },\n  {\n    \"id\": \"128673925\",\n    \"symbol\": \"ProtoRadiolicAlloys\",\n    \"rarity\": \"5\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Alloys\",\n    \"name\": \"Proto Radiolic Alloys\"\n  },\n  {\n    \"id\": \"128673926\",\n    \"symbol\": \"PharmaceuticalIsolators\",\n    \"rarity\": \"5\",\n    \"type\": \"Manufactured\",\n    \"category\": \"Chemical\",\n    \"name\": \"Pharmaceutical Isolators\"\n  },\n  {\n    \"id\": \"128681610\",\n    \"symbol\": \"LegacyFirmware\",\n    \"rarity\": \"1\",\n    \"type\": \"Encoded\",\n    \"category\": \"Encoded Firmware\",\n    \"name\": \"Specialised Legacy Firmware\"\n  },\n  {\n    \"id\": \"128681611\",\n    \"symbol\": \"EncryptedFiles\",\n    \"rarity\": \"1\",\n    \"type\": \"Encoded\",\n    \"category\": \"Encryption Files\",\n    \"name\": \"Unusual Encrypted Files\"\n  },\n  {\n    \"id\": \"128681612\",\n    \"symbol\": \"BulkScanData\",\n    \"rarity\": \"1\",\n    \"type\": \"Encoded\",\n    \"category\": \"Data Archives\",\n    \"name\": \"Anomalous Bulk Scan Data\"\n  },\n  {\n    \"id\": \"128681613\",\n    \"symbol\": \"DisruptedWakeEchoes\",\n    \"rarity\": \"1\",\n    \"type\": \"Encoded\",\n    \"category\": \"Wake Scans\",\n    \"name\": \"Atypical Disrupted Wake Echoes\"\n  },\n  {\n    \"id\": \"128681614\",\n    \"symbol\": \"ScrambledEmissionData\",\n    \"rarity\": \"1\",\n    \"type\": \"Encoded\",\n    \"category\": \"Emission Data\",\n    \"name\": \"Exceptional Scrambled Emission Data\"\n  },\n  {\n    \"id\": \"128681615\",\n    \"symbol\": \"ShieldCycleRecordings\",\n    \"rarity\": \"1\",\n    \"type\": \"Encoded\",\n    \"category\": \"Shield Data\",\n    \"name\": \"Distorted Shield Cycle Recordings\"\n  },\n  {\n    \"id\": \"128681616\",\n    \"symbol\": \"ConsumerFirmware\",\n    \"rarity\": \"2\",\n    \"type\": \"Encoded\",\n    \"category\": \"Encoded Firmware\",\n    \"name\": \"Modified Consumer Firmware\"\n  },\n  {\n    \"id\": \"128681617\",\n    \"symbol\": \"EncryptionCodes\",\n    \"rarity\": \"2\",\n    \"type\": \"Encoded\",\n    \"category\": \"Encryption Files\",\n    \"name\": \"Tagged Encryption Codes\"\n  },\n  {\n    \"id\": \"128681618\",\n    \"symbol\": \"ScanArchives\",\n    \"rarity\": \"2\",\n    \"type\": \"Encoded\",\n    \"category\": \"Data Archives\",\n    \"name\": \"Unidentified Scan Archives\"\n  },\n  {\n    \"id\": \"128681619\",\n    \"symbol\": \"FSDTelemetry\",\n    \"rarity\": \"2\",\n    \"type\": \"Encoded\",\n    \"category\": \"Wake Scans\",\n    \"name\": \"Anomalous FSD Telemetry\"\n  },\n  {\n    \"id\": \"128681620\",\n    \"symbol\": \"ArchivedEmissionData\",\n    \"rarity\": \"2\",\n    \"type\": \"Encoded\",\n    \"category\": \"Emission Data\",\n    \"name\": \"Irregular Emission Data\"\n  },\n  {\n    \"id\": \"128681621\",\n    \"symbol\": \"ShieldSoakAnalysis\",\n    \"rarity\": \"2\",\n    \"type\": \"Encoded\",\n    \"category\": \"Shield Data\",\n    \"name\": \"Inconsistent Shield Soak Analysis\"\n  },\n  {\n    \"id\": \"128681622\",\n    \"symbol\": \"IndustrialFirmware\",\n    \"rarity\": \"3\",\n    \"type\": \"Encoded\",\n    \"category\": \"Encoded Firmware\",\n    \"name\": \"Cracked Industrial Firmware\"\n  },\n  {\n    \"id\": \"128681623\",\n    \"symbol\": \"SymmetricKeys\",\n    \"rarity\": \"3\",\n    \"type\": \"Encoded\",\n    \"category\": \"Encryption Files\",\n    \"name\": \"Open Symmetric Keys\"\n  },\n  {\n    \"id\": \"128681624\",\n    \"symbol\": \"ScanDatabanks\",\n    \"rarity\": \"3\",\n    \"type\": \"Encoded\",\n    \"category\": \"Data Archives\",\n    \"name\": \"Classified Scan Databanks\"\n  },\n  {\n    \"id\": \"128681625\",\n    \"symbol\": \"WakeSolutions\",\n    \"rarity\": \"3\",\n    \"type\": \"Encoded\",\n    \"category\": \"Wake Scans\",\n    \"name\": \"Strange Wake Solutions\"\n  },\n  {\n    \"id\": \"128681626\",\n    \"symbol\": \"EmissionData\",\n    \"rarity\": \"3\",\n    \"type\": \"Encoded\",\n    \"category\": \"Emission Data\",\n    \"name\": \"Unexpected Emission Data\"\n  },\n  {\n    \"id\": \"128681627\",\n    \"symbol\": \"ShieldDensityReports\",\n    \"rarity\": \"3\",\n    \"type\": \"Encoded\",\n    \"category\": \"Shield Data\",\n    \"name\": \"Untypical Shield Scans\"\n  },\n  {\n    \"id\": \"128681628\",\n    \"symbol\": \"SecurityFirmware\",\n    \"rarity\": \"4\",\n    \"type\": \"Encoded\",\n    \"category\": \"Encoded Firmware\",\n    \"name\": \"Security Firmware Patch\"\n  },\n  {\n    \"id\": \"128681629\",\n    \"symbol\": \"EncryptionArchives\",\n    \"rarity\": \"4\",\n    \"type\": \"Encoded\",\n    \"category\": \"Encryption Files\",\n    \"name\": \"Atypical Encryption Archives\"\n  },\n  {\n    \"id\": \"128681630\",\n    \"symbol\": \"EncodedScanData\",\n    \"rarity\": \"4\",\n    \"type\": \"Encoded\",\n    \"category\": \"Data Archives\",\n    \"name\": \"Divergent Scan Data\"\n  },\n  {\n    \"id\": \"128681631\",\n    \"symbol\": \"HyperspaceTrajectories\",\n    \"rarity\": \"4\",\n    \"type\": \"Encoded\",\n    \"category\": \"Wake Scans\",\n    \"name\": \"Eccentric Hyperspace Trajectories\"\n  },\n  {\n    \"id\": \"128681632\",\n    \"symbol\": \"DecodedEmissionData\",\n    \"rarity\": \"4\",\n    \"type\": \"Encoded\",\n    \"category\": \"Emission Data\",\n    \"name\": \"Decoded Emission Data\"\n  },\n  {\n    \"id\": \"128681633\",\n    \"symbol\": \"ShieldPatternAnalysis\",\n    \"rarity\": \"4\",\n    \"type\": \"Encoded\",\n    \"category\": \"Shield Data\",\n    \"name\": \"Aberrant Shield Pattern Analysis\"\n  },\n  {\n    \"id\": \"128681634\",\n    \"symbol\": \"EmbeddedFirmware\",\n    \"rarity\": \"5\",\n    \"type\": \"Encoded\",\n    \"category\": \"Encoded Firmware\",\n    \"name\": \"Modified Embedded Firmware\"\n  },\n  {\n    \"id\": \"128681635\",\n    \"symbol\": \"AdaptiveEncryptors\",\n    \"rarity\": \"5\",\n    \"type\": \"Encoded\",\n    \"category\": \"Encryption Files\",\n    \"name\": \"Adaptive Encryptors Capture\"\n  },\n  {\n    \"id\": \"128681636\",\n    \"symbol\": \"ClassifiedScanData\",\n    \"rarity\": \"5\",\n    \"type\": \"Encoded\",\n    \"category\": \"Data Archives\",\n    \"name\": \"Classified Scan Fragment\"\n  },\n  {\n    \"id\": \"128681637\",\n    \"symbol\": \"DataminedWake\",\n    \"rarity\": \"5\",\n    \"type\": \"Encoded\",\n    \"category\": \"Wake Scans\",\n    \"name\": \"Datamined Wake Exceptions\"\n  },\n  {\n    \"id\": \"128681638\",\n    \"symbol\": \"CompactEmissionsData\",\n    \"rarity\": \"5\",\n    \"type\": \"Encoded\",\n    \"category\": \"Emission Data\",\n    \"name\": \"Abnormal Compact Emissions Data\"\n  },\n  {\n    \"id\": \"128681639\",\n    \"symbol\": \"ShieldFrequencyData\",\n    \"rarity\": \"5\",\n    \"type\": \"Encoded\",\n    \"category\": \"Shield Data\",\n    \"name\": \"Peculiar Shield Frequency Data\"\n  },\n  {\n    \"id\": \"128681640\",\n    \"symbol\": \"UnknownEnergySource\",\n    \"rarity\": \"5\",\n    \"type\": \"Manufactured\",\n    \"category\": \"None\",\n    \"name\": \"Sensor Fragment\"\n  },\n  {\n    \"id\": \"128731669\",\n    \"symbol\": \"UnknownShipSignature\",\n    \"rarity\": \"3\",\n    \"type\": \"Encoded\",\n    \"category\": \"None\",\n    \"name\": \"Thargoid Ship Signature\"\n  },\n  {\n    \"id\": \"128731670\",\n    \"symbol\": \"UnknownWakeData\",\n    \"rarity\": \"4\",\n    \"type\": \"Encoded\",\n    \"category\": \"None\",\n    \"name\": \"Thargoid Wake Data\"\n  },\n  {\n    \"id\": \"128732197\",\n    \"symbol\": \"AncientLanguageData\",\n    \"rarity\": \"4\",\n    \"type\": \"Encoded\",\n    \"category\": \"None\",\n    \"name\": \"Pattern Delta Obelisk Data\"\n  },\n  {\n    \"id\": \"128732198\",\n    \"symbol\": \"AncientBiologicalData\",\n    \"rarity\": \"4\",\n    \"type\": \"Encoded\",\n    \"category\": \"None\",\n    \"name\": \"Pattern Alpha Obelisk Data\"\n  },\n  {\n    \"id\": \"128732199\",\n    \"symbol\": \"AncientCulturalData\",\n    \"rarity\": \"4\",\n    \"type\": \"Encoded\",\n    \"category\": \"None\",\n    \"name\": \"Pattern Beta Obelisk Data\"\n  },\n  {\n    \"id\": \"128732200\",\n    \"symbol\": \"AncientHistoricalData\",\n    \"rarity\": \"4\",\n    \"type\": \"Encoded\",\n    \"category\": \"None\",\n    \"name\": \"Pattern Gamma Obelisk Data\"\n  },\n  {\n    \"id\": \"128732201\",\n    \"symbol\": \"AncientTechnologicalData\",\n    \"rarity\": \"4\",\n    \"type\": \"Encoded\",\n    \"category\": \"None\",\n    \"name\": \"Pattern Epsilon Obelisk Data\"\n  },\n  {\n    \"id\": \"128737280\",\n    \"symbol\": \"TG_CompositionData\",\n    \"rarity\": \"3\",\n    \"type\": \"Encoded\",\n    \"category\": \"None\",\n    \"name\": \"Thargoid Material Composition Data\"\n  },\n  {\n    \"id\": \"128737281\",\n    \"symbol\": \"TG_ResidueData\",\n    \"rarity\": \"4\",\n    \"type\": \"Encoded\",\n    \"category\": \"None\",\n    \"name\": \"Thargoid Residue Data\"\n  },\n  {\n    \"id\": \"128737282\",\n    \"symbol\": \"TG_StructuralData\",\n    \"rarity\": \"2\",\n    \"type\": \"Encoded\",\n    \"category\": \"None\",\n    \"name\": \"Thargoid Structural Data\"\n  },\n  {\n    \"id\": \"128737283\",\n    \"symbol\": \"UnknownCarapace\",\n    \"rarity\": \"2\",\n    \"type\": \"Manufactured\",\n    \"category\": \"None\",\n    \"name\": \"Thargoid Carapace\"\n  },\n  {\n    \"id\": \"128737284\",\n    \"symbol\": \"UnknownEnergyCell\",\n    \"rarity\": \"3\",\n    \"type\": \"Manufactured\",\n    \"category\": \"None\",\n    \"name\": \"Thargoid Energy Cell\"\n  },\n  {\n    \"id\": \"128737285\",\n    \"symbol\": \"UnknownOrganicCircuitry\",\n    \"rarity\": \"5\",\n    \"type\": \"Manufactured\",\n    \"category\": \"None\",\n    \"name\": \"Thargoid Organic Circuitry\"\n  },\n  {\n    \"id\": \"128737286\",\n    \"symbol\": \"UnknownTechnologyComponents\",\n    \"rarity\": \"4\",\n    \"type\": \"Manufactured\",\n    \"category\": \"None\",\n    \"name\": \"Thargoid Technological Components\"\n  },\n  {\n    \"id\": \"128737287\",\n    \"symbol\": \"TG_BioMechanicalConduits\",\n    \"rarity\": \"3\",\n    \"type\": \"Manufactured\",\n    \"category\": \"None\",\n    \"name\": \"Bio-Mechanical Conduits\"\n  },\n  {\n    \"id\": \"128793132\",\n    \"symbol\": \"TG_PropulsionElement\",\n    \"rarity\": \"5\",\n    \"type\": \"Manufactured\",\n    \"category\": \"None\",\n    \"name\": \"Propulsion Elements\"\n  },\n  {\n    \"id\": \"128793133\",\n    \"symbol\": \"TG_WeaponParts\",\n    \"rarity\": \"4\",\n    \"type\": \"Manufactured\",\n    \"category\": \"None\",\n    \"name\": \"Weapon Parts\"\n  },\n  {\n    \"id\": \"128793134\",\n    \"symbol\": \"TG_WreckageComponents\",\n    \"rarity\": \"3\",\n    \"type\": \"Manufactured\",\n    \"category\": \"None\",\n    \"name\": \"Wreckage Components\"\n  },\n  {\n    \"id\": \"128793135\",\n    \"symbol\": \"TG_ShipFlightData\",\n    \"rarity\": \"3\",\n    \"type\": \"Encoded\",\n    \"category\": \"None\",\n    \"name\": \"Ship Flight Data\"\n  },\n  {\n    \"id\": \"128793136\",\n    \"symbol\": \"TG_ShipSystemsData\",\n    \"rarity\": \"4\",\n    \"type\": \"Encoded\",\n    \"category\": \"None\",\n    \"name\": \"Ship Systems Data\"\n  },\n  {\n    \"id\": \"128815023\",\n    \"symbol\": \"Guardian_PowerCell\",\n    \"rarity\": \"1\",\n    \"type\": \"Manufactured\",\n    \"category\": \"None\",\n    \"name\": \"Guardian Power Cell\"\n  },\n  {\n    \"id\": \"128815024\",\n    \"symbol\": \"Guardian_PowerConduit\",\n    \"rarity\": \"2\",\n    \"type\": \"Manufactured\",\n    \"category\": \"None\",\n    \"name\": \"Guardian Power Conduit\"\n  },\n  {\n    \"id\": \"128815025\",\n    \"symbol\": \"Guardian_TechComponent\",\n    \"rarity\": \"3\",\n    \"type\": \"Manufactured\",\n    \"category\": \"None\",\n    \"name\": \"Guardian Technology Component\"\n  },\n  {\n    \"id\": \"128815026\",\n    \"symbol\": \"Guardian_Sentinel_WeaponParts\",\n    \"rarity\": \"3\",\n    \"type\": \"Manufactured\",\n    \"category\": \"None\",\n    \"name\": \"Guardian Sentinel Weapon Parts\"\n  },\n  {\n    \"id\": \"128815027\",\n    \"symbol\": \"Guardian_Sentinel_WreckageComponents\",\n    \"rarity\": \"1\",\n    \"type\": \"Manufactured\",\n    \"category\": \"None\",\n    \"name\": \"Guardian Sentinel Wreckage Components\"\n  },\n  {\n    \"id\": \"128815028\",\n    \"symbol\": \"Guardian_WeaponBlueprint\",\n    \"rarity\": \"4\",\n    \"type\": \"Encoded\",\n    \"category\": \"None\",\n    \"name\": \"Guardian Weapon Blueprint Segment\"\n  },\n  {\n    \"id\": \"128815029\",\n    \"symbol\": \"Guardian_ModuleBlueprint\",\n    \"rarity\": \"4\",\n    \"type\": \"Encoded\",\n    \"category\": \"None\",\n    \"name\": \"Guardian Module Blueprint Segment\"\n  },\n  {\n    \"id\": \"128815030\",\n    \"symbol\": \"Guardian_VesselBlueprint\",\n    \"rarity\": \"5\",\n    \"type\": \"Encoded\",\n    \"category\": \"None\",\n    \"name\": \"Guardian Vessel Blueprint Segment\"\n  },\n  {\n    \"id\": \"128837857\",\n    \"symbol\": \"Rhenium\",\n    \"rarity\": \"1\",\n    \"type\": \"Raw\",\n    \"category\": \"6\",\n    \"name\": \"Rhenium\"\n  },\n  {\n    \"id\": \"128850245\",\n    \"symbol\": \"Lead\",\n    \"rarity\": \"1\",\n    \"type\": \"Raw\",\n    \"category\": \"7\",\n    \"name\": \"Lead\"\n  },\n  {\n    \"id\": \"128850246\",\n    \"symbol\": \"Boron\",\n    \"rarity\": \"3\",\n    \"type\": \"Raw\",\n    \"category\": \"7\",\n    \"name\": \"Boron\"\n  }\n]"
  },
  {
    "path": "src/service/data/edcd/fdevids/microresources.json",
    "content": "[\n  {\n    \"id\": \"?\",\n    \"symbol\": \"bypass\",\n    \"category\": \"Consumable\",\n    \"English name\": \"E-Breach\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"largecapacitypowerregulator\",\n    \"category\": \"Item\",\n    \"English name\": \"Power Regulator\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"chemicalinventory\",\n    \"category\": \"Data\",\n    \"English name\": \"Chemical Inventory\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"dutyrota\",\n    \"category\": \"Data\",\n    \"English name\": \"Duty Rota\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"evacuationprotocols\",\n    \"category\": \"Data\",\n    \"English name\": \"Evacuation Protocols\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"explorationjournals\",\n    \"category\": \"Data\",\n    \"English name\": \"Exploration Journals\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"factionnews\",\n    \"category\": \"Data\",\n    \"English name\": \"Faction News\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"financialprojections\",\n    \"category\": \"Data\",\n    \"English name\": \"Financial Projections\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"salesrecords\",\n    \"category\": \"Data\",\n    \"English name\": \"Sales Records\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"unionmembership\",\n    \"category\": \"Data\",\n    \"English name\": \"Union Membership\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"compactlibrary\",\n    \"category\": \"Item\",\n    \"English name\": \"Compact Library\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"infinity\",\n    \"category\": \"Item\",\n    \"English name\": \"infinity\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"insightentertainmentsuite\",\n    \"category\": \"Item\",\n    \"English name\": \"Insight Entertainment Suite\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"lazarus\",\n    \"category\": \"Item\",\n    \"English name\": \"lazarus\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"energycell\",\n    \"category\": \"Consumable\",\n    \"English name\": \"Energy Cell\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"healthpack\",\n    \"category\": \"Consumable\",\n    \"English name\": \"Medkit\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"universaltranslator\",\n    \"category\": \"Item\",\n    \"English name\": \"Universal Translator\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"biochemicalagent\",\n    \"category\": \"Item\",\n    \"English name\": \"Biochemical Agent\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"degradedpowerregulator\",\n    \"category\": \"Item\",\n    \"English name\": \"Degraded Power Regulator\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"hush\",\n    \"category\": \"Item\",\n    \"English name\": \"hush\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"maintenancelogs\",\n    \"category\": \"Data\",\n    \"English name\": \"Maintenance Logs\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"patrolroutes\",\n    \"category\": \"Data\",\n    \"English name\": \"Patrol Routes\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"push\",\n    \"category\": \"Item\",\n    \"English name\": \"push\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"settlementdefenceplans\",\n    \"category\": \"Data\",\n    \"English name\": \"Settlement Defence Plans\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"surveilleancelogs\",\n    \"category\": \"Data\",\n    \"English name\": \"Surveillance Logs\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"syntheticpathogen\",\n    \"category\": \"Item\",\n    \"English name\": \"Synthetic Pathogen\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"buildingschematic\",\n    \"category\": \"Item\",\n    \"English name\": \"Building Schematic\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"operationalmanual\",\n    \"category\": \"Data\",\n    \"English name\": \"Operational Manual\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"blacklistdata\",\n    \"category\": \"Data\",\n    \"English name\": \"Blacklist Data\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"insight\",\n    \"category\": \"Item\",\n    \"English name\": \"insight\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"airqualityreports\",\n    \"category\": \"Data\",\n    \"English name\": \"Air Quality Reports\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"employeedirectory\",\n    \"category\": \"Data\",\n    \"English name\": \"Employee Directory\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"factionassociates\",\n    \"category\": \"Data\",\n    \"English name\": \"Faction Associates\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"meetingminutes\",\n    \"category\": \"Data\",\n    \"English name\": \"Meeting Minutes\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"multimediaentertainment\",\n    \"category\": \"Data\",\n    \"English name\": \"Multimedia Entertainment\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"networkaccesshistory\",\n    \"category\": \"Data\",\n    \"English name\": \"Network Access History\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"purchaserecords\",\n    \"category\": \"Data\",\n    \"English name\": \"Purchase Records\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"radioactivitydata\",\n    \"category\": \"Data\",\n    \"English name\": \"Radioactivity Data\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"residentialdirectory\",\n    \"category\": \"Data\",\n    \"English name\": \"Residential Directory\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"shareholderinformation\",\n    \"category\": \"Data\",\n    \"English name\": \"Shareholder Information\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"travelpermits\",\n    \"category\": \"Data\",\n    \"English name\": \"Travel Permits\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"accidentlogs\",\n    \"category\": \"Data\",\n    \"English name\": \"Accident Logs\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"campaignplans\",\n    \"category\": \"Data\",\n    \"English name\": \"Campaign Plans\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"combattrainingmaterial\",\n    \"category\": \"Data\",\n    \"English name\": \"Combat Training Material\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"internalcorrespondence\",\n    \"category\": \"Data\",\n    \"English name\": \"Internal Correspondence\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"payrollinformation\",\n    \"category\": \"Data\",\n    \"English name\": \"Payroll Information\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"personallogs\",\n    \"category\": \"Data\",\n    \"English name\": \"Personal Logs\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"weaponinventory\",\n    \"category\": \"Data\",\n    \"English name\": \"Weapon Inventory\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"atmosphericdata\",\n    \"category\": \"Data\",\n    \"English name\": \"Atmospheric Data\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"topographicalsurveys\",\n    \"category\": \"Data\",\n    \"English name\": \"Topographical Surveys\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"literaryfiction\",\n    \"category\": \"Data\",\n    \"English name\": \"Literary Fiction\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"reactoroutputreview\",\n    \"category\": \"Data\",\n    \"English name\": \"Reactor Output Review\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"nextofkinrecords\",\n    \"category\": \"Data\",\n    \"English name\": \"Next of Kin Records\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"purchaserequests\",\n    \"category\": \"Data\",\n    \"English name\": \"Purchase Requests\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"taxrecords\",\n    \"category\": \"Data\",\n    \"English name\": \"Tax Records\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"visitorregister\",\n    \"category\": \"Data\",\n    \"English name\": \"Visitor Register\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"pharmaceuticalpatents\",\n    \"category\": \"Data\",\n    \"English name\": \"Pharmaceutical Patents\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"vaccineresearch\",\n    \"category\": \"Data\",\n    \"English name\": \"Vaccine Research\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"virologydata\",\n    \"category\": \"Data\",\n    \"English name\": \"Virology Data\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"vaccinationrecords\",\n    \"category\": \"Data\",\n    \"English name\": \"Vaccination Records\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"censusdata\",\n    \"category\": \"Data\",\n    \"English name\": \"Census Data\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"geographicaldata\",\n    \"category\": \"Data\",\n    \"English name\": \"Geographical Data\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"mineralsurvey\",\n    \"category\": \"Data\",\n    \"English name\": \"Mineral Survey\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"chemicalformulae\",\n    \"category\": \"Data\",\n    \"English name\": \"Chemical Formulae\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"amm_grenade_frag\",\n    \"category\": \"Consumable\",\n    \"English name\": \"Frag Grenade\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"amm_grenade_emp\",\n    \"category\": \"Consumable\",\n    \"English name\": \"Shield Disruptor\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"amm_grenade_shield\",\n    \"category\": \"Consumable\",\n    \"English name\": \"Shield Projector\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"chemicalexperimentdata\",\n    \"category\": \"Data\",\n    \"English name\": \"Chemical Experiment Data\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"chemicalpatents\",\n    \"category\": \"Data\",\n    \"English name\": \"Chemical Patents\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"productionreports\",\n    \"category\": \"Data\",\n    \"English name\": \"Production Reports\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"productionschedule\",\n    \"category\": \"Data\",\n    \"English name\": \"Production Schedule\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"bloodtestresults\",\n    \"category\": \"Data\",\n    \"English name\": \"Blood Test Results\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"combatantperformance\",\n    \"category\": \"Data\",\n    \"English name\": \"Combatant Performance\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"troopdeploymentrecords\",\n    \"category\": \"Data\",\n    \"English name\": \"Troop Deployment Records\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"catmedia\",\n    \"category\": \"Data\",\n    \"English name\": \"Cat Media\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"employeegeneticdata\",\n    \"category\": \"Data\",\n    \"English name\": \"Employee Genetic Data\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"factiondonatorlist\",\n    \"category\": \"Data\",\n    \"English name\": \"Faction Donator List\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"nocdata\",\n    \"category\": \"Data\",\n    \"English name\": \"NOC Data\"\n  },\n  {\n    \"id\": \"?\",\n    \"symbol\": \"trueformfossil\",\n    \"category\": \"Item\",\n    \"English name\": \"True Form Fossil\"\n  }\n]"
  },
  {
    "path": "src/service/data/edcd/fdevids/outfitting.json",
    "content": "[\n  {\n    \"id\": \"128049250\",\n    \"symbol\": \"SideWinder_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Sidewinder\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049251\",\n    \"symbol\": \"SideWinder_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Sidewinder\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049252\",\n    \"symbol\": \"SideWinder_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Sidewinder\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049253\",\n    \"symbol\": \"SideWinder_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Sidewinder\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049254\",\n    \"symbol\": \"SideWinder_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Sidewinder\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049256\",\n    \"symbol\": \"Eagle_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Eagle\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049257\",\n    \"symbol\": \"Eagle_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Eagle\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049258\",\n    \"symbol\": \"Eagle_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Eagle\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049259\",\n    \"symbol\": \"Eagle_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Eagle\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049260\",\n    \"symbol\": \"Eagle_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Eagle\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049262\",\n    \"symbol\": \"Hauler_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Hauler\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049263\",\n    \"symbol\": \"Hauler_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Hauler\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049264\",\n    \"symbol\": \"Hauler_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Hauler\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049265\",\n    \"symbol\": \"Hauler_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Hauler\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049266\",\n    \"symbol\": \"Hauler_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Hauler\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049268\",\n    \"symbol\": \"Adder_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Adder\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049269\",\n    \"symbol\": \"Adder_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Adder\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049270\",\n    \"symbol\": \"Adder_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Adder\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049271\",\n    \"symbol\": \"Adder_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Adder\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049272\",\n    \"symbol\": \"Adder_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Adder\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049274\",\n    \"symbol\": \"Viper_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Viper MkIII\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049275\",\n    \"symbol\": \"Viper_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Viper MkIII\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049276\",\n    \"symbol\": \"Viper_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Viper MkIII\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049277\",\n    \"symbol\": \"Viper_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Viper MkIII\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049278\",\n    \"symbol\": \"Viper_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Viper MkIII\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049280\",\n    \"symbol\": \"CobraMkIII_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Cobra MkIII\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049281\",\n    \"symbol\": \"CobraMkIII_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Cobra MkIII\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049282\",\n    \"symbol\": \"CobraMkIII_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Cobra MkIII\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049283\",\n    \"symbol\": \"CobraMkIII_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Cobra MkIII\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049284\",\n    \"symbol\": \"CobraMkIII_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Cobra MkIII\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049286\",\n    \"symbol\": \"Type6_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Type-6 Transporter\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049287\",\n    \"symbol\": \"Type6_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Type-6 Transporter\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049288\",\n    \"symbol\": \"Type6_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Type-6 Transporter\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049289\",\n    \"symbol\": \"Type6_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Type-6 Transporter\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049290\",\n    \"symbol\": \"Type6_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Type-6 Transporter\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049292\",\n    \"symbol\": \"Dolphin_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Dolphin\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049293\",\n    \"symbol\": \"Dolphin_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Dolphin\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049294\",\n    \"symbol\": \"Dolphin_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Dolphin\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049295\",\n    \"symbol\": \"Dolphin_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Dolphin\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049296\",\n    \"symbol\": \"Dolphin_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Dolphin\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049298\",\n    \"symbol\": \"Type7_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Type-7 Transporter\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049299\",\n    \"symbol\": \"Type7_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Type-7 Transporter\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049300\",\n    \"symbol\": \"Type7_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Type-7 Transporter\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049301\",\n    \"symbol\": \"Type7_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Type-7 Transporter\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049302\",\n    \"symbol\": \"Type7_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Type-7 Transporter\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049304\",\n    \"symbol\": \"Asp_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Asp Explorer\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049305\",\n    \"symbol\": \"Asp_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Asp Explorer\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049306\",\n    \"symbol\": \"Asp_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Asp Explorer\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049307\",\n    \"symbol\": \"Asp_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Asp Explorer\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049308\",\n    \"symbol\": \"Asp_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Asp Explorer\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049310\",\n    \"symbol\": \"Vulture_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Vulture\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049311\",\n    \"symbol\": \"Vulture_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Vulture\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049312\",\n    \"symbol\": \"Vulture_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Vulture\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049313\",\n    \"symbol\": \"Vulture_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Vulture\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049314\",\n    \"symbol\": \"Vulture_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Vulture\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049316\",\n    \"symbol\": \"Empire_Trader_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Imperial Clipper\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049317\",\n    \"symbol\": \"Empire_Trader_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Imperial Clipper\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049318\",\n    \"symbol\": \"Empire_Trader_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Imperial Clipper\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049319\",\n    \"symbol\": \"Empire_Trader_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Imperial Clipper\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049320\",\n    \"symbol\": \"Empire_Trader_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Imperial Clipper\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049322\",\n    \"symbol\": \"Federation_Dropship_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Federal Dropship\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049323\",\n    \"symbol\": \"Federation_Dropship_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Federal Dropship\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049324\",\n    \"symbol\": \"Federation_Dropship_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Federal Dropship\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049325\",\n    \"symbol\": \"Federation_Dropship_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Federal Dropship\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049326\",\n    \"symbol\": \"Federation_Dropship_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Federal Dropship\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049328\",\n    \"symbol\": \"Orca_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Orca\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049329\",\n    \"symbol\": \"Orca_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Orca\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049330\",\n    \"symbol\": \"Orca_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Orca\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049331\",\n    \"symbol\": \"Orca_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Orca\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049332\",\n    \"symbol\": \"Orca_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Orca\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049334\",\n    \"symbol\": \"Type9_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Type-9 Heavy\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049335\",\n    \"symbol\": \"Type9_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Type-9 Heavy\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049336\",\n    \"symbol\": \"Type9_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Type-9 Heavy\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049337\",\n    \"symbol\": \"Type9_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Type-9 Heavy\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049338\",\n    \"symbol\": \"Type9_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Type-9 Heavy\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049340\",\n    \"symbol\": \"Python_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Python\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049341\",\n    \"symbol\": \"Python_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Python\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049342\",\n    \"symbol\": \"Python_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Python\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049343\",\n    \"symbol\": \"Python_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Python\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049344\",\n    \"symbol\": \"Python_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Python\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049346\",\n    \"symbol\": \"BelugaLiner_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Beluga Liner\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049347\",\n    \"symbol\": \"BelugaLiner_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Beluga Liner\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049348\",\n    \"symbol\": \"BelugaLiner_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Beluga Liner\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049349\",\n    \"symbol\": \"BelugaLiner_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Beluga Liner\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049350\",\n    \"symbol\": \"BelugaLiner_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Beluga Liner\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049352\",\n    \"symbol\": \"FerDeLance_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Fer-de-Lance\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049353\",\n    \"symbol\": \"FerDeLance_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Fer-de-Lance\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049354\",\n    \"symbol\": \"FerDeLance_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Fer-de-Lance\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049355\",\n    \"symbol\": \"FerDeLance_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Fer-de-Lance\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049356\",\n    \"symbol\": \"FerDeLance_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Fer-de-Lance\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049364\",\n    \"symbol\": \"Anaconda_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Anaconda\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049365\",\n    \"symbol\": \"Anaconda_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Anaconda\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049366\",\n    \"symbol\": \"Anaconda_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Anaconda\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049367\",\n    \"symbol\": \"Anaconda_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Anaconda\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049368\",\n    \"symbol\": \"Anaconda_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Anaconda\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049370\",\n    \"symbol\": \"Federation_Corvette_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Federal Corvette\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049371\",\n    \"symbol\": \"Federation_Corvette_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Federal Corvette\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049372\",\n    \"symbol\": \"Federation_Corvette_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Federal Corvette\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049373\",\n    \"symbol\": \"Federation_Corvette_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Federal Corvette\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049374\",\n    \"symbol\": \"Federation_Corvette_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Federal Corvette\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049376\",\n    \"symbol\": \"Cutter_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Imperial Cutter\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049377\",\n    \"symbol\": \"Cutter_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Imperial Cutter\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049378\",\n    \"symbol\": \"Cutter_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Imperial Cutter\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049379\",\n    \"symbol\": \"Cutter_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Imperial Cutter\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049380\",\n    \"symbol\": \"Cutter_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Imperial Cutter\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049381\",\n    \"symbol\": \"Hpt_PulseLaser_Fixed_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Pulse Laser\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"F\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049382\",\n    \"symbol\": \"Hpt_PulseLaser_Fixed_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Pulse Laser\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049383\",\n    \"symbol\": \"Hpt_PulseLaser_Fixed_Large\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Pulse Laser\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049384\",\n    \"symbol\": \"Hpt_PulseLaser_Fixed_Huge\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Pulse Laser\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049385\",\n    \"symbol\": \"Hpt_PulseLaser_Gimbal_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Pulse Laser\",\n    \"mount\": \"Gimballed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"G\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049386\",\n    \"symbol\": \"Hpt_PulseLaser_Gimbal_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Pulse Laser\",\n    \"mount\": \"Gimballed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"F\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049387\",\n    \"symbol\": \"Hpt_PulseLaser_Gimbal_Large\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Pulse Laser\",\n    \"mount\": \"Gimballed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049388\",\n    \"symbol\": \"Hpt_PulseLaser_Turret_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Pulse Laser\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"G\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049389\",\n    \"symbol\": \"Hpt_PulseLaser_Turret_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Pulse Laser\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"F\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049390\",\n    \"symbol\": \"Hpt_PulseLaser_Turret_Large\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Pulse Laser\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"F\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049400\",\n    \"symbol\": \"Hpt_PulseLaserBurst_Fixed_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Burst Laser\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"F\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049401\",\n    \"symbol\": \"Hpt_PulseLaserBurst_Fixed_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Burst Laser\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049402\",\n    \"symbol\": \"Hpt_PulseLaserBurst_Fixed_Large\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Burst Laser\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049403\",\n    \"symbol\": \"Hpt_PulseLaserBurst_Fixed_Huge\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Burst Laser\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049404\",\n    \"symbol\": \"Hpt_PulseLaserBurst_Gimbal_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Burst Laser\",\n    \"mount\": \"Gimballed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"G\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049405\",\n    \"symbol\": \"Hpt_PulseLaserBurst_Gimbal_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Burst Laser\",\n    \"mount\": \"Gimballed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"F\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049406\",\n    \"symbol\": \"Hpt_PulseLaserBurst_Gimbal_Large\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Burst Laser\",\n    \"mount\": \"Gimballed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049407\",\n    \"symbol\": \"Hpt_PulseLaserBurst_Turret_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Burst Laser\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"G\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049408\",\n    \"symbol\": \"Hpt_PulseLaserBurst_Turret_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Burst Laser\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"F\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049409\",\n    \"symbol\": \"Hpt_PulseLaserBurst_Turret_Large\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Burst Laser\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049428\",\n    \"symbol\": \"Hpt_BeamLaser_Fixed_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Beam Laser\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049429\",\n    \"symbol\": \"Hpt_BeamLaser_Fixed_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Beam Laser\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049430\",\n    \"symbol\": \"Hpt_BeamLaser_Fixed_Large\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Beam Laser\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049431\",\n    \"symbol\": \"Hpt_BeamLaser_Fixed_Huge\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Beam Laser\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049432\",\n    \"symbol\": \"Hpt_BeamLaser_Gimbal_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Beam Laser\",\n    \"mount\": \"Gimballed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049433\",\n    \"symbol\": \"Hpt_BeamLaser_Gimbal_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Beam Laser\",\n    \"mount\": \"Gimballed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049434\",\n    \"symbol\": \"Hpt_BeamLaser_Gimbal_Large\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Beam Laser\",\n    \"mount\": \"Gimballed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049435\",\n    \"symbol\": \"Hpt_BeamLaser_Turret_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Beam Laser\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"F\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049436\",\n    \"symbol\": \"Hpt_BeamLaser_Turret_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Beam Laser\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049437\",\n    \"symbol\": \"Hpt_BeamLaser_Turret_Large\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Beam Laser\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049438\",\n    \"symbol\": \"Hpt_Cannon_Fixed_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Cannon\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049439\",\n    \"symbol\": \"Hpt_Cannon_Fixed_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Cannon\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049440\",\n    \"symbol\": \"Hpt_Cannon_Fixed_Large\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Cannon\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049441\",\n    \"symbol\": \"Hpt_Cannon_Fixed_Huge\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Cannon\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049442\",\n    \"symbol\": \"Hpt_Cannon_Gimbal_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Cannon\",\n    \"mount\": \"Gimballed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049443\",\n    \"symbol\": \"Hpt_Cannon_Gimbal_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Cannon\",\n    \"mount\": \"Gimballed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049444\",\n    \"symbol\": \"Hpt_Cannon_Gimbal_Huge\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Cannon\",\n    \"mount\": \"Gimballed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049445\",\n    \"symbol\": \"Hpt_Cannon_Turret_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Cannon\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"F\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049446\",\n    \"symbol\": \"Hpt_Cannon_Turret_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Cannon\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049447\",\n    \"symbol\": \"Hpt_Cannon_Turret_Large\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Cannon\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049448\",\n    \"symbol\": \"Hpt_Slugshot_Fixed_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Fragment Cannon\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049449\",\n    \"symbol\": \"Hpt_Slugshot_Fixed_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Fragment Cannon\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049450\",\n    \"symbol\": \"Hpt_Slugshot_Fixed_Large\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Fragment Cannon\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049451\",\n    \"symbol\": \"Hpt_Slugshot_Gimbal_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Fragment Cannon\",\n    \"mount\": \"Gimballed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049452\",\n    \"symbol\": \"Hpt_Slugshot_Gimbal_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Fragment Cannon\",\n    \"mount\": \"Gimballed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049453\",\n    \"symbol\": \"Hpt_Slugshot_Turret_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Fragment Cannon\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049454\",\n    \"symbol\": \"Hpt_Slugshot_Turret_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Fragment Cannon\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049455\",\n    \"symbol\": \"Hpt_MultiCannon_Fixed_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Multi-Cannon\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"F\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049456\",\n    \"symbol\": \"Hpt_MultiCannon_Fixed_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Multi-Cannon\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049457\",\n    \"symbol\": \"Hpt_MultiCannon_Fixed_Large\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Multi-Cannon\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049458\",\n    \"symbol\": \"Hpt_MultiCannon_Fixed_Huge\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Multi-Cannon\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049459\",\n    \"symbol\": \"Hpt_MultiCannon_Gimbal_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Multi-Cannon\",\n    \"mount\": \"Gimballed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"G\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049460\",\n    \"symbol\": \"Hpt_MultiCannon_Gimbal_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Multi-Cannon\",\n    \"mount\": \"Gimballed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"F\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049461\",\n    \"symbol\": \"Hpt_MultiCannon_Gimbal_Large\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Multi-Cannon\",\n    \"mount\": \"Gimballed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049462\",\n    \"symbol\": \"Hpt_MultiCannon_Turret_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Multi-Cannon\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"G\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049463\",\n    \"symbol\": \"Hpt_MultiCannon_Turret_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Multi-Cannon\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"F\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049464\",\n    \"symbol\": \"Hpt_MultiCannon_Turret_Large\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Multi-Cannon\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"E\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128049465\",\n    \"symbol\": \"Hpt_PlasmaAccelerator_Fixed_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Plasma Accelerator\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049466\",\n    \"symbol\": \"Hpt_PlasmaAccelerator_Fixed_Large\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Plasma Accelerator\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049467\",\n    \"symbol\": \"Hpt_PlasmaAccelerator_Fixed_Huge\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Plasma Accelerator\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049488\",\n    \"symbol\": \"Hpt_Railgun_Fixed_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Rail Gun\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049489\",\n    \"symbol\": \"Hpt_Railgun_Fixed_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Rail Gun\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049492\",\n    \"symbol\": \"Hpt_BasicMissileRack_Fixed_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Seeker Missile Rack\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"Seeker\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049493\",\n    \"symbol\": \"Hpt_BasicMissileRack_Fixed_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Seeker Missile Rack\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"Seeker\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049494\",\n    \"symbol\": \"Hpt_BasicMissileRack_Fixed_Large\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Seeker Missile Rack\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"Seeker\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"A\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128049500\",\n    \"symbol\": \"Hpt_MineLauncher_Fixed_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Mine Launcher\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049501\",\n    \"symbol\": \"Hpt_MineLauncher_Fixed_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Mine Launcher\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049509\",\n    \"symbol\": \"Hpt_AdvancedTorpPylon_Fixed_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Torpedo Pylon\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"Seeker\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049510\",\n    \"symbol\": \"Hpt_AdvancedTorpPylon_Fixed_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Torpedo Pylon\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"Seeker\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049511\",\n    \"symbol\": \"Hpt_AdvancedTorpPylon_Fixed_Large\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Torpedo Pylon\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"Seeker\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128049513\",\n    \"symbol\": \"Hpt_ChaffLauncher_Tiny\",\n    \"category\": \"utility\",\n    \"name\": \"Chaff Launcher\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"0\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049516\",\n    \"symbol\": \"Hpt_ElectronicCountermeasure_Tiny\",\n    \"category\": \"utility\",\n    \"name\": \"Electronic Countermeasure\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"0\",\n    \"rating\": \"F\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049519\",\n    \"symbol\": \"Hpt_HeatSinkLauncher_Turret_Tiny\",\n    \"category\": \"utility\",\n    \"name\": \"Heat Sink Launcher\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"0\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049522\",\n    \"symbol\": \"Hpt_PlasmaPointDefence_Turret_Tiny\",\n    \"category\": \"utility\",\n    \"name\": \"Point Defence\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"0\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049525\",\n    \"symbol\": \"Hpt_MiningLaser_Fixed_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Mining Laser\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049526\",\n    \"symbol\": \"Hpt_MiningLaser_Fixed_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Mining Laser\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049549\",\n    \"symbol\": \"Int_DockingComputer_Standard\",\n    \"category\": \"internal\",\n    \"name\": \"Standard Docking Computer\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064033\",\n    \"symbol\": \"Int_Powerplant_Size2_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064034\",\n    \"symbol\": \"Int_Powerplant_Size2_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064035\",\n    \"symbol\": \"Int_Powerplant_Size2_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064036\",\n    \"symbol\": \"Int_Powerplant_Size2_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064037\",\n    \"symbol\": \"Int_Powerplant_Size2_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064038\",\n    \"symbol\": \"Int_Powerplant_Size3_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064039\",\n    \"symbol\": \"Int_Powerplant_Size3_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064040\",\n    \"symbol\": \"Int_Powerplant_Size3_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064041\",\n    \"symbol\": \"Int_Powerplant_Size3_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064042\",\n    \"symbol\": \"Int_Powerplant_Size3_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064043\",\n    \"symbol\": \"Int_Powerplant_Size4_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064044\",\n    \"symbol\": \"Int_Powerplant_Size4_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064045\",\n    \"symbol\": \"Int_Powerplant_Size4_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064046\",\n    \"symbol\": \"Int_Powerplant_Size4_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064047\",\n    \"symbol\": \"Int_Powerplant_Size4_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064048\",\n    \"symbol\": \"Int_Powerplant_Size5_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064049\",\n    \"symbol\": \"Int_Powerplant_Size5_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064050\",\n    \"symbol\": \"Int_Powerplant_Size5_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064051\",\n    \"symbol\": \"Int_Powerplant_Size5_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064052\",\n    \"symbol\": \"Int_Powerplant_Size5_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064053\",\n    \"symbol\": \"Int_Powerplant_Size6_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064054\",\n    \"symbol\": \"Int_Powerplant_Size6_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064055\",\n    \"symbol\": \"Int_Powerplant_Size6_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064056\",\n    \"symbol\": \"Int_Powerplant_Size6_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064057\",\n    \"symbol\": \"Int_Powerplant_Size6_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064058\",\n    \"symbol\": \"Int_Powerplant_Size7_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064059\",\n    \"symbol\": \"Int_Powerplant_Size7_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064060\",\n    \"symbol\": \"Int_Powerplant_Size7_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064061\",\n    \"symbol\": \"Int_Powerplant_Size7_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064062\",\n    \"symbol\": \"Int_Powerplant_Size7_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064063\",\n    \"symbol\": \"Int_Powerplant_Size8_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064064\",\n    \"symbol\": \"Int_Powerplant_Size8_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064065\",\n    \"symbol\": \"Int_Powerplant_Size8_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064066\",\n    \"symbol\": \"Int_Powerplant_Size8_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064067\",\n    \"symbol\": \"Int_Powerplant_Size8_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064068\",\n    \"symbol\": \"Int_Engine_Size2_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064069\",\n    \"symbol\": \"Int_Engine_Size2_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064070\",\n    \"symbol\": \"Int_Engine_Size2_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064071\",\n    \"symbol\": \"Int_Engine_Size2_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064072\",\n    \"symbol\": \"Int_Engine_Size2_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064073\",\n    \"symbol\": \"Int_Engine_Size3_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064074\",\n    \"symbol\": \"Int_Engine_Size3_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064075\",\n    \"symbol\": \"Int_Engine_Size3_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064076\",\n    \"symbol\": \"Int_Engine_Size3_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064077\",\n    \"symbol\": \"Int_Engine_Size3_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064078\",\n    \"symbol\": \"Int_Engine_Size4_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064079\",\n    \"symbol\": \"Int_Engine_Size4_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064080\",\n    \"symbol\": \"Int_Engine_Size4_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064081\",\n    \"symbol\": \"Int_Engine_Size4_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064082\",\n    \"symbol\": \"Int_Engine_Size4_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064083\",\n    \"symbol\": \"Int_Engine_Size5_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064084\",\n    \"symbol\": \"Int_Engine_Size5_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064085\",\n    \"symbol\": \"Int_Engine_Size5_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064086\",\n    \"symbol\": \"Int_Engine_Size5_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064087\",\n    \"symbol\": \"Int_Engine_Size5_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064088\",\n    \"symbol\": \"Int_Engine_Size6_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064089\",\n    \"symbol\": \"Int_Engine_Size6_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064090\",\n    \"symbol\": \"Int_Engine_Size6_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064091\",\n    \"symbol\": \"Int_Engine_Size6_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064092\",\n    \"symbol\": \"Int_Engine_Size6_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064093\",\n    \"symbol\": \"Int_Engine_Size7_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064094\",\n    \"symbol\": \"Int_Engine_Size7_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064095\",\n    \"symbol\": \"Int_Engine_Size7_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064096\",\n    \"symbol\": \"Int_Engine_Size7_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064097\",\n    \"symbol\": \"Int_Engine_Size7_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064098\",\n    \"symbol\": \"Int_Engine_Size8_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064099\",\n    \"symbol\": \"Int_Engine_Size8_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064100\",\n    \"symbol\": \"Int_Engine_Size8_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064101\",\n    \"symbol\": \"Int_Engine_Size8_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064102\",\n    \"symbol\": \"Int_Engine_Size8_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064103\",\n    \"symbol\": \"Int_Hyperdrive_Size2_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Frame Shift Drive\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064104\",\n    \"symbol\": \"Int_Hyperdrive_Size2_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Frame Shift Drive\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064105\",\n    \"symbol\": \"Int_Hyperdrive_Size2_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Frame Shift Drive\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064106\",\n    \"symbol\": \"Int_Hyperdrive_Size2_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Frame Shift Drive\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064107\",\n    \"symbol\": \"Int_Hyperdrive_Size2_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Frame Shift Drive\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064108\",\n    \"symbol\": \"Int_Hyperdrive_Size3_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Frame Shift Drive\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064109\",\n    \"symbol\": \"Int_Hyperdrive_Size3_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Frame Shift Drive\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064110\",\n    \"symbol\": \"Int_Hyperdrive_Size3_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Frame Shift Drive\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064111\",\n    \"symbol\": \"Int_Hyperdrive_Size3_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Frame Shift Drive\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064112\",\n    \"symbol\": \"Int_Hyperdrive_Size3_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Frame Shift Drive\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064113\",\n    \"symbol\": \"Int_Hyperdrive_Size4_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Frame Shift Drive\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064114\",\n    \"symbol\": \"Int_Hyperdrive_Size4_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Frame Shift Drive\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064115\",\n    \"symbol\": \"Int_Hyperdrive_Size4_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Frame Shift Drive\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064116\",\n    \"symbol\": \"Int_Hyperdrive_Size4_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Frame Shift Drive\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064117\",\n    \"symbol\": \"Int_Hyperdrive_Size4_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Frame Shift Drive\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064118\",\n    \"symbol\": \"Int_Hyperdrive_Size5_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Frame Shift Drive\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064119\",\n    \"symbol\": \"Int_Hyperdrive_Size5_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Frame Shift Drive\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064120\",\n    \"symbol\": \"Int_Hyperdrive_Size5_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Frame Shift Drive\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064121\",\n    \"symbol\": \"Int_Hyperdrive_Size5_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Frame Shift Drive\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064122\",\n    \"symbol\": \"Int_Hyperdrive_Size5_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Frame Shift Drive\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064123\",\n    \"symbol\": \"Int_Hyperdrive_Size6_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Frame Shift Drive\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064124\",\n    \"symbol\": \"Int_Hyperdrive_Size6_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Frame Shift Drive\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064125\",\n    \"symbol\": \"Int_Hyperdrive_Size6_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Frame Shift Drive\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064126\",\n    \"symbol\": \"Int_Hyperdrive_Size6_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Frame Shift Drive\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064127\",\n    \"symbol\": \"Int_Hyperdrive_Size6_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Frame Shift Drive\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064128\",\n    \"symbol\": \"Int_Hyperdrive_Size7_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Frame Shift Drive\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064129\",\n    \"symbol\": \"Int_Hyperdrive_Size7_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Frame Shift Drive\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064130\",\n    \"symbol\": \"Int_Hyperdrive_Size7_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Frame Shift Drive\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064131\",\n    \"symbol\": \"Int_Hyperdrive_Size7_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Frame Shift Drive\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064132\",\n    \"symbol\": \"Int_Hyperdrive_Size7_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Frame Shift Drive\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064133\",\n    \"symbol\": \"Int_Hyperdrive_Size8_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Frame Shift Drive\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064134\",\n    \"symbol\": \"Int_Hyperdrive_Size8_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Frame Shift Drive\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064135\",\n    \"symbol\": \"Int_Hyperdrive_Size8_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Frame Shift Drive\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064136\",\n    \"symbol\": \"Int_Hyperdrive_Size8_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Frame Shift Drive\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064137\",\n    \"symbol\": \"Int_Hyperdrive_Size8_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Frame Shift Drive\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064138\",\n    \"symbol\": \"Int_LifeSupport_Size1_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064139\",\n    \"symbol\": \"Int_LifeSupport_Size1_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064140\",\n    \"symbol\": \"Int_LifeSupport_Size1_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064141\",\n    \"symbol\": \"Int_LifeSupport_Size1_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064142\",\n    \"symbol\": \"Int_LifeSupport_Size1_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064143\",\n    \"symbol\": \"Int_LifeSupport_Size2_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064144\",\n    \"symbol\": \"Int_LifeSupport_Size2_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064145\",\n    \"symbol\": \"Int_LifeSupport_Size2_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064146\",\n    \"symbol\": \"Int_LifeSupport_Size2_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064147\",\n    \"symbol\": \"Int_LifeSupport_Size2_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064148\",\n    \"symbol\": \"Int_LifeSupport_Size3_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064149\",\n    \"symbol\": \"Int_LifeSupport_Size3_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064150\",\n    \"symbol\": \"Int_LifeSupport_Size3_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064151\",\n    \"symbol\": \"Int_LifeSupport_Size3_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064152\",\n    \"symbol\": \"Int_LifeSupport_Size3_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064153\",\n    \"symbol\": \"Int_LifeSupport_Size4_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064154\",\n    \"symbol\": \"Int_LifeSupport_Size4_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064155\",\n    \"symbol\": \"Int_LifeSupport_Size4_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064156\",\n    \"symbol\": \"Int_LifeSupport_Size4_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064157\",\n    \"symbol\": \"Int_LifeSupport_Size4_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064158\",\n    \"symbol\": \"Int_LifeSupport_Size5_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064159\",\n    \"symbol\": \"Int_LifeSupport_Size5_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064160\",\n    \"symbol\": \"Int_LifeSupport_Size5_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064161\",\n    \"symbol\": \"Int_LifeSupport_Size5_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064162\",\n    \"symbol\": \"Int_LifeSupport_Size5_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064163\",\n    \"symbol\": \"Int_LifeSupport_Size6_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064164\",\n    \"symbol\": \"Int_LifeSupport_Size6_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064165\",\n    \"symbol\": \"Int_LifeSupport_Size6_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064166\",\n    \"symbol\": \"Int_LifeSupport_Size6_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064167\",\n    \"symbol\": \"Int_LifeSupport_Size6_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064168\",\n    \"symbol\": \"Int_LifeSupport_Size7_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064169\",\n    \"symbol\": \"Int_LifeSupport_Size7_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064170\",\n    \"symbol\": \"Int_LifeSupport_Size7_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064171\",\n    \"symbol\": \"Int_LifeSupport_Size7_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064172\",\n    \"symbol\": \"Int_LifeSupport_Size7_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064173\",\n    \"symbol\": \"Int_LifeSupport_Size8_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064174\",\n    \"symbol\": \"Int_LifeSupport_Size8_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064175\",\n    \"symbol\": \"Int_LifeSupport_Size8_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064176\",\n    \"symbol\": \"Int_LifeSupport_Size8_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064177\",\n    \"symbol\": \"Int_LifeSupport_Size8_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064178\",\n    \"symbol\": \"Int_PowerDistributor_Size1_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064179\",\n    \"symbol\": \"Int_PowerDistributor_Size1_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064180\",\n    \"symbol\": \"Int_PowerDistributor_Size1_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064181\",\n    \"symbol\": \"Int_PowerDistributor_Size1_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064182\",\n    \"symbol\": \"Int_PowerDistributor_Size1_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064183\",\n    \"symbol\": \"Int_PowerDistributor_Size2_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064184\",\n    \"symbol\": \"Int_PowerDistributor_Size2_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064185\",\n    \"symbol\": \"Int_PowerDistributor_Size2_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064186\",\n    \"symbol\": \"Int_PowerDistributor_Size2_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064187\",\n    \"symbol\": \"Int_PowerDistributor_Size2_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064188\",\n    \"symbol\": \"Int_PowerDistributor_Size3_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064189\",\n    \"symbol\": \"Int_PowerDistributor_Size3_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064190\",\n    \"symbol\": \"Int_PowerDistributor_Size3_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064191\",\n    \"symbol\": \"Int_PowerDistributor_Size3_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064192\",\n    \"symbol\": \"Int_PowerDistributor_Size3_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064193\",\n    \"symbol\": \"Int_PowerDistributor_Size4_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064194\",\n    \"symbol\": \"Int_PowerDistributor_Size4_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064195\",\n    \"symbol\": \"Int_PowerDistributor_Size4_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064196\",\n    \"symbol\": \"Int_PowerDistributor_Size4_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064197\",\n    \"symbol\": \"Int_PowerDistributor_Size4_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064198\",\n    \"symbol\": \"Int_PowerDistributor_Size5_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064199\",\n    \"symbol\": \"Int_PowerDistributor_Size5_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064200\",\n    \"symbol\": \"Int_PowerDistributor_Size5_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064201\",\n    \"symbol\": \"Int_PowerDistributor_Size5_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064202\",\n    \"symbol\": \"Int_PowerDistributor_Size5_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064203\",\n    \"symbol\": \"Int_PowerDistributor_Size6_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064204\",\n    \"symbol\": \"Int_PowerDistributor_Size6_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064205\",\n    \"symbol\": \"Int_PowerDistributor_Size6_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064206\",\n    \"symbol\": \"Int_PowerDistributor_Size6_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064207\",\n    \"symbol\": \"Int_PowerDistributor_Size6_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064208\",\n    \"symbol\": \"Int_PowerDistributor_Size7_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064209\",\n    \"symbol\": \"Int_PowerDistributor_Size7_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064210\",\n    \"symbol\": \"Int_PowerDistributor_Size7_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064211\",\n    \"symbol\": \"Int_PowerDistributor_Size7_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064212\",\n    \"symbol\": \"Int_PowerDistributor_Size7_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064213\",\n    \"symbol\": \"Int_PowerDistributor_Size8_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064214\",\n    \"symbol\": \"Int_PowerDistributor_Size8_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064215\",\n    \"symbol\": \"Int_PowerDistributor_Size8_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064216\",\n    \"symbol\": \"Int_PowerDistributor_Size8_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064217\",\n    \"symbol\": \"Int_PowerDistributor_Size8_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064218\",\n    \"symbol\": \"Int_Sensors_Size1_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064219\",\n    \"symbol\": \"Int_Sensors_Size1_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064220\",\n    \"symbol\": \"Int_Sensors_Size1_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064221\",\n    \"symbol\": \"Int_Sensors_Size1_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064222\",\n    \"symbol\": \"Int_Sensors_Size1_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064223\",\n    \"symbol\": \"Int_Sensors_Size2_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064224\",\n    \"symbol\": \"Int_Sensors_Size2_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064225\",\n    \"symbol\": \"Int_Sensors_Size2_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064226\",\n    \"symbol\": \"Int_Sensors_Size2_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064227\",\n    \"symbol\": \"Int_Sensors_Size2_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064228\",\n    \"symbol\": \"Int_Sensors_Size3_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064229\",\n    \"symbol\": \"Int_Sensors_Size3_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064230\",\n    \"symbol\": \"Int_Sensors_Size3_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064231\",\n    \"symbol\": \"Int_Sensors_Size3_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064232\",\n    \"symbol\": \"Int_Sensors_Size3_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064233\",\n    \"symbol\": \"Int_Sensors_Size4_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064234\",\n    \"symbol\": \"Int_Sensors_Size4_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064235\",\n    \"symbol\": \"Int_Sensors_Size4_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064236\",\n    \"symbol\": \"Int_Sensors_Size4_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064237\",\n    \"symbol\": \"Int_Sensors_Size4_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064238\",\n    \"symbol\": \"Int_Sensors_Size5_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064239\",\n    \"symbol\": \"Int_Sensors_Size5_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064240\",\n    \"symbol\": \"Int_Sensors_Size5_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064241\",\n    \"symbol\": \"Int_Sensors_Size5_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064242\",\n    \"symbol\": \"Int_Sensors_Size5_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064243\",\n    \"symbol\": \"Int_Sensors_Size6_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064244\",\n    \"symbol\": \"Int_Sensors_Size6_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064245\",\n    \"symbol\": \"Int_Sensors_Size6_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064246\",\n    \"symbol\": \"Int_Sensors_Size6_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064247\",\n    \"symbol\": \"Int_Sensors_Size6_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064248\",\n    \"symbol\": \"Int_Sensors_Size7_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064249\",\n    \"symbol\": \"Int_Sensors_Size7_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064250\",\n    \"symbol\": \"Int_Sensors_Size7_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064251\",\n    \"symbol\": \"Int_Sensors_Size7_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064252\",\n    \"symbol\": \"Int_Sensors_Size7_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064253\",\n    \"symbol\": \"Int_Sensors_Size8_Class1\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064254\",\n    \"symbol\": \"Int_Sensors_Size8_Class2\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064255\",\n    \"symbol\": \"Int_Sensors_Size8_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064256\",\n    \"symbol\": \"Int_Sensors_Size8_Class4\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064257\",\n    \"symbol\": \"Int_Sensors_Size8_Class5\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064258\",\n    \"symbol\": \"Int_ShieldGenerator_Size1_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064259\",\n    \"symbol\": \"Int_ShieldGenerator_Size1_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064260\",\n    \"symbol\": \"Int_ShieldGenerator_Size1_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064262\",\n    \"symbol\": \"Int_ShieldGenerator_Size1_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064263\",\n    \"symbol\": \"Int_ShieldGenerator_Size2_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064264\",\n    \"symbol\": \"Int_ShieldGenerator_Size2_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064265\",\n    \"symbol\": \"Int_ShieldGenerator_Size2_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064266\",\n    \"symbol\": \"Int_ShieldGenerator_Size2_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064267\",\n    \"symbol\": \"Int_ShieldGenerator_Size2_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064268\",\n    \"symbol\": \"Int_ShieldGenerator_Size3_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064269\",\n    \"symbol\": \"Int_ShieldGenerator_Size3_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064270\",\n    \"symbol\": \"Int_ShieldGenerator_Size3_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064271\",\n    \"symbol\": \"Int_ShieldGenerator_Size3_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064272\",\n    \"symbol\": \"Int_ShieldGenerator_Size3_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064273\",\n    \"symbol\": \"Int_ShieldGenerator_Size4_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064274\",\n    \"symbol\": \"Int_ShieldGenerator_Size4_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064275\",\n    \"symbol\": \"Int_ShieldGenerator_Size4_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064276\",\n    \"symbol\": \"Int_ShieldGenerator_Size4_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064277\",\n    \"symbol\": \"Int_ShieldGenerator_Size4_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064278\",\n    \"symbol\": \"Int_ShieldGenerator_Size5_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064279\",\n    \"symbol\": \"Int_ShieldGenerator_Size5_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064280\",\n    \"symbol\": \"Int_ShieldGenerator_Size5_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064281\",\n    \"symbol\": \"Int_ShieldGenerator_Size5_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064282\",\n    \"symbol\": \"Int_ShieldGenerator_Size5_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064283\",\n    \"symbol\": \"Int_ShieldGenerator_Size6_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064284\",\n    \"symbol\": \"Int_ShieldGenerator_Size6_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064285\",\n    \"symbol\": \"Int_ShieldGenerator_Size6_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064286\",\n    \"symbol\": \"Int_ShieldGenerator_Size6_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064287\",\n    \"symbol\": \"Int_ShieldGenerator_Size6_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064288\",\n    \"symbol\": \"Int_ShieldGenerator_Size7_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064289\",\n    \"symbol\": \"Int_ShieldGenerator_Size7_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064290\",\n    \"symbol\": \"Int_ShieldGenerator_Size7_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064291\",\n    \"symbol\": \"Int_ShieldGenerator_Size7_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064292\",\n    \"symbol\": \"Int_ShieldGenerator_Size7_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064293\",\n    \"symbol\": \"Int_ShieldGenerator_Size8_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064294\",\n    \"symbol\": \"Int_ShieldGenerator_Size8_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064295\",\n    \"symbol\": \"Int_ShieldGenerator_Size8_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064296\",\n    \"symbol\": \"Int_ShieldGenerator_Size8_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064297\",\n    \"symbol\": \"Int_ShieldGenerator_Size8_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064298\",\n    \"symbol\": \"Int_ShieldCellBank_Size1_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064299\",\n    \"symbol\": \"Int_ShieldCellBank_Size1_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064300\",\n    \"symbol\": \"Int_ShieldCellBank_Size1_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064301\",\n    \"symbol\": \"Int_ShieldCellBank_Size1_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064302\",\n    \"symbol\": \"Int_ShieldCellBank_Size1_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064303\",\n    \"symbol\": \"Int_ShieldCellBank_Size2_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064304\",\n    \"symbol\": \"Int_ShieldCellBank_Size2_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064305\",\n    \"symbol\": \"Int_ShieldCellBank_Size2_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064306\",\n    \"symbol\": \"Int_ShieldCellBank_Size2_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064307\",\n    \"symbol\": \"Int_ShieldCellBank_Size2_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064308\",\n    \"symbol\": \"Int_ShieldCellBank_Size3_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064309\",\n    \"symbol\": \"Int_ShieldCellBank_Size3_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064310\",\n    \"symbol\": \"Int_ShieldCellBank_Size3_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064311\",\n    \"symbol\": \"Int_ShieldCellBank_Size3_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064312\",\n    \"symbol\": \"Int_ShieldCellBank_Size3_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064313\",\n    \"symbol\": \"Int_ShieldCellBank_Size4_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064314\",\n    \"symbol\": \"Int_ShieldCellBank_Size4_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064315\",\n    \"symbol\": \"Int_ShieldCellBank_Size4_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064316\",\n    \"symbol\": \"Int_ShieldCellBank_Size4_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064317\",\n    \"symbol\": \"Int_ShieldCellBank_Size4_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064318\",\n    \"symbol\": \"Int_ShieldCellBank_Size5_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064319\",\n    \"symbol\": \"Int_ShieldCellBank_Size5_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064320\",\n    \"symbol\": \"Int_ShieldCellBank_Size5_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064321\",\n    \"symbol\": \"Int_ShieldCellBank_Size5_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064322\",\n    \"symbol\": \"Int_ShieldCellBank_Size5_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064323\",\n    \"symbol\": \"Int_ShieldCellBank_Size6_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064324\",\n    \"symbol\": \"Int_ShieldCellBank_Size6_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064325\",\n    \"symbol\": \"Int_ShieldCellBank_Size6_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064326\",\n    \"symbol\": \"Int_ShieldCellBank_Size6_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064327\",\n    \"symbol\": \"Int_ShieldCellBank_Size6_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064328\",\n    \"symbol\": \"Int_ShieldCellBank_Size7_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064329\",\n    \"symbol\": \"Int_ShieldCellBank_Size7_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064330\",\n    \"symbol\": \"Int_ShieldCellBank_Size7_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064331\",\n    \"symbol\": \"Int_ShieldCellBank_Size7_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064332\",\n    \"symbol\": \"Int_ShieldCellBank_Size7_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064333\",\n    \"symbol\": \"Int_ShieldCellBank_Size8_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064334\",\n    \"symbol\": \"Int_ShieldCellBank_Size8_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064335\",\n    \"symbol\": \"Int_ShieldCellBank_Size8_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064336\",\n    \"symbol\": \"Int_ShieldCellBank_Size8_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064337\",\n    \"symbol\": \"Int_ShieldCellBank_Size8_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Cell Bank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064338\",\n    \"symbol\": \"Int_CargoRack_Size1_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Cargo Rack\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064339\",\n    \"symbol\": \"Int_CargoRack_Size2_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Cargo Rack\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064340\",\n    \"symbol\": \"Int_CargoRack_Size3_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Cargo Rack\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064341\",\n    \"symbol\": \"Int_CargoRack_Size4_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Cargo Rack\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064342\",\n    \"symbol\": \"Int_CargoRack_Size5_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Cargo Rack\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064343\",\n    \"symbol\": \"Int_CargoRack_Size6_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Cargo Rack\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064344\",\n    \"symbol\": \"Int_CargoRack_Size7_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Cargo Rack\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064345\",\n    \"symbol\": \"Int_CargoRack_Size8_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Cargo Rack\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064346\",\n    \"symbol\": \"Int_FuelTank_Size1_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Fuel Tank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064347\",\n    \"symbol\": \"Int_FuelTank_Size2_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Fuel Tank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064348\",\n    \"symbol\": \"Int_FuelTank_Size3_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Fuel Tank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064349\",\n    \"symbol\": \"Int_FuelTank_Size4_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Fuel Tank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064350\",\n    \"symbol\": \"Int_FuelTank_Size5_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Fuel Tank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064351\",\n    \"symbol\": \"Int_FuelTank_Size6_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Fuel Tank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064352\",\n    \"symbol\": \"Int_FuelTank_Size7_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Fuel Tank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128064353\",\n    \"symbol\": \"Int_FuelTank_Size8_Class3\",\n    \"category\": \"standard\",\n    \"name\": \"Fuel Tank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128066402\",\n    \"symbol\": \"Int_DroneControl_ResourceSiphon\",\n    \"category\": \"internal\",\n    \"name\": \"Limpet Control\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128066532\",\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size1_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Hatch Breaker Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128066533\",\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size1_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Hatch Breaker Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128066534\",\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size1_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Hatch Breaker Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128066535\",\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size1_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Hatch Breaker Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128066536\",\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size1_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Hatch Breaker Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128066537\",\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size3_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Hatch Breaker Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128066538\",\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size3_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Hatch Breaker Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128066539\",\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size3_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Hatch Breaker Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128066540\",\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size3_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Hatch Breaker Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128066541\",\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size3_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Hatch Breaker Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128066542\",\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size5_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Hatch Breaker Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128066543\",\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size5_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Hatch Breaker Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128066544\",\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size5_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Hatch Breaker Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128066545\",\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size5_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Hatch Breaker Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128066546\",\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size5_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Hatch Breaker Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128066547\",\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size7_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Hatch Breaker Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128066548\",\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size7_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Hatch Breaker Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128066549\",\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size7_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Hatch Breaker Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128066550\",\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size7_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Hatch Breaker Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128066551\",\n    \"symbol\": \"Int_DroneControl_ResourceSiphon_Size7_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Hatch Breaker Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128662520\",\n    \"symbol\": \"Hpt_CargoScanner_Size0_Class1\",\n    \"category\": \"utility\",\n    \"name\": \"Cargo Scanner\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"0\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128662521\",\n    \"symbol\": \"Hpt_CargoScanner_Size0_Class2\",\n    \"category\": \"utility\",\n    \"name\": \"Cargo Scanner\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"0\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128662522\",\n    \"symbol\": \"Hpt_CargoScanner_Size0_Class3\",\n    \"category\": \"utility\",\n    \"name\": \"Cargo Scanner\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"0\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128662523\",\n    \"symbol\": \"Hpt_CargoScanner_Size0_Class4\",\n    \"category\": \"utility\",\n    \"name\": \"Cargo Scanner\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"0\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128662524\",\n    \"symbol\": \"Hpt_CargoScanner_Size0_Class5\",\n    \"category\": \"utility\",\n    \"name\": \"Cargo Scanner\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"0\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128662525\",\n    \"symbol\": \"Hpt_CloudScanner_Size0_Class1\",\n    \"category\": \"utility\",\n    \"name\": \"Frame Shift Wake Scanner\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"0\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128662526\",\n    \"symbol\": \"Hpt_CloudScanner_Size0_Class2\",\n    \"category\": \"utility\",\n    \"name\": \"Frame Shift Wake Scanner\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"0\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128662527\",\n    \"symbol\": \"Hpt_CloudScanner_Size0_Class3\",\n    \"category\": \"utility\",\n    \"name\": \"Frame Shift Wake Scanner\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"0\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128662528\",\n    \"symbol\": \"Hpt_CloudScanner_Size0_Class4\",\n    \"category\": \"utility\",\n    \"name\": \"Frame Shift Wake Scanner\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"0\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128662529\",\n    \"symbol\": \"Hpt_CloudScanner_Size0_Class5\",\n    \"category\": \"utility\",\n    \"name\": \"Frame Shift Wake Scanner\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"0\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128662530\",\n    \"symbol\": \"Hpt_CrimeScanner_Size0_Class1\",\n    \"category\": \"utility\",\n    \"name\": \"Kill Warrant Scanner\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"0\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128662531\",\n    \"symbol\": \"Hpt_CrimeScanner_Size0_Class2\",\n    \"category\": \"utility\",\n    \"name\": \"Kill Warrant Scanner\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"0\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128662532\",\n    \"symbol\": \"Hpt_CrimeScanner_Size0_Class3\",\n    \"category\": \"utility\",\n    \"name\": \"Kill Warrant Scanner\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"0\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128662533\",\n    \"symbol\": \"Hpt_CrimeScanner_Size0_Class4\",\n    \"category\": \"utility\",\n    \"name\": \"Kill Warrant Scanner\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"0\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128662534\",\n    \"symbol\": \"Hpt_CrimeScanner_Size0_Class5\",\n    \"category\": \"utility\",\n    \"name\": \"Kill Warrant Scanner\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"0\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128662535\",\n    \"symbol\": \"Int_StellarBodyDiscoveryScanner_Standard\",\n    \"category\": \"internal\",\n    \"name\": \"Basic Discovery Scanner\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"removed\"\n  },\n  {\n    \"id\": \"128663560\",\n    \"symbol\": \"Int_StellarBodyDiscoveryScanner_Intermediate\",\n    \"category\": \"internal\",\n    \"name\": \"Intermediate Discovery Scanner\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"D\",\n    \"entitlement\": \"removed\"\n  },\n  {\n    \"id\": \"128663561\",\n    \"symbol\": \"Int_StellarBodyDiscoveryScanner_Advanced\",\n    \"category\": \"internal\",\n    \"name\": \"Advanced Discovery Scanner\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"C\",\n    \"entitlement\": \"removed\"\n  },\n  {\n    \"id\": \"128666634\",\n    \"symbol\": \"Int_DetailedSurfaceScanner_Tiny\",\n    \"category\": \"internal\",\n    \"name\": \"Detailed Surface Scanner\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666635\",\n    \"symbol\": \"Int_PowerPlant_Size2_Class1_free\",\n    \"category\": \"standard\",\n    \"name\": \"Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666636\",\n    \"symbol\": \"Int_Engine_Size2_Class1_free\",\n    \"category\": \"standard\",\n    \"name\": \"Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666637\",\n    \"symbol\": \"Int_Hyperdrive_Size2_Class1_free\",\n    \"category\": \"standard\",\n    \"name\": \"Frame Shift Drive\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666638\",\n    \"symbol\": \"Int_LifeSupport_Size1_Class1_free\",\n    \"category\": \"standard\",\n    \"name\": \"Life Support\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666639\",\n    \"symbol\": \"Int_PowerDistributor_Size1_Class1_free\",\n    \"category\": \"standard\",\n    \"name\": \"Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666640\",\n    \"symbol\": \"Int_Sensors_Size1_Class1_free\",\n    \"category\": \"standard\",\n    \"name\": \"Sensors\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666641\",\n    \"symbol\": \"Int_ShieldGenerator_Size2_Class1_free\",\n    \"category\": \"internal\",\n    \"name\": \"Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666642\",\n    \"symbol\": \"Int_StellarBodyDiscoveryScanner_Standard_free\",\n    \"category\": \"internal\",\n    \"name\": \"Basic Discovery Scanner\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666643\",\n    \"symbol\": \"Int_CargoRack_Size2_Class1_free\",\n    \"category\": \"internal\",\n    \"name\": \"Cargo Rack\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666644\",\n    \"symbol\": \"Int_FuelScoop_Size1_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666645\",\n    \"symbol\": \"Int_FuelScoop_Size2_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666646\",\n    \"symbol\": \"Int_FuelScoop_Size3_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666647\",\n    \"symbol\": \"Int_FuelScoop_Size4_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666648\",\n    \"symbol\": \"Int_FuelScoop_Size5_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666649\",\n    \"symbol\": \"Int_FuelScoop_Size6_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666650\",\n    \"symbol\": \"Int_FuelScoop_Size7_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666651\",\n    \"symbol\": \"Int_FuelScoop_Size8_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666652\",\n    \"symbol\": \"Int_FuelScoop_Size1_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666653\",\n    \"symbol\": \"Int_FuelScoop_Size2_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666654\",\n    \"symbol\": \"Int_FuelScoop_Size3_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666655\",\n    \"symbol\": \"Int_FuelScoop_Size4_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666656\",\n    \"symbol\": \"Int_FuelScoop_Size5_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666657\",\n    \"symbol\": \"Int_FuelScoop_Size6_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666658\",\n    \"symbol\": \"Int_FuelScoop_Size7_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666659\",\n    \"symbol\": \"Int_FuelScoop_Size8_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666660\",\n    \"symbol\": \"Int_FuelScoop_Size1_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666661\",\n    \"symbol\": \"Int_FuelScoop_Size2_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666662\",\n    \"symbol\": \"Int_FuelScoop_Size3_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666663\",\n    \"symbol\": \"Int_FuelScoop_Size4_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666664\",\n    \"symbol\": \"Int_FuelScoop_Size5_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666665\",\n    \"symbol\": \"Int_FuelScoop_Size6_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666666\",\n    \"symbol\": \"Int_FuelScoop_Size7_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666667\",\n    \"symbol\": \"Int_FuelScoop_Size8_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666668\",\n    \"symbol\": \"Int_FuelScoop_Size1_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666669\",\n    \"symbol\": \"Int_FuelScoop_Size2_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666670\",\n    \"symbol\": \"Int_FuelScoop_Size3_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666671\",\n    \"symbol\": \"Int_FuelScoop_Size4_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666672\",\n    \"symbol\": \"Int_FuelScoop_Size5_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666673\",\n    \"symbol\": \"Int_FuelScoop_Size6_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666674\",\n    \"symbol\": \"Int_FuelScoop_Size7_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666675\",\n    \"symbol\": \"Int_FuelScoop_Size8_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666676\",\n    \"symbol\": \"Int_FuelScoop_Size1_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666677\",\n    \"symbol\": \"Int_FuelScoop_Size2_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666678\",\n    \"symbol\": \"Int_FuelScoop_Size3_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666679\",\n    \"symbol\": \"Int_FuelScoop_Size4_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666680\",\n    \"symbol\": \"Int_FuelScoop_Size5_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666681\",\n    \"symbol\": \"Int_FuelScoop_Size6_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666682\",\n    \"symbol\": \"Int_FuelScoop_Size7_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666683\",\n    \"symbol\": \"Int_FuelScoop_Size8_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Scoop\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666684\",\n    \"symbol\": \"Int_Refinery_Size1_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Refinery\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666685\",\n    \"symbol\": \"Int_Refinery_Size2_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Refinery\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666686\",\n    \"symbol\": \"Int_Refinery_Size3_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Refinery\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666687\",\n    \"symbol\": \"Int_Refinery_Size4_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Refinery\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666688\",\n    \"symbol\": \"Int_Refinery_Size1_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Refinery\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666689\",\n    \"symbol\": \"Int_Refinery_Size2_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Refinery\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666690\",\n    \"symbol\": \"Int_Refinery_Size3_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Refinery\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666691\",\n    \"symbol\": \"Int_Refinery_Size4_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Refinery\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666692\",\n    \"symbol\": \"Int_Refinery_Size1_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Refinery\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666693\",\n    \"symbol\": \"Int_Refinery_Size2_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Refinery\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666694\",\n    \"symbol\": \"Int_Refinery_Size3_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Refinery\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666695\",\n    \"symbol\": \"Int_Refinery_Size4_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Refinery\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666696\",\n    \"symbol\": \"Int_Refinery_Size1_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Refinery\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666697\",\n    \"symbol\": \"Int_Refinery_Size2_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Refinery\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666698\",\n    \"symbol\": \"Int_Refinery_Size3_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Refinery\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666699\",\n    \"symbol\": \"Int_Refinery_Size4_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Refinery\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666700\",\n    \"symbol\": \"Int_Refinery_Size1_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Refinery\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666701\",\n    \"symbol\": \"Int_Refinery_Size2_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Refinery\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666702\",\n    \"symbol\": \"Int_Refinery_Size3_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Refinery\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666703\",\n    \"symbol\": \"Int_Refinery_Size4_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Refinery\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666704\",\n    \"symbol\": \"Int_FSDInterdictor_Size1_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Frame Shift Drive Interdictor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666705\",\n    \"symbol\": \"Int_FSDInterdictor_Size2_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Frame Shift Drive Interdictor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666706\",\n    \"symbol\": \"Int_FSDInterdictor_Size3_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Frame Shift Drive Interdictor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666707\",\n    \"symbol\": \"Int_FSDInterdictor_Size4_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Frame Shift Drive Interdictor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666708\",\n    \"symbol\": \"Int_FSDInterdictor_Size1_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Frame Shift Drive Interdictor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666709\",\n    \"symbol\": \"Int_FSDInterdictor_Size2_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Frame Shift Drive Interdictor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666710\",\n    \"symbol\": \"Int_FSDInterdictor_Size3_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Frame Shift Drive Interdictor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666711\",\n    \"symbol\": \"Int_FSDInterdictor_Size4_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Frame Shift Drive Interdictor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666712\",\n    \"symbol\": \"Int_FSDInterdictor_Size1_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Frame Shift Drive Interdictor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666713\",\n    \"symbol\": \"Int_FSDInterdictor_Size2_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Frame Shift Drive Interdictor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666714\",\n    \"symbol\": \"Int_FSDInterdictor_Size3_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Frame Shift Drive Interdictor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666715\",\n    \"symbol\": \"Int_FSDInterdictor_Size4_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Frame Shift Drive Interdictor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666716\",\n    \"symbol\": \"Int_FSDInterdictor_Size1_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Frame Shift Drive Interdictor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666717\",\n    \"symbol\": \"Int_FSDInterdictor_Size2_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Frame Shift Drive Interdictor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666718\",\n    \"symbol\": \"Int_FSDInterdictor_Size3_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Frame Shift Drive Interdictor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666719\",\n    \"symbol\": \"Int_FSDInterdictor_Size4_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Frame Shift Drive Interdictor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666720\",\n    \"symbol\": \"Int_FSDInterdictor_Size1_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Frame Shift Drive Interdictor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666721\",\n    \"symbol\": \"Int_FSDInterdictor_Size2_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Frame Shift Drive Interdictor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666722\",\n    \"symbol\": \"Int_FSDInterdictor_Size3_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Frame Shift Drive Interdictor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666723\",\n    \"symbol\": \"Int_FSDInterdictor_Size4_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Frame Shift Drive Interdictor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666724\",\n    \"symbol\": \"Hpt_DumbfireMissileRack_Fixed_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Missile Rack\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"Dumbfire\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128666725\",\n    \"symbol\": \"Hpt_DumbfireMissileRack_Fixed_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Missile Rack\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"Dumbfire\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667018\",\n    \"symbol\": \"Int_FuelTank_Size1_Class3_free\",\n    \"category\": \"standard\",\n    \"name\": \"Fuel Tank\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667598\",\n    \"symbol\": \"Int_Repairer_Size1_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667599\",\n    \"symbol\": \"Int_Repairer_Size2_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667600\",\n    \"symbol\": \"Int_Repairer_Size3_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667601\",\n    \"symbol\": \"Int_Repairer_Size4_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667602\",\n    \"symbol\": \"Int_Repairer_Size5_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667603\",\n    \"symbol\": \"Int_Repairer_Size6_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667604\",\n    \"symbol\": \"Int_Repairer_Size7_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667605\",\n    \"symbol\": \"Int_Repairer_Size8_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667606\",\n    \"symbol\": \"Int_Repairer_Size1_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667607\",\n    \"symbol\": \"Int_Repairer_Size2_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667608\",\n    \"symbol\": \"Int_Repairer_Size3_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667609\",\n    \"symbol\": \"Int_Repairer_Size4_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667610\",\n    \"symbol\": \"Int_Repairer_Size5_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667611\",\n    \"symbol\": \"Int_Repairer_Size6_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667612\",\n    \"symbol\": \"Int_Repairer_Size7_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667613\",\n    \"symbol\": \"Int_Repairer_Size8_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667614\",\n    \"symbol\": \"Int_Repairer_Size1_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667615\",\n    \"symbol\": \"Int_Repairer_Size2_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667616\",\n    \"symbol\": \"Int_Repairer_Size3_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667617\",\n    \"symbol\": \"Int_Repairer_Size4_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667618\",\n    \"symbol\": \"Int_Repairer_Size5_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667619\",\n    \"symbol\": \"Int_Repairer_Size6_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667620\",\n    \"symbol\": \"Int_Repairer_Size7_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667621\",\n    \"symbol\": \"Int_Repairer_Size8_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667622\",\n    \"symbol\": \"Int_Repairer_Size1_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667623\",\n    \"symbol\": \"Int_Repairer_Size2_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667624\",\n    \"symbol\": \"Int_Repairer_Size3_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667625\",\n    \"symbol\": \"Int_Repairer_Size4_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667626\",\n    \"symbol\": \"Int_Repairer_Size5_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667627\",\n    \"symbol\": \"Int_Repairer_Size6_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667628\",\n    \"symbol\": \"Int_Repairer_Size7_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667629\",\n    \"symbol\": \"Int_Repairer_Size8_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667630\",\n    \"symbol\": \"Int_Repairer_Size1_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667631\",\n    \"symbol\": \"Int_Repairer_Size2_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667632\",\n    \"symbol\": \"Int_Repairer_Size3_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667633\",\n    \"symbol\": \"Int_Repairer_Size4_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667634\",\n    \"symbol\": \"Int_Repairer_Size5_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667635\",\n    \"symbol\": \"Int_Repairer_Size6_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667636\",\n    \"symbol\": \"Int_Repairer_Size7_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128667637\",\n    \"symbol\": \"Int_Repairer_Size8_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Auto Field-Maintenance Unit\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128668532\",\n    \"symbol\": \"Hpt_ShieldBooster_Size0_Class1\",\n    \"category\": \"utility\",\n    \"name\": \"Shield Booster\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"0\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128668533\",\n    \"symbol\": \"Hpt_ShieldBooster_Size0_Class2\",\n    \"category\": \"utility\",\n    \"name\": \"Shield Booster\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"0\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128668534\",\n    \"symbol\": \"Hpt_ShieldBooster_Size0_Class3\",\n    \"category\": \"utility\",\n    \"name\": \"Shield Booster\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"0\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128668535\",\n    \"symbol\": \"Hpt_ShieldBooster_Size0_Class4\",\n    \"category\": \"utility\",\n    \"name\": \"Shield Booster\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"0\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128668536\",\n    \"symbol\": \"Hpt_ShieldBooster_Size0_Class5\",\n    \"category\": \"utility\",\n    \"name\": \"Shield Booster\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"0\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128668537\",\n    \"symbol\": \"Int_HullReinforcement_Size1_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Hull Reinforcement Package\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128668538\",\n    \"symbol\": \"Int_HullReinforcement_Size1_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Hull Reinforcement Package\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128668539\",\n    \"symbol\": \"Int_HullReinforcement_Size2_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Hull Reinforcement Package\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128668540\",\n    \"symbol\": \"Int_HullReinforcement_Size2_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Hull Reinforcement Package\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128668541\",\n    \"symbol\": \"Int_HullReinforcement_Size3_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Hull Reinforcement Package\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128668542\",\n    \"symbol\": \"Int_HullReinforcement_Size3_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Hull Reinforcement Package\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128668543\",\n    \"symbol\": \"Int_HullReinforcement_Size4_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Hull Reinforcement Package\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128668544\",\n    \"symbol\": \"Int_HullReinforcement_Size4_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Hull Reinforcement Package\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128668545\",\n    \"symbol\": \"Int_HullReinforcement_Size5_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Hull Reinforcement Package\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128668546\",\n    \"symbol\": \"Int_HullReinforcement_Size5_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Hull Reinforcement Package\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671120\",\n    \"symbol\": \"Hpt_Cannon_Gimbal_Large\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Cannon\",\n    \"mount\": \"Gimballed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671218\",\n    \"symbol\": \"DiamondBack_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Diamondback Scout\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671219\",\n    \"symbol\": \"DiamondBack_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Diamondback Scout\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671220\",\n    \"symbol\": \"DiamondBack_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Diamondback Scout\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671221\",\n    \"symbol\": \"DiamondBack_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Diamondback Scout\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671222\",\n    \"symbol\": \"DiamondBack_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Diamondback Scout\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671224\",\n    \"symbol\": \"Empire_Courier_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Imperial Courier\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671225\",\n    \"symbol\": \"Empire_Courier_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Imperial Courier\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671226\",\n    \"symbol\": \"Empire_Courier_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Imperial Courier\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671227\",\n    \"symbol\": \"Empire_Courier_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Imperial Courier\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671228\",\n    \"symbol\": \"Empire_Courier_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Imperial Courier\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671229\",\n    \"symbol\": \"Int_DroneControl_Collection_Size1_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Collector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671230\",\n    \"symbol\": \"Int_DroneControl_Collection_Size1_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Collector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671231\",\n    \"symbol\": \"Int_DroneControl_Collection_Size1_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Collector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671232\",\n    \"symbol\": \"Int_DroneControl_Collection_Size1_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Collector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671233\",\n    \"symbol\": \"Int_DroneControl_Collection_Size1_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Collector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671234\",\n    \"symbol\": \"Int_DroneControl_Collection_Size3_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Collector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671235\",\n    \"symbol\": \"Int_DroneControl_Collection_Size3_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Collector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671236\",\n    \"symbol\": \"Int_DroneControl_Collection_Size3_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Collector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671237\",\n    \"symbol\": \"Int_DroneControl_Collection_Size3_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Collector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671238\",\n    \"symbol\": \"Int_DroneControl_Collection_Size3_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Collector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671239\",\n    \"symbol\": \"Int_DroneControl_Collection_Size5_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Collector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671240\",\n    \"symbol\": \"Int_DroneControl_Collection_Size5_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Collector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671241\",\n    \"symbol\": \"Int_DroneControl_Collection_Size5_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Collector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671242\",\n    \"symbol\": \"Int_DroneControl_Collection_Size5_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Collector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671243\",\n    \"symbol\": \"Int_DroneControl_Collection_Size5_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Collector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671244\",\n    \"symbol\": \"Int_DroneControl_Collection_Size7_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Collector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671245\",\n    \"symbol\": \"Int_DroneControl_Collection_Size7_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Collector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671246\",\n    \"symbol\": \"Int_DroneControl_Collection_Size7_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Collector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671247\",\n    \"symbol\": \"Int_DroneControl_Collection_Size7_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Collector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671248\",\n    \"symbol\": \"Int_DroneControl_Collection_Size7_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Collector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671249\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size1_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Transfer Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671250\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size1_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Transfer Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671251\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size1_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Transfer Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671252\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size1_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Transfer Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671253\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size1_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Transfer Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671254\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size3_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Transfer Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671255\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size3_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Transfer Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671256\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size3_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Transfer Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671257\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size3_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Transfer Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671258\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size3_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Transfer Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671259\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size5_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Transfer Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671260\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size5_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Transfer Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671261\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size5_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Transfer Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671262\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size5_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Transfer Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671263\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size5_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Transfer Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671264\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size7_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Transfer Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671265\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size7_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Transfer Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671266\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size7_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Transfer Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671267\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size7_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Transfer Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671268\",\n    \"symbol\": \"Int_DroneControl_FuelTransfer_Size7_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Fuel Transfer Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671269\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size1_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Prospector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671270\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size1_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Prospector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671271\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size1_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Prospector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671272\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size1_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Prospector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671273\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size1_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Prospector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671274\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size3_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Prospector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671275\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size3_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Prospector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671276\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size3_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Prospector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671277\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size3_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Prospector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671278\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size3_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Prospector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671279\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size5_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Prospector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671280\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size5_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Prospector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671281\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size5_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Prospector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671282\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size5_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Prospector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671283\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size5_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Prospector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671284\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size7_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Prospector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671285\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size7_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Prospector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671286\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size7_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Prospector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671287\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size7_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Prospector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671288\",\n    \"symbol\": \"Int_DroneControl_Prospector_Size7_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Prospector Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671321\",\n    \"symbol\": \"Hpt_Slugshot_Gimbal_Large\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Fragment Cannon\",\n    \"mount\": \"Gimballed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671322\",\n    \"symbol\": \"Hpt_Slugshot_Turret_Large\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Fragment Cannon\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671323\",\n    \"symbol\": \"Int_ShieldGenerator_Size1_Class5_Strong\",\n    \"category\": \"internal\",\n    \"name\": \"Prismatic Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"A\",\n    \"entitlement\": \"ELITE_SPECIFIC_V_POWER_100000\"\n  },\n  {\n    \"id\": \"128671324\",\n    \"symbol\": \"Int_ShieldGenerator_Size2_Class5_Strong\",\n    \"category\": \"internal\",\n    \"name\": \"Prismatic Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"A\",\n    \"entitlement\": \"ELITE_SPECIFIC_V_POWER_100000\"\n  },\n  {\n    \"id\": \"128671325\",\n    \"symbol\": \"Int_ShieldGenerator_Size3_Class5_Strong\",\n    \"category\": \"internal\",\n    \"name\": \"Prismatic Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"A\",\n    \"entitlement\": \"ELITE_SPECIFIC_V_POWER_100000\"\n  },\n  {\n    \"id\": \"128671326\",\n    \"symbol\": \"Int_ShieldGenerator_Size4_Class5_Strong\",\n    \"category\": \"internal\",\n    \"name\": \"Prismatic Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"A\",\n    \"entitlement\": \"ELITE_SPECIFIC_V_POWER_100000\"\n  },\n  {\n    \"id\": \"128671327\",\n    \"symbol\": \"Int_ShieldGenerator_Size5_Class5_Strong\",\n    \"category\": \"internal\",\n    \"name\": \"Prismatic Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"A\",\n    \"entitlement\": \"ELITE_SPECIFIC_V_POWER_100000\"\n  },\n  {\n    \"id\": \"128671328\",\n    \"symbol\": \"Int_ShieldGenerator_Size6_Class5_Strong\",\n    \"category\": \"internal\",\n    \"name\": \"Prismatic Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"A\",\n    \"entitlement\": \"ELITE_SPECIFIC_V_POWER_100000\"\n  },\n  {\n    \"id\": \"128671329\",\n    \"symbol\": \"Int_ShieldGenerator_Size7_Class5_Strong\",\n    \"category\": \"internal\",\n    \"name\": \"Prismatic Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"A\",\n    \"entitlement\": \"ELITE_SPECIFIC_V_POWER_100000\"\n  },\n  {\n    \"id\": \"128671330\",\n    \"symbol\": \"Int_ShieldGenerator_Size8_Class5_Strong\",\n    \"category\": \"internal\",\n    \"name\": \"Prismatic Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"A\",\n    \"entitlement\": \"ELITE_SPECIFIC_V_POWER_100000\"\n  },\n  {\n    \"id\": \"128671331\",\n    \"symbol\": \"Int_ShieldGenerator_Size1_Class3_Fast\",\n    \"category\": \"internal\",\n    \"name\": \"Bi-Weave Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671332\",\n    \"symbol\": \"Int_ShieldGenerator_Size2_Class3_Fast\",\n    \"category\": \"internal\",\n    \"name\": \"Bi-Weave Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671333\",\n    \"symbol\": \"Int_ShieldGenerator_Size3_Class3_Fast\",\n    \"category\": \"internal\",\n    \"name\": \"Bi-Weave Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671334\",\n    \"symbol\": \"Int_ShieldGenerator_Size4_Class3_Fast\",\n    \"category\": \"internal\",\n    \"name\": \"Bi-Weave Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671335\",\n    \"symbol\": \"Int_ShieldGenerator_Size5_Class3_Fast\",\n    \"category\": \"internal\",\n    \"name\": \"Bi-Weave Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671336\",\n    \"symbol\": \"Int_ShieldGenerator_Size6_Class3_Fast\",\n    \"category\": \"internal\",\n    \"name\": \"Bi-Weave Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671337\",\n    \"symbol\": \"Int_ShieldGenerator_Size7_Class3_Fast\",\n    \"category\": \"internal\",\n    \"name\": \"Bi-Weave Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671338\",\n    \"symbol\": \"Int_ShieldGenerator_Size8_Class3_Fast\",\n    \"category\": \"internal\",\n    \"name\": \"Bi-Weave Shield Generator\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671339\",\n    \"symbol\": \"Hpt_PlasmaAccelerator_Fixed_Large_Advanced\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Advanced Plasma Accelerator\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"B\",\n    \"entitlement\": \"ELITE_SPECIFIC_V_POWER_100050\"\n  },\n  {\n    \"id\": \"128671340\",\n    \"symbol\": \"Hpt_MiningLaser_Fixed_Small_Advanced\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Mining Lance\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"D\",\n    \"entitlement\": \"ELITE_SPECIFIC_V_POWER_100080\"\n  },\n  {\n    \"id\": \"128671341\",\n    \"symbol\": \"Hpt_Railgun_Fixed_Medium_Burst\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Imperial Hammer Rail Gun\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"B\",\n    \"entitlement\": \"ELITE_SPECIFIC_V_POWER_100020\"\n  },\n  {\n    \"id\": \"128671342\",\n    \"symbol\": \"Hpt_PulseLaser_Fixed_Medium_Disruptor\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Pulse Disruptor Laser\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"E\",\n    \"entitlement\": \"ELITE_SPECIFIC_V_POWER_100040\"\n  },\n  {\n    \"id\": \"128671343\",\n    \"symbol\": \"Hpt_Slugshot_Fixed_Large_Range\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Pacifier Frag-Cannon\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"ELITE_SPECIFIC_V_POWER_100060\"\n  },\n  {\n    \"id\": \"128671344\",\n    \"symbol\": \"Hpt_DrunkMissileRack_Fixed_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Pack-Hound Missile Rack\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"Swarm\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"B\",\n    \"entitlement\": \"ELITE_SPECIFIC_V_POWER_100070\"\n  },\n  {\n    \"id\": \"128671345\",\n    \"symbol\": \"Hpt_MultiCannon_Fixed_Small_Strong\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Enforcer Cannon\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"F\",\n    \"entitlement\": \"ELITE_SPECIFIC_V_POWER_100090\"\n  },\n  {\n    \"id\": \"128671346\",\n    \"symbol\": \"Hpt_BeamLaser_Fixed_Small_Heat\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Retributor Beam Laser\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"ELITE_SPECIFIC_V_POWER_100010\"\n  },\n  {\n    \"id\": \"128671448\",\n    \"symbol\": \"Hpt_MineLauncher_Fixed_Small_Impulse\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Shock Mine Launcher\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671449\",\n    \"symbol\": \"Hpt_PulseLaserBurst_Fixed_Small_Scatter\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Cytoscrambler Burst Laser\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"F\",\n    \"entitlement\": \"ELITE_SPECIFIC_V_POWER_100100\"\n  },\n  {\n    \"id\": \"128671832\",\n    \"symbol\": \"DiamondBackXL_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Diamondback Explorer\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671833\",\n    \"symbol\": \"DiamondBackXL_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Diamondback Explorer\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671834\",\n    \"symbol\": \"DiamondBackXL_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Diamondback Explorer\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671835\",\n    \"symbol\": \"DiamondBackXL_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Diamondback Explorer\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671836\",\n    \"symbol\": \"DiamondBackXL_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Diamondback Explorer\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672140\",\n    \"symbol\": \"Empire_Eagle_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Imperial Eagle\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672141\",\n    \"symbol\": \"Empire_Eagle_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Imperial Eagle\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672142\",\n    \"symbol\": \"Empire_Eagle_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Imperial Eagle\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672143\",\n    \"symbol\": \"Empire_Eagle_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Imperial Eagle\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672144\",\n    \"symbol\": \"Empire_Eagle_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Imperial Eagle\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672147\",\n    \"symbol\": \"Federation_Dropship_MkII_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Federal Assault Ship\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672148\",\n    \"symbol\": \"Federation_Dropship_MkII_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Federal Assault Ship\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672149\",\n    \"symbol\": \"Federation_Dropship_MkII_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Federal Assault Ship\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672150\",\n    \"symbol\": \"Federation_Dropship_MkII_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Federal Assault Ship\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672151\",\n    \"symbol\": \"Federation_Dropship_MkII_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Federal Assault Ship\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672154\",\n    \"symbol\": \"Federation_Gunship_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Federal Gunship\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672155\",\n    \"symbol\": \"Federation_Gunship_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Federal Gunship\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672156\",\n    \"symbol\": \"Federation_Gunship_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Federal Gunship\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672157\",\n    \"symbol\": \"Federation_Gunship_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Federal Gunship\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672158\",\n    \"symbol\": \"Federation_Gunship_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Federal Gunship\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672257\",\n    \"symbol\": \"Viper_MkIV_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Viper MkIV\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672258\",\n    \"symbol\": \"Viper_MkIV_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Viper MkIV\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672259\",\n    \"symbol\": \"Viper_MkIV_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Viper MkIV\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672260\",\n    \"symbol\": \"Viper_MkIV_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Viper MkIV\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672261\",\n    \"symbol\": \"Viper_MkIV_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Viper MkIV\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672264\",\n    \"symbol\": \"CobraMkIV_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Cobra MkIV\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672265\",\n    \"symbol\": \"CobraMkIV_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Cobra MkIV\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672266\",\n    \"symbol\": \"CobraMkIV_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Cobra MkIV\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672267\",\n    \"symbol\": \"CobraMkIV_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Cobra MkIV\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672268\",\n    \"symbol\": \"CobraMkIV_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Cobra MkIV\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672271\",\n    \"symbol\": \"Independant_Trader_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Keelback\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672272\",\n    \"symbol\": \"Independant_Trader_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Keelback\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672273\",\n    \"symbol\": \"Independant_Trader_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Keelback\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672274\",\n    \"symbol\": \"Independant_Trader_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Keelback\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672275\",\n    \"symbol\": \"Independant_Trader_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Keelback\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672278\",\n    \"symbol\": \"Asp_Scout_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Asp Scout\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672279\",\n    \"symbol\": \"Asp_Scout_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Asp Scout\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672280\",\n    \"symbol\": \"Asp_Scout_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Asp Scout\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672281\",\n    \"symbol\": \"Asp_Scout_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Asp Scout\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672282\",\n    \"symbol\": \"Asp_Scout_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Asp Scout\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672288\",\n    \"symbol\": \"Int_BuggyBay_Size2_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Planetary Vehicle Hangar\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"H\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128672289\",\n    \"symbol\": \"Int_BuggyBay_Size2_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Planetary Vehicle Hangar\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"G\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128672290\",\n    \"symbol\": \"Int_BuggyBay_Size4_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Planetary Vehicle Hangar\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"H\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128672291\",\n    \"symbol\": \"Int_BuggyBay_Size4_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Planetary Vehicle Hangar\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"G\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128672292\",\n    \"symbol\": \"Int_BuggyBay_Size6_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Planetary Vehicle Hangar\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"H\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128672293\",\n    \"symbol\": \"Int_BuggyBay_Size6_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Planetary Vehicle Hangar\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"G\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128672317\",\n    \"symbol\": \"Int_PlanetApproachSuite\",\n    \"category\": \"internal\",\n    \"name\": \"Planetary Approach Suite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128681641\",\n    \"symbol\": \"Int_CorrosionProofCargoRack_Size1_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Corrosion Resistant Cargo Rack\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128681992\",\n    \"symbol\": \"Int_CorrosionProofCargoRack_Size1_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Corrosion Resistant Cargo Rack\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"F\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128681994\",\n    \"symbol\": \"Hpt_BeamLaser_Gimbal_Huge\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Beam Laser\",\n    \"mount\": \"Gimballed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128681995\",\n    \"symbol\": \"Hpt_PulseLaser_Gimbal_Huge\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Pulse Laser\",\n    \"mount\": \"Gimballed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128681996\",\n    \"symbol\": \"Hpt_MultiCannon_Gimbal_Huge\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Multi-Cannon\",\n    \"mount\": \"Gimballed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128682013\",\n    \"symbol\": \"Int_Engine_Size3_Class5_Fast\",\n    \"category\": \"standard\",\n    \"name\": \"Enhanced Performance Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128682014\",\n    \"symbol\": \"Int_Engine_Size2_Class5_Fast\",\n    \"category\": \"standard\",\n    \"name\": \"Enhanced Performance Thrusters\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128727920\",\n    \"symbol\": \"Hpt_PulseLaserBurst_Gimbal_Huge\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Burst Laser\",\n    \"mount\": \"Gimballed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128727922\",\n    \"symbol\": \"Int_PassengerCabin_Size4_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Economy Class Passenger Cabin\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128727923\",\n    \"symbol\": \"Int_PassengerCabin_Size4_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Business Class Passenger Cabin\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128727924\",\n    \"symbol\": \"Int_PassengerCabin_Size4_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"First Class Passenger Cabin\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128727925\",\n    \"symbol\": \"Int_PassengerCabin_Size5_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Luxury Class Passenger Cabin\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128727926\",\n    \"symbol\": \"Int_PassengerCabin_Size6_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Economy Class Passenger Cabin\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128727927\",\n    \"symbol\": \"Int_PassengerCabin_Size6_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Business Class Passenger Cabin\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128727928\",\n    \"symbol\": \"Int_PassengerCabin_Size6_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"First Class Passenger Cabin\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128727929\",\n    \"symbol\": \"Int_PassengerCabin_Size6_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Luxury Class Passenger Cabin\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128727930\",\n    \"symbol\": \"Int_FighterBay_Size5_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Fighter Hangar\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"D\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128727931\",\n    \"symbol\": \"Int_FighterBay_Size6_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Fighter Hangar\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"D\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128727932\",\n    \"symbol\": \"Int_FighterBay_Size7_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Fighter Hangar\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"D\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128732552\",\n    \"symbol\": \"Hpt_DumbfireMissileRack_Fixed_Medium_Lasso\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Rocket Propelled FSD Disruptor\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"Dumbfire\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"B\",\n    \"entitlement\": \"ELITE_SPECIFIC_V_POWER_100120\"\n  },\n  {\n    \"id\": \"128734690\",\n    \"symbol\": \"Int_PassengerCabin_Size2_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Economy Class Passenger Cabin\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128734691\",\n    \"symbol\": \"Int_PassengerCabin_Size3_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Economy Class Passenger Cabin\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128734692\",\n    \"symbol\": \"Int_PassengerCabin_Size3_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Business Class Passenger Cabin\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128734693\",\n    \"symbol\": \"Int_PassengerCabin_Size5_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Economy Class Passenger Cabin\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128734694\",\n    \"symbol\": \"Int_PassengerCabin_Size5_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Business Class Passenger Cabin\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128734695\",\n    \"symbol\": \"Int_PassengerCabin_Size5_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"First Class Passenger Cabin\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128737270\",\n    \"symbol\": \"Int_ModuleReinforcement_Size1_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Module Reinforcement Package\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128737271\",\n    \"symbol\": \"Int_ModuleReinforcement_Size1_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Module Reinforcement Package\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128737272\",\n    \"symbol\": \"Int_ModuleReinforcement_Size2_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Module Reinforcement Package\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128737273\",\n    \"symbol\": \"Int_ModuleReinforcement_Size2_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Module Reinforcement Package\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128737274\",\n    \"symbol\": \"Int_ModuleReinforcement_Size3_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Module Reinforcement Package\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128737275\",\n    \"symbol\": \"Int_ModuleReinforcement_Size3_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Module Reinforcement Package\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128737276\",\n    \"symbol\": \"Int_ModuleReinforcement_Size4_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Module Reinforcement Package\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128737277\",\n    \"symbol\": \"Int_ModuleReinforcement_Size4_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Module Reinforcement Package\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128737278\",\n    \"symbol\": \"Int_ModuleReinforcement_Size5_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Module Reinforcement Package\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128737279\",\n    \"symbol\": \"Int_ModuleReinforcement_Size5_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Module Reinforcement Package\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128740819\",\n    \"symbol\": \"Hpt_MiningLaser_Turret_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Mining Laser\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128740820\",\n    \"symbol\": \"Hpt_MiningLaser_Turret_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Mining Laser\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128771884\",\n    \"symbol\": \"Hpt_AntiUnknownShutdown_Tiny\",\n    \"category\": \"utility\",\n    \"name\": \"Shutdown Field Neutraliser\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"0\",\n    \"rating\": \"F\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128777327\",\n    \"symbol\": \"Int_DroneControl_Repair_Size1_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Repair Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128777328\",\n    \"symbol\": \"Int_DroneControl_Repair_Size1_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Repair Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128777329\",\n    \"symbol\": \"Int_DroneControl_Repair_Size1_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Repair Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128777330\",\n    \"symbol\": \"Int_DroneControl_Repair_Size1_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Repair Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128777331\",\n    \"symbol\": \"Int_DroneControl_Repair_Size1_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Repair Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128777332\",\n    \"symbol\": \"Int_DroneControl_Repair_Size3_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Repair Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128777333\",\n    \"symbol\": \"Int_DroneControl_Repair_Size3_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Repair Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128777334\",\n    \"symbol\": \"Int_DroneControl_Repair_Size3_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Repair Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128777335\",\n    \"symbol\": \"Int_DroneControl_Repair_Size3_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Repair Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128777336\",\n    \"symbol\": \"Int_DroneControl_Repair_Size3_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Repair Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128777337\",\n    \"symbol\": \"Int_DroneControl_Repair_Size5_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Repair Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128777338\",\n    \"symbol\": \"Int_DroneControl_Repair_Size5_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Repair Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128777339\",\n    \"symbol\": \"Int_DroneControl_Repair_Size5_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Repair Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128777340\",\n    \"symbol\": \"Int_DroneControl_Repair_Size5_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Repair Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128777341\",\n    \"symbol\": \"Int_DroneControl_Repair_Size5_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Repair Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128777342\",\n    \"symbol\": \"Int_DroneControl_Repair_Size7_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Repair Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128777343\",\n    \"symbol\": \"Int_DroneControl_Repair_Size7_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Repair Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128777344\",\n    \"symbol\": \"Int_DroneControl_Repair_Size7_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Repair Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128777345\",\n    \"symbol\": \"Int_DroneControl_Repair_Size7_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Repair Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128777346\",\n    \"symbol\": \"Int_DroneControl_Repair_Size7_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Repair Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128785621\",\n    \"symbol\": \"Type9_Military_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Type-10 Defender\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128785622\",\n    \"symbol\": \"Type9_Military_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Type-10 Defender\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128785623\",\n    \"symbol\": \"Type9_Military_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Type-10 Defender\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128785624\",\n    \"symbol\": \"Type9_Military_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Type-10 Defender\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128785625\",\n    \"symbol\": \"Type9_Military_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Type-10 Defender\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128785626\",\n    \"symbol\": \"Hpt_FlakMortar_Fixed_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Remote Release Flak Launcher\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"B\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128788699\",\n    \"symbol\": \"Hpt_ATDumbfireMissile_Fixed_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"AX Missile Rack\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"Dumbfire\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"B\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128788700\",\n    \"symbol\": \"Hpt_ATDumbfireMissile_Fixed_Large\",\n    \"category\": \"hardpoint\",\n    \"name\": \"AX Missile Rack\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"Dumbfire\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"A\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128788701\",\n    \"symbol\": \"Hpt_ATMultiCannon_Fixed_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"AX Multi-Cannon\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"E\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128788702\",\n    \"symbol\": \"Hpt_ATMultiCannon_Fixed_Large\",\n    \"category\": \"hardpoint\",\n    \"name\": \"AX Multi-Cannon\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128788704\",\n    \"symbol\": \"Hpt_ATDumbfireMissile_Turret_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"AX Missile Rack\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"Dumbfire\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"B\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128788705\",\n    \"symbol\": \"Hpt_ATDumbfireMissile_Turret_Large\",\n    \"category\": \"hardpoint\",\n    \"name\": \"AX Missile Rack\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"Dumbfire\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"A\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128793058\",\n    \"symbol\": \"Hpt_FlakMortar_Turret_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Remote Release Flak Launcher\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"B\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128793059\",\n    \"symbol\": \"Hpt_ATMultiCannon_Turret_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"AX Multi-Cannon\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"F\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128793060\",\n    \"symbol\": \"Hpt_ATMultiCannon_Turret_Large\",\n    \"category\": \"hardpoint\",\n    \"name\": \"AX Multi-Cannon\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"E\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128793115\",\n    \"symbol\": \"Hpt_XenoScanner_Basic_Tiny\",\n    \"category\": \"utility\",\n    \"name\": \"Xeno Scanner\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"0\",\n    \"rating\": \"E\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128793116\",\n    \"symbol\": \"Int_DroneControl_UnkVesselResearch\",\n    \"category\": \"internal\",\n    \"name\": \"Research Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128793117\",\n    \"symbol\": \"Int_MetaAlloyHullReinforcement_Size1_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Meta Alloy Hull Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"ELITE_HORIZONS_V_METAHULL\"\n  },\n  {\n    \"id\": \"128793118\",\n    \"symbol\": \"Int_MetaAlloyHullReinforcement_Size1_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Meta Alloy Hull Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"D\",\n    \"entitlement\": \"ELITE_HORIZONS_V_METAHULL\"\n  },\n  {\n    \"id\": \"128793119\",\n    \"symbol\": \"Int_MetaAlloyHullReinforcement_Size2_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Meta Alloy Hull Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"E\",\n    \"entitlement\": \"ELITE_HORIZONS_V_METAHULL\"\n  },\n  {\n    \"id\": \"128793120\",\n    \"symbol\": \"Int_MetaAlloyHullReinforcement_Size2_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Meta Alloy Hull Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"D\",\n    \"entitlement\": \"ELITE_HORIZONS_V_METAHULL\"\n  },\n  {\n    \"id\": \"128793121\",\n    \"symbol\": \"Int_MetaAlloyHullReinforcement_Size3_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Meta Alloy Hull Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"E\",\n    \"entitlement\": \"ELITE_HORIZONS_V_METAHULL\"\n  },\n  {\n    \"id\": \"128793122\",\n    \"symbol\": \"Int_MetaAlloyHullReinforcement_Size3_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Meta Alloy Hull Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"D\",\n    \"entitlement\": \"ELITE_HORIZONS_V_METAHULL\"\n  },\n  {\n    \"id\": \"128793123\",\n    \"symbol\": \"Int_MetaAlloyHullReinforcement_Size4_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Meta Alloy Hull Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"E\",\n    \"entitlement\": \"ELITE_HORIZONS_V_METAHULL\"\n  },\n  {\n    \"id\": \"128793124\",\n    \"symbol\": \"Int_MetaAlloyHullReinforcement_Size4_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Meta Alloy Hull Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"D\",\n    \"entitlement\": \"ELITE_HORIZONS_V_METAHULL\"\n  },\n  {\n    \"id\": \"128793125\",\n    \"symbol\": \"Int_MetaAlloyHullReinforcement_Size5_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Meta Alloy Hull Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"E\",\n    \"entitlement\": \"ELITE_HORIZONS_V_METAHULL\"\n  },\n  {\n    \"id\": \"128793126\",\n    \"symbol\": \"Int_MetaAlloyHullReinforcement_Size5_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Meta Alloy Hull Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"D\",\n    \"entitlement\": \"ELITE_HORIZONS_V_METAHULL\"\n  },\n  {\n    \"id\": \"128793941\",\n    \"symbol\": \"Int_DroneControl_Decontamination_Size1_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Decontamination Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128793942\",\n    \"symbol\": \"Int_DroneControl_Decontamination_Size3_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Decontamination Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"E\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128793943\",\n    \"symbol\": \"Int_DroneControl_Decontamination_Size5_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Decontamination Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"E\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128793944\",\n    \"symbol\": \"Int_DroneControl_Decontamination_Size7_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Decontamination Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"E\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128808878\",\n    \"symbol\": \"Hpt_XenoScannerMk2_Basic_Tiny\",\n    \"category\": \"utility\",\n    \"name\": \"Unknown Xeno Scanner Mk II\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"?\",\n    \"rating\": \"?\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128816569\",\n    \"symbol\": \"Krait_MkII_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Krait MkII\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128816570\",\n    \"symbol\": \"Krait_MkII_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Krait MkII\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128816571\",\n    \"symbol\": \"Krait_MkII_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Krait MkII\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128816572\",\n    \"symbol\": \"Krait_MkII_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Krait MkII\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128816573\",\n    \"symbol\": \"Krait_MkII_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Krait MkII\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128816576\",\n    \"symbol\": \"TypeX_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Alliance Chieftain\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128816577\",\n    \"symbol\": \"TypeX_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Alliance Chieftain\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128816578\",\n    \"symbol\": \"TypeX_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Alliance Chieftain\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128816579\",\n    \"symbol\": \"TypeX_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Alliance Chieftain\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128816580\",\n    \"symbol\": \"TypeX_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Alliance Chieftain\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128816583\",\n    \"symbol\": \"TypeX_2_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Alliance Crusader\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128816584\",\n    \"symbol\": \"TypeX_2_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Alliance Crusader\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128816585\",\n    \"symbol\": \"TypeX_2_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Alliance Crusader\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128816586\",\n    \"symbol\": \"TypeX_2_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Alliance Crusader\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128816587\",\n    \"symbol\": \"TypeX_2_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Alliance Crusader\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128816590\",\n    \"symbol\": \"TypeX_3_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Alliance Challenger\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128816591\",\n    \"symbol\": \"TypeX_3_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Alliance Challenger\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128816592\",\n    \"symbol\": \"TypeX_3_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Alliance Challenger\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128816593\",\n    \"symbol\": \"TypeX_3_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Alliance Challenger\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128816594\",\n    \"symbol\": \"TypeX_3_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Alliance Challenger\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128833687\",\n    \"symbol\": \"Hpt_Guardian_GaussCannon_Fixed_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Guardian Gauss Cannon\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"B\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_GAUSS_FIXED_MEDIUM\"\n  },\n  {\n    \"id\": \"128833944\",\n    \"symbol\": \"Int_CorrosionProofCargoRack_Size4_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Corrosion Resistant Cargo Rack\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"E\",\n    \"entitlement\": \"ELITE_HORIZONS_V_CORROSIONCARGO_SIZE4\"\n  },\n  {\n    \"id\": \"128833945\",\n    \"symbol\": \"Int_GuardianHullReinforcement_Size1_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Hull Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_HULLREINFORCEMENT\"\n  },\n  {\n    \"id\": \"128833946\",\n    \"symbol\": \"Int_GuardianHullReinforcement_Size1_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Hull Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"D\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_HULLREINFORCEMENT\"\n  },\n  {\n    \"id\": \"128833947\",\n    \"symbol\": \"Int_GuardianHullReinforcement_Size2_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Hull Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"E\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_HULLREINFORCEMENT\"\n  },\n  {\n    \"id\": \"128833948\",\n    \"symbol\": \"Int_GuardianHullReinforcement_Size2_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Hull Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"D\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_HULLREINFORCEMENT\"\n  },\n  {\n    \"id\": \"128833949\",\n    \"symbol\": \"Int_GuardianHullReinforcement_Size3_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Hull Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"E\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_HULLREINFORCEMENT\"\n  },\n  {\n    \"id\": \"128833950\",\n    \"symbol\": \"Int_GuardianHullReinforcement_Size3_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Hull Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"D\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_HULLREINFORCEMENT\"\n  },\n  {\n    \"id\": \"128833951\",\n    \"symbol\": \"Int_GuardianHullReinforcement_Size4_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Hull Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"E\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_HULLREINFORCEMENT\"\n  },\n  {\n    \"id\": \"128833952\",\n    \"symbol\": \"Int_GuardianHullReinforcement_Size4_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Hull Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"D\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_HULLREINFORCEMENT\"\n  },\n  {\n    \"id\": \"128833953\",\n    \"symbol\": \"Int_GuardianHullReinforcement_Size5_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Hull Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"E\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_HULLREINFORCEMENT\"\n  },\n  {\n    \"id\": \"128833954\",\n    \"symbol\": \"Int_GuardianHullReinforcement_Size5_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Hull Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"D\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_HULLREINFORCEMENT\"\n  },\n  {\n    \"id\": \"128833955\",\n    \"symbol\": \"Int_GuardianModuleReinforcement_Size1_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Module Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_MODULEREINFORCEMENT\"\n  },\n  {\n    \"id\": \"128833956\",\n    \"symbol\": \"Int_GuardianModuleReinforcement_Size1_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Module Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"D\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_MODULEREINFORCEMENT\"\n  },\n  {\n    \"id\": \"128833957\",\n    \"symbol\": \"Int_GuardianModuleReinforcement_Size2_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Module Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"E\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_MODULEREINFORCEMENT\"\n  },\n  {\n    \"id\": \"128833958\",\n    \"symbol\": \"Int_GuardianModuleReinforcement_Size2_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Module Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"D\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_MODULEREINFORCEMENT\"\n  },\n  {\n    \"id\": \"128833959\",\n    \"symbol\": \"Int_GuardianModuleReinforcement_Size3_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Module Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"E\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_MODULEREINFORCEMENT\"\n  },\n  {\n    \"id\": \"128833960\",\n    \"symbol\": \"Int_GuardianModuleReinforcement_Size3_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Module Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"D\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_MODULEREINFORCEMENT\"\n  },\n  {\n    \"id\": \"128833961\",\n    \"symbol\": \"Int_GuardianModuleReinforcement_Size4_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Module Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"E\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_MODULEREINFORCEMENT\"\n  },\n  {\n    \"id\": \"128833962\",\n    \"symbol\": \"Int_GuardianModuleReinforcement_Size4_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Module Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"D\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_MODULEREINFORCEMENT\"\n  },\n  {\n    \"id\": \"128833963\",\n    \"symbol\": \"Int_GuardianModuleReinforcement_Size5_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Module Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"E\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_MODULEREINFORCEMENT\"\n  },\n  {\n    \"id\": \"128833964\",\n    \"symbol\": \"Int_GuardianModuleReinforcement_Size5_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Module Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"D\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_MODULEREINFORCEMENT\"\n  },\n  {\n    \"id\": \"128833965\",\n    \"symbol\": \"Int_GuardianShieldReinforcement_Size1_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Shield Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_SHIELDREINFORCEMENT\"\n  },\n  {\n    \"id\": \"128833966\",\n    \"symbol\": \"Int_GuardianShieldReinforcement_Size1_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Shield Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"D\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_SHIELDREINFORCEMENT\"\n  },\n  {\n    \"id\": \"128833967\",\n    \"symbol\": \"Int_GuardianShieldReinforcement_Size2_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Shield Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"E\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_SHIELDREINFORCEMENT\"\n  },\n  {\n    \"id\": \"128833968\",\n    \"symbol\": \"Int_GuardianShieldReinforcement_Size2_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Shield Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"D\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_SHIELDREINFORCEMENT\"\n  },\n  {\n    \"id\": \"128833969\",\n    \"symbol\": \"Int_GuardianShieldReinforcement_Size3_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Shield Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"E\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_SHIELDREINFORCEMENT\"\n  },\n  {\n    \"id\": \"128833970\",\n    \"symbol\": \"Int_GuardianShieldReinforcement_Size3_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Shield Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"D\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_SHIELDREINFORCEMENT\"\n  },\n  {\n    \"id\": \"128833971\",\n    \"symbol\": \"Int_GuardianShieldReinforcement_Size4_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Shield Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"E\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_SHIELDREINFORCEMENT\"\n  },\n  {\n    \"id\": \"128833972\",\n    \"symbol\": \"Int_GuardianShieldReinforcement_Size4_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Shield Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"D\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_SHIELDREINFORCEMENT\"\n  },\n  {\n    \"id\": \"128833973\",\n    \"symbol\": \"Int_GuardianShieldReinforcement_Size5_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Shield Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"E\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_SHIELDREINFORCEMENT\"\n  },\n  {\n    \"id\": \"128833974\",\n    \"symbol\": \"Int_GuardianShieldReinforcement_Size5_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Shield Reinforcement\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"D\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_SHIELDREINFORCEMENT\"\n  },\n  {\n    \"id\": \"128833975\",\n    \"symbol\": \"Int_GuardianFSDBooster_Size1\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian FSD Booster\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"H\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_FSDBOOSTER\"\n  },\n  {\n    \"id\": \"128833976\",\n    \"symbol\": \"Int_GuardianFSDBooster_Size2\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian FSD Booster\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"H\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_FSDBOOSTER\"\n  },\n  {\n    \"id\": \"128833977\",\n    \"symbol\": \"Int_GuardianFSDBooster_Size3\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian FSD Booster\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"H\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_FSDBOOSTER\"\n  },\n  {\n    \"id\": \"128833978\",\n    \"symbol\": \"Int_GuardianFSDBooster_Size4\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian FSD Booster\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"H\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_FSDBOOSTER\"\n  },\n  {\n    \"id\": \"128833979\",\n    \"symbol\": \"Int_GuardianFSDBooster_Size5\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian FSD Booster\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"H\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_FSDBOOSTER\"\n  },\n  {\n    \"id\": \"128833980\",\n    \"symbol\": \"Int_GuardianPowerDistributor_Size1\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Hybrid Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"A\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_POWERDISTRIBUTOR\"\n  },\n  {\n    \"id\": \"128833981\",\n    \"symbol\": \"Int_GuardianPowerDistributor_Size2\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Hybrid Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"A\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_POWERDISTRIBUTOR\"\n  },\n  {\n    \"id\": \"128833982\",\n    \"symbol\": \"Int_GuardianPowerDistributor_Size3\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Hybrid Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"A\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_POWERDISTRIBUTOR\"\n  },\n  {\n    \"id\": \"128833983\",\n    \"symbol\": \"Int_GuardianPowerDistributor_Size4\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Hybrid Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"A\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_POWERDISTRIBUTOR\"\n  },\n  {\n    \"id\": \"128833984\",\n    \"symbol\": \"Int_GuardianPowerDistributor_Size5\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Hybrid Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"A\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_POWERDISTRIBUTOR\"\n  },\n  {\n    \"id\": \"128833985\",\n    \"symbol\": \"Int_GuardianPowerDistributor_Size6\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Hybrid Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"A\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_POWERDISTRIBUTOR\"\n  },\n  {\n    \"id\": \"128833986\",\n    \"symbol\": \"Int_GuardianPowerDistributor_Size7\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Hybrid Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"A\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_POWERDISTRIBUTOR\"\n  },\n  {\n    \"id\": \"128833987\",\n    \"symbol\": \"Int_GuardianPowerDistributor_Size8\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Hybrid Power Distributor\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"A\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_POWERDISTRIBUTOR\"\n  },\n  {\n    \"id\": \"128833988\",\n    \"symbol\": \"Int_GuardianPowerplant_Size2\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Hybrid Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"A\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_POWERPLANT\"\n  },\n  {\n    \"id\": \"128833989\",\n    \"symbol\": \"Int_GuardianPowerplant_Size3\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Hybrid Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"A\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_POWERPLANT\"\n  },\n  {\n    \"id\": \"128833990\",\n    \"symbol\": \"Int_GuardianPowerplant_Size4\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Hybrid Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"4\",\n    \"rating\": \"A\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_POWERPLANT\"\n  },\n  {\n    \"id\": \"128833991\",\n    \"symbol\": \"Int_GuardianPowerplant_Size5\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Hybrid Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"A\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_POWERPLANT\"\n  },\n  {\n    \"id\": \"128833992\",\n    \"symbol\": \"Int_GuardianPowerplant_Size6\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Hybrid Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"6\",\n    \"rating\": \"A\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_POWERPLANT\"\n  },\n  {\n    \"id\": \"128833993\",\n    \"symbol\": \"Int_GuardianPowerplant_Size7\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Hybrid Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"A\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_POWERPLANT\"\n  },\n  {\n    \"id\": \"128833994\",\n    \"symbol\": \"Int_GuardianPowerplant_Size8\",\n    \"category\": \"internal\",\n    \"name\": \"Guardian Hybrid Power Plant\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"8\",\n    \"rating\": \"A\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_POWERPLANT\"\n  },\n  {\n    \"id\": \"128833995\",\n    \"symbol\": \"Hpt_CausticMissile_Fixed_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Enzyme Missile Rack\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"Dumbfire\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"B\",\n    \"entitlement\": \"ELITE_HORIZONS_V_CAUSTIC_MEDIUM\"\n  },\n  {\n    \"id\": \"128833996\",\n    \"symbol\": \"Hpt_FlechetteLauncher_Fixed_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Remote Release Flechette Launcher\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"B\",\n    \"entitlement\": \"ELITE_HORIZONS_V_FLECHETTE_FIXED_MEDIUM\"\n  },\n  {\n    \"id\": \"128833997\",\n    \"symbol\": \"Hpt_FlechetteLauncher_Turret_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Remote Release Flechette Launcher\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"B\",\n    \"entitlement\": \"ELITE_HORIZONS_V_FLECHETTE_TURRET_MEDIUM\"\n  },\n  {\n    \"id\": \"128833998\",\n    \"symbol\": \"Hpt_Guardian_PlasmaLauncher_Fixed_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Guardian Plasma Charger\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"B\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_PLASMA_FIXED_MEDIUM\"\n  },\n  {\n    \"id\": \"128833999\",\n    \"symbol\": \"Hpt_Guardian_PlasmaLauncher_Turret_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Guardian Plasma Charger\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"E\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_PLASMA_TURRET_MEDIUM\"\n  },\n  {\n    \"id\": \"128834000\",\n    \"symbol\": \"Hpt_Guardian_ShardCannon_Fixed_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Guardian Shard Cannon\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"A\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_SHARD_FIXED_MEDIUM\"\n  },\n  {\n    \"id\": \"128834001\",\n    \"symbol\": \"Hpt_Guardian_ShardCannon_Turret_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Guardian Shard Cannon\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"D\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_SHARD_TURRET_MEDIUM\"\n  },\n  {\n    \"id\": \"128834002\",\n    \"symbol\": \"Hpt_PlasmaShockCannon_Fixed_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Shock Cannon\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"D\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLASMASHOCK_FIXED_MEDIUM\"\n  },\n  {\n    \"id\": \"128834003\",\n    \"symbol\": \"Hpt_PlasmaShockCannon_Gimbal_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Shock Cannon\",\n    \"mount\": \"Gimballed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"D\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLASMASHOCK_GIMBAL_MEDIUM\"\n  },\n  {\n    \"id\": \"128834004\",\n    \"symbol\": \"Hpt_PlasmaShockCannon_Turret_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Shock Cannon\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"E\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLASMASHOCK_TURRET_MEDIUM\"\n  },\n  {\n    \"id\": \"128834778\",\n    \"symbol\": \"Hpt_Guardian_ShardCannon_Fixed_Large\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Guardian Shard Cannon\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_SHARD_FIXED_LARGE\"\n  },\n  {\n    \"id\": \"128834779\",\n    \"symbol\": \"Hpt_Guardian_ShardCannon_Turret_Large\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Guardian Shard Cannon\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"D\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_SHARD_TURRET_LARGE\"\n  },\n  {\n    \"id\": \"128834780\",\n    \"symbol\": \"Hpt_PlasmaShockCannon_Fixed_Large\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Shock Cannon\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLASMASHOCK_FIXED_LARGE\"\n  },\n  {\n    \"id\": \"128834781\",\n    \"symbol\": \"Hpt_PlasmaShockCannon_Gimbal_Large\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Shock Cannon\",\n    \"mount\": \"Gimballed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLASMASHOCK_GIMBAL_LARGE\"\n  },\n  {\n    \"id\": \"128834782\",\n    \"symbol\": \"Hpt_PlasmaShockCannon_Turret_Large\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Shock Cannon\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"D\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLASMASHOCK_TURRET_LARGE\"\n  },\n  {\n    \"id\": \"128834783\",\n    \"symbol\": \"Hpt_Guardian_PlasmaLauncher_Fixed_Large\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Guardian Plasma Charger\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_PLASMA_FIXED_LARGE\"\n  },\n  {\n    \"id\": \"128834784\",\n    \"symbol\": \"Hpt_Guardian_PlasmaLauncher_Turret_Large\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Guardian Plasma Charger\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"D\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_PLASMA_TURRET_LARGE\"\n  },\n  {\n    \"id\": \"128837858\",\n    \"symbol\": \"Int_DroneControl_Recon_Size1_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Recon Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128839283\",\n    \"symbol\": \"Krait_Light_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Krait Phantom\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128839284\",\n    \"symbol\": \"Krait_Light_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Krait Phantom\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128839285\",\n    \"symbol\": \"Krait_Light_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Krait Phantom\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128839286\",\n    \"symbol\": \"Krait_Light_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Krait Phantom\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128839287\",\n    \"symbol\": \"Krait_Light_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Krait Phantom\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128841592\",\n    \"symbol\": \"Int_DroneControl_Recon_Size3_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Recon Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128841593\",\n    \"symbol\": \"Int_DroneControl_Recon_Size5_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Recon Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"5\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128841594\",\n    \"symbol\": \"Int_DroneControl_Recon_Size7_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Recon Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128891602\",\n    \"symbol\": \"Hpt_DumbfireMissileRack_Fixed_Large\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Missile Rack\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"Dumbfire\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"A\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128891603\",\n    \"symbol\": \"Hpt_PlasmaShockCannon_Turret_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Shock Cannon\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"F\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLASMASHOCK_TURRET_SMALL\"\n  },\n  {\n    \"id\": \"128891604\",\n    \"symbol\": \"Hpt_PlasmaShockCannon_Gimbal_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Shock Cannon\",\n    \"mount\": \"Gimballed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLASMASHOCK_GIMBAL_SMALL\"\n  },\n  {\n    \"id\": \"128891605\",\n    \"symbol\": \"Hpt_PlasmaShockCannon_Fixed_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Shock Cannon\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"D\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLASMASHOCK_FIXED_SMALL\"\n  },\n  {\n    \"id\": \"128891606\",\n    \"symbol\": \"Hpt_Guardian_PlasmaLauncher_Turret_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Guardian Plasma Charger\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"F\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_PLASMA_TURRET_SMALL\"\n  },\n  {\n    \"id\": \"128891607\",\n    \"symbol\": \"Hpt_Guardian_PlasmaLauncher_Fixed_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Guardian Plasma Charger\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"D\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_PLASMA_FIXED_SMALL\"\n  },\n  {\n    \"id\": \"128891608\",\n    \"symbol\": \"Hpt_Guardian_ShardCannon_Turret_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Guardian Shard Cannon\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"F\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_SHARD_TURRET_SMALL\"\n  },\n  {\n    \"id\": \"128891609\",\n    \"symbol\": \"Hpt_Guardian_ShardCannon_Fixed_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Guardian Shard Cannon\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"D\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_SHARD_FIXED_SMALL\"\n  },\n  {\n    \"id\": \"128891610\",\n    \"symbol\": \"Hpt_Guardian_GaussCannon_Fixed_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Guardian Gauss Cannon\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"D\",\n    \"entitlement\": \"ELITE_HORIZONS_V_GUARDIAN_GAUSS_FIXED_SMALL\"\n  },\n  {\n    \"id\": \"128915454\",\n    \"symbol\": \"Hpt_Mining_SubSurfDispMisle_Fixed_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Sub-Surface Displacement Missile\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"Seeker\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128915455\",\n    \"symbol\": \"Hpt_Mining_SubSurfDispMisle_Turret_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Sub-Surface Displacement Missile\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"Seeker\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128915456\",\n    \"symbol\": \"Hpt_Mining_SubSurfDispMisle_Fixed_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Sub-Surface Displacement Missile\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"Seeker\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128915457\",\n    \"symbol\": \"Hpt_Mining_SubSurfDispMisle_Turret_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Sub-Surface Displacement Missile\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"Seeker\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128915458\",\n    \"symbol\": \"Hpt_Mining_AbrBlstr_Fixed_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Abrasion Blaster\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128915459\",\n    \"symbol\": \"Hpt_Mining_AbrBlstr_Turret_Small\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Abrasion Blaster\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128915460\",\n    \"symbol\": \"Hpt_Mining_SeismChrgWarhd_Fixed_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Seismic Charge Launcher\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"Seeker\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128915461\",\n    \"symbol\": \"Hpt_Mining_SeismChrgWarhd_Turret_Medium\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Seismic Charge Launcher\",\n    \"mount\": \"Turreted\",\n    \"guidance\": \"Seeker\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128915718\",\n    \"symbol\": \"Hpt_MRAScanner_Size0_Class1\",\n    \"category\": \"utility\",\n    \"name\": \"Pulse Wave Analyser\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"0\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128915719\",\n    \"symbol\": \"Hpt_MRAScanner_Size0_Class2\",\n    \"category\": \"utility\",\n    \"name\": \"Pulse Wave Analyser\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"0\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128915720\",\n    \"symbol\": \"Hpt_MRAScanner_Size0_Class3\",\n    \"category\": \"utility\",\n    \"name\": \"Pulse Wave Analyser\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"0\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128915721\",\n    \"symbol\": \"Hpt_MRAScanner_Size0_Class4\",\n    \"category\": \"utility\",\n    \"name\": \"Pulse Wave Analyser\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"0\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128915722\",\n    \"symbol\": \"Hpt_MRAScanner_Size0_Class5\",\n    \"category\": \"utility\",\n    \"name\": \"Pulse Wave Analyser\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"0\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128915981\",\n    \"symbol\": \"Mamba_Armour_Grade1\",\n    \"category\": \"standard\",\n    \"name\": \"Lightweight Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Mamba\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128915982\",\n    \"symbol\": \"Mamba_Armour_Grade2\",\n    \"category\": \"standard\",\n    \"name\": \"Reinforced Alloy\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Mamba\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128915983\",\n    \"symbol\": \"Mamba_Armour_Grade3\",\n    \"category\": \"standard\",\n    \"name\": \"Military Grade Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Mamba\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128915984\",\n    \"symbol\": \"Mamba_Armour_Mirrored\",\n    \"category\": \"standard\",\n    \"name\": \"Mirrored Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Mamba\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128915985\",\n    \"symbol\": \"Mamba_Armour_Reactive\",\n    \"category\": \"standard\",\n    \"name\": \"Reactive Surface Composite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"Mamba\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128932273\",\n    \"symbol\": \"Int_SupercruiseAssist\",\n    \"category\": \"internal\",\n    \"name\": \"Supercruise Assist\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128935155\",\n    \"symbol\": \"Int_DockingComputer_Advanced\",\n    \"category\": \"internal\",\n    \"name\": \"Advanced Docking Computer\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128935980\",\n    \"symbol\": \"Hpt_MultiCannon_Fixed_Medium_Advanced\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Advanced Multi-Cannon\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128935981\",\n    \"symbol\": \"Hpt_MultiCannon_Fixed_Small_Advanced\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Advanced Multi-Cannon\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"F\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128935982\",\n    \"symbol\": \"Hpt_DumbfireMissileRack_Fixed_Small_Advanced\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Advanced Missile Rack\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"Dumbfire\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128935983\",\n    \"symbol\": \"Hpt_DumbfireMissileRack_Fixed_Medium_Advanced\",\n    \"category\": \"hardpoint\",\n    \"name\": \"Advanced Missile Rack\",\n    \"mount\": \"Fixed\",\n    \"guidance\": \"Dumbfire\",\n    \"ship\": \"\",\n    \"class\": \"2\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128975719\",\n    \"symbol\": \"Int_PlanetApproachSuite_Advanced\",\n    \"category\": \"internal\",\n    \"name\": \"Advanced Planetary Approach Suite\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"1\",\n    \"rating\": \"I\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"129001921\",\n    \"symbol\": \"Int_MultiDroneControl_Mining_Size3_Class1\",\n    \"category\": \"internal\",\n    \"name\": \"Mining Multi Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"E\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"129001922\",\n    \"symbol\": \"Int_MultiDroneControl_Mining_Size3_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Mining Multi Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"129001923\",\n    \"symbol\": \"Int_MultiDroneControl_Operations_Size3_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Operations Multi Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"129001924\",\n    \"symbol\": \"Int_MultiDroneControl_Operations_Size3_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Operations Multi Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"129001925\",\n    \"symbol\": \"Int_MultiDroneControl_Rescue_Size3_Class2\",\n    \"category\": \"internal\",\n    \"name\": \"Rescue Multi Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"D\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"129001926\",\n    \"symbol\": \"Int_MultiDroneControl_Rescue_Size3_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Rescue Multi Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"129001927\",\n    \"symbol\": \"Int_MultiDroneControl_Xeno_Size3_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Xeno Multi Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"129001928\",\n    \"symbol\": \"Int_MultiDroneControl_Xeno_Size3_Class4\",\n    \"category\": \"internal\",\n    \"name\": \"Xeno Multi Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"3\",\n    \"rating\": \"B\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"129001929\",\n    \"symbol\": \"Int_MultiDroneControl_Universal_Size7_Class3\",\n    \"category\": \"internal\",\n    \"name\": \"Universal Multi Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"C\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"129001930\",\n    \"symbol\": \"Int_MultiDroneControl_Universal_Size7_Class5\",\n    \"category\": \"internal\",\n    \"name\": \"Universal Multi Limpet Controller\",\n    \"mount\": \"\",\n    \"guidance\": \"\",\n    \"ship\": \"\",\n    \"class\": \"7\",\n    \"rating\": \"A\",\n    \"entitlement\": \"\"\n  }\n]"
  },
  {
    "path": "src/service/data/edcd/fdevids/rare_commodity.json",
    "content": "[\n  {\n    \"id\": \"128666746\",\n    \"symbol\": \"EraninPearlWhisky\",\n    \"market_id\": \"128001536\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Eranin Pearl Whisky\"\n  },\n  {\n    \"id\": \"128666747\",\n    \"symbol\": \"LavianBrandy\",\n    \"market_id\": \"128106744\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Lavian Brandy\"\n  },\n  {\n    \"id\": \"128667019\",\n    \"symbol\": \"HIP10175BushMeat\",\n    \"market_id\": \"3223234816\",\n    \"category\": \"Foods\",\n    \"name\": \"HIP 10175 Bush Meat\"\n  },\n  {\n    \"id\": \"128667020\",\n    \"symbol\": \"AlbinoQuechuaMammoth\",\n    \"market_id\": \"3222822912\",\n    \"category\": \"Foods\",\n    \"name\": \"Albino Quechua Mammoth Meat\"\n  },\n  {\n    \"id\": \"128667021\",\n    \"symbol\": \"UtgaroarMillenialEggs\",\n    \"market_id\": \"128037120\",\n    \"category\": \"Foods\",\n    \"name\": \"Utgaroar Millennial Eggs\"\n  },\n  {\n    \"id\": \"128667022\",\n    \"symbol\": \"WitchhaulKobeBeef\",\n    \"market_id\": \"3223358720\",\n    \"category\": \"Foods\",\n    \"name\": \"Witchhaul Kobe Beef\"\n  },\n  {\n    \"id\": \"128667023\",\n    \"symbol\": \"KarsukiLocusts\",\n    \"market_id\": \"3225028096\",\n    \"category\": \"Foods\",\n    \"name\": \"Karsuki Locusts\"\n  },\n  {\n    \"id\": \"128667024\",\n    \"symbol\": \"GiantIrukamaSnails\",\n    \"market_id\": \"3225345792\",\n    \"category\": \"Foods\",\n    \"name\": \"Giant Irukama Snails\"\n  },\n  {\n    \"id\": \"128667025\",\n    \"symbol\": \"BaltahSineVacuumKrill\",\n    \"market_id\": \"128088056\",\n    \"category\": \"Foods\",\n    \"name\": \"Baltah'sine Vacuum Krill\"\n  },\n  {\n    \"id\": \"128667026\",\n    \"symbol\": \"CetiRabbits\",\n    \"market_id\": \"3222560000\",\n    \"category\": \"Foods\",\n    \"name\": \"Ceti Rabbits\"\n  },\n  {\n    \"id\": \"128667027\",\n    \"symbol\": \"KachiriginLeaches\",\n    \"market_id\": \"3221595648\",\n    \"category\": \"Medicines\",\n    \"name\": \"Kachirigin Filter Leeches\"\n  },\n  {\n    \"id\": \"128667028\",\n    \"symbol\": \"LyraeWeed\",\n    \"market_id\": \"3226417152\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Lyrae Weed\"\n  },\n  {\n    \"id\": \"128667029\",\n    \"symbol\": \"OnionHead\",\n    \"market_id\": \"128129272\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Onionhead\"\n  },\n  {\n    \"id\": \"128667030\",\n    \"symbol\": \"TarachTorSpice\",\n    \"market_id\": \"128041984\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Tarach Spice\"\n  },\n  {\n    \"id\": \"128667031\",\n    \"symbol\": \"Wolf1301Fesh\",\n    \"market_id\": \"128084984\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Wolf Fesh\"\n  },\n  {\n    \"id\": \"128667032\",\n    \"symbol\": \"BorasetaniPathogenetics\",\n    \"market_id\": \"3229638400\",\n    \"category\": \"Weapons\",\n    \"name\": \"Borasetani Pathogenetics\"\n  },\n  {\n    \"id\": \"128667033\",\n    \"symbol\": \"HIP118311Swarm\",\n    \"market_id\": \"3223177472\",\n    \"category\": \"Weapons\",\n    \"name\": \"HIP 118311 Swarm\"\n  },\n  {\n    \"id\": \"128667034\",\n    \"symbol\": \"KonggaAle\",\n    \"market_id\": \"3226978048\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Kongga Ale\"\n  },\n  {\n    \"id\": \"128667035\",\n    \"symbol\": \"WuthieloKuFroth\",\n    \"market_id\": \"3222155776\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Wuthielo Ku Froth\"\n  },\n  {\n    \"id\": \"128667036\",\n    \"symbol\": \"AlacarakmoSkinArt\",\n    \"market_id\": \"3231373824\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Alacarakmo Skin Art\"\n  },\n  {\n    \"id\": \"128667037\",\n    \"symbol\": \"EleuThermals\",\n    \"market_id\": \"3230624768\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Eleu Thermals\"\n  },\n  {\n    \"id\": \"128667038\",\n    \"symbol\": \"EshuUmbrellas\",\n    \"market_id\": \"3222295552\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Eshu Umbrellas\"\n  },\n  {\n    \"id\": \"128667039\",\n    \"symbol\": \"KaretiiCouture\",\n    \"market_id\": \"3227333120\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Karetii Couture\"\n  },\n  {\n    \"id\": \"128667040\",\n    \"symbol\": \"NjangariSaddles\",\n    \"market_id\": \"3222416896\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Njangari Saddles\"\n  },\n  {\n    \"id\": \"128667041\",\n    \"symbol\": \"AnyNaCoffee\",\n    \"market_id\": \"3229880064\",\n    \"category\": \"Foods\",\n    \"name\": \"Any Na Coffee\"\n  },\n  {\n    \"id\": \"128667042\",\n    \"symbol\": \"CD75CatCoffee\",\n    \"market_id\": \"3228566016\",\n    \"category\": \"Foods\",\n    \"name\": \"CD-75 Kitten Brand Coffee\"\n  },\n  {\n    \"id\": \"128667043\",\n    \"symbol\": \"GomanYauponCoffee\",\n    \"market_id\": \"3224449792\",\n    \"category\": \"Foods\",\n    \"name\": \"Goman Yaupon Coffee\"\n  },\n  {\n    \"id\": \"128667044\",\n    \"symbol\": \"VolkhabBeeDrones\",\n    \"market_id\": \"3227831808\",\n    \"category\": \"Machinery\",\n    \"name\": \"Volkhab Bee Drones\"\n  },\n  {\n    \"id\": \"128667045\",\n    \"symbol\": \"KinagoInstruments\",\n    \"market_id\": \"3227394304\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Kinago Violins\"\n  },\n  {\n    \"id\": \"128667046\",\n    \"symbol\": \"NgunaModernAntiques\",\n    \"market_id\": \"3221538304\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Nguna Modern Antiques\"\n  },\n  {\n    \"id\": \"128667047\",\n    \"symbol\": \"RajukruStoves\",\n    \"market_id\": \"3227512320\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Rajukru Multi-Stoves\"\n  },\n  {\n    \"id\": \"128667048\",\n    \"symbol\": \"TiolceWaste2PasteUnits\",\n    \"market_id\": \"3224141312\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Tiolce Waste2Paste Units\"\n  },\n  {\n    \"id\": \"128667049\",\n    \"symbol\": \"ChiEridaniMarinePaste\",\n    \"market_id\": \"128128760\",\n    \"category\": \"Foods\",\n    \"name\": \"Chi Eridani Marine Paste\"\n  },\n  {\n    \"id\": \"128667050\",\n    \"symbol\": \"EsusekuCaviar\",\n    \"market_id\": \"3226919680\",\n    \"category\": \"Foods\",\n    \"name\": \"Esuseku Caviar\"\n  },\n  {\n    \"id\": \"128667051\",\n    \"symbol\": \"LiveHecateSeaWorms\",\n    \"market_id\": \"128042496\",\n    \"category\": \"Foods\",\n    \"name\": \"Live Hecate Sea Worms\"\n  },\n  {\n    \"id\": \"128667052\",\n    \"symbol\": \"HelvetitjPearls\",\n    \"market_id\": \"3231094528\",\n    \"category\": \"Metals\",\n    \"name\": \"Helvetitj Pearls\"\n  },\n  {\n    \"id\": \"128667053\",\n    \"symbol\": \"HIP41181Squid\",\n    \"market_id\": \"3227995392\",\n    \"category\": \"Foods\",\n    \"name\": \"HIP Proto-Squid\"\n  },\n  {\n    \"id\": \"128667054\",\n    \"symbol\": \"CoquimSpongiformVictuals\",\n    \"market_id\": \"3223832576\",\n    \"category\": \"Foods\",\n    \"name\": \"Coquim Spongiform Victuals\"\n  },\n  {\n    \"id\": \"128667055\",\n    \"symbol\": \"AerialEdenApple\",\n    \"market_id\": \"128083448\",\n    \"category\": \"Foods\",\n    \"name\": \"Eden Apples of Aerial\"\n  },\n  {\n    \"id\": \"128667056\",\n    \"symbol\": \"NeritusBerries\",\n    \"market_id\": \"3228206080\",\n    \"category\": \"Foods\",\n    \"name\": \"Neritus Berries\"\n  },\n  {\n    \"id\": \"128667057\",\n    \"symbol\": \"OchoengChillies\",\n    \"market_id\": \"3226719232\",\n    \"category\": \"Foods\",\n    \"name\": \"Ochoeng Chillies\"\n  },\n  {\n    \"id\": \"128667058\",\n    \"symbol\": \"DeuringasTruffles\",\n    \"market_id\": \"3229713408\",\n    \"category\": \"Foods\",\n    \"name\": \"Deuringas Truffles\"\n  },\n  {\n    \"id\": \"128667059\",\n    \"symbol\": \"HR7221Wheat\",\n    \"market_id\": \"3226170880\",\n    \"category\": \"Foods\",\n    \"name\": \"HR 7221 Wheat\"\n  },\n  {\n    \"id\": \"128667060\",\n    \"symbol\": \"JarouaRice\",\n    \"market_id\": \"3224698112\",\n    \"category\": \"Foods\",\n    \"name\": \"Jaroua Rice\"\n  },\n  {\n    \"id\": \"128667061\",\n    \"symbol\": \"BelalansRayLeather\",\n    \"market_id\": \"3223537152\",\n    \"category\": \"Textiles\",\n    \"name\": \"Belalans Ray Leather\"\n  },\n  {\n    \"id\": \"128667062\",\n    \"symbol\": \"DamnaCarapaces\",\n    \"market_id\": \"3227751936\",\n    \"category\": \"Textiles\",\n    \"name\": \"Damna Carapaces\"\n  },\n  {\n    \"id\": \"128667063\",\n    \"symbol\": \"RapaBaoSnakeSkins\",\n    \"market_id\": \"3222875648\",\n    \"category\": \"Textiles\",\n    \"name\": \"Rapa Bao Snake Skins\"\n  },\n  {\n    \"id\": \"128667064\",\n    \"symbol\": \"VanayequiRhinoFur\",\n    \"market_id\": \"3227289856\",\n    \"category\": \"Textiles\",\n    \"name\": \"Vanayequi Ceratomorpha Fur\"\n  },\n  {\n    \"id\": \"128667065\",\n    \"symbol\": \"BastSnakeGin\",\n    \"market_id\": \"128086776\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Bast Snake Gin\"\n  },\n  {\n    \"id\": \"128667066\",\n    \"symbol\": \"ThrutisCream\",\n    \"market_id\": \"3226522368\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Thrutis Cream\"\n  },\n  {\n    \"id\": \"128667067\",\n    \"symbol\": \"WulpaHyperboreSystems\",\n    \"market_id\": \"3221388032\",\n    \"category\": \"Machinery\",\n    \"name\": \"Wulpa Hyperbore Systems\"\n  },\n  {\n    \"id\": \"128667068\",\n    \"symbol\": \"AganippeRush\",\n    \"market_id\": \"128012800\",\n    \"category\": \"Medicines\",\n    \"name\": \"Aganippe Rush\"\n  },\n  {\n    \"id\": \"128667069\",\n    \"symbol\": \"TerraMaterBloodBores\",\n    \"market_id\": \"128051466\",\n    \"category\": \"Medicines\",\n    \"name\": \"Terra Mater Blood Bores\"\n  },\n  {\n    \"id\": \"128667070\",\n    \"symbol\": \"HolvaDuellingBlades\",\n    \"market_id\": \"3222713088\",\n    \"category\": \"Weapons\",\n    \"name\": \"Holva Duelling Blades\"\n  },\n  {\n    \"id\": \"128667071\",\n    \"symbol\": \"KamorinHistoricWeapons\",\n    \"market_id\": \"3221669632\",\n    \"category\": \"Weapons\",\n    \"name\": \"Kamorin Historic Weapons\"\n  },\n  {\n    \"id\": \"128667072\",\n    \"symbol\": \"GilyaSignatureWeapons\",\n    \"market_id\": \"3226857216\",\n    \"category\": \"Weapons\",\n    \"name\": \"Gilya Signature Weapons\"\n  },\n  {\n    \"id\": \"128667073\",\n    \"symbol\": \"DeltaPhoenicisPalms\",\n    \"market_id\": \"128045312\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Delta Phoenicis Palms\"\n  },\n  {\n    \"id\": \"128667074\",\n    \"symbol\": \"ToxandjiVirocide\",\n    \"market_id\": \"3230258688\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Toxandji Virocide\"\n  },\n  {\n    \"id\": \"128667075\",\n    \"symbol\": \"XiheCompanions\",\n    \"market_id\": \"3224133120\",\n    \"category\": \"Technology\",\n    \"name\": \"Xihe Biomorphic Companions\"\n  },\n  {\n    \"id\": \"128667076\",\n    \"symbol\": \"SanumaMEAT\",\n    \"market_id\": \"3230331136\",\n    \"category\": \"Foods\",\n    \"name\": \"Sanuma Decorative Meat\"\n  },\n  {\n    \"id\": \"128667077\",\n    \"symbol\": \"EthgrezeTeaBuds\",\n    \"market_id\": \"3229524992\",\n    \"category\": \"Foods\",\n    \"name\": \"Ethgreze Tea Buds\"\n  },\n  {\n    \"id\": \"128667078\",\n    \"symbol\": \"CeremonialHeikeTea\",\n    \"market_id\": \"3227417856\",\n    \"category\": \"Foods\",\n    \"name\": \"Ceremonial Heike Tea\"\n  },\n  {\n    \"id\": \"128667079\",\n    \"symbol\": \"TanmarkTranquilTea\",\n    \"market_id\": \"128057866\",\n    \"category\": \"Foods\",\n    \"name\": \"Tanmark Tranquil Tea\"\n  },\n  {\n    \"id\": \"128667080\",\n    \"symbol\": \"AZCancriFormula42\",\n    \"market_id\": \"3228400128\",\n    \"category\": \"Technology\",\n    \"name\": \"Az Cancri Formula 42\"\n  },\n  {\n    \"id\": \"128667081\",\n    \"symbol\": \"KamitraCigars\",\n    \"market_id\": \"3225450752\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Kamitra Cigars\"\n  },\n  {\n    \"id\": \"128667082\",\n    \"symbol\": \"RusaniOldSmokey\",\n    \"market_id\": \"3229255680\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Rusani Old Smokey\"\n  },\n  {\n    \"id\": \"128667083\",\n    \"symbol\": \"YasoKondiLeaf\",\n    \"market_id\": \"3223088640\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Yaso Kondi Leaf\"\n  },\n  {\n    \"id\": \"128667084\",\n    \"symbol\": \"ChateauDeAegaeon\",\n    \"market_id\": \"3228416768\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Chateau De Aegaeon\"\n  },\n  {\n    \"id\": \"128667085\",\n    \"symbol\": \"WatersOfShintara\",\n    \"market_id\": \"128666762\",\n    \"category\": \"Medicines\",\n    \"name\": \"Waters of Shintara\"\n  },\n  {\n    \"id\": \"128667668\",\n    \"symbol\": \"OphiuchiExinoArtefacts\",\n    \"market_id\": \"3228939264\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Ophiuch Exino Artefacts\"\n  },\n  {\n    \"id\": \"128667669\",\n    \"symbol\": \"BakedGreebles\",\n    \"market_id\": \"3229378560\",\n    \"category\": \"Foods\",\n    \"name\": \"Baked Greebles\"\n  },\n  {\n    \"id\": \"128667670\",\n    \"symbol\": \"CetiAepyornisEgg\",\n    \"market_id\": \"3222560256\",\n    \"category\": \"Foods\",\n    \"name\": \"Aepyornis Egg\"\n  },\n  {\n    \"id\": \"128667671\",\n    \"symbol\": \"SaxonWine\",\n    \"market_id\": \"3227986432\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Saxon Wine\"\n  },\n  {\n    \"id\": \"128667672\",\n    \"symbol\": \"CentauriMegaGin\",\n    \"market_id\": \"3228728832\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Centauri Mega Gin\"\n  },\n  {\n    \"id\": \"128667673\",\n    \"symbol\": \"AnduligaFireWorks\",\n    \"market_id\": \"3230243584\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Anduliga Fire Works\"\n  },\n  {\n    \"id\": \"128667674\",\n    \"symbol\": \"BankiAmphibiousLeather\",\n    \"market_id\": \"3228346112\",\n    \"category\": \"Textiles\",\n    \"name\": \"Banki Amphibious Leather\"\n  },\n  {\n    \"id\": \"128667675\",\n    \"symbol\": \"CherbonesBloodCrystals\",\n    \"market_id\": \"3229594624\",\n    \"category\": \"Metals\",\n    \"name\": \"Cherbones Blood Crystals\"\n  },\n  {\n    \"id\": \"128667676\",\n    \"symbol\": \"MotronaExperienceJelly\",\n    \"market_id\": \"3229750528\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Motrona Experience Jelly\"\n  },\n  {\n    \"id\": \"128667677\",\n    \"symbol\": \"GeawenDanceDust\",\n    \"market_id\": \"3230954752\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Geawen Dance Dust\"\n  },\n  {\n    \"id\": \"128667678\",\n    \"symbol\": \"GerasianGueuzeBeer\",\n    \"market_id\": \"3228047360\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Gerasian Gueuze Beer\"\n  },\n  {\n    \"id\": \"128667679\",\n    \"symbol\": \"HaidneBlackBrew\",\n    \"market_id\": \"3226557696\",\n    \"category\": \"Foods\",\n    \"name\": \"Haiden Black Brew\"\n  },\n  {\n    \"id\": \"128667680\",\n    \"symbol\": \"HavasupaiDreamCatcher\",\n    \"market_id\": \"3221438976\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Havasupai Dream Catcher\"\n  },\n  {\n    \"id\": \"128667681\",\n    \"symbol\": \"BurnhamBileDistillate\",\n    \"market_id\": \"3230224384\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Burnham Bile Distillate\"\n  },\n  {\n    \"id\": \"128667682\",\n    \"symbol\": \"HIPOrganophosphates\",\n    \"market_id\": \"3227036160\",\n    \"category\": \"Chemicals\",\n    \"name\": \"HIP Organophosphates\"\n  },\n  {\n    \"id\": \"128667683\",\n    \"symbol\": \"JaradharrePuzzlebox\",\n    \"market_id\": \"3230754816\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Jaradharre Puzzle Box\"\n  },\n  {\n    \"id\": \"128667684\",\n    \"symbol\": \"KorroKungPellets\",\n    \"market_id\": \"3228726272\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Korro Kung Pellets\"\n  },\n  {\n    \"id\": \"128667685\",\n    \"symbol\": \"LFTVoidExtractCoffee\",\n    \"market_id\": \"3229028864\",\n    \"category\": \"Foods\",\n    \"name\": \"Void Extract Coffee\"\n  },\n  {\n    \"id\": \"128667686\",\n    \"symbol\": \"HonestyPills\",\n    \"market_id\": \"3229561344\",\n    \"category\": \"Medicines\",\n    \"name\": \"Honesty Pills\"\n  },\n  {\n    \"id\": \"128667687\",\n    \"symbol\": \"NonEuclidianExotanks\",\n    \"market_id\": \"3224135424\",\n    \"category\": \"Machinery\",\n    \"name\": \"Non Euclidian Exotanks\"\n  },\n  {\n    \"id\": \"128667688\",\n    \"symbol\": \"LTTHyperSweet\",\n    \"market_id\": \"3224166400\",\n    \"category\": \"Foods\",\n    \"name\": \"LTT Hyper Sweet\"\n  },\n  {\n    \"id\": \"128667689\",\n    \"symbol\": \"MechucosHighTea\",\n    \"market_id\": \"3228398848\",\n    \"category\": \"Foods\",\n    \"name\": \"Mechucos High Tea\"\n  },\n  {\n    \"id\": \"128667690\",\n    \"symbol\": \"MedbStarlube\",\n    \"market_id\": \"3228762368\",\n    \"category\": \"Chemicals\",\n    \"name\": \"Medb Starlube\"\n  },\n  {\n    \"id\": \"128667691\",\n    \"symbol\": \"MokojingBeastFeast\",\n    \"market_id\": \"3229612800\",\n    \"category\": \"Foods\",\n    \"name\": \"Mokojing Beast Feast\"\n  },\n  {\n    \"id\": \"128667692\",\n    \"symbol\": \"MukusubiiChitinOs\",\n    \"market_id\": \"3221719296\",\n    \"category\": \"Foods\",\n    \"name\": \"Mukusubii Chitin-os\"\n  },\n  {\n    \"id\": \"128667693\",\n    \"symbol\": \"MulachiGiantFungus\",\n    \"market_id\": \"3228892672\",\n    \"category\": \"Foods\",\n    \"name\": \"Mulachi Giant Fungus\"\n  },\n  {\n    \"id\": \"128667694\",\n    \"symbol\": \"NgadandariFireOpals\",\n    \"market_id\": \"3226127872\",\n    \"category\": \"Metals\",\n    \"name\": \"Ngadandari Fire Opals\"\n  },\n  {\n    \"id\": \"128667695\",\n    \"symbol\": \"TiegfriesSynthSilk\",\n    \"market_id\": \"3227726848\",\n    \"category\": \"Textiles\",\n    \"name\": \"Tiegfries Synth Silk\"\n  },\n  {\n    \"id\": \"128667696\",\n    \"symbol\": \"UzumokuLowGWings\",\n    \"market_id\": \"3226474496\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Uzumoku Low-G Wings\"\n  },\n  {\n    \"id\": \"128667697\",\n    \"symbol\": \"VHerculisBodyRub\",\n    \"market_id\": \"3228959232\",\n    \"category\": \"Medicines\",\n    \"name\": \"V Herculis Body Rub\"\n  },\n  {\n    \"id\": \"128667698\",\n    \"symbol\": \"WheemeteWheatCakes\",\n    \"market_id\": \"3225032704\",\n    \"category\": \"Foods\",\n    \"name\": \"Wheemete Wheat Cakes\"\n  },\n  {\n    \"id\": \"128667699\",\n    \"symbol\": \"VegaSlimWeed\",\n    \"market_id\": \"128149240\",\n    \"category\": \"Medicines\",\n    \"name\": \"Vega Slimweed\"\n  },\n  {\n    \"id\": \"128667700\",\n    \"symbol\": \"AltairianSkin\",\n    \"market_id\": \"128151032\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Altairian Skin\"\n  },\n  {\n    \"id\": \"128667701\",\n    \"symbol\": \"PavonisEarGrubs\",\n    \"market_id\": \"128117240\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Pavonis Ear Grubs\"\n  },\n  {\n    \"id\": \"128667702\",\n    \"symbol\": \"JotunMookah\",\n    \"market_id\": \"128078840\",\n    \"category\": \"Textiles\",\n    \"name\": \"Jotun Mookah\"\n  },\n  {\n    \"id\": \"128667703\",\n    \"symbol\": \"GiantVerrix\",\n    \"market_id\": \"128121336\",\n    \"category\": \"Machinery\",\n    \"name\": \"Giant Verrix\"\n  },\n  {\n    \"id\": \"128667704\",\n    \"symbol\": \"IndiBourbon\",\n    \"market_id\": \"128118520\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Indi Bourbon\"\n  },\n  {\n    \"id\": \"128667705\",\n    \"symbol\": \"AroucaConventualSweets\",\n    \"market_id\": \"128098040\",\n    \"category\": \"Foods\",\n    \"name\": \"Arouca Conventual Sweets\"\n  },\n  {\n    \"id\": \"128667706\",\n    \"symbol\": \"TauriChimes\",\n    \"market_id\": \"128134648\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Tauri Chimes\"\n  },\n  {\n    \"id\": \"128667707\",\n    \"symbol\": \"ZeesszeAntGlue\",\n    \"market_id\": \"128125432\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Zeessze Ant Grub Glue\"\n  },\n  {\n    \"id\": \"128667708\",\n    \"symbol\": \"PantaaPrayerSticks\",\n    \"market_id\": \"3228824064\",\n    \"category\": \"Medicines\",\n    \"name\": \"Pantaa Prayer Sticks\"\n  },\n  {\n    \"id\": \"128667709\",\n    \"symbol\": \"FujinTea\",\n    \"market_id\": \"128134392\",\n    \"category\": \"Foods\",\n    \"name\": \"Fujin Tea\"\n  },\n  {\n    \"id\": \"128667710\",\n    \"symbol\": \"ChameleonCloth\",\n    \"market_id\": \"3223418880\",\n    \"category\": \"Textiles\",\n    \"name\": \"Chameleon Cloth\"\n  },\n  {\n    \"id\": \"128667711\",\n    \"symbol\": \"OrrerianViciousBrew\",\n    \"market_id\": \"128166392\",\n    \"category\": \"Foods\",\n    \"name\": \"Orrerian Vicious Brew\"\n  },\n  {\n    \"id\": \"128667712\",\n    \"symbol\": \"UszaianTreeGrub\",\n    \"market_id\": \"128164856\",\n    \"category\": \"Foods\",\n    \"name\": \"Uszaian Tree Grub\"\n  },\n  {\n    \"id\": \"128667713\",\n    \"symbol\": \"MomusBogSpaniel\",\n    \"market_id\": \"128075256\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Momus Bog Spaniel\"\n  },\n  {\n    \"id\": \"128667714\",\n    \"symbol\": \"DisoMaCorn\",\n    \"market_id\": \"128161016\",\n    \"category\": \"Foods\",\n    \"name\": \"Diso Ma Corn\"\n  },\n  {\n    \"id\": \"128667715\",\n    \"symbol\": \"LeestianEvilJuice\",\n    \"market_id\": \"128639992\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Leestian Evil Juice\"\n  },\n  {\n    \"id\": \"128667716\",\n    \"symbol\": \"BlueMilk\",\n    \"market_id\": \"128639992\",\n    \"category\": \"Foods\",\n    \"name\": \"Azure Milk\"\n  },\n  {\n    \"id\": \"128667717\",\n    \"symbol\": \"AlienEggs\",\n    \"market_id\": \"128164088\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Leathery Eggs\"\n  },\n  {\n    \"id\": \"128667718\",\n    \"symbol\": \"AlyaBodilySoap\",\n    \"market_id\": \"3221638400\",\n    \"category\": \"Medicines\",\n    \"name\": \"Alya Body Soap\"\n  },\n  {\n    \"id\": \"128667719\",\n    \"symbol\": \"VidavantianLace\",\n    \"market_id\": \"3231082240\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Vidavantian Lace\"\n  },\n  {\n    \"id\": \"128667760\",\n    \"symbol\": \"TransgenicOnionHead\",\n    \"market_id\": \"128057866\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Lucan Onionhead\"\n  },\n  {\n    \"id\": \"128668017\",\n    \"symbol\": \"JaquesQuinentianStill\",\n    \"market_id\": \"128667761\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Jaques Quinentian Still\"\n  },\n  {\n    \"id\": \"128668018\",\n    \"symbol\": \"SoontillRelics\",\n    \"market_id\": \"3225348096\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Soontill Relics\"\n  },\n  {\n    \"id\": \"128671119\",\n    \"symbol\": \"Advert1\",\n    \"market_id\": \"3227172352\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Ultra-Compact Processor Prototypes\"\n  },\n  {\n    \"id\": \"128672121\",\n    \"symbol\": \"TheHuttonMug\",\n    \"market_id\": \"3228728832\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"The Hutton Mug\"\n  },\n  {\n    \"id\": \"128672122\",\n    \"symbol\": \"SothisCrystallineGold\",\n    \"market_id\": \"128668557\",\n    \"category\": \"Metals\",\n    \"name\": \"Sothis Crystalline Gold\"\n  },\n  {\n    \"id\": \"128672316\",\n    \"symbol\": \"MasterChefs\",\n    \"market_id\": \"128123640\",\n    \"category\": \"Slavery\",\n    \"name\": \"Master Chefs\"\n  },\n  {\n    \"id\": \"128672431\",\n    \"symbol\": \"PersonalGifts\",\n    \"market_id\": \"3223105792\",\n    \"category\": \"Salvage\",\n    \"name\": \"Personal Gifts\"\n  },\n  {\n    \"id\": \"128672432\",\n    \"symbol\": \"CrystallineSpheres\",\n    \"market_id\": \"128059402\",\n    \"category\": \"Salvage\",\n    \"name\": \"Crystalline Spheres\"\n  },\n  {\n    \"id\": \"128672812\",\n    \"symbol\": \"OnionHeadA\",\n    \"market_id\": \"3226977024\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Onionhead Alpha Strain\"\n  },\n  {\n    \"id\": \"128673069\",\n    \"symbol\": \"OnionHeadB\",\n    \"market_id\": \"3223027200\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Onionhead Beta Strain\"\n  },\n  {\n    \"id\": \"128682050\",\n    \"symbol\": \"GalacticTravelGuide\",\n    \"market_id\": \"128673074\",\n    \"category\": \"Salvage\",\n    \"name\": \"Galactic Travel Guide\"\n  },\n  {\n    \"id\": \"128727921\",\n    \"symbol\": \"AnimalEffigies\",\n    \"market_id\": \"3228463360\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Crom Silver Fesh\"\n  },\n  {\n    \"id\": \"128732551\",\n    \"symbol\": \"ShansCharisOrchid\",\n    \"market_id\": \"128107768\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Shan's Charis Orchid\"\n  },\n  {\n    \"id\": \"128748428\",\n    \"symbol\": \"BuckyballBeerMats\",\n    \"market_id\": \"128745551\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Buckyball Beer Mats\"\n  },\n  {\n    \"id\": \"128793113\",\n    \"symbol\": \"HarmaSilverSeaRum\",\n    \"market_id\": \"3221575424\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Harma Silver Sea Rum\"\n  },\n  {\n    \"id\": \"128793114\",\n    \"symbol\": \"PlatinumAloy\",\n    \"market_id\": \"3223779840\",\n    \"category\": \"Metals\",\n    \"name\": \"Platinum Alloy\"\n  },\n  {\n    \"id\": \"128913661\",\n    \"symbol\": \"Nanomedicines\",\n    \"market_id\": \"3226651904\",\n    \"category\": \"Medicines\",\n    \"name\": \"Nanomedicines\"\n  },\n  {\n    \"id\": \"128922524\",\n    \"symbol\": \"Duradrives\",\n    \"market_id\": \"3223453184\",\n    \"category\": \"Consumer Items\",\n    \"name\": \"Duradrives\"\n  },\n  {\n    \"id\": \"128958679\",\n    \"symbol\": \"ApaVietii\",\n    \"market_id\": \"128958681\",\n    \"category\": \"Legal Drugs\",\n    \"name\": \"Apa Vietii\"\n  },\n  {\n    \"id\": \"129002574\",\n    \"symbol\": \"ClassifiedExperimentalEquipment\",\n    \"market_id\": \"128986325\",\n    \"category\": \"Technology\",\n    \"name\": \"Classified Experimental Equipment\"\n  }\n]"
  },
  {
    "path": "src/service/data/edcd/fdevids/rings.json",
    "content": "[\n  {\n    \"id\": \"eRingClass_Icy\",\n    \"name\": \"Icy\"\n  },\n  {\n    \"id\": \"eRingClass_Metalic\",\n    \"name\": \"Metallic\"\n  },\n  {\n    \"id\": \"eRingClass_MetalRich\",\n    \"name\": \"Metal Rich\"\n  },\n  {\n    \"id\": \"eRingClass_Rocky\",\n    \"name\": \"Rocky\"\n  }\n]"
  },
  {
    "path": "src/service/data/edcd/fdevids/security.json",
    "content": "[\n  {\n    \"id\": \"$GAlAXY_MAP_INFO_state_anarchy;\",\n    \"name\": \"Anarchy\"\n  },\n  {\n    \"id\": \"$GALAXY_MAP_INFO_state_lawless;\",\n    \"name\": \"Lawless\"\n  },\n  {\n    \"id\": \"$SYSTEM_SECURITY_high;\",\n    \"name\": \"High\"\n  },\n  {\n    \"id\": \"$SYSTEM_SECURITY_low;\",\n    \"name\": \"Low\"\n  },\n  {\n    \"id\": \"$SYSTEM_SECURITY_medium;\",\n    \"name\": \"Medium\"\n  }\n]"
  },
  {
    "path": "src/service/data/edcd/fdevids/shipyard.json",
    "content": "[\n  {\n    \"id\": \"128049249\",\n    \"symbol\": \"SideWinder\",\n    \"name\": \"Sidewinder\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049255\",\n    \"symbol\": \"Eagle\",\n    \"name\": \"Eagle\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049261\",\n    \"symbol\": \"Hauler\",\n    \"name\": \"Hauler\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049267\",\n    \"symbol\": \"Adder\",\n    \"name\": \"Adder\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049273\",\n    \"symbol\": \"Viper\",\n    \"name\": \"Viper MkIII\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049279\",\n    \"symbol\": \"CobraMkIII\",\n    \"name\": \"Cobra MkIII\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049285\",\n    \"symbol\": \"Type6\",\n    \"name\": \"Type-6 Transporter\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049291\",\n    \"symbol\": \"Dolphin\",\n    \"name\": \"Dolphin\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128049297\",\n    \"symbol\": \"Type7\",\n    \"name\": \"Type-7 Transporter\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049303\",\n    \"symbol\": \"Asp\",\n    \"name\": \"Asp Explorer\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049309\",\n    \"symbol\": \"Vulture\",\n    \"name\": \"Vulture\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049315\",\n    \"symbol\": \"Empire_Trader\",\n    \"name\": \"Imperial Clipper\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049321\",\n    \"symbol\": \"Federation_Dropship\",\n    \"name\": \"Federal Dropship\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049327\",\n    \"symbol\": \"Orca\",\n    \"name\": \"Orca\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049333\",\n    \"symbol\": \"Type9\",\n    \"name\": \"Type-9 Heavy\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049339\",\n    \"symbol\": \"Python\",\n    \"name\": \"Python\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049345\",\n    \"symbol\": \"BelugaLiner\",\n    \"name\": \"Beluga Liner\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128049351\",\n    \"symbol\": \"FerDeLance\",\n    \"name\": \"Fer-de-Lance\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049363\",\n    \"symbol\": \"Anaconda\",\n    \"name\": \"Anaconda\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049369\",\n    \"symbol\": \"Federation_Corvette\",\n    \"name\": \"Federal Corvette\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128049375\",\n    \"symbol\": \"Cutter\",\n    \"name\": \"Imperial Cutter\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671217\",\n    \"symbol\": \"DiamondBack\",\n    \"name\": \"Diamondback Scout\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671223\",\n    \"symbol\": \"Empire_Courier\",\n    \"name\": \"Imperial Courier\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128671831\",\n    \"symbol\": \"DiamondBackXL\",\n    \"name\": \"Diamondback Explorer\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672138\",\n    \"symbol\": \"Empire_Eagle\",\n    \"name\": \"Imperial Eagle\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672145\",\n    \"symbol\": \"Federation_Dropship_MkII\",\n    \"name\": \"Federal Assault Ship\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672152\",\n    \"symbol\": \"Federation_Gunship\",\n    \"name\": \"Federal Gunship\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672255\",\n    \"symbol\": \"Viper_MkIV\",\n    \"name\": \"Viper MkIV\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672262\",\n    \"symbol\": \"CobraMkIV\",\n    \"name\": \"Cobra MkIV\",\n    \"entitlement\": \"ELITE_HORIZONS_V_COBRA_MK_IV_1000\"\n  },\n  {\n    \"id\": \"128672269\",\n    \"symbol\": \"Independant_Trader\",\n    \"name\": \"Keelback\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128672276\",\n    \"symbol\": \"Asp_Scout\",\n    \"name\": \"Asp Scout\",\n    \"entitlement\": \"\"\n  },\n  {\n    \"id\": \"128785619\",\n    \"symbol\": \"Type9_Military\",\n    \"name\": \"Type-10 Defender\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128816567\",\n    \"symbol\": \"Krait_MkII\",\n    \"name\": \"Krait MkII\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128816574\",\n    \"symbol\": \"TypeX\",\n    \"name\": \"Alliance Chieftain\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128816581\",\n    \"symbol\": \"TypeX_2\",\n    \"name\": \"Alliance Crusader\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128816588\",\n    \"symbol\": \"TypeX_3\",\n    \"name\": \"Alliance Challenger\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128839281\",\n    \"symbol\": \"Krait_Light\",\n    \"name\": \"Krait Phantom\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  },\n  {\n    \"id\": \"128915979\",\n    \"symbol\": \"Mamba\",\n    \"name\": \"Mamba\",\n    \"entitlement\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\"\n  }\n]"
  },
  {
    "path": "src/service/data/edcd/fdevids/sku.json",
    "content": "[\n  {\n    \"sku\": \"ELITE_HORIZONS_V_CAUSTIC_MEDIUM\",\n    \"requirement\": \"unlocked via Human Tech Broker\"\n  },\n  {\n    \"sku\": \"ELITE_HORIZONS_V_COBRA_MK_IV_1000\",\n    \"requirement\": \"purchase base game and horizons before 5th Feb 2016 (PC) or 30th July 2016 (XBOX)\"\n  },\n  {\n    \"sku\": \"ELITE_HORIZONS_V_CORROSIONCARGO_SIZE4\",\n    \"requirement\": \"unlocked via Human Tech Broker\"\n  },\n  {\n    \"sku\": \"ELITE_HORIZONS_V_FLECHETTE_FIXED_MEDIUM\",\n    \"requirement\": \"unlocked via Human Tech Broker\"\n  },\n  {\n    \"sku\": \"ELITE_HORIZONS_V_FLECHETTE_TURRET_MEDIUM\",\n    \"requirement\": \"unlocked via Human Tech Broker\"\n  },\n  {\n    \"sku\": \"ELITE_HORIZONS_V_GUARDIAN_FSDBOOSTER\",\n    \"requirement\": \"unlocked via Guardian Tech Broker\"\n  },\n  {\n    \"sku\": \"ELITE_HORIZONS_V_GUARDIAN_GAUSS_FIXED_MEDIUM\",\n    \"requirement\": \"unlocked via Guardian Tech Broker\"\n  },\n  {\n    \"sku\": \"ELITE_HORIZONS_V_GUARDIAN_GAUSS_FIXED_SMALL\",\n    \"requirement\": \"unlocked via Guardian Tech Broker\"\n  },\n  {\n    \"sku\": \"ELITE_HORIZONS_V_GUARDIAN_HULLREINFORCEMENT\",\n    \"requirement\": \"unlocked via Guardian Tech Broker\"\n  },\n  {\n    \"sku\": \"ELITE_HORIZONS_V_GUARDIAN_MODULEREINFORCEMENT\",\n    \"requirement\": \"unlocked via Guardian Tech Broker\"\n  },\n  {\n    \"sku\": \"ELITE_HORIZONS_V_GUARDIAN_PLASMA_FIXED_LARGE\",\n    \"requirement\": \"unlocked via Guardian Tech Broker\"\n  },\n  {\n    \"sku\": \"ELITE_HORIZONS_V_GUARDIAN_PLASMA_FIXED_MEDIUM\",\n    \"requirement\": \"unlocked via Guardian Tech Broker\"\n  },\n  {\n    \"sku\": \"ELITE_HORIZONS_V_GUARDIAN_PLASMA_FIXED_SMALL\",\n    \"requirement\": \"unlocked via Guardian Tech Broker\"\n  },\n  {\n    \"sku\": \"ELITE_HORIZONS_V_GUARDIAN_PLASMA_TURRET_LARGE\",\n    \"requirement\": \"unlocked via Guardian Tech Broker\"\n  },\n  {\n    \"sku\": \"ELITE_HORIZONS_V_GUARDIAN_PLASMA_TURRET_MEDIUM\",\n    \"requirement\": \"unlocked via Guardian Tech Broker\"\n  },\n  {\n    \"sku\": \"ELITE_HORIZONS_V_GUARDIAN_PLASMA_TURRET_SMALL\",\n    \"requirement\": \"unlocked via Guardian Tech Broker\"\n  },\n  {\n    \"sku\": \"ELITE_HORIZONS_V_GUARDIAN_POWERDISTRIBUTOR\",\n    \"requirement\": \"unlocked via Guardian Tech Broker\"\n  },\n  {\n    \"sku\": \"ELITE_HORIZONS_V_GUARDIAN_POWERPLANT\",\n    \"requirement\": \"unlocked via Guardian Tech Broker\"\n  },\n  {\n    \"sku\": \"ELITE_HORIZONS_V_GUARDIAN_SHARD_FIXED_LARGE\",\n    \"requirement\": \"unlocked via Guardian Tech Broker\"\n  },\n  {\n    \"sku\": \"ELITE_HORIZONS_V_GUARDIAN_SHARD_FIXED_MEDIUM\",\n    \"requirement\": \"unlocked via Guardian Tech Broker\"\n  },\n  {\n    \"sku\": \"ELITE_HORIZONS_V_GUARDIAN_SHARD_FIXED_SMALL\",\n    \"requirement\": \"unlocked via Guardian Tech Broker\"\n  },\n  {\n    \"sku\": \"ELITE_HORIZONS_V_GUARDIAN_SHARD_TURRET_LARGE\",\n    \"requirement\": \"unlocked via Guardian Tech Broker\"\n  },\n  {\n    \"sku\": \"ELITE_HORIZONS_V_GUARDIAN_SHARD_TURRET_MEDIUM\",\n    \"requirement\": \"unlocked via Guardian Tech Broker\"\n  },\n  {\n    \"sku\": \"ELITE_HORIZONS_V_GUARDIAN_SHARD_TURRET_SMALL\",\n    \"requirement\": \"unlocked via Guardian Tech Broker\"\n  },\n  {\n    \"sku\": \"ELITE_HORIZONS_V_GUARDIAN_SHIELDREINFORCEMENT\",\n    \"requirement\": \"unlocked via Guardian Tech Broker\"\n  },\n  {\n    \"sku\": \"ELITE_HORIZONS_V_METAHULL\",\n    \"requirement\": \"unlocked via Human Tech Broker\"\n  },\n  {\n    \"sku\": \"ELITE_HORIZONS_V_PLANETARY_LANDINGS\",\n    \"requirement\": \"purchase Horizons or Horizons Season Pass or Lifetime Expansion Pass\"\n  },\n  {\n    \"sku\": \"ELITE_HORIZONS_V_PLASMASHOCK_FIXED_LARGE\",\n    \"requirement\": \"unlocked via Human Tech Broker\"\n  },\n  {\n    \"sku\": \"ELITE_HORIZONS_V_PLASMASHOCK_FIXED_MEDIUM\",\n    \"requirement\": \"unlocked via Human Tech Broker\"\n  },\n  {\n    \"sku\": \"ELITE_HORIZONS_V_PLASMASHOCK_FIXED_SMALL\",\n    \"requirement\": \"unlocked via Human Tech Broker\"\n  },\n  {\n    \"sku\": \"ELITE_HORIZONS_V_PLASMASHOCK_GIMBAL_LARGE\",\n    \"requirement\": \"unlocked via Human Tech Broker\"\n  },\n  {\n    \"sku\": \"ELITE_HORIZONS_V_PLASMASHOCK_GIMBAL_MEDIUM\",\n    \"requirement\": \"unlocked via Human Tech Broker\"\n  },\n  {\n    \"sku\": \"ELITE_HORIZONS_V_PLASMASHOCK_GIMBAL_SMALL\",\n    \"requirement\": \"unlocked via Human Tech Broker\"\n  },\n  {\n    \"sku\": \"ELITE_HORIZONS_V_PLASMASHOCK_TURRET_LARGE\",\n    \"requirement\": \"unlocked via Human Tech Broker\"\n  },\n  {\n    \"sku\": \"ELITE_HORIZONS_V_PLASMASHOCK_TURRET_MEDIUM\",\n    \"requirement\": \"unlocked via Human Tech Broker\"\n  },\n  {\n    \"sku\": \"ELITE_HORIZONS_V_PLASMASHOCK_TURRET_SMALL\",\n    \"requirement\": \"unlocked via Human Tech Broker\"\n  },\n  {\n    \"sku\": \"ELITE_SPECIFIC_V_POWER_100000\",\n    \"requirement\": \"unlocked via allegiance to Aisling Duval power\"\n  },\n  {\n    \"sku\": \"ELITE_SPECIFIC_V_POWER_100010\",\n    \"requirement\": \"unlocked via allegiance to Edmund Mahon power\"\n  },\n  {\n    \"sku\": \"ELITE_SPECIFIC_V_POWER_100020\",\n    \"requirement\": \"unlocked via allegiance to Arissa Lavigny-Duval power\"\n  },\n  {\n    \"sku\": \"ELITE_SPECIFIC_V_POWER_100040\",\n    \"requirement\": \"unlocked via allegiance to Felicia Winters power\"\n  },\n  {\n    \"sku\": \"ELITE_SPECIFIC_V_POWER_100050\",\n    \"requirement\": \"unlocked via allegiance to Denton Patreus power\"\n  },\n  {\n    \"sku\": \"ELITE_SPECIFIC_V_POWER_100060\",\n    \"requirement\": \"unlocked via allegiance to Zachary Hudson power\"\n  },\n  {\n    \"sku\": \"ELITE_SPECIFIC_V_POWER_100070\",\n    \"requirement\": \"unlocked via allegiance to Li Yong-Rui power\"\n  },\n  {\n    \"sku\": \"ELITE_SPECIFIC_V_POWER_100080\",\n    \"requirement\": \"unlocked via allegiance to Zemina Torval power\"\n  },\n  {\n    \"sku\": \"ELITE_SPECIFIC_V_POWER_100090\",\n    \"requirement\": \"unlocked via allegiance to Pranav Antal power\"\n  },\n  {\n    \"sku\": \"ELITE_SPECIFIC_V_POWER_100100\",\n    \"requirement\": \"unlocked via allegiance to Archon Delaine power\"\n  },\n  {\n    \"sku\": \"ELITE_SPECIFIC_V_POWER_100120\",\n    \"requirement\": \"unlocked via allegiance to Yuri Grom power\"\n  }\n]"
  },
  {
    "path": "src/service/data/edcd/fdevids/superpower.json",
    "content": "[\n  {\n    \"id\": \"$faction_Alliance;\",\n    \"name\": \"Alliance\"\n  },\n  {\n    \"id\": \"$faction_Empire;\",\n    \"name\": \"Empire\"\n  },\n  {\n    \"id\": \"$faction_Federation;\",\n    \"name\": \"Federation\"\n  },\n  {\n    \"id\": \"$faction_Independent;\",\n    \"name\": \"Independent\"\n  },\n  {\n    \"id\": \"$faction_none;\",\n    \"name\": \"None\"\n  },\n  {\n    \"id\": \"$faction_Pirate;\",\n    \"name\": \"Pirate\"\n  }\n]"
  },
  {
    "path": "src/service/data/edcd/fdevids/terraformingstate.json",
    "content": "[\n  {\n    \"id\": \"Terraformable\",\n    \"name\": \"Terraformable\"\n  },\n  {\n    \"id\": \"Terraformed\",\n    \"name\": \"Terraformed\"\n  },\n  {\n    \"id\": \"Terraforming\",\n    \"name\": \"Terraforming\"\n  }\n]"
  },
  {
    "path": "src/service/data/engineers.json",
    "content": "[\n  {\n    \"id\": \"300000\",\n    \"systemAddress\": \"3932277478114\",\n    \"marketId\": \"128673927\",\n    \"name\": \"Didi Vatermann\",\n    \"description\": \"Shields and shield boosters\",\n    \"systemName\": \"Leesti\",\n    \"systemPosition\": [72.75,48.75,68.25]\n  },\n  {\n    \"id\": \"300010\",\n    \"systemAddress\": \"1109989017963\",\n    \"marketId\": \"128674183\",\n    \"name\": \"Bill Turner\",\n    \"description\": \"Plasma Accelerators and utilities\",\n    \"systemName\": \"Alioth\",\n    \"systemPosition\": [-33.65625,72.46875,-20.65625]\n  },\n  {\n    \"id\": \"300030\",\n    \"systemAddress\": \"4481966019282\",\n    \"marketId\": \"128674695\",\n    \"name\": \"Broo Tarquin\",\n    \"description\": \"Laser weapons\",\n    \"systemName\": \"Muang\",\n    \"systemPosition\": [17.03125,-172.78125,-3.46875]\n  },\n  {\n    \"id\": \"300040\",\n    \"systemAddress\": \"2827992680811\",\n    \"marketId\": \"128674951\",\n    \"name\": \"The Sarge\",\n    \"description\": \"Cannons and limpets\",\n    \"systemName\": \"Beta-3 Tucani\",\n    \"systemPosition\": [32.25,-55.1875,23.875]\n  },\n  {\n    \"id\": \"300050\",\n    \"systemAddress\": \"6131367744226\",\n    \"marketId\": \"128675207\",\n    \"name\": \"Zacariah Nemo\",\n    \"description\": \"Projectile weapons\",\n    \"systemName\": \"Yoru\",\n    \"systemPosition\": [97.875,-86.90625,64.125]\n  },\n  {\n    \"id\": \"300080\",\n    \"systemAddress\": \"1458309141194\",\n    \"marketId\": \"128675975\",\n    \"name\": \"Liz Ryder\",\n    \"description\": \"Explosive weapons\",\n    \"systemName\": \"Eurybia\",\n    \"systemPosition\": [ 51.40625,-54.40625,-30.5]\n  },\n  {\n    \"id\": \"300090\",\n    \"systemAddress\": \"1733321102034\",\n    \"marketId\": \"128676231\",\n    \"name\": \"Hera Tani\",\n    \"description\": \"Power Plants and Power Distributors\",\n    \"systemName\": \"Kuwemaki\",\n    \"systemPosition\": [134.65625,-226.90625,-7.8125]\n  },\n  {\n    \"id\": \"300100\",\n    \"systemAddress\": \"6681123623626\",\n    \"marketId\": \"128676487\",\n    \"name\": \"Felicity Farseer\",\n    \"description\": \"Frame Shift Drives, thrusters, scanners and sensors\",\n    \"systemName\": \"Deciat\",\n    \"systemPosition\": [122.625,-0.8125,-47.28125]\n  },\n  {\n    \"id\": \"300110\",\n    \"systemAddress\": \"3790082132323\",\n    \"marketId\": \"128676743\",\n    \"name\": \"Ram Tah\",\n    \"description\": \"Limpet controllers and utilities\",\n    \"systemName\": \"Meene\",\n    \"systemPosition\": [118.78125,-56.4375,-97.1875]\n  },\n  {\n    \"id\": \"300120\",\n    \"systemAddress\": \"4305444669811\",\n    \"marketId\": \"128676999\",\n    \"name\": \"Lei Cheung\",\n    \"description\": \"Shields and sensors\",\n    \"systemName\": \"Laksak\",\n    \"systemPosition\": [-21.53125,-6.3125,116.03125]\n  },\n  {\n    \"id\": \"300130\",\n    \"systemAddress\": \"12274907287851\",\n    \"marketId\": \"128677255\",\n    \"name\": \"Petra Olmanova\",\n    \"description\": \"Weapons and utilities\",\n    \"systemName\": \"Asura\",\n    \"systemPosition\": [-9550.28125,-916.65625,19816.1875]\n  },\n  {\n    \"id\": \"300140\",\n    \"systemAddress\": \"10477373803\",\n    \"marketId\": \"128677511\",\n    \"name\": \"Colonel Bris Dekker\",\n    \"description\": \"Frame Shift Drives\",\n    \"systemName\": \"Sol\",\n    \"systemPosition\": [0,0,0]\n  },\n  {\n    \"id\": \"300150\",\n    \"systemAddress\": \"48996147307082\",\n    \"marketId\": \"128677767\",\n    \"name\": \"Marsha Hicks\",\n    \"description\": \"Projectile weapons and limpet controllers\",\n    \"systemName\": \"Tir\",\n    \"systemPosition\": [ -9532.9375,-923.4375,19799.125]\n  },\n  {\n    \"id\": \"300160\",\n    \"systemAddress\": \"3107241104074\",\n    \"marketId\": \"128678023\",\n    \"name\": \"Elvira Martuuk\",\n    \"description\": \"Frame Shift Drives, thrusters and shields\",\n    \"systemName\": \"Khun\",\n    \"systemPosition\": [-171.59375,19.96875,-56.96875]\n  },\n  {\n    \"id\": \"300180\",\n    \"systemAddress\": \"5031654888146\",\n    \"marketId\": \"128678535\",\n    \"name\": \"The Dweller\",\n    \"description\": \"Thermal weapons and Power Distributors\",\n    \"systemName\": \"Wyrd\",\n    \"systemPosition\": [-11.625,31.53125,-3.9375]\n  },\n  {\n    \"id\": \"300200\",\n    \"systemAddress\": \"121569805492\",\n    \"marketId\": \"128679047\",\n    \"name\": \"Marco Qwent\",\n    \"description\": \"Power Plants and Power Distributors\",\n    \"systemName\": \"Sirius\",\n    \"systemPosition\": [6.25,-1.28125,-5.75]\n  },\n  {\n    \"id\": \"300210\",\n    \"systemAddress\": \"24859942069665\",\n    \"marketId\": \"128679303\",\n    \"name\": \"Selene Jean\",\n    \"description\": \"Hull reinforcements and armour\",\n    \"systemName\": \"Kuk\",\n    \"systemPosition\": [-21.28125,69.09375,-16.3125]\n  },\n  {\n    \"id\": \"300220\",\n    \"systemAddress\": \"113573366131\",\n    \"marketId\": \"128679559\",\n    \"name\": \"Professor Palin\",\n    \"description\": \"Frame Shift Drives and thrusters\",\n    \"systemName\": \"Arque\",\n    \"systemPosition\": [66.5,38.0625,61.125]\n  },\n  {\n    \"id\": \"300230\",\n    \"systemAddress\": \"3932277478106\",\n    \"marketId\": \"128679815\",\n    \"name\": \"Lori Jameson\",\n    \"description\": \"Scanners and utilities\",\n    \"systemName\": \"Shinrarta Dezhra\",\n    \"systemPosition\": [55.71875,17.59375,27.15625]\n  },\n  {\n    \"id\": \"300250\",\n    \"systemAddress\": \"4481899074282\",\n    \"marketId\": \"128680327\",\n    \"name\": \"Juri Ishmaak\",\n    \"description\": \"Explosive weapons\",\n    \"systemName\": \"Giryak\",\n    \"systemPosition\": [14.6875,27.65625,108.65625]\n  },\n  {\n    \"id\": \"300260\",\n    \"systemAddress\": \"3107576681170\",\n    \"marketId\": \"128680583\",\n    \"name\": \"Tod 'The Blaster' McQuinn\",\n    \"description\": \"Kinetic weapons\",\n    \"systemName\": \"Wolf 397\",\n    \"systemPosition\": [14.6875,27.65625,108.65625]\n  },\n  {\n    \"id\": \"300270\",\n    \"systemAddress\": \"164098653\",\n    \"marketId\": \"128680839\",\n    \"name\": \"Tiana Fortune\",\n    \"description\": \"Scanners, sensors and utilities\",\n    \"systemName\": \"Achenar\",\n    \"systemPosition\": [67.5,-119.46875,24.84375]\n  },\n  {\n    \"id\": \"300280\",\n    \"systemAddress\": \"66038577537618\",\n    \"marketId\": \"128681095\",\n    \"name\": \"Mel Brandon\",\n    \"description\": \"Laser weapons, shields, Frame Shift Drives and thrusters\",\n    \"systemName\": \"Luchtaine\",\n    \"systemPosition\": [ -9523.3125,-914.46875,19825.90625]\n  },\n  {\n    \"id\": \"300290\",\n    \"systemAddress\": \"11887629902418\",\n    \"marketId\": \"128681351\",\n    \"name\": \"Etienne Dorn\",\n    \"description\": \"Plasma Accelerators, Rail Guns, Scanners and core modules\",\n    \"systemName\": \"Los\",\n    \"systemPosition\": [-9509.34375,-886.3125,19820.125]\n  },\n  {\n    \"id\": \"300300\",\n    \"systemAddress\": \"594676730147\",\n    \"marketId\": \"128954244\",\n    \"name\": \"Chloe Sedesi\",\n    \"description\": \"Frame Shift Drives and thrusters\",\n    \"systemName\": \"Shenve\",\n    \"systemPosition\": [ 351.96875,-373.46875,-711.09375]\n  },\n  {\n    \"id\": \"400001\",\n    \"systemAddress\": \"7268024067513\",\n    \"marketId\": \"128972903\",\n    \"name\": \"Jude Navarro\",\n    \"description\": \"Suits and handheld weapons\",\n    \"systemName\": \"Aurai\",\n    \"systemPosition\": [0.9375,-47.8125,46.28125]\n  },\n  {\n    \"id\": \"400002\",\n    \"systemAddress\": \"5068464399785\",\n    \"marketId\": \"128973159\",\n    \"name\": \"Domino Green\",\n    \"description\": \"Suits and handheld weapons\",\n    \"systemName\": \"Orishis\",\n    \"systemPosition\": [-31,93.96875,-3.5625]\n  },\n  {\n    \"id\": \"400003\",\n    \"systemAddress\": \"7269634614689\",\n    \"marketId\": \"128973415\",\n    \"name\": \"Hero Ferrari\",\n    \"description\": \"Suits and handheld weapons\",\n    \"systemName\": \"Siris\",\n    \"systemPosition\": [131.0625,-73.59375,-11.25]\n  },\n  {\n    \"id\": \"400004\",\n    \"systemAddress\": \"2827975936355\",\n    \"marketId\": \"128973671\",\n    \"name\": \"Kit Fowler\",\n    \"description\": \"Suits and handheld weapons\",\n    \"systemName\": \"Capoya\",\n    \"systemPosition\": [-60.65625,82.4375,-45.0625]\n  },\n  {\n    \"id\": \"400005\",\n    \"systemAddress\": \"2832832893634\",\n    \"marketId\": \"128973927\",\n    \"name\": \"Wellington Beck\",\n    \"description\": \"Suits and handheld weapons\",\n    \"systemName\": \"Jolapa\",\n    \"systemPosition\": [100.1875,-41.34375,-78]\n  },\n  {\n    \"id\": \"400006\",\n    \"systemAddress\": \"3721329101171\",\n    \"marketId\": \"128974183\",\n    \"name\": \"Terra Velasquez\",\n    \"description\": \"Suits and handheld weapons\",\n    \"systemName\": \"Shou Xing\",\n    \"systemPosition\": [-16.28125,-44.53125,94.375]\n  },\n  {\n    \"id\": \"400007\",\n    \"systemAddress\": \"16065190962585\",\n    \"marketId\": \"128974439\",\n    \"name\": \"Uma Laszlo\",\n    \"description\": \"Suits and handheld weapons\",\n    \"systemName\": \"Xuane\",\n    \"systemPosition\": [93.875,-9.25,-32.53125]\n  },\n  {\n    \"id\": \"400008\",\n    \"systemAddress\": \"8879744226018\",\n    \"marketId\": \"128974695\",\n    \"name\": \"Oden Geiger\",\n    \"description\": \"Suits and handheld weapons\",\n    \"systemName\": \"Candiaei\",\n    \"systemPosition\": [-113.5,-4.9375,66.84375]\n  },\n  {\n    \"id\": \"400009\",\n    \"systemAddress\": \"670686455169\",\n    \"marketId\": \"128974951\",\n    \"name\": \"Yarden Bond\",\n    \"description\": \"Suits and handheld weapons\",\n    \"systemName\": \"Bayan\",\n    \"systemPosition\": [ -19.96875,117.625,-90.46875]\n  },\n  {\n    \"id\": \"400010\",\n    \"systemAddress\": \"71536135676490\",\n    \"marketId\": \"128986843\",\n    \"name\": \"Baltanos\",\n    \"description\": \"Suits and handheld weapons\",\n    \"systemName\": \"Deriso\",\n    \"systemPosition\": [-9520.3125,-909.5,19808.75]\n  },\n  {\n    \"id\": \"400011\",\n    \"systemAddress\": \"38001031029322\",\n    \"marketId\": \"128987099\",\n    \"name\": \"Eleanor Bresa\",\n    \"description\": \"Suits and handheld weapons\",\n    \"systemName\": \"Desy\",\n    \"systemPosition\": [-9534.21875,-912.21875,19792.375]\n  },\n  {\n    \"id\": \"400012\",\n    \"systemAddress\": \"59166629864010\",\n    \"marketId\": \"128986587\",\n    \"name\": \"Rosa Dayette\",\n    \"description\": \"Suits and handheld weapons\",\n    \"systemName\": \"Kojeara\",\n    \"systemPosition\": [-9513.09375,-908.84375,19814.28125]\n  },\n  {\n    \"id\": \"400013\",\n    \"systemAddress\": \"13736779007129\",\n    \"marketId\": \"128987355\",\n    \"name\": \"Yi Shen\",\n    \"description\": \"Suits and handheld weapons\",\n    \"systemName\": \"Einheriar\",\n    \"systemPosition\": [-9557.8125,-880.1875,19801.5625]\n  }\n]"
  },
  {
    "path": "src/service/data/material-uses.json",
    "content": "[\n  {\n    \"symbol\": \"Iron\",\n    \"name\": \"Iron\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Armour_Advanced\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Advanced\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerPlant_Stealth\",\n        \"name\": \"Low emissions\",\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Scanner_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_Explosive\",\n        \"name\": \"Blast resistant\",\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Focused\",\n        \"name\": \"Focused\",\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"Nickel\",\n    \"name\": \"Nickel\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Armour_Explosive\",\n        \"name\": \"Blast resistant\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"Armour_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"1\",\n          \"2\"\n        ]\n      },\n      {\n        \"symbol\": \"Armour_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"2\"\n        ]\n      },\n      {\n        \"symbol\": \"Misc_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"CollectionLimpet_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"FSD_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"FuelTransferLimpet_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"HatchBreakerLimpet_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Explosive\",\n        \"name\": \"Blast resistant\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"1\",\n          \"2\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"2\"\n        ]\n      },\n      {\n        \"symbol\": \"LifeSupport_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"ProspectingLimpet_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"MC_Overcharged\",\n        \"name\": \"Overcharged\",\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Overcharged\",\n        \"name\": \"Overcharged\",\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_ShortRange\",\n        \"name\": \"Short range\",\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Sturdy\",\n        \"name\": \"Sturdy\",\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"Tin\",\n    \"name\": \"Tin\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Armour_Advanced\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Engine_Tuned\",\n        \"name\": \"Clean\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Advanced\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Scanner_WideAngle\",\n        \"name\": \"Wide angle\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_WideAngle\",\n        \"name\": \"Wide angle\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_Expanded\",\n        \"name\": \"Expanded Probe Scanning Radius\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_HeavyDuty\",\n        \"name\": \"Heavy duty\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldGenerator_Optimised\",\n        \"name\": \"Enhanced low power\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_HighCapacity\",\n        \"name\": \"High capacity\",\n        \"grades\": [\n          \"4\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"Zinc\",\n    \"name\": \"Zinc\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Armour_Explosive\",\n        \"name\": \"Blast resistant\",\n        \"grades\": [\n          \"2\"\n        ]\n      },\n      {\n        \"symbol\": \"Misc_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"CollectionLimpet_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"FSD_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"FuelTransferLimpet_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"HatchBreakerLimpet_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Explosive\",\n        \"name\": \"Blast resistant\",\n        \"grades\": [\n          \"2\"\n        ]\n      },\n      {\n        \"symbol\": \"LifeSupport_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"ProspectingLimpet_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"MC_Overcharged\",\n        \"name\": \"Overcharged\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Overcharged\",\n        \"name\": \"Overcharged\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Sturdy\",\n        \"name\": \"Sturdy\",\n        \"grades\": [\n          \"4\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"Carbon\",\n    \"name\": \"Carbon\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"AFM_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Armour_Explosive\",\n        \"name\": \"Blast resistant\",\n        \"grades\": [\n          \"2\"\n        ]\n      },\n      {\n        \"symbol\": \"Armour_HeavyDuty\",\n        \"name\": \"Heavy duty\",\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Misc_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"CollectionLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Engine_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"FSD_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"FuelScoop_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"FuelTransferLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"HatchBreakerLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Explosive\",\n        \"name\": \"Blast resistant\",\n        \"grades\": [\n          \"2\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_HeavyDuty\",\n        \"name\": \"Heavy duty\",\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"LifeSupport_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerPlant_Armoured\",\n        \"name\": \"Armoured\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"ProspectingLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Refineries_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_DoubleShot\",\n        \"name\": \"Double shot\",\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"Sulphur\",\n    \"name\": \"Sulphur\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Engine_Tuned\",\n        \"name\": \"Clean\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_HighCapacity\",\n        \"name\": \"High charge capacity\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_PriorityEngines\",\n        \"name\": \"Engine focused\",\n        \"grades\": [\n          \"1\",\n          \"2\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_PrioritySystems\",\n        \"name\": \"System focused\",\n        \"grades\": [\n          \"1\",\n          \"2\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_PriorityWeapons\",\n        \"name\": \"Weapon focused\",\n        \"grades\": [\n          \"1\",\n          \"2\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerPlant_Boosted\",\n        \"name\": \"Overcharged\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldCellBank_Rapid\",\n        \"name\": \"Rapid charge\",\n        \"grades\": [\n          \"1\",\n          \"3\",\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Efficient\",\n        \"name\": \"Efficient\",\n        \"grades\": [\n          \"1\",\n          \"2\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"Phosphorus\",\n    \"name\": \"Phosphorus\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Misc_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"CollectionLimpet_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"FSD_LongRange\",\n        \"name\": \"Increased range\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"FuelTransferLimpet_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"HatchBreakerLimpet_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"LifeSupport_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"ProspectingLimpet_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_FastScan\",\n        \"name\": \"Fast scan\",\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_Resistive\",\n        \"name\": \"Resistance augmented\",\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldGenerator_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"1\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"Manganese\",\n    \"name\": \"Manganese\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Misc_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"CollectionLimpet_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"FSD_LongRange\",\n        \"name\": \"Increased range\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"FuelTransferLimpet_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"HatchBreakerLimpet_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"LifeSupport_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"ProspectingLimpet_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_FastScan\",\n        \"name\": \"Fast scan\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_Resistive\",\n        \"name\": \"Resistance augmented\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldGenerator_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"Selenium\",\n    \"name\": \"Selenium\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Engine_Dirty\",\n        \"name\": \"Dirty\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"FSD_FastBoot\",\n        \"name\": \"Faster boot sequence\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_HighCapacity\",\n        \"name\": \"High charge capacity\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_PriorityEngines\",\n        \"name\": \"Engine focused\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_PrioritySystems\",\n        \"name\": \"System focused\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_PriorityWeapons\",\n        \"name\": \"Weapon focused\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerPlant_Boosted\",\n        \"name\": \"Overcharged\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldGenerator_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldGenerator_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Efficient\",\n        \"name\": \"Efficient\",\n        \"grades\": [\n          \"4\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"Chromium\",\n    \"name\": \"Chromium\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Engine_Dirty\",\n        \"name\": \"Dirty\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"FSD_FastBoot\",\n        \"name\": \"Faster boot sequence\",\n        \"grades\": [\n          \"2\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_HighCapacity\",\n        \"name\": \"High charge capacity\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_PriorityEngines\",\n        \"name\": \"Engine focused\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_PrioritySystems\",\n        \"name\": \"System focused\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldCellBank_Rapid\",\n        \"name\": \"Rapid charge\",\n        \"grades\": [\n          \"2\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Efficient\",\n        \"name\": \"Efficient\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Focused\",\n        \"name\": \"Focused\",\n        \"grades\": [\n          \"3\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"Vanadium\",\n    \"name\": \"Vanadium\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"AFM_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Armour_Explosive\",\n        \"name\": \"Blast resistant\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Armour_HeavyDuty\",\n        \"name\": \"Heavy duty\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Armour_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Armour_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Misc_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Misc_ChaffCapacity\",\n        \"name\": \"Ammo capacity\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"CollectionLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Engine_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"FSD_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"FuelScoop_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"FuelTransferLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"HatchBreakerLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Misc_HeatSinkCapacity\",\n        \"name\": \"Ammo capacity\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Explosive\",\n        \"name\": \"Blast resistant\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_HeavyDuty\",\n        \"name\": \"Heavy duty\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"LifeSupport_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Misc_PointDefenseCapacity\",\n        \"name\": \"Ammo capacity\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerPlant_Armoured\",\n        \"name\": \"Armoured\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"ProspectingLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Refineries_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_DoubleShot\",\n        \"name\": \"Double shot\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_HighCapacity\",\n        \"name\": \"High capacity\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"Germanium\",\n    \"name\": \"Germanium\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Armour_Advanced\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Advanced\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerPlant_Stealth\",\n        \"name\": \"Low emissions\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Scanner_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Scanner_WideAngle\",\n        \"name\": \"Wide angle\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_WideAngle\",\n        \"name\": \"Wide angle\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_Expanded\",\n        \"name\": \"Expanded Probe Scanning Radius\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_Explosive\",\n        \"name\": \"Blast resistant\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"2\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"2\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldGenerator_Optimised\",\n        \"name\": \"Enhanced low power\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldGenerator_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Focused\",\n        \"name\": \"Focused\",\n        \"grades\": [\n          \"4\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"Cadmium\",\n    \"name\": \"Cadmium\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Engine_Dirty\",\n        \"name\": \"Dirty\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"FSD_FastBoot\",\n        \"name\": \"Faster boot sequence\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_PriorityEngines\",\n        \"name\": \"Engine focused\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_PrioritySystems\",\n        \"name\": \"System focused\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_PriorityWeapons\",\n        \"name\": \"Weapon focused\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerPlant_Boosted\",\n        \"name\": \"Overcharged\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Efficient\",\n        \"name\": \"Efficient\",\n        \"grades\": [\n          \"5\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"Tungsten\",\n    \"name\": \"Tungsten\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"AFM_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Armour_Explosive\",\n        \"name\": \"Blast resistant\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Armour_HeavyDuty\",\n        \"name\": \"Heavy duty\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Armour_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Armour_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Misc_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"3\",\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Misc_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"CollectionLimpet_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"3\",\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"CollectionLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"FSD_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"FuelScoop_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"FuelTransferLimpet_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"3\",\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"FuelTransferLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"HatchBreakerLimpet_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"3\",\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"HatchBreakerLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Explosive\",\n        \"name\": \"Blast resistant\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_HeavyDuty\",\n        \"name\": \"Heavy duty\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"LifeSupport_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"3\",\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"LifeSupport_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerPlant_Armoured\",\n        \"name\": \"Armoured\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"ProspectingLimpet_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"3\",\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"ProspectingLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Refineries_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Sturdy\",\n        \"name\": \"Sturdy\",\n        \"grades\": [\n          \"3\",\n          \"4\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"Arsenic\",\n    \"name\": \"Arsenic\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"FSD_LongRange\",\n        \"name\": \"Increased range\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_FastScan\",\n        \"name\": \"Fast scan\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldGenerator_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"5\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"Molybdenum\",\n    \"name\": \"Molybdenum\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Armour_Explosive\",\n        \"name\": \"Blast resistant\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Armour_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Armour_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Misc_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"4\",\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"CollectionLimpet_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"4\",\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"FuelTransferLimpet_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"4\",\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"HatchBreakerLimpet_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"4\",\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Explosive\",\n        \"name\": \"Blast resistant\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"LifeSupport_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"4\",\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"ProspectingLimpet_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"4\",\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Sturdy\",\n        \"name\": \"Sturdy\",\n        \"grades\": [\n          \"4\",\n          \"5\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"Niobium\",\n    \"name\": \"Niobium\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Misc_ChaffCapacity\",\n        \"name\": \"Ammo capacity\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"Misc_HeatSinkCapacity\",\n        \"name\": \"Ammo capacity\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"Misc_PointDefenseCapacity\",\n        \"name\": \"Ammo capacity\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerPlant_Stealth\",\n        \"name\": \"Low emissions\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Scanner_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Scanner_WideAngle\",\n        \"name\": \"Wide angle\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_WideAngle\",\n        \"name\": \"Wide angle\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_Expanded\",\n        \"name\": \"Expanded Probe Scanning Radius\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_Explosive\",\n        \"name\": \"Blast resistant\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_HeavyDuty\",\n        \"name\": \"Heavy duty\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldGenerator_Optimised\",\n        \"name\": \"Enhanced low power\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Focused\",\n        \"name\": \"Focused\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_HighCapacity\",\n        \"name\": \"High capacity\",\n        \"grades\": [\n          \"3\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"Zirconium\",\n    \"name\": \"Zirconium\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"HullReinforcement_Explosive\",\n        \"name\": \"Blast resistant\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"MC_Overcharged\",\n        \"name\": \"Overcharged\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Overcharged\",\n        \"name\": \"Overcharged\",\n        \"grades\": [\n          \"5\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"Mercury\",\n    \"name\": \"Mercury\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Armour_Explosive\",\n        \"name\": \"Blast resistant\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Explosive\",\n        \"name\": \"Blast resistant\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldGenerator_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldGenerator_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"4\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"Yttrium\",\n    \"name\": \"Yttrium\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"ShieldCellBank_Specialised\",\n        \"name\": \"Specialised\",\n        \"grades\": [\n          \"4\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"Tellurium\",\n    \"name\": \"Tellurium\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"FSD_FastBoot\",\n        \"name\": \"Faster boot sequence\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_PriorityWeapons\",\n        \"name\": \"Weapon focused\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerPlant_Boosted\",\n        \"name\": \"Overcharged\",\n        \"grades\": [\n          \"5\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"Polonium\",\n    \"name\": \"Polonium\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"Technetium\",\n    \"name\": \"Technetium\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Misc_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"CollectionLimpet_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"FuelTransferLimpet_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"HatchBreakerLimpet_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"LifeSupport_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"ProspectingLimpet_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_RapidFire\",\n        \"name\": \"Rapid fire\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Sturdy\",\n        \"name\": \"Sturdy\",\n        \"grades\": [\n          \"5\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"Ruthenium\",\n    \"name\": \"Ruthenium\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Armour_Explosive\",\n        \"name\": \"Blast resistant\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Explosive\",\n        \"name\": \"Blast resistant\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldGenerator_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldGenerator_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"5\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"Antimony\",\n    \"name\": \"Antimony\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"ShieldBooster_HeavyDuty\",\n        \"name\": \"Heavy duty\",\n        \"grades\": [\n          \"5\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"GridResistors\",\n    \"name\": \"Grid Resistors\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"FSD_FastBoot\",\n        \"name\": \"Faster boot sequence\",\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"FSDinterdictor_Expanded\",\n        \"name\": \"Expanded capture arc\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_HighFrequency\",\n        \"name\": \"Charge enhanced\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_HeavyDuty\",\n        \"name\": \"Heavy duty\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"2\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldCellBank_Rapid\",\n        \"name\": \"Rapid charge\",\n        \"grades\": [\n          \"2\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"CrystalShards\",\n    \"name\": \"Crystal Shards\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"TemperedAlloys\",\n    \"name\": \"Tempered Alloys\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"BasicConductors\",\n    \"name\": \"Basic Conductors\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"MechanicalScrap\",\n    \"name\": \"Mechanical Scrap\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Misc_ChaffCapacity\",\n        \"name\": \"Ammo capacity\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"FSDinterdictor_Expanded\",\n        \"name\": \"Expanded capture arc\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"Misc_HeatSinkCapacity\",\n        \"name\": \"Ammo capacity\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"Misc_PointDefenseCapacity\",\n        \"name\": \"Ammo capacity\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"Scanner_WideAngle\",\n        \"name\": \"Wide angle\",\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_WideAngle\",\n        \"name\": \"Wide angle\",\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_Expanded\",\n        \"name\": \"Expanded Probe Scanning Radius\",\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_HighCapacity\",\n        \"name\": \"High capacity\",\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_RapidFire\",\n        \"name\": \"Rapid fire\",\n        \"grades\": [\n          \"1\",\n          \"2\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"HeatConductionWiring\",\n    \"name\": \"Heat Conduction Wiring\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Armour_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"Engine_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerPlant_Boosted\",\n        \"name\": \"Overcharged\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"WornShieldEmitters\",\n    \"name\": \"Worn Shield Emitters\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"AFM_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"Misc_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"CollectionLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"FuelScoop_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"FuelTransferLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"HatchBreakerLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"LifeSupport_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerPlant_Armoured\",\n        \"name\": \"Armoured\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"ProspectingLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"1\"\n        ]\n      },\n      {\n        \"symbol\": \"Refineries_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"1\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"CompactComposites\",\n    \"name\": \"Compact Composites\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"SalvagedAlloys\",\n    \"name\": \"Salvaged Alloys\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Armour_Explosive\",\n        \"name\": \"Blast resistant\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Armour_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Armour_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Misc_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"CollectionLimpet_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"FuelTransferLimpet_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"HatchBreakerLimpet_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Explosive\",\n        \"name\": \"Blast resistant\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"LifeSupport_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"ProspectingLimpet_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"ChemicalStorageUnits\",\n    \"name\": \"Chemical Storage Units\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"HybridCapacitors\",\n    \"name\": \"Hybrid Capacitors\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"FSD_FastBoot\",\n        \"name\": \"Faster boot sequence\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_HighFrequency\",\n        \"name\": \"Charge enhanced\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_PriorityWeapons\",\n        \"name\": \"Weapon focused\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Scanner_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_HeavyDuty\",\n        \"name\": \"Heavy duty\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldCellBank_Rapid\",\n        \"name\": \"Rapid charge\",\n        \"grades\": [\n          \"3\",\n          \"4\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"UncutFocusCrystals\",\n    \"name\": \"Flawed Focus Crystals\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Sensor_FastScan\",\n        \"name\": \"Fast scan\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"HeatResistantCeramics\",\n    \"name\": \"Heat Resistant Ceramics\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"ConductiveComponents\",\n    \"name\": \"Conductive Components\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Armour_Advanced\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Misc_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"CollectionLimpet_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Engine_Tuned\",\n        \"name\": \"Clean\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"FuelTransferLimpet_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"HatchBreakerLimpet_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Advanced\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"LifeSupport_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_PriorityEngines\",\n        \"name\": \"Engine focused\",\n        \"grades\": [\n          \"2\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_PrioritySystems\",\n        \"name\": \"System focused\",\n        \"grades\": [\n          \"2\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_PriorityWeapons\",\n        \"name\": \"Weapon focused\",\n        \"grades\": [\n          \"2\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerPlant_Boosted\",\n        \"name\": \"Overcharged\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"ProspectingLimpet_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_Explosive\",\n        \"name\": \"Blast resistant\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_Resistive\",\n        \"name\": \"Resistance augmented\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldCellBank_Specialised\",\n        \"name\": \"Specialised\",\n        \"grades\": [\n          \"2\",\n          \"3\",\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldGenerator_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Focused\",\n        \"name\": \"Focused\",\n        \"grades\": [\n          \"2\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"MC_Overcharged\",\n        \"name\": \"Overcharged\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Overcharged\",\n        \"name\": \"Overcharged\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"MechanicalEquipment\",\n    \"name\": \"Mechanical Equipment\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Engine_Dirty\",\n        \"name\": \"Dirty\",\n        \"grades\": [\n          \"2\"\n        ]\n      },\n      {\n        \"symbol\": \"FSDinterdictor_Expanded\",\n        \"name\": \"Expanded capture arc\",\n        \"grades\": [\n          \"2\",\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Scanner_WideAngle\",\n        \"name\": \"Wide angle\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_WideAngle\",\n        \"name\": \"Wide angle\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_Expanded\",\n        \"name\": \"Expanded Probe Scanning Radius\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_DoubleShot\",\n        \"name\": \"Double shot\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_HighCapacity\",\n        \"name\": \"High capacity\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_RapidFire\",\n        \"name\": \"Rapid fire\",\n        \"grades\": [\n          \"3\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"HeatDispersionPlate\",\n    \"name\": \"Heat Dispersion Plate\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Armour_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"2\"\n        ]\n      },\n      {\n        \"symbol\": \"Engine_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"FSD_FastBoot\",\n        \"name\": \"Faster boot sequence\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"2\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerPlant_Boosted\",\n        \"name\": \"Overcharged\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"3\",\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Efficient\",\n        \"name\": \"Efficient\",\n        \"grades\": [\n          \"2\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_RapidFire\",\n        \"name\": \"Rapid fire\",\n        \"grades\": [\n          \"2\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"ShieldEmitters\",\n    \"name\": \"Shield Emitters\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"AFM_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Armour_HeavyDuty\",\n        \"name\": \"Heavy duty\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Misc_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Misc_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"CollectionLimpet_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"CollectionLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"FSD_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"2\"\n        ]\n      },\n      {\n        \"symbol\": \"FuelScoop_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"FuelTransferLimpet_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"FuelTransferLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"HatchBreakerLimpet_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"HatchBreakerLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_HeavyDuty\",\n        \"name\": \"Heavy duty\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"LifeSupport_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"LifeSupport_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerPlant_Armoured\",\n        \"name\": \"Armoured\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"ProspectingLimpet_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"ProspectingLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Refineries_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Sturdy\",\n        \"name\": \"Sturdy\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"FilamentComposites\",\n    \"name\": \"Filament Composites\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"GalvanisingAlloys\",\n    \"name\": \"Galvanising Alloys\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Armour_Explosive\",\n        \"name\": \"Blast resistant\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Armour_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Armour_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Explosive\",\n        \"name\": \"Blast resistant\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"4\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"ChemicalProcessors\",\n    \"name\": \"Chemical Processors\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"FSD_LongRange\",\n        \"name\": \"Increased range\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_HighFrequency\",\n        \"name\": \"Charge enhanced\",\n        \"grades\": [\n          \"2\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"ElectrochemicalArrays\",\n    \"name\": \"Electrochemical Arrays\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"FSD_FastBoot\",\n        \"name\": \"Faster boot sequence\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_PriorityEngines\",\n        \"name\": \"Engine focused\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_PrioritySystems\",\n        \"name\": \"System focused\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_PriorityWeapons\",\n        \"name\": \"Weapon focused\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Scanner_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_HeavyDuty\",\n        \"name\": \"Heavy duty\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"MC_Overcharged\",\n        \"name\": \"Overcharged\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Overcharged\",\n        \"name\": \"Overcharged\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_ShortRange\",\n        \"name\": \"Short range\",\n        \"grades\": [\n          \"3\",\n          \"4\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"FocusCrystals\",\n    \"name\": \"Focus Crystals\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Sensor_FastScan\",\n        \"name\": \"Fast scan\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_Explosive\",\n        \"name\": \"Blast resistant\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_Resistive\",\n        \"name\": \"Resistance augmented\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldGenerator_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldGenerator_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Focused\",\n        \"name\": \"Focused\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"3\",\n          \"4\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"PrecipitatedAlloys\",\n    \"name\": \"Precipitated Alloys\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"ShieldCellBank_Rapid\",\n        \"name\": \"Rapid charge\",\n        \"grades\": [\n          \"3\",\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldGenerator_Optimised\",\n        \"name\": \"Enhanced low power\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_RapidFire\",\n        \"name\": \"Rapid fire\",\n        \"grades\": [\n          \"3\",\n          \"5\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"ConductiveCeramics\",\n    \"name\": \"Conductive Ceramics\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Armour_Advanced\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"4\",\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Misc_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"3\",\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"CollectionLimpet_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"3\",\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Engine_Tuned\",\n        \"name\": \"Clean\",\n        \"grades\": [\n          \"4\",\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"FuelTransferLimpet_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"3\",\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"HatchBreakerLimpet_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"3\",\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Advanced\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"4\",\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"LifeSupport_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"3\",\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerPlant_Boosted\",\n        \"name\": \"Overcharged\",\n        \"grades\": [\n          \"4\",\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"ProspectingLimpet_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"3\",\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"3\",\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_Resistive\",\n        \"name\": \"Resistance augmented\",\n        \"grades\": [\n          \"4\",\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldGenerator_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Focused\",\n        \"name\": \"Focused\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"3\",\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"MC_Overcharged\",\n        \"name\": \"Overcharged\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Overcharged\",\n        \"name\": \"Overcharged\",\n        \"grades\": [\n          \"4\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"MechanicalComponents\",\n    \"name\": \"Mechanical Components\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Engine_Dirty\",\n        \"name\": \"Dirty\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"FSDinterdictor_Expanded\",\n        \"name\": \"Expanded capture arc\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Scanner_WideAngle\",\n        \"name\": \"Wide angle\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_WideAngle\",\n        \"name\": \"Wide angle\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_Expanded\",\n        \"name\": \"Expanded Probe Scanning Radius\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldGenerator_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_DoubleShot\",\n        \"name\": \"Double shot\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_HighCapacity\",\n        \"name\": \"High capacity\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_RapidFire\",\n        \"name\": \"Rapid fire\",\n        \"grades\": [\n          \"4\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"HeatExchangers\",\n    \"name\": \"Heat Exchangers\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Armour_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Engine_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"FSD_FastBoot\",\n        \"name\": \"Faster boot sequence\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerPlant_Stealth\",\n        \"name\": \"Low emissions\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Efficient\",\n        \"name\": \"Efficient\",\n        \"grades\": [\n          \"3\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"ShieldingSensors\",\n    \"name\": \"Shielding Sensors\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"AFM_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Armour_HeavyDuty\",\n        \"name\": \"Heavy duty\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Misc_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"CollectionLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Engine_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"FSD_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"FuelScoop_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"FuelTransferLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"HatchBreakerLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_HeavyDuty\",\n        \"name\": \"Heavy duty\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"LifeSupport_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerPlant_Armoured\",\n        \"name\": \"Armoured\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"ProspectingLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Refineries_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"4\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"HighDensityComposites\",\n    \"name\": \"High Density Composites\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"AFM_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Armour_Advanced\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Armour_HeavyDuty\",\n        \"name\": \"Heavy duty\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Armour_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Misc_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Misc_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"CollectionLimpet_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"CollectionLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Engine_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"FSD_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"FuelScoop_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"FuelTransferLimpet_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"FuelTransferLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"HatchBreakerLimpet_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"HatchBreakerLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Advanced\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_HeavyDuty\",\n        \"name\": \"Heavy duty\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"LifeSupport_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"LifeSupport_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_HighCapacity\",\n        \"name\": \"High charge capacity\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerPlant_Armoured\",\n        \"name\": \"Armoured\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"ProspectingLimpet_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"ProspectingLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Refineries_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_DoubleShot\",\n        \"name\": \"Double shot\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_HighCapacity\",\n        \"name\": \"High capacity\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Sturdy\",\n        \"name\": \"Sturdy\",\n        \"grades\": [\n          \"5\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"PhaseAlloys\",\n    \"name\": \"Phase Alloys\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Armour_Explosive\",\n        \"name\": \"Blast resistant\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Armour_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Armour_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Misc_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"CollectionLimpet_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"FuelTransferLimpet_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"HatchBreakerLimpet_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Explosive\",\n        \"name\": \"Blast resistant\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"LifeSupport_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"ProspectingLimpet_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_Expanded\",\n        \"name\": \"Expanded Probe Scanning Radius\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"4\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"ChemicalDistillery\",\n    \"name\": \"Chemical Distillery\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"FSD_LongRange\",\n        \"name\": \"Increased range\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_HighFrequency\",\n        \"name\": \"Charge enhanced\",\n        \"grades\": [\n          \"3\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"PolymerCapacitors\",\n    \"name\": \"Polymer Capacitors\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"PowerDistributor_PriorityEngines\",\n        \"name\": \"Engine focused\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_PrioritySystems\",\n        \"name\": \"System focused\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_PriorityWeapons\",\n        \"name\": \"Weapon focused\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Scanner_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_HeavyDuty\",\n        \"name\": \"Heavy duty\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Focused\",\n        \"name\": \"Focused\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"MC_Overcharged\",\n        \"name\": \"Overcharged\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Overcharged\",\n        \"name\": \"Overcharged\",\n        \"grades\": [\n          \"4\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"RefinedFocusCrystals\",\n    \"name\": \"Refined Focus Crystals\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Sensor_FastScan\",\n        \"name\": \"Fast scan\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_Explosive\",\n        \"name\": \"Blast resistant\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_Resistive\",\n        \"name\": \"Resistance augmented\",\n        \"grades\": [\n          \"4\",\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldGenerator_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldGenerator_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Focused\",\n        \"name\": \"Focused\",\n        \"grades\": [\n          \"5\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"ThermicAlloys\",\n    \"name\": \"Thermic Alloys\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"ShieldGenerator_Optimised\",\n        \"name\": \"Enhanced low power\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_RapidFire\",\n        \"name\": \"Rapid fire\",\n        \"grades\": [\n          \"4\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"ConductivePolymers\",\n    \"name\": \"Conductive Polymers\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"ShieldGenerator_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"MC_Overcharged\",\n        \"name\": \"Overcharged\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Overcharged\",\n        \"name\": \"Overcharged\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_ShortRange\",\n        \"name\": \"Short range\",\n        \"grades\": [\n          \"4\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"ConfigurableComponents\",\n    \"name\": \"Configurable Components\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Engine_Dirty\",\n        \"name\": \"Dirty\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldGenerator_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_DoubleShot\",\n        \"name\": \"Double shot\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_RapidFire\",\n        \"name\": \"Rapid fire\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_ShortRange\",\n        \"name\": \"Short range\",\n        \"grades\": [\n          \"5\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"HeatVanes\",\n    \"name\": \"Heat Vanes\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Armour_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"FSD_FastBoot\",\n        \"name\": \"Faster boot sequence\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerPlant_Stealth\",\n        \"name\": \"Low emissions\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Efficient\",\n        \"name\": \"Efficient\",\n        \"grades\": [\n          \"4\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"CompoundShielding\",\n    \"name\": \"Compound Shielding\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"AFM_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Armour_HeavyDuty\",\n        \"name\": \"Heavy duty\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Misc_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"CollectionLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Engine_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"FSD_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"FuelScoop_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"FuelTransferLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"HatchBreakerLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_HeavyDuty\",\n        \"name\": \"Heavy duty\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"LifeSupport_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerPlant_Armoured\",\n        \"name\": \"Armoured\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"ProspectingLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Refineries_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"5\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"FedProprietaryComposites\",\n    \"name\": \"Proprietary Composites\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"AFM_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Armour_Advanced\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Armour_HeavyDuty\",\n        \"name\": \"Heavy duty\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Armour_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Misc_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"CollectionLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Engine_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"FSD_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"FuelScoop_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"FuelTransferLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"HatchBreakerLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Advanced\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_HeavyDuty\",\n        \"name\": \"Heavy duty\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"LifeSupport_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_HighCapacity\",\n        \"name\": \"High charge capacity\",\n        \"grades\": [\n          \"4\",\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerPlant_Armoured\",\n        \"name\": \"Armoured\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"ProspectingLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Refineries_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_HighCapacity\",\n        \"name\": \"High capacity\",\n        \"grades\": [\n          \"5\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"ProtoLightAlloys\",\n    \"name\": \"Proto Light Alloys\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Misc_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"4\",\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"CollectionLimpet_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"4\",\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"FuelTransferLimpet_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"4\",\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"HatchBreakerLimpet_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"4\",\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"LifeSupport_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"4\",\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"ProspectingLimpet_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"4\",\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"4\",\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_Expanded\",\n        \"name\": \"Expanded Probe Scanning Radius\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"4\",\n          \"5\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"ChemicalManipulators\",\n    \"name\": \"Chemical Manipulators\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"FSD_LongRange\",\n        \"name\": \"Increased range\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_HighFrequency\",\n        \"name\": \"Charge enhanced\",\n        \"grades\": [\n          \"4\",\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerPlant_Boosted\",\n        \"name\": \"Overcharged\",\n        \"grades\": [\n          \"5\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"MilitarySupercapacitors\",\n    \"name\": \"Military Supercapacitors\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"PowerDistributor_HighCapacity\",\n        \"name\": \"High charge capacity\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_PriorityEngines\",\n        \"name\": \"Engine focused\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_PrioritySystems\",\n        \"name\": \"System focused\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Focused\",\n        \"name\": \"Focused\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_HighCapacity\",\n        \"name\": \"High capacity\",\n        \"grades\": [\n          \"5\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"ExquisiteFocusCrystals\",\n    \"name\": \"Exquisite Focus Crystals\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"PowerDistributor_HighFrequency\",\n        \"name\": \"Charge enhanced\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_Explosive\",\n        \"name\": \"Blast resistant\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"5\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"MilitaryGradeAlloys\",\n    \"name\": \"Military Grade Alloys\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Armour_Advanced\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Advanced\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldGenerator_Optimised\",\n        \"name\": \"Enhanced low power\",\n        \"grades\": [\n          \"5\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"BiotechConductors\",\n    \"name\": \"Biotech Conductors\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Weapon_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_ShortRange\",\n        \"name\": \"Short range\",\n        \"grades\": [\n          \"5\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"ImprovisedComponents\",\n    \"name\": \"Improvised Components\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"ShieldGenerator_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"5\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"ProtoHeatRadiators\",\n    \"name\": \"Proto Heat Radiators\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Armour_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerPlant_Stealth\",\n        \"name\": \"Low emissions\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Efficient\",\n        \"name\": \"Efficient\",\n        \"grades\": [\n          \"5\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"ImperialShielding\",\n    \"name\": \"Imperial Shielding\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Engine_Reinforced\",\n        \"name\": \"Reinforced\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"FSD_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_Resistive\",\n        \"name\": \"Resistance augmented\",\n        \"grades\": [\n          \"5\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"FedCoreComposites\",\n    \"name\": \"Core Dynamics Composites\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"AFM_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Armour_HeavyDuty\",\n        \"name\": \"Heavy duty\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Armour_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Misc_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"CollectionLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"FuelScoop_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"FuelTransferLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"HatchBreakerLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_HeavyDuty\",\n        \"name\": \"Heavy duty\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"HullReinforcement_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"LifeSupport_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerPlant_Armoured\",\n        \"name\": \"Armoured\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"ProspectingLimpet_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Refineries_Shielded\",\n        \"name\": \"Shielded\",\n        \"grades\": [\n          \"5\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"ProtoRadiolicAlloys\",\n    \"name\": \"Proto Radiolic Alloys\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Misc_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"CollectionLimpet_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"FuelTransferLimpet_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"HatchBreakerLimpet_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"LifeSupport_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"ProspectingLimpet_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_Expanded\",\n        \"name\": \"Expanded Probe Scanning Radius\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_LightWeight\",\n        \"name\": \"Lightweight\",\n        \"grades\": [\n          \"5\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"PharmaceuticalIsolators\",\n    \"name\": \"Pharmaceutical Isolators\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Engine_Dirty\",\n        \"name\": \"Dirty\",\n        \"grades\": [\n          \"5\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"LegacyFirmware\",\n    \"name\": \"Specialised Legacy Firmware\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Engine_Dirty\",\n        \"name\": \"Dirty\",\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Engine_Tuned\",\n        \"name\": \"Clean\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_HighCapacity\",\n        \"name\": \"High charge capacity\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_HighFrequency\",\n        \"name\": \"Charge enhanced\",\n        \"grades\": [\n          \"1\",\n          \"2\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldCellBank_Specialised\",\n        \"name\": \"Specialised\",\n        \"grades\": [\n          \"1\",\n          \"2\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_RapidFire\",\n        \"name\": \"Rapid fire\",\n        \"grades\": [\n          \"3\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"EncryptedFiles\",\n    \"name\": \"Unusual Encrypted Files\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"FSDinterdictor_Expanded\",\n        \"name\": \"Expanded capture arc\",\n        \"grades\": [\n          \"2\"\n        ]\n      },\n      {\n        \"symbol\": \"FSDinterdictor_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"1\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"BulkScanData\",\n    \"name\": \"Anomalous Bulk Scan Data\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"FSDinterdictor_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_PriorityEngines\",\n        \"name\": \"Engine focused\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_PrioritySystems\",\n        \"name\": \"System focused\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_PriorityWeapons\",\n        \"name\": \"Weapon focused\",\n        \"grades\": [\n          \"3\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"DisruptedWakeEchoes\",\n    \"name\": \"Atypical Disrupted Wake Echoes\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"FSD_LongRange\",\n        \"name\": \"Increased range\",\n        \"grades\": [\n          \"1\",\n          \"2\"\n        ]\n      },\n      {\n        \"symbol\": \"FSDinterdictor_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"2\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"ScrambledEmissionData\",\n    \"name\": \"Exceptional Scrambled Emission Data\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"ShieldCellBank_Specialised\",\n        \"name\": \"Specialised\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Efficient\",\n        \"name\": \"Efficient\",\n        \"grades\": [\n          \"3\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"ShieldCycleRecordings\",\n    \"name\": \"Distorted Shield Cycle Recordings\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"ShieldBooster_HeavyDuty\",\n        \"name\": \"Heavy duty\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldGenerator_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldGenerator_Optimised\",\n        \"name\": \"Enhanced low power\",\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldGenerator_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"1\",\n          \"2\",\n          \"3\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"ConsumerFirmware\",\n    \"name\": \"Modified Consumer Firmware\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Engine_Dirty\",\n        \"name\": \"Dirty\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Engine_Tuned\",\n        \"name\": \"Clean\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_HighCapacity\",\n        \"name\": \"High charge capacity\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_HighFrequency\",\n        \"name\": \"Charge enhanced\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldGenerator_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"2\",\n          \"3\",\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_RapidFire\",\n        \"name\": \"Rapid fire\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_ShortRange\",\n        \"name\": \"Short range\",\n        \"grades\": [\n          \"2\",\n          \"3\",\n          \"4\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"EncryptionCodes\",\n    \"name\": \"Tagged Encryption Codes\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"FSDinterdictor_Expanded\",\n        \"name\": \"Expanded capture arc\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"FSDinterdictor_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"2\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"ScanArchives\",\n    \"name\": \"Unidentified Scan Archives\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"FSDinterdictor_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_PriorityEngines\",\n        \"name\": \"Engine focused\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_PrioritySystems\",\n        \"name\": \"System focused\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_PriorityWeapons\",\n        \"name\": \"Weapon focused\",\n        \"grades\": [\n          \"4\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"FSDTelemetry\",\n    \"name\": \"Anomalous FSD Telemetry\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"FSDinterdictor_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"3\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"ArchivedEmissionData\",\n    \"name\": \"Irregular Emission Data\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"PowerPlant_Stealth\",\n        \"name\": \"Low emissions\",\n        \"grades\": [\n          \"2\",\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Efficient\",\n        \"name\": \"Efficient\",\n        \"grades\": [\n          \"4\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"ShieldSoakAnalysis\",\n    \"name\": \"Inconsistent Shield Soak Analysis\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"ShieldBooster_HeavyDuty\",\n        \"name\": \"Heavy duty\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldGenerator_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldGenerator_Optimised\",\n        \"name\": \"Enhanced low power\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldGenerator_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"4\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"IndustrialFirmware\",\n    \"name\": \"Cracked Industrial Firmware\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Engine_Dirty\",\n        \"name\": \"Dirty\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_HighCapacity\",\n        \"name\": \"High charge capacity\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_HighFrequency\",\n        \"name\": \"Charge enhanced\",\n        \"grades\": [\n          \"4\",\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldCellBank_Specialised\",\n        \"name\": \"Specialised\",\n        \"grades\": [\n          \"3\",\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_DoubleShot\",\n        \"name\": \"Double shot\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_ShortRange\",\n        \"name\": \"Short range\",\n        \"grades\": [\n          \"5\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"SymmetricKeys\",\n    \"name\": \"Open Symmetric Keys\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"FSDinterdictor_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_FastScan\",\n        \"name\": \"Fast scan\",\n        \"grades\": [\n          \"3\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"ScanDatabanks\",\n    \"name\": \"Classified Scan Databanks\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"FSDinterdictor_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_PriorityEngines\",\n        \"name\": \"Engine focused\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_PrioritySystems\",\n        \"name\": \"System focused\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerDistributor_PriorityWeapons\",\n        \"name\": \"Weapon focused\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Scanner_WideAngle\",\n        \"name\": \"Wide angle\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_WideAngle\",\n        \"name\": \"Wide angle\",\n        \"grades\": [\n          \"3\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"WakeSolutions\",\n    \"name\": \"Strange Wake Solutions\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"FSD_LongRange\",\n        \"name\": \"Increased range\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"FSDinterdictor_Expanded\",\n        \"name\": \"Expanded capture arc\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"FSDinterdictor_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"4\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"EmissionData\",\n    \"name\": \"Unexpected Emission Data\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Engine_Tuned\",\n        \"name\": \"Clean\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerPlant_Stealth\",\n        \"name\": \"Low emissions\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Scanner_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"3\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Efficient\",\n        \"name\": \"Efficient\",\n        \"grades\": [\n          \"5\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"ShieldDensityReports\",\n    \"name\": \"Untypical Shield Scans\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"ShieldBooster_Explosive\",\n        \"name\": \"Blast resistant\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_HeavyDuty\",\n        \"name\": \"Heavy duty\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldGenerator_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldGenerator_Optimised\",\n        \"name\": \"Enhanced low power\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldGenerator_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"5\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"SecurityFirmware\",\n    \"name\": \"Security Firmware Patch\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Weapon_DoubleShot\",\n        \"name\": \"Double shot\",\n        \"grades\": [\n          \"4\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"EncryptionArchives\",\n    \"name\": \"Atypical Encryption Archives\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"FSDinterdictor_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_FastScan\",\n        \"name\": \"Fast scan\",\n        \"grades\": [\n          \"4\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"EncodedScanData\",\n    \"name\": \"Divergent Scan Data\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"FSDinterdictor_Expanded\",\n        \"name\": \"Expanded capture arc\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Scanner_WideAngle\",\n        \"name\": \"Wide angle\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_WideAngle\",\n        \"name\": \"Wide angle\",\n        \"grades\": [\n          \"4\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"HyperspaceTrajectories\",\n    \"name\": \"Eccentric Hyperspace Trajectories\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"FSD_LongRange\",\n        \"name\": \"Increased range\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"FSDinterdictor_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"5\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"DecodedEmissionData\",\n    \"name\": \"Decoded Emission Data\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Engine_Tuned\",\n        \"name\": \"Clean\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"PowerPlant_Stealth\",\n        \"name\": \"Low emissions\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Scanner_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"4\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"4\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"ShieldPatternAnalysis\",\n    \"name\": \"Aberrant Shield Pattern Analysis\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"ShieldBooster_Explosive\",\n        \"name\": \"Blast resistant\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_Kinetic\",\n        \"name\": \"Kinetic resistant\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"ShieldBooster_Thermic\",\n        \"name\": \"Thermal resistant\",\n        \"grades\": [\n          \"5\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"EmbeddedFirmware\",\n    \"name\": \"Modified Embedded Firmware\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Weapon_DoubleShot\",\n        \"name\": \"Double shot\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"MC_Overcharged\",\n        \"name\": \"Overcharged\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Weapon_Overcharged\",\n        \"name\": \"Overcharged\",\n        \"grades\": [\n          \"5\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"AdaptiveEncryptors\",\n    \"name\": \"Adaptive Encryptors Capture\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"FSDinterdictor_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_FastScan\",\n        \"name\": \"Fast scan\",\n        \"grades\": [\n          \"5\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"ClassifiedScanData\",\n    \"name\": \"Classified Scan Fragment\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Scanner_WideAngle\",\n        \"name\": \"Wide angle\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_WideAngle\",\n        \"name\": \"Wide angle\",\n        \"grades\": [\n          \"5\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"DataminedWake\",\n    \"name\": \"Datamined Wake Exceptions\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"FSD_LongRange\",\n        \"name\": \"Increased range\",\n        \"grades\": [\n          \"5\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"CompactEmissionsData\",\n    \"name\": \"Abnormal Compact Emissions Data\",\n    \"blueprints\": [\n      {\n        \"symbol\": \"Engine_Tuned\",\n        \"name\": \"Clean\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Scanner_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"5\"\n        ]\n      },\n      {\n        \"symbol\": \"Sensor_LongRange\",\n        \"name\": \"Long range\",\n        \"grades\": [\n          \"5\"\n        ]\n      }\n    ]\n  },\n  {\n    \"symbol\": \"ShieldFrequencyData\",\n    \"name\": \"Peculiar Shield Frequency Data\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"UnknownEnergySource\",\n    \"name\": \"Sensor Fragment\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"UnknownShipSignature\",\n    \"name\": \"Thargoid Ship Signature\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"UnknownWakeData\",\n    \"name\": \"Thargoid Wake Data\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"AncientLanguageData\",\n    \"name\": \"Pattern Delta Obelisk Data\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"AncientBiologicalData\",\n    \"name\": \"Pattern Alpha Obelisk Data\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"AncientCulturalData\",\n    \"name\": \"Pattern Beta Obelisk Data\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"AncientHistoricalData\",\n    \"name\": \"Pattern Gamma Obelisk Data\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"AncientTechnologicalData\",\n    \"name\": \"Pattern Epsilon Obelisk Data\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"TG_CompositionData\",\n    \"name\": \"Thargoid Material Composition Data\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"TG_ResidueData\",\n    \"name\": \"Thargoid Residue Data\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"TG_StructuralData\",\n    \"name\": \"Thargoid Structural Data\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"UnknownCarapace\",\n    \"name\": \"Thargoid Carapace\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"UnknownEnergyCell\",\n    \"name\": \"Thargoid Energy Cell\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"UnknownOrganicCircuitry\",\n    \"name\": \"Thargoid Organic Circuitry\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"UnknownTechnologyComponents\",\n    \"name\": \"Thargoid Technological Components\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"TG_BioMechanicalConduits\",\n    \"name\": \"Bio-Mechanical Conduits\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"TG_PropulsionElement\",\n    \"name\": \"Propulsion Elements\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"TG_WeaponParts\",\n    \"name\": \"Weapon Parts\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"TG_WreckageComponents\",\n    \"name\": \"Wreckage Components\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"TG_ShipFlightData\",\n    \"name\": \"Ship Flight Data\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"TG_ShipSystemsData\",\n    \"name\": \"Ship Systems Data\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"Guardian_PowerCell\",\n    \"name\": \"Guardian Power Cell\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"Guardian_PowerConduit\",\n    \"name\": \"Guardian Power Conduit\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"Guardian_TechComponent\",\n    \"name\": \"Guardian Technology Component\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"Guardian_Sentinel_WeaponParts\",\n    \"name\": \"Guardian Sentinel Weapon Parts\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"Guardian_Sentinel_WreckageComponents\",\n    \"name\": \"Guardian Sentinel Wreckage Components\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"Guardian_WeaponBlueprint\",\n    \"name\": \"Guardian Weapon Blueprint Segment\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"Guardian_ModuleBlueprint\",\n    \"name\": \"Guardian Module Blueprint Segment\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"Guardian_VesselBlueprint\",\n    \"name\": \"Guardian Vessel Blueprint Segment\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"Rhenium\",\n    \"name\": \"Rhenium\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"Lead\",\n    \"name\": \"Lead\",\n    \"blueprints\": []\n  },\n  {\n    \"symbol\": \"Boron\",\n    \"name\": \"Boron\",\n    \"blueprints\": []\n  }\n]"
  },
  {
    "path": "src/service/lib/data.js",
    "content": "module.exports = class Data {\n  constructor (asset) {\n    this.asset = asset\n    this.data = require(`../data/${asset}.json`)\n  }\n\n  getBySymbol (itemSymbol) {\n    let result\n    Object.values(this.data).some(item => {\n      if (item?.symbol?.toLowerCase() === itemSymbol?.toLowerCase()) {\n        result = item\n        return true\n      }\n      return false\n    })\n\n    // if (!result) console.error('Lookup failed', this.asset, itemSymbol)\n\n    return result\n  }\n}\n"
  },
  {
    "path": "src/service/lib/edsm.js",
    "content": "const { UNKNOWN_VALUE } = require('../../shared/consts')\n\n// https://www.edsm.net/en_GB/api-v1\n// Most endpoints take systemName or systemId\n// https://www.edsm.net/api-v1/system\n// https://www.edsm.net/api-system-v1/estimated-value\n// https://www.edsm.net/api-system-v1/bodies\n// https://www.edsm.net/api-system-v1/stations\n// https://www.edsm.net/api-system-v1/stations/market\n// https://www.edsm.net/api-system-v1/stations/shipyard\n\nconst axios = require('axios')\nconst retry = require('async-retry')\nconst { version } = require('../../../package.json')\n\nconst baseUrl = 'https://www.edsm.net/'\n\n// EDSM's Cloudflare config blocks requests with the default `axios/*`\n// User-Agent (presumably after seeing a lot of bot traffic from that UA).\n// Send a self-identifying UA so EDSM can contact the project if needed and\n// so our requests are distinguishable from anonymous library traffic.\n// See: https://github.com/iaincollins/icarus/issues/81\nconst http = axios.create({\n  headers: {\n    'User-Agent': `icarus-terminal/${version} (+https://github.com/iaincollins/icarus)`\n  }\n})\n\nclass EDSM {\n  static async bodies (systemName) {\n    return await retry(async bail => {\n      const res = await http.get(`${baseUrl}api-system-v1/bodies?systemName=${encodeURIComponent(systemName)}`)\n      return res.data.bodies\n    }, {\n      retries: 10\n    })\n  }\n\n  static async stations (systemName) {\n    return await retry(async bail => {\n      const res = await http.get(`${baseUrl}api-system-v1/stations?systemName=${encodeURIComponent(systemName)}`)\n      return res.data.stations\n    }, {\n      retries: 10\n    })\n  }\n\n  static async system (systemName) {\n    return await retry(async bail => {\n      const resSystem = await http.get(`${baseUrl}api-v1/system?systemName=${encodeURIComponent(systemName)}&showInformation=1&showCoordinates=1`)\n      const resBodies = await http.get(`${baseUrl}api-system-v1/bodies?systemName=${encodeURIComponent(systemName)}`)\n      const resStations = await http.get(`${baseUrl}api-system-v1/stations?systemName=${encodeURIComponent(systemName)}`)\n      return {\n        name: resSystem?.data?.name ?? UNKNOWN_VALUE,\n        address: resSystem?.data?.address ?? UNKNOWN_VALUE,\n        position: resSystem?.data?.coords ? [resSystem?.data?.coords.x, resSystem?.data?.coords.y, resSystem?.data?.coords.z] : null,\n        allegiance: resSystem?.data?.information?.allegiance ?? UNKNOWN_VALUE,\n        government: resSystem?.data?.information?.government ?? UNKNOWN_VALUE,\n        security: resSystem?.data?.information?.security ? `${resSystem.data.information.security} Security` : UNKNOWN_VALUE,\n        state: resSystem?.data?.information?.factionState ?? UNKNOWN_VALUE,\n        economy: {\n          primary: resSystem?.data?.information?.economy ?? UNKNOWN_VALUE,\n          secondary: resSystem?.data?.information?.secondEconomy ?? UNKNOWN_VALUE\n        },\n        population: resSystem?.data?.information?.population ?? UNKNOWN_VALUE,\n        faction: resSystem?.data?.information?.faction ?? UNKNOWN_VALUE,\n        bodies: resBodies?.data?.bodies ?? [],\n        stations: resStations?.data?.stations ?? []\n      }\n    }, {\n      retries: 10\n    })\n  }\n}\n\nmodule.exports = EDSM\n"
  },
  {
    "path": "src/service/lib/elite-json.js",
    "content": "const fs = require('fs')\nconst path = require('path')\nconst glob = require('glob')\nconst retry = require('async-retry')\n\nclass EliteJson {\n  constructor(dir) {\n    this.dir = dir || null\n    this.files = {}\n    this.loadFileCallback = null\n    return this\n  }\n\n  load({ file = null } = {}) {\n    return new Promise(async (resolve) => {\n      // If file specified, load that file, otherwise load all files\n      const files = file ? [file] : await this.#getFiles()\n      for (const file of files) {\n        await retry(async bail => {\n          // Load file contents as JSON\n          file.contents = JSON.parse(fs.readFileSync(file.name).toString())\n          // Track file if not already being tracked\n          if (!this.files[file.name]) this.files[file.name] = file\n\n          if (this.loadFileCallback) this.loadFileCallback(file)\n        }, {\n          retries: 10\n        })\n      }\n      resolve(file ? files[0] : files)\n    })\n  }\n\n  watch(callback) {\n    const watchFiles = async () => {\n      const files = await this.#getFiles()\n\n      // Make sure we know about all files\n      for (const file of files) {\n        if (!this.files[file.name]) this.files[file.name] = file\n      }\n\n      // Make sure we are watching all files we know about\n      for (const name in this.files) {\n        if (!this.files[name].watch) {\n          this.files[name].watch = this.#watchFile(this.files[name], callback)\n        }\n      }\n    }\n\n    // Start watching for changes\n    watchFiles()\n\n    // Periodically check we know about and are watching new files\n    this.watchFilesInterval = setInterval(() => { watchFiles() }, 60 * 1000)\n  }\n\n  async json(forceUpdate = false) {\n    const files = forceUpdate ? await this.load(): this.files\n    const response = {}\n    for (const name in files) {\n      response[files[name].label] = files[name].contents\n    }\n    return response\n  }\n\n  async #watchFile(file, callback) {\n    let debounce\n    return fs.watch(file.name, async (event, filename) => {\n      try {\n        if (!filename) return\n        if (debounce) return\n        debounce = setTimeout(() => { debounce = false }, 100)\n        this.files[file.name] = await this.load({file})\n        // Send data for all files in the callback\n        if (callback) callback(await this.json())\n      } catch (e) {\n        console.error(\"watcher error\", e)\n      }\n    })\n  }\n\n  #getFiles() {\n    return new Promise(resolve => {\n      glob(`${this.dir}/*.json`, {}, async (error, files) => {\n        if (error) return console.error(error)\n\n        const response = files.map(name => {\n          const { size, mtime: lastModified } = fs.statSync(name)\n          return new File({ \n            name,\n            lastModified,\n            size,\n            label: path.basename(name).replace(/\\.json$/, '')\n          })\n        })\n\n        resolve(response)\n      })\n    })\n  }\n}\n\nclass File {\n  constructor({name, lastModified, size, label, contents, watch = false}) {\n    this.name = name // Full path to file\n    this.lastModified = lastModified\n    this.size = size,\n    this.label = label\n    this.contents = contents\n    this.watch = watch\n  }\n}\n\nmodule.exports = EliteJson"
  },
  {
    "path": "src/service/lib/elite-log.js",
    "content": "const fs = require('fs')\nconst path = require('path')\nconst crypto = require('crypto')\nconst glob = require('glob')\nconst retry = require('async-retry')\nconst Datastore = require('nedb-promises')\nconst db = new Datastore()\n\n// Do not fire log events for these event types\nconst INGORED_EVENT_TYPES = [\n  'Music'\n]\n\n// Override PERSISTED_EVENT_TYPES to persist all events to DB (for testing)\nconst PERSIST_ALL_EVENTS = true\n\n// These events will be persisted to the database\n// (for all other events, only the most recent copy will be retained in memory)\nconst PERSISTED_EVENT_TYPES = [\n  'FSSBodySignals',\n  'FSSDiscoveryScan',\n  'FSSSignalDiscovered'\n]\n\nclass EliteLog {\n  constructor(dir) {\n    this.dir = dir || null\n    this.files = {} // All log files found\n    this.lastActiveLogFileName = null\n    this.lastActiveTimestamp = null\n    this.loadFileCallback = null\n    this.logEventCallback = null\n    this.singleInstanceEvents = {}\n    this.numberOfEventsImported = 0\n\n    // setInterval(() => {\n    //   const numberOfFilesBeingWatched = Object.entries(this.files)\n    //     .filter(obj => {\n    //       const [fileName, file] = obj\n    //       return file.watch !== false\n    //     }).length\n\n    //   console.log(`events: ${this.numberOfEventsImported}\\tmost recent event: ${this.lastActiveTimestamp}\\tfiles watched: ${numberOfFilesBeingWatched}`)\n    // }, 2000)\n\n    return this\n  }\n\n  async clear() {\n    await db.remove({}, { multi: true })\n  }\n\n  // Get all log entries\n  load({ \n    file = null, // Load a particular file (used internally when file changes)\n    days = null, // Days since last activity to load (if null, load all events)\n    reload = false // Attempt to reload all events if they are older (safe, won't result in duplicates)\n  } = {}) {\n    return new Promise(async (resolve) => {\n      let logs = []\n      // If file specified, load logs from that file, otherwise load all files\n      const files = file ? [file] : await this.#getFiles()\n\n      // Only determine a minimum timestamp if number of days specified and on\n      // first run (this.lastActiveTimestamp will not be null if any events\n      // have actually been imported already).\n      let minTimestamp = null\n      if (days !== null && !this.lastActiveTimestamp) {\n        let oldestTimestamp = null\n        let newestTimestamp = null\n        for (const file of files) {\n          await retry(() => { // Auto-retry on failure (write in progress)\n            const rawLog = fs.readFileSync(file.name).toString()\n            const logs = this.#parse(rawLog)\n            for (const log of logs) {\n              if (!newestTimestamp || (Date.parse(log.timestamp) > Date.parse(newestTimestamp)))\n                newestTimestamp = log.timestamp\n\n              if (!oldestTimestamp || (Date.parse(log.timestamp) < Date.parse(oldestTimestamp)))\n                oldestTimestamp = log.timestamp\n            }\n          }, {\n            retries: 10\n          })\n        }\n        \n        // Store in human readable timestamp for easier debugging\n        // (performance impact is minimal)\n        if (newestTimestamp) { // Conditonal to suppress errors when no data loaded\n          minTimestamp = new Date(Date.parse(newestTimestamp) - days * 24 * 60 * 60 * 1000).toISOString()\n        }\n      }\n\n      for (const file of files) {\n        // Skip old files that haven't been modified since minTimestamp\n        if (minTimestamp && Date.parse(minTimestamp) > Date.parse(file.lastModified)) continue\n\n        // If any step fails (e.g if trying read and parse while being written)\n        // then is automatically retried with this function.\n        //\n        // There is no error handling here, but the function has exponential\n        // backoff and while single failures are quite common more than one\n        // retry is extremely rare.\n        await retry(() => {\n          const rawLog = fs.readFileSync(file.name).toString()\n          const parsedLog = this.#parse(rawLog)\n          logs = logs.concat(parsedLog) // Add new log entries to existing logs\n          if (this.loadFileCallback) this.loadFileCallback(file)\n        }, {\n          retries: 10\n        })\n      }\n\n      // If a minimum timestamp was specified, use it to filter what is loaded\n      if (minTimestamp) {\n        logs = logs.filter(log => (Date.parse(log.timestamp) > Date.parse(minTimestamp)))\n      }\n\n      // If lastActiveTimestamp has been set, this function has been run at\n      // least once already. We can use it to discard old log files without\n      // spending more time on them. Overriden by reload argument.\n      if (this.lastActiveTimestamp && reload !== true) {\n        logs = logs.filter(log => (Date.parse(log.timestamp) > Date.parse(this.lastActiveTimestamp)))\n      }\n\n      // Enforces unique database entry constraint using checksum.\n      // This makes initial load times slower, but makes it easier to make the\n      // app more performant once the initial import is complete. To optimise\n      // for performance and memory usage we only persist events to the database\n      // where it makes sense to do so, otherwise we just keep the most recent \n      // copy of each event type in memory.\n      await db.ensureIndex({ fieldName: '_checksum', unique: true })\n      \n      const logsIngested = []\n      for (const log of logs) {\n        this.numberOfEventsImported++\n\n        let logIngested = false\n        const eventName = log.event\n        const eventTimestamp = log.timestamp\n\n        // Generate unique checksum for each message to avoid duplicates.\n        // This is also useful for clients who receive new event log entries\n        // so they can ignore events they ahve seen before (e.g. after a reload)\n        log._checksum = this.#checksum(JSON.stringify(log))\n\n        // Keep track of the most recent timestamp seen across all logs\n        // (so when we are called again can skip over logs we've already seen)\n        if (!this.lastActiveTimestamp)\n          this.lastActiveTimestamp = eventTimestamp\n        \n        if (Date.parse(eventTimestamp) > Date.parse(this.lastActiveTimestamp))\n          this.lastActiveTimestamp = eventTimestamp\n\n        // Skip ignored event types (e.g. Music)\n        if (INGORED_EVENT_TYPES.includes(eventName)) continue\n\n        // Only persist supported event types in the databases\n        if (PERSIST_ALL_EVENTS === true || PERSISTED_EVENT_TYPES.includes(eventName)) {\n          // Insert each message one by one, as using bulk import with constraint\n          // (which is faster) tends to fail because logs contain duplicates.\n          const isUnique = await this.#insertUnique(log)\n\n          if (isUnique === true) logIngested = true\n        } else {\n          // If it's not a persisted event type, only keep a copy of it if it\n          // has a more recent timestamp than the event we currently have.\n          // This is useful if we only ever need the latest version of and event\n          // and is faster and uses less RAM than keeping everything in memory.\n          if (this.singleInstanceEvents[eventName]) {\n            if (Date.parse(eventTimestamp) > Date.parse(this.singleInstanceEvents[eventName].timestamp)) {\n              this.singleInstanceEvents[eventName] = log\n              logIngested = true\n            }\n          } else {\n            this.singleInstanceEvents[eventName] = log\n            logIngested = true\n          }\n        }\n\n        // If log was ingested, set to true and trigger callback\n        if (logIngested) {\n          logsIngested.push(log)\n          if (this.logEventCallback) this.logEventCallback(log)\n        }\n      }\n      resolve(logsIngested)\n    })\n  }\n\n  stats() {\n    return {\n      numberOfEventsImported: this.numberOfEventsImported,\n      mostRecentEventTimestamp: this.lastActiveTimestamp,\n      lastActivity: this.lastActiveTimestamp,\n      files: this.files\n    }\n  }\n\n  async count() {\n    return await db.count({})\n  }\n\n  async getNewest(count) {\n    if (count) {\n      return await db.find({}).sort({ timestamp: -1 }).limit(count)\n    } else {\n      return await db.findOne({}).sort({ timestamp: -1 })\n    }\n  }\n\n  async getOldest(count) {\n    if (count) {\n      return await db.find({}).sort({ timestamp: 1 }).limit(count)\n    } else {\n      return await db.findOne({}).sort({ timestamp: 1 })\n    }\n  }\n\n  async getFromTimestamp(timestamp = new Date().toUTCString, count = 100) {\n    return await db.find({ \"timestamp\": { $gt: timestamp } }).sort({ timestamp: -1 }).limit(count)\n  }\n\n  async getEvent(event) {\n    return (await this.getEvents(event, 1))[0]\n  }\n\n  async getEvents(event, count = 0) {\n    // For single instance events, return single copy we are holding in memory\n    if (this.singleInstanceEvents[event]) return [this.singleInstanceEvents[event]]\n    if (count > 0) {\n      return await db.find({ event }).sort({ timestamp: -1 }).limit(count)\n    } else {\n      return await db.find({ event }).sort({ timestamp: -1 })\n    }\n  }\n\n  async getEventsFromTimestamp(event, timestamp = new Date().toUTCString, count = 0) {\n    // For single instance events, return single copy we are holding in memory\n    if (this.singleInstanceEvents[event]) return [this.singleInstanceEvents[event]]\n    if (count > 0) {\n      return await db.find({ event, \"timestamp\": { $gt: timestamp } }).sort({ timestamp: -1 }).limit(count)\n    } else {\n      return await db.find({ event, \"timestamp\": { $gt: timestamp } }).sort({ timestamp: -1 })\n    }\n  }\n\n  // Escape hatch for complex queries\n  async _query(queryString, count = 0, sort = { timestamp: -1 }) {\n    if (count > 0) {\n      return await db.find(queryString).sort(sort).limit(count)\n    } else {\n      return await db.find(queryString).sort(sort)\n    }\n  }\n\n\n  async getEventTypes() {\n    const logs = await db.find()\n    const eventTypes = []\n    for (const log of logs) {\n      if (!eventTypes.includes(log.event)) eventTypes.push(log.event)\n    }\n    return eventTypes\n  }\n\n  watch(callback) {\n    const watchFiles = async () => {\n      const files = await this.#getFiles()\n\n      // If no files found, nothing to do\n      if (files.length === 0) return \n\n      // Get currently active log file (mostly recently modified) in case that\n      // has changed since we loaded (e.g. due to log rotation)\n      const activeLogFile = files.sort((a, b) => b.lastModified - a.lastModified)[0]\n      this.lastActiveLogFileName = activeLogFile.name\n\n      // Get all log files\n      for (const file of files) {\n        if (!this.files[file.name])\n          this.files[file.name] = file\n\n        // Add watcher to log file, if it's the currently active log file\n        if (!this.files[file.name].watch && file.name === activeLogFile.name)\n          this.files[file.name].watch = this.#watchFile(file, callback)\n      }\n\n      // Remove any previously bound listeners from other files\n      for (const file in this.files) {\n        if (file.watch && file.name !== activeLogFile.name) {\n          // Check for any logs we might have missed during log rotation\n          const logs = await this.load({file})\n          if (callback) logs.map(log => callback(log))\n          // Remove watch from file\n          fs.unwatchFile(file.name, file.watch)\n          file.watch = false\n        }\n      }\n    }\n\n    // Start watching for changes\n    watchFiles()\n\n    // Periodically check for new log files\n    this.watchFilesInterval = setInterval(() => { watchFiles() }, 10 * 1000)\n  }\n\n  async #watchFile(file, callback) {\n    // fs.watch is proving to not be reliable and is not picking up changes\n    // to game logs on Windows at all so falling back to the older\n    // fs.watchFile, which uses polling rather than file system events.\n    let debounce\n    return fs.watchFile(\n      file.name,\n      { interval: 1000 },\n      async (event, filename) => {\n        if (!filename) return\n        if (debounce) return\n        debounce = setTimeout(() => { debounce = false }, 100)\n        const logs = await this.load({file})\n        try {\n          // Trigger callback for each log entry loaded\n          if (callback) logs.map(log => callback(log))\n        } catch (e) {\n          console.error(e)\n        }\n    })\n  }\n  \n  async #insertUnique(log) {\n    return await new Promise(async (resolve, reject) => {\n      db.insert(log)\n      .then(() => { return resolve(true) }) // Return true if not duplicate\n      .catch(e => {\n        if (e.errorType === 'uniqueViolated') {\n          return resolve(false) // Return false (but don't error) if duplicate\n        } else {\n          // Error for other failure conditions\n          return reject(e)\n        }\n      })\n    })\n  }\n\n  // Get path to all log files in dir\n  #getFiles() {\n    return new Promise(resolve => {\n      // Note: Journal.*.log excludes files like JournalAlpha.*.log so that\n      // alpha / beta test data doesn't get included by mistake.\n      glob(`${this.dir}/Journal.*.log`, {}, async (error, globFiles) => {\n        if (error) return console.error(error)\n\n        const files = globFiles.map(name => {\n          const { size, mtime: lastModified } = fs.statSync(name)\n          const lineCount = fs.readFileSync(name).toString().split('\\n').length\n          return new File({ name, lastModified, size, lineCount })\n        })\n\n        // Track most (mostly recently modified) log file\n        if (files.length > 0) {\n          const activeLogFile = files.sort((a, b) => b.lastModified - a.lastModified)[0]\n          this.lastActiveLogFileName = activeLogFile.name\n        }\n\n        resolve(files)\n      })\n    })\n  }\n\n  // Load log file and parse into an array of objects\n  #parse(rawLog) {\n    const sortedLog = rawLog.split(\"\\n\").reverse()\n    let parsedLog = []\n    sortedLog.map(logLine => {\n      try {\n        parsedLog.push(JSON.parse(logLine))\n      } catch (e) {\n        return false // Skip entries that don't parse (e.g. blank lines)\n      }\n    })\n    return parsedLog\n  }\n\n  #checksum(string) {\n    return crypto.createHash('sha256').update(string).digest('hex')\n  }\n}\n\nclass File {\n  constructor({name, lastModified, size, lineCount, watch = false}) {\n    this.name = name // Full path to file\n    this.lastModified = lastModified\n    this.size = size,\n    this.lineCount = lineCount\n    this.watch = watch\n  }\n}\n\nmodule.exports = EliteLog"
  },
  {
    "path": "src/service/lib/event-handlers/blueprints.js",
    "content": "const DataLoader = require('../data')\nconst coriolisBlueprints = new DataLoader('edcd/coriolis/blueprints').data\n\nclass Blueprints {\n  constructor ({ engineers, materials, shipStatus }) {\n    this.engineers = engineers\n    this.materials = materials\n    this.shipStatus = shipStatus\n    return this\n  }\n\n  async getBlueprints () {\n    const engineers = await this.engineers.getEngineers()\n    const materials = await this.materials.getMaterials()\n    const ship = await this.shipStatus.getShipStatus()\n    const blueprints = coriolisBlueprints.map(blueprint => {\n      const [first, second] = blueprint.symbol.split('_')\n      const name = `${second} ${first}`.replace(/([a-z])([A-Z])/g, '$1 $2').replace('Misc', 'Utility').trim()\n\n      // FIXME Could do with optimising (not urgent)\n      for (const engineerName in blueprint.engineers) {\n        const engineer = engineers?.filter(e => e.name.toLowerCase().trim() === engineerName.toLowerCase().trim())?.[0]\n\n        // May fail to look them up if app is still loading when called\n        if (!engineer) {\n          console.error('Failed to lookup engineer', engineerName)\n          continue\n        }\n\n        blueprint.engineers[engineerName] = {\n          ...blueprint.engineers[engineerName],\n          system: engineer.system.name,\n          location: engineer.system.position,\n          rank: engineer.progress.rank,\n          progress: engineer.progress.status\n        }\n      }\n\n      return {\n        symbol: blueprint.symbol,\n        name: name,\n        originalName: blueprint?.name,\n        grades: Object.keys(blueprint.grades).map(k => {\n          const grade = blueprint.grades[k]\n          const components = Object.keys(grade.components).map(component => {\n            const material = materials.filter(m => m.name.toLowerCase() === component.toLowerCase())?.[0] ?? { name: component }\n            const cost = grade.components[component]\n            return {\n              ...material,\n              cost\n            }\n          }).sort((a, b) => a.grade < b.grade ? -1 : 0)\n\n          return {\n            grade: parseInt(k),\n            components: components,\n            features: grade.features\n          }\n        }),\n        modules: blueprint.modulename,\n        appliedToModules: Object.values(ship?.modules ?? []).filter(module => module?.engineering?.symbol === blueprint?.symbol),\n        engineers: blueprint.engineers\n      }\n    })\n\n    blueprints.sort((a, b) => a.name.localeCompare(b.name))\n\n    return blueprints\n  }\n}\n\nmodule.exports = Blueprints\n"
  },
  {
    "path": "src/service/lib/event-handlers/cmdr-status.js",
    "content": "const System = require('./system')\n\nclass CmdrStatus {\n  constructor ({ eliteJson, eliteLog }) {\n    this.eliteJson = eliteJson\n    this.eliteLog = eliteLog\n    this.system = new System({ eliteLog })\n    this.flags = {\n      docked: 1,\n      landed: 2,\n      landingGearDown: 4,\n      shieldsUp: 8,\n      supercruise: 16,\n      flightAssistOff: 32,\n      hardpointsDeployed: 64,\n      inWing: 128,\n      lightsOn: 256,\n      cargoScoopDeployed: 512,\n      slientRunning: 1024,\n      scoopingFuel: 2048,\n      srvHandbrake: 4096,\n      srvUsignTurrentView: 8192,\n      srvTurretRetracted: 16384,\n      srvDriveAssist: 32768,\n      fsdMassLocked: 65536,\n      fsdCharging: 131072,\n      fsdCooldown: 262144,\n      lowFuel: 524288, // < 25%\n      overHeating: 1048576, // > 100%\n      hasLatLon: 2097152,\n      inDanger: 4194304,\n      beingInterdicted: 8388608,\n      inMainShip: 16777216,\n      inFighter: 33554432,\n      inSrv: 67108864,\n      hudInAnalysisMode: 134217728,\n      nightVision: 268435456,\n      altitudeFromAverageRadius: 536870912,\n      fsdJump: 1073741824,\n      srvHighBeam: 2147483648\n    }\n    this.flags2 = {\n      onFoot: 1,\n      inTaxi: 2,\n      inMulticrew: 4,\n      onFootInStation: 8,\n      onFootInPlanet: 16,\n      aimDownSight: 32,\n      lowOxygen: 64,\n      lowHealth: 128,\n      cold: 256,\n      hot: 512,\n      veryCold: 1024,\n      veryHot: 2048,\n      glideMode: 4096,\n      onFootInHanger: 8192,\n      onFootSocialSpace: 16384,\n      onFootExterior: 32768,\n      breathableAtmosphere: 65536\n    }\n    return this\n  }\n\n  getFlag (flags, flag) {\n    return (flags & flag) !== 0\n  }\n\n  async getStatusFlags (StatusJson) {\n    const statusFlags = {}\n\n    for (const flag of Object.keys(this.flags)) {\n      if (StatusJson?.Flags) {\n        statusFlags[flag] = this.getFlag(StatusJson.Flags, this.flags[flag])\n      } else {\n        statusFlags[flag] = false\n      }\n    }\n\n    for (const flag of Object.keys(this.flags2)) {\n      if (StatusJson?.Flags2) {\n        statusFlags[flag] = this.getFlag(StatusJson.Flags2, this.flags2[flag])\n      } else {\n        statusFlags[flag] = false\n      }\n    }\n\n    return statusFlags\n  }\n\n  async getCmdrStatus () {\n    const StatusJson = (await this.eliteJson.json()).Status\n    const currentSystem = await this.system.getSystem()\n\n    const cmdrStatus = {}\n\n    if (StatusJson) {\n      for (const key of Object.keys(StatusJson)) {\n        // Ignore these properties\n        if (['event', 'timestamp', 'Flags', 'Flags2'].includes(key)) continue\n        cmdrStatus[key.toLowerCase()] = StatusJson[key]\n      }\n    }\n\n    // Parse and combine Flags and Flags2 into boolean key/value pairs\n    cmdrStatus.flags = await this.getStatusFlags(StatusJson)\n\n    // Override bad flag behaviour\n    // If you are in a taxi you are by definition not in your main ship!\n    if (cmdrStatus.flags.inTaxi) cmdrStatus.flags.inMainShip = false\n\n    // Determine current location\n\n    /*\n    cmdrStatus.location = {\n      name: [],\n      system: null,\n      planet: null,\n      facility: null,\n    }\n    */\n\n    let location = []\n\n    // By default we want \"Body Name > [Station Name|Settlement|etc]\"\n    if (cmdrStatus?.bodyname) location.push(cmdrStatus.bodyname)\n\n    const locationEvent = await this.eliteLog.getEvent('Location')\n    const dockedEvent = await this.eliteLog.getEvent('Docked')\n    const embarkEvent = await this.eliteLog.getEvent('Embark')\n    const touchdownEvent = await this.eliteLog.getEvent('Touchdown')\n    const supercruiseExitEvent = await this.eliteLog.getEvent('SupercruiseExit')\n\n    if (cmdrStatus?.flags?.onFoot) {\n      if (cmdrStatus?.flags?.onFootSocialSpace) {\n        // If on foot in a social space we are at a port or on a station\n        //\n        // We can use the Dock Event (if in the same system) to check if they\n        // are Docked at a Station in this system.\n        //\n        // To catch the case of being on a Fleet Carrier that jumps, we also\n        // need to look for the Location event (fired after a carrier jumps)\n        // to if that matches the current system (as the location of the last\n        // Docked event will be in another system).\n        //\n        // This logic is \"best effort\" and I would not be surprised if there\n        // are edge cases to the logic.\n        if ((dockedEvent && dockedEvent.StationName && dockedEvent?.StarSystem === currentSystem?.name)\n           || locationEvent?.StarSystem === currentSystem?.name) {\n          if (dockedEvent?.StationType === 'FleetCarrier') {\n            location.push(`Carrier ${dockedEvent.StationName}`)\n          } else {\n            location.push(dockedEvent.StationName)\n          }\n        }\n\n        // Either in a hanger, or not in a hanger\n        if (cmdrStatus?.flags?.onFootInHanger) {\n          location.push('Hanger')\n        } else {\n          if (dockedEvent?.StationType === 'FleetCarrier') {\n            location.push('Flight Deck')\n          } else {\n            location.push('Concourse')\n          }\n        }\n      } else if (cmdrStatus?.flags?.onFootInPlanet) {\n        // If on foot on a planet, then we are at a settlement\n        // We can look up the name of the station we are Docked at, or if we\n        // are not Docked (e.g. have landed just outside a station) then we can\n        // look up the nearest station to the touchdown point (if there is one)\n        if (dockedEvent && dockedEvent.StationName && dockedEvent?.StarSystem === currentSystem?.name) {\n          if (touchdownEvent && Date.parse(touchdownEvent?.timestamp) > Date.parse(dockedEvent?.timestamp)) {\n            if (touchdownEvent?.NearestDestination) location.push(touchdownEvent.NearestDestination)\n          } else {\n            location.push(dockedEvent.StationName)\n          }\n        }\n      }\n    }\n\n    if (cmdrStatus?.flags?.docked && cmdrStatus?.flags?.onFoot === false) {\n      // If docked and not on foot get the last Embark/Docked event to find out what station we are on\n\n      // FIXME: This is technically incorrect and it should use whatever is the\n      //  most recent event\n      if (!dockedEvent && embarkEvent?.StationName) {\n        location.push(embarkEvent.StationName) \n      } else if (!embarkEvent && dockedEvent?.StationName) {\n        if (dockedEvent?.StationType === 'FleetCarrier') {\n          location.push(`Carrier ${dockedEvent.StationName}`)\n        } else {\n          location.push(dockedEvent.StationName)\n        }\n      } else if (!embarkEvent && !dockedEvent && touchdownEvent?.NearestDestination) {\n        location.push(touchdownEvent.NearestDestination)\n      } else if (locationEvent?.StationName) {\n        if (locationEvent?.StationType === 'FleetCarrier') {\n          location.push(`Carrier ${locationEvent.StationName}`)\n        } else {\n          location.push(locationEvent.StationName)\n        }\n        if (locationEvent?.Docked === true) location.push('Docked')\n      }\n\n      if (dockedEvent && embarkEvent) {\n        if (touchdownEvent &&\n            Date.parse(touchdownEvent?.timestamp) > Date.parse(dockedEvent?.timestamp) &&\n            Date.parse(touchdownEvent?.timestamp) > Date.parse(embarkEvent?.timestamp)\n        ) {\n          if (touchdownEvent?.NearestDestination) location.push(touchdownEvent.NearestDestination)\n        } else if (embarkEvent?.StationName && dockedEvent?.StationName) {\n          // If we have both a Docked event and an Embark event with a station\n          // name, use the newest value\n          if (Date.parse(dockedEvent?.timestamp) > Date.parse(embarkEvent?.timestamp)) {\n            if (dockedEvent?.StationType === 'FleetCarrier') {\n              location.push(`Carrier ${dockedEvent.StationName}`)\n            } else {\n              location.push(dockedEvent.StationName)\n            }\n          } else {\n            location.push(embarkEvent.StationName)\n          }\n          location.push('Docked')\n        } else if (dockedEvent?.StationName) {\n          // If the Embark event doesn't have a Station Name we fallback to Docked event\n          // This can happen when embarking at a settlement (even when on a landing pad,\n          // the Embark event when at a Settlement is not always populated).\n          // FIXME As a simple sanity check, we at least verify the event was\n          // triggered in the same system (crude, but hopefully good enough).\n          if (dockedEvent?.StarSystem === currentSystem?.name) {\n            if (dockedEvent?.StationType === 'FleetCarrier') {\n              location.push(`Carrier ${dockedEvent.StationName}`)\n            } else {\n              location.push(dockedEvent.StationName)\n            }\n            location.push('Docked')\n          }\n        }\n      }\n    }\n\n    // If we are not in supercruise, not docked and not landed then we are in space\n    // If the last Supercruise Exit event matches the current system (it should)\n    // then use the Body from that event as our location, if we don't already know our\n    // location. This is useful for scenarios like exiting supercruise near a station\n    // as otherwise the game doesn't know where we are. Note that it returns the\n    // name of the station as a Body (with BodyType: Station) and does not\n    // specify Station Name as you migth expect.\n    if (cmdrStatus?.flags?.supercruise === false && cmdrStatus?.flags?.docked === false && cmdrStatus?.flags?.landed === false) {\n      if (supercruiseExitEvent?.Body && supercruiseExitEvent?.StarSystem === currentSystem?.name) {\n        if (!location.includes(supercruiseExitEvent.Body)) location.push(supercruiseExitEvent.Body)\n      }\n    }\n\n    // If we don't have a more specific location (planet, station) use the\n    // system name as the location\n    if (location.length === 0 && currentSystem?.name) {\n      location.push(currentSystem.name)\n    }\n\n    if (cmdrStatus?.flags?.inTaxi) {\n      if (cmdrStatus?.flags?.docked) {\n        // If we are in a taxi that is docked at our destination, get the station name\n        if (dockedEvent?.StationName && dockedEvent.StationName === cmdrStatus?.destination?.Name) {\n          if (!location.includes(dockedEvent.StationName)) location.push(dockedEvent.StationName)\n        }\n      }\n      // Indicate that we are onboard a shuttle (e.g. Apex, Frontline Solutions)\n      location.push('Shuttle')\n    }\n\n    // Because of how we grab the location, sometimes we can end up with a\n    // location that is a symbol- e.g. if disembarking to a planet on a mission \n    // it could be a description of the mission target area like this:\n    // \"$POIScenario_Watson_Damaged_Sidewinder_01_Salvage_Easy; $USS_ThreatLevel:#threatLevel=1;\"\n    //\n    // This obviously doesn't look good in the UI. so we filter these out by\n    // checking for locations that start with the $ sigil.\n    //\n    // FIXME This could accidentally filter out locations that actually start\n    // with a but I don't think that occurs anywhere in the game.\n    location = location.filter(loc => !loc.startsWith('$'))\n\n    // Only use the last two, most specific location names, so it's not too\n    // unwieldy in the UI (e.g. \"Body > Settlement\" or \"Settlement > Docked\",\n    // and not \"System > Body > Settlement > Docked\").\n    while (location.length > 2) { location.shift() }\n\n    cmdrStatus._location = location\n\n    return cmdrStatus\n  }\n}\n\nmodule.exports = CmdrStatus\n"
  },
  {
    "path": "src/service/lib/event-handlers/engineers.js",
    "content": "const { UNKNOWN_VALUE } = require('../../../shared/consts')\nconst DataLoader = require('../data')\nconst engineersWithLocation = new DataLoader('engineers').data\n\nclass Engineers {\n  constructor ({ eliteLog, eliteJson }) {\n    this.eliteLog = eliteLog\n    this.eliteJson = eliteJson\n    return this\n  }\n\n  async getEngineers () {\n    const engineersWithProgress = await this.eliteLog.getEvent('EngineerProgress')\n\n    if (!engineersWithProgress?.Engineers) return null\n\n    // Get all engineers the Cmdr knows about, and add location information\n    const engineers = engineersWithProgress.Engineers.map(engineer => {\n      const engineerWithLocation = engineersWithLocation.filter(e => Number(e.id) === Number(engineer.EngineerID))[0]\n\n      if (!engineerWithLocation) console.log('No location data for engineer', engineer)\n\n      return {\n        id: engineer.EngineerID,\n        name: engineer.Engineer,\n        description: engineerWithLocation.description,\n        system: {\n          address: engineerWithLocation?.systemAddress ?? UNKNOWN_VALUE,\n          name: engineerWithLocation?.systemName ?? UNKNOWN_VALUE,\n          position: engineerWithLocation?.systemPosition ?? UNKNOWN_VALUE\n        },\n        marketId: engineerWithLocation?.marketId ?? UNKNOWN_VALUE,\n        progress: {\n          status: engineer.Progress ?? UNKNOWN_VALUE,\n          rank: engineer?.Rank ?? 0,\n          rankProgress: engineer?.RankProgress ?? 0\n        }\n      }\n    })\n\n    // Add any and all engineers the Cmdr doesn't know about yet to the list\n    // of engineers\n    engineersWithLocation.forEach(engineer => {\n      const engineerWithProgress = engineers.filter(e => Number(e.id) === Number(engineer.id))[0]\n      if (!engineerWithProgress) {\n        engineers.push({\n          id: engineer.id,\n          name: engineer.name,\n          description: engineer.description,\n          system: {\n            address: engineer?.systemAddress ?? UNKNOWN_VALUE,\n            name: engineer?.systemName ?? UNKNOWN_VALUE,\n            position: engineer?.systemPosition ?? UNKNOWN_VALUE\n          },\n          marketId: engineer?.marketId ?? UNKNOWN_VALUE,\n          progress: {\n            status: UNKNOWN_VALUE,\n            rank: 0,\n            rankProgress: 0\n          }\n        })\n      }\n    })\n\n    engineers.sort((a, b) => a.name.localeCompare(b.name))\n\n    return engineers\n  }\n}\n\nmodule.exports = Engineers\n"
  },
  {
    "path": "src/service/lib/event-handlers/inventory.js",
    "content": "\nclass Inventory {\n  constructor ({ eliteLog, eliteJson }) {\n    this.eliteLog = eliteLog\n    this.eliteJson = eliteJson\n    return this\n  }\n\n  async getInventory () {\n    const shipLocker = (await this.eliteJson.json()).ShipLocker\n    if (!shipLocker) return []\n\n    const inventoryItems = []\n\n    shipLocker.Consumables.forEach(item => {\n      let itemInInventory = inventoryItems.filter(i => i.name === (item?.Name_Localised ?? item.Name))[0]\n      if (!itemInInventory) {\n        itemInInventory = {\n          name: item?.Name_Localised ?? item.Name,\n          type: 'Consumable',\n          mission: 0,\n          stolen: 0,\n          count: 0\n        }\n        inventoryItems.push(itemInInventory)\n      }\n\n      itemInInventory.count += item.Count\n      if (item.MissionID) itemInInventory.mission += item.Count\n      if (item.OwnerID > 0) itemInInventory.stolen += item.Count\n    })\n\n    shipLocker.Items.forEach(item => {\n      let itemInInventory = inventoryItems.filter(i => i.name === (item?.Name_Localised ?? item.Name))[0]\n      if (!itemInInventory) {\n        itemInInventory = {\n          name: item?.Name_Localised ?? item.Name,\n          type: 'Goods',\n          mission: 0,\n          stolen: 0,\n          count: 0\n        }\n        inventoryItems.push(itemInInventory)\n      }\n\n      itemInInventory.count += item.Count\n      if (item.MissionID) itemInInventory.mission += item.Count\n      if (item.OwnerID > 0) itemInInventory.stolen += item.Count\n    })\n\n    shipLocker.Components.forEach(item => {\n      let itemInInventory = inventoryItems.filter(i => i.name === (item?.Name_Localised ?? item.Name))[0]\n      if (!itemInInventory) {\n        itemInInventory = {\n          name: item?.Name_Localised ?? item.Name,\n          type: 'Component',\n          mission: 0,\n          stolen: 0,\n          count: 0\n        }\n        inventoryItems.push(itemInInventory)\n      }\n\n      itemInInventory.count += item.Count\n      if (item.MissionID) itemInInventory.mission += item.Count\n      if (item.OwnerID > 0) itemInInventory.stolen += item.Count\n    })\n\n    shipLocker.Data.forEach(item => {\n      let itemInInventory = inventoryItems.filter(i => i.name === (item?.Name_Localised ?? item.Name))[0]\n      if (!itemInInventory) {\n        itemInInventory = {\n          name: item?.Name_Localised ?? item.Name,\n          type: 'Data',\n          mission: 0,\n          stolen: 0,\n          count: 0\n        }\n        inventoryItems.push(itemInInventory)\n      }\n\n      itemInInventory.count += item.Count\n      if (item.MissionID) itemInInventory.mission += item.Count\n      if (item.OwnerID > 0) itemInInventory.stolen += item.Count\n    })\n\n    inventoryItems.sort((a, b) => a.name.localeCompare(b.name))\n\n    const counts = {\n      goods: 0,\n      components: 0,\n      data: 0\n    }\n\n    inventoryItems.filter(i => i.type === 'Goods').forEach(item => { counts.goods += item.count })\n    inventoryItems.filter(i => i.type === 'Component').forEach(item => { counts.components += item.count })\n    inventoryItems.filter(i => i.type === 'Data').forEach(item => { counts.data += item.count })\n\n    return {\n      counts,\n      items: inventoryItems\n    }\n  }\n}\n\nmodule.exports = Inventory\n"
  },
  {
    "path": "src/service/lib/event-handlers/materials.js",
    "content": "\nconst EDCDMaterials = new (require('../data'))('edcd/fdevids/material')\nconst MaterialUses = new (require('../data'))('material-uses')\n\nconst materialGrades = {\n  1: {\n    name: 'Very Common',\n    maxCount: 300\n  },\n  2: {\n    name: 'Common',\n    maxCount: 250\n  },\n  3: {\n    name: 'Standard',\n    maxCount: 200\n  },\n  4: {\n    name: 'Rare',\n    maxCount: 150\n  },\n  5: {\n    name: 'Very Rare',\n    maxCount: 100\n  }\n}\n\nclass Materials {\n  constructor ({ eliteLog, eliteJson }) {\n    this.eliteLog = eliteLog\n    this.eliteJson = eliteJson\n    return this\n  }\n\n  async getMaterials () {\n    const [Materials] = await Promise.all([\n      this.eliteLog.getEvent('Materials')\n    ])\n\n    const materials = []\n    let materialsInventory = []\n    if (Materials?.Raw) materialsInventory = materialsInventory.concat(Materials?.Raw)\n    if (Materials?.Manufactured) materialsInventory = materialsInventory.concat(Materials?.Manufactured)\n    if (Materials?.Encoded) materialsInventory = materialsInventory.concat(Materials?.Encoded)\n\n    EDCDMaterials.data.forEach(material => {\n      const materialUses = MaterialUses.getBySymbol(material.symbol)\n      const materialInInventory = materialsInventory.filter(m => m.Name.toLowerCase() === material.symbol.toLowerCase())[0] // Get existing reference to this material\n      const type = material.category === 'None' ? 'Xeno' : material.type\n\n      let category = (material?.type === 'Raw') ? `Category ${material?.category}` : material?.category\n      if (material.category === 'None') category = material.type\n\n      materials.push({\n        symbol: material.symbol,\n        name: material.name,\n        type,\n        category,\n        grade: material?.rarity ?? 0,\n        rarity: materialGrades[material?.rarity].name ?? '',\n        count: materialInInventory?.Count ?? 0,\n        maxCount: materialGrades[material?.rarity]?.maxCount ?? null,\n        blueprints: materialUses?.blueprints ?? []\n      })\n    })\n\n    // Get all MaterialCollected and MaterialDiscarded events since the last\n    // Materials event was logged (Materials event is only logged at startup)\n    const timestamp = Materials?.timestamp\n    const materialsCollected = await this.eliteLog.getEventsFromTimestamp('MaterialCollected', timestamp)\n    const materialsDiscarded = await this.eliteLog.getEventsFromTimestamp('MaterialDiscarded', timestamp)\n    const engineeringCrafted = await this.eliteLog.getEventsFromTimestamp('EngineerCraft', timestamp)\n    const materialTrades = await this.eliteLog.getEventsFromTimestamp('MaterialTrade', timestamp)\n\n    // Combine all collected/discarded events, sort by timestamp and replay them\n    // by modifying the material manifest recorded at startup (increasing,\n    // decreasing or adding new materials as they are collected or discarded)\n    const materialEvents = materialsCollected.concat(materialsDiscarded).concat(materialTrades).concat(engineeringCrafted)\n    materialEvents.sort((a, b) => Date.parse(a.timestamp) < Date.parse(b.timestamp) ? 1 : -1).reverse()\n\n    for (const materialEvent of materialEvents) {\n      try {\n        if (materialEvent.event === 'MaterialCollected') {\n          const material = materials.filter(m => m.symbol.toLowerCase() === materialEvent.Name.toLowerCase())[0]\n          material.count += materialEvent.Count\n        } else if (materialEvent.event === 'MaterialDiscarded') {\n          const material = materials.filter(m => m.symbol.toLowerCase() === materialEvent.Name.toLowerCase())[0]\n          material.count -= materialEvent.Count\n        } else if (materialEvent.event === 'EngineerCraft') {\n          materialEvent.Ingredients.forEach(ingredient => {\n            const craftingMaterial = materials.filter(m => m.symbol.toLowerCase() === ingredient.Name.toLowerCase())[0]\n            craftingMaterial.count -= ingredient.Count\n          })\n        } else if (materialEvent.event === 'MaterialTrade') {\n          const materialTradePaid = materials.filter(m => m.symbol.toLowerCase() === materialEvent.Paid.Material.toLowerCase())[0]\n          materialTradePaid.count -= materialEvent.Paid.Quantity\n          const materialTradeReceived = materials.filter(m => m.symbol.toLowerCase() === materialEvent.Received.Material.toLowerCase())[0]\n          materialTradeReceived.count += materialEvent.Received.Quantity\n        }\n      } catch (err) {\n        console.log('Error handling material event', err, materialEvent)\n      }\n    }\n\n    // Sort all materials by name (to reduce effort required in UI)\n    materials.sort((a, b) => a.name.localeCompare(b.name))\n\n    return materials\n  }\n}\n\nmodule.exports = Materials\n"
  },
  {
    "path": "src/service/lib/event-handlers/nav-route.js",
    "content": "const EDSM = require('../edsm')\nconst SystemMap = require('../system-map')\n\nconst distance = require('../../../shared/distance')\n\nclass NavRoute {\n  constructor ({ eliteLog, eliteJson, system }) {\n    this.eliteLog = eliteLog\n    this.eliteJson = eliteJson\n    this.system = system\n\n    return this\n  }\n\n  async getNavRoute () {\n    const currentSystem = await this.system.getSystem()\n\n    let inSystemOnRoute = false\n    let jumpsToDestination = null\n\n    const route = await Promise.all(\n      ((await this.eliteJson.json())?.NavRoute?.Route ?? []).map(async (system) => {\n        const distanceToHop = distance(currentSystem.position, system.StarPos)\n\n        // Replaced logic as currentSystem.position (and hence distanceToHop)\n        // is not known. Using the name like this should work, although there may\n        // be edge cases where the names don't match, may have to watch for that.\n        // const isCurrentSystem = (distanceToHop === 0)\n        const isCurrentSystem = (system?.StarSystem?.toLowerCase() === currentSystem?.name?.toLowerCase())\n\n        if (isCurrentSystem) { inSystemOnRoute = true }\n\n        if (isCurrentSystem) {\n          jumpsToDestination = 0\n        } else {\n          jumpsToDestination++\n        }\n\n        // Look up system in EDSM (if it's not alrady in cache) to see if it's\n        // a previously explored system\n        if (!global.CACHE.SYSTEMS[system.StarSystem.toLowerCase()]) {\n          const systemFromESDM = await EDSM.system(system.StarSystem)\n          const systemMap = new SystemMap(systemFromESDM)\n          global.CACHE.SYSTEMS[system.StarSystem.toLowerCase()] = {\n            ...systemFromESDM,\n            ...systemMap\n          }\n        }\n        const cacheResponse = global.CACHE.SYSTEMS[system.StarSystem.toLowerCase()]\n        \n        // FIXME Refactor this if how objects orbiting a null point changes\n        // Currently there is always at least one \"star\" for a system, an \n        // object that is a placeholder for bodies not orbiting a star\n        // (this is useful as as a placeholder for edge cases, such as if there\n        // is data for a body but not for a star in ESDM, more likely with older\n        // data as the scanner used to work differently)\n        //\n        // Note: Sometimes there is incomplete data for a system, so it may\n        // have stars and planets mapped in EDSM but with incomplete data,\n        // in which case we don't count it as explored.\n        const isExplored = (cacheResponse?.stars?.length ?? 0) > 1\n\n        return {\n          system: system.StarSystem,\n          address: system.SystemAddress,\n          position: system.StarPos,\n          starClass: system.StarClass,\n          distance: distanceToHop,\n          isCurrentSystem,\n          numberOfStars: (cacheResponse?.stars?.length ?? 1) - 1,\n          numberOfPlanets: (cacheResponse?.bodies?.length ?? 0) - ((cacheResponse?.stars?.length ?? 1) - 1),\n          isExplored\n        }\n      })\n    )\n\n    const navRoute = {\n      currentSystem,\n      destination: route?.[route.length - 1] ?? [],\n      jumpsToDestination,\n      route,\n      inSystemOnRoute\n    }\n\n    return navRoute\n  }\n}\n\nmodule.exports = NavRoute\n"
  },
  {
    "path": "src/service/lib/event-handlers/ship-status.js",
    "content": "const EDCDOutfitting = new (require('../data'))('edcd/fdevids/outfitting')\nconst EDCDShipyard = new (require('../data'))('edcd/fdevids/shipyard')\nconst EDCDCommodity = new (require('../data'))('edcd/fdevids/commodity')\nconst CoriolisBlueprints = new (require('../data'))('edcd/coriolis/blueprints')\nconst CoriolisModules = new (require('../data'))('edcd/coriolis/modules')\nconst CmdrStatus = require('./cmdr-status')\nconst { UNKNOWN_VALUE } = require('../../../shared/consts')\n\nlet lastKnownShipState = null\n\nclass ShipStatus {\n  constructor ({ eliteLog, eliteJson }) {\n    this.eliteLog = eliteLog\n    this.eliteJson = eliteJson\n    this.cmdrStatus = new CmdrStatus({ eliteLog, eliteJson })\n    return this\n  }\n\n  async getShipStatus () {\n    const [Loadout, Json] = await Promise.all([\n      this.eliteLog.getEvent('Loadout'),\n      this.eliteJson.json()\n    ])\n\n    // The Loadout event is written on load, after switching ships and after\n    // using Outfitting. This logic used to use ModulesInfo.json but it is not\n    // updated as often and I haven't found a good use for ModulesInfo.json yet.\n    //\n    // NB: Other events like ModuleSwap, ModuleBuy are also issued *during*\n    // outfitting but handling all those would add extra work and just using\n    // for Loadout events is good enough for now as is fired after Outfitting.\n    const loadoutModules = Loadout?.Modules ?? []\n    const modules = {}\n    const cmdrStatus = await this.cmdrStatus.getCmdrStatus()\n    const onBoard = cmdrStatus?.flags?.inMainShip ?? false\n\n    // If we are not onboard, and we have a last known ship state, return\n    // the last known state (cargo, fuel levels, etc) but set the onBoard flag\n    // to false to note that we are not onboard.\n    //\n    // TODO Ideally persist this last known ship state to disk (seperately for\n    // each ship) so all player owned ships can be accessed, across sessions.\n    if (!onBoard && lastKnownShipState !== null) {\n      return {\n        ...lastKnownShipState,\n        onBoard: false\n      }\n    }\n\n    loadoutModules.forEach(async module => {\n      const slot = module.Slot\n      if (!modules[slot]) modules[slot] = {}\n      modules[slot].slot = module.Slot\n      modules[slot].symbol = module.Item.toLowerCase()\n      modules[slot].on = module.On\n      modules[slot].health = module.Health\n      modules[slot].value = module.Value\n      modules[slot].power = module.Power\n\n      // For passenger cabins, AmmoInClip refers to number of passengers\n      if (module.AmmoInClip) {\n        if (modules[slot].symbol.includes('passengercabin')) {\n          modules[slot].passengers = module.AmmoInClip\n        } else if (modules[slot].symbol.includes('heatsinklauncher')) {\n          modules[slot].heatsinks = module.AmmoInClip + module.AmmoInHopper\n        } else {\n          modules[slot].ammoInClip = module.AmmoInClip\n          modules[slot].ammoInHopper = module.AmmoInHopper\n          modules[slot].ammoTotal = module.AmmoInClip + module.AmmoInHopper\n        }\n      }\n\n      if (module?.Engineering) {\n        // Enrich engineering data as we add it\n        const blueprint = await CoriolisBlueprints.getBySymbol(module.Engineering.BlueprintName)\n\n        if (!blueprint) {\n          console.log(`Error! Unknown blueprint \"${module.Engineering.BlueprintName}\"`)\n          return\n        }\n\n        const [first, second] = blueprint?.symbol.split('_') ?? UNKNOWN_VALUE\n        const blueprintName = `${second} ${first}`.replace(/([a-z])([A-Z])/g, '$1 $2').replace('Misc', 'Utility').trim()\n\n        modules[slot].engineering = {\n          symbol: blueprint.symbol,\n          name: blueprintName,\n          originalName: blueprint.name,\n          level: module.Engineering.Level,\n          quality: module.Engineering.Quality,\n          modifiers: module.Engineering.Modifiers.map(mod => {\n            // Determine if change is better or worse and how much it differs\n            let difference = ''\n            let improvement = false\n            if (mod.LessIsGood === 0) {\n              if (mod.Value > mod.OriginalValue) {\n                difference = `+${(mod.Value - mod.OriginalValue).toFixed(2)}`\n                improvement = true\n              } else {\n                difference = `-${(mod.OriginalValue - mod.Value).toFixed(2)}`\n              }\n            } else {\n              if (mod.Value < mod.OriginalValue) {\n                difference = `-${(mod.OriginalValue - mod.Value).toFixed(2)}`\n                improvement = true\n              } else {\n                difference = `+${(mod.Value - mod.OriginalValue).toFixed(2)}`\n              }\n            }\n            if (mod.Value === mod.OriginalValue) difference = ''\n\n            difference = difference.replace(/\\.00$/, '')\n\n            return {\n              name: mod.Label.replace(/_/g, ' ')?.replace(/([a-z])([A-Z])/g, '$1 $2')?.trim(),\n              value: mod.Value,\n              originalValue: mod.OriginalValue,\n              lessIsGood: mod.LessIsGood,\n              difference,\n              improvement\n            }\n          }),\n          experimentalEffect: module.Engineering?.ExperimentalEffect_Localised?.replace(/_/g, ' ')?.replace(/([a-z])([A-Z])/g, '$1 $2')?.trim() ?? false,\n          engineer: module.Engineering.Engineer,\n          grades: blueprint?.grades ?? null\n        }\n      } else {\n        modules[slot].engineering = false\n      }\n    })\n\n    let armour = UNKNOWN_VALUE\n    let totalMass = Loadout?.UnladenMass ?? 0\n    let totalModulePowerDraw = 0\n    let totalFuelCapacity = 0\n\n    for (const moduleName in modules) {\n      const module = modules[moduleName]\n\n      // As a fallback, use cleaned up version of internal symbol for name\n      module.name = module.symbol\n        .replace(/ Package$/, '') // Hull / Armour modules\n        .replace(/int_/, '')\n        .replace(/_size(.*?)$/g, ' ')\n        .replace(/_/g, ' ')\n\n      // Populate additional metadata for module by looking it up\n      const outfittingModule = await EDCDOutfitting.getBySymbol(module.symbol)\n      const coriolisModule = await CoriolisModules.getBySymbol(module.symbol)\n\n      // Enrich module info with metadata, if we have it\n      if (outfittingModule) {\n        module.name = outfittingModule.name\n        if (outfittingModule.class) module.class = outfittingModule.class\n        if (outfittingModule.rating) module.rating = outfittingModule.rating\n        if (outfittingModule.mount) module.mount = outfittingModule.mount\n        if (outfittingModule.guidance) module.guidance = outfittingModule.guidance\n      }\n\n      // Each ship has exactly one armour module\n      if (module.symbol.includes('_armour_')) armour = module.name\n\n      // Internal modules start with int_\n      if (module.symbol.startsWith('int_')) module.internal = true\n\n      // Set module size based on slot name\n      if (module.slot.includes('HugeHardpoint')) module.size = 'huge'\n      if (module.slot.includes('LargeHardpoint')) module.size = 'large'\n      if (module.slot.includes('MediumHardpoint')) module.size = 'medium'\n      if (module.slot.includes('SmallHardpoint')) module.size = 'small'\n      if (module.slot.includes('TinyHardpoint')) module.size = 'tiny' // Utilities\n\n      module.hardpoint = !!module.slot.includes('Hardpoint')\n      module.utility = !!module.slot.includes('TinyHardpoint')\n      module.core = !![\n        'PowerDistributor',\n        'Radar',\n        'PowerPlant',\n        'MainEngines',\n        'FrameShiftDrive',\n        'LifeSupport',\n        'FuelTank',\n        'Armour'\n      ].includes(module.slot)\n\n      if (coriolisModule) {\n        // Just grab the first line of the description\n        const [firstLine] = (coriolisModule?.description ?? '').split('. ')\n        module.description = ''\n        if (firstLine) module.description = firstLine.replace(/\\.$/, '')\n        if (coriolisModule.mass) module.mass = coriolisModule.mass\n        if (coriolisModule.cost) module.cost = coriolisModule.cost\n        if (coriolisModule.power) module.power = coriolisModule.power\n        if (coriolisModule.range) module.range = coriolisModule.range\n        if (coriolisModule.falloff) module.falloff = coriolisModule.falloff\n        if (coriolisModule.clip) module.clip = coriolisModule.clip\n        if (coriolisModule.bays) module.bays = coriolisModule.bays\n        if (coriolisModule.proberadius) module.probeRadius = coriolisModule.proberadius\n        if (coriolisModule.rate && coriolisModule.ukName === 'Fuel Scoop') module.fuelScoopRate = coriolisModule.rate\n        if (coriolisModule.rate && coriolisModule.ukName === 'Life Support') module.lifeSupportTime = coriolisModule.time\n        if (coriolisModule.fuel) {\n          module.fuelCapacity = parseInt(coriolisModule.fuel)\n          totalFuelCapacity += module.fuelCapacity\n        }\n      }\n\n      // Keep running total of total power draw\n      if (module.power) totalModulePowerDraw += module.power\n\n      module.slotName = module.slot.replace('_', ' ')\n        .replace(/([0-9]+)/g, ' $1 ')\n        .replace(/^Slot ([0-9]+) Size ([0-9]+)/g, '') // \"(Max size: $2)\")\n        .replace(/ 0/g, ' ') // Leading zeros in numbers\n        .replace(/Military ([0-9])/, 'Military slot $1')\n        .replace(/([a-z])([A-Z])/g, '$1 $2')\n        .replace(/^Tiny /, 'Utility ')\n        .trim()\n    }\n\n    const inventory = (Json?.Cargo?.Inventory)\n      ? await Promise.all(await Json.Cargo.Inventory.map(async (item) => {\n          const commodity = await EDCDCommodity.getBySymbol(item?.Name)\n          let description = commodity?.category?.replace(/_/g, ' ')?.replace(/([a-z])([A-Z])/g, '$1 $2')?.trim() ?? ''\n          if (item?.Name === 'drones') description = 'Limpet drones'\n\n          // Include cargo in mass\n          if (item?.Count) totalMass += item?.Count\n\n          return {\n            symbol: item?.Name ?? UNKNOWN_VALUE,\n            name: item?.Name_Localised ?? item?.Name ?? UNKNOWN_VALUE,\n            count: item?.Count ?? UNKNOWN_VALUE,\n            stolen: Boolean(item?.Stolen) ?? UNKNOWN_VALUE,\n            mission: item?.MissionID ?? false,\n            description\n          }\n        })\n        )\n      : []\n\n    // Include fuel in mass\n    if (Json?.Status?.Fuel?.FuelMain) totalMass += Json?.Status?.Fuel?.FuelMain\n\n    // Format power draw and mass\n    totalModulePowerDraw = totalModulePowerDraw?.toFixed(2)?.replace(/\\.00$/, '')\n    totalMass = totalMass?.toFixed(2)?.replace(/\\.00$/, '')\n\n    const ship = await EDCDShipyard.getBySymbol(Loadout?.Ship)\n\n    const shipState = {\n      timestamp: new Date().toISOString(),\n      type: ship?.name ?? Loadout?.Ship ?? UNKNOWN_VALUE,\n      name: Loadout?.ShipName ?? UNKNOWN_VALUE,\n      ident: Loadout?.ShipIdent ?? UNKNOWN_VALUE,\n      pips: {\n        systems: onBoard ? Json?.Status?.Pips?.[0] ?? UNKNOWN_VALUE : UNKNOWN_VALUE,\n        engines: onBoard ? Json?.Status?.Pips?.[1] ?? UNKNOWN_VALUE : UNKNOWN_VALUE,\n        weapons: onBoard ? Json?.Status?.Pips?.[2] ?? UNKNOWN_VALUE : UNKNOWN_VALUE\n      },\n      // Using parseFloat with toFixed\n      maxJumpRange: Loadout?.MaxJumpRange ? parseFloat((Loadout.MaxJumpRange).toFixed(2)) : null,\n      fuelLevel: Json?.Status?.Fuel?.FuelMain ? parseFloat((Json.Status.Fuel.FuelMain).toFixed(2)) : null,\n      fuelReservoir: Json?.Status?.Fuel?.FuelReservoir ? parseFloat((Json.Status.Fuel.FuelReservoir).toFixed(2)) : null,\n      fuelCapacity: totalFuelCapacity,\n      modulePowerDraw: totalModulePowerDraw,\n      mass: totalMass,\n      rebuy: Loadout?.Rebuy ?? UNKNOWN_VALUE,\n      armour,\n      cargo: {\n        capacity: Loadout?.CargoCapacity ?? null,\n        count: Json?.Cargo?.Count ?? null,\n        inventory\n      },\n      onBoard,\n      modules\n    }\n\n    // If ship type is known, save ship state as last known ship state.\n    // This is used to be able to return the last known ship state from memory\n    // (including cargo etc) even after leaving the ship and boarding an SRV\n    // or disembarking on foot.\n    if (shipState.type !== UNKNOWN_VALUE) lastKnownShipState = shipState\n\n    return shipState\n  }\n}\n\nmodule.exports = ShipStatus\n"
  },
  {
    "path": "src/service/lib/event-handlers/system.js",
    "content": "const EDSM = require('../edsm')\nconst SystemMap = require('../system-map')\nconst { UNKNOWN_VALUE } = require('../../../shared/consts')\nconst distance = require('../../../shared/distance')\n\nclass System {\n  constructor ({ eliteLog }) {\n    this.eliteLog = eliteLog\n    return this\n  }\n\n  async getCurrentLocation () {\n    // Get most recent Location event (written at startup and after respawn)\n    const Location = await this.eliteLog.getEvent('Location')\n\n    const currentLocation = {\n      name: UNKNOWN_VALUE, // System Name\n      mode: 'SHIP' // ENUM: [SHIP|SRV|FOOT|TAXI|MULTICREW]\n    }\n\n    if (!Location) return currentLocation\n\n    const FSDJump = (await this.eliteLog.getEventsFromTimestamp('FSDJump', Location?.timestamp, 1))?.[0]\n\n    // If there is an FSD Jump event more recent than the Location event\n    // then use that for current location (note: they are formatted almost\n    // the same way)\n    const event = FSDJump || Location\n\n    if (event.StarSystem) currentLocation.name = event.StarSystem\n    if (event.StarPos) currentLocation.position = event.StarPos\n    if (event.SystemAddress) currentLocation.address = event.SystemAddress\n\n    if (event.InSRV) currentLocation.mode = 'SRV'\n    if (event.OnFoot) currentLocation.mode = 'FOOT'\n    if (event.Taxi) currentLocation.mode = 'TAXI'\n    if (event.Multicrew) currentLocation.mode = 'MULTICREW'\n\n    // Station is only set if docked\n    if (event.Docked) currentLocation.docked = true\n    if (event.StationName) currentLocation.station = event.StationName\n\n    // Body can be a star or a planet\n    if (event.Body) currentLocation.body = event.Body\n    if (event.BodyType) currentLocation.bodyType = event.BodyType\n\n    // Set if on (or near) a planet\n    if (event.Latitude) currentLocation.latitude = event.Latitude\n    if (event.Longitude) currentLocation.longitude = event.Longitude\n    if (event.Altitude) currentLocation.altitude = event.Altitude\n\n    // System information\n    if (event.SystemAllegiance) currentLocation.allegiance = event.SystemAllegiance\n    if (event.SystemGovernment_Localised || event.SystemGovernment) currentLocation.government = event.SystemGovernment_Localised || event.SystemGovernment\n    if (event.SystemSecurity_Localised || event.SystemSecurity) currentLocation.government = event.SystemSecurity_Localised || event.SystemSecurity\n    if (event.Population) currentLocation.population = event.Population\n    if (event?.SystemFaction?.Name) currentLocation.faction = event.SystemFaction.Name\n    if (event?.SystemFaction?.FactionState) currentLocation.state = event.SystemFaction.FactionState\n    if (event.SystemEconomy_Localised || event.SystemEconomy) {\n      currentLocation.economy = {\n        primary: event.SystemEconomy_Localised || event.SystemEconomy\n      }\n      if (event.SystemSecondEconomy_Localised || event.SystemSecondEconomy) {\n        currentLocation.economy.secondary = event.SystemSecondEconomy_Localised || event.SystemSecondEconomy\n      }\n    }\n\n    // Not setting this until there is code to also work out when it has been cleared\n    // if (event.Wanted) currentLocation.wanted = event.true\n\n    return currentLocation\n  }\n\n  async getSystem ({ name = null, useCache = true } = {}) {\n    const currentLocation = await this.getCurrentLocation()\n\n    // If no system name was specified, get the star system the player is in\n    const systemName = name?.trim() ?? currentLocation?.name ?? null\n\n    // If no system name was provided amd we don't know the players location\n    if (!systemName || systemName === UNKNOWN_VALUE) {\n      return {\n        name: UNKNOWN_VALUE,\n        unknownSystem: true\n      }\n    }\n\n    // Check for entry in cache in case we have it already\n    // Note: System names are unique (they can change, but will still be unique)\n    // so is okay to use them as a key.\n    if (!global.CACHE.SYSTEMS[systemName.toLowerCase()] || useCache === false) {\n      // Get system from EDSM\n      const system = await EDSM.system(systemName)\n\n      // TODO Look up recent local data we have in the logs for bodies in the\n      // system and merge data with about bodies and stations from EDSM,\n      // overwriting data from EDSM with with more recent local where there are\n      // conflicts.\n\n      // Merge in local scan data with information about the body\n      if (system?.bodies) {\n        for (const body of system.bodies) {\n          body.signals = {\n            geological: 0,\n            biological: 0,\n            human: 0\n          }\n          \n          // Merge in body signal scan data\n          const FSSBodySignals = await this.eliteLog._query({ event: 'FSSBodySignals', BodyName: body.name }, 1)\n          if (FSSBodySignals[0]?.Signals) {\n            ;(FSSBodySignals[0]?.Signals).map(signal => {\n              if (signal?.Type === '$SAA_SignalType_Geological;') {\n                body.signals.geological = signal?.Count ?? 0\n              }\n              if (signal?.Type === '$SAA_SignalType_Biological;') {\n                body.signals.biological = signal?.Count ?? 0\n              }\n              if (signal?.Type === '$SAA_SignalType_Human;') {\n                body.signals.human = signal?.Count ?? 0\n              }\n            })\n          }\n\n          // Merge in surface scan data\n          const SAASignalsFound = await this.eliteLog._query({ event: 'SAASignalsFound', BodyName: body.name }, 1)\n          if (SAASignalsFound[0]?.Signals) {\n            ;(SAASignalsFound[0]?.Signals).map(signal => {\n              if (signal?.Type === '$SAA_SignalType_Geological;') {\n                body.signals.geological = signal?.Count ?? 0\n              }\n              if (signal?.Type === '$SAA_SignalType_Biological;') {\n                body.signals.biological = signal?.Count ?? 0\n              }\n              if (signal?.Type === '$SAA_SignalType_Human;') {\n                body.signals.human = signal?.Count ?? 0\n              }\n            })\n          }\n\n          // If we have data from a surface scan about the plants, merge it\n          if (body.signals.biological > 0 && SAASignalsFound[0]?.Genuses) {\n            body.biologicalGenuses = []\n            ;(SAASignalsFound[0]?.Genuses).map(biologicalSamples => {\n              body.biologicalGenuses.push(biologicalSamples.Genus_Localised)\n            })\n          }\n\n          // Only log discovered / mapped if in an unhabited system\n          // FIXME Suspect this logic isn't entirely correct\n          const inhabitedSystem = (system?.population > 0 || system?.stations?.length > 0 || system?.ports?.length > 0 || system?.megaships?.length > 0 || system?.settlements?.length > 0)\n          if (!inhabitedSystem) {\n            const Scan = await this.eliteLog._query({ event: 'Scan', BodyName: body.name }, 1)\n            body.discovered = Scan[0]?.WasDiscovered ?? false\n            body.mapped = Scan[0]?.WasMapped ?? false\n\n            // If there is an SAAScanComplete entry for the body, it has been scanned\n            // (even if the Scan entry says it has not, because it's old data)\n            const SAAScanComplete = await this.eliteLog._query({ event: 'SAAScanComplete', BodyName: body.name }, 1)\n            if (SAAScanComplete[0]?.BodyName) body.mapped = true\n          }\n        }\n      }\n\n\n      // Generate map data from the system data\n      const systemMap = new SystemMap(system)\n\n      // Create/Update cache entry with merged system and system map data\n      global.CACHE.SYSTEMS[systemName.toLowerCase()] = {\n        ...system,\n        ...systemMap\n      }\n    }\n\n    const cacheResponse = global.CACHE.SYSTEMS[systemName.toLowerCase()] // Get entry from cache\n\n    // Determine how many bodies we actaully know of in the current system, and\n    // how many we think there are based on FSS Discovery Scan\n    let numberOfBodiesFound = cacheResponse?.bodies?.length ?? 0\n    let numberOfBodiesInSystem = numberOfBodiesFound // We start with this value (until we know otherwise)\n    let scanPercentComplete = null\n\n    if (cacheResponse.name && cacheResponse.name !== UNKNOWN_VALUE) {\n      // If we have an FSSDiscoveryScan result with a BodyCount then we can estimate\n      // percentage of the system that has been scanned\n      const FSSDiscoveryScan = await this.eliteLog._query({ event: 'FSSDiscoveryScan', SystemName: cacheResponse.name }, 1)\n      if (FSSDiscoveryScan?.[0]?.BodyCount) {\n        numberOfBodiesInSystem = FSSDiscoveryScan?.[0]?.BodyCount\n        scanPercentComplete = Math.floor((numberOfBodiesFound / numberOfBodiesInSystem) * 100)\n      }\n    }\n\n    // If we don't know what system this is return what we have\n    if (!cacheResponse.name || cacheResponse.name === UNKNOWN_VALUE) {\n      const isCurrentLocation = (systemName.toLowerCase() === currentLocation?.name?.toLowerCase())\n\n      const response = {\n        name: systemName,\n        unknownSystem: true,\n        isCurrentLocation,\n        scanPercentComplete,\n        _cacheTimestamp: new Date().toISOString()\n      }\n\n      if (isCurrentLocation && currentLocation?.position && currentLocation?.address) {\n        response.position = currentLocation.position\n        response.address = currentLocation.address\n        response.distance = 0\n      }\n\n      return response\n    }\n\n    if (systemName.toLowerCase() === currentLocation?.name?.toLowerCase()) {\n      // Handle if this is the system the player is currently in\n      return {\n        ...cacheResponse,\n        ...currentLocation,\n        distance: 0,\n        isCurrentLocation: true,\n        scanPercentComplete,\n        _cacheTimestamp: new Date().toISOString()\n      }\n\n    } else {\n      // Handle if this is not the system the player is currently in\n      return {\n        ...cacheResponse,\n        distance: distance(cacheResponse?.position, currentLocation?.position),\n        isCurrentLocation: false,\n        scanPercentComplete,\n        _cacheTimestamp: new Date().toISOString()\n      }\n    }\n  }\n}\n\nmodule.exports = System\n"
  },
  {
    "path": "src/service/lib/event-handlers/text-to-speech.js",
    "content": "const os = require('os')\nconst path = require('path')\nconst fs = require('fs')\nconst say = require('../say')\n\n// FIXME Refactor Preferences handling into a singleton\nconst PREFERENCES_DIR = path.join(os.homedir(), 'AppData', 'Local', 'ICARUS Terminal')\nconst PREFERENCES_FILE = path.join(PREFERENCES_DIR, 'Preferences.json')\n\nclass TextToSpeech {\n  constructor ({ eliteLog, eliteJson, cmdrStatus, shipStatus }) {\n    this.eliteLog = eliteLog\n    this.eliteJson = eliteJson\n    this.cmdrStatus = cmdrStatus\n    this.shipStatus = shipStatus\n\n    this.currentCmdrStatus = null\n    this.voiceAlertDebounce = null\n\n    return this\n  }\n\n  async speak (text, voice, force) {\n    // Only fire if Text To Speech voice has been selected in preferences\n    const preferences = fs.existsSync(PREFERENCES_FILE) ? JSON.parse(fs.readFileSync(PREFERENCES_FILE)) : {}\n    if (!force && !preferences?.voice) return\n    const _voice = voice || preferences?.voice || (await this.getVoices())[0]\n\n    // Only allow valid voice names (also combats potential shell escaping)\n    if (!_voice || !(await this.getVoices()).includes(_voice)) return\n\n    say.speak(text, _voice)\n  }\n\n  logEventHandler (logEvent) {\n    if (logEvent.event === 'StartJump' && logEvent.StarSystem) this.speak(`Jumping to ${logEvent.StarSystem}`)\n    if (logEvent.event === 'FSDJump') this.speak(`Jump complete. Arrived in ${logEvent.StarSystem}`)\n    if (logEvent.event === 'ApproachBody') this.speak(`Approaching ${logEvent.Body}`)\n    if (logEvent.event === 'LeaveBody') this.speak(`Leaving ${logEvent.Body}`)\n    if (logEvent.event === 'NavRoute') this.speak('New route plotted')\n    if (logEvent.event === 'DockingGranted') this.speak(`Docking at ${logEvent.StationName}`)\n    if (logEvent.event === 'Docked') this.speak(`Docked at ${logEvent.StationName}`)\n    if (logEvent.event === 'Undocked') this.speak(`Now leaving ${logEvent.StationName}`)\n    if (logEvent.event === 'ApproachSettlement') this.speak(`Approaching ${logEvent.Name}`)\n    if (logEvent.event === 'MarketBuy') this.speak(`Purchased ${logEvent.Count} ${logEvent.Count === 1 ? 'tonne' : 'tonnes'} of ${logEvent.Type_Localised || logEvent.Type}`)\n    if (logEvent.event === 'MarketSell') this.speak(`Sold  ${logEvent.Count} ${logEvent.Count === 1 ? 'tonne' : 'tonnes'} of  ${logEvent.Type_Localised || logEvent.Type}`)\n    if (logEvent.event === 'BuyDrones') this.speak(`Purchased ${logEvent.Count} Limpet ${logEvent.Count === 1 ? 'Drone' : 'Drones'}`)\n    if (logEvent.event === 'SellDrones') this.speak(`Sold ${logEvent.Count} Limpet ${logEvent.Count === 1 ? 'Drone' : 'Drones'}`)\n    if (logEvent.event === 'CargoDepot' && logEvent.UpdateType === 'Collect') this.speak(`Collected ${logEvent.Count} ${logEvent.Count === 1 ? 'tonne' : 'tonnes'} of ${logEvent.CargoType.replace(/([a-z])([A-Z])/g, '$1 $2')}`)\n    if (logEvent.event === 'CargoDepot' && logEvent.UpdateType === 'Deliver') this.speak(`Delivered  ${logEvent.Count} ${logEvent.Count === 1 ? 'tonne' : 'tonnes'} of ${logEvent.CargoType.replace(/([a-z])([A-Z])/g, '$1 $2')}`)\n    if (logEvent.event === 'Scanned') this.speak('Scan detected')\n    if (logEvent.event === 'FSSDiscoveryScan') this.speak(`Discovery Scan Complete. ${logEvent.BodyCount} ${logEvent.BodyCount === 1 ? 'Body' : 'Bodies'} found in system.`)\n  }\n\n  async gameStateChangeHandler () {\n    // TODO Refine so this logic is only evaluated on changes to Status.json\n    const previousCmdStatus = JSON.parse(JSON.stringify(this.currentCmdrStatus))\n    this.currentCmdrStatus = await this.cmdrStatus.getCmdrStatus()\n    const shipStatus = await this.shipStatus.getShipStatus()\n\n    // Only evaluate these if we are on board the ship, there is a previous\n    // status (i.e. not at startup) and we have not recently alerted\n    if (shipStatus?.onBoard && previousCmdStatus && !this.voiceAlertDebounce) {\n      // TODO improve with better debounce function\n      this.voiceAlertDebounce = true\n      setTimeout(() => { this.voiceAlertDebounce = false }, 1000)\n\n      // These functions handle changes to ship state\n      if (this.currentCmdrStatus?.flags?.lightsOn !== previousCmdStatus?.flags?.lightsOn) {\n        this.speak(this.currentCmdrStatus?.flags?.lightsOn ? 'Lights On' : 'Lights Off')\n      }\n      if (this.currentCmdrStatus?.flags?.nightVision !== previousCmdStatus?.flags?.nightVision) {\n        this.speak(this.currentCmdrStatus?.flags?.nightVision ? 'Night Vision On' : 'Night Vision Off')\n      }\n      if (this.currentCmdrStatus?.flags?.cargoScoopDeployed !== previousCmdStatus?.flags?.cargoScoopDeployed) {\n        this.speak(this.currentCmdrStatus?.flags?.cargoScoopDeployed ? 'Cargo Hatch Open' : 'Cargo Hatch Closed')\n      }\n      if (this.currentCmdrStatus?.flags?.landingGearDown !== previousCmdStatus?.flags?.landingGearDown) {\n        this.speak(this.currentCmdrStatus?.flags?.landingGearDown ? 'Landing Gear Down' : 'Landing Gear Up')\n      }\n      if (this.currentCmdrStatus?.flags?.supercruise === false && this.currentCmdrStatus?.flags?.hardpointsDeployed !== previousCmdStatus?.flags?.hardpointsDeployed) {\n        this.speak(this.currentCmdrStatus?.flags?.hardpointsDeployed ? 'Hardpoints Deployed' : 'Hardpoints Retracted')\n      }\n      if (this.currentCmdrStatus?.flags?.hudInAnalysisMode !== previousCmdStatus?.flags?.hudInAnalysisMode) {\n        this.speak(this.currentCmdrStatus?.flags?.hudInAnalysisMode ? 'Analysis mode activated' : 'Combat mode activated')\n      }\n    }\n  }\n\n  async getVoice () {\n    const preferences = fs.existsSync(PREFERENCES_FILE) ? JSON.parse(fs.readFileSync(PREFERENCES_FILE)) : {}\n    if (preferences?.voice) return preferences.voice\n\n    return await this.getVoices()[0]\n  }\n\n  getVoices () {\n    return new Promise(resolve =>\n      say.getInstalledVoices((err, voices) => {\n        resolve(voices)\n      })\n    )\n  }\n}\n\nmodule.exports = TextToSpeech\n"
  },
  {
    "path": "src/service/lib/event-handlers.js",
    "content": "const os = require('os')\nconst fs = require('fs')\nconst path = require('path')\n// const pjXML = require('pjxml')\n// const sendKeys = require('sendkeys-js')\n// onst keycode = require('keycodes')\nconst { UNKNOWN_VALUE } = require('../../shared/consts')\n\nconst { BROADCAST_EVENT: broadcastEvent } = global\n\n// const TARGET_WINDOW_TITLE = 'Elite - Dangerous (CLIENT)'\nconst KEYBINDS_DIR = path.join(os.homedir(), 'AppData', 'Local', 'Frontier Developments', 'Elite Dangerous', 'Options', 'Bindings')\n\n// Prefer Keybinds v4 file\n// TODO Check what version of game player has active\nconst KEYBINDS_FILE_V3 = path.join(KEYBINDS_DIR, 'Custom.3.0.binds') // Horizons\nconst KEYBINDS_FILE_V4 = path.join(KEYBINDS_DIR, 'Custom.4.0.binds') // Odyssey\n\n// Map ICARUS Terminal names to in-game keybind names\nconst KEYBINDS_MAP = {\n  lights: 'ShipSpotLightToggle',\n  nightVision: 'NightVisionToggle',\n  landingGear: 'LandingGearToggle',\n  cargoHatch: 'ToggleCargoScoop',\n  hardpoints: 'DeployHardpointToggle'\n}\n\n// FIXME Refactor Preferences handling into a singleton\nconst PREFERENCES_DIR = path.join(os.homedir(), 'AppData', 'Local', 'ICARUS Terminal')\nconst PREFERENCES_FILE = path.join(PREFERENCES_DIR, 'Preferences.json')\n\nconst System = require('./event-handlers/system')\nconst ShipStatus = require('./event-handlers/ship-status')\nconst Materials = require('./event-handlers/materials')\nconst Blueprints = require('./event-handlers/blueprints')\nconst Engineers = require('./event-handlers/engineers')\nconst Inventory = require('./event-handlers/inventory')\nconst CmdrStatus = require('./event-handlers/cmdr-status')\nconst NavRoute = require('./event-handlers/nav-route')\nconst TextToSpeech = require('./event-handlers/text-to-speech')\n\nclass EventHandlers {\n  constructor ({ eliteLog, eliteJson }) {\n    this.eliteLog = eliteLog\n    this.eliteJson = eliteJson\n\n    this.system = new System({ eliteLog })\n    this.shipStatus = new ShipStatus({ eliteLog, eliteJson })\n    this.materials = new Materials({ eliteLog, eliteJson })\n    this.engineers = new Engineers({ eliteLog, eliteJson })\n    this.inventory = new Inventory({ eliteLog, eliteJson })\n    this.cmdrStatus = new CmdrStatus({ eliteLog, eliteJson })\n\n    // These handlers depend on calls to other handlers\n    this.blueprints = new Blueprints({ engineers: this.engineers, materials: this.materials, shipStatus: this.shipStatus })\n    this.navRoute = new NavRoute({ eliteLog, eliteJson, system: this.system })\n    this.textToSpeech = new TextToSpeech({ eliteLog, eliteJson, cmdrStatus: this.cmdrStatus, shipStatus: this.shipStatus })\n\n    return this\n  }\n\n  // logEventHandler is fired on every in-game log event\n  logEventHandler (logEvent) {\n    this.textToSpeech.logEventHandler(logEvent)\n  }\n\n  gameStateChangeHandler (event) {\n    this.textToSpeech.gameStateChangeHandler(event)\n  }\n\n  // Return handlers for events that are fired from the client\n  getEventHandlers () {\n    if (!this.eventHandlers) {\n      this.eventHandlers = {\n        getCmdr: async () => {\n          const [LoadGame] = await this.eliteLog.getEvent('LoadGame')\n          return {\n            commander: LoadGame?.Commander ?? UNKNOWN_VALUE,\n            credits: LoadGame?.Credits ?? UNKNOWN_VALUE\n          }\n        },\n        getLogEntries: async ({ count = 100, timestamp }) => {\n          if (timestamp) {\n            return await this.eliteLog.getFromTimestamp(timestamp)\n          } else {\n            return await this.eliteLog.getNewest(count)\n          }\n        },\n        getSystem: (args) => this.system.getSystem(args),\n        getShipStatus: (args) => this.shipStatus.getShipStatus(args),\n        getMaterials: (args) => this.materials.getMaterials(args),\n        getInventory: (args) => this.inventory.getInventory(args),\n        getEngineers: (args) => this.engineers.getEngineers(args),\n        getCmdrStatus: (args) => this.cmdrStatus.getCmdrStatus(args),\n        getBlueprints: (args) => this.blueprints.getBlueprints(args),\n        getNavRoute: (args) => this.navRoute.getNavRoute(args),\n        getPreferences: () => {\n          return fs.existsSync(PREFERENCES_FILE) ? JSON.parse(fs.readFileSync(PREFERENCES_FILE)) : {}\n        },\n        setPreferences: (preferences) => {\n          if (!fs.existsSync(PREFERENCES_DIR)) fs.mkdirSync(PREFERENCES_DIR, { recursive: true })\n          fs.writeFileSync(PREFERENCES_FILE, JSON.stringify(preferences))\n          broadcastEvent('syncMessage', { name: 'preferences' })\n          return preferences\n        },\n        getVoices: () => this.textToSpeech.getVoices(),\n        // getCodexEntries: () => {\n        //   return JSON.parse(fs.readFileSync(path.join(__dirname, '..', 'data', 'codex', '_index.json')))\n        // },\n        // getCodexEntry: ({name}) => {\n        //   const codexIndex = JSON.parse(fs.readFileSync(path.join(__dirname, '..', 'data', 'codex', '_index.json'))).index\n        //   if (codexIndex[name]) {\n        //     return JSON.parse(fs.readFileSync(path.join(__dirname, '..', 'data', 'codex', `${codexIndex[name]}.json`)))\n        //   } else {\n        //     return null\n        //   }\n        // },\n        testMessage: ({name, message}) => {\n          // Method to simulate messages, intended for developers\n          if (name !== 'testMessage') broadcastEvent(name, message)\n        },\n        testVoice: ({ voice }) => {\n          // Escape voice name when passing as text as precaution to clean\n          // input (NB: voice name argument is checked internally)\n          const text = `Voice assistant will use ${voice.replace(/[^a-z0-9 -]/gi, '')}`\n          this.textToSpeech.speak(text, voice, true)\n        },\n        toggleSwitch: async ({ switchName }) => {\n          return false\n          /*\n          // TODO Refactor this out into a dedicated library\n          try {\n            let KEYBINDS_FILE\n            const KEYBIND_XML_ELEMENT = KEYBINDS_MAP[switchName]\n\n            if (fs.existsSync(KEYBINDS_FILE_V4)) {\n              KEYBINDS_FILE = KEYBINDS_FILE_V4\n            } else if (fs.existsSync(KEYBINDS_FILE_V3)) {\n              KEYBINDS_FILE = KEYBINDS_FILE_V3\n            }\n\n            const keyBinds = fs.readFileSync(KEYBINDS_FILE).toString()\n\n            const doc = pjXML.parse(keyBinds)\n            const primaryElement = doc.select(`//${KEYBIND_XML_ELEMENT}/Primary`)\n            const primaryKey = convertEliteDangerousKeyBindingToInputKey(primaryElement?.attributes?.Key)\n            const primaryElementModifier = doc.select(`//${KEYBIND_XML_ELEMENT}/Primary/Modifier`)\n            const secondaryElement = doc.select(`//${KEYBIND_XML_ELEMENT}/Secondary`)\n            const secondaryKey = convertEliteDangerousKeyBindingToInputKey(secondaryElement?.attributes?.Key)\n            const secondaryElementModifier = doc.select(`//${KEYBIND_XML_ELEMENT}/Primary/Secondary`)\n\n            let keyToSend, modifierKey\n            if (primaryElement?.attributes?.Device === 'Keyboard') {\n              keyToSend = primaryKey\n              modifierKey = primaryElementModifier?.attributes?.Key.replace(/^Key_/, '')\n            }\n\n            // If the primary key has a modifer, and the secondary key doesn't\n            // then we use the secondary key as the target key instead, as we\n            // don't currently support sending modifier keys.\n            if (modifierKey && primaryElement?.attributes?.Device === 'Keyboard') {\n              if (!secondaryElementModifier) {\n                  keyToSend = secondaryKey\n                  modifierKey = null\n                }\n            }\n\n            // If the secondary key is a single keystroke (with modifer) and the\n            // primary key is not then prefer the secondary key as it's more\n            // likely to work as it won't have to rely on special key mapping.\n            if (primaryKey && secondaryKey && primaryKey.length > 1 && !secondaryElementModifier) {\n              keyToSend = secondaryKey\n              modifierKey = null\n            }\n\n            // TODO Support Control and Alt modifiers\n            if (modifierKey?.toLowerCase()?.includes('shift')) modifierKey = 'shift'\n\n            const keyAsKeycode = convertKeyToKeycode(keyToSend)\n            //const modifierKeyAsKeycode =  keycode.codes[modifierKey?.toLowerCase()]\n\n            console.log('KEYBINDS_MAP[switchName]', switchName, KEYBINDS_MAP[switchName])\n            console.log('Key', keyToSend, keyAsKeycode) // modifierKey, modifierKeyAsKeycode)\n\n            // Set Elite Dangerous as the active window\n            await sendKeys.activate(TARGET_WINDOW_TITLE)\n\n            // TODO Trigger SendInput (removed for now, being reworked)\n            return true\n\n          } catch (e) {\n            console.error('ERROR_SENDING_KEY', switchName, e.toString())\n            return false\n          }\n          */\n        }\n      }\n    }\n    return this.eventHandlers\n  }\n}\n\nmodule.exports = EventHandlers\n"
  },
  {
    "path": "src/service/lib/events.js",
    "content": "const os = require('os')\n\nconst EliteLog = require('./elite-log')\nconst EliteJson = require('./elite-json')\nconst EventHandlers = require('./event-handlers')\n\nconst {\n  PORT,\n  LOG_DIR,\n  BROADCAST_EVENT: broadcastEvent\n} = global\n\n// eliteLog and eliteJson handle all log events and game state changes and\n// are shared with event handlers who can respond to and query them\nconst eliteLog = new EliteLog(LOG_DIR)\nconst eliteJson = new EliteJson(LOG_DIR)\n\nconst _eventHandlers = new EventHandlers({ eliteLog, eliteJson })\n// Define handlers for events trigged by the client\nconst eventHandlers = _eventHandlers.getEventHandlers()\n// Define global handler for events trigged by the game\nconst logEventHandler = (logEvent) => _eventHandlers.logEventHandler(logEvent)\nconst gameStateChangeHandler = () => _eventHandlers.gameStateChangeHandler()\n\n// Extend game logic related event handlers with app logic related handlers\neventHandlers.hostInfo = () => {\n  const urls = Object.values(os.networkInterfaces())\n    .flat()\n    .filter(({ family, internal }) => family === 'IPv4' && !internal)\n    .map(({ address }) => `http://${address}:${PORT}`)\n  return { urls }\n}\neventHandlers.getLoadingStatus = () => getLoadingStatus()\neventHandlers.syncMessage = (message) => broadcastEvent('syncMessage', message)\n\n// TODO Define these in another file / merge with eventHandlers before porting\n// over existing event handlers from the internal build\nconst ICARUS_EVENTS = {\n  IcarusGameLoadedEvent: {\n    events: ['LoadGame'],\n    handler: async () => { /* Return JSON */ }\n  }\n}\n\nconst GAME_EVENT_TO_ICARUS_EVENT_MAP = {}\n\n// Create mapping of game events to ICARUS events, so that when a game event\n// happens it's easy to lookup what ICARUS events to fire\nObject.keys(ICARUS_EVENTS).forEach(icarusEventName => {\n  ICARUS_EVENTS[icarusEventName].events.forEach(gameEventName => {\n    if (!GAME_EVENT_TO_ICARUS_EVENT_MAP[gameEventName]) GAME_EVENT_TO_ICARUS_EVENT_MAP[gameEventName] = []\n    GAME_EVENT_TO_ICARUS_EVENT_MAP[gameEventName].push(icarusEventName)\n  })\n})\n\n// Track initial file load\nlet loadingComplete = false\nlet loadingInProgress = false\nlet numberOfEventsImported = 0 // Count of log entries loaded\nlet numberOfLogLines = 0\nlet logSizeInBytes = 0 //\nconst filesLoaded = [] // List of files loaded\nconst eventTypesLoaded = {} // List of event types seen\nlet loadingStartTime, loadingEndTime // Used to track how long loading takes\nlet loadingProgressInterval // Used to update clients on loading progress\n\n// const loadingProgressEvent = throttle(() => broadcastEvent('loadingProgressEvent', getLoadingStatus()), 250, { leading: true, trailing: true })\n\nconst loadingProgressEvent = () => broadcastEvent('loadingProgress', getLoadingStatus())\n\n// Callback to be invoked when a file is loaded\n// Fires every time a file is loaded or reloaded\nconst loadFileCallback = (file) => {\n  if (!filesLoaded.includes(file.name)) {\n    filesLoaded.push(file.name)\n    logSizeInBytes += file.size\n    if (file.lineCount) numberOfLogLines += file.lineCount\n  }\n}\n\n// Callback when a log entry is loaded\n// Fires once for each log entry, duplicate entries won't fire multiple events\nconst logEventCallback = (log) => {\n  const eventName = log.event\n\n  // Update stats\n  numberOfEventsImported = eliteLog.stats().numberOfEventsImported\n\n  // Add logic to handle broadcasting specific game events\n  if (GAME_EVENT_TO_ICARUS_EVENT_MAP[eventName]) {\n    // Only fire events *if* we are not loading (otherwise can generate\n    // thousands of messages in a few seconds, which slows loading)\n    if (!loadingInProgress) {\n      // Fire off all ICARUS_EVENTS that depend on this game event\n      GAME_EVENT_TO_ICARUS_EVENT_MAP[eventName].map(async (icarusEventName) => {\n        const message = await ICARUS_EVENTS[icarusEventName].handler()\n        broadcastEvent(icarusEventName, message)\n      })\n    }\n  } else {\n    // Keep track of all event types seen (and how many of each type)\n    // TODO Move this into the EliteLog class\n    if (!eventTypesLoaded[eventName]) eventTypesLoaded[eventName] = 0\n    eventTypesLoaded[eventName]++\n  }\n\n  if (!loadingInProgress) {\n    broadcastEvent('newLogEntry', log)\n    logEventHandler(log)\n  }\n}\n\n// Callbacks are bound here so we can track data being parsed\neliteJson.loadFileCallback = loadFileCallback\neliteLog.loadFileCallback = loadFileCallback\neliteLog.logEventCallback = logEventCallback\n\nasync function init ({ days = 7 } = {}) {\n  // If already run (or already started) don't run again\n  if (loadingComplete || loadingInProgress) return getLoadingStatus()\n\n  loadingInProgress = true // True while initial loading is happening\n  loadingStartTime = new Date()\n  loadingEndTime = null // Reset\n\n  loadingProgressEvent() // Fire first event\n  loadingProgressInterval = setInterval(loadingProgressEvent, 100)\n\n  await eliteJson.load() // Load JSON files then watch for changes\n  eliteJson.watch(eliteJsonCallback) // @TODO Pass a callback to handle new messages\n\n  await eliteLog.load({ days }) // Load logs then watch for changes\n  eliteLog.watch() // @TODO Pass a callback to handle new messages\n\n  clearInterval(loadingProgressInterval)\n\n  loadingInProgress = false // We are done with the loading phase\n  loadingComplete = true // Set to true when data has been loaded\n  loadingEndTime = new Date()\n\n  loadingProgressEvent() // Trigger once complete\n\n  return getLoadingStatus()\n}\n\nfunction getLoadingStatus () {\n  return {\n    loadingComplete,\n    loadingInProgress,\n    loadingCompleted: loadingEndTime,\n    loadingTime: (loadingEndTime) ? loadingEndTime - loadingStartTime : new Date() - loadingStartTime,\n    numberOfFiles: filesLoaded.length,\n    numberOfEventsImported,\n    numberOfLogLines,\n    logSizeInBytes,\n    lastActivity: eliteLog.stats().lastActivity\n  }\n}\n\nfunction eliteJsonCallback (event) {\n  broadcastEvent('gameStateChange')\n  gameStateChangeHandler(event)\n}\n\nmodule.exports = {\n  eventHandlers,\n  init\n}\n"
  },
  {
    "path": "src/service/lib/mission.js",
    "content": "const fs = require('fs')\n\nclass Mission {\n  constructor (missionId) {\n    // Look up mission based on ID and populate mission object\n    // (throw error if not found)\n    this.mission = {}\n\n    // Populated with int for current stage (e.g. 0,1,2), starts off null\n    this.currentStage = null\n  }\n\n  getName () {\n    return this.mission.name\n  }\n\n  getNpc () {\n    return (this.currentStage === null)\n      ? this.mission.npc\n      : this.mission.stages[this.currentStage].npc\n  }\n\n  getTitle () {\n    return (this.currentStage === null)\n      ? this.mission.title\n      : this.mission.stages[this.currentStage].title\n  }\n\n  getText () {\n    return (this.currentStage === null)\n      ? this.mission.text\n      : this.mission.stages[this.currentStage].text\n  }\n\n  getStyle () {\n    return (this.currentStage === null)\n      ? null\n      : this.mission.stages[this.currentStage].style || null\n  }\n\n  getCurrentStage () {\n    return this.currentStage\n  }\n\n  isComplete () {\n    return !this.mission.stages[this.currentStage].nextStage\n  }\n\n  updateMission (event, location = { name: '', type: '' }) {\n    // TODO Check progress against mission (should be triggered for all\n    // open missions on every event) and progress as appropriate\n  }\n}\n\nmodule.exports = Mission\n\n/*\n  // Work in progress mission schema\n\n  mission: {\n    id: '',\n\n    // Name to display for this mission\n    name: ''\n\n    // Title and text for mission invitation message\n    title: '',\n    text: '',\n\n    // NPC mission giver\n    npc: {\n      name: '',\n      image: null,\n    }\n\n    // List of valid stages (non-linear)\n    stages: [\n      {\n        // How to style this message in the UI (null if default styling)\n        style: null, // NULL, 'SUCCESS', 'FAILURE'\n\n        // NPC contact for this stage of the mission\n        npc: {\n          name: '',\n          image: null,\n        }\n\n        // Title and text to display for this stage of the mission\n        title: '',\n        text: '',\n\n        // One or more criteria to evaluate. If no criteria, just displays\n        // heading/text (e.g. no criteria for the final stage in a misssion).\n        // The first criteria to have it's requirements met is the only one\n        // used so order may matter depending on wha the requirements are.\n        criteria: [{\n          // location where the player needs to be to meet the criteria when\n          // the event is logged. The location object can be null/ommitted, in\n          // which case the requirements can be met anywhere.\n          location: {\n            type: '', // 'SYSTEM', 'BODY', 'SETTLEMENT', 'STATION', 'MEGASHIP', 'POI'\n            name: '', // Name of the System / Settlement / Station / POI type / etc\n          },\n\n          // Type of game events to listen for\n          event: 'EVENT_NAME', // EVENT_NAME\n\n          // One or more requirements to test, defined as JSON path expressions\n          // to be run against the event specified above. If requirements are\n          // are null or empty, the event simply needs to occur (in the\n          // specified location, if a location is defined).\n          //\n          // All requirements specified for this stage must be met to progress\n          // to be able to progress to the next stage.\n          //\n          // NB: If any of multiple criteria are valid, you can define multiple\n          // criteria for this stage, each with a single test. The first\n          // criteria object (as processed sequentially) to have all it's\n          // requirements met determines what the next stage is. This makes it\n          // possible to have multiple ways of succeeding a mission, as well as\n          // multiple ways of failing a mission.\n          requirements: [{\n            // Optional description to display in UI (null if none)\n            description: 'Obtain 5T of Silver',\n            test: // JSON path expression (or similar)\n          }],\n\n          nextStage: 2, // Stage to go to on success. If null, mission is over.\n          nextMission: null // If a Mission ID is specified, trigger an invite\n                            // to a new mission.\n        },]\n      }\n    ]\n  }\n*/\n"
  },
  {
    "path": "src/service/lib/poi.js",
    "content": "class PointOfInterest {\n\n}\n\nmodule.exports = new PointOfInterest()\n"
  },
  {
    "path": "src/service/lib/preferences.js",
    "content": "const os = require('os')\nconst fs = require('fs')\nconst path = require('path')\nconst Package = require('../../../package.json')\n\nconst PREFERENCES_FILE = 'Preferences.json'\n\nclass Preferences {\n  getPreferences () {\n    return fs.readSync(path.join(this.preferencesDir(), PREFERENCES_FILE))\n  }\n\n  savePreferences (preferencesObject) {\n    preferencesObject.version = Package.version\n    return fs.writeSync(path.join(this.preferencesDir(), PREFERENCES_FILE), JSON.stringify(preferencesObject))\n  }\n\n  preferencesDir () {\n    switch (os.platform()) {\n      case 'win32': // Windows (all versions)\n        return path.join(os.homedir(), 'AppData', 'Local', 'ICARUS Terminal')\n      case 'darwin': // Mac OS\n        return path.join(os.homedir(), 'Library', 'ICARUS Terminal')\n      default: // Default to a location for some other form of unix\n        return path.join(os.homedir(), '.icarus-terminal')\n    }\n  }\n}\n\nmodule.exports = new Preferences()\n"
  },
  {
    "path": "src/service/lib/say/LICENSE.txt",
    "content": "Copyright (c) 2010 Marak Squires http://github.com/marak/say.js/\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "src/service/lib/say/README.md",
    "content": "<img src=\"https://travis-ci.org/Marak/say.js.svg?branch=master\" />\n\n<img src=\"https://github.com/Marak/say.js/raw/master/logo.png\" />\n\n## Installing say.js\n\n```bash\nnpm install say\n```\n\n\n## Usage\n\n```javascript\n// automatically pick platform\nconst say = require('say')\n\n// or, override the platform\nconst Say = require('say').Say\nconst say = new Say('darwin' || 'win32' || 'linux')\n\n// Use default system voice and speed\nsay.speak('Hello!')\n\n// Stop the text currently being spoken\nsay.stop()\n\n// More complex example (with an OS X voice) and slow speed\nsay.speak(\"What's up, dog?\", 'Alex', 0.5)\n\n// Fire a callback once the text has completed being spoken\nsay.speak(\"What's up, dog?\", 'Good News', 1.0, (err) => {\n  if (err) {\n    return console.error(err)\n  }\n\n  console.log('Text has been spoken.')\n});\n\n// Export spoken audio to a WAV file\nsay.export(\"I'm sorry, Dave.\", 'Cellos', 0.75, 'hal.wav', (err) => {\n  if (err) {\n    return console.error(err)\n  }\n\n  console.log('Text has been saved to hal.wav.')\n})\n```\n\n### Methods\n\n#### Speak:\n\n* Speed: 1 = 100%, 0.5 = 50%, 2 = 200%, etc\n\n```javascript\nsay.speak(text, voice || null, speed || null, callback || null)\n```\n\n#### Export Audio:\n\n* MacOS / Windows Only\n* Speed: 1 = 100%, 0.5 = 50%, 2 = 200%, etc\n\n```javascript\nsay.export(text, voice || null, speed || null, filename, callback || null)\n```\n\n#### Stop Speaking:\n\n```javascript\nsay.stop(callback || null)\n```\n\n#### Get List of Installed Voice(s):\n\n```javascript\nsay.getInstalledVoices(callback)\n```\n\n## Feature Matrix\n\nUnfortunately every feature isn't supported on every platform. PR's welcome!\n\nPlatform | Speak | Export | Stop | Speed | Voice | List\n---------|-------|--------|------|-------|-------|-----\nmacOS    | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :no_entry_sign:\nLinux    | :white_check_mark: | :no_entry_sign:    | :white_check_mark: | :white_check_mark: | :white_check_mark: | :no_entry_sign:\nWindows  | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark:\n\n\n## macOS Notes\n\nVoices in macOS are associated with different localities. To a list of voices and their localities run the following command:\n\n```sh\nsay -v \"?\"\n```\n\nAs an example, the default voice is `Alex` and the voice used by Siri is `Samantha`.\n\n\n## Windows Notes\n\nNone.\n\n## Linux Notes\n\nLinux support requires [Festival](http://www.cstr.ed.ac.uk/projects/festival/). As far as I can tell there is no sane way to get a list of available voices. The only voice that seems to work is `voice_kal_diphone`, which seems to be the default anyway.\n\nThe `.export()` method is not available.\n\nTry the following command to install Festival with a default voice:\n\n```shell\nsudo apt-get install festival festvox-kallpc16k\n```\n\n\n## Requirements\n\n* Mac OS X (comes with `say`)\n* Linux with Festival installed\n* Windows (comes with SAPI.SpVoice)\n  * Needs to have Powershell installed and available in $PATH (see [issue #75](https://github.com/Marak/say.js/issues/75))\n"
  },
  {
    "path": "src/service/lib/say/index.js",
    "content": "const SayLinux = require('./platform/linux.js')\nconst SayMacos = require('./platform/darwin.js')\nconst SayWin32 = require('./platform/win32.js')\n\nconst MACOS = 'darwin'\nconst LINUX = 'linux'\nconst WIN32 = 'win32'\n\nclass Say {\n  constructor (platform) {\n    if (!platform) {\n      platform = process.platform\n    }\n\n    if (platform === MACOS) {\n      return new SayMacos()\n    } else if (platform === LINUX) {\n      return new SayLinux()\n    } else if (platform === WIN32) {\n      return new SayWin32()\n    }\n\n    throw new Error(`new Say(): unsupported platorm! ${platform}`)\n  }\n}\n\nmodule.exports = new Say() // Create a singleton automatically for backwards compatability\nmodule.exports.Say = Say // Allow users to `say = new Say.Say(platform)`\nmodule.exports.platforms = {\n  WIN32: WIN32,\n  MACOS: MACOS,\n  LINUX: LINUX\n}\n"
  },
  {
    "path": "src/service/lib/say/package.json",
    "content": "{\n  \"name\": \"say\",\n  \"description\": \"TTS (Text To Speech) Module for Node.js\",\n  \"version\": \"0.16.0\",\n  \"author\": \"Marak Squires\",\n  \"license\": \"MIT\",\n  \"scripts\": {\n    \"test\": \"standard && ./examples/basic-callback.js\",\n    \"lint\": \"standard\",\n    \"lint-fix\": \"standard --fix\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"http://github.com/Marak/say.js.git\"\n  },\n  \"typings\": \"index.d.ts\",\n  \"engines\": {\n    \"node\": \">=6.9\"\n  },\n  \"devDependencies\": {\n    \"standard\": \"^12.0.1\"\n  },\n  \"dependencies\": {\n    \"one-time\": \"0.0.4\"\n  }\n}\n"
  },
  {
    "path": "src/service/lib/say/platform/base.js",
    "content": "const childProcess = require('child_process')\nconst once = require('one-time')\n\nclass SayPlatformBase {\n  constructor () {\n    this.child = null\n    this.baseSpeed = 0\n  }\n\n  /**\n   * Uses system libraries to speak text via the speakers.\n   *\n   * @param {string} text Text to be spoken\n   * @param {string|null} voice Name of voice to be spoken with\n   * @param {number|null} speed Speed of text (e.g. 1.0 for normal, 0.5 half, 2.0 double)\n   * @param {Function|null} callback A callback of type function(err) to return.\n   */\n  speak (text, voice, speed, callback) {\n    if (typeof callback !== 'function') {\n      callback = () => {}\n    }\n\n    callback = once(callback)\n\n    if (!text) {\n      return setImmediate(() => {\n        callback(new TypeError('say.speak(): must provide text parameter'))\n      })\n    }\n\n    const { command, args, pipedData, options } = this.buildSpeakCommand({ text, voice, speed })\n\n    this.child = childProcess.spawn(command, args, options)\n\n    this.child.stdin.setEncoding('utf-8')\n    this.child.stderr.setEncoding('utf-8')\n\n    if (pipedData) {\n      this.child.stdin.end(pipedData)\n    }\n\n    this.child.stderr.once('data', (data) => {\n      // we can't stop execution from this function\n      callback(new Error(data))\n    })\n\n    this.child.addListener('exit', (code, signal) => {\n      if (code === null || signal !== null) {\n        return callback(new Error(`say.speak(): could not talk, had an error [code: ${code}] [signal: ${signal}]`))\n      }\n\n      this.child = null\n\n      callback(null)\n    })\n  }\n\n  /**\n   * Uses system libraries to speak text via the speakers.\n   *\n   * @param {string} text Text to be spoken\n   * @param {string|null} voice Name of voice to be spoken with\n   * @param {number|null} speed Speed of text (e.g. 1.0 for normal, 0.5 half, 2.0 double)\n   * @param {string} filename Path to file to write audio to, e.g. \"greeting.wav\"\n   * @param {Function|null} callback A callback of type function(err) to return.\n   */\n  export (text, voice, speed, filename, callback) {\n    if (typeof callback !== 'function') {\n      callback = () => {}\n    }\n\n    callback = once(callback)\n\n    if (!text) {\n      return setImmediate(() => {\n        callback(new TypeError('say.export(): must provide text parameter'))\n      })\n    }\n\n    if (!filename) {\n      return setImmediate(() => {\n        callback(new TypeError('say.export(): must provide filename parameter'))\n      })\n    }\n\n    try {\n      var { command, args, pipedData, options } = this.buildExportCommand({ text, voice, speed, filename })\n    } catch (error) {\n      return setImmediate(() => {\n        callback(error)\n      })\n    }\n\n    this.child = childProcess.spawn(command, args, options)\n\n    this.child.stdin.setEncoding('utf-8')\n    this.child.stderr.setEncoding('utf-8')\n\n    if (pipedData) {\n      this.child.stdin.end(pipedData)\n    }\n\n    this.child.stderr.once('data', (data) => {\n      // we can't stop execution from this function\n      callback(new Error(data))\n    })\n\n    this.child.addListener('exit', (code, signal) => {\n      if (code === null || signal !== null) {\n        return callback(new Error(`say.export(): could not talk, had an error [code: ${code}] [signal: ${signal}]`))\n      }\n\n      this.child = null\n\n      callback(null)\n    })\n  }\n\n  /**\n   * Stops currently playing audio. There will be unexpected results if multiple audios are being played at once\n   *\n   * TODO: If two messages are being spoken simultaneously, childD points to new instance, no way to kill previous\n   *\n   * @param {Function|null} callback A callback of type function(err) to return.\n   */\n  stop (callback) {\n    if (typeof callback !== 'function') {\n      callback = () => {}\n    }\n\n    callback = once(callback)\n\n    if (!this.child) {\n      return setImmediate(() => {\n        callback(new Error('say.stop(): no speech to kill'))\n      })\n    }\n\n    this.runStopCommand()\n\n    this.child = null\n\n    callback(null)\n  }\n\n  convertSpeed (speed) {\n    return Math.ceil(this.baseSpeed * speed)\n  }\n\n  /**\n   * Get Installed voices on system\n   * @param {Function} callback A callback of type function(err,voices) to return.\n   */\n  getInstalledVoices (callback) {\n    if (typeof callback !== 'function') {\n      callback = () => {}\n    }\n    callback = once(callback)\n\n    const { command, args } = this.getVoices()\n    let voices = []\n    this.child = childProcess.spawn(command, args)\n\n    this.child.stdin.setEncoding('utf-8')\n    this.child.stderr.setEncoding('utf-8')\n\n    this.child.stderr.once('data', (data) => {\n      // we can't stop execution from this function\n      callback(new Error(data))\n    })\n    this.child.stdout.on('data', function (data) {\n      voices += data\n    })\n\n    this.child.addListener('exit', (code, signal) => {\n      if (code === null || signal !== null) {\n        return callback(new Error(`say.getInstalledVoices(): could not get installed voices, had an error [code: ${code}] [signal: ${signal}]`))\n      }\n      if (voices.length > 0) {\n        voices = voices.split('\\r\\n')\n        voices = (voices[voices.length - 1] === '') ? voices.slice(0, voices.length - 1) : voices\n      }\n      this.child = null\n\n      callback(null, voices)\n    })\n\n    this.child.stdin.end()\n  }\n}\n\nmodule.exports = SayPlatformBase\n"
  },
  {
    "path": "src/service/lib/say/platform/darwin.js",
    "content": "const SayPlatformBase = require('./base.js')\n\nconst BASE_SPEED = 175\nconst COMMAND = 'say'\n\nclass SayPlatformDarwin extends SayPlatformBase {\n  constructor () {\n    super()\n    this.baseSpeed = BASE_SPEED\n  }\n\n  buildSpeakCommand ({ text, voice, speed }) {\n    const args = []\n    const pipedData = ''\n    const options = {}\n\n    if (!voice) {\n      args.push(text)\n    } else {\n      args.push('-v', voice, text)\n    }\n\n    if (speed) {\n      args.push('-r', this.convertSpeed(speed))\n    }\n\n    return { command: COMMAND, args, pipedData, options }\n  }\n\n  buildExportCommand ({ text, voice, speed, filename }) {\n    const args = []\n    const pipedData = ''\n    const options = {}\n\n    if (!voice) {\n      args.push(text)\n    } else {\n      args.push('-v', voice, text)\n    }\n\n    if (speed) {\n      args.push('-r', this.convertSpeed(speed))\n    }\n\n    if (filename) {\n      args.push('-o', filename, '--data-format=LEF32@32000')\n    }\n\n    return { command: COMMAND, args, pipedData, options }\n  }\n\n  runStopCommand () {\n    this.child.stdin.pause()\n    this.child.kill()\n  }\n\n  getVoices () {\n    throw new Error(`say.export(): does not support platform ${this.platform}`)\n  }\n}\n\nmodule.exports = SayPlatformDarwin\n"
  },
  {
    "path": "src/service/lib/say/platform/linux.js",
    "content": "const SayPlatformBase = require('./base.js')\n\nconst BASE_SPEED = 100\nconst COMMAND = 'festival'\n\nclass SayPlatformLinux extends SayPlatformBase {\n  constructor () {\n    super()\n    this.baseSpeed = BASE_SPEED\n  }\n\n  buildSpeakCommand ({ text, voice, speed }) {\n    const args = []\n    let pipedData = ''\n    const options = {}\n\n    args.push('--pipe')\n\n    if (speed) {\n      pipedData += `(Parameter.set 'Audio_Command \"aplay -q -c 1 -t raw -f s16 -r $(($SR*${this.convertSpeed(speed)}/100)) $FILE\") `\n    }\n\n    if (voice) {\n      pipedData += `(${voice}) `\n    }\n\n    pipedData += `(SayText \"${text}\")`\n\n    return { command: COMMAND, args, pipedData, options }\n  }\n\n  buildExportCommand ({ text, voice, speed, filename }) {\n    throw new Error(`say.export(): does not support platform ${this.platform}`)\n  }\n\n  runStopCommand () {\n    // TODO: Need to ensure the following is true for all users, not just me. Danger Zone!\n    // On my machine, original childD.pid process is completely gone. Instead there is now a\n    // childD.pid + 1 sh process. Kill it and nothing happens. There's also a childD.pid + 2\n    // aplay process. Kill that and the audio actually stops.\n    process.kill(this.child.pid + 2)\n  }\n\n  getVoices () {\n    throw new Error(`say.export(): does not support platform ${this.platform}`)\n  }\n}\n\nmodule.exports = SayPlatformLinux\n"
  },
  {
    "path": "src/service/lib/say/platform/win32.js",
    "content": "const childProcess = require('child_process')\n\nconst SayPlatformBase = require('./base.js')\n\nconst BASE_SPEED = 0 // Unsupported\nconst COMMAND = 'powershell'\n\nclass SayPlatformWin32 extends SayPlatformBase {\n  constructor () {\n    super()\n    this.baseSpeed = BASE_SPEED\n  }\n\n  buildSpeakCommand ({ text, voice, speed }) {\n    const args = []\n    let pipedData = ''\n    const options = {}\n\n    let psCommand = 'chcp 65001;' // Change powershell encoding to utf-8\n    psCommand += 'Add-Type -AssemblyName System.speech;$speak = New-Object System.Speech.Synthesis.SpeechSynthesizer;'\n\n    if (voice) {\n      psCommand += `$speak.SelectVoice('${voice}');`\n    }\n\n    if (speed) {\n      const adjustedSpeed = this.convertSpeed(speed || 1)\n      psCommand += `$speak.Rate = ${adjustedSpeed};`\n    }\n\n    psCommand += '$speak.Speak([Console]::In.ReadToEnd())'\n\n    pipedData += text\n    args.push(psCommand)\n    options.shell = true\n\n    return { command: COMMAND, args, pipedData, options }\n  }\n\n  buildExportCommand ({ text, voice, speed, filename }) {\n    const args = []\n    let pipedData = ''\n    const options = {}\n\n    let psCommand = 'chcp 65001;' // Change powershell encoding to utf-8\n    psCommand += 'Add-Type -AssemblyName System.speech;$speak = New-Object System.Speech.Synthesis.SpeechSynthesizer;'\n\n    if (voice) {\n      psCommand += `$speak.SelectVoice('${voice}');`\n    }\n\n    if (speed) {\n      const adjustedSpeed = this.convertSpeed(speed || 1)\n      psCommand += `$speak.Rate = ${adjustedSpeed};`\n    }\n\n    if (!filename) throw new Error('Filename must be provided in export();')\n    else {\n      psCommand += `$speak.SetOutputToWaveFile('${filename}');`\n    }\n\n    psCommand += '$speak.Speak([Console]::In.ReadToEnd());$speak.Dispose()'\n\n    pipedData += text\n    args.push(psCommand)\n    options.shell = true\n\n    return { command: COMMAND, args, pipedData, options }\n  }\n\n  runStopCommand () {\n    this.child.stdin.pause()\n    childProcess.exec(`taskkill /pid ${this.child.pid} /T /F`)\n  }\n\n  convertSpeed (speed) {\n    // Overriden to map playback speed (as a ratio) to Window's values (-10 to 10, zero meaning x1.0)\n    return Math.max(-10, Math.min(Math.round((9.0686 * Math.log(speed)) - 0.1806), 10))\n  }\n\n  getVoices () {\n    const args = []\n    const psCommand = 'Add-Type -AssemblyName System.speech;$speak = New-Object System.Speech.Synthesis.SpeechSynthesizer;$speak.GetInstalledVoices() | % {$_.VoiceInfo.Name}'\n    args.push(psCommand)\n    return { command: COMMAND, args }\n  }\n}\n\nmodule.exports = SayPlatformWin32\n"
  },
  {
    "path": "src/service/lib/say/typings.json",
    "content": "{\n  \"name\": \"say\",\n  \"main\": \"index.d.ts\"\n}\n"
  },
  {
    "path": "src/service/lib/system-map.js",
    "content": "const {\n  MEGASHIPS,\n  SPACE_STATIONS,\n  SURFACE_PORTS,\n  PLANETARY_OUTPOSTS,\n  SETTLEMENTS,\n  PLANETARY_BASES\n} = require('../../shared/consts')\n\nconst USE_ICONS_FOR_PLANETS = false\nconst SHOW_LABELS = true\nconst NORMALIZE_VIEWBOX_WIDTH = true\nconst MIN_VIEWBOX_WIDTH = 20000\n\nconst SOLAR_RADIUS = 696340 // Size of Sol in km\n\nfunction escapeRegExp (text) {\n  return text.replace(/[[\\]{}()*+?.,\\-\\\\^$|#\\s]/g, '\\\\$&')\n}\n\nclass SystemMap {\n  constructor (system) {\n    this.detail = system\n    let { name = '', bodies: _bodies, stations = [] } = this.detail\n    this.name = this.getSystemObjectName(name)\n\n    // On the map, we draw a system view for each Star in a system, as that's\n    // a great way to organise the information to make it easy to read.\n    //\n    // However, for this to work we need to to treat \"Stars\" that are more like\n    // Planets (e.g. Class Y Brown Dawrf Stars or Class T Tauri Stars) that \n    // orbit other stars as if they were regular planets.\n    //\n    // We use our own classification system (stored in ._type) for the purpose\n    // of deciding how we want to treat them for the purposes of the system map\n    let bodies = this.#findStarsOrbitingOtherStarsLikePlanets(_bodies || [])\n\n    // Squash duplicate entries (e.g. Rhea system, where Rhea 4 is now Forsyth),\n    // or you end up with two planets with different names and the same body id\n    // on the map\n    bodies = this.#getUniqueObjectsByProperty(bodies, 'bodyId')\n\n    // Filter out megaships that are designated as rescue ships, they are almost\n    // always out of date and clutter the map\n    stations = stations.filter(body => !body.name.toLowerCase().startsWith(\"rescue ship - \"))\n\n    this.stars = bodies.filter(body => body?._type === 'Star')\n    this.planets = bodies.filter(body => body?._type === 'Planet')\n    this.spaceStations = stations.filter(station => SPACE_STATIONS.includes(station.type))\n    this.planetaryPorts = stations.filter(station => SURFACE_PORTS.includes(station.type))\n    this.planetaryOutposts = stations.filter(station => PLANETARY_OUTPOSTS.includes(station.type))\n    this.settlements = stations.filter(station => SETTLEMENTS.includes(station.type))\n    this.megaships = stations.filter(station => MEGASHIPS.includes(station.type))\n    this.objectsInSystem = bodies.concat(stations).sort((a, b) => (a.bodyId - b.bodyId))\n\n    // This object will be used to contain all on the map not directly oribiting\n    // a star. There can be multiple 'Null' objects around which planets orbit\n    // but we consolodate them all around one Null object with ID 0.\n    this.stars.push({\n      bodyId: 0,\n      name: 'Additional Objects',\n      description: 'Objects not directly orbiting a star',\n      type: 'Null',\n      _type: 'Null',\n      _children: []\n    })\n\n    this.init()\n  }\n\n  #getUniqueObjectsByProperty(arrayOfSystemObjects, key) {\n    const systemObjectsBy64BitId = {}\n\n    // The EDSM API sometimes returns data for multiple planets in a system\n    // with the same body ID, this is likely if a planet has changed over time\n    // (e.g. if it has been renamed or made a landable planet in an update).\n    //\n    // Loop through all objects and assign them a timestamp based on discovered date\n    // TODO In future may expand this to use other properties for different types\n    // of objects (e.g. stations/ships with the most recent dates).\n    //\n    // The primary purpose of this is to de-dupe duplicate planets from EDSM\n    // by only using the most recent data for an object, but the intention is to\n    // expand this to merge in data from ship scans and Full Spectrum Scans \n    // performed by players locally and display a unified view in the UI.\n    arrayOfSystemObjects.forEach(systemObject => {\n      const systemObjectWithTimestamp = JSON.parse(JSON.stringify(systemObject))\n      systemObjectWithTimestamp.timestamp = systemObject?.discovery?.date\n\n      // This should never happen\n      if (!systemObjectWithTimestamp.hasOwnProperty('id64'))\n        return console.log('#getUniqueObjectsByProperty error - systemObject does not have id64 property', systemObject)\n\n      if (systemObjectsBy64BitId[systemObjectWithTimestamp.id64]) {\n        // If this item is newer, replace it with the one we already have\n        if (Date.parse(systemObjectWithTimestamp.timestamp) > Date.parse(systemObjectsBy64BitId[systemObjectWithTimestamp.id64]?.discovery?.date)) {\n          systemObjectsBy64BitId[systemObjectWithTimestamp.id64] = systemObjectWithTimestamp\n        }\n      } else {\n        systemObjectsBy64BitId[systemObjectWithTimestamp.id64] = systemObjectWithTimestamp\n      }\n    })\n\n    const prunedArrayOfSystemObjects = [\n      ...Object.keys(systemObjectsBy64BitId).map(id64 => systemObjectsBy64BitId[id64])\n    ]\n\n    return [...new Map(prunedArrayOfSystemObjects.map(item => [item[key], item])).values()]\n  }\n\n  #findStarsOrbitingOtherStarsLikePlanets (_bodies) {\n    const bodies = JSON.parse(JSON.stringify(_bodies))\n\n    const starsOrbitingStarsLikePlanets = []\n\n    bodies.forEach((body, i) => {\n      // TODO Refactor this out to a function\n      // This shouldn't be the case, but for some reason the main star in some\n      // systems in the Formidine Rift have a null Body ID in EDSM (SPOOKY!)\n      // None of the logic in this class will work if we don't patch this.\n      if (body.type === 'Star' && body.bodyId === null) body.bodyId = 0\n\n      body._type = body.type\n\n      // Only applies to stars\n      if (body.type !== 'Star') return\n\n      // Never applies to main stars (the Mizar or Castor systems are listed as\n      // having a parent object that doesn't actually exist, this check catches\n      // that exception).\n      if (body.isMainStar === true) return\n\n      // If Star doesn't have any non-null parent objects (i.e. it's not \n      // orbiting a planet or star) then we still treat it as one of the\n      // \"main stars\" and don't reclassify it as a Planet for the system map\n      if (this.#getNearestNotNullParent(body) === null) return\n\n      // Change each _type from 'Star' to 'Planet')\n      body._type = 'Planet'\n\n      // Add a standard radius property (based on it's Solar radius)\n      // This property is required to be able to draw the body on a map\n      body.radius = body.solarRadius * SOLAR_RADIUS\n\n      // Save the ID of this Body for the loop below...\n      starsOrbitingStarsLikePlanets.push(body.bodyId)\n    })\n\n    // Update the 'parent' reference to each object orbiting 'star' from\n    // orbiting a 'Star' to a 'Planet' so it's plotted correctly.\n    bodies.forEach((body, i) => {\n      (body?.parents ?? []).forEach((parent, i) => {\n        const [k, v] = Object.entries(parent)[0]\n        if (starsOrbitingStarsLikePlanets.includes(v)) {\n          body.parents[i] = { Planet: v }\n        }\n      })\n    })\n    \n    return bodies\n  }\n\n  #getNearestNotNullParent(body) {\n    let nonNullParent = null\n    ;(body?.parents || []).every(parent => {\n      const [k, v] = Object.entries(parent)[0]\n      if (k !== 'Null') {\n        nonNullParent = v\n        return false\n      }\n      return true\n    })\n    return nonNullParent\n  }\n\n  init () {\n    for (const systemObject of this.objectsInSystem) {\n      if (!systemObject._type) systemObject._type = systemObject.type\n      \n      systemObject.name = this.getSystemObjectName(systemObject.name)\n      systemObject.label = this.getSystemObjectLabelFromSystemObject(systemObject)\n\n      // Loop through and find all stations / ships / etc and assign parents\n      // value based on whatever planet they are nearest to (before calculating\n      // co-ordiantes for values, which are used to draw the map). The approach\n      // here may not always be technically correct, but it's good enough for\n      // our map and should render meaningfully.\n      if (!systemObject.parents && systemObject.type && SPACE_STATIONS.concat(PLANETARY_BASES).concat(MEGASHIPS).includes(systemObject.type)) {\n        // Find planet with closest similar distance to sun\n        // This could be the wrong choice in edge cases, but is good enough.\n        const nearestPlanet = this.getNearestPlanet(systemObject)\n        const nearestPlanetParentType = nearestPlanet?.parents?.[0] ? Object.keys(nearestPlanet.parents[0])[0] : null\n        const nearestStar = this.getNearestStar(systemObject)\n\n        // If parent of planet is a star (or null - for rogue planets) then make\n        // it the main body this station orbits. However, if the nearest planet\n        // is a orbiting another larger planet, make the target the larger planet\n        const parentBodyId = (nearestPlanetParentType === 'Star' || nearestPlanetParentType === 'Null')\n          ? nearestPlanet.bodyId\n          : nearestPlanet?.parents?.[0]?.[nearestPlanetParentType] ?? null\n\n        // If the object doesn't have a nearby planet it's orbiting, then assume\n        // it's orbiting a star (e.g. like in Asterope which has 3 stars, no \n        // planets but a Mega Ship and Coriolis Starport).\n        // \n        // FIXME reduce this to one check of 'Nearest Body Type' that returns \n        // nearest body regardless of if it is a Star or Planet, so that if \n        // the star is closer but there is a far away planet, that it doesn't \n        // show the object as orbiting the planet.\n        systemObject.parents = parentBodyId === null\n          ? nearestStar ? [{ Star: nearestStar.bodyId }] : [{ Null: 0 }]\n          : [{ Planet: parentBodyId }]\n        \n        systemObject.radius = 1000\n\n        const shipServices = []\n        const otherServices = []\n      \n        if (systemObject.otherServices.includes('Repair')) shipServices.push('Repair')\n        if (systemObject.otherServices.includes('Refuel')) shipServices.push('Refuel')\n        if (systemObject.otherServices.includes('Restock')) shipServices.push('Restock')\n        if (systemObject.otherServices.includes('Tuning')) shipServices.push('Tuning')\n        if (systemObject.haveShipyard) shipServices.push('Shipyard')\n        if (systemObject.haveOutfitting) shipServices.push('Outfitting')\n        if (systemObject.haveMarket) otherServices.push('Market')\n\n        systemObject.otherServices.forEach(service => {\n          if (!shipServices.includes(service)) otherServices.push(service)\n        })\n\n        systemObject._shipServices = shipServices.sort()\n        systemObject._otherServices = otherServices.sort()\n\n        // If this object is any time of planetry port, outpost or settlement\n        // then add it as a planetary base of the parent body\n        if (PLANETARY_BASES.includes(systemObject.type) && systemObject?.body?.id) {\n          for (const systemObjectParent of this.objectsInSystem) {\n            if (systemObjectParent.id === systemObject.body.id) {\n              if (!systemObjectParent._planetaryBases) systemObjectParent._planetaryBases = []\n              systemObjectParent._planetaryBases.push(systemObject)\n            }\n          }\n        }\n\n        // Plot megaships\n        // I think is is redundant now (seems to work without it after refactor)\n        // but not verified for edge cases.\n        /*\n        if (MEGASHIPS.includes(systemObject.type)) {\n          if (systemObject?.parents?.[0]?.['Planet']) {\n            for (const systemObjectParent of this.objectsInSystem) {\n              if (systemObjectParent.bodyId === nearestPlanet?.bodyId) {\n                if (!systemObjectParent._megaships) systemObjectParent._megaships = []\n                systemObjectParent._megaships.push(systemObject)\n              }\n            }\n          } else {\n            for (const systemObjectParent of this.objectsInSystem) {\n              if (systemObjectParent.bodyId === nearestPlanet?.bodyId) {\n                if (!systemObjectParent._megaships) systemObjectParent._megaships = []\n                systemObjectParent._megaships.push(systemObject)\n              }\n            }\n          }\n        }\n        */\n      }\n    }\n\n    // Calculate position to draw items on map\n    let maxViewBoxWidth = MIN_VIEWBOX_WIDTH\n    this.stars.forEach(star => {\n      this.plotObjectsAroundStar(star)\n      if (star._viewBox[2] > maxViewBoxWidth) maxViewBoxWidth = star._viewBox[2]\n    })\n\n    if (NORMALIZE_VIEWBOX_WIDTH) {\n      this.stars.forEach(star => {\n        star._viewBox[2] = maxViewBoxWidth\n      })\n    }\n  }\n\n  plotObjectsAroundStar (star) {\n    // If USE_ICONS_FOR_PLANETS is set, use alternate metrics\n    const MIN_R = USE_ICONS_FOR_PLANETS ? 800 : 800\n    const MAX_R = USE_ICONS_FOR_PLANETS ? 800 : 2000\n    const SUB_MIN_R = USE_ICONS_FOR_PLANETS ? 800 : 800\n    const SUB_MAX_R = USE_ICONS_FOR_PLANETS ? 800 : 2000\n    const R_DIVIDER = USE_ICONS_FOR_PLANETS ? 1 : 10\n    const X_SPACING = USE_ICONS_FOR_PLANETS ? 1 : 600\n    const Y_SPACING = USE_ICONS_FOR_PLANETS ? 1 : 600\n    const MIN_LABEL_X_SPACING = SHOW_LABELS ? 5000 : 0\n    const RING_X_SPACING_FACTOR = 0.8\n    const Y_LABEL_OFFSET = SHOW_LABELS ? 800 : 0\n\n    star._xMax = 0\n    star._yMax = 0\n    star._xOffset = 0\n    star._yOffset = 0\n\n    // let previousItemInOrbit = null\n    // Get each objects directly orbiting star\n    star._children = this.getChildren(star, true).map((itemInOrbit, i) => {\n      // Ensure planets are always drawn slightly larger than their moons\n      const MAIN_PLANET_MIN_R = MIN_R\n\n      itemInOrbit._children = this.getChildren(itemInOrbit, false)\n\n      itemInOrbit._r = itemInOrbit.radius / R_DIVIDER\n      if (itemInOrbit._r < MAIN_PLANET_MIN_R) itemInOrbit._r = MAIN_PLANET_MIN_R\n      if (itemInOrbit._r > MAX_R) itemInOrbit._r = MAX_R\n\n      // Set attribute on smaller planets so we can select a different setting\n      // on front end that will render them better\n      if (itemInOrbit._r <= MAIN_PLANET_MIN_R) itemInOrbit._small = true\n\n      itemInOrbit._y = 0\n      itemInOrbit.orbitsStar = true\n\n      // If this item (or the previous object) has rings, account for that\n      // by makign sure there is more horizontal space between objects so that\n      // the rings won't overlap when drawn.\n      const itemXSpacing = (itemInOrbit.rings && !USE_ICONS_FOR_PLANETS) ? itemInOrbit._r / RING_X_SPACING_FACTOR : X_SPACING\n      itemInOrbit._x = star._xMax + itemXSpacing + itemInOrbit._r\n\n      const newYmax = itemInOrbit._r + X_SPACING\n      if (newYmax > star._yOffset) star._yOffset = newYmax\n\n      // If object has children,\n      let newXmax = (itemInOrbit.rings) ? itemInOrbit._x + itemInOrbit._r + itemXSpacing : itemInOrbit._x + itemInOrbit._r\n      if (itemInOrbit._children.length > 0 && (newXmax - star._xMax) < MIN_LABEL_X_SPACING) newXmax = star._xMax + MIN_LABEL_X_SPACING\n      if (newXmax > star._xMax) star._xMax = newXmax\n\n      // Initialize Y max with planet radius\n      itemInOrbit._yMax = itemInOrbit._r + (Y_SPACING / 2)\n\n      // Get every object that directly or indirectly orbits this item\n      itemInOrbit._children\n        //.sort((a, b) => (a.distanceToArrival - b.distanceToArrival))\n        .sort((a, b) => (a.bodyId - b.bodyId))\n        .map(subItemInOrbit => {\n          subItemInOrbit._r = subItemInOrbit.radius / R_DIVIDER\n          if (subItemInOrbit._r < SUB_MIN_R) subItemInOrbit._r = SUB_MIN_R\n          if (subItemInOrbit._r > SUB_MAX_R) subItemInOrbit._r = SUB_MAX_R\n\n          // Set attribute on smaller planets so we can select a different setting\n          // on front end that will render them better\n          if (subItemInOrbit._r <= SUB_MIN_R) subItemInOrbit._small = true\n\n          // Use parent X co-ords to plot on same vertical plane as parent\n          subItemInOrbit._x = itemInOrbit._x\n\n          // Use radius of current object to calclulate cumulative Y pos\n          subItemInOrbit._y = itemInOrbit._yMax + subItemInOrbit._r + Y_SPACING\n\n          // New Y max is  previous Y max plus current object radius plus spacing\n          itemInOrbit._yMax = subItemInOrbit._y + subItemInOrbit._r\n\n          subItemInOrbit.orbitsStar = false\n\n          return subItemInOrbit\n        })\n\n      if (itemInOrbit._yMax > star._yMax) star._yMax = itemInOrbit._yMax\n\n      // previousItemInOrbit = itemInOrbit\n      return itemInOrbit\n    })\n    // Used by UI\n    // TODO Add number of stations orbiting star and outposts on surfaces\n    star.numberOfPlanets = star._children.filter(x => x._type === 'Planet').length\n    star._children.forEach(child => {\n      star.numberOfPlanets += child._children.filter(x => x._type === 'Planet').length\n    })\n\n    // If last item had rings, add padding to avoid clipping them on the edge\n    // star._xMax += previousItemInOrbit?.rings ? previousItemInOrbit._r / RING_X_SPACING_FACTOR : X_SPACING\n    star._xMax += X_SPACING\n    star._yMax += Y_SPACING\n\n    // This will be used to track the maxium number number of objects orbiting\n    // it that any planet in the system has. This is useful for knowing how\n    // to constrain the height (or not) when drawning maps.\n    star._maxObjectsInOrbit = 0\n    star._children.forEach(objectInOrbit => {\n      if (objectInOrbit._children.length > star._maxObjectsInOrbit) { star._maxObjectsInOrbit = objectInOrbit._children.length }\n    })\n\n    star._yOffset += Y_LABEL_OFFSET\n    star._viewBox = [\n      0,\n      parseInt(`-${star._yOffset}`),\n      star._xMax + star._xOffset + 1500,\n      star._yMax + star._yOffset\n    ]\n    return star\n  }\n\n  getBodyById (bodyId) {\n    return this?.objectsInSystem?.filter(body => body.bodyId === bodyId)\n  }\n\n  getNearestPlanet (systemObject) {\n    const targetDistanceToArrival = systemObject.distanceToArrival\n    const planets = this.objectsInSystem.filter(body => body._type === 'Planet')\n    if (planets.length === 0) return null\n    return planets.reduce((ob1, ob2) => {\n        return Math.abs(targetDistanceToArrival - ob2.distanceToArrival) < Math.abs(targetDistanceToArrival - ob1.distanceToArrival)\n          ? ob2\n          : ob1\n      })\n  }\n\n  getNearestLandablePlanet (systemObject) {\n    const targetDistanceToArrival = systemObject.distanceToArrival\n    const landablePlanets = this.objectsInSystem.filter(body => body._type === 'Planet' && body.isLandable)\n    if (landablePlanets.length === 0) return null\n    return landablePlanets.reduce((ob1, ob2) => {\n        return Math.abs(targetDistanceToArrival - ob2.distanceToArrival) < Math.abs(targetDistanceToArrival - ob1.distanceToArrival)\n          ? ob2\n          : ob1\n      })\n  }\n\n  getNearestStar(systemObject) {\n    const targetDistanceToArrival = systemObject.distanceToArrival\n    const stars = this.objectsInSystem.filter(body => body._type === 'Star')\n    if (stars.length === 0) return null\n    if (stars.length === 1) return stars[0]\n    return stars.reduce((ob1, ob2) => {\n        return Math.abs(targetDistanceToArrival - ob2?.distanceToArrival ?? 0) < Math.abs(targetDistanceToArrival - ob1?.distanceToArrival ?? 0)\n          ? ob2\n          : ob1\n      })\n  }\n\n  getChildren (targetBody, immediateChildren = true, filter = ['Planet'].concat(SPACE_STATIONS).concat(MEGASHIPS)) {\n    const children = []\n    if (!targetBody?._type) return []\n\n    for (const systemObject of this.objectsInSystem) {\n      // By default only get Planets and Starports\n      if (filter?.length && !filter.includes(systemObject?._type)) continue\n\n      const inOrbitAroundStars = []\n      const inOrbitAroundPlanets = []\n      const inOrbitAroundNull = []\n      let primaryOrbit = null\n      let primaryOrbitType = null\n\n      if (systemObject.parents) {\n        for (const parent of systemObject.parents) {\n          for (const key of Object.keys(parent)) {\n            if (primaryOrbit === null) primaryOrbit = parent[key]\n            if (primaryOrbitType === null) primaryOrbitType = key\n\n            if (key === 'Star') inOrbitAroundStars.push(parent[key])\n            if (key === 'Planet') inOrbitAroundPlanets.push(parent[key])\n            if (key === 'Null') inOrbitAroundNull.push(parent[key])\n          }\n        }\n      }\n\n      if (!systemObject.parents) continue\n\n      const nearestNonNullParent = this.#getNearestNotNullParent(systemObject)\n      \n      // Some systems to have multiple Null points round which bodies orbit.\n      // We noramlize these all into one Null orbit (Body ID 0) to allow the map\n      // to better visualize bodies that are not orbiting any specific star.\n      // This ONLY applies to bodies that are not also orbiting another body.\n      if ( primaryOrbitType === 'Null' && nearestNonNullParent === null) {\n        primaryOrbit = 0\n      }\n\n      if (targetBody._type === 'Star' && inOrbitAroundStars.includes(targetBody.bodyId)) {\n        if (immediateChildren === true && nearestNonNullParent === targetBody.bodyId) {\n          children.push(systemObject)\n        } else if (immediateChildren === false) {\n          children.push(systemObject)\n        }\n      } else if (targetBody._type === 'Planet' && inOrbitAroundPlanets.includes(targetBody.bodyId)) {\n        if (immediateChildren === true && nearestNonNullParent === targetBody.bodyId) {\n          children.push(systemObject)\n        } else if (immediateChildren === false) {\n          children.push(systemObject)\n        }\n      } else if (targetBody._type === 'Null' && primaryOrbitType === 'Null') {\n        if (immediateChildren === true && primaryOrbit === targetBody.bodyId) {\n          children.push(systemObject)\n        } else if (immediateChildren === false) {\n          children.push(systemObject)\n        }\n      } else if (immediateChildren === false) {\n        // Stations / Outposts do not specify which body they orbit / are on.\n        // Possible to guess which stations orbit which planets based on\n        // which planets directy orbit the star have a similar distance, as\n        // stations *do* have a distance from the arrival point.\n      }\n    }\n    return children\n  }\n\n  // For planets, don't include the system name in the (informal) label to save\n  // screen space, but do include still include it in things like station names.\n  // e.g \"Colonia 5\" is fine with the label \"5\" in the system map, but the name\n  // \"Colonia Outpost\" should not be truncated to \"Outpost\".\n  getSystemObjectLabelFromSystemObject (systemObject) {\n    if (systemObject._type && systemObject._type === 'Planet') {\n      return systemObject.name\n        // Next line is special case handling for renamed systems in Witch Head\n        // Sector, it needs to be ahead of the line that strips the name as\n        // some systems in Witch Head have bodies that start with name name of\n        // the star as well but some don't (messy!)\n        .replace(/Witch Head Sector ([A-z0-9\\-]+) ([A-z0-9\\-]+) /i, '')\n        .replace(new RegExp(`^${escapeRegExp(this.name)} `, 'i'), '')\n        .trim()\n    } else if (systemObject._type && systemObject._type === 'Star') {\n      let systemObjectLabel = systemObject.name || ''\n      // If the label contains 'Witch Head Sector' but does not start with it\n      // then it is a renamed system and the Witch Head Sector bit is stripped\n      if (systemObjectLabel.match(/Witch Head Sector/i) && !systemObjectLabel.match(/^Witch Head Sector/i)) {\n       systemObjectLabel = systemObjectLabel.replace(/ Witch Head Sector ([A-z0-9\\-]+) ([A-z0-9\\-]+)/i, '').trim()\n      }\n      return systemObjectLabel\n    } else {\n      return systemObject.name\n    }\n  }\n\n  getSystemObjectName (systemObjectName) {\n    // If the name contains 'Witch Head Sector' but does not start with it\n    // then it is a renamed system and the Witch Head Sector bit is stripped\n    if (systemObjectName.match(/Witch Head Sector/i) && !systemObjectName.match(/^Witch Head Sector/i)) {\n     return systemObjectName.replace(/ Witch Head Sector ([A-z0-9\\-]+) ([A-z0-9\\-]+)/i, '').trim()\n    }\n    return systemObjectName\n  }\n}\n\nmodule.exports = SystemMap\n"
  },
  {
    "path": "src/service/main.js",
    "content": "require('dotenv').config()\n\nconst os = require('os')\nconst fs = require('fs')\nconst path = require('path')\nconst exec = require('child_process').exec\nconst connect = require('connect')\nconst serveStatic = require('serve-static')\nconst http = require('http')\nconst httpProxy = require('http-proxy')\nconst proxy = httpProxy.createProxyServer({})\nconst WebSocket = require('ws')\nconst yargs = require('yargs')\nconst packageJson = require('../../package.json')\n\nconst commandLineArgs = yargs\n  .help()\n  .usage('Usage: $0 --save-game-dir <directory> [--port <port>]')\n  .option('port', {\n    type: 'number',\n    alias: 'p',\n    description: 'Port to listen on (default: 3300)'\n  })\n  .option('save-game-dir', {\n    type: 'string',\n    alias: 's',\n    description: 'Elite Dangerous Save Game Directory'\n  })\n  .version(packageJson.version)\n  .alias('v', 'version')\n  .alias('h', 'help')\n  .argv\n\nconsole.log(`ICARUS Terminal Service ${packageJson.version}`)\n\n// Parse command line arguments\nconst PORT = commandLineArgs.port || commandLineArgs.p || 3300 // Port to listen on\nconst DEVELOPMENT = commandLineArgs.dev || false // Development mode\nconst WEB_DIR = 'build/client'\nconst LOG_DIR = getLogDir()\n\nif (!fs.existsSync(LOG_DIR)) {\n  console.error('ERROR: No save game data found in', LOG_DIR, '\\n')\n  yargs.showHelp()\n  process.exit(1)\n} else {\n  console.log('Loading save game data from', LOG_DIR)\n}\n\nfunction getLogDir () {\n  // Hard coded fallback\n  const FALLBACK_LOG_DIR = path.join(os.homedir(), 'Saved Games', 'Frontier Developments', 'Elite Dangerous')\n  let logDir = FALLBACK_LOG_DIR\n\n  // For development (or on Unix platforms) you can use the LOG_DIR environment\n  // variable to specify the direct path (relative or absolute). You can also\n  // use a .env file. This is overriden by command line args.\n  if (process.env.LOG_DIR) {\n    logDir = process.env.LOG_DIR.startsWith('/') ? process.env.LOG_DIR : path.join(__dirname, process.env.LOG_DIR)\n  }\n  // Use provided Save Game dir as base path to look for the the files we need\n  // This must be obtained via native OS APIs so is typically passed by the client.\n  const commandLineSaveGameDir = commandLineArgs.s || commandLineArgs['save-game-dir']\n  if (commandLineSaveGameDir) {\n    // The option can be a path to a Windows Save Game directory (in which case\n    // we append 'Frontier Developments\\Elite Dangerous') or the direct path.\n    // If it doesn't look like a valid Save Game dir then it is treated it as a\n    // direct path.\n    const FullPathToSaveGameDir = path.join(commandLineSaveGameDir, 'Frontier Developments', 'Elite Dangerous')\n    if (fs.existsSync(FullPathToSaveGameDir)) {\n      logDir = FullPathToSaveGameDir\n    } else {\n      logDir = commandLineSaveGameDir\n    }\n  }\n\n  return logDir\n}\n\n// Export globals BEFORE loading libraries that use them\nglobal.PORT = PORT\nglobal.LOG_DIR = LOG_DIR\nglobal.BROADCAST_EVENT = broadcastEvent\n\n// Initalise simple in-memory object cache (reset when program restarted)\nglobal.CACHE = {\n  SYSTEMS: {}\n}\n\n// Don't load events till globals are set\nconst { eventHandlers, init } = require('./lib/events')\n\nlet httpServer\nif (DEVELOPMENT) {\n  // If DEVELOPMENT is specified then HTTP requests other than web socket\n  // requests will be forwarded to a web server which is started on localhost\n  // to allow UI changes to be tested without rebuilding the app.\n  exec('npx next src/client')\n  httpServer = http.createServer((req, res) => proxy.web(req, res, { target: 'http://localhost:3000' }))\n} else {\n  // The default behaviour (i.e. production) is to serve static assets. When the\n  // application is compiled to a native executable these assets will be bundled\n  // with the executable in a virtual file system.\n  const webServer = connect().use(serveStatic(WEB_DIR, { extensions: ['html'] }))\n  httpServer = http.createServer(webServer)\n}\n\nconst webSocketServer = new WebSocket.Server({ server: httpServer })\n\nfunction webSocketDebugMessage () { /* console.log(...arguments) */ }\n\n// Bind message event handler to WebSocket server before starting server\nwebSocketServer.on('connection', socket => {\n  webSocketDebugMessage('WebSocket connection open')\n  socket.on('message', async (event) => {\n    const { requestId, name, message } = JSON.parse(event)\n    webSocketDebugMessage('WebSocket message received', name, event.toString())\n    if (eventHandlers[name]) {\n      try {\n        const data = await eventHandlers[name](message || {})\n        socket.send(JSON.stringify({ requestId, name, message: data }))\n      } catch (e) {\n        console.error('ERROR_SOCKET_NO_EVENT_HANDLER', name, e)\n      }\n    }\n  })\n})\n\n// A function for broadcasting events to all connected clients\nfunction broadcastEvent (name, message) {\n  // Use try/catch here to suppress errors caused when main window is\n  // closed and app is in process of shutting down\n  try {\n    if (!webSocketServer) return\n    webSocketServer.clients.forEach(client => {\n      if (client && client !== webSocketServer && client.readyState === WebSocket.OPEN) {\n        client.send(JSON.stringify({ name, message }))\n      }\n    })\n    webSocketDebugMessage('WebSocket broadcast sent', name, message)\n\n    // Look for for loadingProgress events and display information about events\n    // loaded to the console when loadingProgress indicates loading is complete\n    if (name === 'loadingProgress' && message.loadingComplete === true) {\n      console.log(`Scanned ${message.numberOfFiles} files`)\n      console.log(`Imported ${message.numberOfEventsImported} events`)\n    }\n  } catch (e) {\n    console.error('ERROR_SOCKET_BROADCAST_EVENT_FAILED', name, message, e)\n  }\n}\n\nwebSocketServer.on('error', function (error) {\n  if (error.code && error.code === 'EADDRINUSE') {\n    console.error(`Failed to start service, port ${PORT} already in use.`)\n    process.exit(1)\n  }\n})\n\n// Start server\nhttpServer.listen(PORT)\nconsole.log(`Listening on port ${PORT}…`)\n\n// Initialize app - start parsing data and watching for game state changes\nsetTimeout(() => init(), 500)\n"
  },
  {
    "path": "src/shared/consts.js",
    "content": "const MEGASHIPS = [\n  'Mega ship',\n  // 'Fleet Carrier', // Ignore fleet carriers for now\n  'Installation',\n  'Capital Ship Dock',\n  'Carrier Construction Dock'\n]\n\nconst SPACE_STATIONS = [\n  'Coriolis Starport',\n  'Ocellus Starport',\n  'Orbis Starport',\n  'Asteroid base',\n  'Outpost'\n]\n\n// Ports with services like shipyards\nconst SURFACE_PORTS = [\n  'Planetary Port',\n  'Planetary Outpost',\n  'Workshop'\n]\n\n// Bases in Horizons\nconst PLANETARY_OUTPOSTS = [\n  'Military Outpost',\n  'Scientific Outpost',\n  'Commercial Outpot',\n  'Mining Outpost',\n  'Industrial Outpost',\n  'Civilian Outpost',\n  'Planetary Settlement'\n]\n\n// Bases in Odyssey\nconst SETTLEMENTS = ['Odyssey Settlement']\n\n// All types of ground facility\nconst PLANETARY_BASES = SURFACE_PORTS.concat(PLANETARY_OUTPOSTS).concat(SETTLEMENTS)\n\nconst UNKNOWN_VALUE = 'Unknown'\n\nconst SOL_RADIUS_IN_KM = 696340\n\nmodule.exports = {\n  MEGASHIPS,\n  SPACE_STATIONS,\n  SURFACE_PORTS,\n  PLANETARY_OUTPOSTS,\n  SETTLEMENTS,\n  PLANETARY_BASES,\n  UNKNOWN_VALUE,\n  SOL_RADIUS_IN_KM\n}\n"
  },
  {
    "path": "src/shared/distance.js",
    "content": "function distance (p1, p2) {\n  try {\n    const x = p1[0] - p2[0]\n    const y = p1[1] - p2[1]\n    const z = p1[2] - p2[2]\n    return Math.sqrt(x * x + y * y + z * z)\n  } catch (e) {\n    return 0\n  }\n}\n\nmodule.exports = distance\n"
  },
  {
    "path": "src/shared/faction-states.js",
    "content": "\nconst factionStates = {\n  expansion: {\n    description: 'Faction expanding influence'\n  },\n  investment: {\n    description: 'Increased investment, expansion anticipated'\n  },\n  war: {\n    description: 'War, combat missions available'\n  },\n  civilWar: {\n    description: 'Civil war, combat missions available'\n  },\n  civilLiberty: {\n    description: 'Civil liberty, increased stability & security'\n  },\n  civilUnrest: {\n    description: 'Civil unrest, support & bounty missions'\n  },\n  election: {\n    description: 'Election in progress'\n  },\n  elections: {\n    description: 'Election in progress'\n  },\n  boom: {\n    description: 'Economy is booming'\n  },\n  bust: {\n    description: 'Economy is bust'\n  },\n  famine: {\n    description: 'Famine, food needed, support missions'\n  },\n  drought: {\n    description: 'Drought, water & emergency supplies needed'\n  },\n  blight: {\n    description: 'Blight, Agronomic Treatment needed'\n  },\n  outbreak: {\n    description: 'Outbreak, medicines needed, support missions'\n  },\n  lockdown: {\n    description: 'Lockdown, services restricted, support missions'\n  },\n  retreat: {\n    description: 'Faction retreating from system'\n  },\n  infrastructureFailure: {\n    description: 'Failing infrastructure, food & machinery needed'\n  },\n  naturalDisaster: {\n    description: 'Natural disaster, support missions available'\n  },\n  pirateAttack: {\n    description: 'Pirate attack, support & bounty missions'\n  },\n  terroristAttack: {\n    description: 'Terrorist attack, weapons needed, bounty missions'\n  },\n  terrorism: {\n    description: 'Terrorist attack, weapons needed, bounty missions'\n  }\n}\n\nmodule.exports = factionStates\n"
  }
]